[Python-modules-commits] r602 - in /packages: paste/trunk/debian/
pastedeploy/trunk/debian/
pastescript/trunk/debian/ pastewebkit/trunk/debian/
pox-guest at users.alioth.debian.org
pox-guest at users.alioth.debian.org
Sun May 14 01:53:50 UTC 2006
Author: pox-guest
Date: Sun May 14 01:53:49 2006
New Revision: 602
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=602
Log:
Common paste* modules file moved to paste-common package
Added:
packages/paste/trunk/debian/python-paste.docs
packages/paste/trunk/debian/python-paste.examples
packages/paste/trunk/debian/python-paste.postinst (with props)
packages/paste/trunk/debian/python-paste.prerm (with props)
Removed:
packages/paste/trunk/debian/docs
packages/paste/trunk/debian/examples
packages/paste/trunk/debian/postinst
packages/paste/trunk/debian/prerm
Modified:
packages/paste/trunk/debian/changelog
packages/paste/trunk/debian/control
packages/paste/trunk/debian/rules
packages/pastedeploy/trunk/debian/changelog
packages/pastedeploy/trunk/debian/control
packages/pastedeploy/trunk/debian/rules
packages/pastescript/trunk/debian/changelog
packages/pastescript/trunk/debian/control
packages/pastescript/trunk/debian/rules
packages/pastewebkit/trunk/debian/changelog
packages/pastewebkit/trunk/debian/control
packages/pastewebkit/trunk/debian/rules
Modified: packages/paste/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/changelog?rev=602&op=diff
==============================================================================
--- packages/paste/trunk/debian/changelog (original)
+++ packages/paste/trunk/debian/changelog Sun May 14 01:53:49 2006
@@ -1,3 +1,9 @@
+paste (0.9.1-3) unstable; urgency=low
+
+ * Common paste* modules file moved to paste-common package
+
+ -- Piotr Ozarowski <ozarow at gmail.com> Sun, 14 May 2006 02:29:59 +0200
+
paste (0.9.1-2) unstable; urgency=low
* Egg directory name fixed
Modified: packages/paste/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/control?rev=602&op=diff
==============================================================================
--- packages/paste/trunk/debian/control (original)
+++ packages/paste/trunk/debian/control Sun May 14 01:53:49 2006
@@ -9,8 +9,8 @@
Package: python-paste
Architecture: all
-Depends: python (>= 2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1)
-Suggests: python2.4-pgsql
+Depends: python (>= 2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1), paste-common
+Suggests: python-pastedeploy, python-pastescript, python-pastewebkit, python2.4-pgsql
Description: Tools for using a Web Server Gateway Interface stack
Python Paste brings consistency to Python web development and web application
installation, providing tools for both developers and system administrators.
@@ -31,3 +31,17 @@
complementary packages and tools
.
Homepage: http://pythonpaste.org/
+
+Package: paste-common
+Architecture: all
+Depends: python-support (>= 0.2.2)
+Recommends: python-paste, python-pastedeploy
+Suggests: python-pastescript, python-pastewebkit
+Description: common files for paste modules
+ This package contains common files for these packages:
+ * python-paste
+ * python-pastedeploy
+ * python-pastewebkit
+ * python-pastescript
+ .
+ Homepage: http://pythonpaste.org/
Added: packages/paste/trunk/debian/python-paste.docs
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/python-paste.docs?rev=602&op=file
==============================================================================
--- packages/paste/trunk/debian/python-paste.docs (added)
+++ packages/paste/trunk/debian/python-paste.docs Sun May 14 01:53:49 2006
@@ -1,0 +1,1 @@
+docs/
Added: packages/paste/trunk/debian/python-paste.examples
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/python-paste.examples?rev=602&op=file
==============================================================================
--- packages/paste/trunk/debian/python-paste.examples (added)
+++ packages/paste/trunk/debian/python-paste.examples Sun May 14 01:53:49 2006
@@ -1,0 +1,1 @@
+tests/*
Added: packages/paste/trunk/debian/python-paste.postinst
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/python-paste.postinst?rev=602&op=file
==============================================================================
--- packages/paste/trunk/debian/python-paste.postinst (added)
+++ packages/paste/trunk/debian/python-paste.postinst Sun May 14 01:53:49 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = "configure" ] && which update-python-modules >/dev/null 2>&1; then
+ update-python-modules -i /usr/share/python-support/paste
+fi
Propchange: packages/paste/trunk/debian/python-paste.postinst
------------------------------------------------------------------------------
svn:executable = *
Added: packages/paste/trunk/debian/python-paste.prerm
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/python-paste.prerm?rev=602&op=file
==============================================================================
--- packages/paste/trunk/debian/python-paste.prerm (added)
+++ packages/paste/trunk/debian/python-paste.prerm Sun May 14 01:53:49 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if which update-python-modules >/dev/null 2>&1; then
+ update-python-modules -c -i /usr/share/python-support/paste
+fi
Propchange: packages/paste/trunk/debian/python-paste.prerm
------------------------------------------------------------------------------
svn:executable = *
Modified: packages/paste/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/rules?rev=602&op=diff
==============================================================================
--- packages/paste/trunk/debian/rules (original)
+++ packages/paste/trunk/debian/rules Sun May 14 01:53:49 2006
@@ -15,3 +15,10 @@
install/python-paste::
echo "2.4-" >debian/python-paste/usr/share/python-support/paste/.version
mv debian/python-paste/usr/share/python-support/paste/Paste-${DEB_UPSTREAM_VERSION}{-py${PYVER}.egg-info,.egg-info}
+ rm -f debian/python-paste/usr/share/python-support/paste/paste/__init__.py
+ # CDBS bug:
+ rm -rf debian/paste-common
+
+install/paste-common::
+ dh_install
+ echo "2.3-" > debian/paste-common/usr/share/python-support/pastecommon/.version
Modified: packages/pastedeploy/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pastedeploy/trunk/debian/changelog?rev=602&op=diff
==============================================================================
--- packages/pastedeploy/trunk/debian/changelog (original)
+++ packages/pastedeploy/trunk/debian/changelog Sun May 14 01:53:49 2006
@@ -1,3 +1,9 @@
+pastedeploy (0.5-3) unstable; urgency=low
+
+ * Common paste* modules file moved to paste-common package
+
+ -- Piotr Ozarowski <ozarow at gmail.com> Sun, 14 May 2006 03:27:56 +0200
+
pastedeploy (0.5-2) unstable; urgency=low
* Egg directory name fixed
Modified: packages/pastedeploy/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pastedeploy/trunk/debian/control?rev=602&op=diff
==============================================================================
--- packages/pastedeploy/trunk/debian/control (original)
+++ packages/pastedeploy/trunk/debian/control Sun May 14 01:53:49 2006
@@ -9,7 +9,7 @@
Package: python-pastedeploy
Architecture: all
-Depends: python (>= 2.3), python-support (>= 0.2.2), python-setuptools (>= 0.6a9-1)
+Depends: python (>= 2.3), python-support (>= 0.2.2), python-setuptools (>= 0.6a9-1), paste-common
Recommends: python-paste
Description: Load, configure, and compose WSGI applications and servers
Paste Deployment is a system for finding and configuring WSGI applications and
Modified: packages/pastedeploy/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pastedeploy/trunk/debian/rules?rev=602&op=diff
==============================================================================
--- packages/pastedeploy/trunk/debian/rules (original)
+++ packages/pastedeploy/trunk/debian/rules Sun May 14 01:53:49 2006
@@ -14,3 +14,4 @@
install/python-pastedeploy::
echo "2.3-" >debian/python-pastedeploy/usr/share/python-support/pastedeploy/.version
mv debian/python-pastedeploy/usr/share/python-support/pastedeploy/PasteDeploy-${DEB_UPSTREAM_VERSION}{-py${PYVER}.egg-info,.egg-info}
+ rm -f debian/python-pastedeploy/usr/share/python-support/pastedeploy/paste/__init__.py
Modified: packages/pastescript/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pastescript/trunk/debian/changelog?rev=602&op=diff
==============================================================================
--- packages/pastescript/trunk/debian/changelog (original)
+++ packages/pastescript/trunk/debian/changelog Sun May 14 01:53:49 2006
@@ -1,3 +1,9 @@
+pastescript (0.5.1-2) unstable; urgency=low
+
+ * Common paste* modules file moved to paste-common package
+
+ -- Piotr Ozarowski <ozarow at gmail.com> Sun, 14 May 2006 03:34:24 +0200
+
pastescript (0.5.1-1) unstable; urgency=low
* Initial release (closes: #366244)
Modified: packages/pastescript/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pastescript/trunk/debian/control?rev=602&op=diff
==============================================================================
--- packages/pastescript/trunk/debian/control (original)
+++ packages/pastescript/trunk/debian/control Sun May 14 01:53:49 2006
@@ -9,7 +9,7 @@
Package: python-pastescript
Architecture: all
-Depends: python (>=2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1), python-paste, python-pastedeploy
+Depends: python (>=2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1), paste-common, python-paste, python-pastedeploy
Recommends: python2.4-cheetah
Description: serving web applications, creating file layouts for python packages
Paster is pluggable command-line frontend,
Modified: packages/pastescript/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pastescript/trunk/debian/rules?rev=602&op=diff
==============================================================================
--- packages/pastescript/trunk/debian/rules (original)
+++ packages/pastescript/trunk/debian/rules Sun May 14 01:53:49 2006
@@ -16,3 +16,4 @@
echo "2.4-" >debian/python-pastescript/usr/share/python-support/pastescript/.version
sed -i 's,/usr/bin/python,/usr/bin/python2.4,g' debian/python-pastescript/usr/bin/paster
mv debian/python-pastescript/usr/share/python-support/pastescript/PasteScript-${DEB_UPSTREAM_VERSION}{-py${PYVER}.egg-info,.egg-info}
+ rm -f debian/python-pastescript/usr/share/python-support/pastescript/paste/__init__.py
Modified: packages/pastewebkit/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pastewebkit/trunk/debian/changelog?rev=602&op=diff
==============================================================================
--- packages/pastewebkit/trunk/debian/changelog (original)
+++ packages/pastewebkit/trunk/debian/changelog Sun May 14 01:53:49 2006
@@ -1,3 +1,9 @@
+pastewebkit (0.9-2) unstable; urgency=low
+
+ * Common paste* modules file moved to paste-common package
+
+ -- Piotr Ozarowski <ozarow at gmail.com> Sun, 14 May 2006 03:40:22 +0200
+
pastewebkit (0.9-1) unstable; urgency=low
* Initial release (closes: #366188)
Modified: packages/pastewebkit/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pastewebkit/trunk/debian/control?rev=602&op=diff
==============================================================================
--- packages/pastewebkit/trunk/debian/control (original)
+++ packages/pastewebkit/trunk/debian/control Sun May 14 01:53:49 2006
@@ -9,7 +9,7 @@
Package: python-pastewebkit
Architecture: all
-Depends: python (>= 2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1), python-pastescript
+Depends: python (>= 2.4) | python2.4, python (<<2.5), python-support (>= 0.2.2), python2.4-setuptools (>= 0.6a9-1), paste-common, python-pastescript
Description: port/reimplementation of Webware WebKit in WSGI and Paste
This is a reimplementation of the Webware WebKit servlet API. This
implementation uses WSGI internally very heavily, and builds upon the
Modified: packages/pastewebkit/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pastewebkit/trunk/debian/rules?rev=602&op=diff
==============================================================================
--- packages/pastewebkit/trunk/debian/rules (original)
+++ packages/pastewebkit/trunk/debian/rules Sun May 14 01:53:49 2006
@@ -14,3 +14,4 @@
install/python-pastewebkit::
echo "2.4-" >debian/python-pastewebkit/usr/share/python-support/pastewebkit/.version
mv debian/python-pastewebkit/usr/share/python-support/pastewebkit/PasteWebKit-${DEB_UPSTREAM_VERSION}{-py${PYVER}.egg-info,.egg-info}
+ rm -f debian/python-pastewebkit/usr/share/python-support/pastewebkit/paste/__init__.py
More information about the Python-modules-commits
mailing list