From 505c10bd42e3bf605fb7c42471b847cbbcf33cd1 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Wed, 14 Oct 2020 19:24:28 -0700 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/python-netaddr#2824ddbd23c9c2ec03c225bf6194a061d594805f --- .gitignore | 12 + 0001-Do-not-override-executable-path.patch | 29 ++ ...d-github-Issue-no.-2.-Thanks-keesbos.patch | 65 +++ ...eturn-instead-of-raise-StopIteration.patch | 26 ++ ...ts-in-issue-149-python-3-regression-.patch | 53 +++ python-netaddr-fix-assertion-in-test.patch | 35 ++ python-netaddr.spec | 376 ++++++++++++++++++ sources | 1 + 8 files changed, 597 insertions(+) create mode 100644 0001-Do-not-override-executable-path.patch create mode 100644 0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch create mode 100644 0001-PEP-479-return-instead-of-raise-StopIteration.patch create mode 100644 0001-fixed-broken-tests-in-issue-149-python-3-regression-.patch create mode 100644 python-netaddr-fix-assertion-in-test.patch create mode 100644 python-netaddr.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..7d98ab1 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,12 @@ +netaddr-0.7.4.tar.gz +/netaddr-0.7.5.tar.gz +/netaddr-0.7.11.tar.gz +/netaddr-0.7.12.tar.gz +/netaddr-0.7.14.tar.gz +/netaddr-0.7.15.tar.gz +/netaddr-0.7.15-tests.tar.gz +/netaddr-0.7.17.tar.gz +/netaddr-0.7.18.tar.gz +/netaddr-0.7.19.tar.gz +/netaddr-0.7.20.tar.gz +/netaddr-0.8.0.tar.gz diff --git a/0001-Do-not-override-executable-path.patch b/0001-Do-not-override-executable-path.patch new file mode 100644 index 0000000..89c0a9c --- /dev/null +++ b/0001-Do-not-override-executable-path.patch @@ -0,0 +1,29 @@ +From 8b08c463a49bdcca455cdfbefa971c89bd309ddf Mon Sep 17 00:00:00 2001 +From: John Eckersberg +Date: Mon, 19 Feb 2018 15:20:54 -0500 +Subject: [PATCH] Do not override executable path + +Resolves: RHBZ#1546800 +--- + setup.py | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/setup.py b/setup.py +index 2bd2a08..4cd2780 100644 +--- a/setup.py ++++ b/setup.py +@@ -177,11 +177,6 @@ def main(): + scripts=['netaddr/tools/netaddr'], + url='https://github.com/drkjam/netaddr/', + version=netaddr.__version__, +- options={ +- 'build_scripts': { +- 'executable': '/usr/bin/env python', +- }, +- }, + ) + + setup(**setup_options) +-- +2.14.3 + diff --git a/0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch b/0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch new file mode 100644 index 0000000..28d4d61 --- /dev/null +++ b/0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch @@ -0,0 +1,65 @@ +From 80071f4450261b70b70f537bc2b54d2c97d9f562 Mon Sep 17 00:00:00 2001 +From: "David P. D. Moss" +Date: Thu, 25 Nov 2010 08:53:49 +0000 +Subject: [PATCH] Fixed github Issue no. 2. Thanks keesbos. + +--- + netaddr/ip/__init__.py | 2 ++ + netaddr/tests/2.x/ip/constructor.txt | 11 +++++++++++ + netaddr/tests/3.x/ip/constructor.txt | 11 +++++++++++ + 3 files changed, 24 insertions(+), 0 deletions(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 0179c38..e4a6b7b 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -779,6 +779,8 @@ def parse_ip_network(module, addr, implicit_prefix=False, flags=0): + # Try a partial IPv4 network address... + expanded_addr = _ipv4.expand_partial_address(val1) + ip = IPAddress(expanded_addr, module.version, flags=INET_PTON) ++ else: ++ raise AddrFormatError('invalid IPNetwork address %s!' % addr) + value = ip._value + + try: +diff --git a/netaddr/tests/2.x/ip/constructor.txt b/netaddr/tests/2.x/ip/constructor.txt +index f67f5e4..5a9e978 100644 +--- a/netaddr/tests/2.x/ip/constructor.txt ++++ b/netaddr/tests/2.x/ip/constructor.txt +@@ -209,3 +209,14 @@ IPNetwork('172.24.0.0/16') + + + }}} ++ ++Negative testing ++ ++{{{ ++ ++>>> IPNetwork('foo') ++Traceback (most recent call last): ++... ++AddrFormatError: invalid IPNetwork foo ++ ++}}} +diff --git a/netaddr/tests/3.x/ip/constructor.txt b/netaddr/tests/3.x/ip/constructor.txt +index 2ec47c0..35a5cd6 100644 +--- a/netaddr/tests/3.x/ip/constructor.txt ++++ b/netaddr/tests/3.x/ip/constructor.txt +@@ -209,3 +209,14 @@ IPNetwork('172.24.0.0/16') + + + }}} ++ ++Negative testing ++ ++{{{ ++ ++>>> IPNetwork('foo') ++Traceback (most recent call last): ++... ++netaddr.core.AddrFormatError: invalid IPNetwork foo ++ ++}}} +-- +1.7.5.2 + diff --git a/0001-PEP-479-return-instead-of-raise-StopIteration.patch b/0001-PEP-479-return-instead-of-raise-StopIteration.patch new file mode 100644 index 0000000..2aa13c9 --- /dev/null +++ b/0001-PEP-479-return-instead-of-raise-StopIteration.patch @@ -0,0 +1,26 @@ +From 2599f0e57c0a20bd3f8870dbc2c5479cad502597 Mon Sep 17 00:00:00 2001 +From: Sergey Kozlov +Date: Mon, 11 Dec 2017 17:04:20 +0100 +Subject: [PATCH] PEP 479: 'return' instead of 'raise StopIteration'. + +Fro details please visit https://www.python.org/dev/peps/pep-0479/ +--- + netaddr/ip/__init__.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 489badf..ecf72d0 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1258,7 +1258,7 @@ class IPNetwork(BaseIP, IPListMixin): + + if not self.prefixlen <= prefixlen: + # Don't return anything. +- raise StopIteration ++ return + + # Calculate number of subnets to be returned. + width = self._module.width +-- +2.17.1 + diff --git a/0001-fixed-broken-tests-in-issue-149-python-3-regression-.patch b/0001-fixed-broken-tests-in-issue-149-python-3-regression-.patch new file mode 100644 index 0000000..0c03e02 --- /dev/null +++ b/0001-fixed-broken-tests-in-issue-149-python-3-regression-.patch @@ -0,0 +1,53 @@ +From 2ab73f10be7069c9412e853d2d0caf29bd624012 Mon Sep 17 00:00:00 2001 +From: David Moss +Date: Mon, 16 Jan 2017 22:17:16 +0000 +Subject: [PATCH] - fixed broken tests in issue #149 (python 3 regression in + 0.7.19) - only affects test suite + +--- + netaddr/tests/eui/test_ieee_parsers.py | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/netaddr/tests/eui/test_ieee_parsers.py b/netaddr/tests/eui/test_ieee_parsers.py +index 7877f09..81f1faa 100644 +--- a/netaddr/tests/eui/test_ieee_parsers.py ++++ b/netaddr/tests/eui/test_ieee_parsers.py +@@ -12,7 +12,7 @@ SAMPLE_DIR = os.path.dirname(__file__) + def test_oui_parser_py2(): + from cStringIO import StringIO + outfile = StringIO() +- with open(os.path.join(SAMPLE_DIR, 'sample_oui.txt')) as infile: ++ with open(os.path.join(SAMPLE_DIR, 'sample_oui.txt'), 'rb') as infile: + iab_parser = OUIIndexParser(infile) + iab_parser.attach(FileIndexer(outfile)) + iab_parser.parse() +@@ -23,7 +23,7 @@ def test_oui_parser_py2(): + def test_iab_parser_py2(): + from cStringIO import StringIO + outfile = StringIO() +- with open(os.path.join(SAMPLE_DIR, 'sample_iab.txt')) as infile: ++ with open(os.path.join(SAMPLE_DIR, 'sample_iab.txt'), 'rb') as infile: + iab_parser = IABIndexParser(infile) + iab_parser.attach(FileIndexer(outfile)) + iab_parser.parse() +@@ -34,7 +34,7 @@ def test_iab_parser_py2(): + def test_oui_parser_py3(): + from io import StringIO + outfile = StringIO() +- with open(os.path.join(SAMPLE_DIR, 'sample_oui.txt')) as infile: ++ with open(os.path.join(SAMPLE_DIR, 'sample_oui.txt'), 'rb') as infile: + iab_parser = OUIIndexParser(infile) + iab_parser.attach(FileIndexer(outfile)) + iab_parser.parse() +@@ -45,7 +45,7 @@ def test_oui_parser_py3(): + def test_iab_parser_py3(): + from io import StringIO + outfile = StringIO() +- with open(os.path.join(SAMPLE_DIR, 'sample_iab.txt')) as infile: ++ with open(os.path.join(SAMPLE_DIR, 'sample_iab.txt'), 'rb') as infile: + iab_parser = IABIndexParser(infile) + iab_parser.attach(FileIndexer(outfile)) + iab_parser.parse() +-- +2.9.3 + diff --git a/python-netaddr-fix-assertion-in-test.patch b/python-netaddr-fix-assertion-in-test.patch new file mode 100644 index 0000000..f0912c6 --- /dev/null +++ b/python-netaddr-fix-assertion-in-test.patch @@ -0,0 +1,35 @@ +From 4b1f09a7e122f6b7af699242b58b5284c5eeab00 Mon Sep 17 00:00:00 2001 +From: John Eckersberg +Date: Tue, 30 Jun 2015 11:03:57 -0400 +Subject: [PATCH] Fix bad pop() assumption in test + +Do not assume that IPSet.pop will always return the same item. The +pop method is implemented via the popitem method on the underlying +_cidrs object, which is a dict. + +dict.popitem is documented as: + +Remove and return an arbitrary (key, value) pair from the dictionary. + +So one cannot assert that the value popped from an IPSet will be a +specific item in the set. + +Instead, assert that the item popped out of the set is present in the +other set. +--- + test/ip/test_ip_sets.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/test/ip/test_ip_sets.py b/test/ip/test_ip_sets.py +index 3732a11..32589e1 100644 +--- a/test/ip/test_ip_sets.py ++++ b/test/ip/test_ip_sets.py +@@ -34,7 +34,7 @@ def test_ipset_basic_api(): + ]) + + assert set1 == set2 +- assert set2.pop() == IPNetwork('192.0.2.4/30') ++ assert set2.pop() in set1 + assert set1 != set2 + + diff --git a/python-netaddr.spec b/python-netaddr.spec new file mode 100644 index 0000000..e798743 --- /dev/null +++ b/python-netaddr.spec @@ -0,0 +1,376 @@ +%if 0%{?fedora} || 0%{?rhel} > 7 +%global with_python3 1 +%endif + +%if 0%{?fedora} < 32 && 0%{?rhel} < 9 +%global with_python2 1 +%endif + +Name: python-netaddr +Version: 0.8.0 +Release: 2%{?dist} +Summary: A pure Python network address representation and manipulation library + +License: BSD +URL: http://github.com/drkjam/netaddr +Source0: https://pypi.python.org/packages/source/n/netaddr/netaddr-%{version}.tar.gz + +BuildArch: noarch +# sphinx is python3-only f31 onward +# https://fedoraproject.org/wiki/Changes/Sphinx2 +BuildRequires: python3-sphinx +%if 0%{?with_python2} +BuildRequires: python2-pytest +BuildRequires: python2-devel +BuildRequires: python2-setuptools +%endif + +%global desc A network address manipulation library for Python\ +\ +Provides support for:\ +\ +Layer 3 addresses\ +\ + * IPv4 and IPv6 addresses, subnets, masks, prefixes\ + * iterating, slicing, sorting, summarizing and classifying IP networks\ + * dealing with various ranges formats (CIDR, arbitrary ranges and globs, nmap)\ + * set based operations (unions, intersections etc) over IP addresses and\ + subnets\ + * parsing a large variety of different formats and notations\ + * looking up IANA IP block information\ + * generating DNS reverse lookups\ + * supernetting and subnetting\ +\ +Layer 2 addresses\ +\ + * representation and manipulation MAC addresses and EUI-64 identifiers\ + * looking up IEEE organisational information (OUI, IAB)\ + * generating derived IPv6 addresses + + +%global _description\ +%{desc} + +%description %_description + +%if 0%{?with_python2} +%package -n python2-netaddr +Summary: %summary +%{?python_provide:%python_provide python2-netaddr} + +%description -n python2-netaddr %_description +%endif + +%if 0%{?with_python3} +%package -n python3-netaddr +Summary: A pure Python network address representation and manipulation library +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-sphinx +BuildRequires: python3-pytest +%{?python_provide:%python_provide python3-netaddr} + +%description -n python3-netaddr +%{desc} +%endif + +%prep +%setup -q -n netaddr-%{version} + +# Make rpmlint happy, rip out python shebang lines from most python +# modules +find netaddr -name "*.py" | \ + xargs sed -i -e '1 {/^#!\//d}' + +# Make rpmlint happy, fix permissions on documentation files +chmod 0644 README.rst AUTHORS CHANGELOG COPYRIGHT LICENSE PKG-INFO + +%build +%if 0%{?with_python2} +%py2_build +%endif + +%if 0%{?with_python3} +%py3_build +%endif + +#docs +pushd docs +PYTHONPATH='../' sphinx-build-%{python3_version} -b html -d build/doctrees source html +rm -f html/.buildinfo +%if 0%{?with_python3} +PYTHONPATH='../' sphinx-build-%{python3_version} -b html -d build/doctrees source python3/html +rm -f python3/html/.buildinfo +%endif +popd + + +%install +%if 0%{?with_python2} +%py2_install +%endif + +%if 0%{?with_python3} +%py3_install +%endif + + +%check +%if 0%{?with_python2} +py.test-%{python2_version} +%endif +%if 0%{?with_python3} +py.test-%{python3_version} +%endif + +%if 0%{?with_python2} +%files -n python2-netaddr +%license COPYRIGHT LICENSE +%doc AUTHORS CHANGELOG +%doc README.rst docs/html +%{python2_sitelib}/* +%endif + +%if 0%{?with_python3} +%files -n python3-netaddr +%license COPYRIGHT +%doc AUTHORS CHANGELOG +%doc README.rst docs/python3/html +%{python3_sitelib}/* +%{_bindir}/netaddr +%endif + +%changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 3 2020 John Eckersberg - 0.8.0-1 +- New upstream release 0.8.0 (rhbz#1853684) + +* Fri Jun 19 2020 John Eckersberg - 0.7.20-1 +- New upstream release 0.7.20 (rhbz#1848782) +- Minor spec and rpmlint cleanups + +* Tue May 26 2020 Miro Hrončok - 0.7.19-22 +- Rebuilt for Python 3.9 + +* Thu Jan 30 2020 Fedora Release Engineering - 0.7.19-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Nov 7 2019 John Eckersberg - 0.7.19-20 +- Remove python2 subpackage from Fedora 32+ (rhbz#1769871) + +* Thu Oct 03 2019 Miro Hrončok - 0.7.19-19 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 0.7.19-18 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 0.7.19-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jul 22 2019 John Eckersberg - 0.7.19-16 +- Move /usr/bin/netaddr to python3 and remove python2 version + See https://fedoraproject.org/wiki/Changes/Python_means_Python3 + +* Mon Mar 11 2019 John Eckersberg - 0.7.19-15 +- Remove BuildRequires on python2-sphinx + See https://fedoraproject.org/wiki/Changes/Sphinx2 + +* Sat Feb 02 2019 Fedora Release Engineering - 0.7.19-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Nov 28 2018 John Eckersberg - 0.7.19-13 +- Add python_provide for python3 subpackage per packaging guidelines (RHBZ#1654198) + +* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek - 0.7.19-12 +- Drop explicit locale setting + See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot + +* Sat Jul 14 2018 Fedora Release Engineering - 0.7.19-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 0.7.19-10 +- Rebuilt for Python 3.7 + +* Tue Jun 19 2018 Miro Hrončok - 0.7.19-9 +- Rebuilt for Python 3.7 + +* Thu Feb 22 2018 Iryna Shcherbina - 0.7.19-8 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + +* Mon Feb 19 2018 John Eckersberg - 0.7.19-7 +- Fix shebang mangling for python3 (RHBZ#1546800) + +* Fri Feb 09 2018 Fedora Release Engineering - 0.7.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Sep 29 2017 Troy Dawson - 0.7.19-5 +- Cleanup spec file conditionals + +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.7.19-4 +- Python 2 binary package renamed to python2-netaddr + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + +* Thu Jul 27 2017 Fedora Release Engineering - 0.7.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.7.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jan 17 2017 John Eckersberg - 0.7.19-1 +- New upstream release 0.7.19 (RHBZ#1413231) + +* Mon Dec 19 2016 Miro Hrončok - 0.7.18-10 +- Rebuild for Python 3.6 + +* Sun Nov 13 2016 Orion Poplawski - 0.7.18-9 +- Update description +- Fix netaddr shebang (bug #1394046) + +* Thu Nov 10 2016 Orion Poplawski - 0.7.18-8 +- Use updated python macros +- Use %%license + +* Tue Jul 19 2016 Fedora Release Engineering - 0.7.18-7 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Tue Mar 8 2016 John Eckersberg - 0.7.18-6 +- Add provides for python2-netaddr (RHBZ#1282129) + +* Thu Feb 04 2016 Fedora Release Engineering - 0.7.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Sun Nov 22 2015 Robert Kuska - 0.7.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 +- Delete file which contains bundled pytest + +* Wed Nov 11 2015 Fedora Release Engineering - 0.7.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Tue Nov 10 2015 Fedora Release Engineering - 0.7.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Sep 4 2015 John Eckersberg - 0.7.18-1 +- New upstream release 0.7.18 (RHBZ#1259969) + +* Tue Sep 1 2015 John Eckersberg - 0.7.17-1 +- New upstream release 0.7.17 + +* Mon Jun 29 2015 John Eckersberg - 0.7.15-1 +- New upstream release 0.7.15 +- Add separate source for tests, see https://github.com/drkjam/netaddr/issues/102 +- Add patch for broken assertion, see https://github.com/drkjam/netaddr/pull/103 + +* Thu Jun 18 2015 Fedora Release Engineering - 0.7.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Apr 1 2015 John Eckersberg - 0.7.14-1 +- New upstream release 0.7.14 + +* Wed Sep 17 2014 Haïkel Guémar - 0.7.12-1 +- Upstream 0.7.12 +- Conditionalize python3 subpackages build on Fedora +- Few spec cleanups + +* Sat Jun 07 2014 Fedora Release Engineering - 0.7.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 29 2014 Bohuslav Kabrda - 0.7.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Mon Apr 21 2014 John Eckersberg - 0.7.11-1 +- New upstream release 0.7.11 +- Enabled Python 3 support (bz1070357) + +* Sun Aug 04 2013 Fedora Release Engineering - 0.7.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 0.7.5-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 0.7.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 0.7.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon May 30 2011 Jakub Hrozek - 0.7.5-3 +- Do not traceback on invalid IPNetwork input (upstream issues #2, #6, #5, #8) +- Remove executable bit from documentation files to make rpmlint happy + +* Tue Feb 08 2011 Fedora Release Engineering - 0.7.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Oct 05 2010 John Eckersberg - 0.7.5-1 +- New upstream release 0.7.5 +- Updated summary and description to match upstream README +- Updated URL and source to reflect upstream move to github + +* Thu Jul 22 2010 David Malcolm - 0.7.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Mon May 17 2010 John Eckersberg - 0.7.4-1 +- New upstream release 0.7.4 + +* Wed Sep 30 2009 John Eckersberg - 0.7.3-1 +- New upstream release 0.7.3 + +* Fri Aug 21 2009 John Eckersberg - 0.7.2-1 +- New upstream release 0.7.2 +- Updated Summary and Description with new values provided by upstream + +* Mon Aug 17 2009 John Eckersberg - 0.7.1-1 +- New upstream release 0.7.1 fixes naming conflict with 'nash' by + renaming the netaddr shell to 'netaddr' + +* Wed Aug 12 2009 John Eckersberg - 0.7-1 +- Upstream release 0.7 + +* Sun Jul 26 2009 Fedora Release Engineering - 0.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Jul 22 2009 John Eckersberg - 0.6.3-2 +- Minor tweaks to spec file aligning with latest Fedora packaging guidelines +- Enforce python 2.4 dependency as needed by netaddr >= 0.6.2 +- Drop BR on python-setuptool as it is not imported in setup.py +- Drop BR on dos2unix use sed instead +- Align description with that of delivered PKG-INFO +- Rip out python shebangs +- Add %%check section to enable tests +- Thanks to Gareth Armstrong + +* Tue Jun 23 2009 John Eckersberg - 0.6.3-1 +- New upstream bugfix release + +* Mon Apr 13 2009 John Eckersberg - 0.6.2-1 +- New upstream bugfix release + +* Tue Apr 7 2009 John Eckersberg - 0.6.1-1 +- New upstream bugfix release + +* Thu Feb 26 2009 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Feb 18 2009 John Eckersberg - 0.6-2 +- Add BuildDepends on dos2unix to clean up some upstream sources + +* Wed Feb 18 2009 John Eckersberg - 0.6-1 +- New upstream version + +* Sat Nov 29 2008 Ignacio Vazquez-Abrams - 0.5.2-2 +- Rebuild for Python 2.6 + +* Fri Oct 10 2008 John Eckersberg - 0.5.2-1 +- New upstream version, bug fixes for 0.5.1 + +* Tue Sep 23 2008 John Eckersberg - 0.5.1-1 +- New upstream version, bug fixes for 0.5 + +* Sun Sep 21 2008 John Eckersberg - 0.5-1 +- New upstream version + +* Mon Aug 11 2008 John Eckersberg - 0.4-1 +- Initial packaging for Fedora + diff --git a/sources b/sources new file mode 100644 index 0000000..3eca290 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (netaddr-0.8.0.tar.gz) = a158bef87e862330c583f8b6709c4f575ec036dd31d725dad679e583ad4bef1a34f43225453bc93970ab720ae5f9f0fc2a6a3b92cbb922ed6f201414fd1e96d3