# remirepo/fedora spec file for php-khanamiryan-qrcode-detector-decoder # # Copyright (c) 2017-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %bcond_without tests %global gh_commit 45326fb83a2a375065dbb3a134b5b8a5872da569 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner khanamiryan %global gh_project php-qrcode-detector-decoder %global pk_vendor %{gh_owner} %global pk_project qrcode-detector-decoder %global ns_vendor %nil %global ns_project Zxing %global php_home %{_datadir}/php Name: php-%{pk_vendor}-%{pk_project} Version: 1.0.6 Release: 1%{?dist} Summary: QR code decoder / reader Group: Development/Libraries License: MIT and ASL 2.0 URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz BuildArch: noarch %if %{with tests} # For tests BuildRequires: php(language) >= 5.6 BuildRequires: php-reflection BuildRequires: php-date BuildRequires: php-gd BuildRequires: php-iconv BuildRequires: php-mbstring BuildRequires: php-spl # From composer.json, "require-dev": { # "phpunit/phpunit": "^9.0" %global phpunit %{_bindir}/phpunit9 %endif # Required by autoloader BuildRequires: php-fedora-autoloader-devel # From composer.json, "require": { # "php": ">=5.6" Requires: php(language) >= 5.6 # From phpcompatinfo report for version 1 Requires: php-reflection Requires: php-date Requires: php-gd Requires: php-iconv Requires: php-mbstring Requires: php-spl # remirepo:1 %if 0%{?fedora} >= 21 || 0%{?rhel} >= 8 Suggests: php-pecl(imagick) # remirepo:1 %endif # Required by autoloader Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} %description This is a PHP library to detect and decode QR-codes. This is first and only QR code reader that works without extensions. Ported from ZXing library. Autoloader: %{php_home}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} %build %{_bindir}/phpab \ --output lib/autoload.php \ --template fedora \ lib cat << 'EOF' | tee -a lib/autoload.php \Fedora\Autoloader\Dependencies::required([ __DIR__ . '/Common/customFunctions.php', ]); EOF %install : Library mkdir -p %{buildroot}%{php_home} cp -pr lib %{buildroot}%{php_home}/%{ns_project} %check %if %{with tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 1.0.6-1 - update to 1.0.6 (unusable) - open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/124 Compatibility broken with PHP < 8.1 * Tue Oct 5 2021 Remi Collet - 1.0.5.2-1 - update to 1.0.5.2 * Wed Apr 21 2021 Remi Collet - 1.0.5.1-1 - update to 1.0.5.1 - drop license patch merged upstream * Wed Apr 21 2021 Remi Collet - 1.0.5-1 - update to 1.0.5 - drop PHP 8 patch merged upstream * Mon Nov 30 2020 Remi Collet - 1.0.4-1 - update to 1.0.4 - add patch for PHP 8 from https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/103 - switch to phpunit9 * Mon Apr 20 2020 Remi Collet - 1.0.3-1 - update to 1.0.3 * Tue Sep 10 2019 Remi Collet - 1.0.2-3 - add LICENSE files - fix package summary and description * Wed May 2 2018 Remi Collet - 1.0.2-1 - update to 1.0.2 * Tue Apr 17 2018 Remi Collet - 1.0.1-1 - update to 1.0.1 - broken - BC break, see https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/40 - missing file, see https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/38 * Tue Jun 27 2017 Remi Collet - 1-1 - initial package, version 1 - open https://github.com/khanamiryan/php-qrcode-detector-decoder/issues/29 License issue, blocker for Fedora - open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/30 drop unneeded permissions - open https://github.com/khanamiryan/php-qrcode-detector-decoder/pull/31 use modern PHPUnit