Hello community,

here is the log from the commit of package inst-source-utils for 
openSUSE:Factory checked in at 2012-09-23 08:04:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/inst-source-utils (Old)
 and      /work/SRC/openSUSE:Factory/.inst-source-utils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "inst-source-utils", Maintainer is "lr...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/inst-source-utils/inst-source-utils.changes      
2012-02-29 14:07:53.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.inst-source-utils.new/inst-source-utils.changes 
2012-09-23 08:04:45.000000000 +0200
@@ -1,0 +2,5 @@
+Thu Sep 13 16:15:54 CEST 2012 - r...@suse.de
+
+- add recent fixes 
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ inst-source-utils.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inst-source-utils/usr/bin/compress_susetags 
new/inst-source-utils/usr/bin/compress_susetags
--- old/inst-source-utils/usr/bin/compress_susetags     2011-10-16 
21:55:30.000000000 +0200
+++ new/inst-source-utils/usr/bin/compress_susetags     2012-09-13 
16:18:24.000000000 +0200
@@ -26,6 +26,7 @@
 system (`rm -f "$tmpdir/fff" "$tmpdir/fff.gz"`);
 
 for my $packfile (glob("$arg/packages*"),glob("$arg/*.pat")) {
+    next if ( $packfile !~ /^[A-Z0-9\-\._]*$/i );
     next unless ( -f "$packfile" || -l "$packfile" );
     next if ( $packfile =~ /\.gz$/ );
     if ( -l "$packfile" ) {
@@ -33,13 +34,15 @@
        chomp ($l);
        next if ( $packfile =~ /\.gz$/ );
        $l .= ".gz" unless ( $l =~ /\.gz$/ );
-       system (`rm -f $packfile ; ln -sf $l $packfile.gz`);
+       system ("rm", "-f", $packfile );
+        system ("ln", "-s", "-f", $l, $packfile.'.gz');
        next;
     }
-    system (`gzip -f -9 $rsyncable $packfile`);
+    system ("gzip", "-f", "-9", $rsyncable, $packfile);
 }
 
-system("rm -rf $tmpdir");
-system("rm -f $arg/patterns");
-system("cd $arg ; ls *.pat *.pat.gz > patterns 2>/dev/null");
+system("rm", "-r", "-f", $tmpdir);
+system("rm", "-f", "$arg/patterns");
+chdir($arg);
+system("ls *.pat *.pat.gz > patterns 2>/dev/null");
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inst-source-utils/usr/bin/create_package_descr 
new/inst-source-utils/usr/bin/create_package_descr
--- old/inst-source-utils/usr/bin/create_package_descr  2011-10-16 
21:55:30.000000000 +0200
+++ new/inst-source-utils/usr/bin/create_package_descr  2012-09-13 
16:18:24.000000000 +0200
@@ -553,15 +553,15 @@
 print "INFO:    now recoding to UTF-8: ";
 foreach $file ("packages","packages.DU") {
     print "$file ";
-    system ( "recode ISO-8859-1...UTF-8 \"$output_dir/$file\"" );
+    system ( "recode", "ISO-8859-1...UTF-8", "$output_dir/$file" );
 }
 foreach $lang (@LANGUAGES) {
     $file = "packages.$lang_alias{$lang}";
     print "$file ";
     if ( $lang eq "czech" || $lang eq "hungarian" ) {
-           system ( "recode ISO-8859-2...UTF-8 \"$output_dir/$file\"" );
+           system ( "recode", "ISO-8859-2...UTF-8", "$output_dir/$file" );
     } else {
-           system ( "recode ISO-8859-1...UTF-8 \"$output_dir/$file\"" );
+           system ( "recode", "ISO-8859-1...UTF-8", "$output_dir/$file" );
     }
 }
 print "\n";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inst-source-utils/usr/bin/rezip_repo_rsyncable 
new/inst-source-utils/usr/bin/rezip_repo_rsyncable
--- old/inst-source-utils/usr/bin/rezip_repo_rsyncable  2011-10-16 
21:55:30.000000000 +0200
+++ new/inst-source-utils/usr/bin/rezip_repo_rsyncable  2012-09-13 
16:18:24.000000000 +0200
@@ -51,38 +51,38 @@
     $arg = "$pwd/$arg";
 }
 
-system (`touch "$tmpdir/fff"`);
+system ("touch", "$tmpdir/fff");
 system (`gzip --rsyncable "$tmpdir/fff" >/dev/null 2>/dev/null`);
 if ( -f "$tmpdir/fff.gz" ) {
     $rsyncable = "--rsyncable";
 }
-system (`rm -f "$tmpdir/fff" "$tmpdir/fff.gz"`);
+system ("rm", "-f", "$tmpdir/fff", "$tmpdir/fff.gz");
 
 if ( $rsyncable ) {
   my @GZIPPED = glob("$arg/*.gz");
   for (@GZIPPED) {
-    system (`gunzip -f $_`);
+    system ("gunzip", "-f", $_);
     $_ =~ s/.gz$//;
-    system (`gzip -9 $rsyncable $_`);
+    system ("gzip", "-9", $rsyncable, $_);
   }
   my $has_sign = "";
   $has_sign = "1" if ( -f "$arg/repomd.xml.asc" );
-  system (`cp -a "$arg/repomd.xml.key" "$tmpdir"`) if ( -f 
"$arg/repomd.xml.key" );
+  system ("cp", "-a", "$arg/repomd.xml.key", $tmpdir) if ( -f 
"$arg/repomd.xml.key" );
   if ( -f "$arg/repomd.xml" ) {
     unlink "$arg/repomd.xml";
     GenerateRepomdXml($arg);
   }
   if ( $has_sign ) {
     unlink "$arg/repomd.xml.asc";
-    system (`sign -d "$arg/repomd.xml"`);
+    system ("sign", "-d", "$arg/repomd.xml");
   }
   if ( -f "$tmpdir/repomd.xml.key" ) {
-    system (`cp -a "$tmpdir/repomd.xml.key" "$arg"`);
+    system ("cp", "-a", "$tmpdir/repomd.xml.key", $arg);
   }
   if ( -f "$arg/MD5SUMS" ) {
-    system (`create_md5sums $arg`);
+    system ("create_md5sums", $arg);
   }
 }
 
-system("rm -rf $tmpdir");
+system("rm", "-r", "-f", $tmpdir);
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to