From a9c36e0f0bd6c8d0b49b6d95ed2e1be63638d5b9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Aug 2015 17:37:06 +0000 Subject: [PATCH 001/118] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From d89eb9097f4b8363bc0eebbe12b7e831167b50c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 31 Aug 2015 16:27:47 +0200 Subject: [PATCH 002/118] Import package --- .gitignore | 1 + kf5-syndication.spec | 69 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 71 insertions(+) create mode 100644 kf5-syndication.spec diff --git a/.gitignore b/.gitignore index e69de29..ef0a731 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/syndication-15.08.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec new file mode 100644 index 0000000..333eef4 --- /dev/null +++ b/kf5-syndication.spec @@ -0,0 +1,69 @@ +%global framework syndication + +Name: kf5-%{framework} +Version: 15.08.0 +Release: 1%{?dist} +Summary: The Syndication Library + +License: LGPLv2+ and BSD +URL: https://projects.kde.org/projects/kde/pim/%{framework} + +%global revision %(echo %{version} | cut -d. -f3) +%if %{revision} >= 50 +%global stable unstable +%else +%global stable stable +%endif +Source0: http://download.kde.org/%{stable}/applications/%{version}/src/%{framework}-%{version}.tar.xz + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: qt5-qtbase-devel + +BuildRequires: kf5-kio-devel >= 5.12 +BuildRequires: kf5-kcodecs-devel >= 5.12 + +%description +%{summary}. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q -n %{framework}-%{version} + +%build +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake_kf5} .. +popd + +make %{?_smp_mflags} -C %{_target_platform} + +%install +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} + + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%license COPYING.LIB COPYING.BSD +%{_kf5_libdir}/libKF5Syndication.so.* + +%files devel +%{_kf5_includedir}/syndication_version.h +%{_kf5_includedir}/Syndication +%{_kf5_libdir}/libKF5Syndication.so +%{_kf5_libdir}/cmake/KF5Syndication +%{_kf5_archdatadir}/mkspecs/modules/qt_Syndication.pri + + +%changelog +* Mon Aug 24 2015 Daniel Vrátil - 15.08.0-1 +- Initial version diff --git a/sources b/sources index e69de29..f3d7f4f 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f2309d08e4747aefd17bb22a8c2a9e06 syndication-15.08.0.tar.xz From f80000b40b31654bbc1ea58a3b8aa86cfb42d167 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 4 Dec 2015 14:18:49 +0100 Subject: [PATCH 003/118] Update to 15.11.80 --- .gitignore | 1 + kf5-syndication.spec | 14 +++++++++++--- sources | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ef0a731..4aca6ca 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /syndication-15.08.0.tar.xz +/syndication-15.11.80.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 333eef4..e692ce8 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,7 +1,7 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.08.0 +Version: 15.11.80 Release: 1%{?dist} Summary: The Syndication Library @@ -20,8 +20,11 @@ BuildRequires: kf5-rpm-macros BuildRequires: extra-cmake-modules BuildRequires: qt5-qtbase-devel -BuildRequires: kf5-kio-devel >= 5.12 -BuildRequires: kf5-kcodecs-devel >= 5.12 +BuildRequires: kf5-kio-devel >= 5.15 +BuildRequires: kf5-kcodecs-devel >= 5.15 + +Obsoletes: kdepimlibs%{?_isa} < 15.08.0 +Conflicts: kdepimlibs%{?_isa} < 15.08.0 %description %{summary}. @@ -29,6 +32,8 @@ BuildRequires: kf5-kcodecs-devel >= 5.12 %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} +Obsoletes: kdepimlibs-devel%{?_isa} < 15.08.0 +Conflicts: kdepimlibs-devel%{?_isa} < 15.08.0 %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -65,5 +70,8 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Dec 03 2015 Jan Grulich - 15.11.80-1 +- Update to 15.11.80 + * Mon Aug 24 2015 Daniel Vrátil - 15.08.0-1 - Initial version diff --git a/sources b/sources index f3d7f4f..ff3e819 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f2309d08e4747aefd17bb22a8c2a9e06 syndication-15.08.0.tar.xz +6dd5b6e9f4861db2b57075f8d7398434 syndication-15.11.80.tar.xz From aabb301d03c2b61fc5068b728c2d6c6f8554a72a Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Mon, 7 Dec 2015 15:07:02 +0100 Subject: [PATCH 004/118] Update to 15.11.90 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4aca6ca..9610cbe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /syndication-15.08.0.tar.xz /syndication-15.11.80.tar.xz +/syndication-15.11.90.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index e692ce8..8fcb29f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,7 +1,7 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.11.80 +Version: 15.11.90 Release: 1%{?dist} Summary: The Syndication Library @@ -70,6 +70,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Dec 07 2015 Jan Grulich - 15.11.90-1 +- Update to 15.11.90 + * Thu Dec 03 2015 Jan Grulich - 15.11.80-1 - Update to 15.11.80 diff --git a/sources b/sources index ff3e819..b3bf043 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6dd5b6e9f4861db2b57075f8d7398434 syndication-15.11.80.tar.xz +8b060638e09880ff523a5b8ea483ca2c syndication-15.11.90.tar.xz From 3702e34213be25a02985a6acad25d05df6a57874 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 15 Dec 2015 09:50:19 +0100 Subject: [PATCH 005/118] Update to 15.12.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9610cbe..d37ae08 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /syndication-15.08.0.tar.xz /syndication-15.11.80.tar.xz /syndication-15.11.90.tar.xz +/syndication-15.12.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 8fcb29f..c4a3235 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,7 +1,7 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.11.90 +Version: 15.12.0 Release: 1%{?dist} Summary: The Syndication Library @@ -70,6 +70,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Dec 15 2015 Jan Grulich - 15.12-0-1 +- Update to 15.12.0 + * Mon Dec 07 2015 Jan Grulich - 15.11.90-1 - Update to 15.11.90 diff --git a/sources b/sources index b3bf043..1e2da8f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8b060638e09880ff523a5b8ea483ca2c syndication-15.11.90.tar.xz +8db9d498f5a48cf742d66bd9ecacb811 syndication-15.12.0.tar.xz From 3d17135bd0dddad94385b283dd5b74ef268f4508 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 15 Dec 2015 16:31:01 +0100 Subject: [PATCH 006/118] Remove obsoletes/conflicts with kdepimlibs --- kf5-syndication.spec | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index c4a3235..1950978 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 15.12.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -23,17 +23,12 @@ BuildRequires: qt5-qtbase-devel BuildRequires: kf5-kio-devel >= 5.15 BuildRequires: kf5-kcodecs-devel >= 5.15 -Obsoletes: kdepimlibs%{?_isa} < 15.08.0 -Conflicts: kdepimlibs%{?_isa} < 15.08.0 - %description %{summary}. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} -Obsoletes: kdepimlibs-devel%{?_isa} < 15.08.0 -Conflicts: kdepimlibs-devel%{?_isa} < 15.08.0 %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -70,6 +65,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Dec 15 2015 Jan Grulich - 15.12.0-2 +- Remove obsoletes/conflicts with kdepimlibs + * Tue Dec 15 2015 Jan Grulich - 15.12-0-1 - Update to 15.12.0 From 469f2d4f070dbd523e559ed683f6bf69be192a7f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:08:36 +0000 Subject: [PATCH 007/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1950978..7168990 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 15.12.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -65,6 +65,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 15.12.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Dec 15 2015 Jan Grulich - 15.12.0-2 - Remove obsoletes/conflicts with kdepimlibs From 18efce891345d2021f6ab120da4262a07f0a7161 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2016 19:42:01 -0600 Subject: [PATCH 008/118] 15.12.1 --- .gitignore | 5 +---- kf5-syndication.spec | 17 +++++++++++------ sources | 2 +- sources.basename | 1 + 4 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 sources.basename diff --git a/.gitignore b/.gitignore index d37ae08..f2f33bc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -/syndication-15.08.0.tar.xz -/syndication-15.11.80.tar.xz -/syndication-15.11.90.tar.xz -/syndication-15.12.0.tar.xz +/syndication-15.12.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 7168990..c663866 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,12 +1,12 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.12.0 -Release: 3%{?dist} +Version: 15.12.1 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD -URL: https://projects.kde.org/projects/kde/pim/%{framework} +URL: https://projects.kde.org/%{framework} %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 @@ -37,14 +37,16 @@ developing applications that use %{name}. %prep %setup -q -n %{framework}-%{version} + %build -mkdir -p %{_target_platform} +mkdir %{_target_platform} pushd %{_target_platform} %{cmake_kf5} .. popd make %{?_smp_mflags} -C %{_target_platform} + %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} @@ -58,13 +60,16 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files devel %{_kf5_includedir}/syndication_version.h -%{_kf5_includedir}/Syndication +%{_kf5_includedir}/Syndication/ %{_kf5_libdir}/libKF5Syndication.so -%{_kf5_libdir}/cmake/KF5Syndication +%{_kf5_libdir}/cmake/KF5Syndication/ %{_kf5_archdatadir}/mkspecs/modules/qt_Syndication.pri %changelog +* Sat Feb 06 2016 Rex Dieter 15.12.1-1 +- 15.12.1 + * Thu Feb 04 2016 Fedora Release Engineering - 15.12.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 1e2da8f..a9f1b93 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8db9d498f5a48cf742d66bd9ecacb811 syndication-15.12.0.tar.xz +5054ce9e76edcbc914bc23e7ffa2548d syndication-15.12.1.tar.xz diff --git a/sources.basename b/sources.basename new file mode 100644 index 0000000..4ced2af --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +syndication From c6882def649052217e42ab59239120fb64b673e8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 14 Feb 2016 14:36:25 -0600 Subject: [PATCH 009/118] 15.12.2 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f2f33bc..77a01cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /syndication-15.12.1.tar.xz +/syndication-15.12.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index c663866..ad91299 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,8 +1,8 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.12.1 -Release: 1%{?dist} +Version: 15.12.2 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -67,6 +67,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Feb 14 2016 Rex Dieter - 15.12.2-1 +- 15.12.2 + * Sat Feb 06 2016 Rex Dieter 15.12.1-1 - 15.12.1 diff --git a/sources b/sources index a9f1b93..fde0b4f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5054ce9e76edcbc914bc23e7ffa2548d syndication-15.12.1.tar.xz +7730dec2b9002f34126eb1198afafe13 syndication-15.12.2.tar.xz From a2d637e0a5a242688b1c6b946fd7b4a69952d9f2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 15 Mar 2016 13:00:29 -0500 Subject: [PATCH 010/118] 15.12.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 77a01cf..802765d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /syndication-15.12.1.tar.xz /syndication-15.12.2.tar.xz +/syndication-15.12.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ad91299..a5bc301 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,7 +1,7 @@ %global framework syndication Name: kf5-%{framework} -Version: 15.12.2 +Version: 15.12.3 Release: 1%{?dist} Summary: The Syndication Library @@ -67,6 +67,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Mar 15 2016 Rex Dieter - 15.12.3-1 +- 15.12.3 + * Sun Feb 14 2016 Rex Dieter - 15.12.2-1 - 15.12.2 diff --git a/sources b/sources index fde0b4f..bed49bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7730dec2b9002f34126eb1198afafe13 syndication-15.12.2.tar.xz +7a2301dcd742540f26226dbe2f10032a syndication-15.12.3.tar.xz From a6cf8c036f7560fb5761f237b4464d1e29a9783d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 1 May 2016 05:34:03 -0500 Subject: [PATCH 011/118] 16.04.0 --- .gitignore | 4 +--- kf5-syndication.spec | 47 +++++++++++++++++++++++++++++++++----------- sources | 2 +- 3 files changed, 38 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 802765d..4259757 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1 @@ -/syndication-15.12.1.tar.xz -/syndication-15.12.2.tar.xz -/syndication-15.12.3.tar.xz +/syndication-16.04.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index a5bc301..09ac7b8 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,12 +1,19 @@ %global framework syndication -Name: kf5-%{framework} -Version: 15.12.3 +# uncomment to enable bootstrap mode +#global bootstrap 1 + +%if !0%{?bootstrap} +%global tests 1 +%endif + +Name: kf5-%{framework} +Version: 16.04.0 Release: 1%{?dist} -Summary: The Syndication Library +Summary: The Syndication Library -License: LGPLv2+ and BSD -URL: https://projects.kde.org/%{framework} +License: LGPLv2+ and BSD +URL: https://quickgit.kde.org/?p=%{framework}.git %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 @@ -16,12 +23,16 @@ URL: https://projects.kde.org/%{framework} %endif Source0: http://download.kde.org/%{stable}/applications/%{version}/src/%{framework}-%{version}.tar.xz -BuildRequires: kf5-rpm-macros BuildRequires: extra-cmake-modules -BuildRequires: qt5-qtbase-devel - +BuildRequires: kf5-rpm-macros BuildRequires: kf5-kio-devel >= 5.15 BuildRequires: kf5-kcodecs-devel >= 5.15 +BuildRequires: qt5-qtbase-devel +%if 0%{?tests} +BuildRequires: dbus-x11 +BuildRequires: time +BuildRequires: xorg-x11-server-Xvfb +%endif %description %{summary}. @@ -35,13 +46,14 @@ developing applications that use %{name}. %prep -%setup -q -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} -p1 %build mkdir %{_target_platform} pushd %{_target_platform} -%{cmake_kf5} .. +%{cmake_kf5} .. \ + -DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF} popd make %{?_smp_mflags} -C %{_target_platform} @@ -51,11 +63,21 @@ make %{?_smp_mflags} -C %{_target_platform} make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +%check +%if 0%{?tests} +export CTEST_OUTPUT_ON_FAILURE=1 +xvfb-run -a \ +dbus-launch --exit-with-session \ +time \ +make test ARGS="--output-on-failure --timeout 300" -C %{_target_platform} ||: +%endif + + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files -%license COPYING.LIB COPYING.BSD +%license COPYING* %{_kf5_libdir}/libKF5Syndication.so.* %files devel @@ -67,6 +89,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun May 01 2016 Rex Dieter - 16.04.0 -1 +- 16.04.0 + * Tue Mar 15 2016 Rex Dieter - 15.12.3-1 - 15.12.3 diff --git a/sources b/sources index bed49bf..af642c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7a2301dcd742540f26226dbe2f10032a syndication-15.12.3.tar.xz +90180e413dfa97065f7a627e1b79746e syndication-16.04.0.tar.xz From bd84f12d35ec7b959b1c7bd6bc478d0e44dd809f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 May 2016 18:48:44 -0500 Subject: [PATCH 012/118] 16.04.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4259757..24e9058 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /syndication-16.04.0.tar.xz +/syndication-16.04.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 09ac7b8..da65824 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.04.0 +Version: 16.04.1 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ make test ARGS="--output-on-failure --timeout 300" -C %{_target_platform} ||: %changelog +* Sun May 08 2016 Rex Dieter - 16.04.1-1 +- 16.04.1 + * Sun May 01 2016 Rex Dieter - 16.04.0 -1 - 16.04.0 diff --git a/sources b/sources index af642c0..2d48ef6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -90180e413dfa97065f7a627e1b79746e syndication-16.04.0.tar.xz +b3d2ccf050ed6e74aee484d3ba31d6ae syndication-16.04.1.tar.xz From fe074ec3414b2ea6c317f3d040a431d25fd41deb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 25 May 2016 08:27:50 -0500 Subject: [PATCH 013/118] 16.04.1-2 - %check: polish, drop unused deps (dbus/xvfb), use test/fast - bump kf5_ver --- kf5-syndication.spec | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index da65824..2f89084 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Version: 16.04.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -25,13 +25,14 @@ Source0: http://download.kde.org/%{stable}/applications/%{version}/src/%{ BuildRequires: extra-cmake-modules BuildRequires: kf5-rpm-macros -BuildRequires: kf5-kio-devel >= 5.15 -BuildRequires: kf5-kcodecs-devel >= 5.15 +%global kf5_ver 5.19.0 +BuildRequires: kf5-kio-devel >= %{kf5_ver} +BuildRequires: kf5-kcodecs-devel >= %{kf5_ver} BuildRequires: qt5-qtbase-devel %if 0%{?tests} -BuildRequires: dbus-x11 -BuildRequires: time -BuildRequires: xorg-x11-server-Xvfb +#BuildRequires: dbus-x11 +BuildRequires: time +#BuildRequires: xorg-x11-server-Xvfb %endif %description @@ -65,11 +66,13 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %check %if 0%{?tests} +DBUS_SESSION_BUS_ADDRESS= +DISPLAY= export CTEST_OUTPUT_ON_FAILURE=1 -xvfb-run -a \ -dbus-launch --exit-with-session \ +#xvfb-run -a \ +#dbus-launch --exit-with-session \ time \ -make test ARGS="--output-on-failure --timeout 300" -C %{_target_platform} ||: +make test/fast -C %{_target_platform} %endif @@ -89,10 +92,14 @@ make test ARGS="--output-on-failure --timeout 300" -C %{_target_platform} ||: %changelog +* Wed May 25 2016 Rex Dieter - 16.04.1-2 +- %%check: polish, drop unused deps (dbus/xvfb), use test/fast +- bump kf5_ver + * Sun May 08 2016 Rex Dieter - 16.04.1-1 - 16.04.1 -* Sun May 01 2016 Rex Dieter - 16.04.0 -1 +* Sun May 01 2016 Rex Dieter - 16.04.0-1 - 16.04.0 * Tue Mar 15 2016 Rex Dieter - 15.12.3-1 From 69a2a26d450114289b3fcbc1f8e6647ae840f49c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 26 May 2016 10:18:09 -0500 Subject: [PATCH 014/118] old sources --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 24e9058..2f3e824 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -/syndication-16.04.0.tar.xz /syndication-16.04.1.tar.xz From 9963d2605be925618168be22fe47c98cdfc04a0c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 12 Jun 2016 12:35:44 -0500 Subject: [PATCH 015/118] 16.04.2 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2f3e824..c5d769a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /syndication-16.04.1.tar.xz +/syndication-16.04.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 2f89084..ce65824 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,8 +8,8 @@ %endif Name: kf5-%{framework} -Version: 16.04.1 -Release: 2%{?dist} +Version: 16.04.2 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Jun 12 2016 Rex Dieter - 16.04.2-1 +- 16.04.2 + * Wed May 25 2016 Rex Dieter - 16.04.1-2 - %%check: polish, drop unused deps (dbus/xvfb), use test/fast - bump kf5_ver diff --git a/sources b/sources index 2d48ef6..9ea5af0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b3d2ccf050ed6e74aee484d3ba31d6ae syndication-16.04.1.tar.xz +a12ae8b9e267848644afa2451760a08d syndication-16.04.2.tar.xz From 3856fff009c36a25c2e1654d217a9d363d340ead Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 9 Jul 2016 22:06:37 -0500 Subject: [PATCH 016/118] 16.04.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c5d769a..2299cfe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /syndication-16.04.1.tar.xz /syndication-16.04.2.tar.xz +/syndication-16.04.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ce65824..e465c3f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.04.2 +Version: 16.04.3 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Jul 10 2016 Rex Dieter - 16.04.3-1 +- 16.04.3 + * Sun Jun 12 2016 Rex Dieter - 16.04.2-1 - 16.04.2 diff --git a/sources b/sources index 9ea5af0..40cc5e1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a12ae8b9e267848644afa2451760a08d syndication-16.04.2.tar.xz +9f95de464d5c9ffd09ee6ae94b0b67e3 syndication-16.04.3.tar.xz From ea582d0778b895d9c8430b3a2d7bb51ce35c5c89 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 3 Sep 2016 22:42:56 -0500 Subject: [PATCH 017/118] 16.08.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2299cfe..e6b3bf4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /syndication-16.04.1.tar.xz /syndication-16.04.2.tar.xz /syndication-16.04.3.tar.xz +/syndication-16.08.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index e465c3f..97f213a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.04.3 +Version: 16.08.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Sep 04 2016 Rex Dieter - 16.08.0-1 +- 16.08.0 + * Sun Jul 10 2016 Rex Dieter - 16.04.3-1 - 16.04.3 diff --git a/sources b/sources index 40cc5e1..2bdf912 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9f95de464d5c9ffd09ee6ae94b0b67e3 syndication-16.04.3.tar.xz +3260cdce0a614e0a69201ea813e03ea8 syndication-16.08.0.tar.xz From ad932c946d3ca143a6a248b9c04694abd6759089 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 8 Sep 2016 10:38:07 -0500 Subject: [PATCH 018/118] 16.08.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e6b3bf4..3ddf09e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /syndication-16.04.2.tar.xz /syndication-16.04.3.tar.xz /syndication-16.08.0.tar.xz +/syndication-16.08.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 97f213a..1d4910b 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.08.0 +Version: 16.08.1 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Sep 08 2016 Rex Dieter - 16.08.1-1 +- 16.08.1 + * Sun Sep 04 2016 Rex Dieter - 16.08.0-1 - 16.08.0 diff --git a/sources b/sources index 2bdf912..019ca73 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3260cdce0a614e0a69201ea813e03ea8 syndication-16.08.0.tar.xz +9b216c4d60dc3e844beb73cb8eaaba57 syndication-16.08.1.tar.xz From 02efc22cde1599a1ccff89006dcc8a06f93c2f8b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 13 Oct 2016 16:13:31 -0500 Subject: [PATCH 019/118] 16.08.2 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3ddf09e..b49b234 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /syndication-16.04.3.tar.xz /syndication-16.08.0.tar.xz /syndication-16.08.1.tar.xz +/syndication-16.08.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1d4910b..8bc5e36 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.08.1 +Version: 16.08.2 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Oct 13 2016 Rex Dieter - 16.08.2-1 +- 16.08.2 + * Thu Sep 08 2016 Rex Dieter - 16.08.1-1 - 16.08.1 diff --git a/sources b/sources index 019ca73..9f34567 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9b216c4d60dc3e844beb73cb8eaaba57 syndication-16.08.1.tar.xz +4202e2d27d6e60818a32c870cdd81ba5 syndication-16.08.2.tar.xz From f5a3e37badf88ba747fc3fed167183f29b5297e5 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 5 Dec 2016 16:23:19 -0600 Subject: [PATCH 020/118] 16.08.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b49b234..2ffca52 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /syndication-16.08.0.tar.xz /syndication-16.08.1.tar.xz /syndication-16.08.2.tar.xz +/syndication-16.08.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 8bc5e36..ce87911 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.08.2 +Version: 16.08.3 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Dec 05 2016 Rex Dieter - 16.08.3-1 +- 16.08.3 + * Thu Oct 13 2016 Rex Dieter - 16.08.2-1 - 16.08.2 diff --git a/sources b/sources index 9f34567..0d73035 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4202e2d27d6e60818a32c870cdd81ba5 syndication-16.08.2.tar.xz +a982ec86005a1ca16a989a61aa10905e syndication-16.08.3.tar.xz From b5209c8374cae61ef63ad58a4c8c22b69e6a307a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 15 Jan 2017 20:34:09 -0600 Subject: [PATCH 021/118] 16.12.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2ffca52..5fd3a88 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /syndication-16.08.1.tar.xz /syndication-16.08.2.tar.xz /syndication-16.08.3.tar.xz +/syndication-16.12.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ce87911..dd124f9 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.08.3 +Version: 16.12.1 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Jan 16 2017 Rex Dieter - 16.12.1-1 +- 16.12.1 + * Mon Dec 05 2016 Rex Dieter - 16.08.3-1 - 16.08.3 diff --git a/sources b/sources index 0d73035..d98ba66 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a982ec86005a1ca16a989a61aa10905e syndication-16.08.3.tar.xz +SHA512 (syndication-16.12.1.tar.xz) = b0d18846092029f77b16352df1ddcd847dd22172769f5174f996d267efacd753ce6b5dbd532da2e678222da507c3dc8269c4a6ef6db0a0d82e896cbe83ecaf82 From 73c06a99bf9c6584b381a63eefcad8780effc370 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 9 Feb 2017 11:13:16 -0600 Subject: [PATCH 022/118] 16.12.2 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5fd3a88..bfbb7f5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /syndication-16.08.2.tar.xz /syndication-16.08.3.tar.xz /syndication-16.12.1.tar.xz +/syndication-16.12.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index dd124f9..850e2ff 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.12.1 +Version: 16.12.2 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Feb 09 2017 Rex Dieter - 16.12.2-1 +- 16.12.2 + * Mon Jan 16 2017 Rex Dieter - 16.12.1-1 - 16.12.1 diff --git a/sources b/sources index d98ba66..38f97f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-16.12.1.tar.xz) = b0d18846092029f77b16352df1ddcd847dd22172769f5174f996d267efacd753ce6b5dbd532da2e678222da507c3dc8269c4a6ef6db0a0d82e896cbe83ecaf82 +SHA512 (syndication-16.12.2.tar.xz) = eb513539ef0cd283f04968a138f22dce96ddc365be5fbfff2f8f60a8add35f6ca342a231ff706584a3794e91d92f14c8ffba8d984f4a79241ed86c91a9da1e1a From 0721867eb75aedc0a2864a5affd5e7d4bbc36075 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 9 Mar 2017 11:15:26 -0600 Subject: [PATCH 023/118] 16.12.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bfbb7f5..daa3027 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /syndication-16.08.3.tar.xz /syndication-16.12.1.tar.xz /syndication-16.12.2.tar.xz +/syndication-16.12.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 850e2ff..b6d72ae 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 16.12.2 +Version: 16.12.3 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Mar 09 2017 Rex Dieter - 16.12.3-1 +- 16.12.3 + * Thu Feb 09 2017 Rex Dieter - 16.12.2-1 - 16.12.2 diff --git a/sources b/sources index 38f97f9..2ab41c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-16.12.2.tar.xz) = eb513539ef0cd283f04968a138f22dce96ddc365be5fbfff2f8f60a8add35f6ca342a231ff706584a3794e91d92f14c8ffba8d984f4a79241ed86c91a9da1e1a +SHA512 (syndication-16.12.3.tar.xz) = 868c8f11d4e477312943bae5e59effb56432fac96060b015e072489344f9b3a099594af8541598aa516e9239179080ca7a376db90589260d1ce694facb59194b From 9f2a1f913d02d303ac0f3ef23f1348aab38048a3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 11 May 2017 11:55:22 -0500 Subject: [PATCH 024/118] 17.04.1 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index daa3027..757bdea 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /syndication-16.12.1.tar.xz /syndication-16.12.2.tar.xz /syndication-16.12.3.tar.xz +/syndication-17.04.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index b6d72ae..ec4526a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,12 +8,12 @@ %endif Name: kf5-%{framework} -Version: 16.12.3 +Version: 17.04.1 Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD -URL: https://quickgit.kde.org/?p=%{framework}.git +URL: https://cgit.kde.org/%{framework}.git %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu May 11 2017 Rex Dieter - 17.04.1-1 +- 17.04.1 + * Thu Mar 09 2017 Rex Dieter - 16.12.3-1 - 16.12.3 diff --git a/sources b/sources index 2ab41c0..6c577c8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-16.12.3.tar.xz) = 868c8f11d4e477312943bae5e59effb56432fac96060b015e072489344f9b3a099594af8541598aa516e9239179080ca7a376db90589260d1ce694facb59194b +SHA512 (syndication-17.04.1.tar.xz) = 4c158a9c6e214f75261fc3b909be246fe1618aab429a1e86e7d2c6bf5b897c01b93f1947b42973514069d55573197b616676ca6702eaff6cbed1f16730723826 From 8b854d8512f3f4734bd12e375e935cff582c20bc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 15 Jun 2017 09:18:07 -0500 Subject: [PATCH 025/118] 17.04.2 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 757bdea..31a1344 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /syndication-16.12.2.tar.xz /syndication-16.12.3.tar.xz /syndication-17.04.1.tar.xz +/syndication-17.04.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ec4526a..053598f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.04.1 +Version: 17.04.2 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Jun 15 2017 Rex Dieter - 17.04.2-1 +- 17.04.2 + * Thu May 11 2017 Rex Dieter - 17.04.1-1 - 17.04.1 diff --git a/sources b/sources index 6c577c8..bc65e9d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.04.1.tar.xz) = 4c158a9c6e214f75261fc3b909be246fe1618aab429a1e86e7d2c6bf5b897c01b93f1947b42973514069d55573197b616676ca6702eaff6cbed1f16730723826 +SHA512 (syndication-17.04.2.tar.xz) = bbab6ed51328813f8b88af8edd1fe976189bbd2c0b70488ef91d46c937a7ef8aaa4132ed6cdb3a1514ad32ea50bfff5c1888564441b60a104279000c8b8028ac From 30ce9f0b063bfbc4937b9cd360fa51b188893363 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 17:41:38 +0000 Subject: [PATCH 026/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 053598f..62ebd1a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Version: 17.04.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 17.04.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Thu Jun 15 2017 Rex Dieter - 17.04.2-1 - 17.04.2 From d8c345df290d3a7127cf099c665a852776344d8a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 28 Jul 2017 18:00:11 -0500 Subject: [PATCH 027/118] 17.04.3 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 31a1344..2b9098a 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /syndication-16.12.3.tar.xz /syndication-17.04.1.tar.xz /syndication-17.04.2.tar.xz +/syndication-17.04.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 62ebd1a..81f0c92 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,8 +8,8 @@ %endif Name: kf5-%{framework} -Version: 17.04.2 -Release: 2%{?dist} +Version: 17.04.3 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Jul 28 2017 Rex Dieter - 17.04.3-1 +- 17.04.3 + * Wed Jul 26 2017 Fedora Release Engineering - 17.04.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild diff --git a/sources b/sources index bc65e9d..dd79f52 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.04.2.tar.xz) = bbab6ed51328813f8b88af8edd1fe976189bbd2c0b70488ef91d46c937a7ef8aaa4132ed6cdb3a1514ad32ea50bfff5c1888564441b60a104279000c8b8028ac +SHA512 (syndication-17.04.3.tar.xz) = db93505c4177a830ecd1fae35db3dc06228d350c6ef66f147e0b8b3755b81f9191c334dae8a2209c65f2fc19860e5608a5b3d79c9a590f571332da893f9fb97e From f1a74c35a0c36261801015bc56ca427c410ae4bf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 25 Sep 2017 13:26:37 -0500 Subject: [PATCH 028/118] 17.08.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2b9098a..37561f9 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /syndication-17.04.1.tar.xz /syndication-17.04.2.tar.xz /syndication-17.04.3.tar.xz +/syndication-17.08.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 81f0c92..38bed27 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.04.3 +Version: 17.08.1 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Sep 25 2017 Rex Dieter - 17.08.1-1 +- 17.08.1 + * Fri Jul 28 2017 Rex Dieter - 17.04.3-1 - 17.04.3 diff --git a/sources b/sources index dd79f52..faaf961 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.04.3.tar.xz) = db93505c4177a830ecd1fae35db3dc06228d350c6ef66f147e0b8b3755b81f9191c334dae8a2209c65f2fc19860e5608a5b3d79c9a590f571332da893f9fb97e +SHA512 (syndication-17.08.1.tar.xz) = 6a1d554c2dc1246019428e580453d94a586f91c39dc2de763a0e270836dd2de03d929d8ab216a4a63916c75fd3df3f35b6655d506767d6e14f65a5ea7b84b550 From bf0d45811813bc4c7e7648230598445c8c3867f2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 8 Nov 2017 10:37:24 -0600 Subject: [PATCH 029/118] 17.08.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 37561f9..af4318a 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /syndication-17.04.2.tar.xz /syndication-17.04.3.tar.xz /syndication-17.08.1.tar.xz +/syndication-17.08.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 38bed27..c27954f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.08.1 +Version: 17.08.3 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Nov 08 2017 Rex Dieter - 17.08.3-1 +- 17.08.3 + * Mon Sep 25 2017 Rex Dieter - 17.08.1-1 - 17.08.1 diff --git a/sources b/sources index faaf961..e55eee2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.08.1.tar.xz) = 6a1d554c2dc1246019428e580453d94a586f91c39dc2de763a0e270836dd2de03d929d8ab216a4a63916c75fd3df3f35b6655d506767d6e14f65a5ea7b84b550 +SHA512 (syndication-17.08.3.tar.xz) = 0a8b2e271d0518f44d6b93dc3304d922d67bc36104fa64fae663be8763f2b5be0a0720f7f39e2324593a1875eae1ccf384efc14ca55e10540889c43f86b75d4a From 5a83480e0a1466229d5ce7d4207a5e08857c3e3c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 22 Nov 2017 10:28:44 -0600 Subject: [PATCH 030/118] 17.11.80 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index af4318a..e4723db 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /syndication-17.04.3.tar.xz /syndication-17.08.1.tar.xz /syndication-17.08.3.tar.xz +/syndication-17.11.80.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index c27954f..e0bbbf0 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.08.3 +Version: 17.11.80 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Nov 22 2017 Rex Dieter - 17.11.80-1 +- 17.11.80 + * Wed Nov 08 2017 Rex Dieter - 17.08.3-1 - 17.08.3 diff --git a/sources b/sources index e55eee2..f5cd1dc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.08.3.tar.xz) = 0a8b2e271d0518f44d6b93dc3304d922d67bc36104fa64fae663be8763f2b5be0a0720f7f39e2324593a1875eae1ccf384efc14ca55e10540889c43f86b75d4a +SHA512 (syndication-17.11.80.tar.xz) = 8331b034b1e03bfe77f178fd862e93aca9f519c3ab9645de379e417c504ec5bb320282bb90ab07ddbfbd650bca7862a16ca60ee03494226f084767ac106d082d From 635d9d7c78f812aac22618dd7832c15d94966282 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 6 Dec 2017 08:56:07 -0600 Subject: [PATCH 031/118] 17.11.90 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e4723db..ab94492 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /syndication-17.08.1.tar.xz /syndication-17.08.3.tar.xz /syndication-17.11.80.tar.xz +/syndication-17.11.90.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index e0bbbf0..f96d10f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.11.80 +Version: 17.11.90 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Dec 06 2017 Rex Dieter - 17.11.90-1 +- 17.11.90 + * Wed Nov 22 2017 Rex Dieter - 17.11.80-1 - 17.11.80 diff --git a/sources b/sources index f5cd1dc..30edeee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.11.80.tar.xz) = 8331b034b1e03bfe77f178fd862e93aca9f519c3ab9645de379e417c504ec5bb320282bb90ab07ddbfbd650bca7862a16ca60ee03494226f084767ac106d082d +SHA512 (syndication-17.11.90.tar.xz) = af2f2f9492edc41fdb3510f839d1c784c862de8a6f75957602f561e46793fce96098bbf465ef3060113d267fc601d7a28f0e3a208216afbcbf2a7546f8c846a9 From 854816564e215a9aea0c7892681b74947bae4eee Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 12 Dec 2017 14:46:35 -0600 Subject: [PATCH 032/118] 17.12.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ab94492..a4d20f0 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /syndication-17.08.3.tar.xz /syndication-17.11.80.tar.xz /syndication-17.11.90.tar.xz +/syndication-17.12.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index f96d10f..9f6be4d 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.11.90 +Version: 17.12.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Dec 12 2017 Rex Dieter - 17.12.0-1 +- 17.12.0 + * Wed Dec 06 2017 Rex Dieter - 17.11.90-1 - 17.11.90 diff --git a/sources b/sources index 30edeee..5e44492 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.11.90.tar.xz) = af2f2f9492edc41fdb3510f839d1c784c862de8a6f75957602f561e46793fce96098bbf465ef3060113d267fc601d7a28f0e3a208216afbcbf2a7546f8c846a9 +SHA512 (syndication-17.12.0.tar.xz) = 49324c2f5705a97b71b2678f2542372dc22362c7d8ebadb7d68a3a323c0fcdc66b5089a24f100a99ee8a68c59a67cf11e407a395857a3f71a539d3fc2fcce745 From 9ee4108606444e032ef8e1fdcdca819a848d9d2e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 11 Jan 2018 15:24:46 -0600 Subject: [PATCH 033/118] 17.12.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a4d20f0..b888197 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /syndication-17.11.80.tar.xz /syndication-17.11.90.tar.xz /syndication-17.12.0.tar.xz +/syndication-17.12.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9f6be4d..570d3d3 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.12.0 +Version: 17.12.1 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Jan 11 2018 Rex Dieter - 17.12.1-1 +- 17.12.1 + * Tue Dec 12 2017 Rex Dieter - 17.12.0-1 - 17.12.0 diff --git a/sources b/sources index 5e44492..c9452fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.12.0.tar.xz) = 49324c2f5705a97b71b2678f2542372dc22362c7d8ebadb7d68a3a323c0fcdc66b5089a24f100a99ee8a68c59a67cf11e407a395857a3f71a539d3fc2fcce745 +SHA512 (syndication-17.12.1.tar.xz) = a1cdf152d70c7e23bcd503dd50c2cba2098f70efa6a8dcc366da925ee2f604fb2a71d650ddfbcd79c9d748e89eeced9fd219e7b11a7f9db2740fd0d43af8f4ee From e05a6de39775187dfd195073531150273f33050e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 6 Feb 2018 11:36:37 -0600 Subject: [PATCH 034/118] 17.12.2 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b888197..e830edb 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /syndication-17.11.90.tar.xz /syndication-17.12.0.tar.xz /syndication-17.12.1.tar.xz +/syndication-17.12.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 570d3d3..8234113 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.12.1 +Version: 17.12.2 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Feb 06 2018 Rex Dieter - 17.12.2-1 +- 17.12.2 + * Thu Jan 11 2018 Rex Dieter - 17.12.1-1 - 17.12.1 diff --git a/sources b/sources index c9452fe..4f606b8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.12.1.tar.xz) = a1cdf152d70c7e23bcd503dd50c2cba2098f70efa6a8dcc366da925ee2f604fb2a71d650ddfbcd79c9d748e89eeced9fd219e7b11a7f9db2740fd0d43af8f4ee +SHA512 (syndication-17.12.2.tar.xz) = cebd16b9f20960106c1361c2549727e03a6c907095584a90303c232ca1c01819a6e350807e96053677f8f34aecd6ad0ce856d01c7804519f89463236de53f211 From 753fa7ad596f2a89a29b593b4c3fca90b8be630e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 6 Mar 2018 13:31:06 -0600 Subject: [PATCH 035/118] 17.12.3 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e830edb..ecd1990 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /syndication-17.12.0.tar.xz /syndication-17.12.1.tar.xz /syndication-17.12.2.tar.xz +/syndication-17.12.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 8234113..da0ef41 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.12.2 +Version: 17.12.3 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Mar 06 2018 Rex Dieter - 17.12.3-1 +- 17.12.3 + * Tue Feb 06 2018 Rex Dieter - 17.12.2-1 - 17.12.2 diff --git a/sources b/sources index 4f606b8..2201aec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.12.2.tar.xz) = cebd16b9f20960106c1361c2549727e03a6c907095584a90303c232ca1c01819a6e350807e96053677f8f34aecd6ad0ce856d01c7804519f89463236de53f211 +SHA512 (syndication-17.12.3.tar.xz) = a1f2c472194355b570e4128ab4e4be70d6baa3d1c91e35706b7ec242caa950ec3686ab20772aec6fc2ecc7b0d6b390195e6bca5ec8a130951886589df73c1f9c From 4b97164ad333a61eb73009cca624bb79b1397d00 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 20 Apr 2018 14:41:10 -0500 Subject: [PATCH 036/118] 18.04.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ecd1990..f908cd9 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /syndication-17.12.1.tar.xz /syndication-17.12.2.tar.xz /syndication-17.12.3.tar.xz +/syndication-18.04.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index da0ef41..9ab15f4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 17.12.3 +Version: 18.04.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Apr 20 2018 Rex Dieter - 18.04.0-1 +- 18.04.0 + * Tue Mar 06 2018 Rex Dieter - 17.12.3-1 - 17.12.3 diff --git a/sources b/sources index 2201aec..acc537d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-17.12.3.tar.xz) = a1f2c472194355b570e4128ab4e4be70d6baa3d1c91e35706b7ec242caa950ec3686ab20772aec6fc2ecc7b0d6b390195e6bca5ec8a130951886589df73c1f9c +SHA512 (syndication-18.04.0.tar.xz) = 75dd0c14f22e1fb2cfbb3d11fb242471c8e1dc89f3a79568363ac70eba7ac68ec2c7ec6f9e0d49108621c43fb2d63912ecf2709210e274a65b183b8f147e3ab7 From 546d4913c8da0c8e1df8a290d48f4319813269eb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 9 May 2018 11:56:20 -0500 Subject: [PATCH 037/118] 18.04.1 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f908cd9..79ff6c5 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /syndication-17.12.2.tar.xz /syndication-17.12.3.tar.xz /syndication-18.04.0.tar.xz +/syndication-18.04.1.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9ab15f4..a9bbd10 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 18.04.0 +Version: 18.04.1 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed May 09 2018 Rex Dieter - 18.04.1-1 +- 18.04.1 + * Fri Apr 20 2018 Rex Dieter - 18.04.0-1 - 18.04.0 diff --git a/sources b/sources index acc537d..bc970aa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-18.04.0.tar.xz) = 75dd0c14f22e1fb2cfbb3d11fb242471c8e1dc89f3a79568363ac70eba7ac68ec2c7ec6f9e0d49108621c43fb2d63912ecf2709210e274a65b183b8f147e3ab7 +SHA512 (syndication-18.04.1.tar.xz) = 8069c200575e7872c116b25cc76acfd236825357af0c73d57a1ffdd1c840a359c0fc58a4cf83a5506bc2e8bbc87a76ecdc96fa6123d409c9079ce61472fc3c38 From e14335a0bf521f76b7de43ec2a5ecc291fcfe2de Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 6 Jun 2018 14:59:16 -0500 Subject: [PATCH 038/118] 18.04.2 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 79ff6c5..f35a95c 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /syndication-17.12.3.tar.xz /syndication-18.04.0.tar.xz /syndication-18.04.1.tar.xz +/syndication-18.04.2.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index a9bbd10..3263f74 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,7 +8,7 @@ %endif Name: kf5-%{framework} -Version: 18.04.1 +Version: 18.04.2 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Jun 06 2018 Rex Dieter - 18.04.2-1 +- 18.04.2 + * Wed May 09 2018 Rex Dieter - 18.04.1-1 - 18.04.1 diff --git a/sources b/sources index bc970aa..225672c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-18.04.1.tar.xz) = 8069c200575e7872c116b25cc76acfd236825357af0c73d57a1ffdd1c840a359c0fc58a4cf83a5506bc2e8bbc87a76ecdc96fa6123d409c9079ce61472fc3c38 +SHA512 (syndication-18.04.2.tar.xz) = 658488b67d62dafa359620d95469f781d6ab0dd4789fbf0b54fc18867d2a61fa8baa7c1c1ba3e3474bb94239b0df1e864078c7619cc5b3bd2d142408647ffebd From 674b0dabe77c98beb61b35f7e93b28060c5ccc7c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:12:29 +0000 Subject: [PATCH 039/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 3263f74..8a30aed 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Version: 18.04.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 18.04.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Jun 06 2018 Rex Dieter - 18.04.2-1 - 18.04.2 From e3e89c545a81223328ab8c044685c5cd008120f1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 13 Jul 2018 09:07:52 -0500 Subject: [PATCH 040/118] 18.04.3 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f35a95c..54c8099 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /syndication-18.04.0.tar.xz /syndication-18.04.1.tar.xz /syndication-18.04.2.tar.xz +/syndication-18.04.3.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 8a30aed..405da12 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,8 +8,8 @@ %endif Name: kf5-%{framework} -Version: 18.04.2 -Release: 2%{?dist} +Version: 18.04.3 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Jul 13 2018 Rex Dieter - 18.04.3-1 +- 18.04.3 + * Fri Jul 13 2018 Fedora Release Engineering - 18.04.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 225672c..1a5ceb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-18.04.2.tar.xz) = 658488b67d62dafa359620d95469f781d6ab0dd4789fbf0b54fc18867d2a61fa8baa7c1c1ba3e3474bb94239b0df1e864078c7619cc5b3bd2d142408647ffebd +SHA512 (syndication-18.04.3.tar.xz) = 319ba72973cf67fb748e521100ababc4290d5a7bb9a8b26d5b288d36a1e00118faa23b92be546996ac98b1432fe719d5d8ceb9cd125d2b35d5ffd200141d2b3f From 4d6b7d5c950c3929f36b60f75a5e7d58e8d298e2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 5 Sep 2018 16:02:17 -0500 Subject: [PATCH 041/118] kf5-syndication-5.50.0 (part of kde frameworks now), epoch++ --- .gitignore | 1 + kf5-syndication.spec | 21 +++++++++++++-------- sources | 2 +- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 54c8099..c470d83 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /syndication-18.04.1.tar.xz /syndication-18.04.2.tar.xz /syndication-18.04.3.tar.xz +/syndication-5.50.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 405da12..265deb9 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -8,27 +8,30 @@ %endif Name: kf5-%{framework} -Version: 18.04.3 +Epoch: 1 +Version: 5.50.0 Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD URL: https://cgit.kde.org/%{framework}.git +%global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 %global stable unstable %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/applications/%{version}/src/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz BuildRequires: extra-cmake-modules BuildRequires: kf5-rpm-macros -%global kf5_ver 5.19.0 -BuildRequires: kf5-kio-devel >= %{kf5_ver} -BuildRequires: kf5-kcodecs-devel >= %{kf5_ver} +BuildRequires: kf5-kio-devel >= %{version} +BuildRequires: kf5-kcodecs-devel >= %{version} + BuildRequires: qt5-qtbase-devel + %if 0%{?tests} #BuildRequires: dbus-x11 BuildRequires: time @@ -57,7 +60,7 @@ pushd %{_target_platform} -DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF} popd -make %{?_smp_mflags} -C %{_target_platform} +%make_build -C %{_target_platform} %install @@ -76,8 +79,7 @@ make test/fast -C %{_target_platform} %endif -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %license COPYING* @@ -92,6 +94,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Sep 05 2018 Rex Dieter - 1:5.50-1 +- kf5-syndication-5.50.0 (part of kde frameworks now), epoch++ + * Fri Jul 13 2018 Rex Dieter - 18.04.3-1 - 18.04.3 diff --git a/sources b/sources index 1a5ceb4..8fbe0ea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-18.04.3.tar.xz) = 319ba72973cf67fb748e521100ababc4290d5a7bb9a8b26d5b288d36a1e00118faa23b92be546996ac98b1432fe719d5d8ceb9cd125d2b35d5ffd200141d2b3f +SHA512 (syndication-5.50.0.tar.xz) = 9a6da19ac8f13422812babefdddf3196f127c9d65189b86610802f7bf2c805949ec8d00cd366e1a4af9d603867ea4b3b5235a5d326f310623d71def6fb438482 From c970f9e702b4554892c9ccf8fbb8af5f08717e15 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 17 Sep 2018 06:59:16 -0500 Subject: [PATCH 042/118] -devel: add epoch --- kf5-syndication.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 265deb9..758cb49 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.50.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -43,7 +43,7 @@ BuildRequires: time %package devel Summary: Development files for %{name} -Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release} %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -94,6 +94,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Sep 17 2018 Rex Dieter - 1:5.50.0-2 +- -devel: add epoch + * Wed Sep 05 2018 Rex Dieter - 1:5.50-1 - kf5-syndication-5.50.0 (part of kde frameworks now), epoch++ From a85fe96e200faceca46a060b334d4cfd13cc3246 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 15:51:52 -0500 Subject: [PATCH 043/118] 5.51.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c470d83..b4ca1ea 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /syndication-18.04.2.tar.xz /syndication-18.04.3.tar.xz /syndication-5.50.0.tar.xz +/syndication-5.51.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 758cb49..509db0c 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.50.0 -Release: 2%{?dist} +Version: 5.51.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -94,6 +94,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Oct 10 2018 Rex Dieter - 1:5.51.0-1 +- 5.51.0 + * Mon Sep 17 2018 Rex Dieter - 1:5.50.0-2 - -devel: add epoch diff --git a/sources b/sources index 8fbe0ea..c4f4206 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.50.0.tar.xz) = 9a6da19ac8f13422812babefdddf3196f127c9d65189b86610802f7bf2c805949ec8d00cd366e1a4af9d603867ea4b3b5235a5d326f310623d71def6fb438482 +SHA512 (syndication-5.51.0.tar.xz) = c9150eeefea0123ec06607b2ba7e405f9355ecc102dd50e562e724ad042a05fcc5e54647d1bc4c3889b98c1fb13e533af35e97d1126b1a530e4b76b263491aa2 From 71a7ab56404ae929d9b44211eb0e6550982cac50 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 13 Oct 2018 08:47:35 -0500 Subject: [PATCH 044/118] update %%files --- kf5-syndication.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 509db0c..38014ba 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -83,6 +83,7 @@ make test/fast -C %{_target_platform} %files %license COPYING* +%{_kf5_sysconfdir}/%{framework}.* %{_kf5_libdir}/libKF5Syndication.so.* %files devel From 7873245f12139b1b74806b717005da956a5bdf3f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 13 Oct 2018 09:20:13 -0500 Subject: [PATCH 045/118] fix %%files harder --- kf5-syndication.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 38014ba..8ebc8ea 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -83,7 +83,7 @@ make test/fast -C %{_target_platform} %files %license COPYING* -%{_kf5_sysconfdir}/%{framework}.* +%{_kf5_sysconfdir}/xdg/%{framework}.* %{_kf5_libdir}/libKF5Syndication.so.* %files devel From 8c28a1cb0eb997f85fd5a0d5b0a8fbe3e4c5285a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Nov 2018 12:51:59 -0600 Subject: [PATCH 046/118] 5.52.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b4ca1ea..41fac5c 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /syndication-18.04.3.tar.xz /syndication-5.50.0.tar.xz /syndication-5.51.0.tar.xz +/syndication-5.52.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 8ebc8ea..c9d74ec 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.51.0 +Version: 5.52.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Nov 04 2018 Rex Dieter - 1:5.52.0-1 +- 5.52.0 + * Wed Oct 10 2018 Rex Dieter - 1:5.51.0-1 - 5.51.0 diff --git a/sources b/sources index c4f4206..841bb78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.51.0.tar.xz) = c9150eeefea0123ec06607b2ba7e405f9355ecc102dd50e562e724ad042a05fcc5e54647d1bc4c3889b98c1fb13e533af35e97d1126b1a530e4b76b263491aa2 +SHA512 (syndication-5.52.0.tar.xz) = 807b92e611acc5480afb0bf81eada0fce13faddc3665b0b5b94454531f7123023b46d8ae3577de9dc79e8e7e5ba945e53e1f1cd206b36f33cca25038ea98e795 From 32622cd9c8ccb2d831eb7cc975c3ec3c896be198 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 9 Dec 2018 08:44:03 -0600 Subject: [PATCH 047/118] 5.53.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 41fac5c..f1fc9ad 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /syndication-5.50.0.tar.xz /syndication-5.51.0.tar.xz /syndication-5.52.0.tar.xz +/syndication-5.53.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index c9d74ec..46f352b 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.52.0 +Version: 5.53.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Dec 09 2018 Rex Dieter - 1:5.53.0-1 +- 5.53.0 + * Sun Nov 04 2018 Rex Dieter - 1:5.52.0-1 - 5.52.0 diff --git a/sources b/sources index 841bb78..1efa576 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.52.0.tar.xz) = 807b92e611acc5480afb0bf81eada0fce13faddc3665b0b5b94454531f7123023b46d8ae3577de9dc79e8e7e5ba945e53e1f1cd206b36f33cca25038ea98e795 +SHA512 (syndication-5.53.0.tar.xz) = 41892df65bfb55e705efddd20fbc06327931dad6d87ad0b2b3553a0814a54d07910903c7b8c650589ae569d1de1782c0c73ae065eea9403bd46c4a29e454f8e0 From b44583e9dede790fe2dc7688d436e73bc8895b9f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 9 Jan 2019 08:12:06 -0600 Subject: [PATCH 048/118] 5.54.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f1fc9ad..5861e10 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ /syndication-5.51.0.tar.xz /syndication-5.52.0.tar.xz /syndication-5.53.0.tar.xz +/syndication-5.54.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 46f352b..7ba0902 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.53.0 +Version: 5.54.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Jan 09 2019 Rex Dieter - 1:5.54.0-1 +- 5.54.0 + * Sun Dec 09 2018 Rex Dieter - 1:5.53.0-1 - 5.53.0 diff --git a/sources b/sources index 1efa576..7eed4d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.53.0.tar.xz) = 41892df65bfb55e705efddd20fbc06327931dad6d87ad0b2b3553a0814a54d07910903c7b8c650589ae569d1de1782c0c73ae065eea9403bd46c4a29e454f8e0 +SHA512 (syndication-5.54.0.tar.xz) = ec7638fb4b015d8379f1016c228dacfa485110f371bf443f6f6a75e47a6493b777b8ea6094d7fd7b251fd4cbc3cdec709c8d68724ebcdee00179a2214df66681 From 81be88261ef40738ab6f1f7fcdeadee277a81c61 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 05:41:51 +0000 Subject: [PATCH 049/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 7ba0902..1ed84e7 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.54.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 1:5.54.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Wed Jan 09 2019 Rex Dieter - 1:5.54.0-1 - 5.54.0 From 53cdf59d91711caf6a2266fa0fff4137f20f6344 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Feb 2019 11:21:16 -0600 Subject: [PATCH 050/118] 5.55.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5861e10..7168c29 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ /syndication-5.52.0.tar.xz /syndication-5.53.0.tar.xz /syndication-5.54.0.tar.xz +/syndication-5.55.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1ed84e7..91d53ba 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.54.0 -Release: 2%{?dist} +Version: 5.55.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Feb 04 2019 Rex Dieter - 1:5.55.0-1 +- 5.55.0 + * Fri Feb 01 2019 Fedora Release Engineering - 1:5.54.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index 7eed4d7..f130d2a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.54.0.tar.xz) = ec7638fb4b015d8379f1016c228dacfa485110f371bf443f6f6a75e47a6493b777b8ea6094d7fd7b251fd4cbc3cdec709c8d68724ebcdee00179a2214df66681 +SHA512 (syndication-5.55.0.tar.xz) = 86c5d06d2bd43e4100a75720fc68401fb432a948ca5cd677b867a26b299ccd229ae3d39f7bf42fef882049d23a9e9cedfcb54176cd374b70e7412f2a7e76aa8b From 83810b48f3ca4c710f73fe4ce4e758d7ae0018c7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Mar 2019 09:13:51 -0600 Subject: [PATCH 051/118] 5.56.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7168c29..916a4ed 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /syndication-5.53.0.tar.xz /syndication-5.54.0.tar.xz /syndication-5.55.0.tar.xz +/syndication-5.56.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 91d53ba..058c641 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.55.0 +Version: 5.56.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Mar 05 2019 Rex Dieter - 1:5.56.0-1 +- 5.56.0 + * Mon Feb 04 2019 Rex Dieter - 1:5.55.0-1 - 5.55.0 diff --git a/sources b/sources index f130d2a..5a30f6d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.55.0.tar.xz) = 86c5d06d2bd43e4100a75720fc68401fb432a948ca5cd677b867a26b299ccd229ae3d39f7bf42fef882049d23a9e9cedfcb54176cd374b70e7412f2a7e76aa8b +SHA512 (syndication-5.56.0.tar.xz) = b5fd917cfc3f3f825a393abbc89473cce28bccf9f91c2ee07597c8c0daf4721f4efb0169ee785d6d7c49a2c9f3ab874f55acb32e8286d214f12767caf3e6c047 From 88eba103c51da516ab9c94de565816b26c152ca6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Apr 2019 10:20:14 -0500 Subject: [PATCH 052/118] 5.57.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 916a4ed..f4ba395 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /syndication-5.54.0.tar.xz /syndication-5.55.0.tar.xz /syndication-5.56.0.tar.xz +/syndication-5.57.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 058c641..9d7a67e 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.56.0 +Version: 5.57.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Apr 09 2019 Rex Dieter - 1:5.57.0-1 +- 5.57.0 + * Tue Mar 05 2019 Rex Dieter - 1:5.56.0-1 - 5.56.0 diff --git a/sources b/sources index 5a30f6d..b3ff072 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.56.0.tar.xz) = b5fd917cfc3f3f825a393abbc89473cce28bccf9f91c2ee07597c8c0daf4721f4efb0169ee785d6d7c49a2c9f3ab874f55acb32e8286d214f12767caf3e6c047 +SHA512 (syndication-5.57.0.tar.xz) = 07d71f94fa48b3b8fa8f3853866bcf874e25fe596ee9f084082af4ec0710c9a2f9e39dcd8faa0a63e6a93cf8af6953188e68f9c07110306b29f990c632ea2ee2 From 7b4ede52a7ed55095a31ab962edefc3e63535d7d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 May 2019 14:08:27 -0500 Subject: [PATCH 053/118] 5.58.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f4ba395..cbd6ef1 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ /syndication-5.55.0.tar.xz /syndication-5.56.0.tar.xz /syndication-5.57.0.tar.xz +/syndication-5.58.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9d7a67e..798d5f4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.57.0 +Version: 5.58.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue May 07 2019 Rex Dieter - 1:5.58.0-1 +- 5.58.0 + * Tue Apr 09 2019 Rex Dieter - 1:5.57.0-1 - 5.57.0 diff --git a/sources b/sources index b3ff072..ba9a193 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.57.0.tar.xz) = 07d71f94fa48b3b8fa8f3853866bcf874e25fe596ee9f084082af4ec0710c9a2f9e39dcd8faa0a63e6a93cf8af6953188e68f9c07110306b29f990c632ea2ee2 +SHA512 (syndication-5.58.0.tar.xz) = fbd3283e37f906b7bde76332721004ad679e99b4d8b3700ee0e98986f14a45dfd32048673d4e5270c351868c6e0f212b17bc4e4bc47f003cee4eb4dd16f9abd6 From f873a05680fae7b208cd67425e2ebdde5abeb3d7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jun 2019 12:54:07 -0500 Subject: [PATCH 054/118] 5.59.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cbd6ef1..a080ce7 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ /syndication-5.56.0.tar.xz /syndication-5.57.0.tar.xz /syndication-5.58.0.tar.xz +/syndication-5.59.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 798d5f4..77ea855 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.58.0 +Version: 5.59.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Jun 06 2019 Rex Dieter - 1:5.59.0-1 +- 5.59.0 + * Tue May 07 2019 Rex Dieter - 1:5.58.0-1 - 5.58.0 diff --git a/sources b/sources index ba9a193..f76f4f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.58.0.tar.xz) = fbd3283e37f906b7bde76332721004ad679e99b4d8b3700ee0e98986f14a45dfd32048673d4e5270c351868c6e0f212b17bc4e4bc47f003cee4eb4dd16f9abd6 +SHA512 (syndication-5.59.0.tar.xz) = a6e91895464b593f89538b0252ad576c0a6526977bfaba92575de385f8364db990071ffd0380e336a208766e1e79977a622ac9f96495195a2252bc299ec50c54 From 0265e88043547e1cdf4b7fd6aa31b38b6abb8a69 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 13 Jul 2019 12:24:40 -0500 Subject: [PATCH 055/118] 5.60.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a080ce7..1a42ee7 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ /syndication-5.57.0.tar.xz /syndication-5.58.0.tar.xz /syndication-5.59.0.tar.xz +/syndication-5.60.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 77ea855..795bcd4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.59.0 +Version: 5.60.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Sat Jul 13 2019 Rex Dieter - 1:5.60.0-1 +- 5.60.0 + * Thu Jun 06 2019 Rex Dieter - 1:5.59.0-1 - 5.59.0 diff --git a/sources b/sources index f76f4f4..4cb44f7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.59.0.tar.xz) = a6e91895464b593f89538b0252ad576c0a6526977bfaba92575de385f8364db990071ffd0380e336a208766e1e79977a622ac9f96495195a2252bc299ec50c54 +SHA512 (syndication-5.60.0.tar.xz) = 39ef7246f9133af3c1dae87790a6827a7634fb81eb691995b78eb1b3bdc1db701f2d664360931ce0d671cef30db0cf09029ef00ab55c0d9307fa11eb51f18cca From 2ca85e146c88fbf99a69ca61e38de883b46a041f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 11:45:05 +0000 Subject: [PATCH 056/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 795bcd4..243f7dc 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.60.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1:5.60.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Jul 13 2019 Rex Dieter - 1:5.60.0-1 - 5.60.0 From dd2723c6f8493e935448825fbc81a285a49caf97 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 29 Jul 2019 15:59:30 -0500 Subject: [PATCH 057/118] update %%files --- kf5-syndication.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 243f7dc..d7ee9d3 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -83,7 +83,7 @@ make test/fast -C %{_target_platform} %files %license COPYING* -%{_kf5_sysconfdir}/xdg/%{framework}.* +%{_kf5_datadir}/qlogging-categories5/%{framework}.* %{_kf5_libdir}/libKF5Syndication.so.* %files devel From 9eb127cbb01d64cc7c1cb955b7396efcd851e026 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Aug 2019 10:15:16 -0500 Subject: [PATCH 058/118] 5.61.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1a42ee7..e469508 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ /syndication-5.58.0.tar.xz /syndication-5.59.0.tar.xz /syndication-5.60.0.tar.xz +/syndication-5.61.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index d7ee9d3..10b528d 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.60.0 -Release: 2%{?dist} +Version: 5.61.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Aug 07 2019 Rex Dieter - 1:5.61.0-1 +- 5.61.0 + * Thu Jul 25 2019 Fedora Release Engineering - 1:5.60.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 4cb44f7..e7cfddf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.60.0.tar.xz) = 39ef7246f9133af3c1dae87790a6827a7634fb81eb691995b78eb1b3bdc1db701f2d664360931ce0d671cef30db0cf09029ef00ab55c0d9307fa11eb51f18cca +SHA512 (syndication-5.61.0.tar.xz) = 29a0733e3b826855844b1c5d622f37c479224a20b6b7a875215f61032ca9b84b538359481dd19f3b9a14c7d057cf630473132c318f2266951889c46e62787623 From ce76bde7b483507b96796452c353fd71b03460cc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 Sep 2019 16:48:33 -0500 Subject: [PATCH 059/118] 5.62.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e469508..b08864c 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /syndication-5.59.0.tar.xz /syndication-5.60.0.tar.xz /syndication-5.61.0.tar.xz +/syndication-5.62.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 10b528d..814c9a4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.61.0 +Version: 5.62.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Sep 16 2019 Rex Dieter - 1:5.62.0-1 +- 5.62.0 + * Wed Aug 07 2019 Rex Dieter - 1:5.61.0-1 - 5.61.0 diff --git a/sources b/sources index e7cfddf..69733a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.61.0.tar.xz) = 29a0733e3b826855844b1c5d622f37c479224a20b6b7a875215f61032ca9b84b538359481dd19f3b9a14c7d057cf630473132c318f2266951889c46e62787623 +SHA512 (syndication-5.62.0.tar.xz) = ef1a01596a577015a1fbe5e26d361b79c04d26d31069de15a7e0a6fc2c1d159cc86648032800ffad227517ee6d64b3b34e8117a130b35292b37bc3ebe2fe6076 From 75e5e98a0d1b6b4995c221d33408fc170bdc8d66 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 22 Oct 2019 08:45:00 -0500 Subject: [PATCH 060/118] 5.63.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b08864c..4e58d7d 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ /syndication-5.60.0.tar.xz /syndication-5.61.0.tar.xz /syndication-5.62.0.tar.xz +/syndication-5.63.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 814c9a4..57cb9c3 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.62.0 +Version: 5.63.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Oct 22 2019 Rex Dieter - 1:5.63.0-1 +- 5.63.0 + * Mon Sep 16 2019 Rex Dieter - 1:5.62.0-1 - 5.62.0 diff --git a/sources b/sources index 69733a1..83cc433 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.62.0.tar.xz) = ef1a01596a577015a1fbe5e26d361b79c04d26d31069de15a7e0a6fc2c1d159cc86648032800ffad227517ee6d64b3b34e8117a130b35292b37bc3ebe2fe6076 +SHA512 (syndication-5.63.0.tar.xz) = a9a89e570b22812d8bfd4814e072908da81d39e54e06881d2835883d502f5e7f8f315c52234f84b4b29a61b911d482f84245ed016592410d2c544c0acbef6a86 From 16c8936eb9dcd7aed534897ce293f72db331c3bb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Nov 2019 10:39:01 -0600 Subject: [PATCH 061/118] 5.64.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4e58d7d..55937ba 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ /syndication-5.61.0.tar.xz /syndication-5.62.0.tar.xz /syndication-5.63.0.tar.xz +/syndication-5.64.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 57cb9c3..dd9f253 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.63.0 +Version: 5.64.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Nov 08 2019 Rex Dieter - 1:5.64.0-1 +- 5.64.0 + * Tue Oct 22 2019 Rex Dieter - 1:5.63.0-1 - 5.63.0 diff --git a/sources b/sources index 83cc433..d96497b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.63.0.tar.xz) = a9a89e570b22812d8bfd4814e072908da81d39e54e06881d2835883d502f5e7f8f315c52234f84b4b29a61b911d482f84245ed016592410d2c544c0acbef6a86 +SHA512 (syndication-5.64.0.tar.xz) = 6ab26136e92f49d8acb4b5117bd2c1450ea779bc0c0d4f194013ae0f26eb19bb85fab93d1b4e08edce25c6158860907c5eed3870c114610b10ced521c5ab12cd From a6b8643e2294421f5dfc933692c69966b0c0f47e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 17 Dec 2019 11:20:50 -0600 Subject: [PATCH 062/118] 5.65.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 55937ba..3971263 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ /syndication-5.62.0.tar.xz /syndication-5.63.0.tar.xz /syndication-5.64.0.tar.xz +/syndication-5.65.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index dd9f253..55f0282 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.64.0 +Version: 5.65.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Dec 17 2019 Rex Dieter - 1:5.65.0-1 +- 5.65.0 + * Fri Nov 08 2019 Rex Dieter - 1:5.64.0-1 - 5.64.0 diff --git a/sources b/sources index d96497b..5d4f63d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.64.0.tar.xz) = 6ab26136e92f49d8acb4b5117bd2c1450ea779bc0c0d4f194013ae0f26eb19bb85fab93d1b4e08edce25c6158860907c5eed3870c114610b10ced521c5ab12cd +SHA512 (syndication-5.65.0.tar.xz) = 41c9bfc6f5dd4c4030d8f9a24019037b7575ed59cfd3805d5e2bc68d533c3c5c813d210c81f4e13a37a3cc24dfb1b787a3ac7a8b058326e8f543e2bc5626f472 From f13cb53c0a7425b9f586e5c00a2a72e5f11eab24 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jan 2020 14:25:12 -0600 Subject: [PATCH 063/118] 5.66.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3971263..3cf8220 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ /syndication-5.63.0.tar.xz /syndication-5.64.0.tar.xz /syndication-5.65.0.tar.xz +/syndication-5.66.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 55f0282..4b08111 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.65.0 +Version: 5.66.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jan 07 2020 Rex Dieter - 1:5.66.0-1 +- 5.66.0 + * Tue Dec 17 2019 Rex Dieter - 1:5.65.0-1 - 5.65.0 diff --git a/sources b/sources index 5d4f63d..92c8870 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.65.0.tar.xz) = 41c9bfc6f5dd4c4030d8f9a24019037b7575ed59cfd3805d5e2bc68d533c3c5c813d210c81f4e13a37a3cc24dfb1b787a3ac7a8b058326e8f543e2bc5626f472 +SHA512 (syndication-5.66.0.tar.xz) = 0ab81b13ede66b11ec3dc014c0d4c9b46f1a7cb39d0f3beceb4c0786c77f7b560c118584b76dee7dd627ec1db4b874de9bacee1025b88ced8be66a936c9a36a1 From a4b42eb22a7a6826b00a57c3205520fa19cc635f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 07:26:33 +0000 Subject: [PATCH 064/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 4b08111..ad3741a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.66.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 1:5.66.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 07 2020 Rex Dieter - 1:5.66.0-1 - 5.66.0 From af64670d603336ee8de089fb29586a661b904dc4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 2 Feb 2020 18:16:55 -0600 Subject: [PATCH 065/118] 5.67.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3cf8220..0ddc3bb 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ /syndication-5.64.0.tar.xz /syndication-5.65.0.tar.xz /syndication-5.66.0.tar.xz +/syndication-5.67.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ad3741a..9712358 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.66.0 -Release: 2%{?dist} +Version: 5.67.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Feb 03 2020 Rex Dieter - 1:5.67.0-1 +- 5.67.0 + * Wed Jan 29 2020 Fedora Release Engineering - 1:5.66.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 92c8870..0b91835 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.66.0.tar.xz) = 0ab81b13ede66b11ec3dc014c0d4c9b46f1a7cb39d0f3beceb4c0786c77f7b560c118584b76dee7dd627ec1db4b874de9bacee1025b88ced8be66a936c9a36a1 +SHA512 (syndication-5.67.0.tar.xz) = c8d1b56b5ac6661bd0156a1b611b3ccf27713c1fc688e3491046f6297f7dfe1b3b8591bd0157613cbe421032ab5f16ed17ab67630175ac0b8f1b7f74bcf011d9 From 11257635f19fa9947a436feb3d377ede047790e3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Mar 2020 22:24:36 -0500 Subject: [PATCH 066/118] 5.68.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0ddc3bb..b04ce4c 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ /syndication-5.65.0.tar.xz /syndication-5.66.0.tar.xz /syndication-5.67.0.tar.xz +/syndication-5.68.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9712358..40b1b8a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.67.0 +Version: 5.68.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Mar 20 2020 Rex Dieter - 1:5.68.0-1 +- 5.68.0 + * Mon Feb 03 2020 Rex Dieter - 1:5.67.0-1 - 5.67.0 diff --git a/sources b/sources index 0b91835..48a5b44 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.67.0.tar.xz) = c8d1b56b5ac6661bd0156a1b611b3ccf27713c1fc688e3491046f6297f7dfe1b3b8591bd0157613cbe421032ab5f16ed17ab67630175ac0b8f1b7f74bcf011d9 +SHA512 (syndication-5.68.0.tar.xz) = ae9e9b22ae4120a452185c613561475e46efc185853d111b298e0372ed0e98dcca524a76acc8a58d1d15c5232c766e096dab21d01dd36135febefdab6f2ac6d0 From a204fb891cf23d9c92b219929f674f9f3626437b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 21 Apr 2020 13:51:01 -0500 Subject: [PATCH 067/118] 5.69.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b04ce4c..b6456a5 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ /syndication-5.66.0.tar.xz /syndication-5.67.0.tar.xz /syndication-5.68.0.tar.xz +/syndication-5.69.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 40b1b8a..95961ef 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.68.0 +Version: 5.69.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Apr 21 2020 Rex Dieter - 1:5.69.0-1 +- 5.69.0 + * Fri Mar 20 2020 Rex Dieter - 1:5.68.0-1 - 5.68.0 diff --git a/sources b/sources index 48a5b44..1415a22 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.68.0.tar.xz) = ae9e9b22ae4120a452185c613561475e46efc185853d111b298e0372ed0e98dcca524a76acc8a58d1d15c5232c766e096dab21d01dd36135febefdab6f2ac6d0 +SHA512 (syndication-5.69.0.tar.xz) = ad49190674cc65994fb5a0742c2265da28912aafee97fc74e2a6df17add4bae0e3a8ae0a970613e253578af7634df21464f1c9cd8d015551e348c4b1633968b0 From 5e3aeb962456688e0df407d74db9b89664f78d8e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 May 2020 17:13:23 -0500 Subject: [PATCH 068/118] 5.70.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b6456a5..a19197a 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ /syndication-5.67.0.tar.xz /syndication-5.68.0.tar.xz /syndication-5.69.0.tar.xz +/syndication-5.70.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 95961ef..3b96fa4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.69.0 +Version: 5.70.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon May 04 2020 Rex Dieter - 1:5.70.0-1 +- 5.70.0 + * Tue Apr 21 2020 Rex Dieter - 1:5.69.0-1 - 5.69.0 diff --git a/sources b/sources index 1415a22..8a35406 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.69.0.tar.xz) = ad49190674cc65994fb5a0742c2265da28912aafee97fc74e2a6df17add4bae0e3a8ae0a970613e253578af7634df21464f1c9cd8d015551e348c4b1633968b0 +SHA512 (syndication-5.70.0.tar.xz) = 014226e19cf2e97f4f2c60a5a7b0aa2ae3696ccdd6d28bee5b49ccf234e3404d4784d254016f74b9c53f39fb20780a15eabe05722161460cfc393036c8d5552f From 3995236ee7e957b626d860c16d199d50caaab9fa Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 16 Jun 2020 10:02:38 -0500 Subject: [PATCH 069/118] 5.71.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a19197a..57f21a7 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ /syndication-5.68.0.tar.xz /syndication-5.69.0.tar.xz /syndication-5.70.0.tar.xz +/syndication-5.71.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 3b96fa4..5400cac 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.70.0 +Version: 5.71.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jun 16 2020 Rex Dieter - 1:5.71.0-1 +- 5.71.0 + * Mon May 04 2020 Rex Dieter - 1:5.70.0-1 - 5.70.0 diff --git a/sources b/sources index 8a35406..887edb8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.70.0.tar.xz) = 014226e19cf2e97f4f2c60a5a7b0aa2ae3696ccdd6d28bee5b49ccf234e3404d4784d254016f74b9c53f39fb20780a15eabe05722161460cfc393036c8d5552f +SHA512 (syndication-5.71.0.tar.xz) = 6e69368b06d8f79bc24355751a7252b0507797c7977b02442fa4d30ed6e50d87f6227e42902e4de589bc8f3fcbff8d2aef9e162ba6f0fe7f9a1499c4c9aa18dd From a70ebba68ec30a39e2c3bdd5953574ae9b0e8a1d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jul 2020 12:35:48 -0500 Subject: [PATCH 070/118] 5.72.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 57f21a7..9ccddb5 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ /syndication-5.69.0.tar.xz /syndication-5.70.0.tar.xz /syndication-5.71.0.tar.xz +/syndication-5.72.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 5400cac..50fabda 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.71.0 +Version: 5.72.0 Release: 1%{?dist} Summary: The Syndication Library @@ -95,6 +95,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jul 07 2020 Rex Dieter - 1:5.72.0-1 +- 5.72.0 + * Tue Jun 16 2020 Rex Dieter - 1:5.71.0-1 - 5.71.0 diff --git a/sources b/sources index 887edb8..7827591 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.71.0.tar.xz) = 6e69368b06d8f79bc24355751a7252b0507797c7977b02442fa4d30ed6e50d87f6227e42902e4de589bc8f3fcbff8d2aef9e162ba6f0fe7f9a1499c4c9aa18dd +SHA512 (syndication-5.72.0.tar.xz) = b91842a33e1b106b005b14460e511bfadaf410047ad78fe6cb41358123b896437d40f7f511eb94ef789203c9e8d4cf2b4ef44270769bc204863dcff6123335d3 From 5df4dd12c6ccc5893618ed6a25003e3c1bd7482d Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Sat, 18 Jul 2020 10:53:37 +0200 Subject: [PATCH 071/118] Improve compatibility with new CMake macro Signed-off-by: Igor Raits --- kf5-syndication.spec | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 50fabda..1653f1e 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,3 +1,4 @@ +%undefine __cmake_in_source_build %global framework syndication # uncomment to enable bootstrap mode @@ -54,17 +55,13 @@ developing applications that use %{name}. %build -mkdir %{_target_platform} -pushd %{_target_platform} -%{cmake_kf5} .. \ +%{cmake_kf5} \ -DBUILD_TESTING:BOOL=%{?tests:ON}%{!?tests:OFF} -popd - -%make_build -C %{_target_platform} +%cmake_build %install -make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +%cmake_install %check From b3092df3e1a62937526ef0eab5655070d0dfb4c4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 03:21:10 +0000 Subject: [PATCH 072/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1653f1e..fbec1fc 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -11,7 +11,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.72.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1:5.72.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 07 2020 Rex Dieter - 1:5.72.0-1 - 5.72.0 From a53410acd12a0ad0dffe9adf6a9f0dac6641908f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Aug 2020 11:58:11 -0500 Subject: [PATCH 073/118] 5.73.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9ccddb5..34c3955 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ /syndication-5.70.0.tar.xz /syndication-5.71.0.tar.xz /syndication-5.72.0.tar.xz +/syndication-5.73.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index fbec1fc..003f502 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,8 +10,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.72.0 -Release: 2%{?dist} +Version: 5.73.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Aug 03 2020 Rex Dieter - 1:5.73.0-1 +- 5.73.0 + * Tue Jul 28 2020 Fedora Release Engineering - 1:5.72.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 7827591..841c624 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.72.0.tar.xz) = b91842a33e1b106b005b14460e511bfadaf410047ad78fe6cb41358123b896437d40f7f511eb94ef789203c9e8d4cf2b4ef44270769bc204863dcff6123335d3 +SHA512 (syndication-5.73.0.tar.xz) = dc6b5de4073701ba34982af055f005d6ad6b23916581d5dbf3605ecd506211c8942161ab25048729dc3c765acae62ea8292654042cf4784022853be4d9167b2a From 05ce09d00492c45719fc3d894ba78a2089784a58 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 11:02:52 +0200 Subject: [PATCH 074/118] 5.74.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 34c3955..2917738 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,4 @@ /syndication-5.71.0.tar.xz /syndication-5.72.0.tar.xz /syndication-5.73.0.tar.xz +/syndication-5.74.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 003f502..f3aecca 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.73.0 +Version: 5.74.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Fri Sep 18 2020 Jan Grulich - 1:5.74.0-1 +- 5.74.0 + * Mon Aug 03 2020 Rex Dieter - 1:5.73.0-1 - 5.73.0 diff --git a/sources b/sources index 841c624..1b52ab8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.73.0.tar.xz) = dc6b5de4073701ba34982af055f005d6ad6b23916581d5dbf3605ecd506211c8942161ab25048729dc3c765acae62ea8292654042cf4784022853be4d9167b2a +SHA512 (syndication-5.74.0.tar.xz) = c524ea90c4fbe80040a772e967dc024707ed32c124b0efcf4324e5bc60093472762f7b48fcadd1f288747464defd16abe185fdff00c8e414db37a00bc1e6fe53 From 79a63e5b441af03dc206765528a048724350693a Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 13:43:37 +0200 Subject: [PATCH 075/118] Fix installation of license files --- kf5-syndication.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index f3aecca..e8d70c4 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -79,7 +79,7 @@ make test/fast -C %{_target_platform} %ldconfig_scriptlets %files -%license COPYING* +%license LICENSES/*.txt %{_kf5_datadir}/qlogging-categories5/%{framework}.* %{_kf5_libdir}/libKF5Syndication.so.* From cfbe417081a5428c8bf137794768f2e7b1d08599 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 14 Oct 2020 10:10:31 -0500 Subject: [PATCH 076/118] 5.75.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2917738..445f0f2 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ /syndication-5.72.0.tar.xz /syndication-5.73.0.tar.xz /syndication-5.74.0.tar.xz +/syndication-5.75.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index e8d70c4..ee57e7f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.74.0 +Version: 5.75.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Wed Oct 14 10:10:24 CDT 2020 Rex Dieter - 1:5.75.0-1 +- 5.75.0 + * Fri Sep 18 2020 Jan Grulich - 1:5.74.0-1 - 5.74.0 diff --git a/sources b/sources index 1b52ab8..7fd3394 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.74.0.tar.xz) = c524ea90c4fbe80040a772e967dc024707ed32c124b0efcf4324e5bc60093472762f7b48fcadd1f288747464defd16abe185fdff00c8e414db37a00bc1e6fe53 +SHA512 (syndication-5.75.0.tar.xz) = 1f16527c456803048a5ea37efcac23c1cd756d22db657d5d0e8483d61e49b4ce6aaa2d4d1907137b2a5fbc97425bb59a92c9b1ea679319786129e89269711408 From 5cd6fea8e54d7c50a52e25f3c85f8e37de2667c1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Nov 2020 09:16:35 -0600 Subject: [PATCH 077/118] 5.76.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 445f0f2..77fbae4 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ /syndication-5.73.0.tar.xz /syndication-5.74.0.tar.xz /syndication-5.75.0.tar.xz +/syndication-5.76.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ee57e7f..191b8ad 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.75.0 +Version: 5.76.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Nov 19 09:16:28 CST 2020 Rex Dieter - 1:5.76.0-1 +- 5.76.0 + * Wed Oct 14 10:10:24 CDT 2020 Rex Dieter - 1:5.75.0-1 - 5.75.0 diff --git a/sources b/sources index 7fd3394..ed45630 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.75.0.tar.xz) = 1f16527c456803048a5ea37efcac23c1cd756d22db657d5d0e8483d61e49b4ce6aaa2d4d1907137b2a5fbc97425bb59a92c9b1ea679319786129e89269711408 +SHA512 (syndication-5.76.0.tar.xz) = 0fd821edafdf934120002e47e3b0e13946c44f5508c50bf4fb937c71aa69f1e2c57c39fd3f4278e9db7e957845d9a3e988ab9b92e8e51914e5fce3219bcc8783 From b413bcf37e579904cc67d8f8c4c389d1bac8cbf1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 13 Dec 2020 14:22:32 -0600 Subject: [PATCH 078/118] 5.77.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 77fbae4..ed49cce 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,4 @@ /syndication-5.74.0.tar.xz /syndication-5.75.0.tar.xz /syndication-5.76.0.tar.xz +/syndication-5.77.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 191b8ad..2e4d977 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.76.0 +Version: 5.77.0 Release: 1%{?dist} Summary: The Syndication Library @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Sun Dec 13 14:22:29 CST 2020 Rex Dieter - 1:5.77.0-1 +- 5.77.0 + * Thu Nov 19 09:16:28 CST 2020 Rex Dieter - 1:5.76.0-1 - 5.76.0 diff --git a/sources b/sources index ed45630..40e90ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.76.0.tar.xz) = 0fd821edafdf934120002e47e3b0e13946c44f5508c50bf4fb937c71aa69f1e2c57c39fd3f4278e9db7e957845d9a3e988ab9b92e8e51914e5fce3219bcc8783 +SHA512 (syndication-5.77.0.tar.xz) = 98f452464f8b777bde70b62340a8838f5e3f9be87e8a7300519685ca7b962f3e4b668f810ad81b0e9eb3cd86bb824dee079b2d2ac0b22f1fab9f64b8947befd7 From 7866f0602399922a89e1fb726e27e33131882a81 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Jan 2021 09:00:06 -0600 Subject: [PATCH 079/118] 5.78.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ed49cce..917cd4b 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ /syndication-5.75.0.tar.xz /syndication-5.76.0.tar.xz /syndication-5.77.0.tar.xz +/syndication-5.78.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 2e4d977..9bf3e53 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,12 +10,12 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.77.0 +Version: 5.78.0 Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD -URL: https://cgit.kde.org/%{framework}.git +URL: https://invent.kde.org/frameworks/%{framework} %global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -92,6 +92,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon Jan 4 08:59:59 CST 2021 Rex Dieter - 1:5.78.0-1 +- 5.78.0 + * Sun Dec 13 14:22:29 CST 2020 Rex Dieter - 1:5.77.0-1 - 5.77.0 diff --git a/sources b/sources index 40e90ae..e1e600a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.77.0.tar.xz) = 98f452464f8b777bde70b62340a8838f5e3f9be87e8a7300519685ca7b962f3e4b668f810ad81b0e9eb3cd86bb824dee079b2d2ac0b22f1fab9f64b8947befd7 +SHA512 (syndication-5.78.0.tar.xz) = 692c3526711e325f59506b490da5580ce58a2a1a92ce9ac83ce6ec3ed4c8d081de2ae819029ea32601f82427ec1ca52da1c809cd88da58f83c4125d10123c4b0 From 69340ec35b79160d325c7517b43ba84650c3ceda Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 5 Jan 2021 22:31:41 +0000 Subject: [PATCH 080/118] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- kf5-syndication.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9bf3e53..d7dd621 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -26,6 +26,7 @@ URL: https://invent.kde.org/frameworks/%{framework} %endif Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz +BuildRequires: make BuildRequires: extra-cmake-modules BuildRequires: kf5-rpm-macros BuildRequires: kf5-kio-devel >= %{version} From dd5e72ffcb75741f8845d7c8ea751a063b3b7bc7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 15:48:14 +0000 Subject: [PATCH 081/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index d7dd621..daaa446 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -11,7 +11,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.78.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1:5.78.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 4 08:59:59 CST 2021 Rex Dieter - 1:5.78.0-1 - 5.78.0 From d6e7f1237eb1bb21488ca7b8c8b853ac8f27beb1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 10:06:54 -0600 Subject: [PATCH 082/118] 5.79.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 917cd4b..76aecf3 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ /syndication-5.76.0.tar.xz /syndication-5.77.0.tar.xz /syndication-5.78.0.tar.xz +/syndication-5.79.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index daaa446..d7c5ef3 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,8 +10,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.78.0 -Release: 2%{?dist} +Version: 5.79.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Sat Feb 06 2021 Rex Dieter - 1:5.79.0-1 +- 5.79.0 + * Tue Jan 26 2021 Fedora Release Engineering - 1:5.78.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index e1e600a..e025cb5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.78.0.tar.xz) = 692c3526711e325f59506b490da5580ce58a2a1a92ce9ac83ce6ec3ed4c8d081de2ae819029ea32601f82427ec1ca52da1c809cd88da58f83c4125d10123c4b0 +SHA512 (syndication-5.79.0.tar.xz) = 0476abb925878e73eba7e9d4b488c8045ef507feca3cbb973fc715322ac6e5b975270547d5d5a9e1842b83c75cc640415e5f816cf706583638a0a8763e05dc3e From c65bdd5faaa87cfb609d4f8493aae94a28b015d4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 15:26:55 -0600 Subject: [PATCH 083/118] respin --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index d7c5ef3..9c7b281 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -11,7 +11,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.79.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Sat Feb 06 2021 Rex Dieter - 1:5.79.0-2 +- respin + * Sat Feb 06 2021 Rex Dieter - 1:5.79.0-1 - 5.79.0 From ae702ef700530a4bab4001cfac43fb453b0d2091 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Mar 2021 08:55:29 -0600 Subject: [PATCH 084/118] 5.80.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 76aecf3..576d012 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,4 @@ /syndication-5.77.0.tar.xz /syndication-5.78.0.tar.xz /syndication-5.79.0.tar.xz +/syndication-5.80.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 9c7b281..4e20684 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,8 +10,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.79.0 -Release: 2%{?dist} +Version: 5.80.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Mar 09 2021 Rex Dieter - 1:5.80.0-1 +- 5.80.0 + * Sat Feb 06 2021 Rex Dieter - 1:5.79.0-2 - respin diff --git a/sources b/sources index e025cb5..c7d3d63 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.79.0.tar.xz) = 0476abb925878e73eba7e9d4b488c8045ef507feca3cbb973fc715322ac6e5b975270547d5d5a9e1842b83c75cc640415e5f816cf706583638a0a8763e05dc3e +SHA512 (syndication-5.80.0.tar.xz) = 913631280479682dd23118b4a1f464930a00546c12f283b2dc9fb1ab96b33b576b6d5fbbb82477d26189ee8fd376842104269fb5a05ff54b16447c7ae3ed651f From 4bb2bf8e00f76d03d618602c1b1164eb7cbda60a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 6 Apr 2021 09:09:08 -0500 Subject: [PATCH 085/118] 5.81.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 576d012..82d0eed 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ /syndication-5.78.0.tar.xz /syndication-5.79.0.tar.xz /syndication-5.80.0.tar.xz +/syndication-5.81.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 4e20684..100a7a6 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.80.0 +Version: 5.81.0 Release: 1%{?dist} Summary: The Syndication Library @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Apr 06 2021 Rex Dieter - 1:5.81.0-1 +- 5.81.0 + * Tue Mar 09 2021 Rex Dieter - 1:5.80.0-1 - 5.80.0 diff --git a/sources b/sources index c7d3d63..59b0014 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.80.0.tar.xz) = 913631280479682dd23118b4a1f464930a00546c12f283b2dc9fb1ab96b33b576b6d5fbbb82477d26189ee8fd376842104269fb5a05ff54b16447c7ae3ed651f +SHA512 (syndication-5.81.0.tar.xz) = 73ba73dabebcd5bbecd7fafe2b03fed83d7d8f3324cbb4f4317750709a953d67cc805cf0059aaef46035dfe3e9d4adcfa2e7cfa78d46ddf333b83797f6ddd574 From 3965b39905d9a802fe99bfc448c512be237a5cad Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 May 2021 08:52:22 -0500 Subject: [PATCH 086/118] 5.82.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 82d0eed..17db749 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ /syndication-5.79.0.tar.xz /syndication-5.80.0.tar.xz /syndication-5.81.0.tar.xz +/syndication-5.82.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 100a7a6..7b76fc6 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.81.0 +Version: 5.82.0 Release: 1%{?dist} Summary: The Syndication Library @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Mon May 03 2021 Rex Dieter - 1:5.82.0-1 +- 5.82.0 + * Tue Apr 06 2021 Rex Dieter - 1:5.81.0-1 - 5.81.0 diff --git a/sources b/sources index 59b0014..d42ee18 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.81.0.tar.xz) = 73ba73dabebcd5bbecd7fafe2b03fed83d7d8f3324cbb4f4317750709a953d67cc805cf0059aaef46035dfe3e9d4adcfa2e7cfa78d46ddf333b83797f6ddd574 +SHA512 (syndication-5.82.0.tar.xz) = 59e8f88138d6d18d7b4c4f2e5596606bdd13aa7425e55dadf24cf4a1592cda0c547b077d303dce514a0e20d5cca0740e6e6879ffda6470c0fa9302cd11eedbc0 From 745c7fa57910dae878c20faab6648200a4bbe8cb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jun 2021 16:11:53 -0500 Subject: [PATCH 087/118] 5.83.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 17db749..12fbbbe 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,4 @@ /syndication-5.80.0.tar.xz /syndication-5.81.0.tar.xz /syndication-5.82.0.tar.xz +/syndication-5.83.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 7b76fc6..f06dc54 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.82.0 +Version: 5.83.0 Release: 1%{?dist} Summary: The Syndication Library @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Tue Jun 08 2021 Rex Dieter - 1:5.83.0-1 +- 5.83.0 + * Mon May 03 2021 Rex Dieter - 1:5.82.0-1 - 5.82.0 diff --git a/sources b/sources index d42ee18..76f234b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.82.0.tar.xz) = 59e8f88138d6d18d7b4c4f2e5596606bdd13aa7425e55dadf24cf4a1592cda0c547b077d303dce514a0e20d5cca0740e6e6879ffda6470c0fa9302cd11eedbc0 +SHA512 (syndication-5.83.0.tar.xz) = b3048bf2ad093cfdfe22266b091582d6f14338f0d5e61ab4cc756f838b4832b2b00fb2330055a2086b5480d2c81a971cf032fa2f586c550d4f319ca9402c82e0 From 6ab9583afeb29fa9b25ba365402b75e31d2d8f44 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 10:02:48 +0000 Subject: [PATCH 088/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index f06dc54..d3738dc 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -11,7 +11,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.83.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1:5.83.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jun 08 2021 Rex Dieter - 1:5.83.0-1 - 5.83.0 From 4f33b88c9bf711d63fdd5fca7294e2cfaf05e017 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 12 Aug 2021 11:18:42 -0500 Subject: [PATCH 089/118] 5.85.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 12fbbbe..69e329e 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ /syndication-5.81.0.tar.xz /syndication-5.82.0.tar.xz /syndication-5.83.0.tar.xz +/syndication-5.85.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index d3738dc..c8c5897 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,8 +10,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.83.0 -Release: 2%{?dist} +Version: 5.85.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -93,6 +93,9 @@ make test/fast -C %{_target_platform} %changelog +* Thu Aug 12 2021 Rex Dieter - 1:5.85.0-1 +- 5.85.0 + * Thu Jul 22 2021 Fedora Release Engineering - 1:5.83.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 76f234b..da9eb30 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.83.0.tar.xz) = b3048bf2ad093cfdfe22266b091582d6f14338f0d5e61ab4cc756f838b4832b2b00fb2330055a2086b5480d2c81a971cf032fa2f586c550d4f319ca9402c82e0 +SHA512 (syndication-5.85.0.tar.xz) = d0f57e7fcd02efaaf69b90c921767c7f053e8dbe43c63963a56329e1fc9da46ee14980580f44e0015a49482ea2848887f1e92b4151973c5a60cbd7ccb4365f64 From 6e29d1721eeb20f46979d5c921e750bd018d2ceb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 13 Aug 2021 14:01:08 -0500 Subject: [PATCH 090/118] fix tests Still needs work, but at least won't be 100% fatal now --- kf5-syndication.spec | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index c8c5897..180d78f 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -1,4 +1,3 @@ -%undefine __cmake_in_source_build %global framework syndication # uncomment to enable bootstrap mode @@ -70,10 +69,7 @@ developing applications that use %{name}. DBUS_SESSION_BUS_ADDRESS= DISPLAY= export CTEST_OUTPUT_ON_FAILURE=1 -#xvfb-run -a \ -#dbus-launch --exit-with-session \ -time \ -make test/fast -C %{_target_platform} +%ctest ||: %endif From 543c4ba8b04e12bca847360b210b9a97abdc4ec6 Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Wed, 15 Sep 2021 00:22:56 +0200 Subject: [PATCH 091/118] 5.86.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 69e329e..41339db 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ /syndication-5.82.0.tar.xz /syndication-5.83.0.tar.xz /syndication-5.85.0.tar.xz +/syndication-5.86.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 180d78f..2a494a5 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.85.0 +Version: 5.86.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Tue Sep 14 2021 Marc Deop - 1:5.86.0-1 +- 5.86.0 + * Thu Aug 12 2021 Rex Dieter - 1:5.85.0-1 - 5.85.0 diff --git a/sources b/sources index da9eb30..74dd099 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.85.0.tar.xz) = d0f57e7fcd02efaaf69b90c921767c7f053e8dbe43c63963a56329e1fc9da46ee14980580f44e0015a49482ea2848887f1e92b4151973c5a60cbd7ccb4365f64 +SHA512 (syndication-5.86.0.tar.xz) = 6268e7693ef385afd40ed6e33086b41fdb3b4e0ac8f9fd4bca794ebc81a5aa045ddf82c6e9695ca43bf191ce823392f78a53ce33bc2e5b88735afd2f507a33a3 From 14bd7d63776b292c6194525d1f87b0deb5aaddd3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Oct 2021 09:31:01 -0500 Subject: [PATCH 092/118] 5.87.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 41339db..f7c5ef2 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,4 @@ /syndication-5.83.0.tar.xz /syndication-5.85.0.tar.xz /syndication-5.86.0.tar.xz +/syndication-5.87.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 2a494a5..5bb6b17 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.86.0 +Version: 5.87.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Tue Oct 05 2021 Rex Dieter - 1:5.87.0-1 +- 5.87.0 + * Tue Sep 14 2021 Marc Deop - 1:5.86.0-1 - 5.86.0 diff --git a/sources b/sources index 74dd099..acaf614 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.86.0.tar.xz) = 6268e7693ef385afd40ed6e33086b41fdb3b4e0ac8f9fd4bca794ebc81a5aa045ddf82c6e9695ca43bf191ce823392f78a53ce33bc2e5b88735afd2f507a33a3 +SHA512 (syndication-5.87.0.tar.xz) = 865ba7633e19db43c3adee9317d1072662bc631363a5c262f34f99eefe2647b3149e7cc919eb2b0a5af5cfab1dbb50441e35d5287a0d69777460d052281c5815 From 037140eeba2901a4d6030d092f03b3bfda12519e Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 9 Nov 2021 10:07:46 +0100 Subject: [PATCH 093/118] 5.88.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f7c5ef2..9431724 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ /syndication-5.85.0.tar.xz /syndication-5.86.0.tar.xz /syndication-5.87.0.tar.xz +/syndication-5.88.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 5bb6b17..86ad2e6 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.87.0 +Version: 5.88.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Mon Nov 08 2021 Marc Deop - 1:5.88.0-1 +- 5.88.0 + * Tue Oct 05 2021 Rex Dieter - 1:5.87.0-1 - 5.87.0 diff --git a/sources b/sources index acaf614..928ed9a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.87.0.tar.xz) = 865ba7633e19db43c3adee9317d1072662bc631363a5c262f34f99eefe2647b3149e7cc919eb2b0a5af5cfab1dbb50441e35d5287a0d69777460d052281c5815 +SHA512 (syndication-5.88.0.tar.xz) = 191ffb738b391d5ba5a2c7b7573cb9b5bf6ab89e2051423078f6e443ad5506e45745a8541af001c386ecca79195fc0a1a036d3d9ac70b7f5c77c2cde3c1b79f4 From 9b22d1d4c13ebcf348696b298f16614df9811735 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 8 Dec 2021 09:44:31 -0600 Subject: [PATCH 094/118] 5.89.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9431724..8933487 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,4 @@ /syndication-5.86.0.tar.xz /syndication-5.87.0.tar.xz /syndication-5.88.0.tar.xz +/syndication-5.89.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 86ad2e6..77c2d32 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.88.0 +Version: 5.89.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Wed Dec 08 2021 Rex Dieter - 1:5.89.0-1 +- 5.89.0 + * Mon Nov 08 2021 Marc Deop - 1:5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 928ed9a..407844e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.88.0.tar.xz) = 191ffb738b391d5ba5a2c7b7573cb9b5bf6ab89e2051423078f6e443ad5506e45745a8541af001c386ecca79195fc0a1a036d3d9ac70b7f5c77c2cde3c1b79f4 +SHA512 (syndication-5.89.0.tar.xz) = 103cbe53cbf9e43b0785fbe54e9846da6e701ec482184aeaf1aedf78dac1d50323677756653f57b41d4f9a3cf2fccd08e69825b0be2ae9b032fe830db3fff02f From 3dd5672afd5af0540b2b29ebade2cc707fdb1ecb Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 4 Jan 2022 09:38:00 +0100 Subject: [PATCH 095/118] 5.90.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8933487..75724d9 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,4 @@ /syndication-5.87.0.tar.xz /syndication-5.88.0.tar.xz /syndication-5.89.0.tar.xz +/syndication-5.90.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 77c2d32..cf1e828 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.89.0 +Version: 5.90.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 1:5.90.0-1 +- 5.90.0 + * Wed Dec 08 2021 Rex Dieter - 1:5.89.0-1 - 5.89.0 diff --git a/sources b/sources index 407844e..409aba5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.89.0.tar.xz) = 103cbe53cbf9e43b0785fbe54e9846da6e701ec482184aeaf1aedf78dac1d50323677756653f57b41d4f9a3cf2fccd08e69825b0be2ae9b032fe830db3fff02f +SHA512 (syndication-5.90.0.tar.xz) = 39687d69cc78a2f348828b535ca822e999a04df6f611b38e1c9f1db22fdfdf8382c9242cdfff61ddac02876c81247de7fb4abc5c790f518c7e378f3833c0df54 From 8349daf79d2664067b889e1bed91874d4d3202e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 14:48:23 +0000 Subject: [PATCH 096/118] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index cf1e828..1dcff13 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.90.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1:5.90.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 04 2022 Marc Deop i Argemí (Private) - 1:5.90.0-1 - 5.90.0 From 9c1df579a4cf53b337fa0e9176434d1b84add6ba Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 11 Feb 2022 12:39:06 -0600 Subject: [PATCH 097/118] 5.91.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 75724d9..2bf8e5f 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ /syndication-5.88.0.tar.xz /syndication-5.89.0.tar.xz /syndication-5.90.0.tar.xz +/syndication-5.91.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1dcff13..55d74f1 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.90.0 -Release: 2%{?dist} +Version: 5.91.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Fri Feb 11 2022 Rex Dieter - 1:5.91.0-1 +- 5.91.0 + * Thu Jan 20 2022 Fedora Release Engineering - 1:5.90.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 409aba5..d42a489 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.90.0.tar.xz) = 39687d69cc78a2f348828b535ca822e999a04df6f611b38e1c9f1db22fdfdf8382c9242cdfff61ddac02876c81247de7fb4abc5c790f518c7e378f3833c0df54 +SHA512 (syndication-5.91.0.tar.xz) = 5fac36c771d12a88cfb73a33349ac791b254992ab12d6f813ec00f65e9b13f9a6a54c9c1182ce453174801b05d61451b07955e2994f57a018fd74504ac18d3c9 From 5dfbed240bb9bfd9025f41ba54de45b1da23c229 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 15 Feb 2022 10:12:00 -0600 Subject: [PATCH 098/118] update %%files --- kf5-syndication.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 55d74f1..485c081 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -81,7 +81,7 @@ export CTEST_OUTPUT_ON_FAILURE=1 %{_kf5_libdir}/libKF5Syndication.so.* %files devel -%{_kf5_includedir}/syndication_version.h + %{_kf5_includedir}/Syndication/ %{_kf5_libdir}/libKF5Syndication.so %{_kf5_libdir}/cmake/KF5Syndication/ From c5157443bc5c8a5ef62ee5e0f2f9b7f211454f24 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 10 Mar 2022 15:13:40 -0600 Subject: [PATCH 099/118] 5.92.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2bf8e5f..45559e7 100644 --- a/.gitignore +++ b/.gitignore @@ -64,3 +64,4 @@ /syndication-5.89.0.tar.xz /syndication-5.90.0.tar.xz /syndication-5.91.0.tar.xz +/syndication-5.92.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 485c081..70fc275 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.91.0 +Version: 5.92.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Thu Mar 10 2022 Rex Dieter - 1:5.92.0-1 +- 5.92.0 + * Fri Feb 11 2022 Rex Dieter - 1:5.91.0-1 - 5.91.0 diff --git a/sources b/sources index d42a489..15cf8c1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.91.0.tar.xz) = 5fac36c771d12a88cfb73a33349ac791b254992ab12d6f813ec00f65e9b13f9a6a54c9c1182ce453174801b05d61451b07955e2994f57a018fd74504ac18d3c9 +SHA512 (syndication-5.92.0.tar.xz) = 4b83c4d5d3cebc362fdbf2e5041887c713c680ddf5e5294e393de96259322399c4745c1ad87ee0aeb3fa8aa17514e2f2c98e204b43f1ae8df9ba2447a64e87b9 From 795fa861dfb908f65c89528e657a2474ca502c4d Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 10 Apr 2022 13:32:53 +0930 Subject: [PATCH 100/118] Update to 5.93 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 45559e7..63ce965 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,4 @@ /syndication-5.90.0.tar.xz /syndication-5.91.0.tar.xz /syndication-5.92.0.tar.xz +./syndication-5.93.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 70fc275..22f7a39 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.92.0 +Version: 5.93.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Apr 10 2022 Justin Zobel - 5.93-1 +- Update to 5.93 + * Thu Mar 10 2022 Rex Dieter - 1:5.92.0-1 - 5.92.0 diff --git a/sources b/sources index 15cf8c1..42ac4a8 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (syndication-5.92.0.tar.xz) = 4b83c4d5d3cebc362fdbf2e5041887c713c680ddf5e5294e393de96259322399c4745c1ad87ee0aeb3fa8aa17514e2f2c98e204b43f1ae8df9ba2447a64e87b9 +SHA512 (syndication-5.93.0.tar.xz) = 0c08ad391c625935626423340841a390e066fe5d5808ad80aeb99c30bd9139a966a52c15fac4fef2ae66aa3f03ce953f78a67affd0fdd025df0a88be896be912 From f3002c0b3bf40763e677a002e56b3d3af0bd3ece Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 13 May 2022 11:28:56 -0500 Subject: [PATCH 101/118] 5.94.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 63ce965..ea5a29c 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,4 @@ /syndication-5.91.0.tar.xz /syndication-5.92.0.tar.xz ./syndication-5.93.tar.xz +/syndication-5.94.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 22f7a39..a92e7c9 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.93.0 +Version: 5.94.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Fri May 13 2022 Rex Dieter - 1:5.94.0-1 +- 5.94.0 + * Sun Apr 10 2022 Justin Zobel - 5.93-1 - Update to 5.93 diff --git a/sources b/sources index 42ac4a8..a3a77f3 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (syndication-5.92.0.tar.xz) = 4b83c4d5d3cebc362fdbf2e5041887c713c680ddf5e5294e393de96259322399c4745c1ad87ee0aeb3fa8aa17514e2f2c98e204b43f1ae8df9ba2447a64e87b9 -SHA512 (syndication-5.93.0.tar.xz) = 0c08ad391c625935626423340841a390e066fe5d5808ad80aeb99c30bd9139a966a52c15fac4fef2ae66aa3f03ce953f78a67affd0fdd025df0a88be896be912 +SHA512 (syndication-5.94.0.tar.xz) = 8b33ca8eddd59d4461822b51a536fce53b86ec2e6b9a26d3c7e66b0317d13b2a6a271e2c011e5e9298d8d328abc961f58566caa5f1a2caf6f825b6eb5fdc1a7c From 81bee644aa01255a7eaaa3138db0a76b6a57b60a Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Sun, 3 Jul 2022 23:25:45 +0200 Subject: [PATCH 102/118] 5.96.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ea5a29c..57321d3 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,4 @@ /syndication-5.92.0.tar.xz ./syndication-5.93.tar.xz /syndication-5.94.0.tar.xz +/syndication-5.96.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index a92e7c9..1376755 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.94.0 +Version: 5.96.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Jul 03 2022 Marc Deop - 1:5.96.0-1 +- 5.96.0 + * Fri May 13 2022 Rex Dieter - 1:5.94.0-1 - 5.94.0 diff --git a/sources b/sources index a3a77f3..9f6c976 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.94.0.tar.xz) = 8b33ca8eddd59d4461822b51a536fce53b86ec2e6b9a26d3c7e66b0317d13b2a6a271e2c011e5e9298d8d328abc961f58566caa5f1a2caf6f825b6eb5fdc1a7c +SHA512 (syndication-5.96.0.tar.xz) = 2069364750a1be9a3026b5846d37d2c0b75125d66f72c8a7efc76585445b699ac8e8fcbf24dce80fd32787041c513477bb5d7d77647d5254aadb880a2474d902 From 5d98087d589abe9a9ae2a3215fd993661b48f480 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 16:14:37 +0000 Subject: [PATCH 103/118] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1376755..b232679 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.96.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 1:5.96.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sun Jul 03 2022 Marc Deop - 1:5.96.0-1 - 5.96.0 From dfb0047e4c744567c9d09b2aff7db60e32664c5a Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 14 Aug 2022 13:13:49 +0930 Subject: [PATCH 104/118] Update to 5.97.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 57321d3..0b425f2 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,4 @@ ./syndication-5.93.tar.xz /syndication-5.94.0.tar.xz /syndication-5.96.0.tar.xz +/syndication-5.97.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index b232679..7ac9c37 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.96.0 -Release: 2%{?dist} +Version: 5.97.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sat Aug 13 2022 Justin Zobel - 5.97.0-1 +- Update to 5.97.0 + * Thu Jul 21 2022 Fedora Release Engineering - 1:5.96.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 9f6c976..2b4e233 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (syndication-5.96.0.tar.xz) = 2069364750a1be9a3026b5846d37d2c0b75125d66f72c8a7efc76585445b699ac8e8fcbf24dce80fd32787041c513477bb5d7d77647d5254aadb880a2474d902 +SHA512 (syndication-5.97.0.tar.xz) = 0af12649e8c897411bb41083afdefc058381778aac15fb98b606fbcd70e8ca519cb24c51cfc0ee02d5cc2794fa9b41fae43cfb32117ba114301a4916d89badb5 From 4789f7903410d703bb1f4f19a0542df0f33ff07f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Thu, 15 Sep 2022 17:59:18 +0200 Subject: [PATCH 105/118] 5.98.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0b425f2..57fbb58 100644 --- a/.gitignore +++ b/.gitignore @@ -69,3 +69,4 @@ /syndication-5.94.0.tar.xz /syndication-5.96.0.tar.xz /syndication-5.97.0.tar.xz +/syndication-5.98.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 7ac9c37..7012daf 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.97.0 +Version: 5.98.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Thu Sep 15 2022 Marc Deop - 1:5.98.0-1 +- 5.98.0 + * Sat Aug 13 2022 Justin Zobel - 5.97.0-1 - Update to 5.97.0 diff --git a/sources b/sources index 2b4e233..d3b25dc 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (syndication-5.96.0.tar.xz) = 2069364750a1be9a3026b5846d37d2c0b75125d66f72c8a7efc76585445b699ac8e8fcbf24dce80fd32787041c513477bb5d7d77647d5254aadb880a2474d902 -SHA512 (syndication-5.97.0.tar.xz) = 0af12649e8c897411bb41083afdefc058381778aac15fb98b606fbcd70e8ca519cb24c51cfc0ee02d5cc2794fa9b41fae43cfb32117ba114301a4916d89badb5 +SHA512 (syndication-5.98.0.tar.xz) = 18a879bbfef722d1abd9ce51f46dc27867b36a6965c563be9c58331101f3aa5a605948587c819408fd62e7ff7fdf5dbd79653cb413cc9ea49206ea44ad6cc32c From 3c1758e5b4269151982bc28d1e7ce627206aaec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Fri, 14 Oct 2022 17:00:04 +0200 Subject: [PATCH 106/118] 5.99.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 57fbb58..eb03753 100644 --- a/.gitignore +++ b/.gitignore @@ -70,3 +70,4 @@ /syndication-5.96.0.tar.xz /syndication-5.97.0.tar.xz /syndication-5.98.0.tar.xz +/syndication-5.99.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 7012daf..0b28f28 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.98.0 +Version: 5.99.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Fri Oct 14 2022 Marc Deop - 1:5.99.0-1 +- 5.99.0 + * Thu Sep 15 2022 Marc Deop - 1:5.98.0-1 - 5.98.0 diff --git a/sources b/sources index d3b25dc..1db7a8d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.98.0.tar.xz) = 18a879bbfef722d1abd9ce51f46dc27867b36a6965c563be9c58331101f3aa5a605948587c819408fd62e7ff7fdf5dbd79653cb413cc9ea49206ea44ad6cc32c +SHA512 (syndication-5.99.0.tar.xz) = d947915708db77e25ebc89d76c4a0b1a2231ffd139f7f348aadaabdeafdce1d7e3874096407ea4511a54167338a000c6969aa50a7f0d1262762f56f6f2bd9588 From 3295e30fba71212e190b271e2c46113bf0e331cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 6 Nov 2022 22:29:02 +0100 Subject: [PATCH 107/118] 5.100.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eb03753..c08ff93 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,4 @@ /syndication-5.97.0.tar.xz /syndication-5.98.0.tar.xz /syndication-5.99.0.tar.xz +/syndication-5.100.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 0b28f28..64cbf7e 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.99.0 +Version: 5.100.0 Release: 1%{?dist} Summary: The Syndication Library @@ -89,6 +89,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Nov 06 2022 Marc Deop - 1:5.100.0-1 +- 5.100.0 + * Fri Oct 14 2022 Marc Deop - 1:5.99.0-1 - 5.99.0 diff --git a/sources b/sources index 1db7a8d..51d2968 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.99.0.tar.xz) = d947915708db77e25ebc89d76c4a0b1a2231ffd139f7f348aadaabdeafdce1d7e3874096407ea4511a54167338a000c6969aa50a7f0d1262762f56f6f2bd9588 +SHA512 (syndication-5.100.0.tar.xz) = cb3e9fd5f3ffa309289d475e638ff8b2d525364dce8be5ad99f9d66d52fb33844373446f73e50935f27fea46f47d2d8029566f4b3af5559adddd86986f83f6fa From 11f0406459d086cbde91bb525f1a10ab8e5f6cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 12 Dec 2022 16:02:53 +0100 Subject: [PATCH 108/118] 5.101.0 --- .gitignore | 1 + kf5-syndication.spec | 13 ++++++------- sources | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index c08ff93..c2aad8a 100644 --- a/.gitignore +++ b/.gitignore @@ -72,3 +72,4 @@ /syndication-5.98.0.tar.xz /syndication-5.99.0.tar.xz /syndication-5.100.0.tar.xz +/syndication-5.101.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 64cbf7e..4b3f207 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.100.0 +Version: 5.101.0 Release: 1%{?dist} Summary: The Syndication Library @@ -17,12 +17,7 @@ License: LGPLv2+ and BSD URL: https://invent.kde.org/frameworks/%{framework} %global majmin %(echo %{version} | cut -d. -f1-2) -%global revision %(echo %{version} | cut -d. -f3) -%if %{revision} >= 50 -%global stable unstable -%else -%global stable stable -%endif +%global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz BuildRequires: make @@ -89,6 +84,10 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Mon Dec 12 2022 Marc Deop - 1:5.101.0-1 +- 5.101.0 +- use new macros to simplify code + * Sun Nov 06 2022 Marc Deop - 1:5.100.0-1 - 5.100.0 diff --git a/sources b/sources index 51d2968..13db0f5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.100.0.tar.xz) = cb3e9fd5f3ffa309289d475e638ff8b2d525364dce8be5ad99f9d66d52fb33844373446f73e50935f27fea46f47d2d8029566f4b3af5559adddd86986f83f6fa +SHA512 (syndication-5.101.0.tar.xz) = 42665b5d957cdf12e3b02da6f5a0aa806a33ff361f7d466dd3a359097fe7bb4632733389bc2a4a7b8899cf8fd7b96b3ffcb1479f7c55a987bf4b86fcad5cc9ee From 71ec9a046047692a654dbf93bc2787374b27ea04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 14 Jan 2023 16:40:35 +0100 Subject: [PATCH 109/118] 5.102.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c2aad8a..81354f2 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,4 @@ /syndication-5.99.0.tar.xz /syndication-5.100.0.tar.xz /syndication-5.101.0.tar.xz +/syndication-5.102.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 4b3f207..637c229 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.101.0 +Version: 5.102.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sat Jan 14 2023 Marc Deop - 1:5.102.0-1 +- 5.102.0 + * Mon Dec 12 2022 Marc Deop - 1:5.101.0-1 - 5.101.0 - use new macros to simplify code diff --git a/sources b/sources index 13db0f5..9d58c63 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.101.0.tar.xz) = 42665b5d957cdf12e3b02da6f5a0aa806a33ff361f7d466dd3a359097fe7bb4632733389bc2a4a7b8899cf8fd7b96b3ffcb1479f7c55a987bf4b86fcad5cc9ee +SHA512 (syndication-5.102.0.tar.xz) = a17bd6fd418dd79cc0587a58eaae9a4df7d0efbcbc14d8b703028400d2ca9a4d7e8c6979224144fe8fc6b374bb051a1d4458842283869c58c447f0f9ac001e42 From 867db26b6133458831e21d3b0ebc47bae09e1873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 15 Jan 2023 17:46:22 +0100 Subject: [PATCH 110/118] fix: use macros from macros.kf5 instead of custom code --- kf5-syndication.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 637c229..cdad195 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -16,7 +16,7 @@ Summary: The Syndication Library License: LGPLv2+ and BSD URL: https://invent.kde.org/frameworks/%{framework} -%global majmin %(echo %{version} | cut -d. -f1-2) +%global majmin %majmin_ver_kf5 %global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz From dc371671e61141190ce4969c10e812f5b6a2d92a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 14:45:02 +0000 Subject: [PATCH 111/118] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-syndication.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-syndication.spec b/kf5-syndication.spec index cdad195..1bbfc74 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -10,7 +10,7 @@ Name: kf5-%{framework} Epoch: 1 Version: 5.102.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 1:5.102.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jan 14 2023 Marc Deop - 1:5.102.0-1 - 5.102.0 From 2e1cf8e7f99cad317d4c49fb40dd0761dfd310b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 5 Feb 2023 17:38:20 +0100 Subject: [PATCH 112/118] 5.103.0 --- .gitignore | 1 + kf5-syndication.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 81354f2..118763b 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,4 @@ /syndication-5.100.0.tar.xz /syndication-5.101.0.tar.xz /syndication-5.102.0.tar.xz +/syndication-5.103.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1bbfc74..aabf82a 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,8 +9,8 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.102.0 -Release: 2%{?dist} +Version: 5.103.0 +Release: 1%{?dist} Summary: The Syndication Library License: LGPLv2+ and BSD @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Feb 05 2023 Marc Deop - 1:5.103.0-1 +- 5.103.0 + * Thu Jan 19 2023 Fedora Release Engineering - 1:5.102.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 9d58c63..fd4984e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.102.0.tar.xz) = a17bd6fd418dd79cc0587a58eaae9a4df7d0efbcbc14d8b703028400d2ca9a4d7e8c6979224144fe8fc6b374bb051a1d4458842283869c58c447f0f9ac001e42 +SHA512 (syndication-5.103.0.tar.xz) = 59c214df56162c297c269bac03d6c2110a5a6f6004154ec319e234b4508bb2241a945245a2f4a35e4f41b8e2516df0fc6f68bf7f139c73b34d54b861812da9e3 From c7281c7a7b36830ba0b5a25bab3efad2c306062c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 4 Mar 2023 17:24:41 +0100 Subject: [PATCH 113/118] 5.104.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 118763b..eaafd8e 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,4 @@ /syndication-5.101.0.tar.xz /syndication-5.102.0.tar.xz /syndication-5.103.0.tar.xz +/syndication-5.104.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index aabf82a..971e91b 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.103.0 +Version: 5.104.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sat Mar 04 2023 Marc Deop i Argemí - 1:5.104.0-1 +- 5.104.0 + * Sun Feb 05 2023 Marc Deop - 1:5.103.0-1 - 5.103.0 diff --git a/sources b/sources index fd4984e..36e2bd3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.103.0.tar.xz) = 59c214df56162c297c269bac03d6c2110a5a6f6004154ec319e234b4508bb2241a945245a2f4a35e4f41b8e2516df0fc6f68bf7f139c73b34d54b861812da9e3 +SHA512 (syndication-5.104.0.tar.xz) = d6446a4dd258b5d0c45c7ea0b3100031f78cd09d5dc354c3c1ea9ee132ae60085c401c9bf9d929588fe052d42c78b778d94d2c7dcc3b26045729211c6a9b431b From cdba605a19c003c3246e398a86aabeb62dbde969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Apr 2023 10:21:00 +0200 Subject: [PATCH 114/118] 5.105.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eaafd8e..864179d 100644 --- a/.gitignore +++ b/.gitignore @@ -76,3 +76,4 @@ /syndication-5.102.0.tar.xz /syndication-5.103.0.tar.xz /syndication-5.104.0.tar.xz +/syndication-5.105.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 971e91b..29e9c2b 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.104.0 +Version: 5.105.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Apr 02 2023 Marc Deop i Argemí - 1:5.105.0-1 +- 5.105.0 + * Sat Mar 04 2023 Marc Deop i Argemí - 1:5.104.0-1 - 5.104.0 diff --git a/sources b/sources index 36e2bd3..4faf885 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.104.0.tar.xz) = d6446a4dd258b5d0c45c7ea0b3100031f78cd09d5dc354c3c1ea9ee132ae60085c401c9bf9d929588fe052d42c78b778d94d2c7dcc3b26045729211c6a9b431b +SHA512 (syndication-5.105.0.tar.xz) = 205ee5f5a79d45766f3705baaecf957eb9fd3194109eff6ffbc7abcfa06c8de759249b140fbe6e1727072352b6d9f33e43d9c68685901e8f3207c50d42d45759 From bc29a680eb51d3a4592fd6201a265ff5f8375162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 15 May 2023 21:55:31 +0200 Subject: [PATCH 115/118] 5.106.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 864179d..3cd0b33 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,4 @@ /syndication-5.103.0.tar.xz /syndication-5.104.0.tar.xz /syndication-5.105.0.tar.xz +/syndication-5.106.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 29e9c2b..ef7a11b 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.105.0 +Version: 5.106.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Mon May 15 2023 Marc Deop i Argemí - 1:5.106.0-1 +- 5.106.0 + * Sun Apr 02 2023 Marc Deop i Argemí - 1:5.105.0-1 - 5.105.0 diff --git a/sources b/sources index 4faf885..db277ce 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.105.0.tar.xz) = 205ee5f5a79d45766f3705baaecf957eb9fd3194109eff6ffbc7abcfa06c8de759249b140fbe6e1727072352b6d9f33e43d9c68685901e8f3207c50d42d45759 +SHA512 (syndication-5.106.0.tar.xz) = 267063495b0afbb9c50d48f38c67f4bb60799c14f1c889a9663c0a21f61763eec4927f8b5ca7f88b8d71877b090c213c6648a15a092b541bda03812690a45f55 From 7cd4d2118e2c7d4317232aefd9f0900092f3d43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 3 Jun 2023 15:29:27 +0200 Subject: [PATCH 116/118] 5.107.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3cd0b33..f390b82 100644 --- a/.gitignore +++ b/.gitignore @@ -78,3 +78,4 @@ /syndication-5.104.0.tar.xz /syndication-5.105.0.tar.xz /syndication-5.106.0.tar.xz +/syndication-5.107.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index ef7a11b..1b65222 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.106.0 +Version: 5.107.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sat Jun 03 2023 Marc Deop i Argemí - 1:5.107.0-1 +- 5.107.0 + * Mon May 15 2023 Marc Deop i Argemí - 1:5.106.0-1 - 5.106.0 diff --git a/sources b/sources index db277ce..799ff78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.106.0.tar.xz) = 267063495b0afbb9c50d48f38c67f4bb60799c14f1c889a9663c0a21f61763eec4927f8b5ca7f88b8d71877b090c213c6648a15a092b541bda03812690a45f55 +SHA512 (syndication-5.107.0.tar.xz) = a04973a52e79555dcf9204d10a1cfdfbf2d79733ad8f277552c5dedf088f175b0162c1f187903a76de02a7fc086d4e5823173f9bed9215f8c3d4b5cb39369dc2 From e5601ded5b24c161a9e2c6b4eb3483636d9c2bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Jul 2023 19:32:20 +0200 Subject: [PATCH 117/118] 5.108.0 --- .gitignore | 1 + kf5-syndication.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f390b82..c6e5792 100644 --- a/.gitignore +++ b/.gitignore @@ -79,3 +79,4 @@ /syndication-5.105.0.tar.xz /syndication-5.106.0.tar.xz /syndication-5.107.0.tar.xz +/syndication-5.108.0.tar.xz diff --git a/kf5-syndication.spec b/kf5-syndication.spec index 1b65222..e3bbf8e 100644 --- a/kf5-syndication.spec +++ b/kf5-syndication.spec @@ -9,7 +9,7 @@ Name: kf5-%{framework} Epoch: 1 -Version: 5.107.0 +Version: 5.108.0 Release: 1%{?dist} Summary: The Syndication Library @@ -84,6 +84,9 @@ export CTEST_OUTPUT_ON_FAILURE=1 %changelog +* Sun Jul 02 2023 Marc Deop i Argemí - 1:5.108.0-1 +- 5.108.0 + * Sat Jun 03 2023 Marc Deop i Argemí - 1:5.107.0-1 - 5.107.0 diff --git a/sources b/sources index 799ff78..66600a2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (syndication-5.107.0.tar.xz) = a04973a52e79555dcf9204d10a1cfdfbf2d79733ad8f277552c5dedf088f175b0162c1f187903a76de02a7fc086d4e5823173f9bed9215f8c3d4b5cb39369dc2 +SHA512 (syndication-5.108.0.tar.xz) = 6f8645fc7c06a0fb5c34d058a01d4550f078bffe8201542cdab7e3f15239169401f27abc0ee8fb81e8b7f1a80b99eaaa5521e82f4102cdc78b15844da0cd1cd1 From 4fdeb18388e7bfd5b160dbc3d7a814052de39852 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:53:15 +0300 Subject: [PATCH 118/118] Remove unnecessary files --- sources | 1 - sources.basename | 1 - 2 files changed, 2 deletions(-) delete mode 100644 sources delete mode 100644 sources.basename diff --git a/sources b/sources deleted file mode 100644 index 66600a2..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (syndication-5.108.0.tar.xz) = 6f8645fc7c06a0fb5c34d058a01d4550f078bffe8201542cdab7e3f15239169401f27abc0ee8fb81e8b7f1a80b99eaaa5521e82f4102cdc78b15844da0cd1cd1 diff --git a/sources.basename b/sources.basename deleted file mode 100644 index 4ced2af..0000000 --- a/sources.basename +++ /dev/null @@ -1 +0,0 @@ -syndication