From 5676e55766dce298d416f5598d8c6b738430cb1b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Mar 2024 15:50:09 +0100 Subject: update to 3.0.5 (no change) sources from git snapshot --- makesrc.sh | 28 ++++++++++++++++++++++++++++ php-sebastian-object-enumerator3.spec | 17 +++++++++++------ 2 files changed, 39 insertions(+), 6 deletions(-) create mode 100755 makesrc.sh 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-object-enumerator3.spec b/php-sebastian-object-enumerator3.spec index df44b7e..a116e85 100644 --- a/php-sebastian-object-enumerator3.spec +++ b/php-sebastian-object-enumerator3.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-sebastian-object-enumerator3 # -# Copyright (c) 2015-2023 Remi Collet +# Copyright (c) 2015-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global bootstrap 0 -%global gh_commit e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2 +%global gh_commit ac5b293dba925751b808e02923399fb44ff0d541 #global gh_date 20150728 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann @@ -27,13 +27,14 @@ # NOTICE: used by phpunit 6, 7 and 8 Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 3.0.4 -Release: 9%{?dist} +Version: 3.0.5 +Release: 1%{?dist} Summary: Traverses array and object to enumerate all referenced objects, 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.0 @@ -116,7 +117,7 @@ find tests/ -name \*php -exec sed -e 's/setUp()/setUp():void/' -i {} \; : 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 %{_bindir}/php -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \ %{_bindir}/phpunit8 --verbose || ret=1 @@ -137,6 +138,10 @@ exit $ret %changelog +* Fri Mar 1 2024 Remi Collet - 3.0.5-1 +- update to 3.0.5 (no change) +- sources from git snapshot + * Fri Apr 21 2023 Remi Collet - 3.0.4-9 - use SPDX License id -- cgit