python-ipaddress-vl.spec 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. %global pyname ipaddress
  2. Name: python-%{pyname}
  3. Version: 1.0.22
  4. Release: 1%{?_dist_release}
  5. Summary: Port of the python 3.3+ ipaddress module to 2.6+
  6. License: Python
  7. URL: https://pypi.python.org/pypi/ipaddress/
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. Source0: https://pypi.python.org/packages/source/i/%{pyname}/%{pyname}-%{version}.tar.gz
  11. BuildArch: noarch
  12. BuildRequires: python-devel
  13. %{?python_provide:%python_provide python2-%{pyname}}
  14. %global _description\
  15. ipaddress provides the capabilities to create, manipulate and operate\
  16. on IPv4 and IPv6 addresses and networks.\
  17. \
  18. The functions and classes in this module make it straightforward to\
  19. handle various tasks related to IP addresses, including checking\
  20. whether or not two hosts are on the same subnet, iterating over all\
  21. hosts in a particular subnet, checking whether or not a string\
  22. represents a valid IP address or network definition, and so on.
  23. %description %_description
  24. %prep
  25. %setup -q -n %{pyname}-%{version}
  26. %build
  27. %{__python} setup.py build
  28. %install
  29. rm -rf $RPM_BUILD_ROOT
  30. %{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
  31. %files
  32. %doc README.md
  33. %{python_sitelib}/*
  34. %changelog
  35. * Mon Nov 19 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.0.22-1
  36. - initial build for Vine Linux.
  37. - new upstream release.
  38. * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.18-5
  39. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  40. * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.18-4
  41. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  42. * Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0.18-3
  43. - Python 2 binary package renamed to python2-ipaddress
  44. See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
  45. * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.18-2
  46. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  47. * Mon Jun 19 2017 Paul Wouters <pwouters@redhat.com> - 1.0.18-1
  48. - Updated to 1.0.18, fixup URL
  49. * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.16-4
  50. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  51. * Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.16-3
  52. - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
  53. * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.16-2
  54. - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
  55. * Fri Jan 08 2016 Matěj Cepl <mcepl@redhat.com> - 1.0.16-1
  56. - Update to the latest upstream (#1242475)
  57. * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-4
  58. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  59. * Wed Jun 10 2015 Nathaniel McCallum <npmccallum@redhat.com> - 1.0.7-3
  60. - Remove Conflicts: python-ipaddr
  61. * Mon Jun 8 2015 Nathaniel McCallum <npmccallum@redhat.com> - 1.0.7-2
  62. - Add Conflicts: python-ipaddr
  63. * Thu May 14 2015 Nathaniel McCallum <npmccallum@redhat.com> - 1.0.7-1
  64. - Update to 1.0.7
  65. * Wed Mar 20 2013 Matt Domsch <mdomsch@fedoraproject.org> - 1.0.3-1
  66. - initial release