From 41e4ef5cfc0e26ec1dc53e53e29302a2f98528e5 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 30 Aug 2024 08:26:30 +0200 Subject: dup v1 --- .gitignore | 9 +++ Makefile | 4 + composer.json | 103 ++++++++++++++++++++++++++ makesrc.sh | 28 +++++++ php-yoast-phpunit-polyfills1.spec | 151 ++++++++++++++++++++++++++++++++++++++ 5 files changed, 295 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100755 makesrc.sh create mode 100644 php-yoast-phpunit-polyfills1.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..01f0400 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +clog +package-*.xml +*.tgz +*.tar.bz2 +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..637e74a --- /dev/null +++ b/composer.json @@ -0,0 +1,103 @@ +{ + "name": "yoast/phpunit-polyfills", + "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests", + "license": "BSD-3-Clause", + "type": "library", + "keywords": [ + "phpunit", + "polyfill", + "testing" + ], + "authors": [ + { + "name": "Team Yoast", + "email": "support@yoast.com", + "homepage": "https://yoast.com" + }, + { + "name": "Contributors", + "homepage": "https://github.com/Yoast/PHPUnit-Polyfills/graphs/contributors" + } + ], + "homepage": "https://github.com/Yoast/PHPUnit-Polyfills", + "support": { + "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues", + "source": "https://github.com/Yoast/PHPUnit-Polyfills", + "security": "https://github.com/Yoast/PHPUnit-Polyfills/security/policy" + }, + "require": { + "php": ">=5.4", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + }, + "require-dev": { + "php-parallel-lint/php-console-highlighter": "^1.0.0", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "yoast/yoastcs": "^3.1.0" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "files": [ + "phpunitpolyfills-autoload.php" + ] + }, + "autoload-dev": { + "psr-4": { + "Yoast\\PHPUnitPolyfills\\Tests\\": "tests/" + } + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "scripts": { + "lint7": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git --exclude src/Exceptions/Error.php --exclude src/Exceptions/TypeError.php --exclude tests/Polyfills/Fixtures/ValueObjectUnion.php --exclude tests/Polyfills/Fixtures/ValueObjectUnionNoReturnType.php" + ], + "lint70": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git --exclude src/Exceptions/Error.php --exclude src/Exceptions/TypeError.php --exclude tests/Polyfills/Fixtures/ValueObject.php --exclude tests/Polyfills/Fixtures/ValueObjectUnion.php --exclude tests/Polyfills/Fixtures/ValueObjectUnionNoReturnType.php" + ], + "lint-lt70": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git --exclude src/TestCases/TestCasePHPUnitGte8.php --exclude src/TestListeners/TestListenerDefaultImplementationPHPUnitGte7.php --exclude tests/Polyfills/Fixtures/ChildValueObject.php --exclude tests/Polyfills/Fixtures/ValueObject.php --exclude tests/Polyfills/Fixtures/ValueObjectUnion.php --exclude tests/Polyfills/Fixtures/ValueObjectUnionNoReturnType.php" + ], + "lint-gte80": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git" + ], + "lint-gte84": [ + "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude .git --exclude tests/Polyfills/Fixtures/ValueObjectNoReturnType.php" + ], + "check-cs": [ + "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 5.4-" + ], + "fix-cs": [ + "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf" + ], + "test": [ + "@php ./vendor/phpunit/phpunit/phpunit --no-coverage" + ], + "coverage": [ + "@php ./vendor/phpunit/phpunit/phpunit" + ], + "coverage-local": [ + "@php ./vendor/phpunit/phpunit/phpunit --coverage-html ./build/coverage-html" + ] + }, + "scripts-descriptions": { + "lint7": "Check the PHP files for parse errors. (PHP 7.1 - 7.4)", + "lint70": "Check the PHP files for parse errors. (PHP 7.0)", + "lint-lt70": "Check the PHP files for parse errors. (PHP < 7.0)", + "lint-gte80": "Check the PHP files for parse errors. (PHP 8.0 - 8.3)", + "lint-gte84": "Check the PHP files for parse errors. (PHP 8.4+)", + "check-cs": "Check the PHP files for code style violations and best practices.", + "fix-cs": "Auto-fix code style violations in the PHP files.", + "test": "Run the unit tests without code coverage.", + "coverage": "Run the unit tests with code coverage.", + "coverage-local": "Run the unit tests with code coverage writing an HTML coverage report to a \"/build/coverage-html\" directory." + } +} diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..f578f06 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) +COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) +SHORT=${COMMIT:0:7} + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION, Commit=$COMMIT\n" + +echo "Cloning..." +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT || exit 1 +cp composer.json ../composer.json +popd + +echo "Archiving..." +tar czf $NAME-$VERSION-$SHORT.tgz --exclude .git $PROJECT-$COMMIT + +echo "Cleaning..." +rm -rf $PROJECT-$COMMIT + +echo "Done." + diff --git a/php-yoast-phpunit-polyfills1.spec b/php-yoast-phpunit-polyfills1.spec new file mode 100644 index 0000000..7660597 --- /dev/null +++ b/php-yoast-phpunit-polyfills1.spec @@ -0,0 +1,151 @@ +# remirepo/fedora spec file for php-yoast-phpunit-polyfills +# +# Copyright (c) 2020-2024 Remi Collet +# License: CC-BY-SA-4.0 +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please preserve changelog entries +# +# Github +%global gh_commit a0f7d708794a738f328d7b6c94380fd1d6c40446 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner Yoast +%global gh_project PHPUnit-Polyfills +# Packagist +%global pk_vendor yoast +%global pk_project phpunit-polyfills +# Namespace +%global ns_vendor Yoast +%global ns_project PHPUnitPolyfills +# don't change major version used in package name +%global major %nil +%bcond_without tests +%global php_home %{_datadir}/php + +Name: php-%{pk_vendor}-%{pk_project}%{major} +Version: 1.1.1 +Release: 1%{?dist} +Summary: Set of polyfills for changed PHPUnit functionality + +License: BSD-3-Clause +URL: https://github.com/%{gh_owner}/%{gh_project} +# git snapshot to get upstream test suite +Source0: %{name}-%{version}-%{gh_short}.tgz +Source1: makesrc.sh + +BuildArch: noarch +%if %{with tests} +BuildRequires: php(language) >= 5.4 +BuildRequires: php-reflection +# From composer.json, "require-dev": { +# "yoast/yoastcs": "^2.3.0" +BuildRequires: phpunit9 +BuildRequires: phpunit8 +%endif +BuildRequires: php-fedora-autoloader-devel + +# From composer.json, "require": { +# "php": ">=5.4", +# "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0" +Requires: php(language) >= 5.4 +# from phpcompatinfo report on version 0.2.0 +Requires: php-reflection + +Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} + + +%description +Set of polyfills for changed PHPUnit functionality to allow for creating +PHPUnit cross-version compatible tests. + +Autoloader: %{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php + + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +# Fix for RPM layout +sed -e 's:src/::' phpunitpolyfills-autoload.php > src/autoload.php + + +%build +# Empty build section, most likely nothing required. + + +%install +mkdir -p %{buildroot}/%{php_home}/%{ns_vendor} +cp -pr src %{buildroot}/%{php_home}/%{ns_vendor}/%{ns_project}%{major} + + +%check +%if %{with tests} +: Use installed tree and autoloader +mkdir vendor +cat << 'EOF' | tee -a vendor/autoload.php + - 1.1.1-1 +- update to 1.1.1 + +* Fri Mar 31 2023 Remi Collet - 1.0.5-1 +- update to 1.0.5 + +* Wed Nov 16 2022 Remi Collet - 1.0.4-1 +- update to 1.0.4 + +* Tue Nov 23 2021 Remi Collet - 1.0.3-1 +- update to 1.0.3 + +* Mon Oct 4 2021 Remi Collet - 1.0.2-1 +- update to 1.0.2 + +* Tue Aug 10 2021 Remi Collet - 1.0.1-1 +- update to 1.0.1 + +* Mon Jun 21 2021 Remi Collet - 1.0.0-1 +- update to 1.0.0 + +* Wed Mar 10 2021 Remi Collet - 0.2.0-2 +- reduce build matrix + +* Thu Nov 26 2020 Remi Collet - 0.2.0-1 +- initial rpm -- cgit