[Python-modules-commits] r30631 - in packages/python-geoip/trunk/debian (8 files)
kitterman at users.alioth.debian.org
kitterman at users.alioth.debian.org
Mon Sep 15 14:42:07 UTC 2014
Date: Monday, September 15, 2014 @ 14:42:06
Author: kitterman
Revision: 30631
* New upstream release
- Bump minimum libgeoip-dev build-dep version to >= 1.4.7
- Add build-depends on python*-setuptools
- Update debian/copyright (document switch to LGPL)
* Agreed swap of DPMT to maintainer
* Add myself to uploaders
* Switch from CDBS/pysupport to dh/dh-python
- Replace debian/rules (override dh_autotest since tests require data
that is not packaged/available during build)
- Drop cdbs and python-support from build-depends
- Add dh-python to build-depends
- Remove debian/pycompat and debian/pyversions
* Add support for python3:
- Build --with python3
- Add python3-geoip to debian/control
- Add X-Python3-Version: >= 3.3 to debian/control
* Remove unneeded python:Provides
* Bump compat/debhelper version requirement to 9
* Update standards version to 3.9.5 without further change
* Add debian/watch
Added:
packages/python-geoip/trunk/debian/watch
Modified:
packages/python-geoip/trunk/debian/changelog
packages/python-geoip/trunk/debian/compat
packages/python-geoip/trunk/debian/control
packages/python-geoip/trunk/debian/copyright
packages/python-geoip/trunk/debian/rules
Deleted:
packages/python-geoip/trunk/debian/pycompat
packages/python-geoip/trunk/debian/pyversions
Modified: packages/python-geoip/trunk/debian/changelog
===================================================================
--- packages/python-geoip/trunk/debian/changelog 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/changelog 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1,9 +1,32 @@
-python-geoip (1.2.4-3) UNRELEASED; urgency=low
+python-geoip (1.3.2-1) unstable; urgency=medium
+ [ Jakub Wilk ]
* Add Vcs-* fields to debian/control.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 16:02:40 +0200
+ [ Scott Kitterman ]
+ * New upstream release
+ - Bump minimum libgeoip-dev build-dep version to >= 1.4.7
+ - Add build-depends on python*-setuptools
+ - Update debian/copyright (document switch to LGPL)
+ * Agreed swap of DPMT to maintainer
+ * Add myself to uploaders
+ * Switch from CDBS/pysupport to dh/dh-python
+ - Replace debian/rules (override dh_autotest since tests require data
+ that is not packaged/available during build)
+ - Drop cdbs and python-support from build-depends
+ - Add dh-python to build-depends
+ - Remove debian/pycompat and debian/pyversions
+ * Add support for python3:
+ - Build --with python3
+ - Add python3-geoip to debian/control
+ - Add X-Python3-Version: >= 3.3 to debian/control
+ * Remove unneeded python:Provides
+ * Bump compat/debhelper version requirement to 9
+ * Update standards version to 3.9.5 without further change
+ * Add debian/watch
+ -- Scott Kitterman <scott at kitterman.com> Mon, 15 Sep 2014 09:52:10 -0400
+
python-geoip (1.2.4-2) unstable; urgency=low
* Add the Python modules team to uploaders.
Modified: packages/python-geoip/trunk/debian/compat
===================================================================
--- packages/python-geoip/trunk/debian/compat 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/compat 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1 +1 @@
-5
+9
Modified: packages/python-geoip/trunk/debian/control
===================================================================
--- packages/python-geoip/trunk/debian/control 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/control 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1,24 +1,39 @@
Source: python-geoip
Section: python
Priority: optional
-Maintainer: Josselin Mouette <joss at debian.org>
-Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), cdbs (>= 0.4.43), libgeoip-dev (>= 1.4.5), python-support (>= 0.3)
-Standards-Version: 3.8.2
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Josselin Mouette <joss at debian.org>,
+ Scott Kitterman <scott at kitterman.com>
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ libgeoip-dev (>= 1.4.7),
+ python-all-dev (>= 2.3.5-11),
+ python-setuptools,
+ python3-all-dev (>= 3.3),
+ python3-setuptools
+Standards-Version: 3.9.5
+X-Python3-Version: >= 3.3
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-geoip/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-geoip/trunk/
Package: python-geoip
Architecture: any
-Depends: ${shlibs:Depends},
- ${misc:Depends},
- ${python:Depends},
- geoip-database
-Provides: ${python:Provides}
+Depends: geoip-database, ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Description: Python bindings for the GeoIP IP-to-country resolver library
GeoIP is a library that enables the user to find the country that any
- IP address or hostname originates from, using a database instead of
+ IP address or hostname originates from, using a database instead of
DNS.
.
- This package contains the Python bindings for GeoIP, allowing to use
+ This package contains the Python bindings for GeoIP, allowing to use
this library within a Python program.
+
+Package: python3-geoip
+Architecture: any
+Depends: geoip-database, ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Description: Python3 bindings for the GeoIP IP-to-country resolver library
+ GeoIP is a library that enables the user to find the country that any
+ IP address or hostname originates from, using a database instead of
+ DNS.
+ .
+ This package contains the Python3 bindings for GeoIP, allowing to use
+ this library within a Python3 program.
Modified: packages/python-geoip/trunk/debian/copyright
===================================================================
--- packages/python-geoip/trunk/debian/copyright 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/copyright 2014-09-15 14:42:06 UTC (rev 30631)
@@ -7,21 +7,27 @@
Copyright:
- Copyright (c) 2002 MaxMind.com, All rights reserved.
+Copyright (c) 2010 MaxMind LLC
- This package 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; version 2 dated June, 1991.
+All rights reserved. This package is free software; it is licensed
+under the LGPL.
- This package 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.
+ * Copyright (C) 2007 MaxMind LLC
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
- You should have received a copy of the GNU General Public License
- along with this package; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- 02110-1301, USA.
-
-On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL-2'.
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
Deleted: packages/python-geoip/trunk/debian/pycompat
===================================================================
--- packages/python-geoip/trunk/debian/pycompat 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/pycompat 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1 +0,0 @@
-2
Deleted: packages/python-geoip/trunk/debian/pyversions
===================================================================
--- packages/python-geoip/trunk/debian/pyversions 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/pyversions 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1 +0,0 @@
-2.0-
Modified: packages/python-geoip/trunk/debian/rules
===================================================================
--- packages/python-geoip/trunk/debian/rules 2014-09-15 11:10:29 UTC (rev 30630)
+++ packages/python-geoip/trunk/debian/rules 2014-09-15 14:42:06 UTC (rev 30631)
@@ -1,7 +1,9 @@
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
-# Copyright © 2002,2003 Colin Walters <walters at debian.org>
-DEB_PYTHON_SYSTEM=pysupport
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/python-distutils.mk
+export PYBUILD_NAME=geoip
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test: # Data needed for tests not packaged
Added: packages/python-geoip/trunk/debian/watch
===================================================================
--- packages/python-geoip/trunk/debian/watch (rev 0)
+++ packages/python-geoip/trunk/debian/watch 2014-09-15 14:42:06 UTC (rev 30631)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/G/GeoIP/GeoIP-(.*).tar.gz debian uupdate
More information about the Python-modules-commits
mailing list