You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
444 B
13 lines
444 B
#!/bin/sh |
|
# Munge Perl requirements: |
|
# - remove dependency on Config::Inifiles |
|
# - only require File::Path >= 1.04, not >= 1.404 |
|
# (since rpmvercmp thinks 04 < 1.404, not unreasonably) |
|
# - filter out requirements for SVN:: modules; otherwise |
|
# subversion requires subversion-perl |
|
/usr/lib/rpm/perl.req $* | |
|
sed -e '/perl(Config::IniFiles)/d' \ |
|
-e '/perl(SVN::/d' \ |
|
-e 's/perl(File::Path) >= 1.0404/perl(File::Path) >= 1.04/' |
|
|
|
|
|
|