From feffaf53bfe000db32be786e90996b1c8d464d49 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 25 Apr 2010 07:16:25 +1200 Subject: Add preliminary Debian packaging. --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 13 +++++++++++++ debian/copyright | 23 +++++++++++++++++++++++ debian/pycompat | 1 + debian/rules | 3 +++ 6 files changed, 46 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/pycompat create mode 100755 debian/rules (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..094154c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +dupfiles (1) squeeze; urgency=low + + * Initial packaging. + + -- Lars Wirzenius Sun, 25 Apr 2010 06:59:27 +1200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..56b7da6 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: dupfiles +Maintainer: Lars Wirzenius +Section: misc +Priority: optional +Standards-Version: 3.8.3 +Build-Depends: debhelper (>= 7.3.8), python-support (>= 1.0.3), python (>= 2.5) + +Package: dupfiles +Architecture: all +Depends: ${python:Depends}, ${misc:Depends}, python (>= 2.5) +Description: find and optionally hard-link duplicate files + dupfiles finds files with identical content, and either reports them, + or hardlinks them to each other. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8477282 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,23 @@ +dupfiles was originally written Lars Wirzenius . + +All of the code is currently owned by Lars Wirzenius and licensed under +the GNU GPL version 3, or later version. + + Copyright (C) 2010 Lars Wirzenius + + 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 . + +On a Debian system, you can find a copy of the GPL version 3 in +/usr/share/common-licenses/GPL-3. + 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..cbe925d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ -- cgit v1.2.1