--- netifaces-0.5.orig/debian/pycompat +++ netifaces-0.5/debian/pycompat @@ -0,0 +1 @@ +2 --- netifaces-0.5.orig/debian/copyright +++ netifaces-0.5/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by +Mario Izquierdo (mariodebian) on +Thu, 07 Aug 2008 12:16:42 +0200. + +It was downloaded from http://alastairs-place.net/netifaces/ + +Copyright: + + Copyright (c) 2007, 2008 Alastair Houghton + + MIT-style license. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + +The Debian packaging is © 2008-2009, Mario Izquierdo (mariodebian) + and is licensed under the MIT license, see above + --- netifaces-0.5.orig/debian/compat +++ netifaces-0.5/debian/compat @@ -0,0 +1 @@ +7 --- netifaces-0.5.orig/debian/watch +++ netifaces-0.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://alastairs-place.net/netifaces/ .*/netifaces-(.*)\.tar\.gz --- netifaces-0.5.orig/debian/changelog +++ netifaces-0.5/debian/changelog @@ -0,0 +1,17 @@ +netifaces (0.5-1) unstable; urgency=low + + * New upstream version + * Add VCS- fields in debian/control + * Fix lintian copyright-with-old-dh-make-debian-copyright + * Append (debug extension) to python-netifaces-dbg short description + * Bump up Standards-Version: 3.8.1 (no changes) + * Update debhelper and compat version to >= 7.0.0 + * Remove debian/copyright Upstream text + + -- Mario Izquierdo (mariodebian) Sun, 22 Mar 2009 12:25:56 +0100 + +netifaces (0.4-1) unstable; urgency=low + + * Initial release (Closes: #500394) + + -- Mario Izquierdo (mariodebian) Sat, 27 Sep 2008 22:24:40 +0200 --- netifaces-0.5.orig/debian/rules +++ netifaces-0.5/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM=pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +# cdbs is confused if more than one binary package is build: +DEB_DESTDIR=$(CURDIR)/debian/python-netifaces + + +build/python-netifaces-dbg:: $(cdbs_python_build_versions:%=build-dbg-ext-%) + +build-dbg-ext-%: + python$*-dbg setup.py build + + +install/python-netifaces-dbg:: $(cdbs_python_build_versions:%=install-dbg-ext-%) + find debian/python-netifaces-dbg ! -type d ! \( -name '*_d.so' -o -name '*.h' \) -exec rm {} \; + find debian/python-netifaces-dbg -depth -empty -exec rmdir {} \; + +install-dbg-ext-%: + python$*-dbg setup.py install \ + --single-version-externally-managed \ + --root $(CURDIR)/debian/python-netifaces-dbg + +binary-predeb/python-netifaces-dbg:: + rm -rf debian/python-netifaces-dbg/usr/share/doc/python-netifaces-dbg + ln -s python-netifaces debian/python-netifaces-dbg/usr/share/doc/python-netifaces-dbg + +clean:: + rm -rf $(CURDIR)/build + chmod -x $(CURDIR)/netifaces.egg-info/* --- netifaces-0.5.orig/debian/docs +++ netifaces-0.5/debian/docs @@ -0,0 +1 @@ +README --- netifaces-0.5.orig/debian/control +++ netifaces-0.5/debian/control @@ -0,0 +1,29 @@ +Source: netifaces +Section: python +Priority: optional +Maintainer: Mario Izquierdo (mariodebian) +Build-Depends: cdbs, debhelper (>= 7.0.0), python-support, python-setuptools, python-all-dev, python-all-dbg +Standards-Version: 3.8.1 +Homepage: http://alastairs-place.net/netifaces/ +Vcs-Git: git://git.debian.org/~mario-guest/netifaces.git +Vcs-Browser: http://git.debian.org/?p=users/mario-guest/netifaces.git + +Package: python-netifaces +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: ${python:Provides} +Description: portable network iface information for Python + netifaces provides a (hopefully portable-ish) way for Python programmers to + get access to a list of the network interfaces on the local machine, and to + obtain the addresses of those network interfaces. + +Package: python-netifaces-dbg +Priority: extra +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, python-netifaces (= ${binary:Version}), python-dbg +Description: portable network iface information for Python (debug extension) + netifaces provides a (hopefully portable-ish) way for Python programmers to + get access to a list of the network interfaces on the local machine, and to + obtain the addresses of those network interfaces. + . + This package contains debug symbols of python-netifaces