# remirepo spec file for php-ocramius-proxy-manager from Fedora: # # Fedora spec file for php-ocramius-proxy-manager # # Copyright (c) 2015-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner Ocramius %global github_name ProxyManager %global github_version 2.2.3 %global github_commit 4d154742e31c35137d5374c998e8f86b54db2e2f %global github_short %(c=%{github_commit}; echo ${c:0:7}) %global composer_vendor ocramius %global composer_project proxy-manager # "php": "^7.2.0" %global php_min_ver 7.2 # "zendframework/zend-code": "^3.3.0" %global zf_min_ver 3.3 %global zf_max_ver 4 # Build using "--without tests" to disable tests %bcond_without tests %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} Release: 3%{?github_release}%{?dist} Summary: OOP proxy wrappers utilities License: MIT URL: http://ocramius.github.io/ProxyManager/ Source0: %{name}-%{github_version}-%{github_short}.tgz # git snapshot to retrieve test suite Source1: makesrc.sh # Hardcode library version # drop dependency on ocramius/package-versions Patch0: %{name}-rpm.patch BuildArch: noarch # Autoloader BuildRequires: php-fedora-autoloader-devel %if %{with tests} # Tests ## composer.json BuildRequires: php(language) >= %{php_min_ver} # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires: (php-autoloader(zendframework/zend-code) >= %{zf_min_ver} with php-autoloader(zendframework/zend-code) < %{zf_max_ver}) # remirepo:4 %else BuildRequires: php-autoloader(zendframework/zend-code) >= %{zf_min_ver} BuildRequires: php-autoloader(zendframework/zend-code) < %{zf_max_ver} %endif BuildRequires: php-composer(ocramius/generated-hydrator) >= 2 ## phpcompatinfo (computed from version 2.2.0) BuildRequires: php-pcre BuildRequires: php-reflection BuildRequires: php-spl BuildRequires: phpunit7 %endif # composer.json Requires: php(language) >= %{php_min_ver} # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-autoloader(zendframework/zend-code) >= %{zf_min_ver} with php-autoloader(zendframework/zend-code) < %{zf_max_ver}) # remirepo:4 %else Requires: php-autoloader(zendframework/zend-code) >= %{zf_min_ver} Requires: php-autoloader(zendframework/zend-code) < %{zf_max_ver} %endif # phpcompatinfo (computed from version 2.2.0) Requires: php-pcre Requires: php-reflection Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Weak dependencies %if 0%{?fedora} >= 21 Suggests: php-composer(ocramius/generated-hydrator) Suggests: php-autoloader(zendframework/zend-json) Suggests: php-autoloader(zendframework/zend-soap) Suggests: php-autoloader(zendframework/zend-stdlib) Suggests: php-autoloader(zendframework/zend-xmlrpc) %endif # For autoloader Conflicts: php-ocramius-generated-hydrator < 2 # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description This library aims at providing abstraction for generating various kinds of proxy classes. Autoloader: %{phpdir}/ProxyManager/autoload.php %prep %setup -qn %{github_name}-%{github_commit} %patch0 -p0 sed -e 's/@VERSION@/%{version}/' \ -e 's/@COMMIT@/%{github_commit}/' \ -i src/ProxyManager/Version.php grep ' return' src/ProxyManager/Version.php %build : Generate autoloader %{_bindir}/phpab --template fedora --output src/ProxyManager/autoload.php src/ProxyManager cat <<'AUTOLOAD' | tee -a src/ProxyManager/autoload.php \Fedora\Autoloader\Dependencies::required([ '%{phpdir}/Zend/Code/autoload.php', ]); \Fedora\Autoloader\Dependencies::optional([ '%{phpdir}/GeneratedHydrator/autoload.php', '%{phpdir}/Zend/Json/autoload.php', '%{phpdir}/Zend/Soap/autoload.php', '%{phpdir}/Zend/Stdlib/autoload.php', '%{phpdir}/Zend/XmlRpc/autoload.php', ]); AUTOLOAD %install mkdir -p %{buildroot}%{phpdir} cp -rp src/* %{buildroot}%{phpdir}/ %check %if %{with tests} : Create tests autoload mkdir vendor %{_bindir}/phpab --output vendor/autoload.php tests cat << 'EOF' | tee -a vendor/autoload.php require_once '%{buildroot}%{phpdir}/ProxyManager/autoload.php'; EOF : Zend => Laminas if [ -d /usr/share/php/Laminas ] then sed -i "s/'Zend/'Laminas/" \ tests/ProxyManagerTest/ProxyGenerator/RemoteObject/MethodGenerator/RemoteObjectMethodTest.php fi rm tests/language-feature-scripts/lazy-loading-value-holder-internal-php-classes.phpt : Run tests RETURN_CODE=0 for PHP_EXEC in php php73 php74 php80; do if [ "php" == "$PHP_EXEC" ] || which $PHP_EXEC; then $PHP_EXEC %{_bindir}/phpunit7 \ --filter '^((?!(testCodeGeneration)).)*$' \ --verbose \ || RETURN_CODE=1 fi done exit $RETURN_CODE %else : Tests skipped %endif %files # remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md %doc composer.json %{phpdir}/ProxyManager %changelog * Wed Mar 24 2021 Remi Collet - 2.2.3-3 - skip tests failing with PHP 8 - switch to phpunit7 * Mon Jan 11 2021 Remi Collet - 2.2.3-1 - update to 2.2.3 * Sun Feb 23 2020 Shawn Iwinski - 2.2.2-3 - Fix FTBFS (RHDB #1799874) * Thu Aug 29 2019 Remi Collet - 2.2.2-1 - update to 2.2.2 - use zendframework component autoloaders instead of framework one * Fri Nov 17 2017 Remi Collet - 2.2.0-1 - Update to 2.2.0 - raise dependency on PHP 7.2 - raise dependency on zend-code 3.3 * Thu May 4 2017 Remi Collet - 2.1.1-1 - Update to 2.1.1 * Wed Nov 30 2016 Remi Collet - 2.1.0-1 - update to 2.1.0 - raise dependency on php 7.1 - raise dependency on zend-code 3.1 * Sun Nov 6 2016 Remi Collet - 2.0.4-1 - update to 2.0.4 * Wed Oct 19 2016 Remi Collet - 2.0.3-2 - Add weak dependencies - Use dependencies' autoloaders * Fri Jul 1 2016 Remi Collet - 2.0.3-1 - update to 2.0.3 - raise dependency on zendframework/zend-code 3.0.4 * Wed Jun 29 2016 Remi Collet - 2.0.2-1 - update to 2.0.2 - raise dependency on php 7.0.7 - raise dependency on zendframework/zend-code 3.0 * Mon Aug 10 2015 Remi Collet - 1.0.2-1 - update to 1.0.2 * Fri May 29 2015 Shawn Iwinski - 1.0.0-2 - Fix autoloader to load all optional pkgs - Some spec cleanup * Mon May 18 2015 Remi Collet - 1.0.0-1 - add needed backport stuff for remi repository * Sat May 16 2015 Shawn Iwinski - 1.0.0-1 - Initial package