[Python-modules-commits] r27894 - in packages/python-django-uuidfield/trunk (10 files)

jandd at users.alioth.debian.org jandd at users.alioth.debian.org
Sun Feb 23 20:05:28 UTC 2014


    Date: Sunday, February 23, 2014 @ 20:05:27
  Author: jandd
Revision: 27894

Initial release. (Closes: #739869)

Added:
  packages/python-django-uuidfield/trunk/debian/changelog
  packages/python-django-uuidfield/trunk/debian/compat
  packages/python-django-uuidfield/trunk/debian/control
  packages/python-django-uuidfield/trunk/debian/copyright
  packages/python-django-uuidfield/trunk/debian/docs
  packages/python-django-uuidfield/trunk/debian/rules
  packages/python-django-uuidfield/trunk/debian/source/
  packages/python-django-uuidfield/trunk/debian/source/format
  packages/python-django-uuidfield/trunk/debian/watch
Modified:
  packages/python-django-uuidfield/trunk/debian/	(properties)


Property changes on: packages/python-django-uuidfield/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-django-uuidfield/trunk/debian/changelog
===================================================================
--- packages/python-django-uuidfield/trunk/debian/changelog	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/changelog	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1,5 @@
+python-django-uuidfield (0.5.0-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #739869)
+
+ -- Jan Dittberner <jandd at debian.org>  Sun, 23 Feb 2014 20:02:23 +0100

Added: packages/python-django-uuidfield/trunk/debian/compat
===================================================================
--- packages/python-django-uuidfield/trunk/debian/compat	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/compat	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1 @@
+9

Added: packages/python-django-uuidfield/trunk/debian/control
===================================================================
--- packages/python-django-uuidfield/trunk/debian/control	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/control	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1,25 @@
+Source: python-django-uuidfield
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Jan Dittberner <jandd at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-django,
+               python-django-nose,
+               python-psycopg2,
+               python-setuptools
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+Homepage: https://github.com/dcramer/django-uuidfield
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-django-uuidfield/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-django-uuidfield/trunk/
+
+Package: python-django-uuidfield
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: UUIDField for Django
+ The package provides a UUID model field type for the Django Python web
+ application framework. The field is stored as UUID in PostgreSQL and as
+ char field in other database systems.

Added: packages/python-django-uuidfield/trunk/debian/copyright
===================================================================
--- packages/python-django-uuidfield/trunk/debian/copyright	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/copyright	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-django-uuidfield
+Upstream-Contact: David Cramer <dcramer at gmail.com>
+Source: https://github.com/dcramer/django-uuidfield
+
+Files: *
+Copyright: 2009-2014 David Cramer and individual contributors
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2014 Jan Dittberner <jandd at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+     1. Redistributions of source code must retain the above copyright
+        notice, this list of conditions and the following disclaimer.
+ .
+     2. Redistributions in binary form must reproduce the above copyright
+        notice, this list of conditions and the following disclaimer in the
+        documentation and/or other materials provided with the distribution.
+ .
+     3. Neither the name of the django-uuidfield nor the names of its
+        contributors may be used to endorse or promote products derived from
+        this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.

Added: packages/python-django-uuidfield/trunk/debian/docs
===================================================================
--- packages/python-django-uuidfield/trunk/debian/docs	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/docs	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-django-uuidfield/trunk/debian/rules
===================================================================
--- packages/python-django-uuidfield/trunk/debian/rules	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/rules	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE=1
+
+PYBUILD_NAME=python-django-uuidfield
+
+%:
+	dh $@ --with python2 --buildsystem=pybuild
+
+override_dh_auto_test:
+	PYBUILD_SYSTEM=custom \
+	PYBUILD_TEST_ARGS="cd {build_dir}; {interpreter} {dir}/runtests_sqlite.py" dh_auto_test


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

Added: packages/python-django-uuidfield/trunk/debian/source/format
===================================================================
--- packages/python-django-uuidfield/trunk/debian/source/format	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/source/format	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-django-uuidfield/trunk/debian/watch
===================================================================
--- packages/python-django-uuidfield/trunk/debian/watch	                        (rev 0)
+++ packages/python-django-uuidfield/trunk/debian/watch	2014-02-23 20:05:27 UTC (rev 27894)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/([\d.]+)\.tar\.gz/python-django-uuidfield-$1.tar.gz/ \
+https://github.com/dcramer/django-uuidfield/releases /dcramer/django-uuidfield/archive/([\d.]+)\.tar\.gz




More information about the Python-modules-commits mailing list