diff options
Diffstat (limited to 'php-ramsey-collection.spec')
-rw-r--r-- | php-ramsey-collection.spec | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/php-ramsey-collection.spec b/php-ramsey-collection.spec new file mode 100644 index 0000000..7b7a5ee --- /dev/null +++ b/php-ramsey-collection.spec @@ -0,0 +1,153 @@ +# remirepo/fedora spec file for php-ramsey-collection +# +# Copyright (c) 2020 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%bcond_without tests + +# Github +%global gh_commit 24d93aefb2cd786b7edd9f45b554aea20b28b9b1 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner ramsey +%global gh_project collection +# Packagist +%global pk_vendor %{gh_owner} +%global pk_name %{gh_project} +# Namespace +%global ns_vendor Ramsey +%global ns_project Collection + +Name: php-%{pk_vendor}-%{pk_name} +Version: 1.1.1 +Release: 1%{?dist} +Summary: Library for representing and manipulating collections + +License: MIT +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: %{name}-%{version}-%{gh_short}.tgz +# Create git snapshot as tests are excluded from official tarball +Source1: makesrc.sh + +BuildArch: noarch + +BuildRequires: php(language) >= 7.2 +BuildRequires: php-date +BuildRequires: php-spl +# From composer.json, "require-dev": { +# "captainhook/captainhook": "^5.3", +# "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", +# "ergebnis/composer-normalize": "^2.6", +# "fzaninotto/faker": "^1.5", +# "hamcrest/hamcrest-php": "^2", +# "jangregor/phpstan-prophecy": "^0.6", +# "mockery/mockery": "^1.3", +# "phpstan/extension-installer": "^1", +# "phpstan/phpstan": "^0.12.32", +# "phpstan/phpstan-mockery": "^0.12.5", +# "phpstan/phpstan-phpunit": "^0.12.11", +# "phpunit/phpunit": "^8.5", +# "psy/psysh": "^0.10.4", +# "slevomat/coding-standard": "^6.3", +# "squizlabs/php_codesniffer": "^3.5", +# "vimeo/psalm": "^3.12.2" +%if %{with tests} +BuildRequires: phpunit8 >= 8.5 +# remirepo:1 +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +BuildRequires: (php-composer(fzaninotto/faker) >= 1.5 with php-composer(fzaninotto/faker) < 2) +BuildRequires: (php-composer(hamcrest/hamcrest-php) >= 2 with php-composer(hamcrest/hamcrest-php) < 3) +BuildRequires: (php-composer(mockery/mockery) >= 1.3 with php-composer(mockery/mockery) < 2) +# remirepo:5 +%else +BuildRequires: php-Faker >= 1.5 +BuildRequires: php-hamcrest2 >= 2 +BuildRequires: php-mockery >= 1.3 +%endif +%endif +# Autoloader +BuildRequires: php-fedora-autoloader-devel + +# From composer.json, "require": { +# "php": "^7.2 || ^8" +Requires: php(language) >= 7.2 +# From phpcompatifo report for 1.1.1 +Requires: php-spl + +# Autoloader +Requires: php-composer(fedora/autoloader) + +Provides: php-composer(%{pk_vendor}/%{pk_name}) = %{version} + + +%description +ramsey/collection is a PHP library for representing and manipulating +collections. Much inspiration for this library comes from the Java +Collections Framework. + +Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + + +%build +: Create classmap autoloader +phpab \ + --template fedora \ + --output src/autoload.php \ + src + + +%install +mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} +cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} + + +%check +%if %{with tests} +: Generate a simple autoloader +mkdir vendor +cat << 'EOF' | tee vendor/autoload.php +<?php +// Installed library +require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; +\Fedora\Autoloader\Autoload::addPsr4('Ramsey\\Console\\', dirname(__DIR__) . '/resources/console'); +\Fedora\Autoloader\Autoload::addPsr4('Ramsey\\Collection\\Test\\', dirname(__DIR__) . '/tests'); +\Fedora\Autoloader\Dependencies::required([ + '%{_datadir}/php/Faker/autoload.php', + '%{_datadir}/php/Hamcrest2/autoload.php', + '%{_datadir}/php/Mockery1/autoload.php', +]); +EOF + +: Run upstream test suite +ret=0 +for cmd in php php72 php73 php74 php80; do + if which $cmd; then + $cmd %{_bindir}/phpunit8 \ + --no-coverage \ + --verbose || ret=1 + fi +done +exit $ret +%else +: Test suite disabled +%endif + +%files +# remirepo:1 +%{!?_licensedir:%global license %%doc} +%license LICENSE +%doc *.md +%doc composer.json +%{_datadir}/php/%{ns_vendor} + + +%changelog +* Thu Oct 1 2020 Remi Collet <remi@remirepo.net> - 1.1.1-1 +- initial package |