debian/0000775000000000000000000000000012047331355007173 5ustar debian/control0000664000000000000000000000133712047321762010603 0ustar Source: python-iplib Section: python Priority: optional Maintainer: Ubuntu MOTU Developers XSBC-Original-Maintainer: Christoph Haas Build-Depends: debhelper (>= 7.0.53), python-all (>= 2.6.6-3~) Standards-Version: 3.9.3 X-Python-Version: >= 2.6 Package: python-iplib Architecture: all Depends: ${misc:Depends}, ${python:Depends} Conflicts: python2.3-iplib (<< 1.0-1.1), python2.4-iplib (<< 1.0-1.1) Replaces: python2.3-iplib (<< 1.0-1.1), python2.4-iplib (<< 1.0-1.1) Description: Python library to convert amongst many different IPv4 notations You can use this Python module to convert amongst many different notations and to manage couples of address/netmask in the CIDR notation. debian/source/0000775000000000000000000000000012047331353010471 5ustar debian/source/format0000664000000000000000000000001412047327153011702 0ustar 3.0 (quilt) debian/docs0000664000000000000000000000004212047331133010034 0ustar docs/README.iplib docs/README.txt debian/changelog0000664000000000000000000000656412047321710011052 0ustar python-iplib (1.1-3ubuntu2) raring; urgency=low * Updating to be more inline with current debian python policy. * Increase debian/compat to 7. * Removed debian/pycompat not needed. * Changed to Source Format 3.0 (quilt). * debian/control - increased debhelper to >= 7.0.53. - increased python-all to (>= 2.6.6-3~). - removed B-D-I on python-support it is now depreceated. - increased Standards Version to 3.9.3 no changes needed. - use X-P-V instead of XS-P-V. - removed XB-P-V not needed. - removed Provides. * debian/rules - update to use dh7 tiny rules and dh_python2. -- Charlie Smotherman Fri, 09 Nov 2012 18:28:33 -0500 python-iplib (1.1-3ubuntu1) raring; urgency=low * Merge from Debian unstable. Remaining changes: - debian/control: add XS-Python-Version field - debian/rules: change hashbangs "#!/usr/bin/env python" to more policy compliant "#!/usr/bin/python" -- Logan Rosen Sat, 03 Nov 2012 15:46:24 -0400 python-iplib (1.1-3) unstable; urgency=low * Re-upload to remove binary dependency on Python 2.5 that is now being removed the repository (closes: #623920) -- Christoph Haas Sun, 24 Apr 2011 19:34:33 +0200 python-iplib (1.1-2ubuntu1) jaunty; urgency=low * Merge from Debian unstable, remaining Ubuntu changes: - debian/control: add XS-Python-Version field - debian/rules: change hashbangs "#!/usr/bin/env python" to more policy compliant "#!/usr/bin/python" -- Devid Antonio Filoni Sat, 06 Dec 2008 13:58:09 +0100 python-iplib (1.1-2) unstable; urgency=low * Minor lintian fixes. -- Christoph Haas Thu, 18 Sep 2008 23:52:03 +0200 python-iplib (1.1-1ubuntu1) intrepid; urgency=low * Merge from Debian unstable (LP: #231057). Remaining Ubuntu changes: - debian/control: * modified Maintainer value to match specifications (LP: #230350) * added XS-Python-Version field - debian/rules: changed hashbangs "#!/usr/bin/env python" to more policy compliant "#!/usr/bin/python" -- Andrea Gasparini Mon, 25 Feb 2008 10:33:42 +0100 python-iplib (1.1-1) unstable; urgency=low * New upstream release. -- Christoph Haas Sun, 24 Feb 2008 21:54:37 +0100 python-iplib (1.0-2ubuntu1) feisty; urgency=low * Install for all supported python versions. * Remove dependency on versioned python package. -- Matthias Klose Mon, 15 Jan 2007 16:59:53 +0100 python-iplib (1.0-2) unstable; urgency=low * NMU acknowledged. Thanks. (Closes: #373318) -- Christoph Haas Thu, 12 Oct 2006 23:04:01 +0200 python-iplib (1.0-1.1) unstable; urgency=low * Non-maintainer upload. * Update package to the last python policy (Closes: #373318). -- Pierre Habouzit Thu, 3 Aug 2006 08:42:14 +0200 python-iplib (1.0-1) unstable; urgency=low * New upstream release -- Christoph Haas Tue, 23 May 2006 21:21:48 +0200 python-iplib (0.9-2) unstable; urgency=low * Tiny typo in the control file. python-iplib referred to a wrong package. -- Christoph Haas Tue, 25 Oct 2005 20:26:24 +0200 python-iplib (0.9-1) unstable; urgency=low * Initial release (closes: #335572) -- Christoph Haas Mon, 24 Oct 2005 18:30:00 +0200 debian/rules0000775000000000000000000000145312046002507010247 0ustar #!/usr/bin/make -f # Verbose mode #export DH_VERBOSE=1 PYVERS := $(shell pyversions -s) %: dh $@ --with python2 override_dh_auto_clean: find . -name "*.py[co]" -exec rm -f {} \; override_dh_auto_install: set -e; \ for PY in $(PYVERS); do \ $$PY setup.py install --root `pwd`/debian/python-iplib \ --install-scripts usr/share/doc/python-iplib/examples/ \ --install-layout=deb; \ done # Replace all '#!' calls to python with /usr/bin/python # and make them executable set -e; \ for i in `find debian/python-iplib -type f`; do \ sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \ $$i > $$i.temp; \ if cmp --quiet $$i $$i.temp; then \ rm -f $$i.temp; \ else \ mv -f $$i.temp $$i; \ chmod 755 $$i; \ echo "fixed interpreter: $$i"; \ fi; \ done debian/copyright0000664000000000000000000000177612047331133011133 0ustar This package was debianized by Christoph Haas . It was downloaded from http://erlug.linux.it/~da/soft/iplib/ Upstream Author: Davide Alberani Copyright: (c) 2001-2006 Davide Alberani This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License with your Debian GNU system, in /usr/share/common-licenses/GPL, or with the Debian GNU source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA debian/README.Debian0000664000000000000000000000013712047331133011227 0ustar Please find the three executable files cidrinfo, ipconv and nmconv in the examples directory. debian/compat0000664000000000000000000000000212045731022010362 0ustar 7