[Forensics-changes] [SCM] debian-forensics/md5deep branch, debian, updated. upstream/3.1-1-g7e0c0ae

Christophe Monniez christophe.monniez at fccu.be
Tue Sep 16 09:19:54 UTC 2008


The following commit has been merged in the debian branch:
commit 7e0c0aefb15d9c192a6ca464f9894c7652b09b49
Author: Christophe Monniez <christophe.monniez at fccu.be>
Date:   Tue Sep 16 11:19:23 2008 +0200

    First debianization.

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6c293bd
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+md5deep (3.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Christophe Monniez <christophe.monniez at fccu.be>  Tue, 16 Sep 2008 10:00:16 +0200
+
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..8cd7c60
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: md5deep
+Section: utils
+Priority: optional
+Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
+uploaders: Christophe Monniez <christophe.monniez at fccu.be>
+Build-Depends: debhelper (>= 7), autotools-dev
+Standards-Version: 3.8.0
+Homepage: http://md5deep.sourceforge.net/
+Vcs-Browser: http://git.debian.org/?p=forensics/md5deep.git
+Vcs-Git: git://git.debian.org/git/forensics/md5deep.git
+
+Package: md5deep
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Recursively compute hashsums or piecewise hashings
+ Md5deep is a set of tools to compute md5, sha-1, sha-256, tiger, whirlpool
+ hashsums of arbitrary number of files recursively.
+ .
+ It can also compare those hashsums with a list of known hashes.
+ The tools can display those that match the list or those that does not match.
+ .
+ It can display a time estimation when processing large files.
+ .
+ It can do piecewise hashing (hashing input files in arbitrary sized blocks).
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4d9e5dd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,52 @@
+Author: Jesse Kornblum <research at jessekornblum.com>
+Download: http://sourceforge.net/projects/md5deep/
+
+Files: *
+Copyright: (C) 2008 Jesse Kornblum <research at jessekornblum.com>
+License: PD
+ This code is public domain.
+ This program is a work of the US Government. In accordance with 17 USC
+ 105, copyright protection is not available for any work of the US
+ Government. As such this code is considered public domain. There is
+ NO warranty for this program; not even for MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE.
+
+Files: md5deep/tigerdeep.c hashdeep/strsep.h
+Copyright: (C) 2008 Jesse Kornblum <research at jessekornblum.com>
+License: GPL-2+
+ 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 2
+ 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, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in /usr/share/common-licenses/GPL-2 file.
+
+Files: debian/*
+Copyright: (C) 2008 Christophe Monniez <christophe.monniez at fccu.be>
+License: GPL-2+
+ 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 2
+ 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, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in /usr/share/common-licenses/GPL-2 file.
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/rules b/debian/rules
new file mode 100755
index 0000000..df20110
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,105 @@
+#!/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
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
+CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
+else
+CROSS= --build $(DEB_BUILD_GNU_TYPE)
+endif
+
+
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/md5deep.sgml > md5deep.1
+
+	touch $@
+
+clean: 
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/md5deep.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/md5deep install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs ChangeLog
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 

-- 
debian-forensics/md5deep



More information about the forensics-changes mailing list