diff options
author | obache <obache> | 2010-02-02 11:34:52 +0000 |
---|---|---|
committer | obache <obache> | 2010-02-02 11:34:52 +0000 |
commit | 1ee87db728aa89d98f3b1934dbd20696861333f6 (patch) | |
tree | fa44f903b757082aea8af074da54fef69c48636e /net/py-IP | |
parent | e9c7515577096fdd046bb2794249498e4b4f542b (diff) | |
download | pkgsrc-1ee87db728aa89d98f3b1934dbd20696861333f6.tar.gz |
Update py-IP to 0.70.
Based on PR#42669 by Wen Heping (and take maintainership).
Version 0.70 (2009-10-29)
* New "major" version because it may break compatibility
* Fix __cmp__(): IP('0.0.0.0/0') and IP('0.0.0.0') are not equal
* Fix IP.net() of the network "::/0": "::" instead of "0.0.0.0".
IPy 0.63 should fix this bug, but it wasn't.
Version 0.64 (2009-08-19)
* Create MANIFEST.in to fix setup.py bdist_rpm, fix by Robert Nickel
Version 0.63 (2009-06-23)
* Fix formatting of "IPv4 in IPv6" network, eg. IP('::ffff:192.168.10.0/120'),
the netmask ("/120" in the example) was missing!
Version 0.62 (2008-07-15)
* Fix reverse DNS of IPv6 address: use ".ip6.arpa." suffix instead of
deprecated ".ip6.int." suffix
Version 0.61 (2008-06-12)
* Patch from Aras Vaichas allowing the [-1] operator
to work with an IP object of size 1.
Version 0.60 (2008-05-16)
* strCompressed() formats '::ffff:a.b.c.d' correctly
* Use strCompressed() instead of strFullsize() to format IP addresses,
ouput is smarter with IPv6 address
* Remove check_addr_prefixlen because it generates invalid IP address
2008-02-05
* Release IPy 0.56
* Fix IPv6 parser for unit tests: reject
'1111::2222:3333:4444:5555:6666:7777:8888' address since '::' is
useless
2007-08-16
* Release IPy 0.55
* Rewrite IPv6 parser to allow address "1:2:3:4:5:6::"
2007-06-22
* Release IPy 0.54
* make_net() match from James Teh: transform an IP address into a network
address by applying the given netmask
2007-02-28
* Release IPy 0.53
* Reject '0.0.0.0-0.0.0.4' if check_addr_prefixlen is enable
* Fix many english spelling mistakes
2006-11-06
* Release IPy 0.52
* Fix strCompressed() for IPv6 "ffff:ffff:ffff:ffff:ffff:f:f:fffc/127"
2006-11-02
* Release IPy 0.51
* Write real name of IPy author (Maximillian Dornseif)
* Use version "0.51" to help packaging since 0.5 was smaller than 0.42
* Fix unit test for Python 2.3 (don't use doctest.testfile) and 2.5
(problem of hex() lower case)
* "make test" also check IPy documentation
* IPy now works on Python 2.2 to 2.5
2006-10-26
* Release IPy 0.5
* Apply Jean Gillaux patch for netmask "/0.0.0.0" bug
* Apply William McVey patch for __nonzero__() bug
* Apply Victor Stinner patch: setup.py can use setuptools and fix URLs
* Allow "172.30.1.0/22" with new option IPy.check_addr_prefixlen=False
* Add regression tests
* Create AUTHORS file
2004-08-22
* IPy 0.42 works on Python 2.3 without warnings
2002-01-16
* IPy 0.41 has Python < 2.2 compatible unit tests and a README file
Diffstat (limited to 'net/py-IP')
-rw-r--r-- | net/py-IP/Makefile | 14 | ||||
-rw-r--r-- | net/py-IP/distinfo | 8 |
2 files changed, 11 insertions, 11 deletions
diff --git a/net/py-IP/Makefile b/net/py-IP/Makefile index 060d32e1d9f..4303f068baf 100644 --- a/net/py-IP/Makefile +++ b/net/py-IP/Makefile @@ -1,14 +1,14 @@ -# $NetBSD: Makefile,v 1.13 2010/02/02 11:17:52 obache Exp $ +# $NetBSD: Makefile,v 1.14 2010/02/02 11:34:52 obache Exp $ -DISTNAME= IPy-0.4 -PKGNAME= ${PYPKGPREFIX}-IP-0.4 -PKGREVISION= 1 +DISTNAME= IPy-0.70 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/IPy/IP/} CATEGORIES= net python -MASTER_SITES= http://c0re.23.nu/c0de/IPy/ +MASTER_SITES= http://pypi.python.org/packages/source/I/IPy/ -MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://c0re.23.nu/c0de/IPy/ +MAINTAINER= wenheping@gmail.com +HOMEPAGE= http://software.inl.fr/trac/trac.cgi/wiki/IPy COMMENT= Python module to handle IPv4 and IPv6 address +LICENSE= modified-bsd PKG_DESTDIR_SUPPORT= user-destdir diff --git a/net/py-IP/distinfo b/net/py-IP/distinfo index b195d0a58b2..98de0ad8769 100644 --- a/net/py-IP/distinfo +++ b/net/py-IP/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2005/02/24 12:14:02 agc Exp $ +$NetBSD: distinfo,v 1.3 2010/02/02 11:34:52 obache Exp $ -SHA1 (IPy-0.4.tar.gz) = b07bd23ada751a75eaab44981c44546c12b85a7e -RMD160 (IPy-0.4.tar.gz) = 347bcd0064cacc03036631927ea881c32db303e1 -Size (IPy-0.4.tar.gz) = 16143 bytes +SHA1 (IPy-0.70.tar.gz) = 8d5ddf7b599508a5a563b99242770493b159317a +RMD160 (IPy-0.70.tar.gz) = 352625191ba14905ccfe0d112828bccf18e18f4f +Size (IPy-0.70.tar.gz) = 22341 bytes |