From 9868e5af091c823e9cc09e083f457cdcfa2c3136 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:25:27 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.4.10-1mamba;Sun Dec 13 2015] --- README.md | 2 ++ python-magic.spec | 50 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 python-magic.spec diff --git a/README.md b/README.md index 46ee302..9c5a37d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-magic +File type identification using libmagic. + diff --git a/python-magic.spec b/python-magic.spec new file mode 100644 index 0000000..3ec927f --- /dev/null +++ b/python-magic.spec @@ -0,0 +1,50 @@ +Name: python-magic +Epoch: 1 +Version: 0.4.10 +Release: 1mamba +Summary: File type identification using libmagic +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://github.com/ahupp/python-magic +Source: https://pypi.python.org/packages/source/p/python-magic/python-magic-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q + +%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) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so + +## note: eventually add the remaining documents (if any) +# + +%changelog +* Sun Dec 13 2015 Silvan Calarco 0.4.10-1mamba +- package created using the webbuild interface