From fb153f4a71dcbe149941c1ac285f112a7ca84619 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:17:11 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.1.10-1mamba;Sat May 03 2014] --- README.md | 2 ++ python-ipaddr.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 python-ipaddr.spec diff --git a/README.md b/README.md index 9fa3ea1..48b8eda 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-ipaddr +A library for working with IP addresses, both IPv4 and IPv6. + diff --git a/python-ipaddr.spec b/python-ipaddr.spec new file mode 100644 index 0000000..74a143e --- /dev/null +++ b/python-ipaddr.spec @@ -0,0 +1,44 @@ +Name: python-ipaddr +Version: 2.1.10 +Release: 1mamba +Summary: A library for working with IP addresses, both IPv4 and IPv6 +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://code.google.com/p/ipaddr-py/ +Source: https://ipaddr-py.googlecode.com/files/ipaddr-%{version}.tar.gz +License: Apache License 2.0 +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%prep +%setup -q -n ipaddr-%{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 COPYING + +%changelog +* Sat May 03 2014 Silvan Calarco 2.1.10-1mamba +- package created using the webbuild interface