[Python-modules-commits] r8371 - in packages/python-django-formfieldset/trunk/debian (4 files)

odd_bloke-guest at users.alioth.debian.org odd_bloke-guest at users.alioth.debian.org
Wed May 6 14:13:53 UTC 2009


    Date: Wednesday, May 6, 2009 @ 14:13:52
  Author: odd_bloke-guest
Revision: 8371

Moved from patching setup.py in to copying setup.py in.

Added:
  packages/python-django-formfieldset/trunk/debian/setup.py
Modified:
  packages/python-django-formfieldset/trunk/debian/control
  packages/python-django-formfieldset/trunk/debian/rules
Deleted:
  packages/python-django-formfieldset/trunk/debian/patches/

Modified: packages/python-django-formfieldset/trunk/debian/control
===================================================================
--- packages/python-django-formfieldset/trunk/debian/control	2009-05-06 14:13:51 UTC (rev 8370)
+++ packages/python-django-formfieldset/trunk/debian/control	2009-05-06 14:13:52 UTC (rev 8371)
@@ -2,7 +2,7 @@
 Section: python
 Priority: optional
 Maintainer: Daniel Watkins <daniel at daniel-watkins.co.uk>
-Build-Depends: debhelper (>= 7), python, python-support, quilt
+Build-Depends: debhelper (>= 7), python, python-support
 Standards-Version: 3.8.0
 Homepage: http://github.com/muhuk/django-formfieldset/tree/master
 Vcs-Bzr: http://bzr.daniel-watkins.co.uk/debian/python-django-formfieldset

Modified: packages/python-django-formfieldset/trunk/debian/rules
===================================================================
--- packages/python-django-formfieldset/trunk/debian/rules	2009-05-06 14:13:51 UTC (rev 8370)
+++ packages/python-django-formfieldset/trunk/debian/rules	2009-05-06 14:13:52 UTC (rev 8371)
@@ -1,16 +1,14 @@
 #!/usr/bin/make -f
 
-include /usr/share/quilt/quilt.make
-
 %:
 	dh $@
 
-clean: unpatch
-	rm -f pax_global_header
+clean:
 	dh $@
-	rm -rf build
+	rm -f setup.py pax_global_header
 
-build: patch
+build:
+	cp debian/setup.py .
 	dh $@
 
 get-orig-source:
@@ -19,5 +17,5 @@
 	revid=`git --git-dir=django-formfieldset/.git/ rev-list --abbrev=7 --abbrev-commit --no-walk HEAD`; \
 	version_string=0+git`date +%Y%m%d`-$$revid; \
 	dirname=python-django-formfieldset-$$version_string; \
-	git --git-dir=django-formfieldset/.git/ archive --format=tar --prefix=$$dirname HEAD | gzip > python-django-formfieldset_$$version_string.orig.tar.gz; \
+	git --git-dir=django-formfieldset/.git/ archive --format=tar HEAD | gzip > python-django-formfieldset_$$version_string.orig.tar.gz; \
 	rm -rf django-formfieldset

Added: packages/python-django-formfieldset/trunk/debian/setup.py
===================================================================
--- packages/python-django-formfieldset/trunk/debian/setup.py	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/setup.py	2009-05-06 14:13:52 UTC (rev 8371)
@@ -0,0 +1,13 @@
+#coding=utf-8
+from distutils.core import setup
+
+setup(
+    name = 'django-formfieldset',
+    version = 'git20090312-a822fad',
+    url = 'http://github.com/muhuk/django-formfieldset/tree/master',
+    author = 'Atamert Ölçgen',
+    author_email = 'muhuk at muhuk.com',
+    license = 'BSD',
+    packages = ['formfieldset'],
+    description = 'Fieldset Rendering For Non-Admin Forms',
+)




More information about the Python-modules-commits mailing list