[Python-modules-commits] r9823 - in packages/python-memcache/trunk/debian (6 files)

chaica-guest at users.alioth.debian.org chaica-guest at users.alioth.debian.org
Mon Sep 21 23:22:07 UTC 2009


    Date: Monday, September 21, 2009 @ 23:22:07
  Author: chaica-guest
Revision: 9823

  * New upstream version.
  * debian/control
    - bump Standards-Version to 3.8.3
    - bump required python version.
  * debian/watch
    - added the pasv option.
  * debian/copyright
    - Modified (C) to ?\194?\169.
  * debian rules
    - Using minimal dh7 now.
  * debian/compat
    - Bump to 7.

Modified:
  packages/python-memcache/trunk/debian/changelog
  packages/python-memcache/trunk/debian/compat
  packages/python-memcache/trunk/debian/control
  packages/python-memcache/trunk/debian/copyright
  packages/python-memcache/trunk/debian/rules
  packages/python-memcache/trunk/debian/watch

Modified: packages/python-memcache/trunk/debian/changelog
===================================================================
--- packages/python-memcache/trunk/debian/changelog	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/changelog	2009-09-21 23:22:07 UTC (rev 9823)
@@ -1,3 +1,20 @@
+python-memcache (1.44-1) unstable; urgency=low
+
+  * New upstream version.
+  * debian/control
+    - bump Standards-Version to 3.8.3
+    - bump required python version.
+  * debian/watch
+    - added the pasv option. 
+  * debian/copyright
+    - Modified (C) to ©.
+  * debian rules
+    - Using minimal dh7 now.
+  * debian/compat
+    - Bump to 7.
+
+ -- Carl Chenet <chaica at ohmytux.com>  Tue, 22 Sep 2009 01:20:31 +0200
+
 python-memcache (1.40-2) unstable; urgency=medium
 
   * debian/control

Modified: packages/python-memcache/trunk/debian/compat
===================================================================
--- packages/python-memcache/trunk/debian/compat	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/compat	2009-09-21 23:22:07 UTC (rev 9823)
@@ -1 +1 @@
-5
+7

Modified: packages/python-memcache/trunk/debian/control
===================================================================
--- packages/python-memcache/trunk/debian/control	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/control	2009-09-21 23:22:07 UTC (rev 9823)
@@ -1,20 +1,19 @@
 Source: python-memcache
 Section: python
 Priority: optional
-XS-Python-Version: >= 2.1
-Maintainer: Christopher Schmidt <crschmidt at metacarta.com>
+XS-Python-Version: all
+Maintainer: Carl Chenet <chaica at ohmytux.com>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 5.0.38)
-Build-Depends-Indep: python (>= 2.1), python-support (>= 0.6.4), 
-                     python-setuptools
-Standards-Version: 3.8.1
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: python, python-support, python-setuptools
+Standards-Version: 3.8.3
 Homepage: http://www.tummy.com/Community/software/python-memcached/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-memcache/trunk
 Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-memcache/trunk/
 
 Package: python-memcache
 Architecture: all
-Depends: ${python:Depends}
+Depends: ${misc:Depends}, ${python:Depends}
 Suggests: memcached
 Description: pure python memcached client 
  This software is a 100% Python interface to the memcached memory cache

Modified: packages/python-memcache/trunk/debian/copyright
===================================================================
--- packages/python-memcache/trunk/debian/copyright	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/copyright	2009-09-21 23:22:07 UTC (rev 9823)
@@ -3,7 +3,7 @@
 
 It was downloaded from http://www.tummy.com/Community/software/python-memcached/
 
-Copyright Holder: Copyright (C) 2003 Danga Interactive 
+Copyright Holder: Copyright © 2003 Danga Interactive 
 
 License:
  This package is licenced under the Python Software Foundation License 
@@ -56,7 +56,7 @@
       bound by the terms and conditions of this License Agreement.
 
 
-The Debian packaging is (C) 2008 Christopher Schmidt <crschmidt at metacarta.com>
+The Debian packaging is © 2008 Christopher Schmidt <crschmidt at metacarta.com>
 and is licensed under the BSD License.
 
 On Debian systems, the complete text of the BSD License can be found in

Modified: packages/python-memcache/trunk/debian/rules
===================================================================
--- packages/python-memcache/trunk/debian/rules	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/rules	2009-09-21 23:22:07 UTC (rev 9823)
@@ -1,42 +1,5 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+%:
+	dh $@
 
-PREFIX := debian/python-memcache
-PACKAGE_DIR := /usr/lib/`pyversions -d`/site-packages
-
-build:
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -rf python_memcached.egg-info build dist
-	
-	dh_clean *.pyc 
-    
-install: build
-	dh_testdir
-	dh_testroot
-	
-	python ./setup.py install --no-compile --root=$(PREFIX)
-
-# Build architecture-independent files here.
-binary-indep: build install
-	dh_testdir
-	dh_testroot
-	dh_installdocs
-	dh_installchangelogs ChangeLog 
-	dh_compress
-	dh_fixperms
-	chmod +x $(PREFIX)$(PACKAGE_DIR)/memcache.py
-	dh_pysupport
-	dh_installdeb
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep
-binary-arch:
-.PHONY: build clean binary-indep binary install

Modified: packages/python-memcache/trunk/debian/watch
===================================================================
--- packages/python-memcache/trunk/debian/watch	2009-09-21 22:45:26 UTC (rev 9822)
+++ packages/python-memcache/trunk/debian/watch	2009-09-21 23:22:07 UTC (rev 9823)
@@ -1,2 +1,2 @@
 version=3
-ftp://ftp.tummy.com/pub/python-memcached/python-memcached-([\d\.]*)\.tar\.gz
+opts=pasv ftp://ftp.tummy.com/pub/python-memcached/python-memcached-([\d\.]*)\.tar\.gz




More information about the Python-modules-commits mailing list