[Forensics-changes] [SCM] debian-forensics/myrescue branch, debian-sid, updated. upstream_0.9.4-28-gf56eaa6

Daniel Baumann daniel at debian.org
Sun Jan 27 09:32:10 UTC 2008


The branch, debian-sid has been updated
       via  f56eaa609d2eda8f84d16391088fa932f6909319 (commit)
       via  08e0d29783b81cb1c5de54ca5fec1f43ebe220a6 (commit)
       via  8c1f92f49673b9e6bb8fb5ce2584a869f33fb74e (commit)
       via  0f892bdd0c8b7639392ca0df35d0217852a2bb8e (commit)
       via  eecb8fcfe2b5a8a3156e3b8a42058a962b9fa3d8 (commit)
       via  81d7fa78078c8433314ee9e9d0d7919fb69715af (commit)
       via  0f0672a786336be3e5d837a6fae85d48828de3b5 (commit)
       via  374acb365a6d7743ceec02c1ebb6ec191708418f (commit)
       via  5b1bc17133099d8cdcc2c1f06b3e9e293f7ff1a3 (commit)
       via  7a8d13916518bc4db92c5327d1c7108186610150 (commit)
       via  b4ea7ee263eed1501473b443b0501fcf3458be99 (commit)
       via  431e7dd61c183364f071d2e26660a946fb621ce9 (commit)
       via  19ab07eb02881f3e182958d1f32fdd99debccc32 (commit)
       via  f57ab5bc2a5e2837943a6a5c36959836d21157db (commit)
       via  6df987534721ce02da80c84e00b912b2acee540d (commit)
       via  63c422d83fb3df444be1334d13957c3c3b019a3f (commit)
       via  328177d704fd128caa541d98f123ebb42afef661 (commit)
       via  695308a25da022c38dc84e41cf824067c9434fd6 (commit)
       via  67440f708409bbc273773ad32addfafa43456932 (commit)
       via  7ec0922b02cb1680198acc0ce4d26f68f7fed3df (commit)
       via  d2980242dd10f20036f3e8b74fe4c9a31e00827f (commit)
       via  89b33730d36d25141cc123fee778c92bd08a6628 (commit)
       via  53768ad0184aa4a7d6f8028d082d19fdb1326f8e (commit)
       via  f07601486b5b89dbc0dd0b08a62d125fca18dd4f (commit)
       via  87f6ea90a64b4073d18ae23456a5631b5f055a48 (commit)
       via  38e354208770685b123516a832ec1d9a5d50fc5e (commit)
      from  ee2abf3c6651f6b29af436dc63de14b6620d95ec (commit)


- Shortlog ------------------------------------------------------------
f56eaa6 Reordering targets.
08e0d29 Adding dh_installman files.
8c1f92f Adding dh_install files.
0f892bd Removing unused dh_installdirs files.
eecb8fc Removing unused debhelper calls.
81d7fa7 Updating install target.
0f0672a Updating clean target.
374acb3 Updating build target.
5b1bc17 Removing unused configure target.
7a8d139 Decluttering commented stuff.
b4ea7ee Removing useless README from docs.
431e7dd Adding myself to debian licensing.
19ab07e Correcting license.
f57ab5b Correcting copyright.
6df9875 Correcting upstream authors.
63c422d Correcting download url.
328177d Fixing wrapping.
695308a Adding homepage field.
67440f7 Improving description.
7ec0922 Bumping package to policy 3.7.3.
d298024 Adding uploaders.
89b3373 Setting maintainer to project address.
53768ad Correcting priority.
f076014 Setting section.
87f6ea9 Bumping package to debhelper 6.
38e3542 Removing closing of non-existent ITP.

Summary of changes:
 debian/changelog |    2 +-
 debian/compat    |    2 +-
 debian/control   |   21 ++++++++------
 debian/copyright |   47 +++++++++++++++++---------------
 debian/dirs      |    2 -
 debian/docs      |    1 -
 debian/install   |    1 +
 debian/manpages  |    1 +
 debian/rules     |   76 ++++++++++-------------------------------------------
 9 files changed, 56 insertions(+), 97 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit f56eaa609d2eda8f84d16391088fa932f6909319
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:32:02 2008 +0100

    Reordering targets.

diff --git a/debian/rules b/debian/rules
index 5852d1d..6d3a9e6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,14 +1,5 @@
 #!/usr/bin/make -f
 
-build: build-stamp
-build-stamp:
-	dh_testdir
-
-	# Building package
-	$(MAKE) -C src
-
-	touch build-stamp
-
 clean:
 	dh_testdir
 	dh_testroot
@@ -19,9 +10,18 @@ clean:
 
 	dh_clean
 
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Building package
+	$(MAKE) -C src
+
+	touch build-stamp
+
 install: build
 
-binary-indep: build install
+binary: binary-arch binary-indep
 
 binary-arch: build install
 	dh_testdir
@@ -39,5 +39,6 @@ binary-arch: build install
 	dh_md5sums
 	dh_builddeb
 
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+binary-indep: build install
+
+.PHONY: clean build install binary binary-arch binary-indep

commit 08e0d29783b81cb1c5de54ca5fec1f43ebe220a6
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:30:04 2008 +0100

    Adding dh_installman files.

diff --git a/debian/manpages b/debian/manpages
new file mode 100644
index 0000000..30d29de
--- /dev/null
+++ b/debian/manpages
@@ -0,0 +1 @@
+doc/*

commit 8c1f92f49673b9e6bb8fb5ce2584a869f33fb74e
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:29:04 2008 +0100

    Adding dh_install files.

diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..7faf3b0
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+src/myrescue /usr/sbin

commit 0f892bdd0c8b7639392ca0df35d0217852a2bb8e
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:28:26 2008 +0100

    Removing unused dh_installdirs files.

diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644
index ca882bb..0000000
--- a/debian/dirs
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin

commit eecb8fcfe2b5a8a3156e3b8a42058a962b9fa3d8
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:25:01 2008 +0100

    Removing unused debhelper calls.

diff --git a/debian/rules b/debian/rules
index d0131bd..5852d1d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,10 +28,8 @@ binary-arch: build install
 	dh_testroot
 	dh_installchangelogs ChangeLog
 	dh_installdocs
-	dh_installexamples
 	dh_install
 	dh_installman
-	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms

commit 81d7fa78078c8433314ee9e9d0d7919fb69715af
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:23:45 2008 +0100

    Updating install target.

diff --git a/debian/rules b/debian/rules
index 265da61..d0131bd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,13 +20,6 @@ clean:
 	dh_clean
 
 install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	dh_installdirs
-
-	# Add here commands to install the package into debian/myrescue.
-	$(MAKE) DESTDIR=$(CURDIR)/debian/myrescue install
 
 binary-indep: build install
 

commit 0f0672a786336be3e5d837a6fae85d48828de3b5
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:22:42 2008 +0100

    Updating clean target.

diff --git a/debian/rules b/debian/rules
index 26a760f..265da61 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,8 +14,8 @@ clean:
 	dh_testroot
 	rm -f build-stamp
 
-	# Add here commands to clean up after the build process.
-	$(MAKE) clean
+	# Cleaning package
+	rm -f src/myrescue
 
 	dh_clean
 

commit 374acb365a6d7743ceec02c1ebb6ec191708418f
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:22:23 2008 +0100

    Updating build target.

diff --git a/debian/rules b/debian/rules
index cc7d6e4..26a760f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -4,10 +4,10 @@ build: build-stamp
 build-stamp:
 	dh_testdir
 
-	# Add here commands to compile the package.
-	$(MAKE)
+	# Building package
+	$(MAKE) -C src
 
-	touch $@
+	touch build-stamp
 
 clean:
 	dh_testdir

commit 5b1bc17133099d8cdcc2c1f06b3e9e293f7ff1a3
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:20:44 2008 +0100

    Removing unused configure target.

diff --git a/debian/rules b/debian/rules
index 695e2c1..cc7d6e4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,14 +1,7 @@
 #!/usr/bin/make -f
 
-configure: configure-stamp
-configure-stamp:
-	dh_testdir
-	# Add here commands to configure the package.
-
-	touch configure-stamp
-
 build: build-stamp
-build-stamp: configure-stamp
+build-stamp:
 	dh_testdir
 
 	# Add here commands to compile the package.
@@ -19,7 +12,7 @@ build-stamp: configure-stamp
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp
+	rm -f build-stamp
 
 	# Add here commands to clean up after the build process.
 	$(MAKE) clean
@@ -56,4 +49,4 @@ binary-arch: build install
 	dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build clean binary-indep binary-arch binary install

commit 7a8d13916518bc4db92c5327d1c7108186610150
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:20:23 2008 +0100

    Decluttering commented stuff.

diff --git a/debian/rules b/debian/rules
index 7cd653b..695e2c1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,16 +1,4 @@
 #!/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
-
-
-
 
 configure: configure-stamp
 configure-stamp:
@@ -19,15 +7,12 @@ configure-stamp:
 
 	touch configure-stamp
 
-
 build: build-stamp
-
 build-stamp: configure-stamp
 	dh_testdir
 
 	# Add here commands to compile the package.
 	$(MAKE)
-	#docbook-to-man debian/myrescue.sgml > myrescue.1
 
 	touch $@
 
@@ -50,36 +35,20 @@ install: build
 	# Add here commands to install the package into debian/myrescue.
 	$(MAKE) DESTDIR=$(CURDIR)/debian/myrescue 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_install
 	dh_installman
 	dh_link
 	dh_strip
 	dh_compress
 	dh_fixperms
-#	dh_perl
-#	dh_makeshlibs
 	dh_installdeb
 	dh_shlibdeps
 	dh_gencontrol

commit b4ea7ee263eed1501473b443b0501fcf3458be99
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:15:51 2008 +0100

    Removing useless README from docs.

diff --git a/debian/docs b/debian/docs
index 724e084..1333ed7 100644
--- a/debian/docs
+++ b/debian/docs
@@ -1,2 +1 @@
-README
 TODO

commit 431e7dd61c183364f071d2e26660a946fb621ce9
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:15:02 2008 +0100

    Adding myself to debian licensing.

diff --git a/debian/copyright b/debian/copyright
index 9d6173f..2988a71 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -34,5 +34,6 @@ License:
 On Debian systems, the complete text of the GNU General Public License
 can be found in /usr/share/common-licenses/GPL-2 file.
 
-The Debian packaging is (C) 2008, Christophe Monniez <christophe.monniez at fccu.be> and
-is licensed under the GPL, see above.
+The Debian packaging is (C) 2008, Christophe Monniez
+<christophe.monniez at fccu.be>, Daniel Baumann <daniel at debian.org> and
+is licensed under the GPL-2, see /usr/share/common-licenses/GPL-2.

commit 19ab07eb02881f3e182958d1f32fdd99debccc32
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:13:29 2008 +0100

    Correcting license.

diff --git a/debian/copyright b/debian/copyright
index 5d974a4..9d6173f 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -17,22 +17,22 @@ Copyright:
 
 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 package; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin St, 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'.
+	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 St, 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.
 
 The Debian packaging is (C) 2008, Christophe Monniez <christophe.monniez at fccu.be> and
 is licensed under the GPL, see above.

commit f57ab5bc2a5e2837943a6a5c36959836d21157db
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:11:58 2008 +0100

    Correcting copyright.

diff --git a/debian/copyright b/debian/copyright
index 1db6b9a..5d974a4 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -12,8 +12,8 @@ Upstream Authors:
 
 Copyright:
 
-    Copyright (C) 2007 Kristof Koehler
-    Copyright (C) 2007 Peter Schlaile
+	Copyright (C) 2000-2007 Kristof Koehler <kristofk at users.sourceforge.net>
+	Copyright (C) 2000-2007 Peter Schlaile <schlaile at users.sourceforge.net>
 
 License:
 

commit 6df987534721ce02da80c84e00b912b2acee540d
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:11:18 2008 +0100

    Correcting upstream authors.

diff --git a/debian/copyright b/debian/copyright
index 4c1e02c..1db6b9a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -5,10 +5,10 @@ It was downloaded from:
 
 	<http://sourceforge.net/project/showfiles.php?group_id=68256>
 
-Upstream Author(s):
+Upstream Authors:
 
 	Kristof Koehler <kristofk at users.sourceforge.net>
-	Peter Schlaile  <schlaile at users.sourceforge.net>
+	Peter Schlaile <schlaile at users.sourceforge.net>
 
 Copyright:
 

commit 63c422d83fb3df444be1334d13957c3c3b019a3f
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:11:05 2008 +0100

    Correcting download url.

diff --git a/debian/copyright b/debian/copyright
index b3e1a4c..4c1e02c 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,7 +1,9 @@
 This package was debianized by Christophe Monniez <christophe.monniez at fccu.be>
 on Fri, 25 Jan 2008 01:00:46 +0100.
 
-It was downloaded from http://myrescue.sourceforge.net/
+It was downloaded from:
+
+	<http://sourceforge.net/project/showfiles.php?group_id=68256>
 
 Upstream Author(s):
 

commit 328177d704fd128caa541d98f123ebb42afef661
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:10:27 2008 +0100

    Fixing wrapping.

diff --git a/debian/copyright b/debian/copyright
index 26f6936..b3e1a4c 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,5 +1,5 @@
-This package was debianized by Christophe Monniez <christophe.monniez at fccu.be> on
-Fri, 25 Jan 2008 01:00:46 +0100.
+This package was debianized by Christophe Monniez <christophe.monniez at fccu.be>
+on Fri, 25 Jan 2008 01:00:46 +0100.
 
 It was downloaded from http://myrescue.sourceforge.net/
 

commit 695308a25da022c38dc84e41cf824067c9434fd6
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:07:58 2008 +0100

    Adding homepage field.

diff --git a/debian/control b/debian/control
index f319e3e..af1b744 100644
--- a/debian/control
+++ b/debian/control
@@ -5,6 +5,7 @@ Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
 Uploaders: Christophe Monniez <christophe.monniez at fccu.be>
 Build-Depends: debhelper (>= 6)
 Standards-Version: 3.7.3
+Homepage: http://myrescue.sourceforge.net/
 
 Package: myrescue
 Architecture: any

commit 67440f708409bbc273773ad32addfafa43456932
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:07:30 2008 +0100

    Improving description.

diff --git a/debian/control b/debian/control
index c6567ba..f319e3e 100644
--- a/debian/control
+++ b/debian/control
@@ -9,7 +9,8 @@ Standards-Version: 3.7.3
 Package: myrescue
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: a tool to rescue data from damaged hard disk
- It can recover still-readable data from damaged harddisk.
- It quickly get out of damaged area and first handle
- non damaged part of the disk.
+Description: rescue data from damaged harddisks
+ myrescue is a program to rescue the still-readable data from a damaged
+ harddisk. It is similiar in purpose to dd_rescue, but it tries to quickly get
+ out of damaged areas to first handle the not yet damaged part of the disk and
+ return later.

commit 7ec0922b02cb1680198acc0ce4d26f68f7fed3df
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:04:41 2008 +0100

    Bumping package to policy 3.7.3.

diff --git a/debian/control b/debian/control
index 43a939d..c6567ba 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
 Uploaders: Christophe Monniez <christophe.monniez at fccu.be>
 Build-Depends: debhelper (>= 6)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 
 Package: myrescue
 Architecture: any

commit d2980242dd10f20036f3e8b74fe4c9a31e00827f
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:04:14 2008 +0100

    Adding uploaders.

diff --git a/debian/control b/debian/control
index 65f4751..43a939d 100644
--- a/debian/control
+++ b/debian/control
@@ -2,6 +2,7 @@ Source: myrescue
 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 (>= 6)
 Standards-Version: 3.7.2
 

commit 89b33730d36d25141cc123fee778c92bd08a6628
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:03:33 2008 +0100

    Setting maintainer to project address.

diff --git a/debian/control b/debian/control
index 0086fd3..65f4751 100644
--- a/debian/control
+++ b/debian/control
@@ -1,7 +1,7 @@
 Source: myrescue
 Section: utils
 Priority: optional
-Maintainer: Christophe Monniez <christophe.monniez at fccu.be>
+Maintainer: Debian Forensics <forensics-devel at lists.alioth.debian.org>
 Build-Depends: debhelper (>= 6)
 Standards-Version: 3.7.2
 

commit 53768ad0184aa4a7d6f8028d082d19fdb1326f8e
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:02:36 2008 +0100

    Correcting priority.

diff --git a/debian/control b/debian/control
index eb38072..0086fd3 100644
--- a/debian/control
+++ b/debian/control
@@ -1,6 +1,6 @@
 Source: myrescue
 Section: utils
-Priority: extra
+Priority: optional
 Maintainer: Christophe Monniez <christophe.monniez at fccu.be>
 Build-Depends: debhelper (>= 6)
 Standards-Version: 3.7.2

commit f07601486b5b89dbc0dd0b08a62d125fca18dd4f
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:02:18 2008 +0100

    Setting section.

diff --git a/debian/control b/debian/control
index 76bc5c0..eb38072 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,5 @@
 Source: myrescue
-Section: unknown
+Section: utils
 Priority: extra
 Maintainer: Christophe Monniez <christophe.monniez at fccu.be>
 Build-Depends: debhelper (>= 6)

commit 87f6ea90a64b4073d18ae23456a5631b5f055a48
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:01:43 2008 +0100

    Bumping package to debhelper 6.

diff --git a/debian/compat b/debian/compat
index 7ed6ff8..1e8b314 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+6
diff --git a/debian/control b/debian/control
index 04fc929..76bc5c0 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: myrescue
 Section: unknown
 Priority: extra
 Maintainer: Christophe Monniez <christophe.monniez at fccu.be>
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 6)
 Standards-Version: 3.7.2
 
 Package: myrescue

commit 38e354208770685b123516a832ec1d9a5d50fc5e
Author: Daniel Baumann <daniel at debian.org>
Date:   Sun Jan 27 10:01:17 2008 +0100

    Removing closing of non-existent ITP.

diff --git a/debian/changelog b/debian/changelog
index 2e0274c..0dc20e7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
 myrescue (0.9.4-1) unstable; urgency=low
 
-  * Initial release (Closes: #0001)
+  * Initial release.
 
  -- Christophe Monniez <christophe.monniez at fccu.be>  Fri, 25 Jan 2008 01:00:46 +0100

-- 
debian-forensics/myrescue



More information about the forensics-changes mailing list