package created using the webbuild interface [release 0.4.10-1mamba;Sun Dec 13 2015]

This commit is contained in:
Silvan Calarco 2024-01-06 11:25:27 +01:00
parent 23b9bd15fb
commit 9868e5af09
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# python-magic
File type identification using libmagic.

50
python-magic.spec Normal file
View File

@ -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 <silvan.calarco@mambasoft.it>
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 <silvan.calarco@mambasoft.it> 0.4.10-1mamba
- package created using the webbuild interface