[Python-modules-commits] r32782 - in packages/python-netfilter/trunk/debian (4 files)

sharky at users.alioth.debian.org sharky at users.alioth.debian.org
Tue May 26 08:00:35 UTC 2015


    Date: Tuesday, May 26, 2015 @ 08:00:30
  Author: sharky
Revision: 32782

python-netfilter: first stab at python3 support

Modified:
  packages/python-netfilter/trunk/debian/changelog
  packages/python-netfilter/trunk/debian/control
  packages/python-netfilter/trunk/debian/copyright
  packages/python-netfilter/trunk/debian/rules

Modified: packages/python-netfilter/trunk/debian/changelog
===================================================================
--- packages/python-netfilter/trunk/debian/changelog	2015-05-25 09:52:25 UTC (rev 32781)
+++ packages/python-netfilter/trunk/debian/changelog	2015-05-26 08:00:30 UTC (rev 32782)
@@ -1,8 +1,15 @@
-python-netfilter (0.5.9-2) UNRELEASED; urgency=low
+python-netfilter (0.6.1-1) UNRELEASED; urgency=low
 
+  [ Jeremy Lainé ]
+  * New upstream release.
+  * Build both python-netfilter and python3-netfilter packages.
+  * Update Standards-Version to 3.9.6 (no changes).
+  * Update debian/copyright to reflect upstream changes.
+
+  [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 
- -- Jakub Wilk <jwilk at debian.org>  Sun, 05 May 2013 16:02:59 +0200
+ -- Jeremy Lainé <jeremy.laine at m4x.org>  Thu, 21 May 2015 11:29:59 +0200
 
 python-netfilter (0.5.9-1) unstable; urgency=low
 

Modified: packages/python-netfilter/trunk/debian/control
===================================================================
--- packages/python-netfilter/trunk/debian/control	2015-05-25 09:52:25 UTC (rev 32781)
+++ packages/python-netfilter/trunk/debian/control	2015-05-26 08:00:30 UTC (rev 32782)
@@ -2,19 +2,39 @@
 Section: python
 Priority: optional
 Maintainer: Jeremy Lainé <jeremy.laine at m4x.org>
-Build-Depends: debhelper (>= 7), python-support, python
-Standards-Version: 3.9.3
-Homepage: http://opensource.bolloretelecom.eu/projects/python-netfilter
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://github.com/jlaine/python-netfilter
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-netfilter/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-netfilter/trunk/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
 
 Package: python-netfilter
 Architecture: all
 Depends: ${misc:Depends}, ${python:Depends}, iptables
-Description: Python modules for manipulating netfilter rules
- These Python modules act as a wrapper around iptables to manipulate
+Description: Python module for manipulating netfilter rules
+ This Python module acts as a wrapper around iptables to manipulate
  the Linux kernel's packet filtering tables.
  .
  Typical applications include building firewalls or network access
  controllers.
+ .
+ This package contains the module for Python 2.
 
+Package: python3-netfilter
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, iptables
+Description: Python module for manipulating netfilter rules
+ This Python module acts as a wrapper around iptables to manipulate
+ the Linux kernel's packet filtering tables.
+ .
+ Typical applications include building firewalls or network access
+ controllers.
+ .
+ This package contains the module for Python 3.

Modified: packages/python-netfilter/trunk/debian/copyright
===================================================================
--- packages/python-netfilter/trunk/debian/copyright	2015-05-25 09:52:25 UTC (rev 32781)
+++ packages/python-netfilter/trunk/debian/copyright	2015-05-26 08:00:30 UTC (rev 32782)
@@ -2,11 +2,11 @@
 Debianized-By: Jeremy Lainé <jeremy.laine at m4x.org>
 Debianized-Date: Fri, 27 Mar 2009 12:39:54 +0100
 Upstream-Name: python-netfilter
-Upstream-Contact: Jeremy Lainé <jeremy.laine at bolloretelecom.eu>
-Source: http://opensource.bolloretelecom.eu/projects/python-netfilter
+Upstream-Contact: Jeremy Lainé <jeremy.laine at m4x.org>
+Source: https://github.com/jlaine/python-netfilter
 
 Files: *
-Copyright: 2007-2012 Bolloré telecom
+Copyright: 2007-2012 Bolloré telecom, 2013-2015 Jeremy Lainé
 License: GPL-3+
 
 Files: debian/*

Modified: packages/python-netfilter/trunk/debian/rules
===================================================================
--- packages/python-netfilter/trunk/debian/rules	2015-05-25 09:52:25 UTC (rev 32781)
+++ packages/python-netfilter/trunk/debian/rules	2015-05-26 08:00:30 UTC (rev 32782)
@@ -1,4 +1,8 @@
 #!/usr/bin/make -f
+# -*- makefile -*-
 
+export PYBUILD_DESTDIR_python2=debian/python-netfilter/
+export PYBUILD_DESTDIR_python3=debian/python3-netfilter/
+
 %:
-	dh $@
+	dh $@ --with python2,python3 --buildsystem=pybuild




More information about the Python-modules-commits mailing list