[Python-modules-commits] r7169 - in packages/python-processing/trunk/debian (5 files)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Wed Dec 24 14:47:52 UTC 2008
Date: Wednesday, December 24, 2008 @ 14:47:51
Author: morph
Revision: 7169
- updated my email address
- bump Standards-Version to 3.8.0
+ added debian/README.source
- removed XS-DM-Upload-Allowed flag
* debian/rules
- removed commented commands for -dbg pkgs (there won't be any)
Added:
packages/python-processing/trunk/debian/README.source
Modified:
packages/python-processing/trunk/debian/changelog
packages/python-processing/trunk/debian/control
packages/python-processing/trunk/debian/rules
Deleted:
packages/python-processing/trunk/debian/TODO.Debian
Added: packages/python-processing/trunk/debian/README.source
===================================================================
--- packages/python-processing/trunk/debian/README.source (rev 0)
+++ packages/python-processing/trunk/debian/README.source 2008-12-24 14:47:51 UTC (rev 7169)
@@ -0,0 +1,4 @@
+This package uses dpatch to handle patches against upstream source code; you
+can find additional information about dpatch at
+
+ /usr/share/doc/dpatch/
Deleted: packages/python-processing/trunk/debian/TODO.Debian
===================================================================
--- packages/python-processing/trunk/debian/TODO.Debian 2008-12-24 14:08:36 UTC (rev 7168)
+++ packages/python-processing/trunk/debian/TODO.Debian 2008-12-24 14:47:51 UTC (rev 7169)
@@ -1,29 +0,0 @@
-Re-add debug packages once 457273 will be closed. Below changes to apply:
-
-debian/control
-
-Build-Depends: +python-all-dbg
-
-Package: python-processing-dbg
-Architecture: any
-Priority: extra
-Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}, python-processing (= ${binary:Version}), python-dbg (>= 2.5) | python2.5-dbg
-XB-Python-Version: ${python:Versions}
-Provides: ${python:Provides}
-Description: spawning processes mimicking the threading module
- It's a package for the Python language which supports the spawning of
- processes using the API of the standard library's ``threading``
- module. Its features are:
- .
- * Objects can be transferred between processes using pipes or
- multi-producer/multi-consumer queues.
- * Objects can be shared between processes using a server process or
- (for simple data) shared memory.
- * Equivalents of all the synchronization primitives in
- ``threading`` are available.
- * A Pool class makes it easy to submit tasks to a pool of worker
- processes.
- .
- This package contains the extension built for the python debug
- interpreter.
-
Modified: packages/python-processing/trunk/debian/changelog
===================================================================
--- packages/python-processing/trunk/debian/changelog 2008-12-24 14:08:36 UTC (rev 7168)
+++ packages/python-processing/trunk/debian/changelog 2008-12-24 14:47:51 UTC (rev 7169)
@@ -2,8 +2,14 @@
* debian/control
- switch Vcs-Browser field to viewsvn
+ - updated my email address
+ - bump Standards-Version to 3.8.0
+ + added debian/README.source
+ - removed XS-DM-Upload-Allowed flag
+ * debian/rules
+ - removed commented commands for -dbg pkgs (there won't be any)
- -- Sandro Tosi <morph at debian.org> Mon, 03 Nov 2008 22:15:37 +0100
+ -- Sandro Tosi <morph at debian.org> Wed, 24 Dec 2008 15:39:54 +0100
python-processing (0.52-1) unstable; urgency=low
Modified: packages/python-processing/trunk/debian/control
===================================================================
--- packages/python-processing/trunk/debian/control 2008-12-24 14:08:36 UTC (rev 7168)
+++ packages/python-processing/trunk/debian/control 2008-12-24 14:47:51 UTC (rev 7169)
@@ -2,13 +2,12 @@
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Sandro Tosi <matrixhasu at gmail.com>, Torsten Marek <shlomme at debian.org>
+Uploaders: Sandro Tosi <morph at debian.org>, Torsten Marek <shlomme at debian.org>
Build-Depends: debhelper (>= 5), python-all-dev, python-support (>= 0.6), dpatch, python-ctypes
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
Homepage: http://developer.berlios.de/projects/pyprocessing
Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-processing/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-processing/trunk/
-XS-DM-Upload-Allowed: yes
Package: python-processing
Architecture: any
Modified: packages/python-processing/trunk/debian/rules
===================================================================
--- packages/python-processing/trunk/debian/rules 2008-12-24 14:08:36 UTC (rev 7168)
+++ packages/python-processing/trunk/debian/rules 2008-12-24 14:47:51 UTC (rev 7169)
@@ -3,8 +3,6 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-## morph - all debug package staff is commented ('# # ') waiting for 457273 to be fixed
-
PKGNAME:=python-processing
include /usr/share/dpatch/dpatch.make
@@ -23,7 +21,6 @@
for py in $(PYVERS); do \
python$$py setup.py build; \
- # # python$$py-dbg setup.py build; \
done
# performing tests
@@ -36,8 +33,6 @@
for py in $(PYVERS); do \
PYTHONPATH=$(CURDIR)/build/lib.$(DEB_BUILD_ARCH_OS)-$(shell uname -m)-$$py \
python$$py -c "from processing.tests import main; main()";\
- # # PYTHONPATH=$(CURDIR)/build/lib_d.$(DEB_BUILD_ARCH_OS)-$(shell uname -m)-$$py \
- # # python$$py-dbg -c "from processing.test import main; main()";\
done
endif
@@ -65,14 +60,8 @@
for py in $(PYVERS); do \
python$$py setup.py install --root=$(CURDIR)/debian/$(PKGNAME); \
- # # python$$py-dbg setup.py install --root=$(CURDIR)/debian/$(PKGNAME)-dbg; \
done
- # # find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.pyc" -print0 | xargs -0 rm -f
- # # find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.py" -print0 | xargs -0 rm -f
- # # find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.egg-info" -print0 | xargs -0 rm -f
-
-
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.
@@ -85,12 +74,7 @@
dh_installdocs README.txt THANKS.txt *.html doc
dh_installexamples tests/ examples/*
dh_pysupport
- dh_strip -p$(PKGNAME) # # --dbg-package=$(PKGNAME)-dbg
- # # rm -rf debian/$(PKGNAME)-dbg/usr/share/doc/$(PKGNAME)-dbg
- # # rm -rf debian/$(PKGNAME)-dbg/usr/lib/python2.4/
- # # rm -rf debian/$(PKGNAME)-dbg/usr/share/python-support/
- # # rm -rf debian/$(PKGNAME)-dbg/usr/lib/python2.5/
- # # ln -s $(PKGNAME) debian/$(PKGNAME)-dbg/usr/share/doc/$(PKGNAME)-dbg
+ dh_strip -p$(PKGNAME)
dh_compress -X.py
dh_fixperms
dh_installdeb
More information about the Python-modules-commits
mailing list