From 3f8aec7a6fc4435c2d039c33e044657c2afc545a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sun, 29 Mar 2015 18:18:23 +0200 Subject: php-mikey179-vfsstream: 1.5.0 --- makesrc.sh | 26 ++++++++++++++++++++++++++ php-mikey179-vfsstream.spec | 18 +++++++++++++----- 2 files changed, 39 insertions(+), 5 deletions(-) create mode 100755 makesrc.sh diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..05a6054 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +NAME=$(sed -n '/^Name:/{s/.* //;p}' *.spec) +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\n" + +echo "Cloning..." +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT +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-mikey179-vfsstream.spec b/php-mikey179-vfsstream.spec index a678f87..d53d1ad 100644 --- a/php-mikey179-vfsstream.spec +++ b/php-mikey179-vfsstream.spec @@ -2,25 +2,28 @@ # # Copyright (c) 2014-2015 Remi Collet # License: CC-BY-SA -# http://creativecommons.org/licenses/by-sa/3.0/ +# http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # -%global gh_commit 61b12172292cf539685507aa65b076c1530e83c1 +%global gh_commit 4dc0d2f622412f561f5b242b19b98068bbbc883a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner mikey179 %global gh_project vfsStream %global with_tests %{?_without_tests:0}%{!?_without_tests:1} Name: php-mikey179-vfsstream -Version: 1.4.0 +Version: 1.5.0 Release: 1%{?dist} Summary: PHP stream wrapper for a virtual file system 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}.tar.gz +#Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}.tar.gz +# See https://github.com/mikey179/vfsStream/issues/108 +# run mksrc.sh to create the tarball from a git snapshot +Source0: %{name}-%{version}-%{gh_short}.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -84,7 +87,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license LICENSE -%doc CHANGELOG.md readme.md composer.json +%doc CHANGELOG.md README.md composer.json %dir %{_datadir}/php/org %dir %{_datadir}/php/org/bovigo @@ -92,6 +95,11 @@ rm -rf %{buildroot} %changelog +* Sun Mar 29 2015 Remi Collet - 1.5.0-1 +- update to 1.4.0 +- create source from git snapshot for test suite + see https://github.com/mikey179/vfsStream/issues/108 + * Sun Sep 14 2014 Remi Collet - 1.4.0-1 - update to 1.4.0 -- cgit