From 71ad2ccbfd74be51e0bb3e370229d529d59be05b Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:27:37 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.1.2-1mamba;Sat Dec 05 2015] --- README.md | 2 ++ python-pypandoc.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 python-pypandoc.spec diff --git a/README.md b/README.md index b21f63f..072f076 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pypandoc +A thin wrapper for pandoc, a universal document converter. + diff --git a/python-pypandoc.spec b/python-pypandoc.spec new file mode 100644 index 0000000..fa70462 --- /dev/null +++ b/python-pypandoc.spec @@ -0,0 +1,44 @@ +Name: python-pypandoc +Version: 1.1.2 +Release: 1mamba +Summary: A thin wrapper for pandoc, a universal document converter +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/bebraw/pypandoc +Source: https://pypi.python.org/packages/source/p/pypandoc/pypandoc-%{version}.zip +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n pypandoc-%{version} + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{_includedir}/python \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files -f %{name}.filelist +%defattr(-,root,root) +%doc LICENSE + +%changelog +* Sat Dec 05 2015 Silvan Calarco 1.1.2-1mamba +- package created using the webbuild interface