summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorScott James Remnant <scott@netsplit.com>2005-06-28 14:19:06 +0100
committerScott James Remnant <scott@netsplit.com>2005-06-28 14:19:06 +0100
commitbaa3c192761f69c5413d230c26fd2f56d79f7193 (patch)
tree3dc47cbc4e66a665a8853c6098d149b5cfff0132 /scripts
parent3748a23e47c1af76f291f3c4caa98eefc45ff508 (diff)
downloaddpkg-baa3c192761f69c5413d230c26fd2f56d79f7193.tar.gz
dpkg (1.13.10) unstable; urgency=low
The "Bully's Special Prize" Release. * Removed /usr/sbin/start-stop-daemon. Closes: #313400. * Fixed md5sum diversion removal. Closes: #313415. * Fixed dpkg-source to handle native tarballs with a Debian revision. Closes: #313381, #313433. * Fixed upgrade from pre-sarge dpkg outside of dselect. Closes: #314575. * Changed log times to be local rather than UTC. Closes: #313347. * Changed log writing to be line-buffered. Closes: #314550. * Moved log creation to postinst, and don't fail if base-passwd hasn't been configured yet. Closes: #316084. * Don't try to compile in SELinux support on Hurd. Closes: #313398. * Place code for SELinux support in the right place so it will actually get compiled in and used (Manoj Srivastava). Closes: #314886. * Documentation: - Added missing word to dpkg-architecture manpage. Closes: #313554. - Reference to dpkg manpage in dpkg.cfg corrected. Closes: #314262. * Updated Translations (Christian Perrier): - Basque (Piarres Beobide Egana). Closes: #313474. - Catalan (Jordi Mallach). Closes: #313288. - Czech (Miroslav Kure). Closes: #314431. - Danish (Claus Hindsgaul). - French (Christian Perrier). - German (Jens Seidel). Closes: #314125. - Greek (Greek team). Closes: #314828. - Italian (Lele Gaifax). - Japanese (Kenshi Muto). Closes: #313330. - Russian (Yuri Kozlov). Closes: #313620. * Hebrew translation de-activated on request of the translator until there is better support for RTL languages. Closes: #313282. -- Scott James Remnant <scott@netsplit.com> Tue, 28 Jun 2005 14:19:06 +0100
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dpkg-source.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl
index fe54ea29d..0d10cecb8 100755
--- a/scripts/dpkg-source.pl
+++ b/scripts/dpkg-source.pl
@@ -580,6 +580,10 @@ if ($opmode eq 'build') {
$debianfile = $file;
next;
}
+ if (/^\.tar$/) {
+ unshift @tarfiles, $file;
+ next;
+ }
}
&error("unrecognised file suffix `$_'");
@@ -589,7 +593,8 @@ if ($opmode eq 'build') {
my $native = !($difffile || $debianfile);
if ($native) {
&warn("multiple tarfiles in native package") if @tarfiles > 1;
- &warn("native package with .orig.tar") unless $seen{'.tar'};
+ &warn("native package with .orig.tar")
+ unless $seen{'.tar'} or $seen{"-$revision.tar"};
} else {
&warn("no upstream tarfile in Files field") unless $seen{'.orig.tar'};
if ($dscformat =~ /^1\./) {