update to 4.0.1
sources from git snapshot
This commit is contained in:
parent
df62fec776
commit
a99c68feda
4 changed files with 41 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
/php-sebastian-recursion-context4-4.0.0-cdd8661.tar.gz
|
||||
/php-sebastian-recursion-context4-4.0.1-a32789e.tgz
|
||||
|
|
|
|||
28
makesrc.sh
Executable file
28
makesrc.sh
Executable file
|
|
@ -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\n"
|
||||
|
||||
echo "Cloning..."
|
||||
rm -rf $PROJECT-$COMMIT
|
||||
git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT
|
||||
|
||||
echo "Getting commit..."
|
||||
pushd $PROJECT-$COMMIT
|
||||
git checkout $COMMIT
|
||||
cp composer.json ../composer.json
|
||||
popd
|
||||
|
||||
echo "Archiving..."
|
||||
tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs --exclude tools $PROJECT-$COMMIT
|
||||
|
||||
echo "Cleaning..."
|
||||
rm -rf $PROJECT-$COMMIT
|
||||
|
||||
echo "Done."
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
# Please, preserve the changelog entries
|
||||
#
|
||||
%global bootstrap 0
|
||||
%global gh_commit cdd86616411fc3062368b720b0425de10bd3d579
|
||||
%global gh_commit a32789e5f0157c10cf216ce6c5136db12a12b847
|
||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||
%global gh_owner sebastianbergmann
|
||||
%global gh_project recursion-context
|
||||
|
|
@ -26,13 +26,14 @@
|
|||
%endif
|
||||
|
||||
Name: php-%{pk_vendor}-%{pk_project}%{major}
|
||||
Version: 4.0.0
|
||||
Version: 4.0.1
|
||||
Release: 1%{?dist}
|
||||
Summary: Recursively process PHP variables
|
||||
|
||||
License: BSD
|
||||
URL: https://github.com/%{gh_owner}/%{gh_project}
|
||||
Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{name}-%{version}-%{gh_short}.tar.gz
|
||||
Source0: %{name}-%{version}-%{gh_short}.tgz
|
||||
Source1: makesrc.sh
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: php(language) >= 7.3
|
||||
|
|
@ -40,8 +41,7 @@ BuildRequires: php-fedora-autoloader-devel
|
|||
%if %{with_tests}
|
||||
# from composer.json, "require-dev": {
|
||||
# "phpunit/phpunit": "^9.0"
|
||||
# TODO test suite passes with v8, switch to v9 when available
|
||||
BuildRequires: phpunit8
|
||||
BuildRequires: phpunit9
|
||||
%endif
|
||||
|
||||
# from composer.json
|
||||
|
|
@ -80,10 +80,10 @@ touch vendor/autoload.php
|
|||
|
||||
: Run upstream test suite
|
||||
ret=0
|
||||
for cmd in php php73 php74; do
|
||||
for cmd in php php73 php74 php80; do
|
||||
if which $cmd; then
|
||||
$cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \
|
||||
%{_bindir}/phpunit8 --verbose || ret=1
|
||||
%{_bindir}/phpunit9 --verbose || ret=1
|
||||
fi
|
||||
done
|
||||
exit $ret
|
||||
|
|
@ -100,6 +100,10 @@ exit $ret
|
|||
|
||||
|
||||
%changelog
|
||||
* Tue Jun 16 2020 Remi Collet <remi@remirepo.net> - 4.0.1-1
|
||||
- update to 4.0.1
|
||||
- sources from git snapshot
|
||||
|
||||
* Fri Feb 7 2020 Remi Collet <remi@remirepo.net> - 4.0.0-1
|
||||
- update to 4.0.0
|
||||
- raise dependency on PHP 7.3
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (php-sebastian-recursion-context4-4.0.0-cdd8661.tar.gz) = a3b5a27a2f4d06356f24a7fa4f1d51e283daf6bbac6cdc5a43960dc9bafd0a9d43b33eff84b0021e98df780f5172acd40332cde1d9384fb44cc8339c2e64814b
|
||||
SHA512 (php-sebastian-recursion-context4-4.0.1-a32789e.tgz) = fa2d9fd948e8bfba59b7aa1894dcec425a8b314aaffaeaea5b588be4b8bdd8f7a00446aa750bfef5b766074491d2a39a8b71782a2fae2d1cafda0c76a2854a67
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue