[Python-modules-commits] r30998 - in packages/django-restframework-nested-resource/trunk (16 files)
fladi-guest at users.alioth.debian.org
fladi-guest at users.alioth.debian.org
Sun Oct 12 14:58:04 UTC 2014
Date: Sunday, October 12, 2014 @ 14:58:03
Author: fladi-guest
Revision: 30998
Initial release (Closes: #764945).
Added:
packages/django-restframework-nested-resource/trunk/debian/
packages/django-restframework-nested-resource/trunk/debian/changelog
packages/django-restframework-nested-resource/trunk/debian/compat
packages/django-restframework-nested-resource/trunk/debian/control
packages/django-restframework-nested-resource/trunk/debian/copyright
packages/django-restframework-nested-resource/trunk/debian/patches/
packages/django-restframework-nested-resource/trunk/debian/patches/privacy.patch
packages/django-restframework-nested-resource/trunk/debian/patches/series
packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.doc-base
packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.docs
packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource.docs
packages/django-restframework-nested-resource/trunk/debian/rules
packages/django-restframework-nested-resource/trunk/debian/source/
packages/django-restframework-nested-resource/trunk/debian/source/format
packages/django-restframework-nested-resource/trunk/debian/source/lintian-overrides
packages/django-restframework-nested-resource/trunk/debian/watch
Property changes on: packages/django-restframework-nested-resource/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/django-restframework-nested-resource/trunk/debian/changelog
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/changelog (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/changelog 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,5 @@
+djangorestframework-nested-resource (1.2.0-1) unstable; urgency=low
+
+ * Initial release (Closes: #764945).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at> Sun, 12 Oct 2014 15:40:01 +0200
Added: packages/django-restframework-nested-resource/trunk/debian/compat
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/compat (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/compat 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1 @@
+9
Added: packages/django-restframework-nested-resource/trunk/debian/control
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/control (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/control 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,38 @@
+Source: djangorestframework-nested-resource
+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),
+ dh-python,
+ python-all,
+ python-django-nose,
+ python-djangorestframework,
+ python-sphinx (>= 1.0.7+dfsg)
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+Homepage: https://github.com/simpleenergy/django-rest-framework-nested-resource
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-rest-framework-nested-resource/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-rest-framework-nested-resource/trunk/
+
+Package: python-djangorestframework-nested-resource
+Architecture: all
+Depends: python-djangorestframework,
+ ${misc:Depends},
+ ${python:Depends}
+Suggests: python-djangorestframework-nested-resource-doc
+Description: DRF view mixin for nested resources
+ djangorestframework-nested-resource provides view mixin for Django REST
+ framework which simplifies nested resources. The mixin allow one to define a
+ parent model on the Serializer level of Django REST framework.
+
+Package: python-djangorestframework-nested-resource-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: DRF view mixin for nested resources (Documentation)
+ djangorestframework-nested-resource provides view mixin for Django REST
+ framework which simplifies nested resources. The mixin allows one to define a
+ parent model on the Serializer level of Django REST framework.
+ .
+ This package contains the documentation.
Added: packages/django-restframework-nested-resource/trunk/debian/copyright
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/copyright (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/copyright 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-rest-framework-nested-resource
+Upstream-Contact: SimpleEnergy <piper at simpleenergy.com>
+Source: https://github.com/simpleenergy/django-rest-framework-nested-resource
+
+Files: *
+Copyright: 2014, SimpleEnergy <piper at simpleenergy.com>
+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.
+ .
+ * Neither the name of django-rest-framework-nested-resource 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/django-restframework-nested-resource/trunk/debian/patches/privacy.patch
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/patches/privacy.patch (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/patches/privacy.patch 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,32 @@
+Description: Remove remote hosted image URLs
+ To prevent leaking information from the HTML documentation to external
+ websites, removed all references to external hosted images.
+Author: Michael Fladischer <FladischerMichael at fladi.at>
+Last-Update: 2014-10-12
+Forwarded: not-needed
+
+--- a/README.rst
++++ b/README.rst
+@@ -2,15 +2,6 @@
+ django-rest-framework-nested-resource
+ =============================
+
+-.. image:: https://badge.fury.io/py/django-rest-framework-nested-resource.png
+- :target: https://badge.fury.io/py/django-rest-framework-nested-resource
+-
+-.. image:: https://travis-ci.org/simpleenergy/django-rest-framework-nested-resource.png?branch=master
+- :target: https://travis-ci.org/simpleenergy/django-rest-framework-nested-resource
+-
+-.. image:: https://coveralls.io/repos/simpleenergy/django-rest-framework-nested-resource/badge.png?branch=master
+- :target: https://coveralls.io/r/simpleenergy/django-rest-framework-nested-resource?branch=master
+-
+ DRF view mixin for nested resources
+
+ Documentation
+@@ -32,4 +23,4 @@
+ Features
+ --------
+
+-* TODO
+\ No newline at end of file
++* TODO
Added: packages/django-restframework-nested-resource/trunk/debian/patches/series
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/patches/series (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/patches/series 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1 @@
+privacy.patch
Added: packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.doc-base
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.doc-base (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.doc-base 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,8 @@
+Document: python-django-rest-framework-nested-resource-doc
+Title: djangorestframework-nested-resource Documentation
+Author: SimpleEnergy <piper at simpleenergy.com>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-djangorestframework-nested-resource-doc/html/index.html
+Files: /usr/share/doc/python-djangorestframework-nested-resource-doc/html/*.html
Added: packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.docs
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.docs (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource-doc.docs 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1 @@
+docs/_build/html
Added: packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource.docs
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource.docs (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/python-djangorestframework-nested-resource.docs 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1 @@
+README.rst
Added: packages/django-restframework-nested-resource/trunk/debian/rules
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/rules (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/rules 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=djangorestframework-nested-resource
+export PYBUILD_TEST_ARGS_python2=python{version} runtests.py
+
+%:
+ dh $@ --with python2,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+ dh_auto_build
+ PYTHONPATH=. sphinx-build -b html -d docs/_build/.doctrees -N docs docs/_build/html
+
+override_dh_clean:
+ rm -rf docs/_build
+ dh_clean
+
+override_dh_installchangelogs:
+ dh_installchangelogs -- HISTORY.rst
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ set -e; \
+ for python in $(shell pyversions -r); do \
+ $$python runtests.py ; \
+ done
+endif
Property changes on: packages/django-restframework-nested-resource/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/django-restframework-nested-resource/trunk/debian/source/format
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/source/format (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/source/format 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/django-restframework-nested-resource/trunk/debian/source/lintian-overrides
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/source/lintian-overrides (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/source/lintian-overrides 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,2 @@
+# Upstream does not provide detached PGP signatures for their source tarballs.
+djangorestframework-nested-resource source: debian-watch-may-check-gpg-signature
Added: packages/django-restframework-nested-resource/trunk/debian/watch
===================================================================
--- packages/django-restframework-nested-resource/trunk/debian/watch (rev 0)
+++ packages/django-restframework-nested-resource/trunk/debian/watch 2014-10-12 14:58:03 UTC (rev 30998)
@@ -0,0 +1,5 @@
+version=3
+opts=filenamemangle=s/.+\/v([\d\.]+)\.tar\.gz/djangorestframework-nested-resource-$1.tar.gz/ \
+https://github.com/simpleenergy/django-rest-framework-nested-resource/releases \
+/simpleenergy/django-rest-framework-nested-resource/archive/v([\d\.]+)\.tar\.gz
+
More information about the Python-modules-commits
mailing list