[Python-modules-commits] [python-mpegdash] 03/06: Initial release. (Closes: #823832)
Ondrej Koblizek
kobla-guest at moszumanska.debian.org
Wed May 18 14:13:16 UTC 2016
This is an automated email from the git hooks/post-receive script.
kobla-guest pushed a commit to branch master
in repository python-mpegdash.
commit 4139e1dece4cf24ada06f324ef0f4a0e82a3c064
Author: Ondrej Koblizek <ondrej.koblizek at firma.seznam.cz>
Date: Wed May 18 15:25:56 2016 +0200
Initial release. (Closes: #823832)
---
debian/changelog | 5 +++++
debian/clean | 1 +
debian/compat | 1 +
debian/control | 43 +++++++++++++++++++++++++++++++++++++++++++
debian/copyright | 31 +++++++++++++++++++++++++++++++
debian/rules | 7 +++++++
debian/source/options | 1 +
debian/watch | 3 +++
8 files changed, 92 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d73545c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-mpegdash (0.1.0-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #823832)
+
+ -- Ondřej Nový <novy at ondrej.orgz> Thu, 5 May 2016 12:27:32 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..d5ea08e
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+tests/mpd-samples/output.mpd
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..5b23550
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,43 @@
+Source: python-mpegdash
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Ondřej Kobližek <koblizeko at gmail.com>,
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9~),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python-setuptools,
+ python3-all,
+ python3-setuptools,
+Build-Depends-Indep: python-unittest2,
+ python3-unittest2,
+Standards-Version: 3.9.8
+Homepage: https://github.com/caststack/python-mpegdash
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-mpegdash.git/
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-mpegdash.git
+
+Package: python-mpegdash
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends},
+Description: Python MPEG-DASH parser - Python 2.x
+ mpd library can load and parse MPEG-DASH MPD(Media Presentation Description) metafile
+ .
+ The basic usage is to create a metafile object from uri, file path or
+ directly from a string.
+ .
+ This package contains the Python 2.x module.
+
+Package: python3-mpegdash
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends},
+Description: Python MPEG-DASH parser - Python 3.x
+ mpd library can load and parse MPEG-DASH MPD(Media Presentation Description) metafile
+ .
+ The basic usage is to create a playlist object from uri, file path or
+ directly from a string.
+ .
+ This package contains the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9a11652
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-mpegdash
+Source: https://github.com/caststack/python-mpegdash
+
+Files: *
+Copyright: 2015-2016, Sangwon Lee <gamzabaw at gmail.com>
+ 2015-2016, supercast-tv
+License: Expat
+
+Files: debian/*
+Copyright: 2016 Ondřej Kobližek <koblizeko at gmail.com>
+License: Expat
+
+Licence: 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/rules b/debian/rules
new file mode 100755
index 0000000..daef9bd
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#! /usr/bin/make -f
+
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = mpegdash
+
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..cb61fa5
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3c8c6b1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/python-mpegdash-$1\.tar\.gz/ \
+ https://github.com/caststack/python-mpegdash/tags .*/v?(\d\S*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-mpegdash.git
More information about the Python-modules-commits
mailing list