[Forensics-changes] [recoverjpeg] 11/20: Imported Debian patch 1.1.4-1

Joao Eriberto Mota Filho eriberto at moszumanska.debian.org
Mon May 18 23:14:46 UTC 2015


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

eriberto pushed a commit to branch debian
in repository recoverjpeg.

commit c0ccf5200b5252d72fc79ed1255eb7df7fe2c3e7
Merge: 4ba3f15 f6f2089
Author: William Vera <billy at billy.com.mx>
Date:   Wed May 13 09:58:00 2009 -0500

    Imported Debian patch 1.1.4-1

 Makefile.am       |   4 +-
 Makefile.in       |  70 +++++++++--------
 README            |   1 +
 aclocal.m4        |  38 +++++----
 configure         |   4 +-
 configure.ac      |   2 +-
 debian/changelog  |   9 +++
 debian/control    |   4 +-
 debian/rules      |   2 +-
 depcomp           |  33 ++++----
 install-sh        | 228 ++++++++++++++++++++++++++++--------------------------
 remove-duplicates |  37 +++++++++
 sort-pictures     |   4 +-
 13 files changed, 256 insertions(+), 180 deletions(-)

diff --cc debian/changelog
index f9222f9,0000000..ced6500
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,55 -1,0 +1,64 @@@
++recoverjpeg (1.1.4-1) unstable; urgency=low
++
++  * New upstream release.
++  * Removed deprecated dh_clean -k at the debian/rules file.
++  * Updated Standards-Version to 3.8.1.
++  * Added python as suggests dep.
++
++ -- William Vera <billy at billy.com.mx>  Wed, 13 May 2009 09:58:00 -0500
++
 +recoverjpeg (1.1.2-1) unstable; urgency=low
 +
 +  * New upstream release
 +  * New maintainer (Closes: #500355).
 +  * Added a manpage for remove-duplicates binary.
 +  * Added a watch file.
 +  * Added a patch to fix manpage syntax.
 +  * Changed the synopsis at the Control file.
 +
 + -- William Vera <billy at billy.com.mx>  Mon, 06 Oct 2008 21:25:00 -0500
 +
 +recoverjpeg (1.1.1-1.3) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * Remove cruft from .diff.gz that somehow got in there during my last
 +    upload
 +
 + -- Wouter Verhelst <wouter at debian.org>  Sat, 06 Sep 2008 22:57:06 +0200
 +
 +recoverjpeg (1.1.1-1.2) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * recoverjpeg.c: Fix incorrect assumption about char signedness, which
 +    breaks on architectures where char is unsigned (powerpc, s390, and
 +    arm); Closes: #404717.
 +  * debian/compat, debian/rules: bump debhelper compat level to 5
 +  * debian/control: Add 'Suggests: imagemagick, exif' to debian/control,
 +    since sort-pictures wants to use those.
 +  * sort-pictures: Modify first exif call to 'exif --help', so that it
 +    won't incorrectly determine that exif is not on disk.
 +  * debian/rules: don't ignore make exit state on 'make distclean';
 +    silences lintian warning.
 +  * debian/control: Bump Standards-Version to 3.8.0 (no changes applicable to
 +    recoverjpeg)
 +
 + -- Wouter Verhelst <wouter at debian.org>  Mon, 25 Aug 2008 23:30:52 +0200
 +
 +recoverjpeg (1.1.1-1.1) unstable; urgency=high
 +
 +  * NMU
 +  * Fix license issue: recoverjpeg is GPLv2 only. (Closes: #434150)
 +
 + -- Aurélien GÉRÔME <ag at roxor.cx>  Sun, 02 Dec 2007 02:04:02 +0100
 +
 +recoverjpeg (1.1.1-1) unstable; urgency=low
 +
 +  * New upstream release
 +
 + -- Cyril Bouthors <cyril at bouthors.org>  Mon, 30 May 2005 10:49:24 +0300
 +
 +recoverjpeg (1.0-1) unstable; urgency=low
 +
 +  * Initial Release.
 +
 + -- Cyril Bouthors <cyril at bouthors.org>  Fri, 31 Dec 2004 09:17:05 +0300
diff --cc debian/control
index f0eddf8,0000000..1cdc617
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,16 -1,0 +1,16 @@@
 +Source: recoverjpeg
 +Section: graphics
 +Priority: optional
 +Maintainer: William Vera <billy at billy.com.mx>
 +Build-Depends: debhelper (>= 7.0.0), dpatch
- Standards-Version: 3.8.0
++Standards-Version: 3.8.1
 +Homepage: http://www.rfc1149.net/download/recoverjpeg/
 +
 +Package: recoverjpeg
 +Architecture: any
 +Depends: ${shlibs:Depends}
- Suggests: imagemagick, exif
++Suggests: imagemagick, exif, python (>=2.5.4-2)
 +Description: tool to recover JPEG images from a filesystem image
 + Recoverjpeg tries to identify jpeg pictures from a filesystem image.
 + To achieve this goal, it scans the filesystem image and looks for a
 + jpeg structure at blocks starting at 512 bytes boundaries.
diff --cc debian/rules
index ea0620b,0000000..03daabb
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,62 -1,0 +1,62 @@@
 +#!/usr/bin/make -f
 +#export DH_VERBOSE=1
 +
 +CFLAGS = -Wall -g
 +
 +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 +	CFLAGS += -O0
 +else
 +	CFLAGS += -O2
 +endif
 +
 +configure: configure-stamp
 +configure-stamp: patch
 +	dh_testdir
 +	CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 +
 +build: build-stamp
 +build-stamp:  configure-stamp
 +	dh_testdir
 +	$(MAKE)
 +	touch build-stamp
 +
 +clean: unpatch
 +	dh_testdir
 +	dh_testroot
 +	rm -f build-stamp
 +	[ ! -f Makefile ] || $(MAKE) distclean
 +	dh_clean
 +patch: patch-stamp
 +patch-stamp:
 +	dpatch apply-all
 +unpatch:
 +	dpatch deapply-all
 +	rm -rf patch-stamp debian/patched
 +
 +install: build
 +	dh_testdir
 +	dh_testroot
- 	dh_clean -k
++	dh_clean
 +	dh_installdirs
 +	$(MAKE) install DESTDIR=$(CURDIR)/debian/recoverjpeg
 +
 +binary-indep: build install
 +
 +binary-arch: build install
 +	dh_testdir
 +	dh_testroot
 +	dh_installchangelogs
 +	dh_installdocs
 +	dh_installman
 +	dh_link
 +	dh_strip
 +	dh_compress
 +	dh_fixperms
 +	dh_installdeb
 +	dh_shlibdeps
 +	dh_gencontrol
 +	dh_md5sums
 +	dh_builddeb
 +
 +binary: binary-indep binary-arch
 +.PHONY: build clean binary-indep binary-arch binary install

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



More information about the forensics-changes mailing list