summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-06-12 13:07:14 +0100
committerLars Wirzenius <liw@liw.fi>2011-06-12 13:07:14 +0100
commit85fdd9d5d9cf49f9600a3f84c07cdd5a63b3f076 (patch)
treed44442f59e6947753f3fc50c95a62a6031320b41
parentddd4f8eae2d241a781919fbb79b905b4a390b541 (diff)
downloadgenbackupdata-85fdd9d5d9cf49f9600a3f84c07cdd5a63b3f076.tar.gz
Release version 1.5.genbackupdata-1.5
-rw-r--r--Makefile2
-rw-r--r--NEWS7
-rw-r--r--debian/changelog7
-rw-r--r--debian/control7
-rwxr-xr-xdebian/rules6
-rw-r--r--genbackupdatalib/__init__.py2
-rw-r--r--setup.py6
7 files changed, 23 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 129f2e4..684a6b5 100644
--- a/Makefile
+++ b/Makefile
@@ -8,5 +8,3 @@ clean:
rm -rf *.py[co] */*.py[co] build dist MANIFEST
rm -f blackboxtest.log blackboxtest-genbackupdata.log
-dist:
- python setup.py sdist
diff --git a/NEWS b/NEWS
index 1aaedcf..4bede84 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,13 @@
NEWS for genbackupdata
======================
+Version 1.5, released 2011-06-12
+--------------------------------
+
+* Fix genbackupdatalib to work better with pydoc.
+* Change to use newer cliapp API for adding new settings. This avoids
+ the deprecated old API.
+
Version 1.3.1, released 2011-02-02
----------------------------------
diff --git a/debian/changelog b/debian/changelog
index 76cb793..b4fffb4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+genbackupdata (1.5) squeeze; urgency=low
+
+ * New upstream version.
+ * Bump Standards-Version. No other changes required.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 12 Jun 2011 12:55:28 +0100
+
genbackupdata (1.4) squeeze; urgency=low
* debian/control: Add dependency on python-cliapp.
diff --git a/debian/control b/debian/control
index 6e545c4..11f7adc 100644
--- a/debian/control
+++ b/debian/control
@@ -2,14 +2,13 @@ Source: genbackupdata
Maintainer: Lars Wirzenius <liw@liw.fi>
Section: devel
Priority: optional
-Standards-Version: 3.7.2
-Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3), python (>= 2.5)
-XS-Python-Version: all
+Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 7.3.8), python-all (>= 2.6.6-3~)
+X-Python-Version: >= 2.6
Package: genbackupdata
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-cliapp (>= 0.9)
-XB-Python-Version: ${python:Versions}
Description: generate test data sets for backup software
genbackupdata creates or modifies directory trees in ways that simulate
real filesystems sufficiently well for performance testing of backup
diff --git a/debian/rules b/debian/rules
index 48a507c..46bf560 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,8 +1,4 @@
#!/usr/bin/make -f
%:
- dh $@ --buildsystem=python_distutils
-
-override_dh_auto_clean:
- $(MAKE) clean
- dh_auto_clean --buildsystem=python_distutils
+ dh $@ --with=python2 --buildsystem=python_distutils
diff --git a/genbackupdatalib/__init__.py b/genbackupdatalib/__init__.py
index 1ddb4e2..e055c57 100644
--- a/genbackupdatalib/__init__.py
+++ b/genbackupdatalib/__init__.py
@@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-version = '1.3'
+__version__ = '1.3'
from generator import DataGenerator
from names import NameGenerator
diff --git a/setup.py b/setup.py
index 004463e..fc7e96e 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,9 @@
from distutils.core import setup
+import genbackupdatalib
+
setup(name='genbackupdata',
- version='1.3',
+ version=genbackupdatalib.__version__,
description='Generate test data for backup software',
long_description='''\
genbackupdata creates or modifies directory trees in ways that simulate
@@ -19,7 +21,7 @@ benchmark backup software than distributing very large test sets.
''',
author='Lars Wirzenius',
author_email='liw@iki.fi',
- url='http://braawi.org/genbackupdata.html',
+ url='http://braawi.org/genbackupdata/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',