summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmakesrc.sh2
-rw-r--r--php-sebastian-exporter7.spec20
2 files changed, 15 insertions, 7 deletions
diff --git a/makesrc.sh b/makesrc.sh
index b959795..ac0c720 100755
--- a/makesrc.sh
+++ b/makesrc.sh
@@ -21,7 +21,7 @@ else
echo "Getting commit..."
pushd $PROJECT-$COMMIT
- git checkout $COMMIT || exit1
+ git checkout $COMMIT || exit 1
cp composer.json ../composer.json
popd
diff --git a/php-sebastian-exporter7.spec b/php-sebastian-exporter7.spec
index f95cd87..097608a 100644
--- a/php-sebastian-exporter7.spec
+++ b/php-sebastian-exporter7.spec
@@ -7,14 +7,13 @@
# Please, preserve the changelog entries
#
-# disabled until phpunit12 available
-%bcond_with tests
+%bcond_without tests
-%global gh_commit 76432aafc58d50691a00d86d0632f1217a47b688
+%global gh_commit 016951ae10980765e4e7aee491eb288c64e505b7
%global gh_short %(c=%{gh_commit}; echo ${c:0:7})
%global gh_owner sebastianbergmann
%global gh_project exporter
-%global gh_date 2025-02-07
+%global gh_date 2025-09-24
# Packagist
%global pk_vendor sebastian
%global pk_project %{gh_project}
@@ -27,7 +26,7 @@
%global pear_channel pear.phpunit.de
Name: php-%{pk_vendor}-%{pk_project}%{major}
-Version: 7.0.0
+Version: 7.0.2
Release: 1%{?dist}
Summary: Export PHP variables for visualization, version %{major}
@@ -96,7 +95,7 @@ phpab --template fedora --output vendor/autoload.php tests/_fixture/
: Run upstream test suite
ret=0
-for cmd in php php83 php84; do
+for cmd in php php83 php84 php85; do
if which $cmd; then
$cmd -d auto_prepend_file=%{buildroot}%{php_home}/%{ns_vendor}/%{ns_project}%{major}/autoload.php \
%{_bindir}/phpunit12 --bootstrap vendor/autoload.php || ret=1
@@ -114,6 +113,15 @@ exit $ret
%changelog
+* Wed Sep 24 2025 Remi Collet <remi@remirepo.net> - 7.0.2-1
+- update to 7.0.2
+
+* Mon Sep 22 2025 Remi Collet <remi@remirepo.net> - 7.0.1-1
+- update to 7.0.1
+
+* Mon Feb 10 2025 Remi Collet <remi@remirepo.net> - 7.0.0-2
+- enable test suite
+
* Fri Feb 7 2025 Remi Collet <remi@remirepo.net> - 7.0.0-1
- update to 7.0.0
- raise dependency on PHP 8.3