[Python-modules-commits] r28554 - in packages/django-polymorphic/trunk (15 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Fri Apr 18 08:17:24 UTC 2014


    Date: Friday, April 18, 2014 @ 08:17:23
  Author: fladi-guest
Revision: 28554

Initial release (Closes: #745122).

Added:
  packages/django-polymorphic/trunk/debian/
  packages/django-polymorphic/trunk/debian/changelog
  packages/django-polymorphic/trunk/debian/clean
  packages/django-polymorphic/trunk/debian/compat
  packages/django-polymorphic/trunk/debian/control
  packages/django-polymorphic/trunk/debian/copyright
  packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.doc-base
  packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.docs
  packages/django-polymorphic/trunk/debian/python-django-polymorphic.docs
  packages/django-polymorphic/trunk/debian/python-django-polymorphic.install
  packages/django-polymorphic/trunk/debian/rules
  packages/django-polymorphic/trunk/debian/source/
  packages/django-polymorphic/trunk/debian/source/format
  packages/django-polymorphic/trunk/debian/source/lintian-overrides
  packages/django-polymorphic/trunk/debian/watch


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

Added: packages/django-polymorphic/trunk/debian/changelog
===================================================================
--- packages/django-polymorphic/trunk/debian/changelog	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/changelog	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,5 @@
+django-polymorphic (0.5.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #745122).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Thu, 17 Apr 2014 12:33:59 +0200

Added: packages/django-polymorphic/trunk/debian/clean
===================================================================
--- packages/django-polymorphic/trunk/debian/clean	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/clean	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,5 @@
+django_polymorphic.egg-info/PKG-INFO
+django_polymorphic.egg-info/SOURCES.txt
+django_polymorphic.egg-info/dependency_links.txt
+django_polymorphic.egg-info/requires.txt
+django_polymorphic.egg-info/top_level.txt

Added: packages/django-polymorphic/trunk/debian/compat
===================================================================
--- packages/django-polymorphic/trunk/debian/compat	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/compat	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1 @@
+9

Added: packages/django-polymorphic/trunk/debian/control
===================================================================
--- packages/django-polymorphic/trunk/debian/control	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/control	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,59 @@
+Source: django-polymorphic
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>,
+Build-Depends: debhelper (>= 9),
+               python-all,
+               python-django (>= 1.4),
+               python-setuptools,
+               python-sphinx (>= 1.0.7+dfsg)
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+Homepage: https://github.com/chrisglass/django_polymorphic
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-polymorphic/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-polymorphic/trunk/
+
+Package: python-django-polymorphic
+Architecture: all
+Depends: python-django (>= 1.4),
+         ${misc:Depends},
+         ${python:Depends}
+Suggests: python-django-polymorphic-doc
+Description: Seamless Polymorphic Inheritance for Django Models
+ Django-polymorphic simplifies using inherited models in Django projects. When a
+ query is made at the base model, the inherited model classes are returned.
+ .
+ Features:
+  * Full admin integration.
+  * ORM integration:
+    + Support for ForeignKey, ManyToManyField, OneToOneField descriptors.
+    + Support for proxy models.
+    + Filtering/ordering of inherited models (ArtProject___artist).
+    + Filtering model types: instance_of(...) and not_instance_of(...)
+    + Combining querysets of different models (qs3 = qs1 | qs2)
+    + Support for custom user-defined managers.
+  * Uses the minimum amount of queries needed to fetch the inherited models.
+  * Disabling polymorphic behavior when needed.
+
+Package: python-django-polymorphic-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: Seamless Polymorphic Inheritance for Django Models (Documentation)
+ Django-polymorphic simplifies using inherited models in Django projects. When a
+ query is made at the base model, the inherited model classes are returned.
+ .
+ Features:
+  * Full admin integration.
+  * ORM integration:
+    + Support for ForeignKey, ManyToManyField, OneToOneField descriptors.
+    + Support for proxy models.
+    + Filtering/ordering of inherited models (ArtProject___artist).
+    + Filtering model types: instance_of(...) and not_instance_of(...)
+    + Combining querysets of different models (qs3 = qs1 | qs2)
+    + Support for custom user-defined managers.
+  * Uses the minimum amount of queries needed to fetch the inherited models.
+  * Disabling polymorphic behavior when needed.
+ .
+ This package contains the documentation.

Added: packages/django-polymorphic/trunk/debian/copyright
===================================================================
--- packages/django-polymorphic/trunk/debian/copyright	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/copyright	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,41 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-polymorphic
+Upstream-Contact: Bert Constantin <bert.constantin at gmx.de>
+Source: https://github.com/chrisglass/django_polymorphic
+
+Files: *
+Copyright: 2009-1010, Bert Constantin <bert.constantin at gmx.de>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2014, Fladischer Michael <FladischerMichael at fladi.at>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+  * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ .
+  * 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.
+ .
+  * The names of the contributors may not 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
+ OWNER 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/django-polymorphic/trunk/debian/python-django-polymorphic-doc.doc-base
===================================================================
--- packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.doc-base	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.doc-base	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,8 @@
+Document: python-django-polymorphic-doc
+Title: Dango Polymorphic Documentation
+Author: Diederik van der Boor
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-django-polymorphic-doc/html/index.html
+Files: /usr/share/doc/python-django-polymorphic-doc/html/*.html

Added: packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.docs
===================================================================
--- packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.docs	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/python-django-polymorphic-doc.docs	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1 @@
+docs/_build/html

Added: packages/django-polymorphic/trunk/debian/python-django-polymorphic.docs
===================================================================
--- packages/django-polymorphic/trunk/debian/python-django-polymorphic.docs	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/python-django-polymorphic.docs	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1 @@
+README.rst

Added: packages/django-polymorphic/trunk/debian/python-django-polymorphic.install
===================================================================
--- packages/django-polymorphic/trunk/debian/python-django-polymorphic.install	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/python-django-polymorphic.install	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1 @@
+usr/

Added: packages/django-polymorphic/trunk/debian/rules
===================================================================
--- packages/django-polymorphic/trunk/debian/rules	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/rules	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2,sphinxdoc
+
+override_dh_auto_build:
+	PYTHONPATH=. sphinx-build -b html -d docs/_build/.doctrees -N docs docs/_build/html
+	dh_auto_build
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e; \
+	for python in $(shell pyversions -r); do \
+		PYTHONPATH="." $$python runtests.py; \
+	done
+endif
+
+override_dh_clean:
+	rm -rf docs/_build
+	dh_clean
+
+override_dh_installchangelogs:
+	dh_installchangelogs -- docs/changelog.rst


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

Added: packages/django-polymorphic/trunk/debian/source/format
===================================================================
--- packages/django-polymorphic/trunk/debian/source/format	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/source/format	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/django-polymorphic/trunk/debian/source/lintian-overrides
===================================================================
--- packages/django-polymorphic/trunk/debian/source/lintian-overrides	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/source/lintian-overrides	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,2 @@
+# Upstream does not provide detached PGP signatures for their source tarballs.
+django-polymorphic source: debian-watch-may-check-gpg-signature

Added: packages/django-polymorphic/trunk/debian/watch
===================================================================
--- packages/django-polymorphic/trunk/debian/watch	                        (rev 0)
+++ packages/django-polymorphic/trunk/debian/watch	2014-04-18 08:17:23 UTC (rev 28554)
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.+\/v?([\d\.]+)\.tar\.gz/django-polymorphic-$1.tar.gz/ \
+https://github.com/chrisglass/django_polymorphic/releases \
+/chrisglass/django_polymorphic/archive/v?([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list