From 5da0585bc2494ef34743812c8389ea3d0ce8802f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 23 Apr 2017 17:36:47 +0200 Subject: v3.0.2 - New package --- .gitignore | 7 ++ Makefile | 4 + composer.json | 30 ++++++++ php-sebastian-environment3.spec | 165 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 206 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 composer.json create mode 100644 php-sebastian-environment3.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1ab5c4f --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +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..38a502d --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "sebastian/environment", + "description": "Provides functionality to handle HHVM/PHP environments", + "keywords": ["environment","hhvm","xdebug"], + "homepage": "http://www.github.com/sebastianbergmann/environment", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "prefer-stable": true, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.1" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + } +} diff --git a/php-sebastian-environment3.spec b/php-sebastian-environment3.spec new file mode 100644 index 0000000..5dac178 --- /dev/null +++ b/php-sebastian-environment3.spec @@ -0,0 +1,165 @@ +# remirepo/fedora spec file for php-sebastian-environment3 +# +# Copyright (c) 2014-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 11e7710b7724d42c62249b0e9d3030240398949d +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner sebastianbergmann +%global gh_project environment +%global pk_vendor sebastian +%global pk_project %{gh_project} +%global major 3 +%global php_home %{_datadir}/php +%global ns_vendor SebastianBergmann +%global ns_project Environment +%if %{bootstrap} +%global with_tests 0%{?_with_tests:1} +%else +%global with_tests 0%{!?_without_tests:1} +%endif + +Name: php-%{pk_vendor}-%{pk_project}%{major} +Version: 3.0.2 +Release: 1%{?dist} +Summary: Handle HHVM/PHP environments + +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 + +BuildArch: noarch +BuildRequires: php(language) >= 7.0 +BuildRequires: php-pcre +BuildRequires: php-posix +# Autoloader +BuildRequires: php-fedora-autoloader-devel >= 1.0.0 +%if %{with_tests} +# from composer.json, "require-dev": { +# "phpunit/phpunit": "^6.1" +BuildRequires: phpunit6 >= 6.1 +%endif + +# from composer.json, "require": { +# "php": "^7.0" +Requires: php(language) >= 7.0 +# From phpcompatinfo report for 3.0.2 +Requires: php-pcre +Requires: php-posix +# Autoloader +Requires: php-composer(fedora/autoloader) + +Provides: php-composer(%{pk_vendor}/%{pk_project}) = %{version} + + +%description +This component provides functionality that helps writing PHP code that +has runtime-specific (PHP / HHVM) execution paths. + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + + +%build +# Generate the Autoloader +%{_bindir}/phpab \ + --template fedora2 \ + --output src/autoload.php \ + src + + +%install +mkdir -p %{buildroot}%{php_home}/%{ns_vendor} +cp -pr src %{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major} + + +%if %{with_tests} +%check +: Run tests - set include_path to ensure PHPUnit autoloader use it +ret=0 +for cmd in php php70 php71 php72; do + if which $cmd; then + $cmd -d include_path=.:%{buildroot}%{php_home}:%{php_home} \ + %{_bindir}/phpunit6 --bootstrap %{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ + --verbose || ret=1 + fi +done +exit $ret +%endif + + +%files +%{!?_licensedir:%global license %%doc} +%license LICENSE +%doc README.md composer.json +%dir %{php_home}/%{ns_vendor} + %{php_home}/%{ns_vendor}/%{ns_project}%{major} + + +%changelog +* Sun Apr 23 2017 Remi Collet - 3.0.2-1 +- rename to php-sebastian-environment3 +- update to 3.0.2 + +* Sat Nov 26 2016 Remi Collet - 2.0.0-1 +- update to 2.0.0 +- raise dependency on PHP 5.6 +- switch to fedora/autoloader + +* Wed Aug 31 2016 Remi Collet - 1.3.8-1 +- update to 1.3.8 + +* Tue May 17 2016 Remi Collet - 1.3.7-1 +- update to 1.3.7 +- add explicit dependencies on pcre and posix + +* Wed May 4 2016 Remi Collet - 1.3.6-1 +- update to 1.3.6 + +* Sun Feb 28 2016 Remi Collet - 1.3.5-1 +- update to 1.3.5 + +* Wed Dec 2 2015 Remi Collet - 1.3.3-1 +- update to 1.3.3 (no change on linux) +- run test suite with both php 5 and 7 when available + +* Mon Aug 3 2015 Remi Collet - 1.3.2-1 +- update to 1.3.2 + +* Sun Aug 2 2015 Remi Collet - 1.3.1-1 +- update to 1.3.1 + +* Sun Jul 26 2015 Remi Collet - 1.3.0-1 +- update to 1.3.0 + +* Fri Apr 3 2015 Remi Collet - 1.2.2-1 +- update to 1.2.2 +- fix license handling + +* Tue Dec 2 2014 Remi Collet - 1.2.1-1 +- update to 1.2.1 + +* Sat Oct 25 2014 Remi Collet - 1.2.0-1 +- update to 1.2.0 + +* Wed Oct 8 2014 Remi Collet - 1.1.0-1 +- update to 1.1.0 + +* Sun Oct 5 2014 Remi Collet - 1.0.1-1 +- update to 1.0.1 +- enable test suite + +* Wed Jun 25 2014 Remi Collet - 1.0.0-4 +- composer dependencies + +* Wed Apr 23 2014 Remi Collet - 1.0.0-2 +- add generated autoload.php + +* Tue Apr 1 2014 Remi Collet - 1.0.0-1 +- initial package -- cgit