summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2010-03-20 18:43:17 +1300
committerLars Wirzenius <liw@liw.fi>2010-03-20 18:43:17 +1300
commit10a929128596fbd7f38b77589aef35e2d9e7591f (patch)
tree84740711d1b92c467b7bf8608057b3cb4fc2c7b6
parentee2407abc55a8f08150f2e325eb6a2a0e3fb54c7 (diff)
parentbce663b06a856b75690867537c9edc526508fe9e (diff)
downloadgenbackupdata-10a929128596fbd7f38b77589aef35e2d9e7591f.tar.gz
Merged Debian packaging branch into trunk.
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control21
-rw-r--r--debian/copyright24
-rw-r--r--debian/dirs1
-rw-r--r--debian/pycompat1
-rwxr-xr-xdebian/rules13
7 files changed, 66 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..ae8b642
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+genbackupdata (1.0-1) unstable; urgency=low
+
+ * First version.
+
+ -- Lars Wirzenius <liw@iki.fi> Fri, 13 Jul 2007 00:33:00 +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..3c3b5c0
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: genbackupdata
+Maintainer: Lars Wirzenius <liw@iki.fi>
+Section: devel
+Priority: optional
+Standards-Version: 3.7.2
+Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.38),
+ python-central (>= 0.5.6), python
+XS-Python-Version: all
+
+Package: genbackupdata
+Architecture: all
+Depends: ${python:Depends}
+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
+ software. For example, it can create files that are a mix of small text
+ files and big binary files, with the binary files containing random
+ binary junk which compresses badly. This can then be backed up, and
+ later the directory tree can be changed by creating new files, modifying
+ files, or deleting or renaming files. The backup can then be run again.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..b196870
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,24 @@
+genbackupdata was originally written and packaged as a .deb by Lars
+Wirzenius <liw@iki.fi>.
+
+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.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..fcf16f2
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/share/man/man1
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..f3783d2
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/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
+
+binary-install/genbackupdata::
+ install -m 0644 genbackupdata.1 \
+ debian/genbackupdata/usr/share/man/man1
+
+clean::
+ $(MAKE) clean