[Python-modules-commits] r8365 - in packages/python-django-formfieldset (10 files)

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


    Date: Wednesday, May 6, 2009 @ 14:13:39
  Author: odd_bloke-guest
Revision: 8365

Basic packaging done.

Added:
  packages/python-django-formfieldset/trunk/
  packages/python-django-formfieldset/trunk/debian/
  packages/python-django-formfieldset/trunk/debian/changelog
  packages/python-django-formfieldset/trunk/debian/compat
  packages/python-django-formfieldset/trunk/debian/control
  packages/python-django-formfieldset/trunk/debian/patches/
  packages/python-django-formfieldset/trunk/debian/patches/series
  packages/python-django-formfieldset/trunk/debian/patches/setup-py
  packages/python-django-formfieldset/trunk/debian/rules
  packages/python-django-formfieldset/trunk/debian/watch

Added: packages/python-django-formfieldset/trunk/debian/changelog
===================================================================
--- packages/python-django-formfieldset/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/changelog	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1,5 @@
+python-django-formfieldset (0+git20090312-a822fad-1) UNRELEASED; urgency=low
+
+  * Initial release. (Closes: #519411)
+
+ -- Daniel Watkins <daniel at daniel-watkins.co.uk>  Thu, 12 Mar 2009 11:34:37 +0000

Added: packages/python-django-formfieldset/trunk/debian/compat
===================================================================
--- packages/python-django-formfieldset/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/compat	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1 @@
+7

Added: packages/python-django-formfieldset/trunk/debian/control
===================================================================
--- packages/python-django-formfieldset/trunk/debian/control	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/control	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1,17 @@
+Source: python-django-formfieldset
+Section: python
+Priority: optional
+Maintainer: Daniel Watkins <daniel at daniel-watkins.co.uk>
+Build-Depends: debhelper (>= 7), python, python-support, quilt
+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
+
+Package: python-django-formfieldset
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.0)
+Description: fieldset rendering for Django forms
+ Provides a mix-in class for forms within the Django web framework,
+ which gives fieldset functionality similar to ModelAdmin and shorthand
+ rendering functions for forms with fieldsets without overriding
+ anything within the Django Form class itself.

Added: packages/python-django-formfieldset/trunk/debian/patches/series
===================================================================
--- packages/python-django-formfieldset/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/patches/series	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1 @@
+setup-py

Added: packages/python-django-formfieldset/trunk/debian/patches/setup-py
===================================================================
--- packages/python-django-formfieldset/trunk/debian/patches/setup-py	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/patches/setup-py	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1,18 @@
+Index: python-django-formfieldset-0+git20090312-a822fad/setup.py
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ python-django-formfieldset-0+git20090312-a822fad/setup.py	2009-03-12 11:52:36.000000000 +0000
+@@ -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',
++)

Added: packages/python-django-formfieldset/trunk/debian/rules
===================================================================
--- packages/python-django-formfieldset/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/rules	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+clean: unpatch
+	dh $@
+
+build: patch
+	dh $@
+
+install: build
+	dh $@
+
+binary-indep: install
+	dh $@
+
+binary-arch:
+
+binary: binary-indep binary-arch
+	dh $@
+
+get-orig-source:
+	git clone git://github.com/muhuk/django-formfieldset.git
+	set -e; \
+	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 HEAD | gzip > python-django-formfieldset_$$version_string.orig.tar.gz; \
+	rm -rf django-formfieldset


Property changes on: packages/python-django-formfieldset/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-django-formfieldset/trunk/debian/watch
===================================================================
--- packages/python-django-formfieldset/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-formfieldset/trunk/debian/watch	2009-05-06 14:13:39 UTC (rev 8365)
@@ -0,0 +1 @@
+# This is a git snapshot, so a watch file is impractical.




More information about the Python-modules-commits mailing list