b76e4d08d6
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/subversion#3d5f8d900a066a77c81766ea91fcb3fd49ed0d4e
14 lines
444 B
Bash
Executable File
14 lines
444 B
Bash
Executable File
#!/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/'
|
|
|
|
|