Up to [cvs.NetBSD.org] / pkgsrc / net / py-IP
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.26 / (download) - annotate - [select for diffs], Fri Jan 14 11:29:02 2022 UTC (22 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
HEAD
Changes since 1.25: +5 -1
lines
Diff to previous 1.25 (colored)
py-IP: fix PLIST for python 2.7
Revision 1.25 / (download) - annotate - [select for diffs], Mon Jan 10 08:40:59 2022 UTC (22 months, 3 weeks ago) by wiz
Branch: MAIN
Changes since 1.24: +5 -2
lines
Diff to previous 1.24 (colored)
py-IP: convert to egg.mk
Revision 1.24 / (download) - annotate - [select for diffs], Sun Jan 3 21:52:16 2021 UTC (2 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (colored)
py-IP: updated to 1.01 Version 1.01 * Update to support up to Python 3.9
Revision 1.23 / (download) - annotate - [select for diffs], Wed May 15 11:46:39 2019 UTC (4 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2
Changes since 1.22: +5 -3
lines
Diff to previous 1.22 (colored)
py-IP: updated to 1.00 Version 1.00: * Fix IPv6 string interpretation for small ints * Various Python3 language fixes * consider 127.0 range LOOPBACK not PRIVATE
Revision 1.22 / (download) - annotate - [select for diffs], Tue Sep 26 17:37:40 2017 UTC (6 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4
Changes since 1.21: +3 -3
lines
Diff to previous 1.21 (colored)
py-IP: update to 0.83 Version 0.83: * Add carrier grade NAT ranges * Unbreak lots of packing systems by not having a letter in the release version
Revision 1.21 / (download) - annotate - [select for diffs], Wed Jun 8 17:43:36 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Changes since 1.20: +2 -2
lines
Diff to previous 1.20 (colored)
Switch to MASTER_SITES_PYPI.
Revision 1.20 / (download) - annotate - [select for diffs], Mon Jul 28 02:38:24 2014 UTC (9 years, 4 months ago) by wen
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1,
pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4,
pkgsrc-2014Q3-base,
pkgsrc-2014Q3
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
Update to 0.81 Upstream changes: Version 0.81 (2013-04-08) * Correct reverseName() for IPv6 addresses, so IP('::1').reverseName() returns correct. * Add network mask awareness to v46map() * Fix Python 3 errors in IPSet class * Make IPSet base class be object when MutableSet isn't available, fixing errors in Python 2.5 Version 0.80 (2013-03-26) ------------ * Drop support of Python older than 2.4 * Python 3 does not need 2to3 conversion anymore (same code base) * Fix adding of non-adjacent networks: 192.168.0.0/24 + 192.168.255.0/24 made 192.168.0.0/23 * Fix adding networks that don't create a valid subnet: 192.168.1.0/24 + 192.168.2.0/24 made 192.168.1.0/23 * Fix adding with an IPv6 address where .int() was < 32 bits made IPy believe it was an IPv4 address: ::ffff:0/112 + ::1:0:0/112 made 255.255.0.0/111 * Add support of IPSets * Add support for subtracting a network range * Prevent IPv4 and IPv6 ranges from saying they contain each other * Add a .v46map() method to convert mapped address ranges such as IP('::ffff:192.168.1.1'); RFC 4291 * Change sort order to more natural: IPv4 before IPv6; less-specific prefixes first (/0 before /32) Version 0.76 (2013-03-19) ------------------------- * ip == other and ip != other doesn't fail with an exception anymore if other is not a IP object * Add IP.get_mac() method: get the 802.3 MAC address from IPv6 RFC 2464 address. * Fix IP('::/0')[0]: return an IPv6 instead of an IPv4 address
Revision 1.19 / (download) - annotate - [select for diffs], Sat Jan 25 10:30:16 2014 UTC (9 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base,
pkgsrc-2014Q2,
pkgsrc-2014Q1-base,
pkgsrc-2014Q1
Changes since 1.18: +1 -3
lines
Diff to previous 1.18 (colored)
Mark packages as not ready for python-3.x where applicable; either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
Revision 1.18 / (download) - annotate - [select for diffs], Tue Oct 23 17:19:01 2012 UTC (11 years, 1 month ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2,
pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4
Changes since 1.17: +1 -3
lines
Diff to previous 1.17 (colored)
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Revision 1.17 / (download) - annotate - [select for diffs], Sun Apr 8 19:09:09 2012 UTC (11 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base,
pkgsrc-2012Q3,
pkgsrc-2012Q2-base,
pkgsrc-2012Q2
Changes since 1.16: +1 -2
lines
Diff to previous 1.16 (colored)
Remove python24 and all traces of it from pkgsrc. Remove devel/py-ctypes (only needed by and supporting python24). Remove PYTHON_VERSIONS_ACCEPTED and PYTHON_VERSIONS_INCOMPATIBLE lines that just mirror defaults now. Miscellaneous cleanup while editing all these files.
Revision 1.16 / (download) - annotate - [select for diffs], Sat Dec 3 00:02:15 2011 UTC (12 years ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1,
pkgsrc-2011Q4-base,
pkgsrc-2011Q4
Changes since 1.15: +2 -1
lines
Diff to previous 1.15 (colored)
Tag the 28 locations that result in a Python 3.1 package as supporting so. Remove it from the default list for the rest.
Revision 1.15 / (download) - annotate - [select for diffs], Wed Nov 2 10:58:33 2011 UTC (12 years, 1 month ago) by obache
Branch: MAIN
Changes since 1.14: +8 -5
lines
Diff to previous 1.14 (colored)
Update py-IP to 0.75. while here, * convert to register egg-info * add test target Version 0.75 (2011-04-12) ------------------------- * IP('::/0').netmask() gives IP('::') instead of IP('0.0.0.0') Version 0.74 (2011-02-16) ------------------------- * Fix tests for Python 3.1 and 3.2 * ip.__nonzero__() and (ipa in ipb) return a bool instead of 0 or 1 * IP('0.0.0.0/0') + IP('0.0.0.0/0') raises an error, fix written by Arfrever Version 0.73 (2011-02-15) ------------------------- * Support Python 3: setup.py runs 2to3 * Update the ranges for IPv6 IPs * Fix reverseName() and reverseNames() for IPv4 in IPv6 addresses * Drop support of Python < 2.5 Version 0.72 (2010-11-23) ------------------------- * Include examples and MANIFEST.in in source build (add them to MANIFEST.in) * Remove __rcsid__ constant from IPy module Version 0.71 (2010-10-01) ------------------------- * Use xrange() instead of range() * Use isinstance(x, int) instead of type(x) == types.IntType * Prepare support of Python3 (use integer division: x // y) * Fix IP(long) constructor: ensure that the address is not too large * Constructor raise a TypeError if the type is not int, long, str or unicode * 223.0.0.0/8 is now public (belongs to APNIC)
Revision 1.14 / (download) - annotate - [select for diffs], Tue Feb 2 11:34:52 2010 UTC (13 years, 10 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.13: +7 -7
lines
Diff to previous 1.13 (colored)
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
Revision 1.13 / (download) - annotate - [select for diffs], Tue Feb 2 11:17:52 2010 UTC (13 years, 10 months ago) by obache
Branch: MAIN
Changes since 1.12: +2 -2
lines
Diff to previous 1.12 (colored)
Fix a pkglint waring, force to exactly defined as "yes".
Revision 1.12 / (download) - annotate - [select for diffs], Tue Feb 2 11:16:43 2010 UTC (13 years, 10 months ago) by obache
Branch: MAIN
Changes since 1.11: +3 -3
lines
Diff to previous 1.11 (colored)
Update HOMEPAGE and MASTER_SITES.
Revision 1.11 / (download) - annotate - [select for diffs], Thu Jun 12 02:14:41 2008 UTC (15 years, 5 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.10: +3 -1
lines
Diff to previous 1.10 (colored)
Add DESTDIR support.
Revision 1.10 / (download) - annotate - [select for diffs], Sun Sep 30 17:45:24 2007 UTC (16 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Reset maintainer -- shell@ is inactive.
Revision 1.9 / (download) - annotate - [select for diffs], Thu Mar 16 22:48:42 2006 UTC (17 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
Consistently use NetBSD.org address for shell, shellhung.org does not exist.
Revision 1.8 / (download) - annotate - [select for diffs], Sun Feb 5 23:10:29 2006 UTC (17 years, 10 months ago) by joerg
Branch: MAIN
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
Recursive revision bump / recommended bump for gettext ABI change.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:58 2005 UTC (18 years, 7 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.6: +1 -2
lines
Diff to previous 1.6 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.6 / (download) - annotate - [select for diffs], Thu Jul 22 09:16:03 2004 UTC (19 years, 4 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
pkgsrc-2004Q4-base,
pkgsrc-2004Q4,
pkgsrc-2004Q3-base,
pkgsrc-2004Q3
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
add python as category ok'd a while back at pkgsrcCon by agc and wiz
Revision 1.5 / (download) - annotate - [select for diffs], Tue Apr 27 06:05:57 2004 UTC (19 years, 7 months ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base,
pkgsrc-2004Q2
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
Convert to buildlink3.
Revision 1.4 / (download) - annotate - [select for diffs], Sun Sep 21 09:29:15 2003 UTC (20 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base,
pkgsrc-2004Q1,
pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
Add USE_BUILDLINK2 so this picks up a proper depend
Revision 1.3 / (download) - annotate - [select for diffs], Mon Jul 21 17:11:10 2003 UTC (20 years, 4 months ago) by martti
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
COMMENT should start with a capital letter.
Revision 1.2 / (download) - annotate - [select for diffs], Sat Sep 21 23:46:54 2002 UTC (21 years, 2 months ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-6-1-base,
netbsd-1-6-1
Changes since 1.1: +2 -2
lines
Diff to previous 1.1 (colored)
Strip the ".buildlink" from the names of the python application and extension Makefile fragments, because they really don't have anything to do with the buildlink[12] frameworks. Change all the Makefiles that use application.buildlink.mk and extension.buildlink.mk to use application.mk and extension.mk instead.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Tue Jan 29 16:24:39 2002 UTC (21 years, 10 months ago) by drochner
Branch: TNF
CVS Tags: tns_020129,
pkgviews-base,
pkgviews,
netbsd-1-6-RELEASE-base,
netbsd-1-6,
netbsd-1-5-PATCH003,
buildlink2-base,
buildlink2
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
initial import of py-IP-0.4, a python module to handle IPv4 and IPv6 address, submitted by Shell Hung per PR pkg/15144
Revision 1.1 / (download) - annotate - [select for diffs], Tue Jan 29 16:24:39 2002 UTC (21 years, 10 months ago) by drochner
Branch: MAIN
Initial revision