[Python-modules-commits] [drf-fsm-transitions] 02/02: Initial release (Closes: #797908).

Michael Fladischer fladi at moszumanska.debian.org
Thu Sep 3 15:23:30 UTC 2015


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

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

commit dfe5c6145dd3b91c6f35093133f55744edd2b4bf
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Sep 3 17:12:33 2015 +0200

    Initial release (Closes: #797908).
---
 debian/changelog                                   |  5 +++
 debian/compat                                      |  1 +
 debian/control                                     | 51 ++++++++++++++++++++++
 debian/copyright                                   | 31 +++++++++++++
 ...python-djangorestframework-fsm-transitions.docs |  1 +
 ...ython3-djangorestframework-fsm-transitions.docs |  1 +
 debian/rules                                       |  9 ++++
 debian/source/format                               |  1 +
 debian/watch                                       |  4 ++
 9 files changed, 104 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b9074dc
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+drf-fsm-transitions (0.2.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #797908).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 28 Apr 2015 17:35:01 +0200
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..d9c9a3e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,51 @@
+Source: drf-fsm-transitions
+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-appconf,
+               python-django (>= 1.6),
+               python-django-fsm,
+               python-djangorestframework,
+               python-setuptools,
+               python3-all,
+               python3-appconf,
+               python3-django,
+               python3-django-fsm,
+               python3-djangorestframework,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/hzy/drf-fsm-transitions
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/drf-fsm-transitions.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/drf-fsm-transitions.git
+
+Package: python-djangorestframework-fsm-transitions
+Architecture: all
+Depends: python-django,
+         python-django-fsm,
+         python-djangorestframework,
+         ${misc:Depends},
+         ${python:Depends}
+Description: Django-FSM transitions for Django REST Framework
+ Automatically hook your Django-FSM transitions up to Django REST Framework by
+ using the provided viewset mixin. Each transition will be made available
+ through its name in the object URL and can be called using POST.
+
+Package: python3-djangorestframework-fsm-transitions
+Architecture: all
+Depends: python3-django,
+         python3-django-fsm,
+         python3-djangorestframework,
+         ${misc:Depends},
+         ${python3:Depends}
+Description: Django-FSM transitions for Django REST Framework (Python3 version)
+ Automatically hook your Django-FSM transitions up to Django REST Framework by
+ using the provided viewset mixin. Each transition will be made available
+ through its name in the object URL and can be called using POST.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..45471c2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: drf-fsm-transitions
+Upstream-Contact: Jacob Haslehurst <jacob at haslehurst.net>
+Source: https://github.com/hzy/drf-fsm-transitions
+
+Files: *
+Copyright: 2014, Jacob Haslehurst <jacob at haslehurst.net>
+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-fsm-transitions.docs b/debian/python-djangorestframework-fsm-transitions.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python-djangorestframework-fsm-transitions.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/python3-djangorestframework-fsm-transitions.docs b/debian/python3-djangorestframework-fsm-transitions.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-djangorestframework-fsm-transitions.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2aeb241
--- /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-fsm-transitions
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..03b584a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.+\/v([\d\.]+)\.tar\.gz/drf-fsm-transitions-$1.tar.gz/ \
+https://github.com/hzy/drf-fsm-transitions/releases \
+/hzy/drf-fsm-transitions/archive/v([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list