summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2010-11-01 08:18:28 +0100
committerGuillem Jover <guillem@debian.org>2010-11-19 05:21:14 +0100
commitc6ea15b9850f26ea3b5a13667396c89e00aa9890 (patch)
tree9da3c56846f1e9f0e75d3ac619713c6467af472a /scripts
parent7ee4f4f2ef5ca3d9fa1426ac93f78ead2280bc36 (diff)
downloaddpkg-c6ea15b9850f26ea3b5a13667396c89e00aa9890.tar.gz
Cleanup white spaces
Remove trailing spaces. Remove blank lines not separating different code blocks. Remove blank lines at the end of the file.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dpkg-distaddfile.pl1
-rwxr-xr-xscripts/dpkg-genchanges.pl1
-rwxr-xr-xscripts/dpkg-gencontrol.pl1
-rwxr-xr-xscripts/dpkg-mergechangelogs.pl1
-rwxr-xr-xscripts/dpkg-name.pl1
-rwxr-xr-xscripts/dpkg-parsechangelog.pl1
-rwxr-xr-xscripts/dpkg-scanpackages.pl1
-rwxr-xr-xscripts/dpkg-shlibdeps.pl1
-rwxr-xr-xscripts/dpkg-source.pl1
-rw-r--r--scripts/po/ChangeLog.old1
-rw-r--r--scripts/t/400_Dpkg_Deps.t1
-rw-r--r--scripts/t/500_Dpkg_Path.t1
-rw-r--r--scripts/t/700_Dpkg_Control.t1
-rw-r--r--scripts/t/850_Dpkg_Compression.t2
-rw-r--r--scripts/t/910_merge_changelogs.t1
15 files changed, 0 insertions, 16 deletions
diff --git a/scripts/dpkg-distaddfile.pl b/scripts/dpkg-distaddfile.pl
index 920b03593..566698eec 100755
--- a/scripts/dpkg-distaddfile.pl
+++ b/scripts/dpkg-distaddfile.pl
@@ -91,4 +91,3 @@ print(Y "$file $section $priority\n")
close(Y) || syserr(_g("close new files list file"));
rename("$fileslistfile.new", $fileslistfile) ||
syserr(_g("install new files list file"));
-
diff --git a/scripts/dpkg-genchanges.pl b/scripts/dpkg-genchanges.pl
index 70898a41a..861a6068a 100755
--- a/scripts/dpkg-genchanges.pl
+++ b/scripts/dpkg-genchanges.pl
@@ -505,4 +505,3 @@ for my $f (keys %remove) {
}
$fields->output(\*STDOUT); # Note: no substitution of variables
-
diff --git a/scripts/dpkg-gencontrol.pl b/scripts/dpkg-gencontrol.pl
index 0b89479a8..224d57bd1 100755
--- a/scripts/dpkg-gencontrol.pl
+++ b/scripts/dpkg-gencontrol.pl
@@ -380,4 +380,3 @@ if (!$stdout) {
}
$substvars->warn_about_unused();
-
diff --git a/scripts/dpkg-mergechangelogs.pl b/scripts/dpkg-mergechangelogs.pl
index 3ef5e96d8..cea758410 100755
--- a/scripts/dpkg-mergechangelogs.pl
+++ b/scripts/dpkg-mergechangelogs.pl
@@ -288,4 +288,3 @@ sub get_conflict_block($$) {
@b = @{$b} if ref($b) eq "ARRAY";
return ("<<<<<<", @a, "======", @b, ">>>>>>");
}
-
diff --git a/scripts/dpkg-name.pl b/scripts/dpkg-name.pl
index 6745ac182..ee7baefcf 100755
--- a/scripts/dpkg-name.pl
+++ b/scripts/dpkg-name.pl
@@ -249,4 +249,3 @@ while (@ARGV) {
}
0;
-
diff --git a/scripts/dpkg-parsechangelog.pl b/scripts/dpkg-parsechangelog.pl
index 2bf965ea6..34bf3fb11 100755
--- a/scripts/dpkg-parsechangelog.pl
+++ b/scripts/dpkg-parsechangelog.pl
@@ -122,4 +122,3 @@ foreach my $f (@fields) {
print "\n" if $count++;
print $f->output();
}
-
diff --git a/scripts/dpkg-scanpackages.pl b/scripts/dpkg-scanpackages.pl
index 8eab042de..df900a034 100755
--- a/scripts/dpkg-scanpackages.pl
+++ b/scripts/dpkg-scanpackages.pl
@@ -276,4 +276,3 @@ if (@spuriousover) {
}
info(_g("Wrote %s entries to output Packages file."), $records_written);
-
diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl
index b82ec2077..91ea4e57a 100755
--- a/scripts/dpkg-shlibdeps.pl
+++ b/scripts/dpkg-shlibdeps.pl
@@ -842,4 +842,3 @@ sub find_packages {
close(DPKG);
return $pkgmatch;
}
-
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl
index cca5430a2..5d4c1de6e 100755
--- a/scripts/dpkg-source.pl
+++ b/scripts/dpkg-source.pl
@@ -475,4 +475,3 @@ See dpkg-source(1) for more info.") . "\n",
join(" ", compression_get_list()),
compression_get_default_level();
}
-
diff --git a/scripts/po/ChangeLog.old b/scripts/po/ChangeLog.old
index 3b49b1539..9c02bd20f 100644
--- a/scripts/po/ChangeLog.old
+++ b/scripts/po/ChangeLog.old
@@ -446,4 +446,3 @@
* Makevars: Likewise.
* remove-potcdate.sin: Likewise.
* dpkg-dev.pot: Likewise.
-
diff --git a/scripts/t/400_Dpkg_Deps.t b/scripts/t/400_Dpkg_Deps.t
index 25c98791b..08a44b994 100644
--- a/scripts/t/400_Dpkg_Deps.t
+++ b/scripts/t/400_Dpkg_Deps.t
@@ -81,4 +81,3 @@ $SIG{'__WARN__'} = sub {};
my $dep_bad_multiline = deps_parse("a, foo\nbar, c");
ok(!defined($dep_bad_multiline), "invalid dependency split over multiple line");
delete $SIG{'__WARN__'};
-
diff --git a/scripts/t/500_Dpkg_Path.t b/scripts/t/500_Dpkg_Path.t
index cda17f761..70c1a749e 100644
--- a/scripts/t/500_Dpkg_Path.t
+++ b/scripts/t/500_Dpkg_Path.t
@@ -58,4 +58,3 @@ chdir($tmpdir);
ok(!defined(get_pkg_root_dir("debian/a/b/c")), "get_pkg_root_dir undef");
ok(!defined(relative_to_pkg_root("debian/a/b/c")), "relative_to_pkg_root");
is(guess_pkg_root_dir("debian/a/b/c"), "debian/a", "guess_pkg_root_dir fallback");
-
diff --git a/scripts/t/700_Dpkg_Control.t b/scripts/t/700_Dpkg_Control.t
index 03e903c68..09dcffc5f 100644
--- a/scripts/t/700_Dpkg_Control.t
+++ b/scripts/t/700_Dpkg_Control.t
@@ -82,4 +82,3 @@ is(${$io->string_ref()},
'Package: mypackage2
Depends: hello
', "Dump of second binary package of $datadir/control-1");
-
diff --git a/scripts/t/850_Dpkg_Compression.t b/scripts/t/850_Dpkg_Compression.t
index 800a363e7..b7929057b 100644
--- a/scripts/t/850_Dpkg_Compression.t
+++ b/scripts/t/850_Dpkg_Compression.t
@@ -95,5 +95,3 @@ test_read("$tmpdir/myfile");
# Test read on compressed file
test_read("$tmpdir/myfile.gz");
-
-
diff --git a/scripts/t/910_merge_changelogs.t b/scripts/t/910_merge_changelogs.t
index 0ca01af96..a3c0509b2 100644
--- a/scripts/t/910_merge_changelogs.t
+++ b/scripts/t/910_merge_changelogs.t
@@ -55,4 +55,3 @@ if ($has_alg_merge) {
test_merge("$datadir/ch-merged-basic", @input);
test_merge("$datadir/ch-merged-pr-basic", "-m", @input);
}
-