diff options
author | Remi Collet <remi@remirepo.net> | 2017-04-30 06:30:25 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2017-04-30 06:30:25 +0200 |
commit | 281d1a5257dd307423a1b3153b7b13c13dd8a1f3 (patch) | |
tree | a105f5d7fdb27724608f00ac10e6cf7997ca9ecf | |
parent | 407fc78e1643eab0b352a60f7c87ad8d94a1692e (diff) |
minor fix
-rw-r--r-- | php-phpmyadmin-sql-parser.spec | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/php-phpmyadmin-sql-parser.spec b/php-phpmyadmin-sql-parser.spec index 8864134..f2ffa73 100644 --- a/php-phpmyadmin-sql-parser.spec +++ b/php-phpmyadmin-sql-parser.spec @@ -18,7 +18,7 @@ Name: php-%{gh_owner}-%{gh_project} Version: 4.1.3 -Release: 1%{?gh_date?%{gh_date}git%{gh_short}}%{?dist} +Release: 2%{?gh_date?%{gh_date}git%{gh_short}}%{?dist} Summary: A validating SQL lexer and parser with a focus on MySQL dialect Group: Development/Libraries @@ -132,7 +132,7 @@ require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; EOF ret=0 -for cmd in php56 php70 php71 php; do +for cmd in php php56 php70 php71 php72; do if which $cmd; then $cmd %{_bindir}/phpunit --no-coverage --verbose || ret=1 fi @@ -143,7 +143,7 @@ exit $ret %endif -%if 0%{?rhel} >= 12 || 0%{?rhel} >= 7 +%if 0%{?fedora} >= 12 || 0%{?rhel} >= 7 %files -f sqlparser.lang %else %files @@ -168,6 +168,9 @@ exit $ret %changelog +* Sun Apr 30 2017 Remi Collet <remi@remirepo.net> - 4.1.3-2 +- fix lang files installation from review #1415686 + * Thu Apr 6 2017 Remi Collet <remi@remirepo.net> - 4.1.3-1 - Update to 4.1.3 |