diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..564e778 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/netaddr-0.7.5.tar.gz diff --git a/.python-netaddr.metadata b/.python-netaddr.metadata new file mode 100644 index 0000000..bb2fb2f --- /dev/null +++ b/.python-netaddr.metadata @@ -0,0 +1 @@ +a5ed00d82a9d56344da383fa10dbe13cdeaf50b0 SOURCES/netaddr-0.7.5.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch b/SOURCES/0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch new file mode 100644 index 0000000..28d4d61 --- /dev/null +++ b/SOURCES/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/SOURCES/0002-Exclude-39.0.0.0-8-network-from-reserved-set.patch b/SOURCES/0002-Exclude-39.0.0.0-8-network-from-reserved-set.patch new file mode 100644 index 0000000..bea443c --- /dev/null +++ b/SOURCES/0002-Exclude-39.0.0.0-8-network-from-reserved-set.patch @@ -0,0 +1,24 @@ +From e16f1ae5a21fef2a3f7c54fcb5b46235cc8e8137 Mon Sep 17 00:00:00 2001 +From: Andrew Stromnov +Date: Thu, 23 Aug 2012 23:37:55 +0400 +Subject: [PATCH] Exclude 39.0.0.0/8 network from reserved set + +--- + netaddr/ip/__init__.py | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index e4a6b7bfe0e209bb1b1059b8e4b743ca4a4af72a..7a93510b7f9fde1bd94757c50f9e7b0ac6463fbf 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1918,7 +1918,6 @@ IPV4_MULTICAST = IPNetwork('224.0.0.0/4') + IPV4_6TO4 = IPNetwork('192.88.99.0/24') # 6to4 Relay Anycast + + IPV4_RESERVED = ( +- IPNetwork('39.0.0.0/8'), # Reserved but subject to allocation + IPNetwork('128.0.0.0/16'), # Reserved but subject to allocation + IPNetwork('191.255.0.0/16'), # Reserved but subject to allocation + IPNetwork('192.0.0.0/24'), # Reserved but subject to allocation +-- +2.9.5 + diff --git a/SOURCES/0003-Adapt-IPV4_RESERVED-according-to-RFC-5735-Appendix-A.patch b/SOURCES/0003-Adapt-IPV4_RESERVED-according-to-RFC-5735-Appendix-A.patch new file mode 100644 index 0000000..102e689 --- /dev/null +++ b/SOURCES/0003-Adapt-IPV4_RESERVED-according-to-RFC-5735-Appendix-A.patch @@ -0,0 +1,27 @@ +From 1756e8988328036393de44cf20571b6513fa1143 Mon Sep 17 00:00:00 2001 +From: nordhausen +Date: Fri, 28 Feb 2014 14:22:20 +0100 +Subject: [PATCH] Adapt IPV4_RESERVED according to RFC 5735 Appendix A + +--- + netaddr/ip/__init__.py | 3 --- + 1 file changed, 3 deletions(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 7a93510b7f9fde1bd94757c50f9e7b0ac6463fbf..200753d9e73ecfad530044ce30e166b17d63b81c 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1918,10 +1918,7 @@ IPV4_MULTICAST = IPNetwork('224.0.0.0/4') + IPV4_6TO4 = IPNetwork('192.88.99.0/24') # 6to4 Relay Anycast + + IPV4_RESERVED = ( +- IPNetwork('128.0.0.0/16'), # Reserved but subject to allocation +- IPNetwork('191.255.0.0/16'), # Reserved but subject to allocation + IPNetwork('192.0.0.0/24'), # Reserved but subject to allocation +- IPNetwork('223.255.255.0/24'), # Reserved but subject to allocation + IPNetwork('240.0.0.0/4'), # Reserved for Future Use + + # Reserved multicast +-- +2.9.5 + diff --git a/SOURCES/0004-Add-range-from-RFC-6598.patch b/SOURCES/0004-Add-range-from-RFC-6598.patch new file mode 100644 index 0000000..5cb8835 --- /dev/null +++ b/SOURCES/0004-Add-range-from-RFC-6598.patch @@ -0,0 +1,24 @@ +From 56d1a1a64a5f8159a127086a1f04dd7f6db5862d Mon Sep 17 00:00:00 2001 +From: Kyle Maxwell +Date: Tue, 24 Feb 2015 14:46:34 -0600 +Subject: [PATCH] Add range from RFC 6598 + +--- + netaddr/ip/__init__.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 200753d9e73ecfad530044ce30e166b17d63b81c..d5be23f9f4bfba1ec6c2c323418d535c0c8fdef1 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1905,6 +1905,7 @@ IPV4_LOOPBACK = IPNetwork('127.0.0.0/8') + + IPV4_PRIVATE = ( + IPNetwork('10.0.0.0/8'), # Private-Use Networks ++ IPNetwork('100.64.0.0/10'), # Shared address space + IPNetwork('172.16.0.0/12'), # Private-Use Networks + IPNetwork('192.0.2.0/24'), # Test-Net + IPNetwork('192.168.0.0/16'), # Private-Use Networks +-- +2.9.5 + diff --git a/SOURCES/0005-Add-range-from-RFC-6890.patch b/SOURCES/0005-Add-range-from-RFC-6890.patch new file mode 100644 index 0000000..c580d8f --- /dev/null +++ b/SOURCES/0005-Add-range-from-RFC-6890.patch @@ -0,0 +1,24 @@ +From 163fe0eb38e56cfcfff01d1a940322af2bd86a87 Mon Sep 17 00:00:00 2001 +From: Kyle Maxwell +Date: Tue, 24 Feb 2015 14:49:09 -0600 +Subject: [PATCH] Add range from RFC 6890 + +--- + netaddr/ip/__init__.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index d5be23f9f4bfba1ec6c2c323418d535c0c8fdef1..c0bbbb563f6a03447dc7a7d6ce754dabcc499349 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1907,6 +1907,7 @@ IPV4_PRIVATE = ( + IPNetwork('10.0.0.0/8'), # Private-Use Networks + IPNetwork('100.64.0.0/10'), # Shared address space + IPNetwork('172.16.0.0/12'), # Private-Use Networks ++ IPNetwork('192.0.0.0/24'), # Test-Net + IPNetwork('192.0.2.0/24'), # Test-Net + IPNetwork('192.168.0.0/16'), # Private-Use Networks + IPRange('239.0.0.0', '239.255.255.255'), # Administrative Multicast +-- +2.9.5 + diff --git a/SOURCES/0006-Add-range-from-RFC-2544.patch b/SOURCES/0006-Add-range-from-RFC-2544.patch new file mode 100644 index 0000000..86259f2 --- /dev/null +++ b/SOURCES/0006-Add-range-from-RFC-2544.patch @@ -0,0 +1,24 @@ +From 4e64cbe22f61dc0aa9ef61b89975565440079aa1 Mon Sep 17 00:00:00 2001 +From: Kyle Maxwell +Date: Tue, 24 Feb 2015 14:51:36 -0600 +Subject: [PATCH] Add range from RFC 2544 + +--- + netaddr/ip/__init__.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index c0bbbb563f6a03447dc7a7d6ce754dabcc499349..5a6bd6b7812cf1d632cfbe80d1541dfcb72662de 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1910,6 +1910,7 @@ IPV4_PRIVATE = ( + IPNetwork('192.0.0.0/24'), # Test-Net + IPNetwork('192.0.2.0/24'), # Test-Net + IPNetwork('192.168.0.0/16'), # Private-Use Networks ++ IPNetwork('198.18.0.0/15'), # Benchmarking + IPRange('239.0.0.0', '239.255.255.255'), # Administrative Multicast + ) + +-- +2.9.5 + diff --git a/SOURCES/0007-Add-range-from-RFC-5737.patch b/SOURCES/0007-Add-range-from-RFC-5737.patch new file mode 100644 index 0000000..ea6ec2a --- /dev/null +++ b/SOURCES/0007-Add-range-from-RFC-5737.patch @@ -0,0 +1,25 @@ +From 400bba0ccafeb0de1148992df65f1dd6cdb0b3d8 Mon Sep 17 00:00:00 2001 +From: Kyle Maxwell +Date: Tue, 24 Feb 2015 14:53:26 -0600 +Subject: [PATCH] Add range from RFC 5737 + +--- + netaddr/ip/__init__.py | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 5a6bd6b7812cf1d632cfbe80d1541dfcb72662de..ac600121c161b147ca8df2db054272e37af79fb7 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1911,6 +1911,8 @@ IPV4_PRIVATE = ( + IPNetwork('192.0.2.0/24'), # Test-Net + IPNetwork('192.168.0.0/16'), # Private-Use Networks + IPNetwork('198.18.0.0/15'), # Benchmarking ++ IPNetwork('198.51.100.0/24'), # Examples for documentation ++ IPNetwork('203.0.113.0/24'), # Examples for documentation + IPRange('239.0.0.0', '239.255.255.255'), # Administrative Multicast + ) + +-- +2.9.5 + diff --git a/SOURCES/0008-Move-some-from-IPV4_PRIVATE-to-IPV4_RESERVED.patch b/SOURCES/0008-Move-some-from-IPV4_PRIVATE-to-IPV4_RESERVED.patch new file mode 100644 index 0000000..9d2b5d5 --- /dev/null +++ b/SOURCES/0008-Move-some-from-IPV4_PRIVATE-to-IPV4_RESERVED.patch @@ -0,0 +1,39 @@ +From 71349fb5b1bf67769d07fc7eca1922fb258722a9 Mon Sep 17 00:00:00 2001 +From: Kyle Maxwell +Date: Tue, 24 Feb 2015 14:58:38 -0600 +Subject: [PATCH] Move some from IPV4_PRIVATE to IPV4_RESERVED + +--- + netaddr/ip/__init__.py | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index ac600121c161b147ca8df2db054272e37af79fb7..0f7a93e22c3f8d63842fd6cecedabd6564d711b3 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1907,12 +1907,8 @@ IPV4_PRIVATE = ( + IPNetwork('10.0.0.0/8'), # Private-Use Networks + IPNetwork('100.64.0.0/10'), # Shared address space + IPNetwork('172.16.0.0/12'), # Private-Use Networks +- IPNetwork('192.0.0.0/24'), # Test-Net + IPNetwork('192.0.2.0/24'), # Test-Net + IPNetwork('192.168.0.0/16'), # Private-Use Networks +- IPNetwork('198.18.0.0/15'), # Benchmarking +- IPNetwork('198.51.100.0/24'), # Examples for documentation +- IPNetwork('203.0.113.0/24'), # Examples for documentation + IPRange('239.0.0.0', '239.255.255.255'), # Administrative Multicast + ) + +@@ -1925,6 +1921,9 @@ IPV4_6TO4 = IPNetwork('192.88.99.0/24') # 6to4 Relay Anycast + IPV4_RESERVED = ( + IPNetwork('192.0.0.0/24'), # Reserved but subject to allocation + IPNetwork('240.0.0.0/4'), # Reserved for Future Use ++ IPNetwork('198.18.0.0/15'), # Benchmarking ++ IPNetwork('198.51.100.0/24'), # Examples for documentation ++ IPNetwork('203.0.113.0/24'), # Examples for documentation + + # Reserved multicast + IPRange('234.0.0.0', '238.255.255.255'), +-- +2.9.5 + diff --git a/SOURCES/0009-Fixed-71.-Updated-IPv4-reserved-networks.patch b/SOURCES/0009-Fixed-71.-Updated-IPv4-reserved-networks.patch new file mode 100644 index 0000000..b8f660a --- /dev/null +++ b/SOURCES/0009-Fixed-71.-Updated-IPv4-reserved-networks.patch @@ -0,0 +1,66 @@ +From 03668eda9ccb4be25fd7b3962975397eff44bfe5 Mon Sep 17 00:00:00 2001 +From: David Moss +Date: Thu, 27 Aug 2015 08:01:02 +0100 +Subject: [PATCH] - Fixed #71. Updated IPv4 reserved networks. + +--- + netaddr/ip/__init__.py | 28 +++++++++++++++------------- + 1 file changed, 15 insertions(+), 13 deletions(-) + +diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py +index 0f7a93e22c3f8d63842fd6cecedabd6564d711b3..5537f5fec94016a17f9ef653f940fb8ea95a2365 100644 +--- a/netaddr/ip/__init__.py ++++ b/netaddr/ip/__init__.py +@@ -1901,14 +1901,15 @@ def all_matching_cidrs(ip, cidrs): + #----------------------------------------------------------------------------- + # Cached IPv4 address range lookups. + #----------------------------------------------------------------------------- +-IPV4_LOOPBACK = IPNetwork('127.0.0.0/8') ++IPV4_LOOPBACK = IPNetwork('127.0.0.0/8') # Loopback addresses (RFC 990) + + IPV4_PRIVATE = ( +- IPNetwork('10.0.0.0/8'), # Private-Use Networks +- IPNetwork('100.64.0.0/10'), # Shared address space +- IPNetwork('172.16.0.0/12'), # Private-Use Networks +- IPNetwork('192.0.2.0/24'), # Test-Net +- IPNetwork('192.168.0.0/16'), # Private-Use Networks ++ IPNetwork('10.0.0.0/8'), # Class A private network local communication (RFC 1918) ++ IPNetwork('100.64.0.0/10'), # Carrier grade NAT (RFC 6598) ++ IPNetwork('172.16.0.0/12'), # Private network - local communication (RFC 1918) ++ IPNetwork('192.0.0.0/24'), # IANA IPv4 Special Purpose Address Registry (RFC 5736) ++ IPNetwork('192.168.0.0/16'), # Class B private network local communication (RFC 1918) ++ IPNetwork('198.18.0.0/15'), # Testing of inter-network communications between subnets (RFC 2544) + IPRange('239.0.0.0', '239.255.255.255'), # Administrative Multicast + ) + +@@ -1916,19 +1917,20 @@ IPV4_LINK_LOCAL = IPNetwork('169.254.0.0/16') + + IPV4_MULTICAST = IPNetwork('224.0.0.0/4') + +-IPV4_6TO4 = IPNetwork('192.88.99.0/24') # 6to4 Relay Anycast ++IPV4_6TO4 = IPNetwork('192.88.99.0/24') # 6to4 anycast relays (RFC 3068) + + IPV4_RESERVED = ( +- IPNetwork('192.0.0.0/24'), # Reserved but subject to allocation +- IPNetwork('240.0.0.0/4'), # Reserved for Future Use +- IPNetwork('198.18.0.0/15'), # Benchmarking +- IPNetwork('198.51.100.0/24'), # Examples for documentation +- IPNetwork('203.0.113.0/24'), # Examples for documentation ++ IPNetwork('0.0.0.0/8'), # Broadcast message (RFC 1700) ++ IPNetwork('192.0.2.0/24'), # TEST-NET examples and documentation (RFC 5737) ++ IPNetwork('240.0.0.0/4'), # Reserved for multicast assignments (RFC 5771) ++ IPNetwork('198.51.100.0/24'), # TEST-NET-2 examples and documentation (RFC 5737) ++ IPNetwork('203.0.113.0/24'), # TEST-NET-3 examples and documentation (RFC 5737) + + # Reserved multicast ++ IPNetwork('233.252.0.0/24'), # Multicast test network + IPRange('234.0.0.0', '238.255.255.255'), + IPRange('225.0.0.0', '231.255.255.255'), +-) ++) + (IPV4_LOOPBACK, IPV4_6TO4) + + #----------------------------------------------------------------------------- + # Cached IPv6 address range lookups. +-- +2.9.5 + diff --git a/SPECS/python-netaddr.spec b/SPECS/python-netaddr.spec new file mode 100644 index 0000000..2972cc6 --- /dev/null +++ b/SPECS/python-netaddr.spec @@ -0,0 +1,205 @@ +%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} + +#====================================================================# + +Name: python-netaddr +Version: 0.7.5 +Release: 9%{?dist} +Summary: A pure Python network address representation and manipulation library + +Group: Development/Libraries +License: BSD +URL: http://github.com/drkjam/netaddr +Source0: http://github.com/downloads/drkjam/netaddr/netaddr-%{version}.tar.gz +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildArch: noarch +BuildRequires: python-devel >= 2.4 + +Patch0: 0001-Fixed-github-Issue-no.-2.-Thanks-keesbos.patch +Patch1: 0002-Exclude-39.0.0.0-8-network-from-reserved-set.patch +Patch2: 0003-Adapt-IPV4_RESERVED-according-to-RFC-5735-Appendix-A.patch +Patch3: 0004-Add-range-from-RFC-6598.patch +Patch4: 0005-Add-range-from-RFC-6890.patch +Patch5: 0006-Add-range-from-RFC-2544.patch +Patch6: 0007-Add-range-from-RFC-5737.patch +Patch7: 0008-Move-some-from-IPV4_PRIVATE-to-IPV4_RESERVED.patch +Patch8: 0009-Fixed-71.-Updated-IPv4-reserved-networks.patch + + +%description +A pure Python network address representation and manipulation library. + +netaddr provides a Pythonic way of working with :- + +- IPv4 and IPv6 addresses and subnets +- MAC addresses, OUI and IAB identifiers, IEEE EUI-64 identifiers +- arbitrary (non-aligned) IP address ranges and IP address sets +- various non-CIDR IP range formats such as nmap and glob-style formats + +Included are routines for :- + +- generating, sorting and summarizing IP addresses and networks +- performing easy conversions between address notations and formats +- detecting, parsing and formatting network address representations +- performing set-based operations on groups of IP addresses and subnets +- working with arbitrary IP address ranges and formats +- accessing OUI and IAB organisational information published by IEEE +- accessing IP address and block information published by IANA + +For details on the latest updates and changes, see :- + + http://github.com/drkjam/netaddr/blob/rel-0.7.x/CHANGELOG + +API documentation for the latest release is available here :- + + http://packages.python.org/netaddr/ + + +%prep +%setup -q -n netaddr-%{version} + +%patch0 -p1 -b .invalid_ip_network +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 +%patch6 -p1 +%patch7 -p1 +%patch8 -p1 + +# Make rpmlint happy, get rid of DOS line endings +%{__sed} -i 's/\r//' netaddr/*.py +%{__sed} -i 's/\r//' netaddr/ip/*.py +%{__sed} -i 's/\r//' netaddr/eui/*.idx + +# Make rpmlint happy, rip out python shebang lines from most python +# modules +find netaddr -name "*.py" | \ + xargs %{__perl} -ni -e 'print unless /usr\/bin\/python|env\s+python/' + +# Make rpmlint happy, fix permissions on documentation files +chmod 0644 README AUTHORS CHANGELOG COPYRIGHT INSTALL LICENSE PKG-INFO + +%build +%{__python} setup.py build + + +%install +rm -rf %{buildroot} +%{__python} setup.py install -O1 --skip-build --root %{buildroot} + + +%check +%{__python} netaddr/tests/__init__.py + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%doc AUTHORS CHANGELOG COPYRIGHT INSTALL LICENSE PKG-INFO +%doc README docs/api/ +%{python_sitelib}/* +%{_bindir}/netaddr + +%changelog +* Thu Nov 2 2017 Pavel Vomacka - 0.7.5-9 +- Adding commands to apply new patches added in previous release 0.7.5-8 + +* Fri Oct 20 2017 Pavel Vomacka - 0.7.5-8 +- Resolves: #1438668 DNS forwarder address added during IPA installation + shouldn't add IP-Address '0.0.0.0' + +* Fri Dec 27 2013 Daniel Mach - 0.7.5-7 +- Mass rebuild 2013-12-27 + +* 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 +