# remirepo spec file for php-PhpCollection, from Fedora: # # Fedora spec file for php-PhpCollection # # Copyright (c) 2013-2021 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT # # Please preserve changelog entries # %global github_owner schmittjoh %global github_name php-collection %global github_version 0.6.0 %global github_commit 56d18c8c2c0400f2838703246ac7de919a605763 %global composer_vendor phpcollection %global composer_project phpcollection # "phpoption/phpoption": "1.*" # NOTE: min version not 1.0 because autoloader required %global phpoption_min_ver 1.5.0 %global phpoption_max_ver 2.0 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} %{!?phpdir: %global phpdir %{_datadir}/php} Name: php-PhpCollection Version: %{github_version} Release: 1%{?dist} Summary: General purpose collection library for PHP Group: Development/Libraries License: ASL 2.0 URL: http://jmsyst.com/libs/%{github_name} # GitHub export contains non-allowable licened documentation. # Run php-PhpCollection-get-source.sh to create allowable source. Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh BuildArch: noarch # Tests %if %{with_tests} BuildRequires: phpunit9 ## composer.json # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 BuildRequires:(php-composer(phpoption/phpoption) >= %{phpoption_min_ver} with php-composer(phpoption/phpoption) < %{phpoption_max_ver}) # remirepo:4 %else BuildRequires: php-composer(phpoption/phpoption) < %{phpoption_max_ver} BuildRequires: php-composer(phpoption/phpoption) >= %{phpoption_min_ver} %endif ## phpcompatinfo (computed from version 0.5.0) BuildRequires: php(language) >= 5.4.0 BuildRequires: php-date BuildRequires: php-spl ## Autoloader BuildRequires: php-composer(fedora/autoloader) %endif # composer.json # remirepo:1 %if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 Requires: (php-composer(phpoption/phpoption) >= %{phpoption_min_ver} with php-composer(phpoption/phpoption) < %{phpoption_max_ver}) # remirepo:4 %else Requires: php-composer(phpoption/phpoption) < %{phpoption_max_ver} Requires: php-composer(phpoption/phpoption) >= %{phpoption_min_ver} %endif # phpcompatinfo (computed from version 0.5.0) Requires: php(language) >= 5.4.0 Requires: php-spl # Autoloader Requires: php-composer(fedora/autoloader) # Standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming Provides: php-%{composer_vendor}-%{composer_project} = %{version}-%{release} Provides: php-%{composer_vendor} = %{version}-%{release} # Composer Provides: php-composer(%{composer_vendor}/%{composer_project}) = %{version} %description This library adds basic collections for PHP. Collections can be seen as more specialized arrays for which certain contracts are guaranteed. Supported Collections: * Sequences ** Keys: numerical, consequentially increasing, no gaps ** Values: anything, duplicates allowed ** Classes: Sequence, SortedSequence * Maps ** Keys: strings or objects, duplicate keys not allowed ** Values: anything, duplicates allowed ** Classes: Map, ObjectMap (not yet implemented) * Sets (not yet implemented) ** Keys: not meaningful ** Values: anything, each value must be unique (===) ** Classes: Set General Characteristics: * Collections are mutable (new elements may be added, existing elements may be modified or removed). Specialized immutable versions may be added in the future though. * Equality comparison between elements are always performed using the shallow comparison operator (===). * Sorting algorithms are unstable, that means the order for equal elements is undefined (the default, and only PHP behavior). Autoloader: %{phpdir}/PhpCollection/autoload.php %prep %setup -q -n %{github_name}-%{github_commit} %build : Create autoloader cat <<'AUTOLOAD' | tee src/PhpCollection/autoload.php - 0.6.0-1 - update to 0.6.0 * Thu Sep 07 2017 Shawn Iwinski - 0.5.0-4 - Bump release for rebuild * Tue Jul 11 2017 Shawn Iwinski - 0.5.0-1 - Updated to 0.5.0 - Switched autoloader to php-composer(fedora/autoloader) - Test with SCLs if available * Sun Jul 12 2015 Shawn Iwinski - 0.4.0-4 - Added spec license - New source script %%{name}-get-source.sh instead of %%{name}-strip.sh - Added autoloader - Added standard "php-{COMPOSER_VENDOR}-{COMPOSER_PROJECT}" naming provides - Added php-composer(phpcollection/phpcollection) provide - %%license usage * Tue Apr 22 2014 Remi Collet 0.4.0-1 - backport 0.4.0 for remi repo. * Mon Apr 21 2014 Shawn Iwinski - 0.4.0-1 - Updated to 0.4.0 (BZ #1078754) * Mon Dec 30 2013 Remi Collet 0.3.1-1 - backport 0.3.1 for remi repo. * Mon Dec 30 2013 Shawn Iwinski 0.3.1-1 - Updated to 0.3.1 (BZ #1045915) - Spec cleanup * Thu Jul 18 2013 Remi Collet 0.3.0-1 - backport 0.3.0 for remi repo. * Wed Jul 17 2013 Shawn Iwinski 0.3.0-1 - Updated to 0.3.0 * Tue Mar 19 2013 Remi Collet 0.2.0-2 - backport 0.2.0 for remi repo. * Mon Mar 18 2013 Shawn Iwinski 0.2.0-2 - Added %%{name}-strip.sh as Source1 * Sat Mar 16 2013 Shawn Iwinski 0.2.0-1 - Updated to version 0.2.0 - Added phpoption_max_ver global - Bad licensed files stripped from source - php-common => php(language) - Removed tests sub-package * Wed Jan 23 2013 Shawn Iwinski 0.1.0-1 - Initial package