[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-04-13 Thread Launchpad Bug Tracker
[Expired for python-netaddr (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: python-netaddr (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-02-12 Thread Adam Stokes
** Patch removed: python-netaddr_0.7.10-1ubuntu14.04.2.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+attachment/4318193/+files/python-netaddr_0.7.10-1ubuntu14.04.2.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-02-12 Thread Adam Stokes
** Patch added: python-netaddr_0.7.10-1ubuntu14.04.2.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+attachment/4318193/+files/python-netaddr_0.7.10-1ubuntu14.04.2.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-02-12 Thread Adam Stokes
James,

I looked into using this module in our cloud installer, one bug in
particular that exists in 0.7.10 but not in 0.7.13 is the use of
sys.maxint:


Traceback (most recent call last):
  File stdin, line 1, in module
  File /usr/share/openstack/cloudinstall/netutils.py, line 78, in get_ip_set
ips = list(IPSet([cidr]))
  File /usr/lib/python3/dist-packages/netaddr/ip/sets.py, line 518, in __len__
if size  _sys.maxint:
AttributeError: 'module' object has no attribute 'maxint'

Code to reproduce:
from netaddr import IPSet
def get_ip_set(cidr):
 Returns a list of ip's in cidr for use in juju's no-proxy setting

ips = list(IPSet([cidr]))
return ,.join(str(x) for x in ips)

get_ip_set('10.0.4.0/24')

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-02-12 Thread Adam Stokes
Looks like a small typo

if size  _sys.maxint should be if size  _sys_maxint

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-01-22 Thread James Page
later release have the newer version, however trusty still has 0.7.10 -
are there any specific bugs we should cherry pick for the py3 support?
it might be better to resolve specific bug users experience.

** Changed in: python-netaddr (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2015-01-22 Thread Sören
I went through the changes and if a bump to 0.7.11 (or higher) is not
possible I would  cherry pick:

https://github.com/drkjam/netaddr/issues/46 (my Issue and python3
specific)


Bugs I would fix in python-netaddr and python3-netaddr:

https://github.com/drkjam/netaddr/issues/38 (accidently removed function)
https://github.com/drkjam/netaddr/issues/53 (Allign implementation to RFC spec)
https://github.com/drkjam/netaddr/issues/56 (Fix IPv6 compare function)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 1307733] Re: python3-netaddr 0.7.10 with poor python3 support

2014-04-14 Thread Sören Berger
Typo - this affects python3-netaddr not python-netaddr

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-netaddr in Ubuntu.
https://bugs.launchpad.net/bugs/1307733

Title:
  python3-netaddr 0.7.10 with poor python3 support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-netaddr/+bug/1307733/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs