From f5ca514bf5516b48dcafb14f4396ee3ff3ea3255 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 21 Aug 2014 17:03:57 +0200 Subject: php-jsonlint: 1.2.0 (backport) --- php-jsonlint-bin-without-composer-autoloader.patch | 35 ++++++++++ php-jsonlint.spec | 76 ++++++++++++++++------ 2 files changed, 90 insertions(+), 21 deletions(-) create mode 100644 php-jsonlint-bin-without-composer-autoloader.patch diff --git a/php-jsonlint-bin-without-composer-autoloader.patch b/php-jsonlint-bin-without-composer-autoloader.patch new file mode 100644 index 0000000..fdad739 --- /dev/null +++ b/php-jsonlint-bin-without-composer-autoloader.patch @@ -0,0 +1,35 @@ +diff --git a/bin/jsonlint b/bin/jsonlint +index 1b9272a..c15cfa6 100755 +--- a/bin/jsonlint ++++ b/bin/jsonlint +@@ -1,4 +1,4 @@ +-#!/usr/bin/env php ++#!/usr/bin/php + +# Remi Collet +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# + %global github_owner Seldaek %global github_name jsonlint -%global github_version 1.1.2 -%global github_commit 7cd4c4965e17e6e4c07f26d566619a4c76f8c672 +%global github_version 1.2.0 +%global github_commit 9cae56dbe34f4392e7d0f559474df33749a39f8d +# "php": ">=5.3.0" %global php_min_ver 5.3.0 +# Build using "--without tests" to disable tests +%global with_tests %{?_without_tests:0}%{!?_without_tests:1} + Name: php-%{github_name} Version: %{github_version} -Release: 2%{?dist} +Release: 1%{?dist} Summary: JSON Lint for PHP Group: Development/Libraries @@ -15,19 +31,21 @@ License: MIT URL: https://github.com/%{github_owner}/%{github_name} Source0: %{url}/archive/%{github_commit}/%{name}-%{github_version}-%{github_commit}.tar.gz -# Upstream -Patch0: %{github_name}-phpunit.patch +# Bin usage without Composer autoloader +Patch0: %{name}-bin-without-composer-autoloader.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -# For tests +%if %{with_tests} +# For tests: composer.json BuildRequires: php(language) >= %{php_min_ver} BuildRequires: php-phpunit-PHPUnit -# For tests: phpcompatinfo +# For tests: phpcompatinfo (computed from version 1.2.0) BuildRequires: php-pcre +%endif Requires: php(language) >= %{php_min_ver} -# phpcompatinfo +# phpcompatinfo (computed from version 1.2.0) Requires: php-pcre Provides: php-composer(seld/jsonlint) = %{version} @@ -45,29 +63,39 @@ This library is a port of the JavaScript jsonlint %patch0 -p1 -# Create PSR-0 autoloader for tests -( cat <<'AUTOLOAD' - autoload.php - %build # Empty build section, nothing to build %install -mkdir -p -m 755 %{buildroot}%{_datadir}/php/Seld +# Lib +mkdir -p %{buildroot}%{_datadir}/php/Seld cp -rp src/Seld/JsonLint %{buildroot}%{_datadir}/php/Seld/ +# Bin +mkdir -p %{buildroot}%{_bindir} +install -pm 0755 bin/jsonlint %{buildroot}%{_bindir}/ + %check -%{_bindir}/phpunit --bootstrap=./autoload.php \ - --include-path=./src:./tests . +%if %{with_tests} +# Create autoloader +cat > autoload.php <<'AUTOLOAD' + phpunit.xml + +%{_bindir}/phpunit --bootstrap=./autoload.php --include-path=./src:./tests . +%else +: Tests skipped +%endif %files @@ -75,9 +103,15 @@ cp -rp src/Seld/JsonLint %{buildroot}%{_datadir}/php/Seld/ %doc LICENSE *.mdown composer.json %dir %{_datadir}/php/Seld %{_datadir}/php/Seld/JsonLint +%{_bindir}/jsonlint %changelog +* Wed Aug 20 2014 Shawn Iwinski - 1.2.0-1 +- Updated to 1.2.0 (BZ #1124228) +- Added option to build without tests ("--without tests") +- Added bin + * Mon Jun 9 2014 Remi Collet - 1.1.2-2 - fix FTBFS, include path during test - upstream patch for latest PHPUnit -- cgit