aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-03-31 14:37:44 +0000
committerFrancois Pons <fpons@mandriva.com>2000-03-31 14:37:44 +0000
commit3b61f8346068f79c9c22d22a6446eb7401495414 (patch)
tree06a932b672bc3c8ee10670f87367edd1839477cc
parentb30fe7c420f108c4ed94ef64691a45eba0d1f29c (diff)
downloadrpmtools-3b61f8346068f79c9c22d22a6446eb7401495414.tar
rpmtools-3b61f8346068f79c9c22d22a6446eb7401495414.tar.gz
rpmtools-3b61f8346068f79c9c22d22a6446eb7401495414.tar.bz2
rpmtools-3b61f8346068f79c9c22d22a6446eb7401495414.tar.xz
rpmtools-3b61f8346068f79c9c22d22a6446eb7401495414.zip
*** empty log message ***
-rw-r--r--ChangeLog4
-rwxr-xr-xgenfilelist105
-rw-r--r--rpmtools.spec6
3 files changed, 114 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3373df8..d77f951 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-31 François Pons <fpons@mandrakesoft.com>
+
+ * genfilelist: new tool to build a filelist from a RPMS repository.
+
2000-03-26 Pixel <pixel@mandrakesoft.com>
* gendepslist2.cc: add ability to handle files (was only
diff --git a/genfilelist b/genfilelist
new file mode 100755
index 0000000..741b685
--- /dev/null
+++ b/genfilelist
@@ -0,0 +1,105 @@
+#!/usr/bin/perl
+
+#- Generate filelist with obseletes packages.
+#- Copyright (C) 2000 MandrakeSoft (fpons@mandrakesoft.com)
+#-
+#- This program is free software; you can redistribute it and/or modify
+#- it under the terms of the GNU General Public License as published by
+#- the Free Software Foundation; either version 2, or (at your option)
+#- any later version.
+#-
+#- This program is distributed in the hope that it will be useful,
+#- but WITHOUT ANY WARRANTY; without even the implied warranty of
+#- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+#- GNU General Public License for more details.
+#-
+#- You should have received a copy of the GNU General Public License
+#- along with this program; if not, write to the Free Software
+#- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#- usage is:
+#- genfilelist <rpms_dir>
+
+
+use strict qw(subs vars refs);
+
+sub packfilelist {
+ my %countdir = ();
+ my @commonparts;
+
+ #- search for common parts of name.
+ foreach (@_) {
+ my $filename = $_;
+ foreach (0..length($filename)) {
+ ++$countdir{substr($filename, 0, $_)};
+ }
+ }
+
+ #- pass 1: recompute counter.
+ foreach (sort { $countdir{$b} <=> $countdir{$a} || ($countdir{$b} == $countdir{$a} && length($b) <=> length($a)) }
+ keys %countdir) {
+ my $filepart = $_;
+ if (length($filepart) > 4 && $countdir{$filepart} > 1) {
+ foreach (0..length($filepart)-1) {
+ my $subpart = substr($filepart, 0, $_);
+ if (length($subpart) * $countdir{$subpart} < length($filepart) * $countdir{$filepart}) {
+ $countdir{$subpart} -= $countdir{$filepart} if $countdir{$filepart} > 0;
+ } else {
+ $countdir{$filepart} -= $countdir{$subpart} if $countdir{$subpart} > 0;
+ }
+ }
+ } else {
+ delete $countdir{$filepart};
+ }
+ }
+
+ #- pass 2: filter out overstring.
+ foreach (sort { $countdir{$a} <=> $countdir{$b} || ($countdir{$a} == $countdir{$b} && length($a) <=> length($b)) }
+ keys %countdir) {
+ my $filepart = $_;
+ if ($countdir{$filepart} > 1) {
+ foreach (0..length($filepart)-1) {
+ delete $countdir{substr($filepart, 0, $_)};
+ }
+ }
+ }
+
+ #- pass 3: get result.
+ foreach (sort { $countdir{$b} <=> $countdir{$a} || ($countdir{$b} == $countdir{$a} && length($b) <=> length($a)) }
+ keys %countdir) {
+ push @commonparts, $_ if $countdir{$_} > 1 && @commonparts < 10;
+ }
+
+ @commonparts;
+}
+
+#- main program.
+sub main {
+ my ($rpms_dir) = @_;
+
+ local *DIR;
+ opendir DIR, $rpms_dir or die "unable to parse directory: $!";
+ foreach (readdir DIR) {
+ if (/(.*)-[^-]*-[^-]*$/) {
+ print "#$1\n";
+
+ my @filelist = split '\n', `rpm -qpl $rpms_dir/$_`;
+ my @obsoletes = split '\n', `rpm -qp --obsoletes $rpms_dir/$_`;
+ my @commonparts = packfilelist(@filelist);
+
+ foreach (@obsoletes) { print "*$_\n" }
+ foreach (0..$#commonparts) { print "=$commonparts[$_]\n" } #- commonparts are printed in from 0 to n-1.
+ foreach my $filename (@filelist) {
+ map {
+ if (substr($filename, 0, length($commonparts[$_])) eq $commonparts[$_]) {
+ print $_ . substr($filename, length($commonparts[$_])) . "\n"; next;
+ }
+ } (0..$#commonparts);
+ print " $filename\n";
+ }
+ }
+ }
+ closedir DIR;
+}
+
+main(@ARGV);
diff --git a/rpmtools.spec b/rpmtools.spec
index d2253b1..1b422e4 100644
--- a/rpmtools.spec
+++ b/rpmtools.spec
@@ -1,5 +1,5 @@
%define name rpmtools
-%define release 13mdk
+%define release 14mdk
# do not modify here, see Makefile in the CVS
%define version 1.1
@@ -55,8 +55,12 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/hdlist2prereq
/usr/bin/hdlist2groups
/usr/bin/genhdlists
+/usr/bin/genfilelist
%changelog
+* Fri Mar 31 2000 François PONS <fpons@mandrakesoft.com> 1.1-14mdk
+- add genfilelist
+
* Mon Mar 27 2000 Pixel <pixel@mandrakesoft.com> 1.1-13mdk
- add hdlist2groups