--- reglookup-0.12.0.orig/src/Makefile +++ reglookup-0.12.0/src/Makefile @@ -10,10 +10,10 @@ all: $(FILES) $(REGLOOKUP): reglookup.o $(OBJ) - $(CC) $(CFLAGS) $(OPTS) $(LIB) -o $@ reglookup.o $(OBJ) $(EXTRA_OBJ) + $(CC) $(CFLAGS) $(OPTS) -o $@ reglookup.o $(OBJ) $(EXTRA_OBJ) $(LIB) $(REGLOOKUP_RECOVER): reglookup-recover.o $(OBJ) - $(CC) $(CFLAGS) $(OPTS) $(LIB) -o $@ reglookup-recover.o $(OBJ) $(EXTRA_OBJ) + $(CC) $(CFLAGS) $(OPTS) -o $@ reglookup-recover.o $(OBJ) $(EXTRA_OBJ) $(LIB) reglookup.o: reglookup.c $(CC) $(CFLAGS) $(OPTS) $(INC) -c -o $@ reglookup.c --- reglookup-0.12.0.orig/debian/compat +++ reglookup-0.12.0/debian/compat @@ -0,0 +1 @@ +7 --- reglookup-0.12.0.orig/debian/rules +++ reglookup-0.12.0/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_build: + dh_auto_build -- OPTS="-std=gnu89 -pedantic -Wall -ggdb" INC="-I../include" LIB="-L/usr/lib -lm" + +override_dh_auto_install: + dh_auto_install -- PREFIX=$(CURDIR)/debian/reglookup/usr MAN_PREFIX=\$${PREFIX}/share/man + + rm -rf debian/reglookup/usr/share/man + mv debian/reglookup/usr/share/doc/reglookup/man debian/reglookup/usr/share/man --- reglookup-0.12.0.orig/debian/source.lintian-overrides +++ reglookup-0.12.0/debian/source.lintian-overrides @@ -0,0 +1,3 @@ +# Avoid warnings if non-uploaders to uploads. +reglookup source: changelog-should-mention-nmu +reglookup source: source-nmu-has-incorrect-version-number --- reglookup-0.12.0.orig/debian/control +++ reglookup-0.12.0/debian/control @@ -0,0 +1,21 @@ +Source: reglookup +Section: utils +Priority: optional +Maintainer: Debian Forensics +Uploaders: Christophe Monniez +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.4 +Homepage: http://projects.sentinelchicken.org/reglookup/ +Vcs-Browser: http://git.debian.net/?p=debian-forensics/reglookup.git +Vcs-Git: git://git.debian.net/git/debian-forensics/reglookup.git + +Package: reglookup +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: utility to read and query Windows NT/2000/XP registry + RegLookup is an small command line utility for reading and querying Microsoft + Windows NT/2000/XP registries. + . + Currently the program allows one to read an entire registry and output it in a + (mostly) standardized, quoted format. It also provides features for filtering + of results based on registry path and data type. --- reglookup-0.12.0.orig/debian/copyright +++ reglookup-0.12.0/debian/copyright @@ -0,0 +1,131 @@ +Author: Timothy D. Morgan +Download: http://projects.sentinelchicken.org/reglookup/ + +Files: * +Copyright: (C) 2005-2010 Timothy D. Morgan +License: GPL-3 + 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; version 3 + of the License. + . + 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-3 file. + +Files: src/reglookup.c +Copyright: + (C) 2005-2010 Timothy D. Morgan + (C) 2010 Tobias Mueller (portions of '-i' code) + (C) 2002 Richard Sharpe +License: GPL-3 + 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; version 3 + of the License. + . + 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-3 file. + +Files: lib/regfi.* +Copyright: + (C) 2005-2007 Timothy D. Morgan + (C) 2005 Gerald (Jerry) Carter +License: GPL-3 + 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; version 3 + of the License. + . + 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-3 file. + +Files: lib/void_stack.* +Copyright: (C) 2005-2007, 2009-2010 Timothy D. Morgan +License: GPL-3 + 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; version 3 + of the License. + . + 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-3 file. + +Files: include/byteorder.h +Copyright: + (C) 2005 Timothy D. Morgan + (C) 1992-1998 Andrew Tridgell +License: GPL-3 + 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; version 3 + of the License. + . + 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-3 file. + +Files: debian/* +Copyright: + (C) 2008 David Paleino + (C) 2008-2009 Daniel Baumann +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; version 2 + of the License. + . + 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. --- reglookup-0.12.0.orig/debian/changelog +++ reglookup-0.12.0/debian/changelog @@ -0,0 +1,101 @@ +reglookup (0.12.0-1ubuntu2) oneiric; urgency=low + + * Don't pass a library in OPT in debian/rules. LP: #771023. + + -- Matthias Klose Wed, 14 Sep 2011 12:54:49 +0200 + +reglookup (0.12.0-1ubuntu1) oneiric; urgency=low + + * Fix FTBFS with ld --as-needed. LP: #771023. + + -- Matthias Klose Tue, 13 Sep 2011 23:19:29 +0200 + +reglookup (0.12.0-1) unstable; urgency=low + + [ Daniel Baumann ] + * Minimizing rules file. + + [ Christophe Monniez ] + * Merging upstream version 0.12.0. + * Fixing license problem, bumping to GPL-3 (Closes: #574638). + + [ Michael Prokop ] + * Bump Standards-Version to 3.8.4 (no further changes). + + -- Michael Prokop Tue, 30 Mar 2010 12:43:10 +0200 + +reglookup (0.11.0-2) unstable; urgency=low + + [ Daniel Baumann ] + * Using $CURDIR instead of $PWD in rules file. + + [ Christophe Monniez ] + * Fixing the rule that prevented the package to build. + + -- Daniel Baumann Wed, 15 Jul 2009 01:09:03 +0200 + +reglookup (0.11.0-1) unstable; urgency=low + + [ Christophe Monniez ] + * Merging upstream version 0.11.0 (Closes: #531784): + - Workarounds docbook2x bugs (Closes: #524983). + * Refactoring build rule to better fit the upstream Makefile. + + [ Daniel Baumann ] + * Updating package to standards version 3.8.2. + * Adding lintian overrides. + + -- Daniel Baumann Thu, 09 Jul 2009 12:24:36 +0200 + +reglookup (0.9.0-2) unstable; urgency=low + + * Updating year in copyright file. + * Updating to standards 3.8.1. + * Tidy rules file. + + -- Daniel Baumann Thu, 28 May 2009 22:16:36 +0200 + +reglookup (0.9.0-1) unstable; urgency=low + + [ Christophe Monniez ] + * Merging upstream version 0.9.0. + * Fixing the math library issue in rules. + + [ Daniel Baumann ] + * Updating vcs fields. + * Adding myself to copyright file. + * Replacing obsolete dh_clean -k with dh_prep. + + -- Daniel Baumann Tue, 23 Dec 2008 09:59:00 +0100 + +reglookup (0.4.0-1) unstable; urgency=low + + [ David Paleino ] + * Initial release (Closes: #403244). + * Changing copyright on packaging. + * Fixed copyright information. + + [ Christophe Monniez ] + * New maintainer. + + [ Daniel Baumann ] + * Cleaning up rules file. + * Adding full license headers to copyright file. + * Sorting vcs fields in control file. + * Upgrading package to debhelper 7. + * Updating to standards 3.8.0. + * Moving -Wall to CFLAGS for consistency. + * Not using copyright symbols. + * Fixing my incomplete commit from transforming the quilt patch to rules. + * Reordering rules. + * Removing unneded debhelper calls from rules. + * Overwriting variables in make call of rules rather than patching upstream + makefile. + * Rewriting copyright in machine readable form. + * Don't use abbrebriations for Windows version in package description. + * Don't use (R) symbols in package description. + * Correcting url to gitweb in control. + * Setting maintainer address to Debian Forensics. + * Bumping package to debhelper 6. + + -- Daniel Baumann Mon, 16 Jun 2008 12:20:00 +0200 --- reglookup-0.12.0.orig/debian/watch +++ reglookup-0.12.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://projects.sentinelchicken.org/data/downloads/reglookup-([[:digit:]].*)\.tar\.gz