From 897dfba9e83862f88615c629702dea7aa6aebb30 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 28 Jan 2021 10:58:37 +0100 Subject: new package --- php-friendsofphp-proxy-manager-lts.spec | 172 ++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 php-friendsofphp-proxy-manager-lts.spec (limited to 'php-friendsofphp-proxy-manager-lts.spec') diff --git a/php-friendsofphp-proxy-manager-lts.spec b/php-friendsofphp-proxy-manager-lts.spec new file mode 100644 index 0000000..b59b6fc --- /dev/null +++ b/php-friendsofphp-proxy-manager-lts.spec @@ -0,0 +1,172 @@ +# remirepo/fedora spec file for php-friendsofphp-proxy-manager-lts +# +# Copyright (c) 2021 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%global github_owner FriendsOfPHP +%global github_name proxy-manager-lts +%global github_version 1.0.3 +%global github_commit 121af47c9aee9c03031bdeca3fac0540f59aa5c3 +%global github_short %(c=%{github_commit}; echo ${c:0:7}) +%global major %nil + +%global ns_project ProxyManager + +%global composer_vendor friendsofphp +%global composer_project proxy-manager-lts + +# Build using "--without tests" to disable tests +%bcond_without tests + +%{!?phpdir: %global phpdir %{_datadir}/php} + +Name: php-%{composer_vendor}-%{composer_project}%{major} +Version: %{github_version} +Release: 1%{?github_release}%{?dist} +Summary: A library for validating emails + +License: MIT +URL: https://github.com/%{github_owner}/%{github_name} +Source0: %{name}-%{github_version}-%{github_short}.tgz +Source1: makesrc.sh + +BuildArch: noarch +# As we use phpunit9 +BuildRequires: php(language) >= 7.3 +%if %{with tests} +BuildRequires: php-reflection +BuildRequires: php-pcre +BuildRequires: php-spl +# remirepo:1 +%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 +BuildRequires:(php-composer(laminas/laminas-code) >= 4 with php-composer(laminas/laminas-code) < 5) +BuildRequires:(php-composer(symfony/filesystem) >= 4.4.17 with php-composer(symfony/filesystem) < 6) +## composer.json (require-dev) +# "ext-phar": "*", +# "symfony/phpunit-bridge": "^5.2" +# remirepo:4 +%else +BuildRequires: php-laminas-code >= 3.4.1 +BuildRequires: php-symfony4-filesystem >= 4.4.17 +%endif +%global phpunit %{_bindir}/phpunit9 +BuildRequires: %{phpunit} +%endif +## Autoloader +BuildRequires: php-fedora-autoloader-devel + +# composer.json +# "php": ">=7.1", +# "laminas/laminas-code": "~3.4.1|^4.0", +# "symfony/filesystem": "^4.4.17|^5.0" +Requires: php(language) >= 7.1 +# remirepo:1 +%if 0%{?fedora} >= 32 || 0%{?rhel} >= 9 +# prefer v4 required for PHP 8, better with PHP 7.4 +Requires: (php-composer(laminas/laminas-code) >= 4.0 with php-composer(laminas/laminas-code) < 5) +Requires: (php-composer(symfony/filesystem) >= 4.4.17 with php-composer(symfony/filesystem) < 6) +# remirepo:4 +%else +Requires: php-laminas-code >= 3.4.1 +Requires: php-symfony4-filesystem >= 4.4.17 +%endif +# phpcompatinfo (computed from version 1.0.3) +Requires: php-reflection +Requires: php-pcre +Requires: php-spl +# Autoloader +Requires: php-composer(fedora/autoloader) + +# Composer +Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} + +%description +%{summary}. + +Autoloader: %{phpdir}/%{github_owner}/%{ns_project}%{major}/autoload.php + + +%prep +%setup -qn %{github_name}-%{github_commit} + + +%build +: Create autoloader +phpab --template fedora \ + --output src/autoload.php \ + src + +cat <<'AUTOLOAD' | tee -a src/autoload.php + +if (PHP_VERSION_ID < 70400) { + $code = '%{phpdir}/Laminas/Code/autoload.php'; +} else if (PHP_VERSION_ID < 80000) { + $code = [ + '%{phpdir}/Laminas/Code4/autoload.php', + '%{phpdir}/Laminas/Code/autoload.php', + ]; +} else { + $code = '%{phpdir}/Laminas/Code4/autoload.php'; +} +\Fedora\Autoloader\Dependencies::required([ + $code, + [ + '%{phpdir}/Symfony5/Component/Filesystem/autoload.php', + '%{phpdir}/Symfony4/Component/Filesystem/autoload.php', + ], +]); +AUTOLOAD + + +%install +# fake "vendor" directory to avoid conflict with real ocramius library +mkdir -p %{buildroot}%{phpdir}/%{github_owner}/ +cp -rp src %{buildroot}%{phpdir}/%{github_owner}/%{ns_project}%{major} + + +%check +%if %{with tests} +mkdir vendor +cat << 'EOF' | tee vendor/autoload.php + - 1.0.3-1 +- Initial package -- cgit