summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2009-10-31 16:53:04 +0200
committerLars Wirzenius <liw@liw.fi>2009-10-31 16:53:04 +0200
commit9bede28a162569f5b9f7e666959d0f7ec24e6c65 (patch)
tree9fbae15c226b3bb2ff690cd7c8d25a761148a7e3
parent90ddb0b8eb915bef9acaf94356f7a48deefdde32 (diff)
parent2ca7a48230a0816a082dc4658a4a554bc246a0fd (diff)
downloadextrautils-9bede28a162569f5b9f7e666959d0f7ec24e6c65.tar.gz
Merged .deb packaging into main branch, to simplify my life at the cost of making life harder for the hypothetical Debian packager.
-rw-r--r--debian/changelog19
-rw-r--r--debian/compat1
-rw-r--r--debian/control25
-rw-r--r--debian/copyright21
-rw-r--r--debian/pycompat1
-rwxr-xr-xdebian/rules12
6 files changed, 79 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..734b4d3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,19 @@
+extrautils (1.1-1ubuntu1) jaunty; urgency=low
+
+ * Bla, test relese.
+
+ -- Lars Wirzenius <liw@liw.fi> Sat, 10 Oct 2009 11:49:25 +0300
+
+extrautils (1.1-1) unstable; urgency=low
+
+ * New upstream version.
+ * debian/control: Added build-dependcy on python-dev-all so all Python
+ versions are available during build.
+
+ -- Lars Wirzenius <liw@iki.fi> Sat, 31 May 2008 19:21:57 +0300
+
+extrautils (1.0-1) unstable; urgency=low
+
+ * First upload.
+
+ -- Lars Wirzenius <liw@iki.fi> Sun, 18 May 2008 19:13:47 +0300
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..1a64cb7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: extrautils
+Maintainer: Lars Wirzenius <liw@iki.fi>
+Section: misc
+Priority: optional
+Standards-Version: 3.7.3
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.38),
+ python-central (>= 0.5.6), python, python-all-dev (>= 2.3.5-11)
+XS-Python-Version: all
+Homepage: http://iki.fi/extrautils/
+
+Package: extrautils
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}
+XB-Python-Version: ${python:Versions}
+Description: collection of miscellaneous Unix command line utilities
+ This is a collection of miscellaneous utilities for the Unix command
+ line, inspired by Joey Hess's moreutils. The inclusion criteria for
+ extrautils is much less strict than for moreutils: extrautils basically
+ welcomes utilities for any purpose, implemented in any language, as long
+ as they are well made and the author is willing to help with maintenance.
+ .
+ Currently included utilities:
+ - do-until: execute a command until it succeeds
+ - isascii: check whether a file consists of ASCII characters only
+ - total: add up all numbers in the first column
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..404a67f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,21 @@
+Extrautils was originally written Lars Wirzenius <liw@iki.fi>.
+It was originally packaged as a .deb by Lars Wirzenius <liw@iki.fi>.
+
+# Copyright (C) 2008 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.
+
+On a Debian system, you can find a copy of the GPL version 2 in
+/usr/share/common-licenses/GPL-2.
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..d9e147a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/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
+
+build/extrautils::
+ $(MAKE)
+
+clean::
+ $(MAKE) clean