[SCM] python-pyknon/master: Adding debian dir.

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Fri Jul 27 03:55:14 UTC 2012


The following commit has been merged in the master branch:
commit 497fd9f2d964d4a6a2893011d8050611d3bebc3f
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Thu Jul 26 23:55:08 2012 -0400

    Adding debian dir.

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..028c1d8
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-pyknon (1.0-1) unstable; urgency=low
+
+  * Initial release. (Closes: #682920)
+
+ -- Tiago Bortoletto Vaz <tiago at debian.org>  Thu, 26 Jul 2012 23:50:59 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c4a6e15
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: python-pyknon
+Section: python
+Priority: optional
+Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers at lists.alioth.debian.org>
+Uploaders: Tiago Bortoletto Vaz <tiago at debian.org>
+DM-Upload-Allowed: yes
+Build-Depends: debhelper (>=7.0.50~), python-all-dev
+Standards-Version: 3.9.3
+XS-Python-Version: >= 2.7
+Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/python-pyknon.git
+Vcs-Git: git://git.debian.org/git/pkg-multimedia/python-pyknon.git
+Homepage: https://github.com/kroger/pyknon
+
+Package: python-pyknon
+Architecture: any
+Depends: python (>= 2.7), ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Description: A simple Python music library
+ Pyknon helps to generate Midi files quickly and reason about musical
+ proprieties.
+ .
+ It’s a library intended for teaching and demonstrating music for programmers.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..fd6ccf0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,46 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pyknon
+Upstream-Contact: Pedro Kroger <kroger at pedrokroger.net>
+Source: https://github.com/kroger/pyknon
+
+Files: *
+Copyright: 2012 Pedro Kroger <kroger at pedrokroger.net>
+License: MIT
+ 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.
+
+Files: debian/*
+Copyright: 2012 Tiago Bortoletto Vaz <tiago at debian.org>
+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 program 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 full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-3'.
diff --git a/debian/examples b/debian/examples
new file mode 100644
index 0000000..b335f2c
--- /dev/null
+++ b/debian/examples
@@ -0,0 +1 @@
+demo.py
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e2fb182
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,19 @@
+#!/usr/bin/make -f
+
+export PYTHONWARNINGS=d
+buildvers := $(shell pyversions -rv)
+
+%:
+	dh $@ --with python2
+
+override_dh_auto_build:
+	set -e; \
+		for i in $(buildvers); do \
+			python$$i setup.py build; \
+		done
+
+override_dh_auto_install:
+	set -e; \
+		for i in $(buildvers); do \
+			python$$i ./setup.py install --skip-build --root $(CURDIR)/debian/python-pyknon --install-layout=deb; \
+		done
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..c037b1a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/kroger/pyknon/tarball/version(.*)

-- 
python-pyknon packaging



More information about the pkg-multimedia-commits mailing list