diff -Nru pasco-20040505/debian/changelog pasco-20040505/debian/changelog --- pasco-20040505/debian/changelog 2015-07-13 14:32:29.000000000 +0000 +++ pasco-20040505/debian/changelog 2017-01-25 23:04:03.000000000 +0000 @@ -1,3 +1,18 @@ +pasco (20040505-2) unstable; urgency=medium + + * Team upload. + * Bumped DH level to 10. + * debian/control: + - Bumped Standards-Version to 3.9.8. + - Updated the Vcs-Git field to use https instead of git. + * debian/copyright: + - Fixed the BSD license name. + - Updated the packaging copyright years. + * debian/patches/add-GCC-hardening: renamed to 10_add-GCC-hardening.patch. + * debian/watch: bumped to version 4. + + -- Joao Eriberto Mota Filho Wed, 25 Jan 2017 21:04:03 -0200 + pasco (20040505-1) unstable; urgency=medium * Team upload. diff -Nru pasco-20040505/debian/compat pasco-20040505/debian/compat --- pasco-20040505/debian/compat 2015-07-12 21:53:33.000000000 +0000 +++ pasco-20040505/debian/compat 2017-01-25 23:04:03.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru pasco-20040505/debian/control pasco-20040505/debian/control --- pasco-20040505/debian/control 2015-07-13 14:39:02.000000000 +0000 +++ pasco-20040505/debian/control 2017-01-25 23:04:03.000000000 +0000 @@ -3,15 +3,15 @@ Priority: optional Maintainer: Debian Forensics Uploaders: Christophe Monniez -Build-Depends: debhelper (>= 9) -Standards-Version: 3.9.6 +Build-Depends: debhelper (>= 10) +Standards-Version: 3.9.8 Homepage: http://sf.net/projects/odessa -Vcs-Browser: https://anonscm.debian.org/cgit/forensics/pasco.git -Vcs-Git: git://anonscm.debian.org/forensics/pasco.git +Vcs-Browser: https://anonscm.debian.org/git/forensics/pasco.git +Vcs-Git: https://anonscm.debian.org/git/forensics/pasco.git Package: pasco Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} +Depends: ${misc:Depends}, ${shlibs:Depends} Description: Internet Explorer cache forensic analysis tool Pasco is a forensic tool that examines the content of cache files (index.dat) produced by Microsoft Internet Explorer. diff -Nru pasco-20040505/debian/copyright pasco-20040505/debian/copyright --- pasco-20040505/debian/copyright 2015-07-13 13:42:09.000000000 +0000 +++ pasco-20040505/debian/copyright 2017-01-25 23:04:03.000000000 +0000 @@ -4,26 +4,24 @@ Files: * Copyright: 2003 Keith J. Jones -License: BSD-3 +License: BSD-3-Clause Files: debian/* Copyright: 2008 Christophe Monniez 2008-2009 Daniel Baumann - 2015 Joao Eriberto Mota Filho + 2015-2017 Joao Eriberto Mota Filho License: GPL-2+ -License: BSD-3 +License: BSD-3-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - . 3. Neither the name of the project nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff -Nru pasco-20040505/debian/patches/10_add-GCC-hardening.patch pasco-20040505/debian/patches/10_add-GCC-hardening.patch --- pasco-20040505/debian/patches/10_add-GCC-hardening.patch 1970-01-01 00:00:00.000000000 +0000 +++ pasco-20040505/debian/patches/10_add-GCC-hardening.patch 2015-07-12 22:34:07.000000000 +0000 @@ -0,0 +1,16 @@ +Description: add GCC hardening. +Author: Joao Eriberto Mota Filho +Last-Update: 2015-07-12 +Index: pasco-1.0+20040505/src/Makefile +=================================================================== +--- pasco-1.0+20040505.orig/src/Makefile ++++ pasco-1.0+20040505/src/Makefile +@@ -1,7 +1,7 @@ + all: install + + install: pasco.c +- gcc -o pasco pasco.c -lm -lc;cp pasco ../bin ++ gcc $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o pasco pasco.c -lm -lc;cp pasco ../bin + + installwin: pasco.c + gcc -DCYGWIN -o pasco.exe pasco.c -lm -lc;cp pasco.exe ../bin diff -Nru pasco-20040505/debian/patches/add-GCC-hardening pasco-20040505/debian/patches/add-GCC-hardening --- pasco-20040505/debian/patches/add-GCC-hardening 2015-07-12 22:34:07.000000000 +0000 +++ pasco-20040505/debian/patches/add-GCC-hardening 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -Description: add GCC hardening. -Author: Joao Eriberto Mota Filho -Last-Update: 2015-07-12 -Index: pasco-1.0+20040505/src/Makefile -=================================================================== ---- pasco-1.0+20040505.orig/src/Makefile -+++ pasco-1.0+20040505/src/Makefile -@@ -1,7 +1,7 @@ - all: install - - install: pasco.c -- gcc -o pasco pasco.c -lm -lc;cp pasco ../bin -+ gcc $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o pasco pasco.c -lm -lc;cp pasco ../bin - - installwin: pasco.c - gcc -DCYGWIN -o pasco.exe pasco.c -lm -lc;cp pasco.exe ../bin diff -Nru pasco-20040505/debian/patches/series pasco-20040505/debian/patches/series --- pasco-20040505/debian/patches/series 2015-07-12 22:31:45.000000000 +0000 +++ pasco-20040505/debian/patches/series 2017-01-25 23:04:03.000000000 +0000 @@ -1 +1 @@ -add-GCC-hardening +10_add-GCC-hardening.patch diff -Nru pasco-20040505/debian/watch pasco-20040505/debian/watch --- pasco-20040505/debian/watch 2015-07-13 14:35:52.000000000 +0000 +++ pasco-20040505/debian/watch 2017-01-25 23:04:03.000000000 +0000 @@ -1,3 +1,3 @@ -version=3 +version=4 opts=uversionmangle=s/_[0-9]//g \ http://sf.net/odessa/pasco[-_]([\d_]+)\.tar\.(?:bz2|gz|xz)