[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.5.11-152-g4e51ff6



The following commit has been merged in the master branch:
commit 373c696435669865bcd8b1dd046d7fd1947e2198
Author: Niels Thykier <niels@thykier.net>
Date:   Wed Feb 13 22:32:29 2013 +0100

    coll/src-orig-index: Fix compile error in collection
    
    Since the conversion to the "perl-coll" interface, the script has not
    compiled.
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/collection/src-orig-index b/collection/src-orig-index
index 197affe..bbfa652 100755
--- a/collection/src-orig-index
+++ b/collection/src-orig-index
@@ -49,13 +49,13 @@ if ($info->native) {
     return;
 }
 
-index_orig ($info);
+index_orig ($pkg, $dir, $info);
 
 }
 
 # returns all (orig) tarballs.
 sub gather_tarballs {
-    my ($info) = @_;
+    my ($pkg, $dir, $info) = @_;
     my $file = Cwd::realpath ("$dir/dsc");
     my $version;
     my @tarballs;
@@ -94,8 +94,8 @@ sub gather_tarballs {
 
 # Creates an index of the orig tarballs the source package
 sub index_orig {
-    my ($info) = @_;
-    my @tarballs = gather_tarballs ($info);
+    my ($pkg, $dir, $info) = @_;
+    my @tarballs = gather_tarballs ($pkg, $dir, $info);
     my @result;
     foreach my $tardata (@tarballs) {
         my ($tarball, $compname) = @$tardata;

-- 
Debian package checker


Reply to: