r364 - in python-clientform/trunk: . ClientForm.egg-info debian examples ez_setup

Brian Sutherland jinty-guest at costa.debian.org
Thu Oct 26 15:11:55 CEST 2006


Author: jinty-guest
Date: 2006-10-26 13:11:55 +0000 (Thu, 26 Oct 2006)
New Revision: 364

Added:
   python-clientform/trunk/debian/
   python-clientform/trunk/debian/changelog
   python-clientform/trunk/debian/compat
   python-clientform/trunk/debian/control
   python-clientform/trunk/debian/copyright
   python-clientform/trunk/debian/docs
   python-clientform/trunk/debian/rules
   python-clientform/trunk/debian/watch
Modified:
   python-clientform/trunk/ClientForm.egg-info/SOURCES.txt
   python-clientform/trunk/examples/example.py
   python-clientform/trunk/examples/simple.py
   python-clientform/trunk/ez_setup/README.txt
   python-clientform/trunk/ez_setup/__init__.py
   python-clientform/trunk/test.py
Log:
Load python-clientform-0.2.2 into python-clientform/trunk.


Modified: python-clientform/trunk/ClientForm.egg-info/SOURCES.txt
===================================================================
--- python-clientform/trunk/ClientForm.egg-info/SOURCES.txt	2006-10-26 13:09:38 UTC (rev 363)
+++ python-clientform/trunk/ClientForm.egg-info/SOURCES.txt	2006-10-26 13:11:55 UTC (rev 364)
@@ -11,6 +11,7 @@
 setup.py
 test.py
 ClientForm.egg-info/PKG-INFO
+ClientForm.egg-info/SOURCES.txt
 ClientForm.egg-info/top_level.txt
 ClientForm.egg-info/zip-safe
 examples/data.dat

Added: python-clientform/trunk/debian/changelog
===================================================================
--- python-clientform/trunk/debian/changelog	                        (rev 0)
+++ python-clientform/trunk/debian/changelog	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,43 @@
+python-clientform (0.2.2-2) unstable; urgency=low
+
+  * Added conflicts/replaces on older pythonX.Y-clientform packages.
+
+ -- Brian Sutherland <jinty at web.de>  Wed, 14 Jun 2006 16:49:10 +0200
+
+python-clientform (0.2.2-1) unstable; urgency=low
+
+  * New upstream version (closes: #375798)
+  * Conform to the new python policy using python-central (Closes: #373522)
+  * Revert debian specific patches to setup.py and instead install using
+    setuptools.
+
+ -- Brian Sutherland <jinty at web.de>  Wed, 14 Jun 2006 13:22:10 +0200
+
+python-clientform (0.2.0.99-1) unstable; urgency=low
+
+  * New upstream version (0.2.1b) (closes: #272057)
+  * Add watch file.
+  * Patch setup.py to use distutils rather then setup tools until setuptools
+    works better with debian packages.
+  * Install ChangeLog.txt as the upstream changelog.
+  * Install the examples as documentation.
+
+ -- Brian Sutherland <jinty at web.de>  Sun,  1 Jan 2006 23:39:15 +0100
+
+python-clientform (0.1.17-2) unstable; urgency=low
+
+  * Add python 2.4 library.
+
+ -- Brian Sutherland <jinty at web.de>  Tue, 27 Dec 2005 18:55:11 +0100
+
+python-clientform (0.1.17-1) unstable; urgency=low
+
+  * Initial customization for python-clientform.
+
+ -- Brian Sutherland <jinty at web.de>  Wed,  9 Nov 2005 14:33:13 +0100
+
+python-skeleton (0.0.0.0-1) unstable; urgency=low
+
+  * Initial creation of skeleton python packaging dir.
+
+ -- Brian Sutherland <jinty at web.de>  Sat,  6 Aug 2005 02:14:33 +0100

Added: python-clientform/trunk/debian/compat
===================================================================
--- python-clientform/trunk/debian/compat	                        (rev 0)
+++ python-clientform/trunk/debian/compat	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1 @@
+4

Added: python-clientform/trunk/debian/control
===================================================================
--- python-clientform/trunk/debian/control	                        (rev 0)
+++ python-clientform/trunk/debian/control	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,23 @@
+Source: python-clientform
+Section: python
+Priority: extra
+Maintainer: Brian Sutherland <jinty at web.de>
+Build-Depends-Indep: python (>= 2.3.5-7), python-all-dev, python-central (>= 0.4.10), python-setuptools (>= 0.6b3)
+Build-Depends: debhelper (>= 5.0.37.1)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+
+Package: python-clientform
+Architecture: all
+Depends: ${python:Depends}
+Provides: ${python:Provides}
+Conflicts: python2.3-clientform (<< 0.2.2), python2.4-clientform (<< 0.2.2)
+Replaces: python2.3-clientform (<< 0.2.2), python2.4-clientform (<< 0.2.2)
+XB-Python-Version: ${python:Versions}
+Description: module for handling HTML forms on the client side
+ ClientForm is a Python module for handling HTML forms on the client side,
+ useful for parsing HTML forms, filling them in and returning the completed
+ forms to the server. It developed from a port of Gisle Aas' Perl module
+ HTML::Form, from the libwww-perl library, but the interface is not the same.
+ .
+ Homepage: http://wwwsearch.sourceforge.net/ClientForm/

Added: python-clientform/trunk/debian/copyright
===================================================================
--- python-clientform/trunk/debian/copyright	                        (rev 0)
+++ python-clientform/trunk/debian/copyright	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,16 @@
+This package was debianized by Brian Sutherland <jinty at web.de> on
+Sat,  6 Aug 2005 15:32:13 +0200.
+
+It was downloaded from http://wwwsearch.sourceforge.net/ClientForm/
+
+Copyright:
+
+Copyright (c) 2002-2004 John J. Lee <jjl at pobox.com>
+Copyright (c) 1998-2000 Gisle Aas
+
+Upstream Author: Jhon J. Lee <jjl at pobox.com>
+
+License:
+
+BSD Style License, on debian systems the text can be found at:
+/usr/share/common-licenses/BSD

Added: python-clientform/trunk/debian/docs
===================================================================
--- python-clientform/trunk/debian/docs	                        (rev 0)
+++ python-clientform/trunk/debian/docs	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,5 @@
+PKG-INFO
+README.txt
+README.html
+GeneralFAQ.html
+examples

Added: python-clientform/trunk/debian/rules
===================================================================
--- python-clientform/trunk/debian/rules	                        (rev 0)
+++ python-clientform/trunk/debian/rules	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,78 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -vr debian/control)
+PYMOD=ClientForm
+PACKAGE=python-clientform
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
+		             | grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
+
+build: $(PYVERS:%=build-python%)
+	touch $@
+build-python%:
+	dh_testdir
+	python$* setup.py build
+	touch $@
+
+.PHONY: clean
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-python?.?
+	rm -rf build
+	$(MAKE) -f debian/rules $(PYVERS:%=clean-python%)
+	find -name '*.pyc' -exec rm {} \;
+	dh_clean
+
+clean-python%:
+	python$* setup.py clean
+
+.PHONY: install
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	# Workaround dh_python/dh_pycentral breakage
+	echo python:Provides=$(foreach pv,$(shell pyversions -s),$(pv)-clientform)|sed 's/ /, /g' >> debian/python-clientform.substvars
+	$(MAKE) -f debian/rules $(PYVERS:%=install-python%)
+
+install-python%:
+	python$* setup.py install --no-compile --single-version-externally-managed --root=debian/$(PACKAGE)
+	# Remove python and module version from .egg-info
+	mv debian/$(PACKAGE)/usr/lib/python$*/site-packages/$(PYMOD)-$(DEB_UPSTREAM_VERSION)-py$*.egg-info \
+	   debian/$(PACKAGE)/usr/lib/python$*/site-packages/$(PYMOD).egg-info 
+
+.PHONY: binary-common
+binary-common:
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_pycentral
+	dh_python
+	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+.PHONY: binary-indep
+binary-indep: install
+	$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
+
+.PHONY: binary-arch
+binary-arch:
+	# no binary-arch packages
+
+.PHONY: binary
+binary: binary-indep binary-arch


Property changes on: python-clientform/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: python-clientform/trunk/debian/watch
===================================================================
--- python-clientform/trunk/debian/watch	                        (rev 0)
+++ python-clientform/trunk/debian/watch	2006-10-26 13:11:55 UTC (rev 364)
@@ -0,0 +1,2 @@
+version=3
+http://wwwsearch.sourceforge.net/ClientForm/src/ClientForm-(.*)\.tar\.gz


Property changes on: python-clientform/trunk/examples/example.py
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: python-clientform/trunk/examples/simple.py
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: python-clientform/trunk/ez_setup/README.txt
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: python-clientform/trunk/ez_setup/__init__.py
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: python-clientform/trunk/test.py
___________________________________________________________________
Name: svn:executable
   - 
   + *




More information about the pkg-zope-commits mailing list