[Python-modules-commits] r1702 - /packages/quixote/trunk/debian/
malex at users.alioth.debian.org
malex at users.alioth.debian.org
Thu Jan 25 21:14:28 CET 2007
Author: malex
Date: Thu Jan 25 21:14:28 2007
New Revision: 1702
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1702
Log:
Changed to python-support
Added:
packages/quixote/trunk/debian/python-quixote.dirs
packages/quixote/trunk/debian/python-quixote.docs
packages/quixote/trunk/debian/watch
Removed:
packages/quixote/trunk/debian/python2.3-quixote.dirs
packages/quixote/trunk/debian/python2.3-quixote.docs
packages/quixote/trunk/debian/python2.3-quixote.install
packages/quixote/trunk/debian/python2.3-quixote.lintian
packages/quixote/trunk/debian/python2.3-quixote.postinst
packages/quixote/trunk/debian/python2.3-quixote.prerm
packages/quixote/trunk/debian/python2.4-quixote.dirs
packages/quixote/trunk/debian/python2.4-quixote.docs
packages/quixote/trunk/debian/python2.4-quixote.install
packages/quixote/trunk/debian/python2.4-quixote.lintian
packages/quixote/trunk/debian/python2.4-quixote.postinst
packages/quixote/trunk/debian/python2.4-quixote.prerm
Modified:
packages/quixote/trunk/debian/changelog
packages/quixote/trunk/debian/control
packages/quixote/trunk/debian/rules
Modified: packages/quixote/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/changelog?rev=1702&op=diff
==============================================================================
--- packages/quixote/trunk/debian/changelog (original)
+++ packages/quixote/trunk/debian/changelog Thu Jan 25 21:14:28 2007
@@ -1,3 +1,19 @@
+quixote (2.4-6) unstable; urgency=low
+
+ * Acknowledge NMU (thanks to Matthias Klose <doko at debian.org>).
+ * Injected quixote package into the svn repository of the Debian Python
+ Modules Packaging Teame (PMPT) with PMPT in uploaders.
+ * debian/watch: Added a watch file.
+ * Switched packaging from python-central to python-support.
+ - debian/control: Changed Build-Depends form python-central to
+ python-support (>= 0.4.17)
+ - python-quixote.dirs: copied python2.4-quixote.dirs and added
+ usr/share/python-support/python-quixote
+ - Replaced pythonX.X-* files with python-quixote.* files where appropriate
+ and removed unneeded files.
+
+ -- Oleksandr Moskalenko <malex at debian.org> Thu, 25 Jan 2007 12:28:00 -0700
+
quixote (2.4-5) unstable; urgency=low
* debian/rules: Install docs into the python-quixote-doc build directory
Modified: packages/quixote/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/control?rev=1702&op=diff
==============================================================================
--- packages/quixote/trunk/debian/control (original)
+++ packages/quixote/trunk/debian/control Thu Jan 25 21:14:28 2007
@@ -3,14 +3,14 @@
Priority: optional
Maintainer: Oleksandr Moskalenko <malex at debian.org>
Uploaders: Neil Schemenauer <nas at debian.org>
-Build-Depends: dpatch, debhelper (>= 5.0.37.1), python-all-dev, python-central (>= 0.5)
+Build-Depends: dpatch, debhelper (>= 5.0.37.1), python-all-dev, python-support (>= 0.4.17)
Standards-Version: 3.7.2
XS-Python-Version: >= 2.3
Package: quixote
Architecture: all
+Depends: python-quixote (=${Source-Version})
XB-Python-Version: ${python:Versions}
-Depends: python-quixote (=${Source-Version})
Description: A highly Pythonic Web application framework
Quixote is yet another framework for developing Web applications in
Python. The design goals were:
Added: packages/quixote/trunk/debian/python-quixote.dirs
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/python-quixote.dirs?rev=1702&op=file
==============================================================================
--- packages/quixote/trunk/debian/python-quixote.dirs (added)
+++ packages/quixote/trunk/debian/python-quixote.dirs Thu Jan 25 21:14:28 2007
@@ -1,0 +1,2 @@
+usr/share/lintian/overrides
+usr/share/python-support/python-quixote
Added: packages/quixote/trunk/debian/python-quixote.docs
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/python-quixote.docs?rev=1702&op=file
==============================================================================
--- packages/quixote/trunk/debian/python-quixote.docs (added)
+++ packages/quixote/trunk/debian/python-quixote.docs Thu Jan 25 21:14:28 2007
@@ -1,0 +1,1 @@
+debian/README.Debian
Modified: packages/quixote/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/rules?rev=1702&op=diff
==============================================================================
--- packages/quixote/trunk/debian/rules (original)
+++ packages/quixote/trunk/debian/rules Thu Jan 25 21:14:28 2007
@@ -4,6 +4,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
+package=python-quixote
DEBIAN_DIR = $(shell pwd)/debian
PYVERS=$(shell pyversions -r debian/control)
@@ -20,15 +21,14 @@
dpatch apply-all
touch patch-stamp
-build-stamp: $(PYVERS:%=build-%-stamp)
- echo "$@"
+build-stamp:
+ dh_testdir
+ python setup.py build -g
touch $@
-build-%-stamp:
- dh_testdir
- echo "$*"
- $* setup.py build -g
- touch $@
+unpatch:
+ dpatch deapply-all
+ rm -rf patch-stamp debian/patched
clean: unpatch
dh_testdir
@@ -36,15 +36,7 @@
rm -f build-stamp
rm -rf build
find . -name '*.pyc' -exec rm {} \;
-# -rm -rf $(CURDIR)/debian/python-quixote-doc
-
dh_clean
-
-unpatch:
- dpatch deapply-all
- rm -rf patch-stamp debian/patched
-
-install: build install-prereq $(PYVERS:%=install-%)
install-prereq:
dh_testdir
@@ -52,25 +44,25 @@
dh_clean -k
dh_installdirs
-install-%:
- $* setup.py install --root $(CURDIR)/debian/python-quixote
+install: build install-prereq
+ python setup.py install
+ --no-compile \
+ --single-version-externally-managed \
+ --root $(CURDIR)/debian/$(package)
-# Build architecture-independent files here.
binary-indep: build install
-# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
+ dh_installchangelogs CHANGES
dh_installdocs
dh_installexamples
- dh_pycentral
- dh_python
- dh_installchangelogs CHANGES
dh_link
dh_strip
dh_compress -X.cgi -X.py -X.conf
dh_fixperms
+ dh_pysupport
dh_installdeb
dh_gencontrol
dh_md5sums
Added: packages/quixote/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/quixote/trunk/debian/watch?rev=1702&op=file
==============================================================================
--- packages/quixote/trunk/debian/watch (added)
+++ packages/quixote/trunk/debian/watch Thu Jan 25 21:14:28 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.quixote.ca/releases/Quixote-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list