From 684da00f6062d43a10fc112e1b1a0efba54f2156 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Oct 2018 10:22:54 +0200 Subject: [PATCH 1/2] v1.9.16 (cherry picked from commit 2b4e053b083a27c971ba3ca375125f2a45e97437) --- .gitignore | 1 + php-getid3.spec | 13 +++++++++---- sources | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 86665fc..4260b28 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ getid3-2.0.0b5.zip /getID3-1.9.13-b9a8564.tar.gz /getID3-1.9.14-30bd114.tar.gz /getID3-1.9.15-df9b441.tar.gz +/getID3-1.9.16-7aec0d4.tar.gz diff --git a/php-getid3.spec b/php-getid3.spec index a68662a..46eaca5 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit df9b441e547da1018b1be0e239bee095c9962c96 +%global gh_commit 7aec0d4f5fc156612f71e415d07996aee6ab8d82 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner JamesHeinrich %global gh_project getID3 @@ -14,8 +14,8 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.15 -Release: 2%{?dist} +Version: 1.9.16 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -29,14 +29,16 @@ BuildRequires: php-fedora-autoloader-devel # from composer.json # "php": ">=5.3.0" Requires: php(language) >= 5.3.0 -# from phpcompatinfo for version 1.9.12 +# from phpcompatinfo for version 1.9.16 Requires: php-simplexml Requires: php-ctype Requires: php-date Requires: php-exif +Requires: php-filter Requires: php-gd Requires: php-iconv Requires: php-libxml +Requires: php-mbstring Requires: php-pcre Requires: php-xml # Optional: dba, mysql, mysqli, sqlite3, rar @@ -90,6 +92,9 @@ exit ($ok ? 0 : 1); %changelog +* Thu Oct 18 2018 Remi Collet - 1.9.16-1 +- update to 1.9.16 + * Fri Feb 09 2018 Fedora Release Engineering - 1:1.9.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index 3a364e2..19bf152 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (getID3-1.9.15-df9b441.tar.gz) = 12de3d093b2e04af09eca8cec6ef1de565197c70ea7a09737b0d2ee4887f4aa9876ea9b8ed62ca1a6c029c24affad7a8f41e2ba798a4b67fcb573ecce5ee62aa +SHA512 (getID3-1.9.16-7aec0d4.tar.gz) = ed17179d79634da5dfc514fb8f563f51884629e502b6c3ad4e21a6ec2a930600030a2dcaa15187fa4f0564d78855b70ef175cefb467aee57d7903bfec2365199 From c7196a645f4107983908f9c14068b7c03e8985f1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 8 Feb 2019 10:06:15 +0100 Subject: [PATCH 2/2] update to 1.9.17 add weak dependencies on suggested extension (cherry picked from commit 6dd230c5e59d864d5abcd9056284c85416ef65fd) (cherry picked from commit 1f2f6de71b0520c58330cbb20d27ebe9934d421d) --- .gitignore | 1 + php-getid3.spec | 19 ++++++++++++++----- sources | 2 +- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 4260b28..9906a50 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ getid3-2.0.0b5.zip /getID3-1.9.14-30bd114.tar.gz /getID3-1.9.15-df9b441.tar.gz /getID3-1.9.16-7aec0d4.tar.gz +/getID3-1.9.17-d2e45f2.tar.gz diff --git a/php-getid3.spec b/php-getid3.spec index 46eaca5..0cd175e 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 7aec0d4f5fc156612f71e415d07996aee6ab8d82 +%global gh_commit d2e45f2c4f75cc7443e158757ad2d678e318685d %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner JamesHeinrich %global gh_project getID3 @@ -14,13 +14,12 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.16 +Version: 1.9.17 Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser -Group: Development/Libraries -URL: http://www.getid3.org/ +URL: https://www.getid3.org/ Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz BuildArch: noarch @@ -37,11 +36,17 @@ Requires: php-exif Requires: php-filter Requires: php-gd Requires: php-iconv +Requires: php-json Requires: php-libxml Requires: php-mbstring Requires: php-pcre Requires: php-xml -# Optional: dba, mysql, mysqli, sqlite3, rar +%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 +Suggests: php-dba +Suggests: php-mysqli +Suggests: php-rar +Suggests: php-sqlite3 +%endif # Autoloader Requires: php-composer(fedora/autoloader) @@ -92,6 +97,10 @@ exit ($ok ? 0 : 1); %changelog +* Fri Feb 8 2019 Remi Collet - 1.9.17-1 +- update to 1.9.17 +- add weak dependencies on suggested extension + * Thu Oct 18 2018 Remi Collet - 1.9.16-1 - update to 1.9.16 diff --git a/sources b/sources index 19bf152..863f268 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (getID3-1.9.16-7aec0d4.tar.gz) = ed17179d79634da5dfc514fb8f563f51884629e502b6c3ad4e21a6ec2a930600030a2dcaa15187fa4f0564d78855b70ef175cefb467aee57d7903bfec2365199 +SHA512 (getID3-1.9.17-d2e45f2.tar.gz) = 0824840d161e80f597e36d85cd6da4f74181d0b78d0ae1015ea510ec30bbb943919428f981c9dadb684813e93cf10d3137105a32ca710dee908eb7b0cbf79165