summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--debian/changelog4
-rw-r--r--debian/control5
-rwxr-xr-xdebian/rules14
-rw-r--r--debian/source/format1
-rw-r--r--summainlib.py2
6 files changed, 21 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index d9617fd..5022fa6 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,12 @@ NEWS file for summain
=====================
+Version 0.9, released 2011-07-24
+--------------------------------
+
+* Paths can now be normalized using checksumming, instead of the previous
+ silly attempt at inventing names for components.
+
Version 0.8, released 2011-06-12
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index 678013b..a8b4a14 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,9 @@
-summain (0.9) UNRELEASED; urgency=low
+summain (0.9-1) unstable; urgency=low
* New upstream release. This is the first release to be uploaded to
Debian. (Closes: #631861)
+ * debian/source/format: Use 3.0 (quilt).
+ * debian/rules, debian/control: Fixed for dh_python2 and Debian.
-- Lars Wirzenius <liw@liw.fi> Mon, 27 Jun 2011 23:03:59 +0100
diff --git a/debian/control b/debian/control
index b3659af..48b8443 100644
--- a/debian/control
+++ b/debian/control
@@ -3,15 +3,14 @@ Maintainer: Lars Wirzenius <liw@liw.fi>
Section: misc
Priority: optional
Standards-Version: 3.9.2
-Build-Depends: debhelper (>= 7.3.8), python-all (>= 2.6.6-3~), extrautils,
+Build-Depends: debhelper (>= 7.3.8), python-all (>= 2.6.6-3~),
python-cliapp (>= 0.7)
Homepage: http://liw.fi/summain/
X-Python-Version: >= 2.6
Package: summain
Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}, python (>= 2.6),
- python-cliapp (>= 0.7)
+Depends: ${python:Depends}, ${misc:Depends}, python-cliapp (>= 0.7)
Description: create file manifests with checksums
Summain generates file manifests, which contain metadata about the files,
and a checksum of their content for regular files. The manifest can be
diff --git a/debian/rules b/debian/rules
index c15d590..96d6cd4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,11 +1,13 @@
#!/usr/bin/make -f
+
%:
- dh $@ --with python2
+ dh $@ --with=python2 --buildsystem=python_distutils
override_dh_auto_build:
- dh_auto_build $@ --with-buildsystem=python_distutils
- setuppy-debian-versions-match
-
-override_dh_auto_install:
- python setup.py install --prefix=debian/summain/usr
+ $(MAKE)
+ dh_auto_build --with=python2 --buildsystem=python_distutils
+
+override_dh_auto_clean:
+ $(MAKE) clean
+ dh_auto_clean --with=python2 --buildsystem=python_distutils
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/summainlib.py b/summainlib.py
index 3de9517..5376e00 100644
--- a/summainlib.py
+++ b/summainlib.py
@@ -25,7 +25,7 @@ import time
import urllib
-__version__ = '0.8'
+__version__ = '0.9'
class NumberNormalizer(object):