diff options
author | Remi Collet <remi@remirepo.net> | 2021-06-18 09:41:39 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-06-18 09:41:39 +0200 |
commit | 7afeb751f65437fae614821b8c661f77ec44a072 (patch) | |
tree | 0946e33e30f558b06b32ba338950b698143812f4 | |
parent | 1b23d3200a706a8038ff9c24f91651a9440a07e2 (diff) |
remove Archive_Tar autoloader usage
-rw-r--r-- | php-laminas-filter.spec | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/php-laminas-filter.spec b/php-laminas-filter.spec index e1a2e44..676ee3d 100644 --- a/php-laminas-filter.spec +++ b/php-laminas-filter.spec @@ -19,7 +19,7 @@ Name: php-%{gh_project} Version: 2.11.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{namespace} Framework %{library} component License: BSD @@ -68,7 +68,7 @@ BuildRequires: php-laminas-uri BuildRequires: php-phpspec-prophecy-phpunit BuildRequires: php-psr-http-factory %endif -BuildRequires: php-autoloader(pear/archive_tar) >= 1.4.3 +BuildRequires: php-composer(pear/archive_tar) >= 1.4.3 %global phpunit %{_bindir}/phpunit9 BuildRequires: phpunit9 >= 9.3 %endif @@ -156,7 +156,7 @@ cat << 'EOF' | tee -a src/autoload.php '%{php_home}/%{namespace}/I18n/autoload.php', '%{php_home}/%{namespace}/ServiceManager/autoload.php', '%{php_home}/%{namespace}/Uri/autoload.php', - '%{_datadir}/pear/Archive/Tar/autoload.php', + '%{_datadir}/pear/Archive/Tar.php', ]); EOF @@ -226,6 +226,9 @@ exit $ret %changelog +* Fri Jun 18 2021 Remi Collet <remi@remirepo.net> - 2.11.1-2 +- remove Archive_Tar autoloader usage + * Tue May 25 2021 Remi Collet <remi@remirepo.net> - 2.11.1-1 - update to 2.11.1 |