From 45ebd9610db7016bf7f1ef307ea9c3ff92d95d0d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 25 Mar 2019 11:21:52 +0100 Subject: update to 1.6.0 raise dependency on PHP 7.1.3 use PHPUnit 7 for test suite --- .gitignore | 8 ++++++++ composer.json | 23 +++++++++++++++-------- makesrc.sh | 1 + php-doctrine-collections.spec | 33 ++++++++++++++++----------------- 4 files changed, 40 insertions(+), 25 deletions(-) create mode 100644 .gitignore create mode 120000 makesrc.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc9aa8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +clog +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/composer.json b/composer.json index 385fa93..828a7d2 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,14 @@ { "name": "doctrine/collections", "type": "library", - "description": "Collections Abstraction library", - "keywords": ["collections", "array", "iterator"], - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "keywords": [ + "php", + "collections", + "array", + "iterators" + ], + "homepage": "https://www.doctrine-project.org/projects/collections.html", "license": "MIT", "authors": [ {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, @@ -13,14 +18,16 @@ {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"} ], "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3" }, "require-dev": { - "phpunit/phpunit": "^5.7", - "doctrine/coding-standard": "~0.1@dev" + "phpunit/phpunit": "^7.0", + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "vimeo/psalm": "^3.2.2" }, "autoload": { - "psr-0": { "Doctrine\\Common\\Collections\\": "lib/" } + "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "autoload-dev": { "psr-4": { @@ -29,7 +36,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.6.x-dev" } } } diff --git a/makesrc.sh b/makesrc.sh new file mode 120000 index 0000000..a05ec1f --- /dev/null +++ b/makesrc.sh @@ -0,0 +1 @@ +php-doctrine-collections-get-source.sh \ No newline at end of file diff --git a/php-doctrine-collections.spec b/php-doctrine-collections.spec index 8164b44..f698ee0 100644 --- a/php-doctrine-collections.spec +++ b/php-doctrine-collections.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-doctrine-collections # -# Copyright (c) 2013-2017 Shawn Iwinski +# Copyright (c) 2013-2019 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT @@ -12,14 +12,14 @@ %global github_owner doctrine %global github_name collections -%global github_version 1.4.0 -%global github_commit 1a4fb7e902202c33cce8c55989b945612943c2ba +%global github_version 1.6.0 +%global github_commit acc35813077be497dc7f658af76729fa456444e3 %global composer_vendor doctrine %global composer_project collections -# "php": "^5.6 || ^7.0" -%global php_min_ver 5.6 +# "php": "^7.1.3" +%global php_min_ver 7.1.3 # Build using "--without tests" to disable tests %global with_tests 0%{!?_without_tests:1} @@ -31,7 +31,6 @@ Version: %{github_version} Release: 1%{?github_release}%{?dist} Summary: Collections abstraction library -Group: Development/Libraries License: MIT URL: https://github.com/%{github_owner}/%{github_name} @@ -40,14 +39,13 @@ URL: https://github.com/%{github_owner}/%{github_name} Source0: %{name}-%{github_version}-%{github_commit}.tar.gz Source1: %{name}-get-source.sh -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch # Tests %if %{with_tests} ## composer.json -BuildRequires: %{_bindir}/phpunit +BuildRequires: phpunit7 BuildRequires: php(language) >= %{php_min_ver} -## phpcompatinfo (computed from version 1.4.0) +## phpcompatinfo (computed from version 1.6.0) BuildRequires: php-pcre BuildRequires: php-spl # Autoloader @@ -56,7 +54,7 @@ BuildRequires: php-composer(fedora/autoloader) # composer.json Requires: php(language) >= %{php_min_ver} -# phpcompatinfo (computed from version 1.4.0) +# phpcompatinfo (computed from version 1.6.0) Requires: php-pcre Requires: php-spl # Autoloader @@ -93,7 +91,6 @@ AUTOLOAD %install -rm -rf %{buildroot} mkdir -p %{buildroot}%{phpdir} cp -rp lib/* %{buildroot}%{phpdir}/ @@ -108,13 +105,10 @@ require_once '%{buildroot}%{phpdir}/Doctrine/Common/Collections/autoload.php'; BOOTSTRAP : Upstream tests -%{_bindir}/phpunit --verbose --bootstrap bootstrap.php - -: Upstream tests with SCLs if available SCL_RETURN_CODE=0 -for SCL in php70 php71; do +for SCL in php php71 php72 php73; do if which $SCL; then - $SCL %{_bindir}/phpunit --verbose --bootstrap bootstrap.php \ + $SCL %{_bindir}/phpunit7 --verbose --bootstrap bootstrap.php \ || SCL_RETURN_CODE=1 fi done @@ -129,7 +123,7 @@ rm -rf %{buildroot} %files -%defattr(-,root,root,-) +# remirepo:1 %{!?_licensedir:%global license %%doc} %license LICENSE %doc *.md @@ -140,6 +134,11 @@ rm -rf %{buildroot} %changelog +* Mon Mar 25 2019 Remi Collet - 1.6.0-1 +- update to 1.6.0 +- raise dependency on PHP 7.1.3 +- use PHPUnit 7 for test suite + * Sat Mar 04 2017 Shawn Iwinski - 1.4.0-1 - Updated to 1.4.0 (RHBZ #1415530) - Switched autoloader to php-composer(fedora/autoloader) -- cgit