From 0a9233865866c0a0e6b655d5f6a041aa8ce5c6ed Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 21 Dec 2020 10:52:23 +0100 Subject: update to 1.17.1 switch to classmap autoloader --- composer.json | 19 ++++++++------- php-tecnickcom-tc-lib-barcode.spec | 50 ++++++++++++++++++++++++-------------- 2 files changed, 42 insertions(+), 27 deletions(-) diff --git a/composer.json b/composer.json index 2775069..ab527b5 100644 --- a/composer.json +++ b/composer.json @@ -54,17 +54,15 @@ "ext-date": "*", "ext-gd": "*", "ext-pcre": "*", - "tecnickcom/tc-lib-color": "^1.12.15" + "tecnickcom/tc-lib-color": "^1.14" }, "require-dev": { - "apigen/apigen": "^2.8.1 || ^4.1.2", - "bartlett/php-compatinfo": "^4.5.2 || ^5.0.10 || ^5.0.12", - "pdepend/pdepend": "^2.5.2", - "phploc/phploc": "^2.1 || ^3.0 || ^4.0", - "phpmd/phpmd": "^2.6.0", - "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.1", - "sebastian/phpcpd": "^2.0 || ^3.0 || ^4.0", - "squizlabs/php_codesniffer": "^2.8.0 || ^3.2.0" + "pdepend/pdepend": "2.8.0", + "phploc/phploc": "7.0.2 || 6.0.2 || 5.0.0 || 4.0.1 || 3.0.1 || 2.1.5", + "phpmd/phpmd": "2.9.1", + "phpunit/phpunit": "9.5.0 || 8.5.13 || 7.5.20 || 6.5.14 || 5.7.27 || 4.8.36", + "sebastian/phpcpd": "6.0.3 || 5.0.2 || 4.1.0 || 3.0.1 || 2.0.4", + "squizlabs/php_codesniffer": "3.5.8 || 2.9.2" }, "autoload": { "psr-4": { @@ -75,5 +73,8 @@ "psr-4": { "Test\\": "test" } + }, + "autoload-dev": { + "psr-4": { "Test\\": "test" } } } diff --git a/php-tecnickcom-tc-lib-barcode.spec b/php-tecnickcom-tc-lib-barcode.spec index 726babc..362498f 100644 --- a/php-tecnickcom-tc-lib-barcode.spec +++ b/php-tecnickcom-tc-lib-barcode.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit ce05b56aba72be67df862e397189d29b151801ce +%global gh_commit cd555b642ce04de1b0ffbe6aff322df914e74ef0 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global c_vendor tecnickcom %global gh_owner tecnickcom @@ -15,7 +15,7 @@ %bcond_without tests Name: php-%{gh_owner}-%{gh_project} -Version: 1.16.1 +Version: 1.17.1 Release: 1%{?dist} Summary: PHP library to generate linear and bidimensional barcodes @@ -26,14 +26,19 @@ Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit BuildArch: noarch %if %{with tests} # For tests -%global phpunit %{_bindir}/phpunit7 -BuildRequires: %{phpunit} +%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 +%global phpunit %{_bindir}/phpunit9 +BuildRequires: phpunit9 >= 9.5.0 +%else +%global phpunit %{_bindir}/phpunit8 +BuildRequires: phpunit8 >= 8.5.13 +%endif BuildRequires: php(language) >= 5.4 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -BuildRequires: (php-composer(%{c_vendor}/tc-lib-color) >= 1.12.13 with php-composer(%{c_vendor}/tc-lib-color) < 2) +BuildRequires: (php-composer(%{c_vendor}/tc-lib-color) >= 1.14 with php-composer(%{c_vendor}/tc-lib-color) < 2) %else -BuildRequires: php-composer(%{c_vendor}/tc-lib-color) < 2 -BuildRequires: php-composer(%{c_vendor}/tc-lib-color) >= 1.12.13 +BuildRequires: php-%{c_vendor}-tc-lib-color < 2 +BuildRequires: php-%{c_vendor}-tc-lib-color >= 1.14 %endif BuildRequires: php-bcmath BuildRequires: php-ctype @@ -43,6 +48,7 @@ BuildRequires: php-pcre # Optional but required for test BuildRequires: php-pecl-imagick %endif +BuildRequires: php-fedora-autoloader-devel # From composer.json, "require": { # "php": ">=5.4" @@ -58,13 +64,14 @@ Requires: php-date Requires: php-gd Requires: php-pcre %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -Requires: (php-composer(%{c_vendor}/tc-lib-color) >= 1.12.13 with php-composer(%{c_vendor}/tc-lib-color) < 2) +Requires: (php-composer(%{c_vendor}/tc-lib-color) >= 1.14 with php-composer(%{c_vendor}/tc-lib-color) < 2) %else -Requires: php-composer(%{c_vendor}/tc-lib-color) < 2 -Requires: php-composer(%{c_vendor}/tc-lib-color) >= 1.12.13 +Requires: php-%{c_vendor}-tc-lib-color < 2 +Requires: php-%{c_vendor}-tc-lib-color >= 1.14 %endif # From phpcompatinfo report for version 1.15.5 # none +Requires: php-composer(fedora/autoloader) # Composer Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version} @@ -98,31 +105,34 @@ sed -e 's:^require:////require:' \ %build -# Empty build section, most likely nothing required. +phpab --template fedora --output src/autoload.php src +cat << 'EOF' | tee -a src/autoload.php +\Fedora\Autoloader\Dependencies::required([ + '%{_datadir}/php/Com/Tecnick/Color/autoload.php', +]); + +EOF %install mkdir -p $(dirname %{buildroot}%{php_project}) cp -pr src %{buildroot}%{php_project} -cp -p resources/autoload.php \ - %{buildroot}%{php_project}/autoload.php %check %if %{with tests} mkdir vendor -cat < - 1.17.1-1 +- update to 1.17.1 +- switch to classmap autoloader + * Tue Jul 14 2020 Remi Collet - 1.16.1-1 - update to 1.16.1 -- cgit