]> git.pld-linux.org Git - packages/rpm.git/blobdiff - rpm-php-provides
- restored missing hunk
[packages/rpm.git] / rpm-php-provides
index a094cba8805a5a7b0ccafc482f7d14c63f2110e2..ebbab977b4b2545425080cfff9a9403cc6d04e94 100644 (file)
@@ -1,20 +1,17 @@
 #!/usr/bin/perl
 #####################################################################
 #                                                                   #
-# Check system dependences between php-pear modules                 #
+# Small script to generate provides for php-pear/php-pecl           #
 #                                                                   #
-# Pawe³ Go³aszewski <blues@ds.pg.gda.pl>                            #
+# Adam Go³êbiowski <adamg@pld-linux.org>                            #
+#                                                                   #
+# Somehow based on previous work by:                                #
+# Pawe³ Go³aszewski <blues@pld-linux.org>                           #
 # Micha³ Moskal <malekith@pld-linux.org>                            #
-# ------------------------------------------------------------------#
-# TODO:                                                             #
 #####################################################################
 
-$pear = "/usr/share/pear";
+# Contest: shrink this one to oneliner 
+# Bonus  : and fit in 80 columns ;)
 
-foreach (@ARGV ? @ARGV : <>) {
-       chomp;
-       $f = $_;
-       next unless ($f =~ /$pear.*\.php$/);
-       $f =~ s/.*$pear\///;
-       print "pear($f)\n";
-}
+/package.xml/ and open(F, $_) foreach (@ARGV ? @ARGV : <> );
+/^\s+\<name\>([a-zA-Z0-9\_]+)\<\/name\>$/ and print "php-pear-$1" while (<F>);
This page took 0.182704 seconds and 4 git commands to generate.