[Reproducible-commits] [rdfind] 01/27: Imported Debian patch 1.2.4-1

Reiner Herrmann reiner at reiner-h.de
Sun Aug 16 19:52:29 UTC 2015


This is an automated email from the git hooks/post-receive script.

deki-guest pushed a commit to branch master
in repository rdfind.

commit 181da511228ed123eaccf8067b8eca223802802b
Author: TANIGUCHI Takaki <takaki at debian.org>
Date:   Mon Nov 15 14:42:08 2010 +0900

    Imported Debian patch 1.2.4-1
---
 debian/changelog               |  5 +++++
 debian/compat                  |  1 +
 debian/control                 | 18 ++++++++++++++++++
 debian/copyright               | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/docs                    |  3 +++
 debian/patches/00_fix_man_typo | 13 +++++++++++++
 debian/patches/series          |  1 +
 debian/rules                   | 13 +++++++++++++
 debian/source/format           |  1 +
 debian/watch                   |  2 ++
 10 files changed, 99 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b5ba1c8
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+rdfind (1.2.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #511807)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Mon, 15 Nov 2010 14:42:08 +0900
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..d88ef23
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: rdfind
+Section: utils
+Priority: extra
+Maintainer: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), autotools-dev, nettle-dev
+Standards-Version: 3.9.1
+Homepage: http://rdfind.pauldreik.se/
+#Vcs-Git: git://git.debian.org/collab-maint/rdfind.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/rdfind.git;a=summary
+
+Package: rdfind
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: find duplicate files utility
+ rdfind is a program to find duplicate files and optionally list, delete
+ them or replace them with symlinks or hard links.  It is a command
+ line program written in c++, which has proven to be pretty quick compared
+ to its alternatives.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..93f24a1
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+This work was packaged for Debian by:
+
+    TANIGUCHI Takaki <takaki at debian.org> on Mon, 15 Nov 2010 14:42:08 +0900
+
+It was downloaded from:
+
+    http://rdfind.pauldreik.se/
+
+Upstream Author:
+
+    Paul Sundvall
+
+Copyright:
+
+    copyright Paul Sundvall 2006
+
+License:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License version 2 as
+   published by the Free Software Foundation.
+
+    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 <http://www.gnu.org/licenses/>
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+The Debian packaging is:
+
+    Copyright (C) 2010 TANIGUCHI Takaki <takaki at debian.org>
+
+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.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..5502ed8
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,3 @@
+NEWS
+README
+TODO
diff --git a/debian/patches/00_fix_man_typo b/debian/patches/00_fix_man_typo
new file mode 100644
index 0000000..4c39024
--- /dev/null
+++ b/debian/patches/00_fix_man_typo
@@ -0,0 +1,13 @@
+Index: rdfind-1.2.4/rdfind.1
+===================================================================
+--- rdfind-1.2.4.orig/rdfind.1	2010-11-15 14:59:15.791530622 +0900
++++ rdfind-1.2.4/rdfind.1	2010-11-15 14:59:22.715531414 +0900
+@@ -5,7 +5,7 @@
+ .\" see LICENSE for details.
+ .\" $Revision: 567 $
+ .\" $Id: rdfind.1 567 2009-01-21 17:27:30Z pauls $
+-.TH rdfind 1.2.4 "January 2009" rdfind
++.TH rdfind "1" 1.2.4 "January 2009" rdfind
+ .SH NAME
+ rdfind \- finds duplicate files
+ .SH SYNOPSIS
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..3b5a1bf
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+00_fix_man_typo
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b760bee
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	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..41795fe
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://rdfind.pauldreik.se/ rdfind-(.*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/rdfind.git



More information about the Reproducible-commits mailing list