From 5fe380a6d8e63c00760020845a995ac73a16ca4f Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 25 Dec 2019 20:14:34 +0000 Subject: [PATCH 01/37] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..207734b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# libopenmpt + +The libopenmpt package \ No newline at end of file From c099f442a267ba1b17a477c35140277cdd40de45 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 26 Dec 2019 10:30:45 +0100 Subject: [PATCH 02/37] spec modifications as per Fedora reviewer comment in rhbz #1768408 remove RPATH from openmpt123 --- .gitignore | 1 + libopenmpt.spec | 112 ++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 114 insertions(+) create mode 100644 .gitignore create mode 100644 libopenmpt.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..764fbea --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/libopenmpt-0.4.10+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec new file mode 100644 index 0000000..3e1bf66 --- /dev/null +++ b/libopenmpt.spec @@ -0,0 +1,112 @@ +Name: libopenmpt +Version: 0.4.10 +Release: 2%{?dist} + +%global tar_root %{name}-%{version}+release.autotools + +License: BSD +Summary: C/C++ library to decode tracker music module (MOD) files + +URL: https://lib.openmpt.org/libopenmpt/ + +Source0: https://lib.openmpt.org/files/libopenmpt/src/%{tar_root}.tar.gz + +BuildRequires: gcc-c++ +BuildRequires: chrpath +BuildRequires: pkgconfig(libmpg123) +BuildRequires: pkgconfig(ogg) +BuildRequires: pkgconfig(vorbis) +BuildRequires: pkgconfig(sndfile) +BuildRequires: pkgconfig(flac) +BuildRequires: pkgconfig(zlib) + +# for command-line player audio output +BuildRequires: pulseaudio-libs-devel +# don't build with niche options +#BuildRequires: portaudio-devel +#BuildRequires: SDL-devel +#BuildRequires: SDL2-devel + +%description +libopenmpt is a cross-platform C++ and C library to decode tracked music +files (modules) into a raw PCM audio stream. + +libopenmpt is based on the player code of the OpenMPT project (Open +ModPlug Tracker). In order to avoid code base fragmentation, libopenmpt is +developed in the same source code repository as OpenMPT. + + +%package -n openmpt123 +Summary: Command-line tracker music player based on libopenmpt +Group: Applications/Multimedia +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description -n openmpt123 +Openmpt123 is a cross-platform command-line or terminal based player +for tracker music (MOD) module files. + + +%package devel +Summary: Development files for the libopenmpt library +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +Files needed when building software which uses libopenmpt. + + +%prep +%autosetup -p1 -n %{tar_root} +sed -i 's/\r$//' LICENSE + + +%build +%configure \ + --disable-static \ + --without-sdl --without-sdl2 \ + --without-portaudio --without-portaudiocpp +make %{?_smp_mflags} + + +%install +%make_install +find ${RPM_BUILD_ROOT} -type f -name "*.la" -exec rm -f {} ';' +chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 + + +%files -n openmpt123 +%{_bindir}/openmpt123 +%{_mandir}/man1/* + +%files +%license LICENSE +%{_libdir}/*.so.0* +%{_docdir}/%{name}/ +%exclude %{_docdir}/%{name}/examples + +%files devel +%{_includedir}/%{name}/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc +%{_docdir}/%{name}/examples/ + + +%changelog +* Fri Dec 20 2019 Michael Schwendt - 0.4.10-2 +- spec modifications as per Fedora reviewer comment in rhbz #1768408 +- remove RPATH from openmpt123 + +* Mon Nov 4 2019 Michael Schwendt - 0.4.10-1 +- update to 0.4.10 + +* Sat Jun 01 2019 Michael Schwendt - 0.4.5-1 +- update to 0.4.5 + +* Sun Apr 21 2019 Michael Schwendt - 0.4.4-1 +- update to 0.4.4 + +* Sat Feb 23 2019 Michael Schwendt - 0.4.3-1 +- security update 0.4.3 + +* Sun Dec 30 2018 Michael Schwendt - 0.4.0-1 +- initial package for libopenmpt 0.4.0 diff --git a/sources b/sources new file mode 100644 index 0000000..0fb05ee --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (libopenmpt-0.4.10+release.autotools.tar.gz) = d7c46016eea59c21e3f948d8538a747d5fa6b29f160841b688878d8ce48859d014c3a036738074b3d260af6e662c36b03391aef511c1817a5ace81f60bf27dfc From 8e7bf116dcbdcfcf7f0b7965f2ae8e1650f1028c Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 26 Dec 2019 10:31:15 +0100 Subject: [PATCH 03/37] update to 0.4.11 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 764fbea..fca44de 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /libopenmpt-0.4.10+release.autotools.tar.gz +/libopenmpt-0.4.11+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 3e1bf66..21399ae 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.4.10 -Release: 2%{?dist} +Version: 0.4.11 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Dec 24 2019 Michael Schwendt - 0.4.11-1 +- update to 0.4.11 + * Fri Dec 20 2019 Michael Schwendt - 0.4.10-2 - spec modifications as per Fedora reviewer comment in rhbz #1768408 - remove RPATH from openmpt123 diff --git a/sources b/sources index 0fb05ee..b07f613 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.4.10+release.autotools.tar.gz) = d7c46016eea59c21e3f948d8538a747d5fa6b29f160841b688878d8ce48859d014c3a036738074b3d260af6e662c36b03391aef511c1817a5ace81f60bf27dfc +SHA512 (libopenmpt-0.4.11+release.autotools.tar.gz) = d720a0c04984f624f7ecd1ee8648045cd09ced2cc8b1cf3546404b9e73b2781493076391c1881e0d0eee72cf829a38365313efb9852448cd1cfe5f7b7f535e99 From 5886f8c9bd73eb9f64a635e09920d8a4f1f01475 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 09:58:00 +0000 Subject: [PATCH 04/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 21399ae..8841158 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.4.11 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.4.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Dec 24 2019 Michael Schwendt - 0.4.11-1 - update to 0.4.11 From 562bc0a89cd5c015ded258e052adca7fbc6a1759 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 05:16:28 +0000 Subject: [PATCH 05/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 8841158..70b8842 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.4.11 -Release: 2%{?dist} +Release: 3%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.4.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 0.4.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 2034e2fb58ec1f739c9698a7df8911f6b3741ca8 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 29 Oct 2020 13:44:50 +0100 Subject: [PATCH 06/37] update to 0.4.15 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fca44de..60dd88e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /libopenmpt-0.4.10+release.autotools.tar.gz /libopenmpt-0.4.11+release.autotools.tar.gz +/libopenmpt-0.4.15+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 70b8842..6306929 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.4.11 -Release: 3%{?dist} +Version: 0.4.15 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Oct 29 2020 Michael Schwendt - 0.4.15-1 +- update to 0.4.15 + * Tue Jul 28 2020 Fedora Release Engineering - 0.4.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index b07f613..5da5a18 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.4.11+release.autotools.tar.gz) = d720a0c04984f624f7ecd1ee8648045cd09ced2cc8b1cf3546404b9e73b2781493076391c1881e0d0eee72cf829a38365313efb9852448cd1cfe5f7b7f535e99 +SHA512 (libopenmpt-0.4.15+release.autotools.tar.gz) = d883a89f4418d388553db9c0f103afa2f646e66dd12212075acc3c256358a608d80d565c84c478f1941edde537456ff7734a6add0a926682d197b61a68024488 From acf81624108061211cb958c5471444357b5abb11 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 29 Oct 2020 13:55:28 +0100 Subject: [PATCH 07/37] upgrade to 0.5.3 (security release for the 0.5 series) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 60dd88e..b4cc317 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /libopenmpt-0.4.10+release.autotools.tar.gz /libopenmpt-0.4.11+release.autotools.tar.gz /libopenmpt-0.4.15+release.autotools.tar.gz +/libopenmpt-0.5.3+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 6306929..05b80e1 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.4.15 +Version: 0.5.3 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Oct 29 2020 Michael Schwendt - 0.5.3-1 +- upgrade to 0.5.3 (security release for the 0.5 series) + * Thu Oct 29 2020 Michael Schwendt - 0.4.15-1 - update to 0.4.15 diff --git a/sources b/sources index 5da5a18..787c9b7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.4.15+release.autotools.tar.gz) = d883a89f4418d388553db9c0f103afa2f646e66dd12212075acc3c256358a608d80d565c84c478f1941edde537456ff7734a6add0a926682d197b61a68024488 +SHA512 (libopenmpt-0.5.3+release.autotools.tar.gz) = 003e40a4fa5c44d38931f5008beb71fd82ea57f6989cffdf2f8687e403a244bd29d497c4de9744d594ecfb7d0dd2ba8ff17046a3987123f47bc56cd163f71d7d From 3e92e891084f9658fc113cda833d5af6d65dd9b0 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Tue, 22 Dec 2020 11:37:12 +0100 Subject: [PATCH 08/37] update to 0.5.4 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b4cc317..075eaa9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /libopenmpt-0.4.11+release.autotools.tar.gz /libopenmpt-0.4.15+release.autotools.tar.gz /libopenmpt-0.5.3+release.autotools.tar.gz +/libopenmpt-0.5.4+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 05b80e1..ef348a8 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.3 +Version: 0.5.4 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -92,6 +92,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Dec 22 2020 Michael Schwendt - 0.5.4-1 +- update to 0.5.4 + * Thu Oct 29 2020 Michael Schwendt - 0.5.3-1 - upgrade to 0.5.3 (security release for the 0.5 series) diff --git a/sources b/sources index 787c9b7..2355dde 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.3+release.autotools.tar.gz) = 003e40a4fa5c44d38931f5008beb71fd82ea57f6989cffdf2f8687e403a244bd29d497c4de9744d594ecfb7d0dd2ba8ff17046a3987123f47bc56cd163f71d7d +SHA512 (libopenmpt-0.5.4+release.autotools.tar.gz) = 2acb5f04bbca84dc01e0aa0e002924e3cd41c0d3516d3f896705c2906d8b2f8646c45d3dca609ffc94972629b887fd63da383e3d0127b2420731de20e4590b5a From 45b15e644e49921953d92d9ea85742855eef5d6b Mon Sep 17 00:00:00 2001 From: Robert Scheck Date: Sat, 26 Dec 2020 01:13:00 +0100 Subject: [PATCH 09/37] Require devtoolset-8-toolchain on EPEL 7 for C++17 support --- libopenmpt.spec | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libopenmpt.spec b/libopenmpt.spec index ef348a8..a681e8b 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -27,6 +27,10 @@ BuildRequires: pulseaudio-libs-devel #BuildRequires: SDL-devel #BuildRequires: SDL2-devel +%if 0%{?rhel} && 0%{?rhel} < 8 +BuildRequires: devtoolset-8-toolchain +%endif + %description libopenmpt is a cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. @@ -61,6 +65,10 @@ sed -i 's/\r$//' LICENSE %build +%if 0%{?rhel} && 0%{?rhel} < 8 +. /opt/rh/devtoolset-8/enable +%endif + %configure \ --disable-static \ --without-sdl --without-sdl2 \ From f96437abe6b7a4b877d4059997ad1136a38a04a7 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Wed, 6 Jan 2021 01:17:48 +0000 Subject: [PATCH 10/37] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libopenmpt.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libopenmpt.spec b/libopenmpt.spec index a681e8b..c97b33f 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -11,6 +11,7 @@ URL: https://lib.openmpt.org/libopenmpt/ Source0: https://lib.openmpt.org/files/libopenmpt/src/%{tar_root}.tar.gz +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: chrpath BuildRequires: pkgconfig(libmpg123) From f7b8f33f065e558aaf98a0c0f1796336beef8afa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 17:41:43 +0000 Subject: [PATCH 11/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index c97b33f..dcea82d 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.5.4 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Dec 22 2020 Michael Schwendt - 0.5.4-1 - update to 0.5.4 From b987cc9550c40ec327de51075e4fe567dddbe391 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 18 Feb 2021 23:50:53 +0100 Subject: [PATCH 12/37] update to 0.5.5 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 075eaa9..9f35adf 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /libopenmpt-0.4.15+release.autotools.tar.gz /libopenmpt-0.5.3+release.autotools.tar.gz /libopenmpt-0.5.4+release.autotools.tar.gz +/libopenmpt-0.5.5+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index dcea82d..bf50bcd 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.5.4 -Release: 2%{?dist} +Version: 0.5.5 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Feb 18 2021 Michael Schwendt - 0.5.5-1 +- update to 0.5.5 + * Tue Jan 26 2021 Fedora Release Engineering - 0.5.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 2355dde..12d4223 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.4+release.autotools.tar.gz) = 2acb5f04bbca84dc01e0aa0e002924e3cd41c0d3516d3f896705c2906d8b2f8646c45d3dca609ffc94972629b887fd63da383e3d0127b2420731de20e4590b5a +SHA512 (libopenmpt-0.5.5+release.autotools.tar.gz) = 8a56fdd0994b6db3567ea81d6cbd6ab69caceb82e7b0eb1dde017eb5c001c291384e7ab4a5a8a3ddbed3df4ac6b073a4d26e66f493926f582d198fb6810f9890 From eaed8dc95d3805de74eee698e62aa34dd8844874 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Fri, 2 Apr 2021 22:37:53 +0200 Subject: [PATCH 13/37] update to 0.5.7 (security release for the 0.5 series) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9f35adf..f40bcc4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /libopenmpt-0.5.3+release.autotools.tar.gz /libopenmpt-0.5.4+release.autotools.tar.gz /libopenmpt-0.5.5+release.autotools.tar.gz +/libopenmpt-0.5.7+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index bf50bcd..0c7a334 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.5 +Version: 0.5.7 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Fri Apr 2 2021 Michael Schwendt - 0.5.7-1 +- update to 0.5.7 (security release for the 0.5 series) + * Thu Feb 18 2021 Michael Schwendt - 0.5.5-1 - update to 0.5.5 diff --git a/sources b/sources index 12d4223..7c58d79 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.5+release.autotools.tar.gz) = 8a56fdd0994b6db3567ea81d6cbd6ab69caceb82e7b0eb1dde017eb5c001c291384e7ab4a5a8a3ddbed3df4ac6b073a4d26e66f493926f582d198fb6810f9890 +SHA512 (libopenmpt-0.5.7+release.autotools.tar.gz) = b2f7aa473c52b5958cf2082c2e32ac1f5741fdccb4840f03ad458817e7b0e3360539a45764a012b2a86a59f693aeb08730a078cdc99cfb71264da77c00515211 From 2d660d87a991ff9a7251cb1d89b58b297dc806b5 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Fri, 30 Apr 2021 12:50:56 +0200 Subject: [PATCH 14/37] update to 0.5.8 (security release for the 0.5 series) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f40bcc4..342e26b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /libopenmpt-0.5.4+release.autotools.tar.gz /libopenmpt-0.5.5+release.autotools.tar.gz /libopenmpt-0.5.7+release.autotools.tar.gz +/libopenmpt-0.5.8+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 0c7a334..3b037ae 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.7 +Version: 0.5.8 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Fri Apr 30 2021 Michael Schwendt - 0.5.8-1 +- update to 0.5.8 (security release for the 0.5 series) + * Fri Apr 2 2021 Michael Schwendt - 0.5.7-1 - update to 0.5.7 (security release for the 0.5 series) diff --git a/sources b/sources index 7c58d79..f6f7554 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.7+release.autotools.tar.gz) = b2f7aa473c52b5958cf2082c2e32ac1f5741fdccb4840f03ad458817e7b0e3360539a45764a012b2a86a59f693aeb08730a078cdc99cfb71264da77c00515211 +SHA512 (libopenmpt-0.5.8+release.autotools.tar.gz) = 29a5b97495c2fa9898cb806cbdc1bac3263b30ecb9c02860e9f7147dc1186d7600589b5f44c9b1aede9c9d44add3521e28e1ff6a9299227e8b19361fe9cd7cc2 From ea0649f6bf79288ebf4c6c484bdca21b80eaf699 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 12:02:09 +0000 Subject: [PATCH 15/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 3b037ae..9e49b92 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.5.8 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.5.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Apr 30 2021 Michael Schwendt - 0.5.8-1 - update to 0.5.8 (security release for the 0.5 series) From 82a477d34cb5072cb48ccc7326f60b99d3d9c568 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Tue, 17 Aug 2021 16:36:50 +0200 Subject: [PATCH 16/37] update to 0.5.10 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 342e26b..173cb7a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /libopenmpt-0.5.5+release.autotools.tar.gz /libopenmpt-0.5.7+release.autotools.tar.gz /libopenmpt-0.5.8+release.autotools.tar.gz +/libopenmpt-0.5.10+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 9e49b92..9c01461 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.5.8 -Release: 2%{?dist} +Version: 0.5.10 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Aug 17 2021 Michael Schwendt - 0.5.10-1 +- update to 0.5.10 + * Thu Jul 22 2021 Fedora Release Engineering - 0.5.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index f6f7554..85ee0e5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.8+release.autotools.tar.gz) = 29a5b97495c2fa9898cb806cbdc1bac3263b30ecb9c02860e9f7147dc1186d7600589b5f44c9b1aede9c9d44add3521e28e1ff6a9299227e8b19361fe9cd7cc2 +SHA512 (libopenmpt-0.5.10+release.autotools.tar.gz) = ea76b6e3a6038046fc72e92203018202a247e4216bc33cc358290c74aba119e81e0c40d0f4f90874dc605d9354f04437b516b11b0ee3d644af7f230851e3f816 From 11bef69a4c915b466cebc953e7497c62a42491fd Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Wed, 25 Aug 2021 17:42:13 +0200 Subject: [PATCH 17/37] update to 0.5.10 (security release) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 173cb7a..02fcb54 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /libopenmpt-0.5.7+release.autotools.tar.gz /libopenmpt-0.5.8+release.autotools.tar.gz /libopenmpt-0.5.10+release.autotools.tar.gz +/libopenmpt-0.5.11+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 9c01461..4fe8432 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.10 +Version: 0.5.11 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Wed Aug 25 2021 Michael Schwendt - 0.5.11-1 +- update to 0.5.10 (security release) + * Tue Aug 17 2021 Michael Schwendt - 0.5.10-1 - update to 0.5.10 diff --git a/sources b/sources index 85ee0e5..7dd8989 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.10+release.autotools.tar.gz) = ea76b6e3a6038046fc72e92203018202a247e4216bc33cc358290c74aba119e81e0c40d0f4f90874dc605d9354f04437b516b11b0ee3d644af7f230851e3f816 +SHA512 (libopenmpt-0.5.11+release.autotools.tar.gz) = 29e19ef2add316fd824f82095db9e81a9a60c07f0b6a54a224c0416452d566c4376e688c5e1b1556461e0f5a1b1543ff45d1388d611d010a646efb8bf1ba733e From ccc1e341d16598d46fa162c765b97338a506ab13 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 7 Oct 2021 21:30:17 +0200 Subject: [PATCH 18/37] update to 0.5.12 (security release) --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 02fcb54..363669e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /libopenmpt-0.5.8+release.autotools.tar.gz /libopenmpt-0.5.10+release.autotools.tar.gz /libopenmpt-0.5.11+release.autotools.tar.gz +/libopenmpt-0.5.12+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 4fe8432..d69185e 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.11 +Version: 0.5.12 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,8 +101,11 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Oct 7 2021 Michael Schwendt - 0.5.12-1 +- update to 0.5.12 (security release) + * Wed Aug 25 2021 Michael Schwendt - 0.5.11-1 -- update to 0.5.10 (security release) +- update to 0.5.11 (security release) * Tue Aug 17 2021 Michael Schwendt - 0.5.10-1 - update to 0.5.10 diff --git a/sources b/sources index 7dd8989..3dfe689 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.11+release.autotools.tar.gz) = 29e19ef2add316fd824f82095db9e81a9a60c07f0b6a54a224c0416452d566c4376e688c5e1b1556461e0f5a1b1543ff45d1388d611d010a646efb8bf1ba733e +SHA512 (libopenmpt-0.5.12+release.autotools.tar.gz) = e22a79737a825a5753429271bba7af94fd195fb0ff770a3e2091b941c3856bbad770eeeb88cd86d37e01b0138e820199d3650f55546f2e33bb2e99b1b14d9925 From f2ef7f72a97d79cbd4ba3e338599c2e95fc4a02e Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Mon, 29 Nov 2021 21:40:09 +0100 Subject: [PATCH 19/37] update to 0.5.13 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 363669e..8430dbc 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /libopenmpt-0.5.10+release.autotools.tar.gz /libopenmpt-0.5.11+release.autotools.tar.gz /libopenmpt-0.5.12+release.autotools.tar.gz +/libopenmpt-0.5.13+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index d69185e..2374456 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.12 +Version: 0.5.13 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Mon Nov 29 2021 Michael Schwendt - 0.5.13-1 +- update to 0.5.13 + * Thu Oct 7 2021 Michael Schwendt - 0.5.12-1 - update to 0.5.12 (security release) diff --git a/sources b/sources index 3dfe689..911cc26 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.12+release.autotools.tar.gz) = e22a79737a825a5753429271bba7af94fd195fb0ff770a3e2091b941c3856bbad770eeeb88cd86d37e01b0138e820199d3650f55546f2e33bb2e99b1b14d9925 +SHA512 (libopenmpt-0.5.13+release.autotools.tar.gz) = 5ddf293755ca9696acaeaf2130a38dece3bba9a45519e1d4b61b594b2e014e67e6f3f79f55d54e7cc2528b9e40feac6d36bbe78788b6f2a1888f89c090872242 From 910a3845af4f0d4acfac1a63b4bd6ec9729e0803 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Mon, 6 Dec 2021 12:47:30 +0100 Subject: [PATCH 20/37] update to 0.5.14 (security release) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8430dbc..fe6ed28 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /libopenmpt-0.5.11+release.autotools.tar.gz /libopenmpt-0.5.12+release.autotools.tar.gz /libopenmpt-0.5.13+release.autotools.tar.gz +/libopenmpt-0.5.14+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 2374456..04b06a4 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.13 +Version: 0.5.14 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Mon Dec 6 2021 Michael Schwendt - 0.5.14-1 +- update to 0.5.14 (security release) + * Mon Nov 29 2021 Michael Schwendt - 0.5.13-1 - update to 0.5.13 diff --git a/sources b/sources index 911cc26..586ba29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.13+release.autotools.tar.gz) = 5ddf293755ca9696acaeaf2130a38dece3bba9a45519e1d4b61b594b2e014e67e6f3f79f55d54e7cc2528b9e40feac6d36bbe78788b6f2a1888f89c090872242 +SHA512 (libopenmpt-0.5.14+release.autotools.tar.gz) = 8897549c18afb57c5bf54f4dd8a1d80983829bca958052d76cda1315ef4a37f4201575817b7cedfe17a44ee79051a52aa35b26a51b554091e92c9d2dcf5924a3 From 8374c46e9e7241f20ac303dd55b53f6090890d11 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 23 Dec 2021 21:12:56 +0100 Subject: [PATCH 21/37] update to 0.5.15 (security release) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fe6ed28..9119407 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /libopenmpt-0.5.12+release.autotools.tar.gz /libopenmpt-0.5.13+release.autotools.tar.gz /libopenmpt-0.5.14+release.autotools.tar.gz +/libopenmpt-0.5.15+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 04b06a4..a1f2a15 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.14 +Version: 0.5.15 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Dec 23 2021 Michael Schwendt - 0.5.15-1 +- update to 0.5.15 (security release) + * Mon Dec 6 2021 Michael Schwendt - 0.5.14-1 - update to 0.5.14 (security release) diff --git a/sources b/sources index 586ba29..cb29386 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.14+release.autotools.tar.gz) = 8897549c18afb57c5bf54f4dd8a1d80983829bca958052d76cda1315ef4a37f4201575817b7cedfe17a44ee79051a52aa35b26a51b554091e92c9d2dcf5924a3 +SHA512 (libopenmpt-0.5.15+release.autotools.tar.gz) = c02ca11d2dd4529695fa3eafa18752464a1806c0b5fa9a27db4532891ebe7377bc2f31796d14d6e88fbebbbd6db71ffbb34a6b1272da8e63eb52c6fce308d894 From e747e6cb133994899329de336c1bdc01f85ed5ad Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 23 Dec 2021 21:15:25 +0100 Subject: [PATCH 22/37] upgrade to 0.6.0 (new stable release branch) --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9119407..14bf451 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /libopenmpt-0.5.13+release.autotools.tar.gz /libopenmpt-0.5.14+release.autotools.tar.gz /libopenmpt-0.5.15+release.autotools.tar.gz +/libopenmpt-0.6.0+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index a1f2a15..be1a717 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.5.15 +Version: 0.6.0 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Dec 23 2021 Michael Schwendt - 0.6.0-1 +- upgrade to 0.6.0 (new stable release branch) + * Thu Dec 23 2021 Michael Schwendt - 0.5.15-1 - update to 0.5.15 (security release) diff --git a/sources b/sources index cb29386..5d4ee6d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.5.15+release.autotools.tar.gz) = c02ca11d2dd4529695fa3eafa18752464a1806c0b5fa9a27db4532891ebe7377bc2f31796d14d6e88fbebbbd6db71ffbb34a6b1272da8e63eb52c6fce308d894 +SHA512 (libopenmpt-0.6.0+release.autotools.tar.gz) = 8da6cf1f2dbf683c32f45cbf884784360cced5e21f9862c96a1a679bd90b36be9a7cc59accbf82271a804722986cb81e75915f6564aeaaa248ed3e967dfdfb1a From 36a8eba3213c2ed95b7d0f44c51bf549e5dae035 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 16:53:54 +0000 Subject: [PATCH 23/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index be1a717..311f5d6 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Dec 23 2021 Michael Schwendt - 0.6.0-1 - upgrade to 0.6.0 (new stable release branch) From 6e83ad51bb9d5cc471dce99826c96298c89866c8 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Tue, 15 Feb 2022 11:58:10 +0100 Subject: [PATCH 24/37] update to 0.6.1 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 14bf451..91e78a4 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /libopenmpt-0.5.14+release.autotools.tar.gz /libopenmpt-0.5.15+release.autotools.tar.gz /libopenmpt-0.6.0+release.autotools.tar.gz +/libopenmpt-0.6.1+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 311f5d6..e4c2335 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.6.0 -Release: 2%{?dist} +Version: 0.6.1 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Tue Feb 15 2022 Michael Schwendt - 0.6.1-1 +- update to 0.6.1 + * Thu Jan 20 2022 Fedora Release Engineering - 0.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 5d4ee6d..eb22079 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.0+release.autotools.tar.gz) = 8da6cf1f2dbf683c32f45cbf884784360cced5e21f9862c96a1a679bd90b36be9a7cc59accbf82271a804722986cb81e75915f6564aeaaa248ed3e967dfdfb1a +SHA512 (libopenmpt-0.6.1+release.autotools.tar.gz) = b43124746fc7c8bdbcfcf24c5cff1cd8330cab664fd1641ac7a35416ed25bb80c74f31db74085c13f4beb9774c17c12a4486c8c5e976f3fbb70a27c236c0f4fb From c89f25e1fa6817ab4a318f6e0186deadda4b231b Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Mon, 2 May 2022 09:12:55 +0200 Subject: [PATCH 25/37] update to 0.6.3 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 91e78a4..abb3adb 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /libopenmpt-0.5.15+release.autotools.tar.gz /libopenmpt-0.6.0+release.autotools.tar.gz /libopenmpt-0.6.1+release.autotools.tar.gz +/libopenmpt-0.6.3+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index e4c2335..fddcb52 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.1 +Version: 0.6.3 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Mon May 2 2022 Michael Schwendt - 0.6.3-1 +- update to 0.6.3 + * Tue Feb 15 2022 Michael Schwendt - 0.6.1-1 - update to 0.6.1 diff --git a/sources b/sources index eb22079..39aeb8b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.1+release.autotools.tar.gz) = b43124746fc7c8bdbcfcf24c5cff1cd8330cab664fd1641ac7a35416ed25bb80c74f31db74085c13f4beb9774c17c12a4486c8c5e976f3fbb70a27c236c0f4fb +SHA512 (libopenmpt-0.6.3+release.autotools.tar.gz) = b9f9cce9ef7d87ad8f18d17603b613fd153d5effdf04de566daabe26afa08b84eb0aa089b94fcbf7cb724befd0a3d93ffdaf5b578f2a3afa31f7aa517f39c62f From d23f9b49ae3770a69a69164644128af6a802435e Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Fri, 24 Jun 2022 21:32:10 +0200 Subject: [PATCH 26/37] update to 0.6.4 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index abb3adb..f985682 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /libopenmpt-0.6.0+release.autotools.tar.gz /libopenmpt-0.6.1+release.autotools.tar.gz /libopenmpt-0.6.3+release.autotools.tar.gz +/libopenmpt-0.6.4+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index fddcb52..4fe5941 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.3 +Version: 0.6.4 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Fri Jun 24 2022 Michael Schwendt - 0.6.4-1 +- update to 0.6.4 + * Mon May 2 2022 Michael Schwendt - 0.6.3-1 - update to 0.6.3 diff --git a/sources b/sources index 39aeb8b..82f6873 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.3+release.autotools.tar.gz) = b9f9cce9ef7d87ad8f18d17603b613fd153d5effdf04de566daabe26afa08b84eb0aa089b94fcbf7cb724befd0a3d93ffdaf5b578f2a3afa31f7aa517f39c62f +SHA512 (libopenmpt-0.6.4+release.autotools.tar.gz) = 7306ddbe030b8e82ad24fc85083d13d7ca680870f4dbe7215399719cd63ee9ed9e5c4c6229e9f17fb5a2005e86b21ceed0dab158d3f0b73c606579654434421f From e1cb8592168d0780afb397e7e5382768977e6660 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 18:35:36 +0000 Subject: [PATCH 27/37] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 4fe5941..7a0c493 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jun 24 2022 Michael Schwendt - 0.6.4-1 - update to 0.6.4 From e7b652e581cf46ceaaaa722a5f44f594a947afba Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Wed, 14 Sep 2022 05:35:53 -0500 Subject: [PATCH 28/37] Rebuilt for flac 1.4.0 Signed-off-by: Michel Alexandre Salim --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 7a0c493..56026d5 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.6.4 -Release: 2%{?dist} +Release: 3%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Wed Sep 14 2022 Michel Alexandre Salim - 0.6.4-3 +- Rebuilt for flac 1.4.0 + * Thu Jul 21 2022 Fedora Release Engineering - 0.6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 652f6b5329dad65bdfd82f4a2eecabfeea457660 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Sat, 17 Sep 2022 11:56:27 +0200 Subject: [PATCH 29/37] update to 0.6.5 --- libopenmpt.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index 56026d5..1cde272 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.6.4 -Release: 3%{?dist} +Version: 0.6.5 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Sat Sep 17 2022 Michael Schwendt - 0.6.5-1 +- update to 0.6.5 + * Wed Sep 14 2022 Michel Alexandre Salim - 0.6.4-3 - Rebuilt for flac 1.4.0 diff --git a/sources b/sources index 82f6873..b2a200b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.4+release.autotools.tar.gz) = 7306ddbe030b8e82ad24fc85083d13d7ca680870f4dbe7215399719cd63ee9ed9e5c4c6229e9f17fb5a2005e86b21ceed0dab158d3f0b73c606579654434421f +SHA512 (libopenmpt-0.6.5+release.autotools.tar.gz) = eb59ddb22fa07f216c76138c022187c76065be56d51520ed0dcf6f77638aaf832a803f63a398ca8d47bd368aee24dd425242017136c299fade6fd98b9d7b628c From fefa09008a51adfed58a40ad75ec2763f2c88eeb Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Sat, 1 Oct 2022 10:59:57 +0200 Subject: [PATCH 30/37] update to 0.6.6 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f985682..880a817 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /libopenmpt-0.6.1+release.autotools.tar.gz /libopenmpt-0.6.3+release.autotools.tar.gz /libopenmpt-0.6.4+release.autotools.tar.gz +/libopenmpt-0.6.6+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 1cde272..5621a76 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.5 +Version: 0.6.6 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Sat Oct 1 2022 Michael Schwendt - 0.6.6-1 +- update to 0.6.6 + * Sat Sep 17 2022 Michael Schwendt - 0.6.5-1 - update to 0.6.5 diff --git a/sources b/sources index b2a200b..2dbf9e4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.5+release.autotools.tar.gz) = eb59ddb22fa07f216c76138c022187c76065be56d51520ed0dcf6f77638aaf832a803f63a398ca8d47bd368aee24dd425242017136c299fade6fd98b9d7b628c +SHA512 (libopenmpt-0.6.6+release.autotools.tar.gz) = b634c556f13dc51d1008f4216936a9b7cab25a6fb0d5218da0b692ec848de21905ed1981223ac9ecdebea9ce6c5376e91ff92e1655dd0be491fce0114e3230bf From abf923ec43e8becbd8035f84390f6407f4f3c8ed Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Mon, 9 Jan 2023 12:54:04 +0100 Subject: [PATCH 31/37] update to 0.6.7 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 880a817..9c390e2 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /libopenmpt-0.6.3+release.autotools.tar.gz /libopenmpt-0.6.4+release.autotools.tar.gz /libopenmpt-0.6.6+release.autotools.tar.gz +/libopenmpt-0.6.7+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 5621a76..d0ce434 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.6 +Version: 0.6.7 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Mon Jan 9 2023 Michael Schwendt - 0.6.7-1 +- update to 0.6.7 + * Sat Oct 1 2022 Michael Schwendt - 0.6.6-1 - update to 0.6.6 diff --git a/sources b/sources index 2dbf9e4..6e93d9a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.6+release.autotools.tar.gz) = b634c556f13dc51d1008f4216936a9b7cab25a6fb0d5218da0b692ec848de21905ed1981223ac9ecdebea9ce6c5376e91ff92e1655dd0be491fce0114e3230bf +SHA512 (libopenmpt-0.6.7+release.autotools.tar.gz) = 5b6a52491fee74cf3cddbf28edb5ced0e8115a5eb3fb53bf285a33fabfc1c8aa940c729a95f169c17163b4aedaa5a26614b3a85a22dba60bd10ad5d7cc94846e From bdf5efdd9a073457007da676870eba114d15be66 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 17:04:56 +0000 Subject: [PATCH 32/37] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index d0ce434..96f35e3 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.6.7 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 0.6.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Jan 9 2023 Michael Schwendt - 0.6.7-1 - update to 0.6.7 From 210a8271481cf8e1820416baf377b875567cab54 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Sat, 18 Feb 2023 14:09:56 +0100 Subject: [PATCH 33/37] update to 0.6.8 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9c390e2..021572e 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /libopenmpt-0.6.4+release.autotools.tar.gz /libopenmpt-0.6.6+release.autotools.tar.gz /libopenmpt-0.6.7+release.autotools.tar.gz +/libopenmpt-0.6.8+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 96f35e3..038a9c5 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.6.7 -Release: 2%{?dist} +Version: 0.6.8 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Sat Feb 18 2023 Michael Schwendt - 0.6.8-1 +- update to 0.6.8 + * Thu Jan 19 2023 Fedora Release Engineering - 0.6.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 6e93d9a..dcf1dba 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.7+release.autotools.tar.gz) = 5b6a52491fee74cf3cddbf28edb5ced0e8115a5eb3fb53bf285a33fabfc1c8aa940c729a95f169c17163b4aedaa5a26614b3a85a22dba60bd10ad5d7cc94846e +SHA512 (libopenmpt-0.6.8+release.autotools.tar.gz) = 254affd878c8139631b14a74a3bcb7d4af47eb94542507830b82fe6b29d3c1db6f5a1a921c3190304b82886969d49a61a33f260bb2e53dd0c8d58c7a91e34e8e From 91a71d92f40919e260db0fc3a4c7a78e8760c6a5 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Sun, 5 Mar 2023 18:23:31 +0100 Subject: [PATCH 34/37] update to 0.6.9 --- .gitignore | 1 + libopenmpt.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 021572e..c7cc59b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /libopenmpt-0.6.6+release.autotools.tar.gz /libopenmpt-0.6.7+release.autotools.tar.gz /libopenmpt-0.6.8+release.autotools.tar.gz +/libopenmpt-0.6.9+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 038a9c5..9153f54 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.8 +Version: 0.6.9 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,12 +101,16 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Sun Mar 5 2023 Michael Schwendt - 0.6.9-1 +- update to 0.6.9 + * Sat Feb 18 2023 Michael Schwendt - 0.6.8-1 - update to 0.6.8 * Thu Jan 19 2023 Fedora Release Engineering - 0.6.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Jan 9 2023 Michael Schwendt - 0.6.7-1 - update to 0.6.7 diff --git a/sources b/sources index dcf1dba..056f822 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.8+release.autotools.tar.gz) = 254affd878c8139631b14a74a3bcb7d4af47eb94542507830b82fe6b29d3c1db6f5a1a921c3190304b82886969d49a61a33f260bb2e53dd0c8d58c7a91e34e8e +SHA512 (libopenmpt-0.6.9+release.autotools.tar.gz) = 89d44bae0e705b6b8aa54a0939fdf435a879f5197c30c3343f7f6c273511cf3d07e5b64e8859fc9e24842a5f845133723b5cdd36b65112c34c9350607f1e0fea From a3609c98ca9eafcda0d107bebf5dd43666b20980 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Sun, 30 Apr 2023 08:08:20 +0200 Subject: [PATCH 35/37] update to 0.6.10 --- .gitignore | 1 + libopenmpt.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c7cc59b..35b4b4e 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /libopenmpt-0.6.7+release.autotools.tar.gz /libopenmpt-0.6.8+release.autotools.tar.gz /libopenmpt-0.6.9+release.autotools.tar.gz +/libopenmpt-0.6.10+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 9153f54..f4cfe6f 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,5 +1,5 @@ Name: libopenmpt -Version: 0.6.9 +Version: 0.6.10 Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Sun Apr 30 2023 Michael Schwendt - 0.6.10-1 +- update to 0.6.10 + * Sun Mar 5 2023 Michael Schwendt - 0.6.9-1 - update to 0.6.9 diff --git a/sources b/sources index 056f822..e1a91bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.9+release.autotools.tar.gz) = 89d44bae0e705b6b8aa54a0939fdf435a879f5197c30c3343f7f6c273511cf3d07e5b64e8859fc9e24842a5f845133723b5cdd36b65112c34c9350607f1e0fea +SHA512 (libopenmpt-0.6.10+release.autotools.tar.gz) = ffa5f02be36dd8667660aff20b33ac2781fb960bbc815e3246f8e31273eb85702ed51ed04e72a1086bb5a51916dfa7d7db981c55dea52eaaa9e07e00ec170351 From 783cb512d892a5bbb6e1b25935f4e5ae30608dc2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jul 2023 11:40:41 +0000 Subject: [PATCH 36/37] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libopenmpt.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libopenmpt.spec b/libopenmpt.spec index f4cfe6f..358a121 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt Version: 0.6.10 -Release: 1%{?dist} +Release: 2%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jul 20 2023 Fedora Release Engineering - 0.6.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sun Apr 30 2023 Michael Schwendt - 0.6.10-1 - update to 0.6.10 From b4bd088b7d212c76524e18dbc92958d83140bd7f Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Thu, 20 Jul 2023 13:56:12 +0200 Subject: [PATCH 37/37] update to 0.6.11 --- .gitignore | 1 + libopenmpt.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 35b4b4e..64b11d0 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /libopenmpt-0.6.8+release.autotools.tar.gz /libopenmpt-0.6.9+release.autotools.tar.gz /libopenmpt-0.6.10+release.autotools.tar.gz +/libopenmpt-0.6.11+release.autotools.tar.gz diff --git a/libopenmpt.spec b/libopenmpt.spec index 358a121..34aa336 100644 --- a/libopenmpt.spec +++ b/libopenmpt.spec @@ -1,6 +1,6 @@ Name: libopenmpt -Version: 0.6.10 -Release: 2%{?dist} +Version: 0.6.11 +Release: 1%{?dist} %global tar_root %{name}-%{version}+release.autotools @@ -101,6 +101,9 @@ chrpath --delete ${RPM_BUILD_ROOT}%{_bindir}/openmpt123 %changelog +* Thu Jul 20 2023 Michael Schwendt - 0.6.11-1 +- update to 0.6.11 + * Thu Jul 20 2023 Fedora Release Engineering - 0.6.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild diff --git a/sources b/sources index e1a91bf..789c67a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (libopenmpt-0.6.10+release.autotools.tar.gz) = ffa5f02be36dd8667660aff20b33ac2781fb960bbc815e3246f8e31273eb85702ed51ed04e72a1086bb5a51916dfa7d7db981c55dea52eaaa9e07e00ec170351 +SHA512 (libopenmpt-0.6.11+release.autotools.tar.gz) = 3c566d90a6e9b9d2fb06d3b66b0c20d755a2d34d38b0b542a53f2f62559c1f2370e3870bc99ce9e519a693807d73672bcce641d8ccdc61661f4b11af798c1d89