diff options
| -rwxr-xr-x | makesrc.sh | 28 | ||||
| -rw-r--r-- | php-sebastian-resource-operations2.spec | 29 |
2 files changed, 47 insertions, 10 deletions
diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..3d8028d --- /dev/null +++ b/makesrc.sh @@ -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." diff --git a/php-sebastian-resource-operations2.spec b/php-sebastian-resource-operations2.spec index 8d01f7c..40c86fc 100644 --- a/php-sebastian-resource-operations2.spec +++ b/php-sebastian-resource-operations2.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-sebastian-resource-operations2 # -# Copyright (c) 2015-2023 Remi Collet -# License: CC-BY-SA-4.0 -# http://creativecommons.org/licenses/by-sa/4.0/ +# SPDX-FileCopyrightText: Copyright 2015-2025 Remi Collet +# SPDX-License-Identifier: CECILL-2.1 +# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt # # Please, preserve the changelog entries # %global bootstrap 0 -%global gh_commit 31d35ca87926450c44eae7e2611d45a7a65ea8b3 +%global gh_commit 72a7f7674d053d548003b16ff5a106e7e0e06eee #global gh_date 20150728 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann @@ -23,19 +23,20 @@ %endif Name: php-sebastian-resource-operations%{major} -Version: 2.0.2 -Release: 2%{?dist} +Version: 2.0.3 +Release: 4%{?dist} Summary: Provides a list of PHP built-in functions that operate on resources, version %{major} 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.1 BuildRequires: php-fedora-autoloader-devel %if %{with_tests} -BuildRequires: phpunit7 +BuildRequires: phpunit8 %endif # from composer.json @@ -74,10 +75,10 @@ cp -pr src %{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major} %if %{with_tests} : Run upstream test suite ret=0 -for cmd in php php80 php81 php82; do +for cmd in php php81 php82 php83 php84; do if which $cmd; then $cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ - %{_bindir}/phpunit7 --verbose tests || ret=1 + %{_bindir}/phpunit8 --verbose tests || ret=1 fi done exit $ret @@ -95,6 +96,14 @@ exit $ret %changelog +* Thu Jun 26 2025 Remi Collet <remi@remirepo.net> - 2.0.3-4 +- use phpunit8 +- re-license spec file to CECILL-2.1 + +* Fri Mar 1 2024 Remi Collet <remi@remirepo.net> - 2.0.3-1 +- update to 2.0.3 (no change) +- sources from git snapshot + * Fri Apr 21 2023 Remi Collet <remi@remirepo.net> - 2.0.2-2 - use SPDX License id |
