[Python-modules-commits] r3541 - in /packages/parsedatetime/trunk/debian: ./ changelog compat control copyright docs examples rules watch

bzed-guest at users.alioth.debian.org bzed-guest at users.alioth.debian.org
Mon Nov 5 00:36:35 UTC 2007


Author: bzed-guest
Date: Mon Nov  5 00:36:35 2007
New Revision: 3541

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

Added:
    packages/parsedatetime/trunk/debian/   (with props)
    packages/parsedatetime/trunk/debian/changelog
    packages/parsedatetime/trunk/debian/compat
    packages/parsedatetime/trunk/debian/control
    packages/parsedatetime/trunk/debian/copyright
    packages/parsedatetime/trunk/debian/docs
    packages/parsedatetime/trunk/debian/examples
    packages/parsedatetime/trunk/debian/rules   (with props)
    packages/parsedatetime/trunk/debian/watch

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

Added: packages/parsedatetime/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/changelog?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/changelog (added)
+++ packages/parsedatetime/trunk/debian/changelog Mon Nov  5 00:36:35 2007
@@ -1,0 +1,6 @@
+parsedatetime (0.8.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Bernd Zeimetz <bernd at bzed.de>  Mon, 05 Nov 2007 01:29:28 +0100
+

Added: packages/parsedatetime/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/compat?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/compat (added)
+++ packages/parsedatetime/trunk/debian/compat Mon Nov  5 00:36:35 2007
@@ -1,0 +1,1 @@
+5

Added: packages/parsedatetime/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/control?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/control (added)
+++ packages/parsedatetime/trunk/debian/control Mon Nov  5 00:36:35 2007
@@ -1,0 +1,12 @@
+Source: parsedatetime
+Section: unknown
+Priority: extra
+Maintainer: Bernd Zeimetz <bernd at bzed.de>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: parsedatetime
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>

Added: packages/parsedatetime/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/copyright?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/copyright (added)
+++ packages/parsedatetime/trunk/debian/copyright Mon Nov  5 00:36:35 2007
@@ -1,0 +1,24 @@
+This package was debianized by Bernd Zeimetz <bernd at bzed.de> on
+Mon, 05 Nov 2007 01:29:28 +0100.
+
+It was downloaded from <url://example.com>
+
+Upstream Author(s): 
+
+    <put author's name and email here>
+    <likewise for another author>
+
+Copyright: 
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+License:
+
+    <Put the license of the package here indented by 4 spaces>
+
+The Debian packaging is (C) 2007, Bernd Zeimetz <bernd at bzed.de> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: packages/parsedatetime/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/docs?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/docs (added)
+++ packages/parsedatetime/trunk/debian/docs Mon Nov  5 00:36:35 2007
@@ -1,0 +1,7 @@
+AUTHORS.txt
+CHANGES.txt
+INSTALL.txt
+LICENSE.txt
+README.txt
+THANKS.txt
+docs

Added: packages/parsedatetime/trunk/debian/examples
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/examples?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/examples (added)
+++ packages/parsedatetime/trunk/debian/examples Mon Nov  5 00:36:35 2007
@@ -1,0 +1,1 @@
+examples/*

Added: packages/parsedatetime/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/rules?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/rules (added)
+++ packages/parsedatetime/trunk/debian/rules Mon Nov  5 00:36:35 2007
@@ -1,0 +1,75 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PKGNAME:=python-parsedatetime
+PYVERS:=$(shell pyversions -r)
+
+
+include /usr/share/dpatch/dpatch.make
+
+build: patch build-stamp
+build-stamp:
+	dh_testdir
+
+	set -e; \
+	for py in $(PYVERS); do  \
+	    $$py setup.py build; \
+	done
+
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e ;\
+	for py in $(PYVERS); do  \
+	    PYTHONPATH=$(CURDIR)/build/lib $$py runtests.py; \
+	done
+endif
+
+	touch $@
+
+clean: clean-patched unpatch
+clean-patched: patch-stamp
+	dh_testdir
+	dh_testroot
+	rm -f install-stamp build-stamp
+	-for py in $(PYVERS); do  \
+	    $$py setup.py clean; \
+	done
+	find . -name \*.pyc | xargs rm -f
+	rm -rf build
+	dh_clean 
+
+install: install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	set -e; \
+	for py in $(PYVERS); do  \
+	    $$py setup.py install --root=debian/$(PKGNAME); \
+	done
+
+	dh_installdocs -A
+	dh_installexamples
+	touch install-stamp
+
+binary-arch: build install
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_compress -X.py
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install \
+        clean-patched patch unpatch
+

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

Added: packages/parsedatetime/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/parsedatetime/trunk/debian/watch?rev=3541&op=file
==============================================================================
--- packages/parsedatetime/trunk/debian/watch (added)
+++ packages/parsedatetime/trunk/debian/watch Mon Nov  5 00:36:35 2007
@@ -1,0 +1,3 @@
+version=3
+
+http://code.google.com/p/parsedatetime/downloads/list http://parsedatetime.googlecode.com/files/parsedatetime-(.*)\.tar.gz




More information about the Python-modules-commits mailing list