From bccb1f0a382195d64d7691f8f464811a7cb58cb6 Mon Sep 17 00:00:00 2001 From: Timo Weingärtner Date: Mon, 28 Nov 2011 01:08:23 +0100 Subject: initial debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 21 +++++++++++++++++++++ debian/copyright | 25 +++++++++++++++++++++++++ debian/gbp.conf | 5 +++++ debian/hadori.install | 1 + debian/hadori.manpages | 1 + debian/rules | 4 ++++ debian/source.lintian-overrides | 2 ++ debian/source/format | 1 + 10 files changed, 66 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/hadori.install create mode 100644 debian/hadori.manpages create mode 100755 debian/rules create mode 100644 debian/source.lintian-overrides create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4b0812d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +hadori (0.1-1) unstable; urgency=low + + * Initial Release. + + -- Timo Weingärtner Sun, 06 Nov 2011 00:12:01 +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..6019c4c --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: hadori +Section: utils +Priority: extra +Maintainer: Timo Weingärtner +Build-Depends: debhelper (>= 8.9.0), libboost-program-options-dev, zlib1g-dev +Standards-Version: 3.9.2 + +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 merory + 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 + * hashing option: speedup on many equal-sized, mostly identical files diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a4045a8 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,25 @@ +Author: + + Timo Weingärtner + +Copyright: + + Copyright (C) 2010 Timo Weingärtner + +License: + + This package 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 package 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 + +On Debian systems, the complete text of the GNU General +Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..9868811 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +upstream-branch = master +debian-branch = debian +upstream-tag = %(version)s +pristime-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..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides new file mode 100644 index 0000000..66a7288 --- /dev/null +++ b/debian/source.lintian-overrides @@ -0,0 +1,2 @@ +# only need dpkg-buildflags stuff from dh9 +hadori source: package-needs-versioned-debhelper-build-depends 9 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) -- cgit v1.2.3