From cccecb3891740942daf4d7a571b603fa34a8ebf7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 14:09:35 +0000 Subject: [PATCH 01/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 77a4130..a50c552 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -2,7 +2,7 @@ Name: php-getid3 Version: 1.9.8 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -63,6 +63,9 @@ cp -a getid3 %{buildroot}%{_datadir}/php/ %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 1:1.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Thu Aug 21 2014 Remi Collet - 1:1.9.8-2 - fix minimal PHP version - add explicit dependencies for all php extensions From 3d088c14cd99ddb04466bd29c2598f5590a602be Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 17:06:38 +0000 Subject: [PATCH 02/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index a50c552..5546deb 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -2,7 +2,7 @@ Name: php-getid3 Version: 1.9.8 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -63,6 +63,9 @@ cp -a getid3 %{buildroot}%{_datadir}/php/ %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1:1.9.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jun 18 2015 Fedora Release Engineering - 1:1.9.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 1de9f198f328e69a58e3caad8a4658cd9aca4812 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 22 Apr 2016 09:19:24 +0200 Subject: [PATCH 03/35] - update to 1.9.12 - add simple classmap autoloader #1319676 --- .gitignore | 2 ++ php-getid3.spec | 36 +++++++++++++++++++++++++++--------- sources | 2 +- 3 files changed, 30 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index d4cf85e..93ab509 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ +clog getid3-2.0.0b5.zip /getid3-1.9.3-20111213.zip /getID3-1.9.7.zip /getID3-1.9.8-20140511.zip +/getID3-1.9.12.zip diff --git a/php-getid3.spec b/php-getid3.spec index 5546deb..d4f5d07 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -1,26 +1,34 @@ -%global date 20140511 - +# Fedora spec file for php-getid3 +# +# License: MIT +# http://opensource.org/licenses/MIT +# +# Please preserve changelog entries +# Name: php-getid3 -Version: 1.9.8 -Release: 4%{?dist} +Version: 1.9.12 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser Group: Development/Libraries URL: http://getid3.sourceforge.net/ -Source0: http://downloads.sourceforge.net/getid3/getID3-%{version}-%{date}.zip +Source0: http://downloads.sourceforge.net/getid3/getID3-%{version}.zip BuildArch: noarch +BuildRequires: %{_bindir}/phpab # from composer.json # "php": ">=5.3.0" Requires: php(language) >= 5.3.0 -# from phpcompatinfo for version 1.9.8 +# from phpcompatinfo for version 1.9.12 +Requires: php-simplexml Requires: php-ctype Requires: php-date Requires: php-exif Requires: php-gd Requires: php-iconv +Requires: php-libxml Requires: php-pcre Requires: php-xml # Optional: dba, mysql, sqlite3, rar @@ -34,9 +42,12 @@ getID3() is a PHP script that extracts useful information other multimedia file formats (Ogg, WMA, WMV, ASF, WAV, AVI, AAC, VQF, FLAC, MusePack, Real, QuickTime, Monkey's Audio, MIDI and more). +Autoloader: %{_datadir}/php/getid3/autoload.php + %prep -%setup -q -c +%setup -q -n getID3-%{version} + for i in ./*.txt licenses/*.txt demos/*.php; do iconv -f iso-8859-1 -t utf-8 < "$i" > "${i}_" touch -r "$i" "${i}_" @@ -47,6 +58,9 @@ sed -i 's/\r//' changelog.txt %build +# From composer.json, "autoload": { +# "classmap": ["getid3/getid3.php"] +%{_bindir}/phpab --output getid3/autoload.php getid3/getid3.php %install @@ -57,12 +71,16 @@ cp -a getid3 %{buildroot}%{_datadir}/php/ %files %doc changelog.txt dependencies.txt readme.txt structure.txt demos %doc composer.json -%{?_licensedir:%license licenses/*} -%{!?_licensedir:%doc licenses} +%{?_licensedir:%license licenses license.txt} +%{!?_licensedir:%doc licenses license.txt} %{_datadir}/php/getid3 %changelog +* Mon Mar 21 2016 Remi Collet - 1:1.9.12-1 +- update to 1.9.12 +- add simple classmap autoloader #1319676 + * Thu Feb 04 2016 Fedora Release Engineering - 1:1.9.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 1a28eae..ddf9f5b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -64712d3562e60fae6be887c4aab85a27 getID3-1.9.8-20140511.zip +1f770e6016db07daf41e68ec4d2d62f3 getID3-1.9.12.zip From b8a387109ed9b6d28098eae4ca0c156f80775b74 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 15 Dec 2016 14:35:16 +0100 Subject: [PATCH 04/35] update to 1.9.13 use new URL http://www.getid3.org/ use sources from github switch to fedora/autoloader add minimal check for autoloader --- .gitignore | 1 + php-getid3.spec | 57 ++++++++++++++++++++++++++++++++----------------- sources | 2 +- 3 files changed, 40 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 93ab509..7ef4c63 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ getid3-2.0.0b5.zip /getID3-1.9.7.zip /getID3-1.9.8-20140511.zip /getID3-1.9.12.zip +/getID3-1.9.13-b9a8564.tar.gz diff --git a/php-getid3.spec b/php-getid3.spec index d4f5d07..f90561b 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -1,3 +1,4 @@ +# # Fedora spec file for php-getid3 # # License: MIT @@ -5,18 +6,25 @@ # # Please preserve changelog entries # -Name: php-getid3 -Version: 1.9.12 +%global gh_commit b9a8564e56bdcc294dc7ade32a7f67885bed3778 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_owner JamesHeinrich +%global gh_project getID3 +%global pk_owner james-heinrich +%global pk_project getid3 + +Name: php-%{pk_project} +Version: 1.9.13 Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser Group: Development/Libraries -URL: http://getid3.sourceforge.net/ -Source0: http://downloads.sourceforge.net/getid3/getID3-%{version}.zip +URL: http://www.getid3.org/ +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz BuildArch: noarch -BuildRequires: %{_bindir}/phpab +BuildRequires: php-fedora-autoloader-devel # from composer.json # "php": ">=5.3.0" @@ -31,9 +39,11 @@ Requires: php-iconv Requires: php-libxml Requires: php-pcre Requires: php-xml -# Optional: dba, mysql, sqlite3, rar +# Optional: dba, mysql, mysqli, sqlite3, rar +# Autoloader +Requires: php-composer(fedora/autoloader) -Provides: php-composer(james-heinrich/getid3) = %{version} +Provides: php-composer(%{pk_owner}/%{pk_project}) = %{version} %description @@ -46,37 +56,46 @@ Autoloader: %{_datadir}/php/getid3/autoload.php %prep -%setup -q -n getID3-%{version} - -for i in ./*.txt licenses/*.txt demos/*.php; do - iconv -f iso-8859-1 -t utf-8 < "$i" > "${i}_" - touch -r "$i" "${i}_" - mv "${i}_" "$i" -done -sed -i 's/\r//' demos/index.php -sed -i 's/\r//' changelog.txt +%setup -q -n %{gh_project}-%{gh_commit} %build # From composer.json, "autoload": { # "classmap": ["getid3/getid3.php"] -%{_bindir}/phpab --output getid3/autoload.php getid3/getid3.php +%{_bindir}/phpab --template fedora --output getid3/autoload.php getid3/getid3.php %install + mkdir -p %{buildroot}%{_datadir}/php cp -a getid3 %{buildroot}%{_datadir}/php/ +%check +php -r ' +require "%{buildroot}%{_datadir}/php/getid3/autoload.php"; +$ok = class_exists("getID3"); +echo "Autoload " . ($ok ? "Ok\n" : "fails\n"); +exit ($ok ? 0 : 1); +' + + %files +%{!?_licensedir:%global license %%doc} +%license licenses license.txt %doc changelog.txt dependencies.txt readme.txt structure.txt demos %doc composer.json -%{?_licensedir:%license licenses license.txt} -%{!?_licensedir:%doc licenses license.txt} %{_datadir}/php/getid3 %changelog +* Thu Dec 15 2016 Remi Collet - 1:1.9.13-1 +- update to 1.9.13 +- use new URL http://www.getid3.org/ +- use sources from github +- switch to fedora/autoloader +- add minimal check for autoloader + * Mon Mar 21 2016 Remi Collet - 1:1.9.12-1 - update to 1.9.12 - add simple classmap autoloader #1319676 diff --git a/sources b/sources index ddf9f5b..1724af0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1f770e6016db07daf41e68ec4d2d62f3 getID3-1.9.12.zip +SHA512 (getID3-1.9.13-b9a8564.tar.gz) = 6286bdbbb790c0deed777490ba84731949a541ab302217c742ba4d0c15247f0844651337da2c7f67f7098c4929dd45eaceb9a203bae9a9d07b148c7803e4bcb5 From 0073e4add836a6dbe193b35cc61c5d87afd1d689 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 06:31:09 +0000 Subject: [PATCH 05/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index f90561b..4808dfa 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.13 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -89,6 +89,9 @@ exit ($ok ? 0 : 1); %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 1:1.9.13-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Dec 15 2016 Remi Collet - 1:1.9.13-1 - update to 1.9.13 - use new URL http://www.getid3.org/ From 22084a99921cd625c23c4c4d1e1d043de0f6cecc Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 28 Mar 2017 07:33:09 +0200 Subject: [PATCH 06/35] Update to 1.9.14 handle all classes in autoloader --- .gitignore | 1 + php-getid3.spec | 18 ++++++++++++------ sources | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 7ef4c63..19f1043 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ getid3-2.0.0b5.zip /getID3-1.9.8-20140511.zip /getID3-1.9.12.zip /getID3-1.9.13-b9a8564.tar.gz +/getID3-1.9.14-30bd114.tar.gz diff --git a/php-getid3.spec b/php-getid3.spec index 4808dfa..8a3b771 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit b9a8564e56bdcc294dc7ade32a7f67885bed3778 +%global gh_commit 30bd11473b0eef6f1b47866ef7ab0a557917fc21 %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.13 -Release: 2%{?dist} +Version: 1.9.14 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -61,8 +61,8 @@ Autoloader: %{_datadir}/php/getid3/autoload.php %build # From composer.json, "autoload": { -# "classmap": ["getid3/getid3.php"] -%{_bindir}/phpab --template fedora --output getid3/autoload.php getid3/getid3.php +# "classmap": ["getid3/"] +%{_bindir}/phpab --template fedora --output getid3/autoload.php getid3 %install @@ -75,7 +75,9 @@ cp -a getid3 %{buildroot}%{_datadir}/php/ php -r ' require "%{buildroot}%{_datadir}/php/getid3/autoload.php"; $ok = class_exists("getID3"); -echo "Autoload " . ($ok ? "Ok\n" : "fails\n"); +echo "Autoload: " . ($ok ? "Ok\n" : "fails\n"); +echo "Version: " . getID3::VERSION . "\n"; +$ok = ($ok && strpos(getID3::VERSION, "%{version}") !== false); exit ($ok ? 0 : 1); ' @@ -89,6 +91,10 @@ exit ($ok ? 0 : 1); %changelog +* Tue Mar 28 2017 Remi Collet - 1:1.9.14-1 +- Update to 1.9.14 +- handle all classes in autoloader + * Sat Feb 11 2017 Fedora Release Engineering - 1:1.9.13-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 1724af0..83e577e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (getID3-1.9.13-b9a8564.tar.gz) = 6286bdbbb790c0deed777490ba84731949a541ab302217c742ba4d0c15247f0844651337da2c7f67f7098c4929dd45eaceb9a203bae9a9d07b148c7803e4bcb5 +SHA512 (getID3-1.9.14-30bd114.tar.gz) = f70618a58b56e65d76c693440ae432dde1e3eede2e38241ca5f8172665a34e83caab57dc7715f140615a31622535cec6a56a73228f720e831f136016d8a9d92d From 856cc0b2a499943e08ac306a1ae3b0b7e5933bff Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 07:34:04 +0000 Subject: [PATCH 07/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 8a3b771..142d7d3 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.14 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -91,6 +91,9 @@ exit ($ok ? 0 : 1); %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1:1.9.14-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Mar 28 2017 Remi Collet - 1:1.9.14-1 - Update to 1.9.14 - handle all classes in autoloader From bf936d8b3afa6e4b782167c3c0b2fc1899fa68fe Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 30 Oct 2017 14:17:07 +0100 Subject: [PATCH 08/35] v1.9.15 --- .gitignore | 1 + php-getid3.spec | 10 ++++++---- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 19f1043..86665fc 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ getid3-2.0.0b5.zip /getID3-1.9.12.zip /getID3-1.9.13-b9a8564.tar.gz /getID3-1.9.14-30bd114.tar.gz +/getID3-1.9.15-df9b441.tar.gz diff --git a/php-getid3.spec b/php-getid3.spec index 142d7d3..43f2fc7 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 30bd11473b0eef6f1b47866ef7ab0a557917fc21 +%global gh_commit df9b441e547da1018b1be0e239bee095c9962c96 %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.14 -Release: 2%{?dist} +Version: 1.9.15 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -66,7 +66,6 @@ Autoloader: %{_datadir}/php/getid3/autoload.php %install - mkdir -p %{buildroot}%{_datadir}/php cp -a getid3 %{buildroot}%{_datadir}/php/ @@ -91,6 +90,9 @@ exit ($ok ? 0 : 1); %changelog +* Mon Oct 30 2017 Remi Collet - 1.9.15-1 +- Update to 1.9.15 + * Thu Jul 27 2017 Fedora Release Engineering - 1:1.9.14-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild diff --git a/sources b/sources index 83e577e..3a364e2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (getID3-1.9.14-30bd114.tar.gz) = f70618a58b56e65d76c693440ae432dde1e3eede2e38241ca5f8172665a34e83caab57dc7715f140615a31622535cec6a56a73228f720e831f136016d8a9d92d +SHA512 (getID3-1.9.15-df9b441.tar.gz) = 12de3d093b2e04af09eca8cec6ef1de565197c70ea7a09737b0d2ee4887f4aa9876ea9b8ed62ca1a6c029c24affad7a8f41e2ba798a4b67fcb573ecce5ee62aa From b8fdb2d650a5bbd185696c9e1ee02861b1fec5f0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 03:18:18 +0000 Subject: [PATCH 09/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 43f2fc7..a68662a 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.15 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -90,6 +90,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1:1.9.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Oct 30 2017 Remi Collet - 1.9.15-1 - Update to 1.9.15 From ca295c45a428344c8bcc645fb98f831525b00623 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 21:21:06 +0000 Subject: [PATCH 10/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index a68662a..803c044 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.15 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -90,6 +90,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1:1.9.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 1:1.9.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 2b4e053b083a27c971ba3ca375125f2a45e97437 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 18 Oct 2018 10:22:54 +0200 Subject: [PATCH 11/35] v1.9.16 --- .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 803c044..28005e9 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: 3%{?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 Jul 13 2018 Fedora Release Engineering - 1:1.9.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_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 4a0c1207b6deb2caa57a9a40a3296c4c66cdd8bb Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:10 +0100 Subject: [PATCH 12/35] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- php-getid3.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 28005e9..e7ec0f2 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -19,7 +19,6 @@ Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser -Group: Development/Libraries URL: http://www.getid3.org/ Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz From c78c8e2e16b666d16c451571e1eeb6df9ffaec6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 02:31:16 +0000 Subject: [PATCH 13/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index e7ec0f2..076890d 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.16 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -91,6 +91,9 @@ exit ($ok ? 0 : 1); %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 1:1.9.16-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Oct 18 2018 Remi Collet - 1.9.16-1 - update to 1.9.16 From 6dd230c5e59d864d5abcd9056284c85416ef65fd Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 8 Feb 2019 10:06:15 +0100 Subject: [PATCH 14/35] update to 1.9.17 add weak dependencies on suggested extension --- .gitignore | 1 + php-getid3.spec | 20 +++++++++++++++----- sources | 2 +- 3 files changed, 17 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 076890d..30b4668 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,12 +14,12 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.16 -Release: 2%{?dist} +Version: 1.9.17 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser -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 @@ -36,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) @@ -91,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 + * Sat Feb 02 2019 Fedora Release Engineering - 1:1.9.16-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild 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 From b92d2059e57e70f3a6e24ed1a86fbfd15367ed28 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 08:58:09 +0000 Subject: [PATCH 15/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 30b4668..9fe90a9 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.17 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1:1.9.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 8 2019 Remi Collet - 1.9.17-1 - update to 1.9.17 - add weak dependencies on suggested extension From e8a0daec36333875c4a31d9072dd4404866b4cc2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 17 Sep 2019 10:02:41 +0200 Subject: [PATCH 16/35] update to 1.9.18 use git snapshot for sources --- .gitignore | 1 + makesrc.sh | 28 ++++++++++++++++++++++++++++ php-getid3.spec | 14 +++++++++----- sources | 2 +- 4 files changed, 39 insertions(+), 6 deletions(-) create mode 100755 makesrc.sh diff --git a/.gitignore b/.gitignore index 9906a50..3f29c62 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ getid3-2.0.0b5.zip /getID3-1.9.15-df9b441.tar.gz /getID3-1.9.16-7aec0d4.tar.gz /getID3-1.9.17-d2e45f2.tar.gz +/php-getid3-1.9.18-0723b77.tgz diff --git a/makesrc.sh b/makesrc.sh new file mode 100755 index 0000000..7d752c6 --- /dev/null +++ b/makesrc.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +NAME=$(basename $PWD) +OWNER=$(sed -n '/^%global gh_owner/{s/.* //;p}' $NAME.spec) +PROJECT=$(sed -n '/^%global gh_project/{s/.* //;p}' $NAME.spec) +VERSION=$(sed -n '/^Version:/{s/.* //;p}' $NAME.spec) +COMMIT=$(sed -n '/^%global gh_commit/{s/.* //;p}' $NAME.spec) +SHORT=${COMMIT:0:7} + +echo -e "\nCreate git snapshot\nName=$NAME, Owner=$OWNER, Project=$PROJECT, Version=$VERSION, Commit=$COMMIT\n" + +echo "Cloning..." +git clone https://github.com/$OWNER/$PROJECT.git $PROJECT-$COMMIT + +echo "Getting commit..." +pushd $PROJECT-$COMMIT +git checkout $COMMIT +cp composer.json ../composer.json +popd + +echo "Archiving..." +tar czf $NAME-$VERSION-$SHORT.tgz --exclude-vcs $PROJECT-$COMMIT + +echo "Cleaning..." +rm -rf $PROJECT-$COMMIT + +echo "Done." + diff --git a/php-getid3.spec b/php-getid3.spec index 9fe90a9..024337b 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit d2e45f2c4f75cc7443e158757ad2d678e318685d +%global gh_commit 0723b77cafe9278618cfb6bc91b75e73705d3de8 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner JamesHeinrich %global gh_project getID3 @@ -14,13 +14,14 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.17 -Release: 2%{?dist} +Version: 1.9.18 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser URL: https://www.getid3.org/ -Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz +Source0: %{name}-%{version}-%{gh_short}.tgz +Source1: makesrc.sh BuildArch: noarch BuildRequires: php-fedora-autoloader-devel @@ -89,7 +90,6 @@ exit ($ok ? 0 : 1); %files -%{!?_licensedir:%global license %%doc} %license licenses license.txt %doc changelog.txt dependencies.txt readme.txt structure.txt demos %doc composer.json @@ -97,6 +97,10 @@ exit ($ok ? 0 : 1); %changelog +* Tue Sep 17 2019 Remi Collet - 1.9.18-1 +- update to 1.9.18 +- use git snapshot for sources + * Fri Jul 26 2019 Fedora Release Engineering - 1:1.9.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 863f268..dee7b69 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (getID3-1.9.17-d2e45f2.tar.gz) = 0824840d161e80f597e36d85cd6da4f74181d0b78d0ae1015ea510ec30bbb943919428f981c9dadb684813e93cf10d3137105a32ca710dee908eb7b0cbf79165 +SHA512 (php-getid3-1.9.18-0723b77.tgz) = 984668a1ccbb2ba48685cddada720a95477e75ac66207acfead73d5d9bf50692a0e502f2c6fe9a0ec8e17caefb436a5c9227cd7664762e379321d46b986cfbb4 From 46229cd5d9e5a713e0409364cf5b87928c99e9ee Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 18 Dec 2019 12:03:52 +0100 Subject: [PATCH 17/35] v1.9.19 --- .gitignore | 1 + php-getid3.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3f29c62..97325d3 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ getid3-2.0.0b5.zip /getID3-1.9.16-7aec0d4.tar.gz /getID3-1.9.17-d2e45f2.tar.gz /php-getid3-1.9.18-0723b77.tgz +/php-getid3-1.9.19-c6fd499.tgz diff --git a/php-getid3.spec b/php-getid3.spec index 024337b..32d42b5 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 0723b77cafe9278618cfb6bc91b75e73705d3de8 +%global gh_commit c6fd499a690ae67eea2eec6b2edba5df13f60f6f %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner JamesHeinrich %global gh_project getID3 @@ -14,7 +14,7 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.18 +Version: 1.9.19 Release: 1%{?dist} Epoch: 1 License: LGPLv3+ @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Wed Dec 18 2019 Remi Collet - 1.9.19-1 +- update to 1.9.19 + * Tue Sep 17 2019 Remi Collet - 1.9.18-1 - update to 1.9.18 - use git snapshot for sources diff --git a/sources b/sources index dee7b69..d18d39b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.18-0723b77.tgz) = 984668a1ccbb2ba48685cddada720a95477e75ac66207acfead73d5d9bf50692a0e502f2c6fe9a0ec8e17caefb436a5c9227cd7664762e379321d46b986cfbb4 +SHA512 (php-getid3-1.9.19-c6fd499.tgz) = 282088c4dee149e8c10b1cb4ff50a3ee2861b537d954ad026f0b56bbbda2d0ac4208d7dcd44ee924e80b79abc7322712076ed78c3669a54b565ccfeaaa0e2e99 From 8ed46b083ea41098de754f62423f1b0eea68770b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 07:09:10 +0000 Subject: [PATCH 18/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 32d42b5..59a9caf 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.19 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1:1.9.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Dec 18 2019 Remi Collet - 1.9.19-1 - update to 1.9.19 From 9f637c30d7dafbb58c4da9e46184f0e22664e449 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 1 Jul 2020 09:38:50 +0200 Subject: [PATCH 19/35] v1.9.20 --- .gitignore | 1 + php-getid3.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 97325d3..5b93544 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ getid3-2.0.0b5.zip /getID3-1.9.17-d2e45f2.tar.gz /php-getid3-1.9.18-0723b77.tgz /php-getid3-1.9.19-c6fd499.tgz +/php-getid3-1.9.20-3c15e35.tgz diff --git a/php-getid3.spec b/php-getid3.spec index 59a9caf..69de928 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit c6fd499a690ae67eea2eec6b2edba5df13f60f6f +%global gh_commit 3c15e353b9bb1252201c73394bb8390b573a751d %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.19 -Release: 2%{?dist} +Version: 1.9.20 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Wed Jul 1 2020 Remi Collet - 1.9.20-1 +- update to 1.9.20 + * Thu Jan 30 2020 Fedora Release Engineering - 1:1.9.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index d18d39b..6257def 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.19-c6fd499.tgz) = 282088c4dee149e8c10b1cb4ff50a3ee2861b537d954ad026f0b56bbbda2d0ac4208d7dcd44ee924e80b79abc7322712076ed78c3669a54b565ccfeaaa0e2e99 +SHA512 (php-getid3-1.9.20-3c15e35.tgz) = 69a70fa82e6bbca0d3c9dec8d97d3686f0e6f865887a9386670219c3a06cf3eb980dbf2667c2433f3209954baf260d4bbfd23a18abddfc0d1fc492c3d6a64c29 From 07a06a5515162da3e6b8ab7de2f26a4277919561 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 20:55:26 +0000 Subject: [PATCH 20/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 69de928..d66732f 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.20 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1:1.9.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jul 1 2020 Remi Collet - 1.9.20-1 - update to 1.9.20 From 6d6f47bb93d79a5e256aeefdb7f65d9c36579dbc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 06:37:23 +0000 Subject: [PATCH 21/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index d66732f..f8cfb1e 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.20 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1:1.9.20-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1:1.9.20-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From ca922bfa93cd172b2b3acd180c228297603628c9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 01:51:30 +0000 Subject: [PATCH 22/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index f8cfb1e..e72286f 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.20 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1:1.9.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1:1.9.20-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From d44bc8cb8524ff994440a57cccefdea7d5fbfa1d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 23 Sep 2021 10:01:29 +0200 Subject: [PATCH 23/35] v1.19.21 --- .gitignore | 1 + php-getid3.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5b93544..f2cbb95 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ getid3-2.0.0b5.zip /php-getid3-1.9.18-0723b77.tgz /php-getid3-1.9.19-c6fd499.tgz /php-getid3-1.9.20-3c15e35.tgz +/php-getid3-1.9.21-36f5dab.tgz diff --git a/php-getid3.spec b/php-getid3.spec index e72286f..ddb12fa 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 3c15e353b9bb1252201c73394bb8390b573a751d +%global gh_commit 36f5dabb1325415a4b07a401113f8db2eb81eca1 %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.20 -Release: 4%{?dist} +Version: 1.9.21 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Thu Sep 23 2021 Remi Collet - 1.9.21-1 +- update to 1.9.21 + * Fri Jul 23 2021 Fedora Release Engineering - 1:1.9.20-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 6257def..6f50fd7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.20-3c15e35.tgz) = 69a70fa82e6bbca0d3c9dec8d97d3686f0e6f865887a9386670219c3a06cf3eb980dbf2667c2433f3209954baf260d4bbfd23a18abddfc0d1fc492c3d6a64c29 +SHA512 (php-getid3-1.9.21-36f5dab.tgz) = c2e2d663b9a930fed08e2049c779065f53681c502791b5aa6a8359eb0ad136c8ce83b6fae6c51f6a7b449045aeed354dd09bc8f28ed91fbc31a87664276e36aa From f9284f87ec18b3621403f2afe810c7c8cdf151c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 07:33:31 +0000 Subject: [PATCH 24/35] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index ddb12fa..5b1e1a8 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.21 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1:1.9.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Sep 23 2021 Remi Collet - 1.9.21-1 - update to 1.9.21 From e4063ddd5ad1f50a2cbc5816a55c670461efa16e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 13:27:10 +0000 Subject: [PATCH 25/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 5b1e1a8..e1dba19 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.21 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1:1.9.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1:1.9.21-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 21ef32150fdb0346c1ae160f296d1bf7035083d9 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 30 Sep 2022 09:52:58 +0200 Subject: [PATCH 26/35] v1.9.22 --- .gitignore | 1 + php-getid3.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f2cbb95..b07a9d1 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ getid3-2.0.0b5.zip /php-getid3-1.9.19-c6fd499.tgz /php-getid3-1.9.20-3c15e35.tgz /php-getid3-1.9.21-36f5dab.tgz +/php-getid3-1.9.22-45f20fa.tgz diff --git a/php-getid3.spec b/php-getid3.spec index e1dba19..733aee2 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 36f5dabb1325415a4b07a401113f8db2eb81eca1 +%global gh_commit 45f20faa0f0a24489740392c5b512ddcc36deccd %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.21 -Release: 3%{?dist} +Version: 1.9.22 +Release: 1%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Sep 30 2022 Remi Collet - 1.9.22-1 +- update to 1.9.22 + * Fri Jul 22 2022 Fedora Release Engineering - 1:1.9.21-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 6f50fd7..80da762 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.21-36f5dab.tgz) = c2e2d663b9a930fed08e2049c779065f53681c502791b5aa6a8359eb0ad136c8ce83b6fae6c51f6a7b449045aeed354dd09bc8f28ed91fbc31a87664276e36aa +SHA512 (php-getid3-1.9.22-45f20fa.tgz) = 5753a1de535117a4874723320c9d31cdcb57bfb77176a4a7ebd821c9c0f66091b0fae4888dc41aba98688507e2aa77110cee44c9ac8fdff9fb0a0d53b998eadc From 2eeab7aa2ec511e944c05671a27c53b908887da8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 08:29:10 +0000 Subject: [PATCH 27/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 733aee2..7d09003 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.22 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1:1.9.22-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Sep 30 2022 Remi Collet - 1.9.22-1 - update to 1.9.22 From 33072145fe3c44eded40ed645d97e32cf8b99371 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 04:18:01 +0000 Subject: [PATCH 28/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 7d09003..ee32784 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.22 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: LGPLv3+ Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1:1.9.22-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jan 20 2023 Fedora Release Engineering - 1:1.9.22-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 9462e38394e02b45ba645eebcd21a9c19908f6f4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 19 Oct 2023 16:08:22 +0200 Subject: [PATCH 29/35] update to 1.9.23 fix license with SPDX ids --- .gitignore | 1 + php-getid3.spec | 12 ++++++++---- sources | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b07a9d1..c274741 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ getid3-2.0.0b5.zip /php-getid3-1.9.20-3c15e35.tgz /php-getid3-1.9.21-36f5dab.tgz /php-getid3-1.9.22-45f20fa.tgz +/php-getid3-1.9.23-06c7482.tgz diff --git a/php-getid3.spec b/php-getid3.spec index ee32784..cba5be5 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 45f20faa0f0a24489740392c5b512ddcc36deccd +%global gh_commit 06c7482532ff2b3f9111b011d880ca6699c8542b %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner JamesHeinrich %global gh_project getID3 @@ -14,10 +14,10 @@ %global pk_project getid3 Name: php-%{pk_project} -Version: 1.9.22 -Release: 3%{?dist} +Version: 1.9.23 +Release: 1%{?dist} Epoch: 1 -License: LGPLv3+ +License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser URL: https://www.getid3.org/ Source0: %{name}-%{version}-%{gh_short}.tgz @@ -97,6 +97,10 @@ exit ($ok ? 0 : 1); %changelog +* Thu Oct 19 2023 Remi Collet - 1.9.23-1 +- update to 1.9.23 +- fix license with SPDX ids + * Fri Jul 21 2023 Fedora Release Engineering - 1:1.9.22-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index 80da762..e178531 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.22-45f20fa.tgz) = 5753a1de535117a4874723320c9d31cdcb57bfb77176a4a7ebd821c9c0f66091b0fae4888dc41aba98688507e2aa77110cee44c9ac8fdff9fb0a0d53b998eadc +SHA512 (php-getid3-1.9.23-06c7482.tgz) = dcb4e7c21d2c483dc479edc7f65744117efb6ff93ac4b207276481a63dda6c5961d3999703a8446660e288fa8eeabf1bb7100c6ae38ccea0911aae766f8e5987 From 378f9c423aced7d6559ab8db89224e7b0c692293 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 20:51:48 +0000 Subject: [PATCH 30/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index cba5be5..f70a0e7 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.23 -Release: 1%{?dist} +Release: 2%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 1:1.9.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Oct 19 2023 Remi Collet - 1.9.23-1 - update to 1.9.23 - fix license with SPDX ids From 46245e5ae64dc1b66783663e8d25dc197f32495a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 22:38:07 +0000 Subject: [PATCH 31/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index f70a0e7..9152189 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.23 -Release: 2%{?dist} +Release: 3%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 1:1.9.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 1:1.9.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 2b26780f966c26f4eabb7f528d9eb9ae27b02916 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 06:53:23 +0000 Subject: [PATCH 32/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 9152189..0aab9ab 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.23 -Release: 3%{?dist} +Release: 4%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1:1.9.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 1:1.9.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From e939132fddcbdc33eb34e2c8f4f852f607d837d9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 09:03:48 +0000 Subject: [PATCH 33/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 0aab9ab..9e6de4d 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.23 -Release: 4%{?dist} +Release: 5%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1:1.9.23-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 1:1.9.23-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From dbfd2ba1e9df40be81240ff759aef7054285410f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:12:17 +0000 Subject: [PATCH 34/35] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-getid3.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-getid3.spec b/php-getid3.spec index 9e6de4d..4cf5553 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -15,7 +15,7 @@ Name: php-%{pk_project} Version: 1.9.23 -Release: 5%{?dist} +Release: 6%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -97,6 +97,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1:1.9.23-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 1:1.9.23-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From afc6e457a40dc992ece267b056c14c591e7d2e88 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 10 Oct 2025 10:50:23 +0200 Subject: [PATCH 35/35] v1.9.24 --- .gitignore | 1 + php-getid3.spec | 23 ++++++++++------------- sources | 2 +- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index c274741..d11e3e5 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ getid3-2.0.0b5.zip /php-getid3-1.9.21-36f5dab.tgz /php-getid3-1.9.22-45f20fa.tgz /php-getid3-1.9.23-06c7482.tgz +/php-getid3-1.9.24-1e11b9b.tgz diff --git a/php-getid3.spec b/php-getid3.spec index 4cf5553..f2ffd1e 100644 --- a/php-getid3.spec +++ b/php-getid3.spec @@ -6,7 +6,7 @@ # # Please preserve changelog entries # -%global gh_commit 06c7482532ff2b3f9111b011d880ca6699c8542b +%global gh_commit 1e11b9b6eb468b522fe604a42a9fdc8ee759bf8a %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.23 -Release: 6%{?dist} +Version: 1.9.24 +Release: 1%{?dist} Epoch: 1 License: GPL-1.0-or-later OR LGPL-3.0-only OR MPL-2.0 Summary: The PHP media file parser @@ -31,23 +31,17 @@ BuildRequires: php-fedora-autoloader-devel Requires: php(language) >= 5.3.0 # 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-json Requires: php-libxml Requires: php-mbstring -Requires: php-pcre Requires: php-xml -%if 0%{?fedora} >= 27 || 0%{?rhel} >= 8 -Suggests: php-dba -Suggests: php-mysqli -Suggests: php-rar -Suggests: php-sqlite3 -%endif +Suggests: php-dba +Suggests: php-mysqli +Suggests: php-rar +Suggests: php-sqlite3 # Autoloader Requires: php-composer(fedora/autoloader) @@ -97,6 +91,9 @@ exit ($ok ? 0 : 1); %changelog +* Fri Oct 10 2025 Remi Collet - 1.9.24-1 +- update to 1.9.24 + * Fri Jul 25 2025 Fedora Release Engineering - 1:1.9.23-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild diff --git a/sources b/sources index e178531..e090d8c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-getid3-1.9.23-06c7482.tgz) = dcb4e7c21d2c483dc479edc7f65744117efb6ff93ac4b207276481a63dda6c5961d3999703a8446660e288fa8eeabf1bb7100c6ae38ccea0911aae766f8e5987 +SHA512 (php-getid3-1.9.24-1e11b9b.tgz) = 3c45d11e21cdb80dedb1e2acb1343fbbad1633a1e6fe2968e99faf019519ce3cffaf449d0829fb658acdf69ed89040b8b3f6ef9f6b8a4d8552324b2d32a1c928