diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | perlapi.attr | 3 | ||||
-rwxr-xr-x | perlapi.req | 15 |
4 files changed, 2 insertions, 20 deletions
diff --git a/Makefile.am b/Makefile.am index d7d565e..84d5d49 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,7 +34,6 @@ pkg_scripts = \ http.req \ multiarch.req \ perlapi.prov \ - perlapi.req \ perl_base.req \ perl.prov \ perl.req \ @@ -53,7 +52,6 @@ pkg_attr_defs = \ devel.attr \ multiarch.attr \ perlapi_base.attr \ - perlapi.attr \ perl_base.attr \ perl_from_meta.attr \ php.attr \ @@ -1,3 +1,5 @@ +- stop emitting perlapi-<version> requires + Version 2.8 - 21 June 2015, by Thierry Vignaud - change file digests hashing algorithm to SHA-256 diff --git a/perlapi.attr b/perlapi.attr deleted file mode 100644 index 34fe519..0000000 --- a/perlapi.attr +++ /dev/null @@ -1,3 +0,0 @@ -# --- If libperl.so exists and if XS modules are found, depend on perlapi-<version> and libperl.so -%__perlapi_requires %{_rpmconfigdir}/mageia/perlapi.req -%__perlapi_magic Perl script|Perl5 module source diff --git a/perlapi.req b/perlapi.req deleted file mode 100755 index 507f74b..0000000 --- a/perlapi.req +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# --- If libperl.so exists and if XS modules are found, depend on perlapi-<version> and libperl.so -while read instfile ; do - if perl -V:useshrplib | grep -q true ; then - if echo $instfile | grep -q `perl -MConfig -e 'print $Config{archname}'` ; then - version=`perl -MConfig -e 'print $Config{version}'` - echo perlapi-$version - - f=`perl -MConfig -e 'print $Config{archlib}'`/CORE/libperl.so - lib64=`if file -L $f 2>/dev/null | \ - grep "ELF 64-bit" >/dev/null; then echo "()(64bit)"; fi` - echo libperl.so$lib64 - fi - fi -done |