[Python-modules-commits] [django-fsm-admin] 02/02: Initial release (Closes: #790567).

Michael Fladischer fladi at moszumanska.debian.org
Tue Jun 30 09:19:11 UTC 2015


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

fladi pushed a commit to branch master
in repository django-fsm-admin.

commit bc1529fdc7c8169094fa33cacec8a6cb7018d1c7
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Jun 30 11:11:08 2015 +0200

    Initial release (Closes: #790567).
---
 debian/changelog                   |  5 ++++
 debian/compat                      |  1 +
 debian/control                     | 47 ++++++++++++++++++++++++++++++++++++++
 debian/copyright                   | 31 +++++++++++++++++++++++++
 debian/python-django-fsm-log.docs  |  1 +
 debian/python3-django-fsm-log.docs |  1 +
 debian/rules                       |  9 ++++++++
 debian/source/format               |  1 +
 debian/watch                       |  4 ++++
 9 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b45c9bd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-fsm-admin (1.2.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #790567).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 30 Jun 2015 11:11:15 +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..881a93f
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: django-fsm-admin
+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-django (>= 1.6),
+               python-django-fsm,
+               python-setuptools,
+               python3-all,
+               python3-django,
+               python3-django-fsm,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Homepage: https://github.com/gadventures/django-fsm-admin
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-fsm-admin.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/django-fsm-admin.git
+
+Package: python-django-fsm-admin
+Architecture: all
+Depends: python-django (>= 1.6),
+         python-django-fsm,
+         ${misc:Depends},
+         ${python:Depends}
+Description: django-fsm state transitions for Django admin
+ Mixin and template tags to integrate django-fsm transitions into the django
+ admin. It assumes that your workflow state field is named state but you can
+ override it or add additional workflow state fields with the attribute
+ fsm_field.
+
+Package: python3-django-fsm-admin
+Architecture: all
+Depends: python3-django,
+         python3-django-fsm,
+         ${misc:Depends},
+         ${python3:Depends}
+Description: django-fsm state transitions for Django admin (Python3 version)
+ Mixin and template tags to integrate django-fsm transitions into the django
+ admin. It assumes that your workflow state field is named state but you can
+ override it or add additional workflow state fields with the attribute
+ fsm_field.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..eb0cb0c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-fsm-admin
+Upstream-Contact: G Adventures <software at gadventures.com>
+Source: https://github.com/gadventures/django-fsm-admin
+
+Files: *
+Copyright: 2014, G Adventures <software at gadventures.com>
+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-django-fsm-log.docs b/debian/python-django-fsm-log.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-fsm-log.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-fsm-log.docs b/debian/python3-django-fsm-log.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-fsm-log.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2fb9cf7
--- /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=django-fsm-admin
+
+%:
+	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..d8cab35
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.+\/([\d\.]+)\.tar\.gz/django-fsm-admin-$1.tar.gz/ \
+https://github.com/gadventures/django-fsm-admin/releases \
+/gadventures/django-fsm-admin/archive/([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list