From f27c1decdbda059947d17b1b73d9cd162c2eedc5 Mon Sep 17 00:00:00 2001 From: Richard Kettlewell Date: Fri, 9 Aug 2013 15:52:42 +0100 Subject: [PATCH] Debianize. Release 0.3. --- .gitignore | 3 +++ configure.ac | 2 +- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 13 +++++++++++++ debian/copyright | 11 +++++++++++ debian/rules | 4 ++++ debian/sources/format | 1 + 8 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/sources/format diff --git a/.gitignore b/.gitignore index 3a707d2..117c4ee 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ configure stamp-h1 vbig *~ +debian/*.log +debian/files +debian/*substvars diff --git a/configure.ac b/configure.ac index 4c3c290..cc55067 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.61]) -AC_INIT([vbig], [0.0.DEV], [rjk@greenend.org.uk]) +AC_INIT([vbig], [0.3], [rjk@greenend.org.uk]) m4_include([m4/ax_random_device.m4]) AC_CONFIG_AUX_DIR([config.aux]) AM_INIT_AUTOMAKE([foreign]) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b49dde9 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +vbig (0.3) unstable; urgency=low + + * Initial Debianized release. + + -- Richard Kettlewell Fri, 09 Aug 2013 15:47:10 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ab45a52 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: vbig +Section: admin +Priority: optional +Maintainer: Richard Kettlewell +Standards-Version: 3.9.2 +Homepage: https://github.com/ewxrjk/vbig + +Package: vbig +Architecture: any +Depends: ${misc:Depends},${shlibs:Depends} +Description: Test storage device integrity + Creates or verifies a file full of psuedo-random data. + The intended use is to verify that storage media work properly. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a943c2e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,11 @@ +Copyright © 2011, 2013 Richard Kettlewell +Copyright © 2000, 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc. + +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. + +On Debian systems, the complete text of the GNU General Public License +can be found in ‘/usr/share/common-licenses/GPL’ or in the dpkg source +as the file ‘COPYING’. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9ecf0fe --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --verbose diff --git a/debian/sources/format b/debian/sources/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/sources/format @@ -0,0 +1 @@ +3.0 (native) -- 2.30.2