summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2009-09-30 11:11:13 +0300
committerLars Wirzenius <liw@liw.fi>2009-09-30 11:11:13 +0300
commit379bac9683c2e6407175a09ff21dadcd9d5f3b49 (patch)
treecf3b79710eb169a8bb35f898e8122ea02a2566de
parent1805a9dd204cdafb5d1072c5fb5299772c1dd179 (diff)
parent981ca559238fbea4ebc4673d7626a0087f412980 (diff)
downloadcoverage-test-runner-379bac9683c2e6407175a09ff21dadcd9d5f3b49.tar.gz
Merged .deb packaging branch; it's easier to have everything in one branch. My apologies to anyone who ends up packaging this for actual inclusion in a distro.
-rw-r--r--debian/changelog23
-rw-r--r--debian/compat1
-rw-r--r--debian/control18
-rw-r--r--debian/copyright24
-rw-r--r--debian/pycompat1
-rwxr-xr-xdebian/rules9
6 files changed, 76 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c4fcf06
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,23 @@
+python-coverage-test-runner (1.1-1) unstable; urgency=low
+
+ * New upstream version.
+ * debian/control: Change Section: to python to match the Debian override
+ file.
+ * debian/control: Update Maintainer: to use my current e-mail address.
+ * debian/control: Bump Standards-Version. No other changes required.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 12 Jul 2008 16:16:11 +0300
+
+python-coverage-test-runner (1.0-2) unreleased; urgency=low
+
+ * debian/copyright: Fixed wording to point out explicitly that version
+ two or later of the GPL is the license. Thanks to Joerg Jaspert for
+ pointing it out.
+
+ -- Lars Wirzenius <liw@iki.fi> Sun, 30 Dec 2007 00:15:57 +0200
+
+python-coverage-test-runner (1.0-1) unstable; urgency=low
+
+ * First public version. (Closes: #456443)
+
+ -- Lars Wirzenius <liw@iki.fi> Sat, 15 Dec 2007 23:05:47 +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..a76bf62
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: python-coverage-test-runner
+Maintainer: Lars Wirzenius <liw@liw.fi>
+Section: python
+Priority: optional
+Standards-Version: 3.8.0
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.38),
+ python-central (>= 0.5.6), python
+XS-Python-Version: all
+
+Package: python-coverage-test-runner
+Architecture: all
+Depends: ${python:Depends}, python-coverage
+XB-Python-Version: ${python:Versions}
+Description: fail Python program unit tests unless they test everything
+ This package contains the Python module CoverageTestRunner, which runs
+ unit tests implemented using the unittest module in the Python standard
+ library. It runs them using coverage.py (in the python-coverage package)
+ and fails the test if all statements are not covered.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..13e5a62
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,24 @@
+python-coverage-test-runner was originally written and packaged as a
+.deb by Lars Wirzenius <liw@iki.fi>.
+
+It was downloaded from http://braawi.org/coveragetestrunner.html
+
+python-coverage-test-runner is licensed under the GNU General Public
+License, either version 2 or any later version. On Debian systems, you
+can find version 2 of the license at /usr/share/common-licenses/GPL-2 .
+
+# Copyright (C) 2007 Lars Wirzenius <liw@iki.fi>
+#
+# 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 2 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, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
diff --git a/debian/pycompat b/debian/pycompat
new file mode 100644
index 0000000..0cfbf08
--- /dev/null
+++ b/debian/pycompat
@@ -0,0 +1 @@
+2
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..618f8e8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pycentral
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+clean::
+ $(MAKE) clean