From 6930fb462b9415b0edbf7460da153f0eaddf8507 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 8 Apr 2026 07:53:46 +0200 Subject: update to 7.1.5 --- makesrc.sh | 26 +++++++++----------------- php-sebastian-comparator7.spec | 12 ++++++------ 2 files changed, 15 insertions(+), 23 deletions(-) diff --git a/makesrc.sh b/makesrc.sh index ac0c720..59cf430 100755 --- a/makesrc.sh +++ b/makesrc.sh @@ -1,35 +1,27 @@ #!/bin/bash NAME=$(basename $PWD) -DATE=$(sed -n '/^%global gh_date/{s/.* //;p}' $NAME.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} -DATE=$(date -d "$DATE -4 days" +%Y-%m-%d) - -if [ -f $NAME-$VERSION-$SHORT.tgz ]; then - echo "$NAME-$VERSION-$SHORT.tgz already there" +if [ -f $NAME-$VERSION.tgz ]; then + echo "$NAME-$VERSION.tgz already there" else - echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION, Date=$DATE\n" + echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION \n" echo "Cloning..." - rm -rf $PROJECT-$COMMIT - git clone --shallow-since=$DATE https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT || exit 1 + rm -rf $PROJECT-$VERSION + git clone https://github.com/$OWNER/$PROJECT.git --depth 1 --branch $VERSION $PROJECT-$VERSION || exit 1 - echo "Getting commit..." - pushd $PROJECT-$COMMIT - git checkout $COMMIT || exit 1 - cp composer.json ../composer.json - popd + echo "Getting composer..." + cp $PROJECT-$VERSION/composer.json composer.json echo "Archiving..." - tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs --exclude tools $PROJECT-$COMMIT + tar czf $NAME-$VERSION.tgz --exclude-vcs --exclude tools $PROJECT-$VERSION echo "Cleaning..." - rm -rf $PROJECT-$COMMIT + rm -rf $PROJECT-$VERSION echo "Done." fi diff --git a/php-sebastian-comparator7.spec b/php-sebastian-comparator7.spec index ff8c174..b191b06 100644 --- a/php-sebastian-comparator7.spec +++ b/php-sebastian-comparator7.spec @@ -9,11 +9,8 @@ %bcond_without tests -%global gh_commit 6a7de5df2e094f9a80b40a522391a7e6022df5f6 -%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner sebastianbergmann %global gh_project comparator -%global gh_date 2026-01-24 # Packagist %global pk_vendor sebastian %global pk_project %{gh_project} @@ -24,14 +21,14 @@ %global ns_project Comparator Name: php-%{pk_vendor}-%{pk_project}%{major} -Version: 7.1.4 +Version: 7.1.5 Release: 1%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause URL: https://github.com/%{gh_owner}/%{gh_project} # run makesrc.sh to create a git snapshot with test suite -Source0: %{name}-%{version}-%{gh_short}.tgz +Source0: %{name}-%{version}.tgz Source1: makesrc.sh BuildArch: noarch @@ -76,7 +73,7 @@ Autoloader: %{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php %prep -%setup -q -n %{gh_project}-%{gh_commit} +%setup -q -n %{gh_project}-%{version} %build @@ -124,6 +121,9 @@ exit $ret %changelog +* Wed Apr 8 2026 Remi Collet - 7.1.5-1 +- update to 7.1.5 + * Mon Jan 26 2026 Remi Collet - 7.1.4-1 - update to 7.1.4 -- cgit