From 909531f7399536d809c6f929433d9b30b5eed479 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 11 Sep 2017 16:43:35 +0200 Subject: v1.0.8 --- .gitignore | 8 ++++++++ php-composer-ca-bundle.spec | 17 ++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 .gitignore 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/php-composer-ca-bundle.spec b/php-composer-ca-bundle.spec index f581783..a1f5498 100644 --- a/php-composer-ca-bundle.spec +++ b/php-composer-ca-bundle.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit b17e6153cb7f33c7e44eb59578dc12eee5dc8e12 +%global gh_commit 9dd73a03951357922d8aee6cc084500de93e2343 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner composer %global gh_project ca-bundle @@ -14,7 +14,7 @@ %global with_tests 0%{!?_without_tests:1} Name: php-composer-ca-bundle -Version: 1.0.7 +Version: 1.0.8 Release: 1%{?dist} Summary: Lets you find a path to the system CA @@ -29,7 +29,6 @@ Source2: %{name}-autoload.php # Never bundle a CA file Patch0: %{name}-rpm.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %if %{with_tests} BuildRequires: php(language) >= 5.3.2 @@ -88,8 +87,6 @@ find src -name \*.rpm -exec rm {} \; %install -rm -rf %{buildroot} - : Library mkdir -p %{buildroot}%{php_home}/Composer/ cp -pr src %{buildroot}%{php_home}/Composer/CaBundle @@ -106,7 +103,7 @@ require_once '%{php_home}/Symfony/Component/Process/autoload.php'; EOF ret=0 -for cmd in php56 php70 php71 php; do +for cmd in php php56 php70 php71 php72; do if which $cmd; then $cmd %{_bindir}/phpunit --verbose || ret=1 fi @@ -117,12 +114,7 @@ exit $ret %endif -%clean -rm -rf %{buildroot} - - %files -%defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE %doc composer.json @@ -132,6 +124,9 @@ rm -rf %{buildroot} %changelog +* Mon Sep 11 2017 Remi Collet - 1.0.8-1 +- Update to 1.0.8 (no change) + * Mon Mar 6 2017 Remi Collet - 1.0.7-1 - Update to 1.0.7 - run upstream test suite -- cgit