[Python-modules-commits] [python-tmdbsimple] 03/03: Initial release (Closes: #837884).

Michael Fladischer fladi at moszumanska.debian.org
Thu Sep 15 07:48:25 UTC 2016


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

fladi pushed a commit to branch master
in repository python-tmdbsimple.

commit 303738d6f1852b0dadf2b551ca0e48987a122acb
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Sep 15 09:47:16 2016 +0200

    Initial release (Closes: #837884).
---
 debian/changelog               |  5 ++++
 debian/clean                   |  5 ++++
 debian/compat                  |  1 +
 debian/control                 | 59 ++++++++++++++++++++++++++++++++++++++++++
 debian/copyright               | 29 +++++++++++++++++++++
 debian/python-tmdbsimple.docs  |  1 +
 debian/python3-tmdbsimple.docs |  1 +
 debian/rules                   | 10 +++++++
 debian/watch                   |  4 +++
 9 files changed, 115 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..65e5ef3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-tmdbsimple (1.4.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #837884).
+
+ -- Michael Fladischer <fladi at debian.org>  Wed, 14 Sep 2016 19:57:20 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..1f5844e
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,5 @@
+tmdbsimple.egg-info/PKG-INFO
+tmdbsimple.egg-info/SOURCES.txt
+tmdbsimple.egg-info/dependency_links.txt
+tmdbsimple.egg-info/requires.txt
+tmdbsimple.egg-info/top_level.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..07c4348
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,59 @@
+Source: python-tmdbsimple
+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.8
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/celiao/tmdbsimple/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-tmdbsimple.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-tmdbsimple.git
+
+
+Package: python-tmdbsimple
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: Wrapper for The Movie Database API (Python2 version)
+ tmdbsimple is a wrapper, written in Python, for The Movie Database (TMDb) API
+ v3. By calling the functions available in tmdbsimple one can simplify their
+ code and easily access a vast amount of movie, tv, and cast data.
+ .
+ Features:
+  * One-to-one mapping between tmdbsimple functions and TMDb methods.
+  * Implements all TMDb methods, including Accounts and Authentication.
+  * Implements new TV features.
+  * Easy to access data using Python class attributes.
+  * Easy to experiment with tmdbsimple functions inside the Python interpreter.
+ .
+ An API key is required to interact with the API endpoint.
+ .
+ This package contains the Python 2 version of the library.
+
+
+Package: python3-tmdbsimple
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Wrapper for The Movie Database API (Python3 version)
+ tmdbsimple is a wrapper, written in Python, for The Movie Database (TMDb) API
+ v3. By calling the functions available in tmdbsimple one can simplify their
+ code and easily access a vast amount of movie, tv, and cast data.
+ .
+ Features:
+  * One-to-one mapping between tmdbsimple functions and TMDb methods.
+  * Implements all TMDb methods, including Accounts and Authentication.
+  * Implements new TV features.
+  * Easy to access data using Python class attributes.
+  * Easy to experiment with tmdbsimple functions inside the Python interpreter.
+ .
+ An API key is required to interact with the API endpoint.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..27b2be2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-tmdbsimple
+Upstream-Contact: Celia Oakley <celia.oakley at alumni.stanford.edu>
+Source: https://github.com/celiao/tmdbsimple/
+
+Files: *
+Copyright: 2013-2016, Celia Oakley <celia.oakley at alumni.stanford.edu>
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2016, Michael Fladischer <fladi at debian.org>
+License: GPL-3+
+
+License: GPL-3+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/python-tmdbsimple.docs b/debian/python-tmdbsimple.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-tmdbsimple.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-tmdbsimple.docs b/debian/python3-tmdbsimple.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-tmdbsimple.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..72d3e5c
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=tmdbsimple
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..37ed12b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.+\/([\d\.]+)\.tar\.gz/python-tmdbsimple-$1.tar.gz/,repacksuffix=+dfsg,dversionmangle=s/\+dfsg$// \
+https://github.com/celiao/tmdbsimple/releases \
+/celiao/tmdbsimple/archive/([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list