From 10f24e00ae283cc1e6a14365219f04f39cc9cf8c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 11 May 2017 19:50:24 +0200 Subject: v2.4.7 --- composer.json | 7 +++++-- php-tracy.spec | 30 +++++++++++++----------------- 2 files changed, 18 insertions(+), 19 deletions(-) diff --git a/composer.json b/composer.json index 95d4d41..13d0011 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "tracy/tracy", - "description": "Tracy: useful PHP debugger", - "keywords": ["debug", "debugger", "nette"], + "description": "😎 Tracy: the addictive tool to ease debugging PHP code for cool developers. Friendly design, logging, profiler, advanced features like debugging AJAX calls or CLI support. You will love it.", + "keywords": ["debug", "debugger", "nette", "profiler", "xdebug"], "homepage": "https://tracy.nette.org", "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"], "authors": [ @@ -23,6 +23,9 @@ "nette/di": "~2.3", "nette/tester": "~2.0" }, + "suggest": { + "https://nette.org/donate": "\u001b[1;37;42m Please consider supporting Tracy via a donation \u001b[0m" + }, "autoload": { "classmap": ["src"], "files": ["src/shortcuts.php"] diff --git a/php-tracy.spec b/php-tracy.spec index a939dbd..66f4984 100644 --- a/php-tracy.spec +++ b/php-tracy.spec @@ -6,7 +6,7 @@ # # Please, preserve the changelog entries # -%global gh_commit c9fbca15b0a11d904c7783b7aad114182618d8d4 +%global gh_commit e9e93b778a75760a939593384e326fb65f9a0da2 #global gh_date 20150728 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner nette @@ -16,9 +16,9 @@ %global with_tests 0%{!?_without_tests:1} Name: php-%{gh_project} -Version: 2.4.6 +Version: 2.4.7 %global specrel 1 -Release: %{?gh_date:0.%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist} +Release: %{?gh_date:1%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist} Summary: Tracy: useful PHP debugger Group: Development/Libraries @@ -118,21 +118,14 @@ require_once '%{buildroot}%{php_home}/%{ns_vendor}/autoload.php'; EOF : Run test suite in sources tree -# remirepo:11 ret=0 -run=0 -if which php56; then - php56 %{_bindir}/nette-tester --colors 0 -p php56 -C tests -s || ret=1 - run=1 -fi -if which php71; then - php71 %{_bindir}/nette-tester --colors 0 -p php71 -C tests -d serialize_precision=14 -s || ret=1 - run=1 -fi -if [ $run -eq 0 ]; then -%{_bindir}/nette-tester --colors 0 -p php -C -d serialize_precision=14 tests -s -# remirepo:2 -fi +# PHP 7.1/7.2: Fatal error: Unknown: Cannot use output buffering in output buffering display handlers in Unknown on line 0 +# In local build, OK in mock +for cmd in php php56 php70 php71; do + if which $cmd; then + $cmd %{_bindir}/nette-tester --colors 0 -p $cmd -C tests -d serialize_precision=14 -s || ret=1 + fi +done exit $ret %else : Test suite disabled @@ -153,6 +146,9 @@ rm -rf %{buildroot} %changelog +* Thu May 11 2017 Remi Collet - 2.4.7-1 +- Update to 2.4.7 + * Mon Jan 30 2017 Remi Collet - 2.4.6-1 - update to 2.4.6 -- cgit