# remirepo/fedora spec file for php-udan11-sql-parser # # Copyright (c) 2015-2016 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %global gh_commit 5c489d91f561cb0a63e0b63b29d6da71f626a137 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner udan11 #global gh_date 20150820 %global gh_project sql-parser %global with_tests 0%{!?_without_tests:1} %global psr0 SqlParser Name: php-%{gh_owner}-%{gh_project} Version: 3.4.0 Release: 1%{?gh_date?%{gh_date}git%{gh_short}}%{?dist} Summary: A validating SQL lexer and parser with a focus on MySQL dialect Group: Development/Libraries License: GPLv2+ URL: https://github.com/%{gh_owner}/%{gh_project} Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{?gh_short}.tar.gz # patch from phpMyAdmin 4.5.5.1 # https://github.com/phpmyadmin/phpmyadmin/commit/3a6a9a807d99371ee126635e1a505fc1fe0df32c Patch0: %{name}-pma.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch %if %{with_tests} BuildRequires: php(language) >= 5.4.0 # For tests, from composer.json "require-dev": { # "phpunit/php-code-coverage": "~2.0 || ~3.0", # "phpunit/phpunit": "~4.8 || ~5.1" BuildRequires: php-composer(phpunit/phpunit) %endif # For autoloader BuildRequires: php-composer(theseer/autoload) # From composer.json, "require": { # "php": ">=5.4.0" Requires: php(language) >= 5.4 # From phpcompatinfo report for 20150629 Requires: php-ctype Requires: php-mbstring Requires: php-pcre # For generated autoloader Requires: php-spl # Rename Obsoletes: php-dmitry-php-sql-parser < 0-0.2 Provides: php-dmitry-php-sql-parser = %{version}-%{release} # Composer Provides: php-composer(%{gh_owner}/%{gh_project}) = %{version} %description A validating SQL lexer and parser with a focus on MySQL dialect. This library was originally developed for phpMyAdmin during the Google Summer of Code 2015. To use this library, you just have to add, in your project: require_once '%{_datadir}/php/%{psr0}/autoload.php'; %prep %setup -q -n %{gh_project}-%{gh_commit} %patch0 -p3 %build : generate an simple autoloader %{_bindir}/phpab --output src/autoload.php src %install rm -rf %{buildroot} mkdir -p %{buildroot}%{_datadir}/php cp -pr src %{buildroot}%{_datadir}/php/%{psr0} %check %if %{with_tests} mkdir vendor cat << 'EOF' | tee vendor/autoload.php - 3.4.0-1 - update to 3.4.0 (for phpMyAdmin 4.5.5.1) - add patch from phpMyAdmin - raise dependency on php >= 5.4 * Tue Feb 23 2016 Remi Collet - 3.3.1-1 - update to 3.3.1 (for phpMyAdmin 4.5.5) - don't run test with old PHPUnit (EPEL-6) * Sat Dec 26 2015 Remi Collet - 3.0.8-1 - update to 3.0.8 (for phpMyAdmin 4.5.3) * Fri Nov 13 2015 Remi Collet - 3.0.7-1 - update to 3.0.7 - run test suite with both PHP 5 and 7 when available * Sun Nov 8 2015 Remi Collet - 3.0.5-1 - update to 3.0.5 * Thu Oct 22 2015 Remi Collet - 3.0.4-1 - update to 3.0.4 (for upcoming phpMyAdmin 4.5.1) * Mon Oct 19 2015 Remi Collet - 3.0.3-1 - update to 3.0.3 (for upcoming phpMyAdmin 4.5.1) * Wed Sep 23 2015 Remi Collet - 1.0.0-2 - upstream patch for phpMyAdmin 4.5.0.2 * Wed Sep 23 2015 Remi Collet - 1.0.0-1 - tagged as 1.0.0 (no change) * Sun Sep 20 2015 Remi Collet - 0-0.3.20150820git1b2988f - fix provides and self-obsoletion (review #1262807) * Mon Sep 14 2015 Remi Collet - 0-0.2.20150820git1b2988f - rename to php-udan11-sql-parser * Mon Sep 14 2015 Remi Collet - 0-0.1.20150629git4aaed44 - initial package