summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-22 09:32:03 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-22 09:32:03 +0100
commitfc123443d98620d11cec1e545d6f7f7d37c77c68 (patch)
treec73acddc02e5afd9a6cbb3d8b1691748a102a50f
parentae8e42aa1a5e6d8ed347f4bde12c8c6a8cdc8c81 (diff)
parent7741732ea5efd8486d5d70d8cd1c0f011a02bdcb (diff)
downloadgenbackupdata-fc123443d98620d11cec1e545d6f7f7d37c77c68.tar.gz
Release version 1.6.genbackupdata-1.6
-rw-r--r--NEWS6
-rw-r--r--debian/changelog13
-rw-r--r--debian/control3
-rw-r--r--debian/copyright45
-rw-r--r--debian/install1
-rwxr-xr-xdebian/rules2
-rw-r--r--debian/source/format1
-rw-r--r--genbackupdatalib/__init__.py2
-rw-r--r--project.meta2
-rw-r--r--setup.py1
10 files changed, 50 insertions, 26 deletions
diff --git a/NEWS b/NEWS
index 4bede84..8bf1129 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
NEWS for genbackupdata
======================
+Version 1.6, released 2011-08-22
+--------------------------------
+
+* Manual page's SYNOPSIS and OPTIONS sections are now generated automatically
+ by cliapp's `--generate-manpage`.
+
Version 1.5, released 2011-06-12
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index b4fffb4..1073750 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+genbackupdata (1.6-1) unstable; urgency=low
+
+ * First upload to Debian. (Closes: #636445)
+ * New upstream version.
+ * Add missing Depends and Build-Depends on python-ttystatus.
+ * Remove useless debian/pycompat.
+ * Use 3.0 (quilt) format.
+ * Add Homapage header.
+ * Use DEP5 for debian/copyright.
+ * Added missing Build-Depends on python-cliapp.
+
+ -- Lars Wirzenius <liw@liw.fi> Mon, 22 Aug 2011 09:10:28 +0100
+
genbackupdata (1.5) squeeze; urgency=low
* New upstream version.
diff --git a/debian/control b/debian/control
index f0d6831..345b278 100644
--- a/debian/control
+++ b/debian/control
@@ -4,13 +4,14 @@ Section: devel
Priority: optional
Standards-Version: 3.9.2
Build-Depends: debhelper (>= 7.3.8), python-all (>= 2.6.6-3~),
- python-ttystatus
+ python-ttystatus, python-cliapp
X-Python-Version: >= 2.6
Package: genbackupdata
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-cliapp (>= 0.9),
python-ttystatus
+Homepage: http://braawi.org/genbackupdata/
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/copyright b/debian/copyright
index b196870..28da461 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,24 +1,23 @@
-genbackupdata was originally written and packaged as a .deb by Lars
-Wirzenius <liw@iki.fi>.
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: genbackupdata
+Upstream-Contact: Lars Wirzenius <liw@liw.fi>
+Source: http://code.liw.fi/genbackupdata/bzr/trunk/
-It was downloaded from http://braawi.org/genbackupdata.html
-
-genbackupdata is licensed under the GNU General Public License, 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.
+Files: *
+Copyright: 2007-2011, Lars Wirzenius
+License: GPL-3+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+ .
+ On a Debian system, you can find a copy of GPL version 3 at
+ /usr/share/common-licenses/GPL-3 .
diff --git a/debian/install b/debian/install
deleted file mode 100644
index 19bf924..0000000
--- a/debian/install
+++ /dev/null
@@ -1 +0,0 @@
-genbackupdata.1 usr/share/man/man1
diff --git a/debian/rules b/debian/rules
index 46bf560..fca92d4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,3 +2,5 @@
%:
dh $@ --with=python2 --buildsystem=python_distutils
+override_dh_auto_build:
+ $(MAKE)
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/genbackupdatalib/__init__.py b/genbackupdatalib/__init__.py
index e055c57..549bfba 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.6'
from generator import DataGenerator
from names import NameGenerator
diff --git a/project.meta b/project.meta
new file mode 100644
index 0000000..cdeba85
--- /dev/null
+++ b/project.meta
@@ -0,0 +1,2 @@
+[config]
+basetgz = /home/pbuilder-tgz/sid-amd64-pristine.tgz
diff --git a/setup.py b/setup.py
index fc7e96e..e2786cc 100644
--- a/setup.py
+++ b/setup.py
@@ -36,4 +36,5 @@ benchmark backup software than distributing very large test sets.
license='GNU General Public License, version 3 or later',
packages=['genbackupdatalib'],
scripts=['genbackupdata'],
+ data_files=[('share/man/man1', ['genbackupdata.1'])],
)