summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog33
-rw-r--r--debian/compat1
-rw-r--r--debian/control23
-rw-r--r--debian/copyright30
-rw-r--r--debian/gbp.conf5
-rw-r--r--debian/hadori.install1
-rw-r--r--debian/hadori.manpages1
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
10 files changed, 103 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..96f0c51
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,33 @@
+hadori (1.0-1) unstable; urgency=medium
+
+ * Add Homepage: and Vcs-* to debian/control
+ * Add debian/watch
+ * Add Vcs branch spec to comply with Poicy 3.9.4
+ * New upstream release 1.0.
+ * move references away from github
+ * bump dh compat, policy and copyright years
+ * enable more buildflags
+ * Upload to debian. Closes: #662080.
+
+ -- Timo Weingärtner <timo@tiwe.de> Sun, 30 Apr 2017 14:15:34 +0200
+
+hadori (0.2-2) unstable; urgency=low
+
+ * Fix typo in gbp.conf
+ * Build-Depend on debhelper 9 now that it's in testing
+
+ -- Timo Weingärtner <timo@tiwe.de> Sun, 04 Mar 2012 00:34:24 +0100
+
+hadori (0.2-1) unstable; urgency=low
+
+ * New upstream release.
+ * Bump Standards-Version to 3.9.3, no changes needed.
+ * Switch to Copyright format 1.0 (DEP-5).
+
+ -- Timo Weingärtner <timo@tiwe.de> Sun, 26 Feb 2012 20:07:40 +0100
+
+hadori (0.1-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Timo Weingärtner <timo@tiwe.de> Sun, 06 Nov 2011 00:12:01 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..fa6e94e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,23 @@
+Source: hadori
+Section: utils
+Priority: extra
+Maintainer: Timo Weingärtner <timo@tiwe.de>
+Build-Depends: debhelper (>= 10), help2man, libboost-program-options-dev
+Standards-Version: 3.9.8
+Homepage: https://git.tiwe.de/hadori.git
+Vcs-Git: https://git.tiwe.de/hadori.git -b debian
+Vcs-Browser: https://git.tiwe.de/hadori.git/log/?h=debian
+
+Package: hadori
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Hardlinks identical files
+ This might look like yet another hardlinking tool, but it is the only one
+ which only memorizes one filename per inode. That results in less memory
+ consumption and faster execution compared to its alternatives. Therefore
+ (and because all the other names are already taken) it's called
+ "HArdlinking DOne RIght".
+ .
+ Advantages over other hardlinking tools:
+ * predictability: arguments are scanned in order, each first version is kept
+ * much lower CPU and memory consumption
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..dcfee1d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hadori
+Upstream-Contact: Timo Weingärtner <timo@tiwe.de>
+Source: https://github.com/tiwe-de/hadori
+
+Files: *
+Copyright: 2011-2014, Timo Weingärtner
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2011-2017, Timo Weingärtner
+License: GPL-3+
+
+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 Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in the file
+ "/usr/share/common-licenses/GPL-3".
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..2dac163
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,5 @@
+[DEFAULT]
+upstream-branch = master
+debian-branch = debian
+upstream-tag = %(version)s
+pristine-tar = true
diff --git a/debian/hadori.install b/debian/hadori.install
new file mode 100644
index 0000000..45d6b3e
--- /dev/null
+++ b/debian/hadori.install
@@ -0,0 +1 @@
+hadori usr/bin/
diff --git a/debian/hadori.manpages b/debian/hadori.manpages
new file mode 100644
index 0000000..b0d345c
--- /dev/null
+++ b/debian/hadori.manpages
@@ -0,0 +1 @@
+hadori.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..13ae8de
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export DEB_BUILD_MAINT_OPTIONS=hardening=+all reproducible=+all qa=+bug
+
+%:
+ dh $@
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/debian/watch b/debian/watch
new file mode 100644
index 0000000..dd22b1d
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://git.tiwe.de/hadori.git/ snapshot/hadori-([^/]+).tar.gz