[Python-modules-commits] [python-sptest] 01/02: Import python-sptest_0.2.1-2.1.dsc
Mattia Rizzolo
mattia at debian.org
Wed Jan 20 18:16:29 UTC 2016
This is an automated email from the git hooks/post-receive script.
mattia pushed a commit to branch master
in repository python-sptest.
commit f1b0fed23a42124c49b1a808037cddc39e058310
Author: Mattia Rizzolo <mattia at debian.org>
Date: Wed Jan 20 18:15:07 2016 +0000
Import python-sptest_0.2.1-2.1.dsc
---
debian/changelog | 30 ++++++++++++++++++++++++++++++
debian/compat | 1 +
debian/control | 23 +++++++++++++++++++++++
debian/copyright | 33 +++++++++++++++++++++++++++++++++
debian/docs | 1 +
debian/rules | 43 +++++++++++++++++++++++++++++++++++++++++++
debian/watch | 3 +++
7 files changed, 134 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1c6ef04
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,30 @@
+python-sptest (0.2.1-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Build using dh-python. Closes: #786123.
+
+ -- Matthias Klose <doko at debian.org> Sat, 22 Aug 2015 10:10:54 +0200
+
+python-sptest (0.2.1-2) unstable; urgency=medium
+
+ * Removed "build install" dependency of binary-arch rule in debian/rules.
+ * Fixed wrong Architecture (should be "all", not "any") in debian/control.
+ + build using default Python version only (fixes FTBFS bug,
+ Closes: #503466)
+ * Fixed debian/copyright to get rid of a lintian warning.
+ * Removed duplicate binary-arch target from debian/rules.
+ * Added Debian Python Modules Team to Uploaders.
+ * Changed required debhelper version to "5" in debian/control and
+ + debian/compat.
+ * Added Vcs-Browser and Vcs-Svn fields to debian/control.
+ * Removed Provides field from debian/control (not needed by Python modules).
+ * Switched from pycentral to pysupport.
+
+ -- Stephan Peijnik <debian at sp.or.at> Tue, 28 Oct 2008 23:02:39 +0100
+
+python-sptest (0.2.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #498586)
+
+ -- Stephan Peijnik <debian at sp.or.at> Thu, 11 Sep 2008 12:46:16 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e9ccdd5
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: python-sptest
+Section: python
+Priority: optional
+Maintainer: Stephan Peijnik <debian at sp.or.at>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: dh-python, debhelper(>= 5)
+Standards-Version: 3.8.0
+Homepage: http://bitbucket.org/sp/sptest
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-sptest/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/python-sptest/trunk/?op=log
+
+Package: python-sptest
+Architecture: all
+Depends: ${python:Depends}
+Description: Python unittest module extension
+ sptest is a Python module that provides a simplified interface for customized
+ handling of unittest results.
+ .
+ It is designed to be a drop-in replacement and does not require any
+ modifications to exitsing Python unittest-compatible code.
+ .
+ sptest comes with two predefined output handlers providing coloured CLI
+ and XML output of test results.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..05f6b63
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+This package was debianized by Stephan Peijnik <debian at sp.or.at> on
+Thu, 11 Sep 2008 10:59:35 +0200.
+
+It was downloaded from <http://bitbucket.org/sp/sptest>
+
+Upstream Author:
+
+ Stephan Peijnik <sp at sp.or.at>
+
+Copyright:
+
+ Copyright (C) 2008 Stephan Peijnik
+
+License:
+
+ sptest 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.
+
+ sptest 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 sptest. If not, see <http://www.gnu.org/licenses/>.
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2008, Stephan Peijnik <debian at sp.or.at> and
+is licensed under the GPL, see above.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..fc680c6
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,43 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -rf build
+ find . -name *\.py[co] -exec rm {} \;
+ dh_clean
+
+build:
+ python setup.py build
+
+install:
+ python setup.py install --root $(CURDIR)/debian/python-sptest
+
+# Build architecture-dependent files here.
+binary-arch:
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_install
+ dh_installchangelogs
+ dh_installdocs README
+ dh_python2
+ dh_compress -X.py
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+
+get-orig-source:
+ uscan --force-download --rename --repack
+
+.PHONY: build clean binary-indep binary-arch install
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..7d3fa69
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+http://pypi.python.org/packages/source/s/sptest/sptest-(.*)\.tar\.gz
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-sptest.git
More information about the Python-modules-commits
mailing list