aboutsummaryrefslogtreecommitdiffstats
path: root/compress_files
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2008-05-08 16:36:37 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2008-05-08 16:36:37 +0000
commit3e4ce5e61cd8636c9a0197d6d19148a3a13de416 (patch)
tree206eae0a0fa863a2e9be8a8c96721a7f38090748 /compress_files
parentbcf50c9868ecc4dd1c237bb846de36dc12c330ef (diff)
downloadspec-helper-3e4ce5e61cd8636c9a0197d6d19148a3a13de416.tar
spec-helper-3e4ce5e61cd8636c9a0197d6d19148a3a13de416.tar.gz
spec-helper-3e4ce5e61cd8636c9a0197d6d19148a3a13de416.tar.bz2
spec-helper-3e4ce5e61cd8636c9a0197d6d19148a3a13de416.tar.xz
spec-helper-3e4ce5e61cd8636c9a0197d6d19148a3a13de416.zip
anonymous callbacks only
Diffstat (limited to 'compress_files')
-rwxr-xr-xcompress_files66
1 files changed, 33 insertions, 33 deletions
diff --git a/compress_files b/compress_files
index 79e0c1b..9dcbddc 100755
--- a/compress_files
+++ b/compress_files
@@ -39,8 +39,37 @@ my @mandirs = qw{
# Now the .so conversion.
my (@sofiles, @sodests);
+my $so_function = sub {
+ # skip symlinks
+ return if -l $_;
+ # skip directories
+ return if -d $_;
+ # The -s test is becuase a .so file tends to be small. We don't want
+ # to open every man page. 1024 is arbitrary.
+ return if -s $_ > 1024;
+ # skip excluded files
+ return if $File::Find::name =~ $exclude_pattern;
+
+ # Test first line of file for the .so thing.
+ my $SOTEST;
+ open($SOTEST, $_);
+ my $l = <$SOTEST>;
+ close $SOTEST;
+ if ($l =~ m/\.so\s+(.*)/) {
+ my $solink=$1;
+ # This test is here to prevent links like ... man8/../man8/foo.8
+ if (basename($File::Find::dir) eq dirname($solink)) {
+ $solink = basename($solink);
+ } else {
+ $solink = "../$solink";
+ }
+
+ push @sofiles, $File::Find::name;
+ push @sodests, $solink;
+ }
+};
foreach my $dir (@sodirs) {
- find(\&find_so_man, $dir) if -e $dir;
+ find($so_function, $dir) if -e $dir;
}
foreach my $sofile (@sofiles) {
my $sodest = shift(@sodests);
@@ -48,6 +77,7 @@ foreach my $sofile (@sofiles) {
symlink $sodest, $sofile;
}
+# find non-compressed info/man pages
my @files;
my $function = sub {
# skip symlinks
@@ -67,6 +97,7 @@ foreach my $dir (@mandirs) {
find($function, $dir) if -e $dir;
}
+# uncompress info/man pages using another format
uncompress_files('.gz', 'gzip') if $ext ne '.gz';
uncompress_files('.bz2', 'bzip2') if $ext ne '.bz2';
uncompress_files('.lzma', 'lzmash') if $ext ne '.lzma';
@@ -165,38 +196,7 @@ sub xargs {
system(@_,@collect) if $#collect > -1;
}
-# Check if a file is a .so man page, for use by File::Find.
-sub find_so_man() {
- # skip symlinks
- return if -l $_;
- # skip directories
- return if -d $_;
- # The -s test is becuase a .so file tends to be small. We don't want
- # to open every man page. 1024 is arbitrary.
- return if -s $_ > 1024;
- # skip excluded files
- return if $File::Find::name =~ $exclude_pattern;
-
- # Test first line of file for the .so thing.
- my $SOTEST;
- open($SOTEST, $_);
- my $l = <$SOTEST>;
- close $SOTEST;
- if ($l =~ m/\.so\s+(.*)/) {
- my $solink=$1;
- # This test is here to prevent links like ... man8/../man8/foo.8
- if (basename($File::Find::dir) eq dirname($solink)) {
- $solink = basename($solink);
- } else {
- $solink = "../$solink";
- }
-
- push @sofiles, $File::Find::name;
- push @sodests, $solink;
- }
-}
-
-
+# uncompress info/man pages with a given extension
sub uncompress_files {
my ($extension, $command) = @_;