+Thu Feb 1 18:22:05 EST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+ * scripts/dpkg-source.pl: fix error in error message
+ * utils/Makefile.in: set top_builddir
+ * Makefile.in: spell version-nr correctly
+
+Sun Jan 28 22:38:02 EST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+ * scripts/dpkg-source.pl: modify how we handle the dscformat: we now
+ assume all major versions are upwards and backwards compatibly. This
+ allows us to add new fields without breaking older versions of
+ dpkg-source
+
Sun Jan 21 20:09:36 SGT 2001 Wichert Akkerman <wakkerma@debian.org>
* scripts/dpkg-divert.pl: only allow absolute filenames
srcdir = @srcdir@
top_srcdir = @top_srcdir@
-VERSION = $(shell cat verion-nr)
+VERSION = $(shell cat version-nr)
GENFILES = version.h
optlib, for non-GNU systems.
* dpkg-divert only allows absolute filenames now. Closes: Bug#82419
* Handle diffs from non-existing files to existing files. Closes: Bug#82708
+ * Small fixes to the buildsystem. Closes: Bug#84361
-- Wichert Akkerman <wakkerma@debian.org> UNRELEASED
if (defined $fi{'S Format'}) {
$dscformat=$fi{'S Format'};
- $dscformat != "1.0" &&
+ if (not $dscformat =~ /^1\./) {
&error("Unsupported format of .dsc file ($dscformat)");
+ }
}
$sourcepackage =~ m/[^.0-9]/ &&
&error("dsc format contains illegal character \`$&'");
defined($c2= fork) || &syserr("fork for tar -xkf -");
if (!$c2) {
chdir("$dirchdir") || &syserr("cannot chdir to \`$dirchdir' for tar extract");
- open(STDIN,"<&GZIP") || &syserr("reopen gzip for cpio -i");
+ open(STDIN,"<&GZIP") || &syserr("reopen gzip for tar -xkf -");
&cpiostderr;
exec('tar','-xkf','-'); &syserr("exec tar -xkf -");
}
sub cpiostderr {
open(STDERR,"| egrep -v '^[0-9]+ blocks\$' >&2") ||
- &syserr("reopen stderr for cpio to grep out blocks message");
+ &syserr("reopen stderr for tar to grep out blocks message");
}
sub setfile {
VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
+top_builddir = ..
include ../Makefile.conf