[Python-modules-commits] [drf-generators] 03/03: Initial release (Closes: #804847).

Michael Fladischer fladi at moszumanska.debian.org
Fri Nov 20 10:40:52 UTC 2015


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository drf-generators.

commit 9387d80f01054441193fd4dd1958f365ced64bc3
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Fri Nov 20 10:56:55 2015 +0100

    Initial release (Closes: #804847).
---
 debian/changelog                                   |  5 +++
 debian/clean                                       |  1 +
 debian/compat                                      |  1 +
 debian/control                                     | 49 ++++++++++++++++++++++
 debian/copyright                                   | 31 ++++++++++++++
 debian/python-djangorestframework-generators.docs  |  1 +
 debian/python3-djangorestframework-generators.docs |  1 +
 debian/rules                                       |  9 ++++
 debian/watch                                       |  3 ++
 9 files changed, 101 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7d2f519
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+drf-generators (0.2.7-1) unstable; urgency=low
+
+  * Initial release (Closes: #804847).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 28 Apr 2015 17:35:01 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..532f392
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+drf_generators.egg-info/requires.txt
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f55211f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,49 @@
+Source: drf-generators
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/brobin/drf-generators
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/drf-generators.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/drf-generators.git
+
+Package: python-djangorestframework-generators
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Recommends: python-djangorestframework
+Description: Generate DRF Serializers, Views, and URLs (Python2 version)
+ Writing APIs can be boring and repetitive work. With DRF Generators, one simple
+ command will generate all Views, Serializers, and even Urls for a Django Rest
+ Framework application.
+ .
+ This is not intended to give a production quality API. It was intended to
+ jumpstart development and save developers from writing the same code over and
+ over for each model.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-djangorestframework-generators
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Recommends: python3-djangorestframework
+Description: Generate DRF Serializers, Views, and URLs (Python3 version)
+ Writing APIs can be boring and repetitive work. With DRF Generators, one simple
+ command will generate all Views, Serializers, and even Urls for a Django Rest
+ Framework application.
+ .
+ This is not intended to give a production quality API. It was intended to
+ jumpstart development and save developers from writing the same code over and
+ over for each model.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7a5b74f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: drf-generators
+Upstream-Contact: Tobin Brown <tobin at brobin.me>
+Source: https://github.com/Brobin/drf-generators
+
+Files: *
+Copyright: 2015, Tobin Brown <tobin at brobin.me>
+License: Expat
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/python-djangorestframework-generators.docs b/debian/python-djangorestframework-generators.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-djangorestframework-generators.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-djangorestframework-generators.docs b/debian/python3-djangorestframework-generators.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-djangorestframework-generators.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..02714d1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=djangorestframework-generators
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..98686c8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/drf-generators/drf-generators-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/drf-generators.git



More information about the Python-modules-commits mailing list