[Python-modules-commits] r12198 - in packages/python-event/trunk/debian (3 files)

luciano at users.alioth.debian.org luciano at users.alioth.debian.org
Sat Mar 6 21:06:03 UTC 2010


    Date: Saturday, March 6, 2010 @ 21:05:55
  Author: luciano
Revision: 12198

implementing dpatch

Modified:
  packages/python-event/trunk/debian/changelog
  packages/python-event/trunk/debian/control
  packages/python-event/trunk/debian/rules

Modified: packages/python-event/trunk/debian/changelog
===================================================================
--- packages/python-event/trunk/debian/changelog	2010-03-06 19:54:14 UTC (rev 12197)
+++ packages/python-event/trunk/debian/changelog	2010-03-06 21:05:55 UTC (rev 12198)
@@ -4,8 +4,10 @@
   * Prepare for the Python 2.6 transition (closes: #556854):
     - pass "--prefix=/usr" to setup.py call.
   * Bump standards version to 3.8.3 (no changes needed).
+  [ Luciano Bello ]
+  * It doesn't depend on event_sigcb anymore.
 
- -- Luciano Bello <luciano at debian.org>  Sat, 21 Nov 2009 11:01:41 -0300
+ -- Luciano Bello <luciano at debian.org>  Sat, 06 Mar 2010 17:45:39 -0300
 
 python-event (0.3+svn60-1) unstable; urgency=low
 

Modified: packages/python-event/trunk/debian/control
===================================================================
--- packages/python-event/trunk/debian/control	2010-03-06 19:54:14 UTC (rev 12197)
+++ packages/python-event/trunk/debian/control	2010-03-06 21:05:55 UTC (rev 12198)
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Luciano Bello <luciano at debian.org>
-Build-Depends: debhelper (>= 7), libevent-dev(>=1.4), python-all-dev, python-support, python-all-dbg
+Build-Depends: debhelper (>= 7), libevent-dev(>=1.4), python-all-dev, python-support, python-all-dbg, dpatch
 Provides: ${python:Provides}
 Standards-Version: 3.8.3
 Homepage: http://code.google.com/p/pyevent/

Modified: packages/python-event/trunk/debian/rules
===================================================================
--- packages/python-event/trunk/debian/rules	2010-03-06 19:54:14 UTC (rev 12197)
+++ packages/python-event/trunk/debian/rules	2010-03-06 21:05:55 UTC (rev 12198)
@@ -1,6 +1,7 @@
 #!/usr/bin/make -f 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+include /usr/share/dpatch/dpatch.make
 
 PYVERS=$(shell pyversions -vr)
 
@@ -10,7 +11,7 @@
 SVN_REVISION := $(shell echo $(SRC_VERSION) | awk -F"+" '{ print $$2 }' | sed 's/svn//' )
 TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
 
-clean:
+clean: unpatch
 	dh_testdir
 	
 #	for python in $(PYVERS); do 
@@ -40,8 +41,9 @@
 
 build: build-stamp
 
-build-stamp: $(PYVERS:%=build-python%) $(PYVERS:%=build-debug-python%)
+build-stamp: patch-stamp $(PYVERS:%=build-python%) $(PYVERS:%=build-debug-python%)
 	touch $@
+	touch patch-stamp
 
 build-python%:
 	python$* setup.py build
@@ -81,4 +83,4 @@
 	@@echo "  "$(TARBALL)" created; move it to the right destination to build the package"
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+.PHONY: patch unpatch build clean binary-indep binary-arch binary install




More information about the Python-modules-commits mailing list