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

malex at users.alioth.debian.org malex at users.alioth.debian.org
Fri Jan 26 23:10:35 CET 2007


Author: malex
Date: Fri Jan 26 23:10:34 2007
New Revision: 1707

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

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

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

Added: packages/webhelpers/webhelpers/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/changelog?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/changelog (added)
+++ packages/webhelpers/webhelpers/trunk/debian/changelog Fri Jan 26 23:10:34 2007
@@ -1,0 +1,5 @@
+webhelpers (0.2.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #393757).
+
+ -- Oleksandr Moskalenko <malex at debian.org>  Mon, 16 Oct 2006 23:56:14 -0600

Added: packages/webhelpers/webhelpers/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/compat?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/compat (added)
+++ packages/webhelpers/webhelpers/trunk/debian/compat Fri Jan 26 23:10:34 2007
@@ -1,0 +1,1 @@
+5

Added: packages/webhelpers/webhelpers/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/control?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/control (added)
+++ packages/webhelpers/webhelpers/trunk/debian/control Fri Jan 26 23:10:34 2007
@@ -1,0 +1,18 @@
+Source: webhelpers
+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-webhelpers
+Architecture: all
+Depends: ${python:Depends}, python, python-routes ( >= 1.1), python-simplejson ( >= 1.4)
+XB-Python-Version: ${python:Versions}
+Enhances: python-webhelpers
+Description: Library of helper functions to make writing web application templates easier
+ One of the sub-sections of Web Helpers contains a full port of the template
+ helpers that are provided by Ruby on Rails with slight adaptations on
+ occasion to accommodate for Python. Some of these helpers only require Routes
+ to function.

Added: packages/webhelpers/webhelpers/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/copyright?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/copyright (added)
+++ packages/webhelpers/webhelpers/trunk/debian/copyright Fri Jan 26 23:10:34 2007
@@ -1,0 +1,25 @@
+This package was debianized by Oleksandr Moskalenko <malex at debian.org> on Tue,
+17 Oct 2006 00:15:48 -0600.
+
+It was downloaded from <http://cheeseshop.python.org/pypi/WebHelpers/>.
+
+Upstream Authors: Ben Bangert <ben at groovie.org> and James Gardner
+<james at 3aims.com>.
+
+Copyright: Copyright (c) 2005 Ben Bangert, James Gardner. Portions of the code
+are copyright of the Lawrence Journal-World.
+
+ 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/webhelpers/webhelpers/trunk/debian/dirs
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/dirs?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/dirs (added)
+++ packages/webhelpers/webhelpers/trunk/debian/dirs Fri Jan 26 23:10:34 2007
@@ -1,0 +1,1 @@
+usr/share/python-support/python-webhelpers

Added: packages/webhelpers/webhelpers/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/rules?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/rules (added)
+++ packages/webhelpers/webhelpers/trunk/debian/rules Fri Jan 26 23:10:34 2007
@@ -1,0 +1,59 @@
+#!/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-webhelpers
+
+clean:
+	rm -f build-*
+	dh_testdir
+	dh_testroot
+	python setup.py clean
+	rm -rf build
+	find . -name *\.py[co] -exec rm -f {} \;
+	dh_clean
+
+build: build-indep
+
+build-indep:
+	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)/WebHelpers-${DEB_UPSTREAM_VERSION}-py[0-9].[0-9].egg-info \
+	debian/$(package)/usr/share/python-support/$(package)/webhelpers-${DEB_UPSTREAM_VERSION}.egg-info
+	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/webhelpers/webhelpers/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/webhelpers/webhelpers/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/webhelpers/webhelpers/trunk/debian/watch?rev=1707&op=file
==============================================================================
--- packages/webhelpers/webhelpers/trunk/debian/watch (added)
+++ packages/webhelpers/webhelpers/trunk/debian/watch Fri Jan 26 23:10:34 2007
@@ -1,0 +1,2 @@
+version=3
+http://cheeseshop.python.org/packages/source/W/WebHelpers/WebHelpers-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list