[Python-modules-commits] [djoser] 02/02: Initial release (Closes: #794839).

Michael Fladischer fladi at moszumanska.debian.org
Tue Sep 8 10:21:29 UTC 2015


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

fladi pushed a commit to branch master
in repository djoser.

commit e5dc6a791cc95aae3a95baded8ee2b5c56b60181
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Sep 8 09:56:04 2015 +0200

    Initial release (Closes: #794839).
---
 debian/changelog           |  5 ++++
 debian/compat              |  1 +
 debian/control             | 59 ++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright           | 31 ++++++++++++++++++++++++
 debian/python-djoser.docs  |  1 +
 debian/python3-djoser.docs |  1 +
 debian/rules               |  9 +++++++
 debian/source/format       |  1 +
 debian/watch               |  3 +++
 9 files changed, 111 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0783d3d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+djoser (0.3.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #794839).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 08 Sep 2015 09:52:19 +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..ad2bd43
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,59 @@
+Source: djoser
+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.5),
+               python-djangorestframework (>= 3),
+               python-setuptools,
+               python3-all,
+               python3-django,
+               python3-djangorestframework (>= 3),
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/sunscrapers/djoser
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/djoser.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/djoser.git
+
+Package: python-djoser
+Architecture: all
+Depends: python-django (>= 1.5),
+         python-djangorestframework (>= 3),
+         ${misc:Depends},
+         ${python:Depends}
+Description: REST implementation of Django authentication system
+ Djoser library provides a set of Django Rest Framework views to handle basic
+ actions such as registration, login, logout, password reset and account
+ activation. It works with custom user model.
+ .
+ Instead of reusing Django code (e.g. PasswordResetForm), it reimplementes a few
+ things to fit better into a Single Page App architecture.
+ .
+ Supported authentication backends are:
+  * HTTP Basic Auth (Default)
+  * Token based authentication from Django Rest Framework
+
+Package: python3-djoser
+Architecture: all
+Depends: python3-django,
+         python3-djangorestframework (>= 3),
+         ${misc:Depends},
+         ${python3:Depends}
+Description: REST implementation of Django authentication system (Python3 version)
+ Djoser library provides a set of Django Rest Framework views to handle basic
+ actions such as registration, login, logout, password reset and account
+ activation. It works with custom user model.
+ .
+ Instead of reusing Django code (e.g. PasswordResetForm), it reimplementes a few
+ things to fit better into a Single Page App architecture.
+ .
+ Supported authentication backends are:
+  * HTTP Basic Auth (Default)
+  * Token based authentication from Django Rest Framework
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5822bd7
--- /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-log
+Upstream-Contact: Gizmag <tech at gizmag.com>
+Source: https://github.com/gizmag/django-fsm-log
+
+Files: *
+Copyright: 2013, Gizmag <tech at gizmag.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-djoser.docs b/debian/python-djoser.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python-djoser.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/python3-djoser.docs b/debian/python3-djoser.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-djoser.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..19e159c
--- /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=djoser
+
+%:
+	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..1a0deb1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/djoser/djoser-(.+)\.(?: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/djoser.git



More information about the Python-modules-commits mailing list