[Python-modules-commits] r1755 - in /packages/pylons/trunk/debian: ./ changelog compat control copyright dirs rules watch

malex at users.alioth.debian.org malex at users.alioth.debian.org
Tue Jan 30 02:16:11 CET 2007


Author: malex
Date: Tue Jan 30 02:16:10 2007
New Revision: 1755

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1755
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    packages/pylons/trunk/debian/   (with props)
    packages/pylons/trunk/debian/changelog
    packages/pylons/trunk/debian/compat
    packages/pylons/trunk/debian/control
    packages/pylons/trunk/debian/copyright
    packages/pylons/trunk/debian/dirs
    packages/pylons/trunk/debian/rules   (with props)
    packages/pylons/trunk/debian/watch

Propchange: packages/pylons/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/pylons/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/changelog?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/changelog (added)
+++ packages/pylons/trunk/debian/changelog Tue Jan 30 02:16:10 2007
@@ -1,0 +1,6 @@
+pylons (0.9.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #392482).
+
+ -- Oleksandr Moskalenko <malex at debian.org>  Fri, 13 Oct 2006 01:17:01 -0600
+

Added: packages/pylons/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/compat?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/compat (added)
+++ packages/pylons/trunk/debian/compat Tue Jan 30 02:16:10 2007
@@ -1,0 +1,1 @@
+5

Added: packages/pylons/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/control?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/control (added)
+++ packages/pylons/trunk/debian/control Tue Jan 30 02:16:10 2007
@@ -1,0 +1,19 @@
+Source: pylons
+Section: web
+Priority: optional
+Maintainer: Oleksandr Moskalenko <malex at debian.org>
+Build-Depends: debhelper (>= 5), python (>= 2.3.3), python-all-dev, python-support (>= 0.4.17), python-setuptools (>= 0.6b3-1)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+
+Package: python-pylons
+Architecture: all
+Depends: ${python:Depends}, python, python-routes ( >= 1.4.1), python-myghty ( >= 1.0.2 ), python-paste ( >= 0.9.8.1 ), python-pastedeploy ( >= 0.9.6 ), python-pastescript ( >= 0.9.8 ), python-formencode ( >= 0.5.1 ), python-simplejson ( >= 1.4 ), python-webhelpers ( >= 0.2.1 ), python-nose ( >= 0.9.0 ), python-beaker ( >= 0.6.1 )
+Recommends: python-sqlalchemy | python-sqlobject
+XB-Python-Version: ${python:Versions}
+Description: Python web framework emphasizing flexibility and rapid development
+ Pylons combines the very best ideas from the worlds of Ruby, Python and Perl,
+ providing a structured but extremely flexible Python web framework. It's also
+ one of the first projects to leverage the emerging WSGI standard, which allows
+ extensive re-use and flexibility \u2014 but only if you need it. Out of the
+ box, Pylons aims to make web development fast, flexible and easy.

Added: packages/pylons/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/copyright?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/copyright (added)
+++ packages/pylons/trunk/debian/copyright Tue Jan 30 02:16:10 2007
@@ -1,0 +1,24 @@
+This package was debianized by Oleksandr Moskalenko <malex at debian.org> on
+Fri, 13 Oct 2006 01:17:01 -0600.
+
+It was downloaded from <http://cheeseshop.python.org/pypi/Pylons>
+
+Upstream Authors: Ben Bangert <ben at groovie.org> and James Gardner
+<james at 3aims.com>.
+
+Copyright: Copyright (c) 2005 Ben Bangert, James Gardner
+
+ All rights reserved.
+
+License:
+
+ This package is licensed under the 3-clause BSD License.
+
+ On Debian GNU/Linux systems, the complete text of the BSD license can be
+ found in `/usr/share/common-licenses/BSD'.
+
+Debian packaging:
+
+ The Debian packaging is (C) 2006, Oleksandr Moskalenko <malex at debian.org> and
+ is licensed under the GPL. On Debian GNU/Linux systems, the complete text of
+ the GPL license can be found in `/usr/share/common-licenses/GPL'.

Added: packages/pylons/trunk/debian/dirs
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/dirs?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/dirs (added)
+++ packages/pylons/trunk/debian/dirs Tue Jan 30 02:16:10 2007
@@ -1,0 +1,1 @@
+usr/share/python-support/python-pylons

Added: packages/pylons/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/rules?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/rules (added)
+++ packages/pylons/trunk/debian/rules Tue Jan 30 02:16:10 2007
@@ -1,0 +1,64 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
+	| grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
+package=python-pylons
+
+clean:
+	rm -f build-*
+	dh_testdir
+	dh_testroot
+	python setup.py clean
+	rm -rf build
+	find . -name *\.py[co] -exec rm -f {} \;
+#	rm -f *pyc lib/myghty/*pyc doc/lib/*pyc
+#	rm -f doc/html/*html
+	dh_clean
+
+build: build-indep
+
+build-indep:
+#	cd doc; python ./genhtml.py
+	touch $@
+
+build-stamp: 
+	dh_testdir
+	python setup.py build
+	touch $@
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	python setup.py install \
+		--no-compile \
+		--single-version-externally-managed \
+		--root $(CURDIR)/debian/$(package)
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples
+	dh_strip
+	dh_compress -X.py
+	dh_fixperms
+	dh_pysupport
+	mv debian/$(package)/usr/share/python-support/$(package)/Pylons-${DEB_UPSTREAM_VERSION}-py[0-9].[0-9].egg-info \
+	debian/$(package)/usr/share/python-support/$(package)/pylons-${DEB_UPSTREAM_VERSION}.egg-info
+	chmod 755 debian/$(package)/usr/share/python-support/$(package)/pylons/i18n/msgfmt.py \
+		debian/$(package)/usr/share/python-support/$(package)/pylons/i18n/pygettext.py
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: packages/pylons/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/pylons/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/pylons/trunk/debian/watch?rev=1755&op=file
==============================================================================
--- packages/pylons/trunk/debian/watch (added)
+++ packages/pylons/trunk/debian/watch Tue Jan 30 02:16:10 2007
@@ -1,0 +1,4 @@
+# Compulsory line, this is a version 3 file
+version=3
+
+http://cheeseshop.python.org/packages/source/P/Pylons/Pylons-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list