From ee901a379d5ad336a855f89749039441bdcef84f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 12 Jun 2014 14:06:39 +0200 Subject: [PATCH 01/81] Import package (kf5-kcrash-4.100.0-1) --- .gitignore | 1 + kf5-kcrash.spec | 110 ++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 112 insertions(+) create mode 100644 kf5-kcrash.spec diff --git a/.gitignore b/.gitignore index e69de29..17ab0e7 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/kcrash-4.100.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec new file mode 100644 index 0000000..9df5347 --- /dev/null +++ b/kf5-kcrash.spec @@ -0,0 +1,110 @@ +#%define snapshot 20140205 +%define framework kcrash + +Name: kf5-%{framework} +Version: 4.100.0 +Release: 1%{?dist} +Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes + +License: LGPLv2+ +URL: http://www.kde.org +# git archive --format=tar --prefix=%{framework}-%{version}/ \ +# --remote=git://anongit.kde.org/%{framework}.git master | \ +# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 +#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 +Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz + +BuildRequires: libX11-devel + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtx11extras-devel +BuildRequires: qt5-qttools-devel + +BuildRequires: kf5-kcoreaddons-devel +BuildRequires: kf5-kwindowsystem-devel + +Requires: kf5-filesystem + +%description +KCrash provides support for intercepting and handling application crashes. + + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: kf5-kcoreaddons-devel +Requires: kf5-kwindowsystem-devel + +%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 -C %{_target_platform} + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%doc COPYING.LIB README.md +%{_kf5_libdir}/libKF5Crash.so.* + +%files devel +%{_kf5_includedir}/kcrash_version.h +%{_kf5_includedir}/KCrash +%{_kf5_libdir}/libKF5Crash.so +%{_kf5_libdir}/cmake/KF5Crash +%{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri + +%changelog +* Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 +- KDE Frameworks 4.100.0 + +* Tue May 20 2014 Daniel Vrátil - 4.99.0-2 +- Update the lookup patch + +* Mon May 05 2014 Daniel Vrátil - 4.99.0-1 +- KDE Frameworks 4.99.0 + +* Mon Mar 31 2014 Jan Grulich 4.98.0-2 +- Forgot to include patch for drkonqi + +* Mon Mar 31 2014 Jan Grulich 4.98.0-1 +- Update to KDE Frameworks 5 Beta 1 (4.98.0) + +* Mon Mar 24 2014 Daniel Vrátil 4.97.0-2 +- Add patch for KCrash to look for drkonqi in $PATH + +* Wed Mar 05 2014 Jan Grulich 4.97.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.97.0) + +* Wed Feb 12 2014 Daniel Vrátil 4.96.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.96.0) + +* Wed Feb 05 2014 Daniel Vrátil 4.96.0-0.1.20140205git +- Update to pre-relase snapshot of 4.96.0 + +* Thu Jan 16 2014 Daniel Vrátil 4.95.0-2 +- Rebuild against new kf5-filesystem + +* Thu Jan 09 2014 Daniel Vrátil 4.95.0-1 +- Update to KDE Frameworks 5 TP1 (4.95.0) + +* Sat Jan 4 2014 Daniel Vrátil +- initial version diff --git a/sources b/sources index e69de29..d4a0fbb 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +9aea0409300e7816786aaec1bd0d2aa5 kcrash-4.100.0.tar.xz From 8bbbb347c3361dd23b953dd43e43776a5b8b7187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 9 Jul 2014 15:36:23 +0200 Subject: [PATCH 02/81] KDE Frameworks 5.0.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 17ab0e7..78a9192 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kcrash-4.100.0.tar.xz +/kcrash-5.0.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 9df5347..0e525c7 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ %define framework kcrash Name: kf5-%{framework} -Version: 4.100.0 +Version: 5.0.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -12,7 +12,7 @@ URL: http://www.kde.org # --remote=git://anongit.kde.org/%{framework}.git master | \ # bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: libX11-devel @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 +- KDE Frameworks 5.0.0 + * Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 - KDE Frameworks 4.100.0 diff --git a/sources b/sources index d4a0fbb..a5116fc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9aea0409300e7816786aaec1bd0d2aa5 kcrash-4.100.0.tar.xz +3017ca4b16626bd707d9c74b191a58ab kcrash-5.0.0.tar.xz From c5b711257ffd7c179bfbf9dd36fd16188f9f7e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 6 Aug 2014 15:16:15 +0200 Subject: [PATCH 03/81] KDE Frameworks 5.1.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 78a9192..7c68a55 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kcrash-4.100.0.tar.xz /kcrash-5.0.0.tar.xz +/kcrash-5.1.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 0e525c7..4c0d109 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ %define framework kcrash Name: kf5-%{framework} -Version: 5.0.0 +Version: 5.1.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 +- KDE Frameworks 5.1.0 + * Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 - KDE Frameworks 5.0.0 diff --git a/sources b/sources index a5116fc..e97158d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3017ca4b16626bd707d9c74b191a58ab kcrash-5.0.0.tar.xz +05f4562df2d26812f11f558138161710 kcrash-5.1.0.tar.xz From 5adb0a37de5daa61d928a40b87e02c961cc48867 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 23:43:06 +0000 Subject: [PATCH 04/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 4c0d109..c2f7aef 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 5.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 - KDE Frameworks 5.1.0 From 1cca4657fb8646c849186b7dee69dda1dcec5192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 15 Sep 2014 09:44:09 +0200 Subject: [PATCH 05/81] KDE Frameworks 5.2.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7c68a55..bdba6c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kcrash-4.100.0.tar.xz /kcrash-5.0.0.tar.xz /kcrash-5.1.0.tar.xz +/kcrash-5.2.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index c2f7aef..53dd1c7 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,8 +2,8 @@ %define framework kcrash Name: kf5-%{framework} -Version: 5.1.0 -Release: 2%{?dist} +Version: 5.2.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Mon Sep 15 2014 Daniel Vrátil - 5.2.0-1 +- KDE Frameworks 5.2.0 + * Sat Aug 16 2014 Fedora Release Engineering - 5.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index e97158d..18bebfc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -05f4562df2d26812f11f558138161710 kcrash-5.1.0.tar.xz +a86ba5c32ba5a45d1754aebff5d9b4c1 kcrash-5.2.0.tar.xz From c328bb0d7422c1b4edfaba172341ec4245c03f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Oct 2014 13:06:26 +0200 Subject: [PATCH 06/81] KDE Frameworks 5.3.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bdba6c3..48abffc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kcrash-5.0.0.tar.xz /kcrash-5.1.0.tar.xz /kcrash-5.2.0.tar.xz +/kcrash-5.3.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 53dd1c7..bc01395 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ %define framework kcrash Name: kf5-%{framework} -Version: 5.2.0 +Version: 5.3.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 +- KDE Frameworks 5.3.0 + * Mon Sep 15 2014 Daniel Vrátil - 5.2.0-1 - KDE Frameworks 5.2.0 diff --git a/sources b/sources index 18bebfc..a2cd97a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a86ba5c32ba5a45d1754aebff5d9b4c1 kcrash-5.2.0.tar.xz +33ceec130a161dfe2fe79cd2381d1e5d kcrash-5.3.0.tar.xz From bed20a351d142aefe3fd7e63f6890b81534f1833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:11:12 +0100 Subject: [PATCH 07/81] KDE Frameworks 5.4.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 48abffc..d29970f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kcrash-5.1.0.tar.xz /kcrash-5.2.0.tar.xz /kcrash-5.3.0.tar.xz +/kcrash-5.4.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index bc01395..8af71ac 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ %define framework kcrash Name: kf5-%{framework} -Version: 5.3.0 +Version: 5.4.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 +- KDE Frameworks 5.4.0 + * Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 - KDE Frameworks 5.3.0 diff --git a/sources b/sources index a2cd97a..b4e8bf1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -33ceec130a161dfe2fe79cd2381d1e5d kcrash-5.3.0.tar.xz +971649d12a57cf1c05c77fb3c4370aea kcrash-5.4.0.tar.xz From f2042a0d59971927a18fe567888e7446a6c4fce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 13:06:09 +0100 Subject: [PATCH 08/81] Clean up spec file, autodetect stable/unstable download folder --- kf5-kcrash.spec | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 8af71ac..cef7322 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,4 +1,3 @@ -#%define snapshot 20140205 %define framework kcrash Name: kf5-%{framework} @@ -8,11 +7,14 @@ Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ URL: http://www.kde.org -# git archive --format=tar --prefix=%{framework}-%{version}/ \ -# --remote=git://anongit.kde.org/%{framework}.git master | \ -# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 -#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz + +%global revision %(echo %{version} | cut -d. -f3) +%if %{revision} >= 50 +%global stable unstable +%else +%global stable stable +%endif +Source0: http://download.kde.org/%{stable}/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: libX11-devel @@ -56,11 +58,10 @@ make %{?_smp_mflags} -C %{_target_platform} %install %make_install -C %{_target_platform} -%post -p /sbin/ldconfig +%post -p /sbin/ldconfig %postun -p /sbin/ldconfig - %files %doc COPYING.LIB README.md %{_kf5_libdir}/libKF5Crash.so.* @@ -72,6 +73,7 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_libdir}/cmake/KF5Crash %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri + %changelog * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 From d1fc1c9d12fe998fa091c541d6f4ffd3e67f1da7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 13:35:59 +0100 Subject: [PATCH 09/81] Use %global instead of %define --- kf5-kcrash.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index cef7322..d633489 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,4 +1,4 @@ -%define framework kcrash +%global framework kcrash Name: kf5-%{framework} Version: 5.4.0 From 944a7764a328af8bc7a6fbe837a61b86934cfda4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 8 Dec 2014 15:09:25 +0100 Subject: [PATCH 10/81] KDE Frameworks 5.5.0 --- .gitignore | 1 + kf5-kcrash.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d29970f..b1b30f9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kcrash-5.2.0.tar.xz /kcrash-5.3.0.tar.xz /kcrash-5.4.0.tar.xz +/kcrash-5.5.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index d633489..dc9dae1 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,20 +1,21 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.4.0 +Version: 5.5.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ URL: http://www.kde.org +%global versiondir %(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}/frameworks/%{version}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz BuildRequires: libX11-devel @@ -75,6 +76,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon Dec 08 2014 Daniel Vrátil - 5.5.0-1 +- KDE Frameworks 5.5.0 + * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 diff --git a/sources b/sources index b4e8bf1..e544af6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -971649d12a57cf1c05c77fb3c4370aea kcrash-5.4.0.tar.xz +f0ab4e55e92596d2e7f8b52d14635884 kcrash-5.5.0.tar.xz From dbb0d9efb50caa707641919142b809dfc5b05b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Jan 2015 14:41:25 +0100 Subject: [PATCH 11/81] KDE Frameworks 5.6.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b1b30f9..7db077a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /kcrash-5.3.0.tar.xz /kcrash-5.4.0.tar.xz /kcrash-5.5.0.tar.xz +/kcrash-5.6.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index dc9dae1..e128620 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.5.0 +Version: 5.6.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Thu Jan 08 2015 Daniel Vrátil - 5.6.0-1 +- KDE Frameworks 5.6.0 + * Mon Dec 08 2014 Daniel Vrátil - 5.5.0-1 - KDE Frameworks 5.5.0 diff --git a/sources b/sources index e544af6..06b0a59 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f0ab4e55e92596d2e7f8b52d14635884 kcrash-5.5.0.tar.xz +2ee93222cdd57bbb48bc0067bf7f2f8a kcrash-5.6.0.tar.xz From 757d1dd62cab584bc669e189d60ef2fa8b76c9bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 11 Feb 2015 16:33:26 +0100 Subject: [PATCH 12/81] Use make install/fast --- kf5-kcrash.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index e128620..70f54de 100644 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -57,7 +57,7 @@ popd make %{?_smp_mflags} -C %{_target_platform} %install -%make_install -C %{_target_platform} +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %post -p /sbin/ldconfig From 1853b8bd10ec91974db425dd6a9ad92d2f66564c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Feb 2015 13:13:01 +0100 Subject: [PATCH 13/81] KDE Frameworks 5.7.0 --- .gitignore | 1 + kf5-kcrash.spec | 9 ++++++++- sources | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) mode change 100644 => 100755 kf5-kcrash.spec diff --git a/.gitignore b/.gitignore index 7db077a..12fe4a4 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /kcrash-5.4.0.tar.xz /kcrash-5.5.0.tar.xz /kcrash-5.6.0.tar.xz +/kcrash-5.7.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec old mode 100644 new mode 100755 index 70f54de..04e43d5 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.6.0 +Version: 5.7.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -37,6 +37,7 @@ KCrash provides support for intercepting and handling application crashes. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: qt5-qtbase-devel Requires: kf5-kcoreaddons-devel Requires: kf5-kwindowsystem-devel @@ -76,6 +77,12 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 16 2015 Daniel Vrátil - 5.7.0-1 +- KDE Frameworks 5.7.0 + +* Mon Feb 09 2015 Daniel Vrátil - 5.7.0-1 +- KDE Frameworks 5.7.0 + * Thu Jan 08 2015 Daniel Vrátil - 5.6.0-1 - KDE Frameworks 5.6.0 diff --git a/sources b/sources index 06b0a59..408b133 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2ee93222cdd57bbb48bc0067bf7f2f8a kcrash-5.6.0.tar.xz +a00223a8266634deb16530c09aa5b604 kcrash-5.7.0.tar.xz From 31477516d9eb94998160b5088c0fdfd4930ffdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Fri, 27 Feb 2015 18:10:31 +0100 Subject: [PATCH 14/81] Rebuild (GCC 5) --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 04e43d5..05d5b1b 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -77,6 +77,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Feb 27 2015 Daniel Vrátil - 5.7.0-2 +- Rebuild (GCC 5) + * Mon Feb 16 2015 Daniel Vrátil - 5.7.0-1 - KDE Frameworks 5.7.0 From ec3a0ffe21f7115069b03012b6586dd321260826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Mar 2015 12:54:24 +0100 Subject: [PATCH 15/81] KDE Frameworks 5.8.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 12fe4a4..1e2247b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /kcrash-5.5.0.tar.xz /kcrash-5.6.0.tar.xz /kcrash-5.7.0.tar.xz +/kcrash-5.8.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 05d5b1b..83c3b13 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.7.0 -Release: 2%{?dist} +Version: 5.8.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -77,6 +77,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Mar 16 2015 Daniel Vrátil - 5.8.0-1 +- KDE Frameworks 5.8.0 + * Fri Feb 27 2015 Daniel Vrátil - 5.7.0-2 - Rebuild (GCC 5) diff --git a/sources b/sources index 408b133..7be7bd3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a00223a8266634deb16530c09aa5b604 kcrash-5.7.0.tar.xz +375e5439158087180e9c779529df073b kcrash-5.8.0.tar.xz From 1a6c36a17f8d75cc447cc79a8aaac9367464cbb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Apr 2015 13:08:55 +0200 Subject: [PATCH 16/81] KDE Frameworks 5.9.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1e2247b..adb44e8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /kcrash-5.6.0.tar.xz /kcrash-5.7.0.tar.xz /kcrash-5.8.0.tar.xz +/kcrash-5.9.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 83c3b13..ce9aba3 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.8.0 +Version: 5.9.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -77,6 +77,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 07 2015 Daniel Vrátil - 5.9.0-1 +- KDE Frameworks 5.9.0 + * Mon Mar 16 2015 Daniel Vrátil - 5.8.0-1 - KDE Frameworks 5.8.0 diff --git a/sources b/sources index 7be7bd3..582b874 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -375e5439158087180e9c779529df073b kcrash-5.8.0.tar.xz +7e577c786fc914d0ce447cc0bd11ed28 kcrash-5.9.0.tar.xz From dfbb23ef8b0881a13b286cfd5bb2694da2d9999d Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 14:42:55 +0200 Subject: [PATCH 17/81] Rebuilt for GCC 5 C++11 ABI change --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index ce9aba3..1473dea 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -77,6 +77,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat May 02 2015 Kalev Lember - 5.9.0-2 +- Rebuilt for GCC 5 C++11 ABI change + * Tue Apr 07 2015 Daniel Vrátil - 5.9.0-1 - KDE Frameworks 5.9.0 From 0fe5601d729763238177251b61d84e5edfa00d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 11 May 2015 11:09:59 +0200 Subject: [PATCH 18/81] KDE Frameworks 5.10.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index adb44e8..90ac8ef 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /kcrash-5.7.0.tar.xz /kcrash-5.8.0.tar.xz /kcrash-5.9.0.tar.xz +/kcrash-5.10.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 1473dea..e757e2f 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.9.0 -Release: 2%{?dist} +Version: 5.10.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -77,6 +77,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 11 2015 Daniel Vrátil - 5.10.0-1 +- KDE Frameworks 5.10.0 + * Sat May 02 2015 Kalev Lember - 5.9.0-2 - Rebuilt for GCC 5 C++11 ABI change diff --git a/sources b/sources index 582b874..5afeafc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7e577c786fc914d0ce447cc0bd11ed28 kcrash-5.9.0.tar.xz +f413ced20b4b60bda87cbf2cb7340792 kcrash-5.10.0.tar.xz From b3098d781f27ceaf2f1acb1e62acef8762fe2d3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 10 Jun 2015 14:25:06 +0200 Subject: [PATCH 19/81] KDE Frameworks 5.11.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 ++++--- sources | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 90ac8ef..9a37254 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /kcrash-5.8.0.tar.xz /kcrash-5.9.0.tar.xz /kcrash-5.10.0.tar.xz +/kcrash-5.11.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index e757e2f..b7bc1c5 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.10.0 +Version: 5.11.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -38,8 +38,6 @@ KCrash provides support for intercepting and handling application crashes. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: qt5-qtbase-devel -Requires: kf5-kcoreaddons-devel -Requires: kf5-kwindowsystem-devel %description devel The %{name}-devel package contains libraries and header files for @@ -77,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jun 10 2015 Daniel Vrátil - 5.11.0-1 +- KDE Frameworks 5.11.0 + * Mon May 11 2015 Daniel Vrátil - 5.10.0-1 - KDE Frameworks 5.10.0 diff --git a/sources b/sources index 5afeafc..3075c91 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f413ced20b4b60bda87cbf2cb7340792 kcrash-5.10.0.tar.xz +405d9660150c84695373c1c323326a98 kcrash-5.11.0.tar.xz From 64fbb3587e428f1f43ca25fa39684acc6adaff23 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 13:11:44 +0000 Subject: [PATCH 20/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index b7bc1c5..8177342 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.11.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 5.11.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Jun 10 2015 Daniel Vrátil - 5.11.0-1 - KDE Frameworks 5.11.0 From 144fb20f8178b39db82057e8052ad4933051ccf6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Jul 2015 07:23:02 -0500 Subject: [PATCH 21/81] 5.12.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9a37254..07fefb4 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /kcrash-5.9.0.tar.xz /kcrash-5.10.0.tar.xz /kcrash-5.11.0.tar.xz +/kcrash-5.12.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 8177342..6457d50 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.11.0 -Release: 2%{?dist} +Version: 5.12.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Jul 10 2015 Rex Dieter - 5.12.0-1 +- 5.12.0 + * Wed Jun 17 2015 Fedora Release Engineering - 5.11.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 3075c91..d178cdb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -405d9660150c84695373c1c323326a98 kcrash-5.11.0.tar.xz +47ae59a330ec700e0912382ddb951c25 kcrash-5.12.0.tar.xz From 3634b7b4331ce6866d88d1431d243052d36cdce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 19 Aug 2015 16:48:12 +0200 Subject: [PATCH 22/81] KDE Frameworks 5.13.0 --- .gitignore | 1 + kf5-kcrash.spec | 21 +++++++++++++++------ sources | 2 +- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 07fefb4..bcc267e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /kcrash-5.10.0.tar.xz /kcrash-5.11.0.tar.xz /kcrash-5.12.0.tar.xz +/kcrash-5.13.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 6457d50..cdc523f 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.12.0 +Version: 5.13.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -19,16 +19,16 @@ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{fra BuildRequires: libX11-devel -BuildRequires: kf5-rpm-macros -BuildRequires: extra-cmake-modules +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: extra-cmake-modules >= %{version} BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtx11extras-devel BuildRequires: qt5-qttools-devel -BuildRequires: kf5-kcoreaddons-devel -BuildRequires: kf5-kwindowsystem-devel +BuildRequires: kf5-kcoreaddons-devel >= %{version} +BuildRequires: kf5-kwindowsystem-devel >= %{version} -Requires: kf5-filesystem +Requires: kf5-filesystem >= %{version} %description KCrash provides support for intercepting and handling application crashes. @@ -75,6 +75,15 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 +- KDE Frameworks 5.13.0 + +* Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 +- KDE Frameworks 5.13.0 + +* Tue Aug 11 2015 Daniel Vrátil - 5.13.0-0.1 +- KDE Frameworks 5.13 + * Fri Jul 10 2015 Rex Dieter - 5.12.0-1 - 5.12.0 diff --git a/sources b/sources index d178cdb..f0d11bf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -47ae59a330ec700e0912382ddb951c25 kcrash-5.12.0.tar.xz +f261f5f1aff9bfce0abea333ce3aa89a kcrash-5.13.0.tar.xz From aafbddabc0e3d61a9b1a7853cb5399749fbf4fa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 16 Sep 2015 13:45:24 +0200 Subject: [PATCH 23/81] KDE Frameworks 5.14.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bcc267e..cbf6428 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /kcrash-5.11.0.tar.xz /kcrash-5.12.0.tar.xz /kcrash-5.13.0.tar.xz +/kcrash-5.14.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index cdc523f..7bb0899 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.13.0 +Version: 5.14.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Sep 16 2015 Daniel Vrátil - 5.14.0-1 +- KDE Frameworks 5.14.0 + * Wed Aug 19 2015 Daniel Vrátil - 5.13.0-1 - KDE Frameworks 5.13.0 diff --git a/sources b/sources index f0d11bf..6abdff0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f261f5f1aff9bfce0abea333ce3aa89a kcrash-5.13.0.tar.xz +faa443c8a45cb942e2f2b2ae647c695b kcrash-5.14.0.tar.xz From d607d87c13a50cc1597c5d6561cd5b1d67eef711 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 21 Sep 2015 12:39:39 -0500 Subject: [PATCH 24/81] +sources.basename --- sources.basename | 1 + 1 file changed, 1 insertion(+) create mode 100644 sources.basename diff --git a/sources.basename b/sources.basename new file mode 100644 index 0000000..27b9c3e --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +kcrash From d0380ba5f2c305ba8865300ea5d26b6af1f79efe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Oct 2015 15:04:01 +0200 Subject: [PATCH 25/81] KDE Frameworks 5.15.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cbf6428..a108929 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /kcrash-5.12.0.tar.xz /kcrash-5.13.0.tar.xz /kcrash-5.14.0.tar.xz +/kcrash-5.15.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7bb0899..7554f34 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.14.0 +Version: 5.15.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Oct 08 2015 Daniel Vrátil - 5.15.0-1 +- KDE Frameworks 5.15.0 + * Wed Sep 16 2015 Daniel Vrátil - 5.14.0-1 - KDE Frameworks 5.14.0 diff --git a/sources b/sources index 6abdff0..99fb968 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -faa443c8a45cb942e2f2b2ae647c695b kcrash-5.14.0.tar.xz +8a205f76a3ca73b585cfabfafdc97571 kcrash-5.15.0.tar.xz From c4506654da804cc0f1bbbfbdfcf580dab0aaf4f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 9 Nov 2015 23:07:50 +0100 Subject: [PATCH 26/81] KDE Frameworks 5.16 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a108929..c49328b 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /kcrash-5.13.0.tar.xz /kcrash-5.14.0.tar.xz /kcrash-5.15.0.tar.xz +/kcrash-5.16.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7554f34..93d512e 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.15.0 +Version: 5.16.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Nov 08 2015 Daniel Vrátil - 5.16.0-1 +- KDE Frameworks 5.16.0 + * Thu Oct 08 2015 Daniel Vrátil - 5.15.0-1 - KDE Frameworks 5.15.0 diff --git a/sources b/sources index 99fb968..ae9a0db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8a205f76a3ca73b585cfabfafdc97571 kcrash-5.15.0.tar.xz +8f4730e9e0428cbff83a7ff26e33d4a9 kcrash-5.16.0.tar.xz From 978d4482a74e673f9c47ab0b21739c6963c47719 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 8 Dec 2015 22:14:27 +0100 Subject: [PATCH 27/81] KDE Frameworks 5.17.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c49328b..b58101c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /kcrash-5.14.0.tar.xz /kcrash-5.15.0.tar.xz /kcrash-5.16.0.tar.xz +/kcrash-5.17.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 93d512e..087ca1d 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.16.0 +Version: 5.17.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Dec 08 2015 Daniel Vrátil - 5.17.0-1 +- KDE Frameworks 5.17.0 + * Sun Nov 08 2015 Daniel Vrátil - 5.16.0-1 - KDE Frameworks 5.16.0 diff --git a/sources b/sources index ae9a0db..34c2636 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8f4730e9e0428cbff83a7ff26e33d4a9 kcrash-5.16.0.tar.xz +45ba2b1d2efadf752a04b99a873ba50b kcrash-5.17.0.tar.xz From d972b64943ae881fe22ff5e89ae2bfd45185ae74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Sun, 3 Jan 2016 17:54:21 +0100 Subject: [PATCH 28/81] KDE Frameworks 5.18.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b58101c..28c9f5c 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /kcrash-5.15.0.tar.xz /kcrash-5.16.0.tar.xz /kcrash-5.17.0.tar.xz +/kcrash-5.18.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 087ca1d..7fc2682 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.17.0 +Version: 5.18.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Jan 03 2016 Daniel Vrátil - 5.18.0-1 +- KDE Frameworks 5.18.0 + * Tue Dec 08 2015 Daniel Vrátil - 5.17.0-1 - KDE Frameworks 5.17.0 diff --git a/sources b/sources index 34c2636..8244312 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -45ba2b1d2efadf752a04b99a873ba50b kcrash-5.17.0.tar.xz +6503c2c7b8df59be593f73df87a5efcd kcrash-5.18.0.tar.xz From f7811677a630a3de259a4e9552efce7b4f7843f0 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 08:21:39 -0600 Subject: [PATCH 29/81] cosmetics, update URL, use %license --- .gitignore | 19 ------------------- kf5-kcrash.spec | 31 +++++++++++++++++-------------- 2 files changed, 17 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index 28c9f5c..ab1fb88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1 @@ -/kcrash-4.100.0.tar.xz -/kcrash-5.0.0.tar.xz -/kcrash-5.1.0.tar.xz -/kcrash-5.2.0.tar.xz -/kcrash-5.3.0.tar.xz -/kcrash-5.4.0.tar.xz -/kcrash-5.5.0.tar.xz -/kcrash-5.6.0.tar.xz -/kcrash-5.7.0.tar.xz -/kcrash-5.8.0.tar.xz -/kcrash-5.9.0.tar.xz -/kcrash-5.10.0.tar.xz -/kcrash-5.11.0.tar.xz -/kcrash-5.12.0.tar.xz -/kcrash-5.13.0.tar.xz -/kcrash-5.14.0.tar.xz -/kcrash-5.15.0.tar.xz -/kcrash-5.16.0.tar.xz -/kcrash-5.17.0.tar.xz /kcrash-5.18.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7fc2682..8569a2c 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,11 +2,11 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ -URL: http://www.kde.org +URL: http://projects.kde.org/kcrash %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -17,16 +17,14 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -BuildRequires: libX11-devel - -BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: qt5-qtbase-devel -BuildRequires: qt5-qtx11extras-devel -BuildRequires: qt5-qttools-devel - BuildRequires: kf5-kcoreaddons-devel >= %{version} BuildRequires: kf5-kwindowsystem-devel >= %{version} +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: libX11-devel +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qttools-devel +BuildRequires: qt5-qtx11extras-devel Requires: kf5-filesystem >= %{version} @@ -38,7 +36,6 @@ KCrash provides support for intercepting and handling application crashes. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: qt5-qtbase-devel - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -47,14 +44,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} @@ -63,18 +62,22 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %postun -p /sbin/ldconfig %files -%doc COPYING.LIB README.md +%doc README.md +%license COPYING.LIB %{_kf5_libdir}/libKF5Crash.so.* %files devel %{_kf5_includedir}/kcrash_version.h -%{_kf5_includedir}/KCrash +%{_kf5_includedir}/KCrash/ %{_kf5_libdir}/libKF5Crash.so -%{_kf5_libdir}/cmake/KF5Crash +%{_kf5_libdir}/cmake/KF5Crash/ %{_kf5_archdatadir}/mkspecs/modules/qt_KCrash.pri %changelog +* Thu Jan 14 2016 Rex Dieter 5.18.0-2 +- cosmetics, update URL, use %%license + * Sun Jan 03 2016 Daniel Vrátil - 5.18.0-1 - KDE Frameworks 5.18.0 From 2a01af8587ad0c998ad0d328b12dc5174406fcc3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:00:29 +0000 Subject: [PATCH 30/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 8569a2c..4862679 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 5.18.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Thu Jan 14 2016 Rex Dieter 5.18.0-2 - cosmetics, update URL, use %%license From fb0434387e653284be0cb93c80fdb2c91384c474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 11 Feb 2016 15:16:12 +0100 Subject: [PATCH 31/81] KDE Frameworks 5.19.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ab1fb88..4ebc921 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kcrash-5.18.0.tar.xz +/kcrash-5.19.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 4862679..52c3e69 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.18.0 -Release: 3%{?dist} +Version: 5.19.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Feb 11 2016 Daniel Vrátil - 5.19.0-1 +- KDE Frameworks 5.19.0 + * Thu Feb 04 2016 Fedora Release Engineering - 5.18.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 8244312..f7eea0e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6503c2c7b8df59be593f73df87a5efcd kcrash-5.18.0.tar.xz +6ede0e1e87a9009d9b24b3a824543dc9 kcrash-5.19.0.tar.xz From 8fcbb04f0416386f24ab7798718ec331cf91c907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 14 Mar 2016 11:40:17 +0100 Subject: [PATCH 32/81] KDE Frameworks 5.20.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4ebc921..35afb8d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kcrash-5.18.0.tar.xz /kcrash-5.19.0.tar.xz +/kcrash-5.20.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 52c3e69..b3520c7 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.19.0 +Version: 5.20.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Mar 14 2016 Daniel Vrátil - 5.20.0-1 +- KDE Frameworks 5.20.0 + * Thu Feb 11 2016 Daniel Vrátil - 5.19.0-1 - KDE Frameworks 5.19.0 diff --git a/sources b/sources index f7eea0e..d6ac189 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6ede0e1e87a9009d9b24b3a824543dc9 kcrash-5.19.0.tar.xz +6eb332c832849358e2b8d895fb871784 kcrash-5.20.0.tar.xz From c5516a23118e5be0527abca2243cf9a0ae242723 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Apr 2016 08:24:00 -0500 Subject: [PATCH 33/81] KDE Frameworks 5.21.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 35afb8d..847f52b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kcrash-5.18.0.tar.xz /kcrash-5.19.0.tar.xz /kcrash-5.20.0.tar.xz +/kcrash-5.21.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index b3520c7..b7e9738 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.20.0 +Version: 5.21.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Apr 04 2016 Rex Dieter - 5.21.0-1 +- KDE Frameworks 5.21.0 + * Mon Mar 14 2016 Daniel Vrátil - 5.20.0-1 - KDE Frameworks 5.20.0 diff --git a/sources b/sources index d6ac189..ea3011a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6eb332c832849358e2b8d895fb871784 kcrash-5.20.0.tar.xz +508b6c0a8657a6da0878549c8df8c7e5 kcrash-5.21.0.tar.xz From b20b4a8f0b7a4280b3a40b722b4a9136fd115e31 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 May 2016 09:45:36 -0500 Subject: [PATCH 34/81] update URL, use autosetup --- kf5-kcrash.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index b7e9738..042aa02 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,11 +2,11 @@ Name: kf5-%{framework} Version: 5.21.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ -URL: http://projects.kde.org/kcrash +URL: https://quickgit.kde.org/?p=%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -42,7 +42,7 @@ developing applications that use %{name}. %prep -%setup -q -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} %build @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 16 2016 Rex Dieter - 5.21.0-2 +- update URL, use autosetup + * Mon Apr 04 2016 Rex Dieter - 5.21.0-1 - KDE Frameworks 5.21.0 From e9302d1ad8dc3682cf741b1186c72fc7388a9efa Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 May 2016 09:53:05 -0500 Subject: [PATCH 35/81] KDE Frameworks 5.22.0 --- .gitignore | 1 + clog | 2 ++ kf5-kcrash.spec | 7 +++++-- sources | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 clog diff --git a/.gitignore b/.gitignore index 847f52b..6b3b4db 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kcrash-5.19.0.tar.xz /kcrash-5.20.0.tar.xz /kcrash-5.21.0.tar.xz +/kcrash-5.22.0.tar.xz diff --git a/clog b/clog new file mode 100644 index 0000000..3e3407f --- /dev/null +++ b/clog @@ -0,0 +1,2 @@ +update URL, use autosetup + diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 042aa02..ffe2e99 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.21.0 -Release: 2%{?dist} +Version: 5.22.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 16 2016 Rex Dieter - 5.22.0-1 +- KDE Frameworks 5.22.0 + * Mon May 16 2016 Rex Dieter - 5.21.0-2 - update URL, use autosetup diff --git a/sources b/sources index ea3011a..b580dce 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -508b6c0a8657a6da0878549c8df8c7e5 kcrash-5.21.0.tar.xz +e7f28cb6abcc9d5287c7682ca5b7d67b kcrash-5.22.0.tar.xz From a3ca6d4f33fadb8e7a7beb38468639851dc560fb Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 18 May 2016 14:26:03 -0500 Subject: [PATCH 36/81] rm clog --- clog | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 clog diff --git a/clog b/clog deleted file mode 100644 index 3e3407f..0000000 --- a/clog +++ /dev/null @@ -1,2 +0,0 @@ -update URL, use autosetup - From 93757351077637e61be1d978f60dce27414b4a80 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 10:29:29 -0500 Subject: [PATCH 37/81] KDE Frameworks 5.23.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6b3b4db..97aa279 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kcrash-5.20.0.tar.xz /kcrash-5.21.0.tar.xz /kcrash-5.22.0.tar.xz +/kcrash-5.23.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index ffe2e99..e8dfcde 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.22.0 +Version: 5.23.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 07 2016 Daniel Vrátil - 5.23.0-1 +- KDE Frameworks 5.23.0 + * Mon May 16 2016 Rex Dieter - 5.22.0-1 - KDE Frameworks 5.22.0 diff --git a/sources b/sources index b580dce..101f60a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e7f28cb6abcc9d5287c7682ca5b7d67b kcrash-5.22.0.tar.xz +8f4efc958c5f820399d2620abd4f5b39 kcrash-5.23.0.tar.xz From fd9ef2b65f2a220c18bbc3fa71b4da9c3ace30e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Wed, 6 Jul 2016 17:48:09 +0200 Subject: [PATCH 38/81] KDE Frameworks 5.24.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 97aa279..2eabd15 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kcrash-5.21.0.tar.xz /kcrash-5.22.0.tar.xz /kcrash-5.23.0.tar.xz +/kcrash-5.24.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index e8dfcde..4020571 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.23.0 +Version: 5.24.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jul 06 2016 Daniel Vrátil - 5.24.0-1 +- KDE Frameworks 5.24.0 + * Tue Jun 07 2016 Daniel Vrátil - 5.23.0-1 - KDE Frameworks 5.23.0 diff --git a/sources b/sources index 101f60a..34a7c91 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8f4efc958c5f820399d2620abd4f5b39 kcrash-5.23.0.tar.xz +10119826a766faeda888c7a6125fd6f2 kcrash-5.24.0.tar.xz From 5d24991027d856ee505efd040f5b630cc1ef7867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 8 Aug 2016 10:11:31 +0200 Subject: [PATCH 39/81] KDE Frameworks 5.25.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2eabd15..1824ddb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /kcrash-5.22.0.tar.xz /kcrash-5.23.0.tar.xz /kcrash-5.24.0.tar.xz +/kcrash-5.25.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 4020571..fcd194b 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.24.0 +Version: 5.25.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Aug 08 2016 Daniel Vrátil - 5.25.0-1 +- KDE Frameworks 5.25.0 + * Wed Jul 06 2016 Daniel Vrátil - 5.24.0-1 - KDE Frameworks 5.24.0 diff --git a/sources b/sources index 34a7c91..ed9d73d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -10119826a766faeda888c7a6125fd6f2 kcrash-5.24.0.tar.xz +ecf5dde757c1cf5e3d00d3cfe661474d kcrash-5.25.0.tar.xz From 53712590b9fd21d70db14b0862365c054744574e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 8 Sep 2016 10:22:58 +0200 Subject: [PATCH 40/81] KDE Frameworks 5.26.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1824ddb..7ff1f7d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /kcrash-5.23.0.tar.xz /kcrash-5.24.0.tar.xz /kcrash-5.25.0.tar.xz +/kcrash-5.26.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index fcd194b..7ffe290 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.25.0 +Version: 5.26.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Sep 07 2016 Daniel Vrátil - 5.26.0-1 +- KDE Frameworks 5.26.0 + * Mon Aug 08 2016 Daniel Vrátil - 5.25.0-1 - KDE Frameworks 5.25.0 diff --git a/sources b/sources index ed9d73d..a04aabd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ecf5dde757c1cf5e3d00d3cfe661474d kcrash-5.25.0.tar.xz +2c6644cc02b6c7c6b0b32f7331304502 kcrash-5.26.0.tar.xz From 84f0c9b0c80b55ca984a60d01506dfb51009278d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Oct 2016 21:27:26 -0500 Subject: [PATCH 41/81] 5.27.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7ff1f7d..b67469d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /kcrash-5.24.0.tar.xz /kcrash-5.25.0.tar.xz /kcrash-5.26.0.tar.xz +/kcrash-5.27.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7ffe290..31927b1 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.26.0 -Release: 1%{?dist} +Version: 5.27.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Oct 04 2016 Rex Dieter - 5.27.0-1 +- 5.27.0 + * Wed Sep 07 2016 Daniel Vrátil - 5.26.0-1 - KDE Frameworks 5.26.0 diff --git a/sources b/sources index a04aabd..1769bc0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2c6644cc02b6c7c6b0b32f7331304502 kcrash-5.26.0.tar.xz +e061460f6ffae7c3b1eee220d59e1dd4 kcrash-5.27.0.tar.xz From 7745c2eac5f7268a9959c310b7b6d2d660b8337c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 08:54:56 -0600 Subject: [PATCH 42/81] 5.29.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b67469d..06fc027 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /kcrash-5.25.0.tar.xz /kcrash-5.26.0.tar.xz /kcrash-5.27.0.tar.xz +/kcrash-5.29.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 31927b1..752f266 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.27.0 +Version: 5.29.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Dec 16 2016 Rex Dieter - 5.29.0-1 +- 5.29.0 + * Tue Oct 04 2016 Rex Dieter - 5.27.0-1 - 5.27.0 diff --git a/sources b/sources index 1769bc0..fb83f27 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e061460f6ffae7c3b1eee220d59e1dd4 kcrash-5.27.0.tar.xz +SHA512 (kcrash-5.29.0.tar.xz) = cb7245bd4d181e4227c36b4d429431718d3e1cc8512b10245658f0df79c253ecfc40344f37a4bded4fcab1ce94cd2ce46f7adad3af0a6d96c3188ff256e7a6dc From e7e3e5772512b2bddf2dea5c74877f6645e0b0c3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 6 Feb 2017 12:03:35 -0600 Subject: [PATCH 43/81] 5.31.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 06fc027..f5333ac 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /kcrash-5.26.0.tar.xz /kcrash-5.27.0.tar.xz /kcrash-5.29.0.tar.xz +/kcrash-5.31.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 752f266..455d65b 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.29.0 +Version: 5.31.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 06 2017 Rex Dieter - 5.31.0-1 +- 5.31.0 + * Fri Dec 16 2016 Rex Dieter - 5.29.0-1 - 5.29.0 diff --git a/sources b/sources index fb83f27..c1bdc66 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.29.0.tar.xz) = cb7245bd4d181e4227c36b4d429431718d3e1cc8512b10245658f0df79c253ecfc40344f37a4bded4fcab1ce94cd2ce46f7adad3af0a6d96c3188ff256e7a6dc +SHA512 (kcrash-5.31.0.tar.xz) = cdfa027ee27d85bc599d716936c8cd2c2ed71958651162bc3a939854e33b1c5b25243cf5050c750bbbea2ee416fea2ee411fe456ff81ae578aee4c8079f0a78c From 3091e396942cd7eed8a0b5d4162b42359ba91bd4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 4 Mar 2017 14:24:18 -0600 Subject: [PATCH 44/81] 5.32.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f5333ac..0bff244 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /kcrash-5.27.0.tar.xz /kcrash-5.29.0.tar.xz /kcrash-5.31.0.tar.xz +/kcrash-5.32.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 455d65b..a074310 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.31.0 +Version: 5.32.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Mar 04 2017 Rex Dieter - 5.32.0-1 +- 5.32.0 + * Mon Feb 06 2017 Rex Dieter - 5.31.0-1 - 5.31.0 diff --git a/sources b/sources index c1bdc66..90601de 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.31.0.tar.xz) = cdfa027ee27d85bc599d716936c8cd2c2ed71958651162bc3a939854e33b1c5b25243cf5050c750bbbea2ee416fea2ee411fe456ff81ae578aee4c8079f0a78c +SHA512 (kcrash-5.32.0.tar.xz) = 123a92853a5d1f4ce0109892f4b828d6200fbcc1dafb53d99284be5db54461f3bd2481c80f9c3d69c7276acfc93547b5595b6f85a8645f460ed9adb2f9002b29 From 7e135de936ba7acefc821814eb439b6cd7b20b14 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 27 Mar 2017 09:53:32 -0500 Subject: [PATCH 45/81] -DKCRASH_CORE_PATTERN_RAISE:BOOL="OFF" (#1436277) .spec cosmetics, update URL drop unused BR: qt5-qttools-devel --- kf5-kcrash.spec | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index a074310..171db69 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,12 +1,12 @@ %global framework kcrash -Name: kf5-%{framework} +Name: kf5-%{framework} Version: 5.32.0 -Release: 1%{?dist} -Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes +Release: 2%{?dist} +Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes -License: LGPLv2+ -URL: https://quickgit.kde.org/?p=%{framework}.git +License: LGPLv2+ +URL: https://cgit.kde.org/%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -23,7 +23,6 @@ BuildRequires: kf5-kwindowsystem-devel >= %{version} BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: libX11-devel BuildRequires: qt5-qtbase-devel -BuildRequires: qt5-qttools-devel BuildRequires: qt5-qtx11extras-devel Requires: kf5-filesystem >= %{version} @@ -48,7 +47,8 @@ developing applications that use %{name}. %build mkdir %{_target_platform} pushd %{_target_platform} -%{cmake_kf5} .. +%{cmake_kf5} .. \ + %{?fedora:-DKCRASH_CORE_PATTERN_RAISE:BOOL=OFF} popd make %{?_smp_mflags} -C %{_target_platform} @@ -75,6 +75,11 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Mar 27 2017 Rex Dieter - 5.32.0-2 +- -DKCRASH_CORE_PATTERN_RAISE:BOOL="OFF" (#1436277) +- .spec cosmetics, update URL +- drop unused BR: qt5-qttools-devel + * Sat Mar 04 2017 Rex Dieter - 5.32.0-1 - 5.32.0 From ac8b74f8488eeff14e07ae473d6e75d571be5e14 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Apr 2017 08:10:27 -0500 Subject: [PATCH 46/81] 5.33.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0bff244..0251985 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /kcrash-5.29.0.tar.xz /kcrash-5.31.0.tar.xz /kcrash-5.32.0.tar.xz +/kcrash-5.33.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 171db69..bf9a5aa 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.32.0 -Release: 2%{?dist} +Version: 5.33.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Apr 03 2017 Rex Dieter - 5.33.0-1 +- 5.33.0 + * Mon Mar 27 2017 Rex Dieter - 5.32.0-2 - -DKCRASH_CORE_PATTERN_RAISE:BOOL="OFF" (#1436277) - .spec cosmetics, update URL diff --git a/sources b/sources index 90601de..6d25682 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.32.0.tar.xz) = 123a92853a5d1f4ce0109892f4b828d6200fbcc1dafb53d99284be5db54461f3bd2481c80f9c3d69c7276acfc93547b5595b6f85a8645f460ed9adb2f9002b29 +SHA512 (kcrash-5.33.0.tar.xz) = 9762a1b943dc3dd94181c6fd544ae13d3afc6d12b37fc6b2aa94e632b9cea4425a280e6a35f8b2dd73ad783e6381ab8a88b154737bcd172e5437982d63f7ceb7 From a797654e8ae2aa95ae27dababc36634343356f4a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 11:04:43 -0500 Subject: [PATCH 47/81] 5.34.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0251985..0d5fa39 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /kcrash-5.31.0.tar.xz /kcrash-5.32.0.tar.xz /kcrash-5.33.0.tar.xz +/kcrash-5.34.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index bf9a5aa..a61f60b 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.33.0 +Version: 5.34.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 15 2017 Rex Dieter - 5.34.0-1 +- 5.34.0 + * Mon Apr 03 2017 Rex Dieter - 5.33.0-1 - 5.33.0 diff --git a/sources b/sources index 6d25682..ed6c610 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.33.0.tar.xz) = 9762a1b943dc3dd94181c6fd544ae13d3afc6d12b37fc6b2aa94e632b9cea4425a280e6a35f8b2dd73ad783e6381ab8a88b154737bcd172e5437982d63f7ceb7 +SHA512 (kcrash-5.34.0.tar.xz) = 526c3802a4b193df2375b90885a8ffd89e7133a6fbd776c6d67fa34fe9d1ae890a23dfca6e8c1f934322dc104a752ffb24cacf33252d6f2b22fdbdb734c27f1b From 102dd3789a6ea2366a8771cc7ba411e3ad45c3e2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Jun 2017 07:16:35 -0500 Subject: [PATCH 48/81] 5.35.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0d5fa39..0e24afd 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /kcrash-5.32.0.tar.xz /kcrash-5.33.0.tar.xz /kcrash-5.34.0.tar.xz +/kcrash-5.35.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index a61f60b..7cf7723 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.34.0 +Version: 5.35.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Jun 04 2017 Rex Dieter - 5.35.0-1 +- 5.35.0 + * Mon May 15 2017 Rex Dieter - 5.34.0-1 - 5.34.0 diff --git a/sources b/sources index ed6c610..8ab2925 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.34.0.tar.xz) = 526c3802a4b193df2375b90885a8ffd89e7133a6fbd776c6d67fa34fe9d1ae890a23dfca6e8c1f934322dc104a752ffb24cacf33252d6f2b22fdbdb734c27f1b +SHA512 (kcrash-5.35.0.tar.xz) = 036c30986cdbb7934f70b065d79188747f46b12f37301b314dd585f55271390b54e8d55b90b29a01aa35264341564ac50ae0e4c1ea597bc526897366ed3770d0 From 820dbf14ef761214cb03ca092e42038c18e0c6cc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Jul 2017 12:05:29 -0500 Subject: [PATCH 49/81] 5.36.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0e24afd..5641525 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /kcrash-5.33.0.tar.xz /kcrash-5.34.0.tar.xz /kcrash-5.35.0.tar.xz +/kcrash-5.36.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7cf7723..be500c3 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.35.0 +Version: 5.36.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jul 03 2017 Rex Dieter - 5.36.0-1 +- 5.36.0 + * Sun Jun 04 2017 Rex Dieter - 5.35.0-1 - 5.35.0 diff --git a/sources b/sources index 8ab2925..ee2cbbe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.35.0.tar.xz) = 036c30986cdbb7934f70b065d79188747f46b12f37301b314dd585f55271390b54e8d55b90b29a01aa35264341564ac50ae0e4c1ea597bc526897366ed3770d0 +SHA512 (kcrash-5.36.0.tar.xz) = 63d584764a41f7cc663770cb4f13ff7a5f66602f894d8166d3de0de85d29951225b72a92ddd9879354f95984fcb9e99182a9c48e49e54ceeb86bdfeecf927478 From 381d3b57742da6cc573dfa1764bfd803356478c3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 15:14:30 +0000 Subject: [PATCH 50/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index be500c3..a6f373f 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Jul 03 2017 Rex Dieter - 5.36.0-1 - 5.36.0 From b998b0e8804e9c701872da43427de9b1045cd97c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 00:24:24 +0000 Subject: [PATCH 51/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index a6f373f..1e8cd07 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 5.36.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From e89ce2ad77aaba5765df4ff255a23b2af1c61822 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 25 Aug 2017 09:27:06 -0500 Subject: [PATCH 52/81] 5.37.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5641525..473b36c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /kcrash-5.34.0.tar.xz /kcrash-5.35.0.tar.xz /kcrash-5.36.0.tar.xz +/kcrash-5.37.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 1e8cd07..d2e5193 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.36.0 -Release: 3%{?dist} +Version: 5.37.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Aug 25 2017 Rex Dieter - 5.37.0-1 +- 5.37.0 + * Thu Aug 03 2017 Fedora Release Engineering - 5.36.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index ee2cbbe..29a4e98 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.36.0.tar.xz) = 63d584764a41f7cc663770cb4f13ff7a5f66602f894d8166d3de0de85d29951225b72a92ddd9879354f95984fcb9e99182a9c48e49e54ceeb86bdfeecf927478 +SHA512 (kcrash-5.37.0.tar.xz) = d7a312c820c3d4353bbf30313623d9931c8151206446bc3d59856bdf5824c5a82655a649ddaa94ff3a868151cd792fd03a274c8d87fbf052efff547c49963cbf From cfd83ff2bcc6b0bbfeb361872b26060e6c1a3074 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 11 Sep 2017 14:53:56 -0500 Subject: [PATCH 53/81] 5.38.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 473b36c..2f931b2 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /kcrash-5.35.0.tar.xz /kcrash-5.36.0.tar.xz /kcrash-5.37.0.tar.xz +/kcrash-5.38.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index d2e5193..67a929a 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.37.0 +Version: 5.38.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Sep 11 2017 Rex Dieter - 5.38.0-1 +- 5.38.0 + * Fri Aug 25 2017 Rex Dieter - 5.37.0-1 - 5.37.0 diff --git a/sources b/sources index 29a4e98..da11429 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.37.0.tar.xz) = d7a312c820c3d4353bbf30313623d9931c8151206446bc3d59856bdf5824c5a82655a649ddaa94ff3a868151cd792fd03a274c8d87fbf052efff547c49963cbf +SHA512 (kcrash-5.38.0.tar.xz) = 60c13b2e883d3e55b9f431eb1dd7c7332c7e196fe903d0c7fe7f70029ba77600802cc8911be65fb84e1526fb5d9f548d85f6c881e209dee1922aee961279d1b9 From d2ce0c294baecdef24908005cc3278de303e41f8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Oct 2017 09:58:13 -0500 Subject: [PATCH 54/81] 5.39.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2f931b2..a048a68 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /kcrash-5.36.0.tar.xz /kcrash-5.37.0.tar.xz /kcrash-5.38.0.tar.xz +/kcrash-5.39.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 67a929a..56ca312 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.38.0 +Version: 5.39.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Oct 08 2017 Rex Dieter - 5.39.0-1 +- 5.39.0 + * Mon Sep 11 2017 Rex Dieter - 5.38.0-1 - 5.38.0 diff --git a/sources b/sources index da11429..b1fe686 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.38.0.tar.xz) = 60c13b2e883d3e55b9f431eb1dd7c7332c7e196fe903d0c7fe7f70029ba77600802cc8911be65fb84e1526fb5d9f548d85f6c881e209dee1922aee961279d1b9 +SHA512 (kcrash-5.39.0.tar.xz) = d3444e39cb32abef01441c92af2fa020777bc6e629d3db568aed7e9a4f313fd6fb76a04142119170f2a38d51e65f1791f032c827bd1650e888ff7681883d688f From 2a8dad12a78ce0d5b54eb5e17d029e02d358339b Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Nov 2017 09:34:43 -0600 Subject: [PATCH 55/81] 5.40.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a048a68..82a6553 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /kcrash-5.37.0.tar.xz /kcrash-5.38.0.tar.xz /kcrash-5.39.0.tar.xz +/kcrash-5.40.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 56ca312..85647eb 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.39.0 +Version: 5.40.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 10 2017 Rex Dieter - 5.40.0-1 +- 5.40.0 + * Sun Oct 08 2017 Rex Dieter - 5.39.0-1 - 5.39.0 diff --git a/sources b/sources index b1fe686..b710516 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.39.0.tar.xz) = d3444e39cb32abef01441c92af2fa020777bc6e629d3db568aed7e9a4f313fd6fb76a04142119170f2a38d51e65f1791f032c827bd1650e888ff7681883d688f +SHA512 (kcrash-5.40.0.tar.xz) = 2440b64e5ec6dd38682a9d7fa92e112faa41c6190faae42cb291df4fe8c77ef4013d06a333a997fa25fe15ca2f8dc1bed36973f7ef44d7bc2b59c3bb9427403a From ca4ce1fde4cc5bccf15467d1dd47d4492ea81564 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Dec 2017 10:35:53 -0600 Subject: [PATCH 56/81] 5.41.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 82a6553..c7bb88f 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /kcrash-5.38.0.tar.xz /kcrash-5.39.0.tar.xz /kcrash-5.40.0.tar.xz +/kcrash-5.41.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 85647eb..8a0c90e 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.40.0 +Version: 5.41.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Dec 04 2017 Rex Dieter - 5.41.0-1 +- 5.41.0 + * Fri Nov 10 2017 Rex Dieter - 5.40.0-1 - 5.40.0 diff --git a/sources b/sources index b710516..248c278 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.40.0.tar.xz) = 2440b64e5ec6dd38682a9d7fa92e112faa41c6190faae42cb291df4fe8c77ef4013d06a333a997fa25fe15ca2f8dc1bed36973f7ef44d7bc2b59c3bb9427403a +SHA512 (kcrash-5.41.0.tar.xz) = ff21f33d14813aad00a2cc231cb889eb219555ee0302a3575d0ea5e237d7b5d6b9a50c354b289b087ccbce9bd4b5c76e8c94e7bde6a00e8148c63a13e79780ef From f65e92acd05d7059a08bbd50d4387b4692ade04d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Dec 2017 14:48:57 -0600 Subject: [PATCH 57/81] cleanup --- .gitignore | 21 --------------------- kf5-kcrash.spec | 15 +++++++-------- 2 files changed, 7 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index c7bb88f..51ba0ff 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1 @@ -/kcrash-5.18.0.tar.xz -/kcrash-5.19.0.tar.xz -/kcrash-5.20.0.tar.xz -/kcrash-5.21.0.tar.xz -/kcrash-5.22.0.tar.xz -/kcrash-5.23.0.tar.xz -/kcrash-5.24.0.tar.xz -/kcrash-5.25.0.tar.xz -/kcrash-5.26.0.tar.xz -/kcrash-5.27.0.tar.xz -/kcrash-5.29.0.tar.xz -/kcrash-5.31.0.tar.xz -/kcrash-5.32.0.tar.xz -/kcrash-5.33.0.tar.xz -/kcrash-5.34.0.tar.xz -/kcrash-5.35.0.tar.xz -/kcrash-5.36.0.tar.xz -/kcrash-5.37.0.tar.xz -/kcrash-5.38.0.tar.xz -/kcrash-5.39.0.tar.xz -/kcrash-5.40.0.tar.xz /kcrash-5.41.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 8a0c90e..b25f851 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -8,25 +8,24 @@ Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ URL: https://cgit.kde.org/%{framework}.git -%global versiondir %(echo %{version} | cut -d. -f1-2) +%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}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz + +BuildRequires: extra-cmake-modules >= %{majmin} +BuildRequires: kf5-kcoreaddons-devel >= %{majmin} +BuildRequires: kf5-kwindowsystem-devel >= %{majmin} +BuildRequires: kf5-rpm-macros -BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: kf5-kcoreaddons-devel >= %{version} -BuildRequires: kf5-kwindowsystem-devel >= %{version} -BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: libX11-devel BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtx11extras-devel -Requires: kf5-filesystem >= %{version} - %description KCrash provides support for intercepting and handling application crashes. From 0c78218c3bfd964550b292fa7ae4eb353b4fd1c1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 8 Jan 2018 08:56:15 -0600 Subject: [PATCH 58/81] 5.42.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 51ba0ff..1f0fad6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kcrash-5.41.0.tar.xz +/kcrash-5.42.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index b25f851..b911e88 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.41.0 +Version: 5.42.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jan 08 2018 Rex Dieter - 5.42.0-1 +- 5.42.0 + * Mon Dec 04 2017 Rex Dieter - 5.41.0-1 - 5.41.0 diff --git a/sources b/sources index 248c278..fcce427 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.41.0.tar.xz) = ff21f33d14813aad00a2cc231cb889eb219555ee0302a3575d0ea5e237d7b5d6b9a50c354b289b087ccbce9bd4b5c76e8c94e7bde6a00e8148c63a13e79780ef +SHA512 (kcrash-5.42.0.tar.xz) = f7cc51aa370f5bee09d8e005cca11b097a7091a21bf946ca7879de81557298b019d99c27ece12539727674fa200f315c08382fa01bfc6861f87a558ac475c95c From ca2d9842c857a91dad3874339612c54b9dad4018 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 8 Jan 2018 11:50:49 -0600 Subject: [PATCH 59/81] update %%files --- kf5-kcrash.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index b911e88..5dd8c8c 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -63,6 +63,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files %doc README.md %license COPYING.LIB +%{_kf5_sysconfdir}/xdg/%{framework}.* %{_kf5_libdir}/libKF5Crash.so.* %files devel From e693e4550c2c7b81fbf26e5c3f4fa9d2cdd9332f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Feb 2018 09:52:32 -0600 Subject: [PATCH 60/81] 5.43.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1f0fad6..f5d2278 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kcrash-5.41.0.tar.xz /kcrash-5.42.0.tar.xz +/kcrash-5.43.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 5dd8c8c..a84dfe9 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.42.0 +Version: 5.43.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Feb 07 2018 Rex Dieter - 5.43.0-1 +- 5.43.0 + * Mon Jan 08 2018 Rex Dieter - 5.42.0-1 - 5.42.0 diff --git a/sources b/sources index fcce427..d9fd1ab 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.42.0.tar.xz) = f7cc51aa370f5bee09d8e005cca11b097a7091a21bf946ca7879de81557298b019d99c27ece12539727674fa200f315c08382fa01bfc6861f87a558ac475c95c +SHA512 (kcrash-5.43.0.tar.xz) = 1733807f55d5914b67d7b009ef8b34d0c54e3e1fb40a373df7651d65dc3180033ec8872c105d243134e7e38ea6fa9992f2d4803d9b2915721a3c0d8c43c7464c From 1125f7a40d1a4326134986e8e2f545476de93f03 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 3 Mar 2018 08:00:06 -0600 Subject: [PATCH 61/81] 5.44.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f5d2278..5929d74 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kcrash-5.41.0.tar.xz /kcrash-5.42.0.tar.xz /kcrash-5.43.0.tar.xz +/kcrash-5.44.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index a84dfe9..2c054ea 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.43.0 +Version: 5.44.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Mar 03 2018 Rex Dieter - 5.44.0-1 +- 5.44.0 + * Wed Feb 07 2018 Rex Dieter - 5.43.0-1 - 5.43.0 diff --git a/sources b/sources index d9fd1ab..e86293d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.43.0.tar.xz) = 1733807f55d5914b67d7b009ef8b34d0c54e3e1fb40a373df7651d65dc3180033ec8872c105d243134e7e38ea6fa9992f2d4803d9b2915721a3c0d8c43c7464c +SHA512 (kcrash-5.44.0.tar.xz) = a7ba76bc2eea699b6c214b3e574c5e5a8fb148644218c0d5f1f796f594f94c28ab78379568b47d75e0584b6e522522460d124f9548abd7964c4eb656f190a6d4 From 83ca096b5bd72623d4c5a6258d35c92ef18278ea Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Apr 2018 07:34:26 -0500 Subject: [PATCH 62/81] 5.45.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5929d74..447eadd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kcrash-5.42.0.tar.xz /kcrash-5.43.0.tar.xz /kcrash-5.44.0.tar.xz +/kcrash-5.45.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 2c054ea..0b3742c 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.44.0 +Version: 5.45.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Apr 08 2018 Rex Dieter - 5.45.0-1 +- 5.45.0 + * Sat Mar 03 2018 Rex Dieter - 5.44.0-1 - 5.44.0 diff --git a/sources b/sources index e86293d..abdd17d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.44.0.tar.xz) = a7ba76bc2eea699b6c214b3e574c5e5a8fb148644218c0d5f1f796f594f94c28ab78379568b47d75e0584b6e522522460d124f9548abd7964c4eb656f190a6d4 +SHA512 (kcrash-5.45.0.tar.xz) = 79a208702b8617ae0e9393b3ba1df80e984977b4612e61a93209009552766c0a7bbcb50f517ce9df8b6b6ae46cace68299767afcbb1fa79aac7372f164fc3af7 From 41c2ef81abe2a8815eea92cf7ebcd56a5a502ab6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 5 May 2018 16:27:41 -0500 Subject: [PATCH 63/81] 5.46.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 447eadd..1f7692a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kcrash-5.43.0.tar.xz /kcrash-5.44.0.tar.xz /kcrash-5.45.0.tar.xz +/kcrash-5.46.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 0b3742c..d366999 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.45.0 +Version: 5.46.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat May 05 2018 Rex Dieter - 5.46.0-1 +- 5.46.0 + * Sun Apr 08 2018 Rex Dieter - 5.45.0-1 - 5.45.0 diff --git a/sources b/sources index abdd17d..7831434 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.45.0.tar.xz) = 79a208702b8617ae0e9393b3ba1df80e984977b4612e61a93209009552766c0a7bbcb50f517ce9df8b6b6ae46cace68299767afcbb1fa79aac7372f164fc3af7 +SHA512 (kcrash-5.46.0.tar.xz) = b286e3d396d31c52deffd250d064795166a9ad6b19de63bca3eba1c37d8919bc0e31e2238c30f901403cac19dc956fb6515c8ee5a1a73287a14b79d674048b39 From 64dbcd63ba19246145de61ac6ae5728f28e8f2af Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 2 Jun 2018 15:54:52 -0500 Subject: [PATCH 64/81] 5.47.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1f7692a..a4cff38 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kcrash-5.44.0.tar.xz /kcrash-5.45.0.tar.xz /kcrash-5.46.0.tar.xz +/kcrash-5.47.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index d366999..37e8115 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.46.0 +Version: 5.47.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -75,6 +75,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Jun 02 2018 Rex Dieter - 5.47.0-1 +- 5.47.0 + * Sat May 05 2018 Rex Dieter - 5.46.0-1 - 5.46.0 diff --git a/sources b/sources index 7831434..c5e0e74 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.46.0.tar.xz) = b286e3d396d31c52deffd250d064795166a9ad6b19de63bca3eba1c37d8919bc0e31e2238c30f901403cac19dc956fb6515c8ee5a1a73287a14b79d674048b39 +SHA512 (kcrash-5.47.0.tar.xz) = 981052624090b05db21683895ac8517f2530c7393bc206d2932e19b5293c138315d8b53fdbb10fb5ddf085a5d488d909c893c25046b34249eb317355d1388372 From b16d03a1fad54bae32afa0eb21802bd137eb7c0a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 7 Jun 2018 14:00:46 -0500 Subject: [PATCH 65/81] cleanup, use %make_build %ldconfig_scriptlets --- .gitignore | 6 ------ kf5-kcrash.spec | 10 ++++++---- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index a4cff38..62b6541 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1 @@ -/kcrash-5.41.0.tar.xz -/kcrash-5.42.0.tar.xz -/kcrash-5.43.0.tar.xz -/kcrash-5.44.0.tar.xz -/kcrash-5.45.0.tar.xz -/kcrash-5.46.0.tar.xz /kcrash-5.47.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 37e8115..ac5b1b7 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.47.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -50,15 +50,14 @@ pushd %{_target_platform} %{?fedora:-DKCRASH_CORE_PATTERN_RAISE:BOOL=OFF} popd -make %{?_smp_mflags} -C %{_target_platform} +%make_build -C %{_target_platform} %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %doc README.md @@ -75,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 07 2018 Rex Dieter - 5.47.0-2 +- cleanup, use %%make_build %%ldconfig_scriptlets + * Sat Jun 02 2018 Rex Dieter - 5.47.0-1 - 5.47.0 From 1b55ab51268a1a5d5b42d585ba3a92eef1d751a9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Jul 2018 19:58:11 -0500 Subject: [PATCH 66/81] 5.48.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 62b6541..de18cb9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kcrash-5.47.0.tar.xz +/kcrash-5.48.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index ac5b1b7..53be69a 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.47.0 -Release: 2%{?dist} +Version: 5.48.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jul 09 2018 Rex Dieter - 5.48.0-1 +- 5.48.0 + * Thu Jun 07 2018 Rex Dieter - 5.47.0-2 - cleanup, use %%make_build %%ldconfig_scriptlets diff --git a/sources b/sources index c5e0e74..3189cf3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.47.0.tar.xz) = 981052624090b05db21683895ac8517f2530c7393bc206d2932e19b5293c138315d8b53fdbb10fb5ddf085a5d488d909c893c25046b34249eb317355d1388372 +SHA512 (kcrash-5.48.0.tar.xz) = 3c0abab1e52d51c6f92ff3f5a808a73a82f2ecb7a64d00ec652521c1fe29ad3f4273f34c73c958481e339d7000bd03927d4bb2536e99cbde5e050d26028ca2cb From ecf7b19ad2f569272b7f19d1572055b56d803a6a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:04:22 +0000 Subject: [PATCH 67/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 53be69a..314f6b2 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.48.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 5.48.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Jul 09 2018 Rex Dieter - 5.48.0-1 - 5.48.0 From b11f94a66e17fec89766550790c0eb15225e2a1a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Aug 2018 10:17:54 -0500 Subject: [PATCH 68/81] 5.49.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index de18cb9..69250c2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kcrash-5.47.0.tar.xz /kcrash-5.48.0.tar.xz +/kcrash-5.49.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 314f6b2..7a65d0a 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.48.0 -Release: 2%{?dist} +Version: 5.49.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Aug 07 2018 Rex Dieter - 5.49.0-1 +- 5.49.0 + * Fri Jul 13 2018 Fedora Release Engineering - 5.48.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 3189cf3..dc97539 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.48.0.tar.xz) = 3c0abab1e52d51c6f92ff3f5a808a73a82f2ecb7a64d00ec652521c1fe29ad3f4273f34c73c958481e339d7000bd03927d4bb2536e99cbde5e050d26028ca2cb +SHA512 (kcrash-5.49.0.tar.xz) = e2390788a15a8f666828be5567c7110b0a36f8dbe8f73f858d9bad734601319e239ee4754defa16fec4ed25257a93c802ef19f69ca010fc39ff8262d80590f9c From e70923f7392ef37d223251ffb7da591880d62367 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Sep 2018 14:59:42 -0500 Subject: [PATCH 69/81] 5.50.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 69250c2..09383fe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kcrash-5.47.0.tar.xz /kcrash-5.48.0.tar.xz /kcrash-5.49.0.tar.xz +/kcrash-5.50.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 7a65d0a..a6d4798 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.49.0 +Version: 5.50.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Sep 04 2018 Rex Dieter - 5.50.0-1 +- 5.50.0 + * Tue Aug 07 2018 Rex Dieter - 5.49.0-1 - 5.49.0 diff --git a/sources b/sources index dc97539..f5ac915 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.49.0.tar.xz) = e2390788a15a8f666828be5567c7110b0a36f8dbe8f73f858d9bad734601319e239ee4754defa16fec4ed25257a93c802ef19f69ca010fc39ff8262d80590f9c +SHA512 (kcrash-5.50.0.tar.xz) = 79cec88f7e37901e9758dcc8f69883369dba8db536a563cfa66245038ca46240a5c0c70c4fb4b48c0c1e4b7772ec90d341707add99124b02408fc567a7e64648 From a6358e263ed626365e594a493fa457cb1d380148 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 15:40:14 -0500 Subject: [PATCH 70/81] 5.51.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 09383fe..4e3c918 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kcrash-5.48.0.tar.xz /kcrash-5.49.0.tar.xz /kcrash-5.50.0.tar.xz +/kcrash-5.51.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index a6d4798..1c1d8f7 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.50.0 +Version: 5.51.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -74,6 +74,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Oct 10 2018 Rex Dieter - 5.51.0-1 +- 5.51.0 + * Tue Sep 04 2018 Rex Dieter - 5.50.0-1 - 5.50.0 diff --git a/sources b/sources index f5ac915..5177aac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.50.0.tar.xz) = 79cec88f7e37901e9758dcc8f69883369dba8db536a563cfa66245038ca46240a5c0c70c4fb4b48c0c1e4b7772ec90d341707add99124b02408fc567a7e64648 +SHA512 (kcrash-5.51.0.tar.xz) = 510dd18e26d0991ded9449db1d6a76df500b9b0d8c5d5b7ffe718fa84399b85f33b944caea9591d61de9e0413c9f472ee5b6079bda41c0314a81eb9ca2e7ad6c From d01964b19356f6beed727378cbe97cfa775ab7cc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 14 Oct 2018 10:55:18 -0500 Subject: [PATCH 71/81] KCrash: fix crash when used in an app without QCoreApplication --- D16183.diff | 16 ++++++++++++++++ kf5-kcrash.spec | 11 +++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 D16183.diff diff --git a/D16183.diff b/D16183.diff new file mode 100644 index 0000000..b2da131 --- /dev/null +++ b/D16183.diff @@ -0,0 +1,16 @@ +diff --git a/src/kcrash.cpp b/src/kcrash.cpp +--- a/src/kcrash.cpp ++++ b/src/kcrash.cpp +@@ -135,7 +135,10 @@ + qCDebug(LOG_KCRASH) << "KCrash disabled through environment."; + } + +- KCrash::setApplicationFilePath(QCoreApplication::applicationFilePath()); ++ if (QCoreApplication::instance()) ++ KCrash::setApplicationFilePath(QCoreApplication::applicationFilePath()); ++ else ++ qWarning() << "This process needs a QCoreApplication instance in order to use KCrash"; + + s_coreConfig(); // Initialize. + } + diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 1c1d8f7..01136ca 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.51.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -17,6 +17,10 @@ URL: https://cgit.kde.org/%{framework}.git %endif Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz +## upstream patches +# https://phabricator.kde.org/D16183 +Patch1: https://phabricator.kde.org/file/data/tyfruhevy6a3jhg5ns7p/PHID-FILE-6lgblwlrp6pq6ziqhjjc/D16183.diff + BuildRequires: extra-cmake-modules >= %{majmin} BuildRequires: kf5-kcoreaddons-devel >= %{majmin} BuildRequires: kf5-kwindowsystem-devel >= %{majmin} @@ -40,7 +44,7 @@ developing applications that use %{name}. %prep -%autosetup -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} -p1 %build @@ -74,6 +78,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Oct 14 2018 Rex Dieter - 5.51.0-2 +- KCrash: fix crash when used in an app without QCoreApplication + * Wed Oct 10 2018 Rex Dieter - 5.51.0-1 - 5.51.0 From 67dadfd9e4bc8f228b926a940e6d1ffa9a698ce1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 14 Oct 2018 11:15:48 -0500 Subject: [PATCH 72/81] respin --- D16183.diff | 16 ---------------- kf5-kcrash.spec | 7 ++++--- sources | 2 +- 3 files changed, 5 insertions(+), 20 deletions(-) delete mode 100644 D16183.diff diff --git a/D16183.diff b/D16183.diff deleted file mode 100644 index b2da131..0000000 --- a/D16183.diff +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/src/kcrash.cpp b/src/kcrash.cpp ---- a/src/kcrash.cpp -+++ b/src/kcrash.cpp -@@ -135,7 +135,10 @@ - qCDebug(LOG_KCRASH) << "KCrash disabled through environment."; - } - -- KCrash::setApplicationFilePath(QCoreApplication::applicationFilePath()); -+ if (QCoreApplication::instance()) -+ KCrash::setApplicationFilePath(QCoreApplication::applicationFilePath()); -+ else -+ qWarning() << "This process needs a QCoreApplication instance in order to use KCrash"; - - s_coreConfig(); // Initialize. - } - diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 01136ca..d4bc4e8 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.51.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -18,8 +18,6 @@ URL: https://cgit.kde.org/%{framework}.git Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstream patches -# https://phabricator.kde.org/D16183 -Patch1: https://phabricator.kde.org/file/data/tyfruhevy6a3jhg5ns7p/PHID-FILE-6lgblwlrp6pq6ziqhjjc/D16183.diff BuildRequires: extra-cmake-modules >= %{majmin} BuildRequires: kf5-kcoreaddons-devel >= %{majmin} @@ -78,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Oct 14 2018 Rex Dieter - 5.51.0-3 +- respin + * Sun Oct 14 2018 Rex Dieter - 5.51.0-2 - KCrash: fix crash when used in an app without QCoreApplication diff --git a/sources b/sources index 5177aac..f1b2371 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.51.0.tar.xz) = 510dd18e26d0991ded9449db1d6a76df500b9b0d8c5d5b7ffe718fa84399b85f33b944caea9591d61de9e0413c9f472ee5b6079bda41c0314a81eb9ca2e7ad6c +SHA512 (kcrash-5.51.0.tar.xz) = 7945fca845f019f847fbef85de4934556da2183be5a2e48ae3dc0b71f1a0e5aa4e21a65ca9fcdbd7aab02aa36cb125b14768d34b7f3fd49f2666d3d8377d9356 From 8366a84b0873daf0acfeef8f49434e378cd175bd Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Nov 2018 12:35:42 -0600 Subject: [PATCH 73/81] 5.52.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4e3c918..35f082c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kcrash-5.49.0.tar.xz /kcrash-5.50.0.tar.xz /kcrash-5.51.0.tar.xz +/kcrash-5.52.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index d4bc4e8..6445061 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.51.0 -Release: 3%{?dist} +Version: 5.52.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Nov 04 2018 Rex Dieter - 5.52.0-1 +- 5.52.0 + * Sun Oct 14 2018 Rex Dieter - 5.51.0-3 - respin diff --git a/sources b/sources index f1b2371..042ac54 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.51.0.tar.xz) = 7945fca845f019f847fbef85de4934556da2183be5a2e48ae3dc0b71f1a0e5aa4e21a65ca9fcdbd7aab02aa36cb125b14768d34b7f3fd49f2666d3d8377d9356 +SHA512 (kcrash-5.52.0.tar.xz) = 3e951b8cb809e25823c1dc41a736f42a2b413b4d17d91c555def014ae2a38ed4a0ff8297f3977e68d5cfb3445c26126b9212f08e7d1e6ef8aeb01a53e663a0ac From adebd718a929bbca7d3eaefef201b14c83682874 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 9 Dec 2018 08:24:22 -0600 Subject: [PATCH 74/81] 5.53.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 35f082c..0e7195b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kcrash-5.50.0.tar.xz /kcrash-5.51.0.tar.xz /kcrash-5.52.0.tar.xz +/kcrash-5.53.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 6445061..bec508e 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.52.0 +Version: 5.53.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Dec 09 2018 Rex Dieter - 5.53.0-1 +- 5.53.0 + * Sun Nov 04 2018 Rex Dieter - 5.52.0-1 - 5.52.0 diff --git a/sources b/sources index 042ac54..35b8655 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.52.0.tar.xz) = 3e951b8cb809e25823c1dc41a736f42a2b413b4d17d91c555def014ae2a38ed4a0ff8297f3977e68d5cfb3445c26126b9212f08e7d1e6ef8aeb01a53e663a0ac +SHA512 (kcrash-5.53.0.tar.xz) = 5be1ea2af440f987397cb2c519c949b90a7a16d7001ef83cb7f9b06f999fdfc9b19f3bc5cc722bd0001b7e03fbbbd793f61b5f3548b319a78ca4289d0cf2a45c From 3b95972061bef3e2eca2a0420ea0236203b31419 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jan 2019 17:00:38 -0600 Subject: [PATCH 75/81] 5.54.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0e7195b..723e605 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /kcrash-5.51.0.tar.xz /kcrash-5.52.0.tar.xz /kcrash-5.53.0.tar.xz +/kcrash-5.54.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index bec508e..40e4b48 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.53.0 +Version: 5.54.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jan 08 2019 Rex Dieter - 5.54.0-1 +- 5.54.0 + * Sun Dec 09 2018 Rex Dieter - 5.53.0-1 - 5.53.0 diff --git a/sources b/sources index 35b8655..7689441 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.53.0.tar.xz) = 5be1ea2af440f987397cb2c519c949b90a7a16d7001ef83cb7f9b06f999fdfc9b19f3bc5cc722bd0001b7e03fbbbd793f61b5f3548b319a78ca4289d0cf2a45c +SHA512 (kcrash-5.54.0.tar.xz) = 1dae5de58b8f91e463af8bf745a474472f2d53d2c2ea3bdbff2477c9220a720df1c7f97400e58a3060f891120ced85bb37f9458a7b17b6c1af1be765c9fea671 From ce4a76a50f42edf397ae448236d5ca15cf094d63 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 05:27:33 +0000 Subject: [PATCH 76/81] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-kcrash.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 40e4b48..8c8cb6a 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.54.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 5.54.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Tue Jan 08 2019 Rex Dieter - 5.54.0-1 - 5.54.0 From 8b5ae42e2dd230522aa1bd6ccb34749c039a9578 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Feb 2019 11:03:54 -0600 Subject: [PATCH 77/81] 5.55.0 --- .gitignore | 1 + kf5-kcrash.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 723e605..112750a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /kcrash-5.52.0.tar.xz /kcrash-5.53.0.tar.xz /kcrash-5.54.0.tar.xz +/kcrash-5.55.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 8c8cb6a..0f4521a 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,8 +1,8 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.54.0 -Release: 2%{?dist} +Version: 5.55.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes License: LGPLv2+ @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 04 2019 Rex Dieter - 5.55.0-1 +- 5.55.0 + * Fri Feb 01 2019 Fedora Release Engineering - 5.54.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index 7689441..2c08604 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.54.0.tar.xz) = 1dae5de58b8f91e463af8bf745a474472f2d53d2c2ea3bdbff2477c9220a720df1c7f97400e58a3060f891120ced85bb37f9458a7b17b6c1af1be765c9fea671 +SHA512 (kcrash-5.55.0.tar.xz) = 450b719e1dc74739fe6467cb3523650adecfb9643fe18922f4c78eb8109a2293849654ef2bb85eccebf3ed089c2ec80878d2a87cb2016dcaec19e5233fc971b4 From 3b3b9ad38d3a0e562e2cea4d60e7cf174db3f41e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Mar 2019 08:56:54 -0600 Subject: [PATCH 78/81] 5.56.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 112750a..504f3d5 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /kcrash-5.53.0.tar.xz /kcrash-5.54.0.tar.xz /kcrash-5.55.0.tar.xz +/kcrash-5.56.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 0f4521a..3a130e1 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.55.0 +Version: 5.56.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Mar 05 2019 Rex Dieter - 5.56.0-1 +- 5.56.0 + * Mon Feb 04 2019 Rex Dieter - 5.55.0-1 - 5.55.0 diff --git a/sources b/sources index 2c08604..f7dd0a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.55.0.tar.xz) = 450b719e1dc74739fe6467cb3523650adecfb9643fe18922f4c78eb8109a2293849654ef2bb85eccebf3ed089c2ec80878d2a87cb2016dcaec19e5233fc971b4 +SHA512 (kcrash-5.56.0.tar.xz) = 37186a1c5c9825163bd469a57aa5f94571b2634b7a426176ef0041dc62edc52205ae84fb7fbdb982ea61f5f621f67b33ecb8be347fd28d1985c0dcb3d93567fd From 071c63948c14407ed01bbe7d611a44544f03a8f1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Apr 2019 10:04:43 -0500 Subject: [PATCH 79/81] 5.57.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 504f3d5..c0cf06d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /kcrash-5.54.0.tar.xz /kcrash-5.55.0.tar.xz /kcrash-5.56.0.tar.xz +/kcrash-5.57.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 3a130e1..cb61a1e 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.56.0 +Version: 5.57.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 09 2019 Rex Dieter - 5.57.0-1 +- 5.57.0 + * Tue Mar 05 2019 Rex Dieter - 5.56.0-1 - 5.56.0 diff --git a/sources b/sources index f7dd0a1..7dcde98 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.56.0.tar.xz) = 37186a1c5c9825163bd469a57aa5f94571b2634b7a426176ef0041dc62edc52205ae84fb7fbdb982ea61f5f621f67b33ecb8be347fd28d1985c0dcb3d93567fd +SHA512 (kcrash-5.57.0.tar.xz) = fcdef127048097217349e62b1204bb99357ceb82ba609fbfadaed673a426ab0f75c32b458fb336945b7b380f540c07d5104f5e16afd9433aca16713f0a459c36 From f9fb3272bdca6adfc2a03ae6c8929064335be056 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 May 2019 13:50:35 -0500 Subject: [PATCH 80/81] 5.58.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c0cf06d..0757b4f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /kcrash-5.55.0.tar.xz /kcrash-5.56.0.tar.xz /kcrash-5.57.0.tar.xz +/kcrash-5.58.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index cb61a1e..00d59f7 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.57.0 +Version: 5.58.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue May 07 2019 Rex Dieter - 5.58.0-1 +- 5.58.0 + * Tue Apr 09 2019 Rex Dieter - 5.57.0-1 - 5.57.0 diff --git a/sources b/sources index 7dcde98..c182c65 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.57.0.tar.xz) = fcdef127048097217349e62b1204bb99357ceb82ba609fbfadaed673a426ab0f75c32b458fb336945b7b380f540c07d5104f5e16afd9433aca16713f0a459c36 +SHA512 (kcrash-5.58.0.tar.xz) = 589622d8aa5235d2311d6ed05c97ba9f9ab64adf36b38f2db51efe8d30062a7e416e1111dbb1986eb757b3e52e588c0bf0b81bf3b6a159ee714e88400dc96d1a From 7cf5d7be5d2e5d975adb82f8648849648e1040d1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jun 2019 12:35:28 -0500 Subject: [PATCH 81/81] 5.59.0 --- .gitignore | 1 + kf5-kcrash.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0757b4f..87268cb 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /kcrash-5.56.0.tar.xz /kcrash-5.57.0.tar.xz /kcrash-5.58.0.tar.xz +/kcrash-5.59.0.tar.xz diff --git a/kf5-kcrash.spec b/kf5-kcrash.spec index 00d59f7..6053370 100755 --- a/kf5-kcrash.spec +++ b/kf5-kcrash.spec @@ -1,7 +1,7 @@ %global framework kcrash Name: kf5-%{framework} -Version: 5.58.0 +Version: 5.59.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for handling application crashes @@ -76,6 +76,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 06 2019 Rex Dieter - 5.59.0-1 +- 5.59.0 + * Tue May 07 2019 Rex Dieter - 5.58.0-1 - 5.58.0 diff --git a/sources b/sources index c182c65..1d2f5f1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kcrash-5.58.0.tar.xz) = 589622d8aa5235d2311d6ed05c97ba9f9ab64adf36b38f2db51efe8d30062a7e416e1111dbb1986eb757b3e52e588c0bf0b81bf3b6a159ee714e88400dc96d1a +SHA512 (kcrash-5.59.0.tar.xz) = 25795a6dcff72e6f956c65fe2df2079b71cab9993b1c15c7f4f2a5d850e14377ecbdd6b3c8c943402b47621c85f99f8b72322a3dad9d1482f50e55aec62130e4