From 283a57dc802bb3d48488e0449c1dc5515dccbe25 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 29 Jan 2018 08:28:46 +0100 Subject: duplicate v1 spec --- .gitignore | 8 ++ Makefile | 4 + composer.json | 39 ++++++++++ php-phpunit-php-invoker2.spec | 173 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 224 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100644 php-phpunit-php-invoker2.spec 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/Makefile b/Makefile new file mode 100644 index 0000000..13af741 --- /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..8f80034 --- /dev/null +++ b/composer.json @@ -0,0 +1,39 @@ +{ + "name": "phpunit/php-invoker", + "description": "Utility class for invoking callables with a timeout.", + "type": "library", + "keywords": [ + "process" + ], + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues" + }, + "require": { + "php": ">=5.3.3", + "phpunit/php-timer": ">=1.0.6", + "ext-pcntl": "*" + }, + "require-dev": { + "phpunit/phpunit": "~4" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/" + ] + } +} + diff --git a/php-phpunit-php-invoker2.spec b/php-phpunit-php-invoker2.spec new file mode 100644 index 0000000..63f9b4f --- /dev/null +++ b/php-phpunit-php-invoker2.spec @@ -0,0 +1,173 @@ +# remirepo/fedora spec file for php-phpunit-PHP-Invoker +# +# Copyright (c) 2011-2017 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# +%global bootstrap 0 +%global gh_commit 86074bf0fc2caf02ec8819a93f65a37cd0b44c8e +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner sebastianbergmann +%global gh_project php-invoker +%global php_home %{_datadir}/php +%global pear_name PHP_Invoker +%global pear_channel pear.phpunit.de +%if %{bootstrap} +%global with_tests %{?_with_tests:1}%{!?_with_tests:0} +%else +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} +%endif + +Name: php-phpunit-PHP-Invoker +Version: 1.1.4 +Release: 1%{?dist} +Summary: Utility class for invoking callables with a timeout + +Group: Development/Libraries +License: BSD +URL: https://github.com/%{gh_owner}/%{gh_project} +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +BuildRequires: php(language) >= 5.2.7 +BuildRequires: %{_bindir}/phpab +%if %{with_tests} +BuildRequires: %{_bindir}/phpunit +%endif + +# From composer.json +# "php": ">=5.3.3", +# "phpunit/php-timer": ">=1.0.6", +# "ext-pcntl": "*" +Requires: php(language) >= 5.3.3 +Requires: php-composer(phpunit/php-timer) >= 1.0.6 +Requires: php-pcntl +# From phpcompatinfo report for version 1.0.5 +Requires: php-spl + +Provides: php-composer(phpunit/php-invoker) = %{version} + +# For compatibility with PEAR mode +Provides: php-pear(%{pear_channel}/%{pear_name}) = %{version} + + +%description +Utility class for invoking callables with a timeout. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +: Restore previous PSR-0 layout +mkdir -p PHP/Invoker +mv src/Invoker.php PHP/ +mv src/*.php PHP/Invoker/ +rmdir src + + +%build +: Generate autoloader +%{_bindir}/phpab \ + --output PHP/Invoker/Autoload.php \ + --basedir PHP/Invoker \ + PHP + +cat << EOF | tee -a PHP/Invoker/Autoload.php +// Dependencies +require_once 'PHP/Timer/Autoload.php'; +EOF + + + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{php_home} +cp -pr PHP %{buildroot}%{php_home} + + +%if %{with_tests} +%check +: Generate tests autoloader +%{_bindir}/phpab \ + --output tests/bs.php \ + tests + +: Run upstream test suite +%{_bindir}/phpunit \ + --include-path %{buildroot}%{php_home} \ + --bootstrap tests/bs.php \ + --verbose +%endif + + +%clean +rm -rf %{buildroot} + + +%post +if [ -x %{_bindir}/pear ]; then + %{_bindir}/pear uninstall --nodeps --ignore-errors --register-only \ + %{pear_channel}/%{pear_name} >/dev/null || : +fi + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +%license LICENSE +%doc README.md +%doc composer.json +%{php_home}/PHP/Invoker* + + +%changelog +* Sun Jun 21 2015 Remi Collet - 1.1.4-1 +- update to 1.1.4 +- raise dependencies on PHP >= 5.3.3 and php-timer >= 1.0.6 +- generate autoloader + +* Fri Jul 18 2014 Remi Collet - 1.1.3-6 +- add composer dependencies + +* Wed Apr 30 2014 Remi Collet - 1.1.3-4 +- cleanup pear registry + +* Wed Apr 23 2014 Remi Collet - 1.1.3-3 +- get sources from github +- run test suite when build --with tests + +* Tue Jul 16 2013 Remi Collet - 1.1.3-1 +- Update to 1.1.3 (stable) - API 1.1.0 + +* Thu Feb 14 2013 Fedora Release Engineering - 1.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Oct 6 2012 Remi Collet - 1.1.2-1 +- Update to 1.1.2 (stable) - API 1.1.0 + +* Mon Sep 24 2012 Remi Collet - 1.1.1-1 +- Update to 1.1.1 (stable) - API 1.1.0 + +* Sat Jul 21 2012 Fedora Release Engineering - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jan 24 2012 Remi Collet - 1.1.0-1 +- Update to 1.1.0 (stable) - API 1.1.0 +- now requires PHP_Timer + +* Sat Jan 14 2012 Fedora Release Engineering - 1.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Sat Nov 26 2011 Remi Collet - 1.0.1-1 +- Update to 1.0.1 (stable) - API 1.0.0 + +* Tue Nov 01 2011 Remi Collet - 1.0.0-3 +- fix provides + +* Tue Nov 01 2011 Remi Collet - 1.0.0-2 +- new tarball, with documentation + +* Tue Nov 01 2011 Remi Collet - 1.0.0-1 +- initial generated RPM by pear make-rpm-spec + cleanups -- cgit