summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-06-12 12:44:20 +0100
committerLars Wirzenius <liw@liw.fi>2011-06-12 12:44:20 +0100
commitdd5350490b68a2119d02568fc5cf813377daddce (patch)
tree15eb7063b8c5908d941794ed20473cdf5fd270bb
parent5b738ec3c33a396c55b18fe479515ca08cf28771 (diff)
parent6289af4f4293e18fc242e62b7ff3e20cb5d33964 (diff)
downloadsummain-dd5350490b68a2119d02568fc5cf813377daddce.tar.gz
Release version 0.8.summain-0.8
-rw-r--r--Makefile2
-rw-r--r--NEWS11
-rw-r--r--debian/changelog8
-rw-r--r--debian/control9
-rwxr-xr-xdebian/rules2
-rw-r--r--setup.py5
-rwxr-xr-xsummain2
-rw-r--r--summainlib.py2
8 files changed, 31 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 3d07544..58d10a0 100644
--- a/Makefile
+++ b/Makefile
@@ -24,4 +24,4 @@ check:
rm .coverage
clean:
- rm -f *.pyc .coverage summain.1
+ rm -rf *.pyc .coverage summain.1 build
diff --git a/NEWS b/NEWS
index 15747af..d9617fd 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,17 @@ NEWS file for summain
=====================
+Version 0.8, released 2011-06-12
+--------------------------------
+
+* Uses newer cliapp API for defining settings.
+* Adds support for additional checksums: MD5, SHA224, SHA256, SHA386, and
+ SHA512.
+* Adds a speed-test utility to compare summain with other similar tools.
+ It is about as fast as md5sum(1) and sha1sum(1).
+* Manual page's list of options is now automatically generated.
+* Subdirectories are now sorted, to provide a more systematic output.
+
Version 0.7, released 2011-05-18
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index b7eb1d8..ec0d849 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+summain (0.8) squeeze; urgency=low
+
+ * New upstream release.
+ * debian/control: Bumped Standards-Version, no other changes
+ necessary.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 12 Jun 2011 12:40:59 +0100
+
summain (0.7) squeeze; urgency=low
* New upstream version.
diff --git a/debian/control b/debian/control
index e32a787..b3659af 100644
--- a/debian/control
+++ b/debian/control
@@ -2,14 +2,15 @@ Source: summain
Maintainer: Lars Wirzenius <liw@liw.fi>
Section: misc
Priority: optional
-Standards-Version: 3.8.3
-Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3),
- python (>= 2.5), extrautils, python-cliapp (>= 0.7)
+Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 7.3.8), python-all (>= 2.6.6-3~), extrautils,
+ 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.5),
+Depends: ${python:Depends}, ${misc:Depends}, python (>= 2.6),
python-cliapp (>= 0.7)
Description: create file manifests with checksums
Summain generates file manifests, which contain metadata about the files,
diff --git a/debian/rules b/debian/rules
index 3334e76..c15d590 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
%:
- dh $@ --with-buildsystem=python_distutils
+ dh $@ --with python2
override_dh_auto_build:
dh_auto_build $@ --with-buildsystem=python_distutils
diff --git a/setup.py b/setup.py
index 01b0818..32711b8 100644
--- a/setup.py
+++ b/setup.py
@@ -20,10 +20,11 @@ from distutils.core import setup
import summainlib
setup(name='summain',
- version=summainlib.version,
- description='file manifest and checksum generator',
+ version=summainlib.__version__,
+ description='create file manifests with checksums',
author='Lars Wirzenius',
author_email='liw@liw.fi',
+ url='http://liw.fi/summain/',
py_modules=['summainlib'],
scripts=['summain'],
data_files=[
diff --git a/summain b/summain
index c4adfe5..6931ae6 100755
--- a/summain
+++ b/summain
@@ -72,4 +72,4 @@ class Summain(cliapp.Application):
self.output.write('\n')
-Summain(version=summainlib.version).run()
+Summain(version=summainlib.__version__).run()
diff --git a/summainlib.py b/summainlib.py
index bb7d668..41ff5ce 100644
--- a/summainlib.py
+++ b/summainlib.py
@@ -24,7 +24,7 @@ import time
import urllib
-version = '0.7'
+__version__ = '0.8'
class NumberNormalizer(object):