update to 2.1.4 (no change)
sources from git snapshot
This commit is contained in:
parent
b7d3af0219
commit
14c5cec605
4 changed files with 41 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,3 +2,4 @@
|
|||
/php-phpunit-php-timer2-2.1.1-8b389ae.tar.gz
|
||||
/php-phpunit-php-timer2-2.1.2-1038454.tar.gz
|
||||
/php-phpunit-php-timer2-2.1.3-2454ae1.tar.gz
|
||||
/php-phpunit-php-timer2-2.1.4-a691211.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."
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# remirepo/fedora spec file for php-phpunit-php-timer2
|
||||
#
|
||||
# Copyright (c) 2010-2023 Christof Damian, Remi Collet
|
||||
# Copyright (c) 2010-2024 Christof Damian, Remi Collet
|
||||
#
|
||||
# License: MIT
|
||||
# http://opensource.org/licenses/MIT
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
# Please, preserve the changelog entries
|
||||
#
|
||||
%global bootstrap 0
|
||||
%global gh_commit 2454ae1765516d20c4ffe103d85a58a9a3bd5662
|
||||
%global gh_commit a691211e94ff39a34811abd521c31bd5b305b0bb
|
||||
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
|
||||
%global gh_owner sebastianbergmann
|
||||
%global gh_project php-timer
|
||||
|
|
@ -28,13 +28,14 @@
|
|||
%endif
|
||||
|
||||
Name: php-%{pk_vendor}-%{pk_project}%{major}
|
||||
Version: 2.1.3
|
||||
Release: 10%{?dist}
|
||||
Version: 2.1.4
|
||||
Release: 1%{?dist}
|
||||
Summary: PHP Utility class for timing
|
||||
|
||||
License: BSD-3-Clause
|
||||
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.2
|
||||
|
|
@ -84,7 +85,7 @@ touch vendor/autoload.php
|
|||
|
||||
: Run upstream test suite
|
||||
ret=0
|
||||
for cmd in php php80 php81 php82; do
|
||||
for cmd in php php81 php82 php83; do
|
||||
if which $cmd; then
|
||||
$cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}/autoload.php \
|
||||
%{_bindir}/phpunit8 --verbose || ret=1
|
||||
|
|
@ -103,6 +104,10 @@ exit $ret
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Mar 1 2024 Remi Collet <remi@remirepo.net> - 2.1.4-1
|
||||
- update to 2.1.4 (no change)
|
||||
- sources from git snapshot
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.3-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (php-phpunit-php-timer2-2.1.3-2454ae1.tar.gz) = ee750b5d57eca9af8a327f50d557d16feae29c487dc6420caf2127e2e6b486010bab95e455bb9da7e487b5d9e2a7cd2d4d2aa19622429cc08d907e0263c2fdd4
|
||||
SHA512 (php-phpunit-php-timer2-2.1.4-a691211.tgz) = 0ea06d2db0eb91fe5a8bed06425b79ee43397b9c018a444a8aeaeadfdc721295aa2f525e6a3e67d9e53919073c9f91470a0cab1a43b2040b10e60a412e9b9250
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue