summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2026-06-02 07:13:31 +0200
committerRemi Collet <remi@php.net>2026-06-02 07:13:31 +0200
commitf014e0b7f2be44a62674c64c14a7ad358f04cecb (patch)
tree2d0dd4f571732f45e8d075741e4f9a2fbc366a31
parent330423e332868b968cb77ed90bf725a2f21746c8 (diff)
update to 8.0.3HEADmaster
raise dependency on sebastian/recursion-context 7.0.1
-rw-r--r--composer.json4
-rwxr-xr-xmakesrc.sh26
-rw-r--r--php-sebastian-global-state8.spec25
3 files changed, 24 insertions, 31 deletions
diff --git a/composer.json b/composer.json
index ecd4b53..9aec62e 100644
--- a/composer.json
+++ b/composer.json
@@ -25,11 +25,11 @@
"require": {
"php": ">=8.3",
"sebastian/object-reflector": "^5.0",
- "sebastian/recursion-context": "^7.0"
+ "sebastian/recursion-context": "^7.0.1"
},
"require-dev": {
"ext-dom": "*",
- "phpunit/phpunit": "^12.0"
+ "phpunit/phpunit": "^12.5.28"
},
"autoload": {
"classmap": [
diff --git a/makesrc.sh b/makesrc.sh
index b959795..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 || exit1
- 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-global-state8.spec b/php-sebastian-global-state8.spec
index d05fd0a..56fecbe 100644
--- a/php-sebastian-global-state8.spec
+++ b/php-sebastian-global-state8.spec
@@ -1,6 +1,6 @@
# spec file for php-sebastian-global-state8
#
-# SPDX-FileCopyrightText: Copyright 2014-2025 Remi Collet
+# SPDX-FileCopyrightText: Copyright 2014-2026 Remi Collet
# SPDX-License-Identifier: CECILL-2.1
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
#
@@ -9,11 +9,8 @@
%bcond_without tests
-%global gh_commit ef1377171613d09edd25b7816f05be8313f9115d
-%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner sebastianbergmann
%global gh_project global-state
-%global gh_date 2025-08-29
# Packagist
%global pk_vendor sebastian
%global pk_project %{gh_project}
@@ -24,14 +21,14 @@
%global php_home %{_datadir}/php
Name: php-%{pk_vendor}-%{pk_project}%{major}
-Version: 8.0.2
+Version: 8.0.3
Release: 1%{?dist}
Summary: Snapshotting of global state, 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
@@ -40,21 +37,21 @@ BuildRequires: php(language) >= 8.3
BuildRequires: php-fedora-autoloader-devel >= 1.0.0
%if %{with tests}
BuildRequires: (php-composer(sebastian/object-reflector) >= 5.0 with php-composer(sebastian/object-reflector) < 6)
-BuildRequires: (php-composer(sebastian/recursion-context) >= 7.0 with php-composer(sebastian/recursion-context) < 8)
+BuildRequires: (php-composer(sebastian/recursion-context) >= 7.0.1 with php-composer(sebastian/recursion-context) < 8)
# from composer.json, "require-dev": {
# "ext-dom": "*",
-# "phpunit/phpunit": "^12.0"
+# "phpunit/phpunit": "^12.5.28"
BuildRequires: php-dom
-BuildRequires: phpunit12
+BuildRequires: phpunit12 >= 12.5.28
%endif
# from composer.json, "require": {
# "php": ">=8.3",
# "sebastian/object-reflector": "^5.0",
-# "sebastian/recursion-context": "^7.0"
+# "sebastian/recursion-context": "^7.0.1"
Requires: php(language) >= 8.3
Requires: (php-composer(sebastian/object-reflector) >= 5.0 with php-composer(sebastian/object-reflector) < 6)
-Requires: (php-composer(sebastian/recursion-context) >= 7.0 with php-composer(sebastian/recursion-context) < 8)
+Requires: (php-composer(sebastian/recursion-context) >= 7.0.1 with php-composer(sebastian/recursion-context) < 8)
# from phpcompatinfo report for version 6.0.0
# Autoloader
Requires: php-composer(fedora/autoloader)
@@ -72,7 +69,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
@@ -130,6 +127,10 @@ exit $ret
%changelog
+* Tue Jun 2 2026 Remi Collet <remi@remirepo.net> - 8.0.3-1
+- update to 8.0.3
+- raise dependency on sebastian/recursion-context 7.0.1
+
* Fri Aug 29 2025 Remi Collet <remi@remirepo.net> - 8.0.2-1
- update to 8.0.2