From 46e301bcda22f00e6c6a0ab916c00cdf8e5bcd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 12 Jun 2014 14:09:31 +0200 Subject: [PATCH 01/88] mport package (kf5-kdoctools-4.100.0-2) --- .gitignore | 1 + kf5-kdoctools.spec | 129 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 131 insertions(+) create mode 100644 kf5-kdoctools.spec diff --git a/.gitignore b/.gitignore index e69de29..f38d048 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/kdoctools-4.100.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec new file mode 100644 index 0000000..64034a2 --- /dev/null +++ b/kf5-kdoctools.spec @@ -0,0 +1,129 @@ +# %define snapshot 20140315 +%define framework kdoctools + +Name: kf5-%{framework} +Version: 4.100.0 +Release: 2%{?dist} +Summary: KDE Frameworks 5 Tier 2 addon for generating documentation + +License: GPLv2+ and MIT +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: libxslt-devel +BuildRequires: libxml2-devel +BuildRequires: docbook-dtds +BuildRequires: docbook-style-xsl + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: qt5-qtbase-devel + +BuildRequires: kf5-karchive-devel + +Requires: docbook-dtds +Requires: docbook-style-xsl +Requires: kf5-filesystem + +%description +Provides tools to generate documentation in various format from DocBook files. + + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: kf5-karchive-devel + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package doc +Summary: User documentation and help for %{name} +%description doc +Documentation and user help for %{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_bindir}/checkXML5 +%{_kf5_bindir}/meinproc5 +%{_kf5_datadir}/man/man1/* +%{_kf5_datadir}/man/man7/* +%{_kf5_datadir}/man/man8/* +%{_kf5_datadir}/kf5/kdoctools/customization + + +%files devel +%{_kf5_includedir}/XsltKde/* +%{_kf5_libdir}/libKF5XsltKde.a +%{_kf5_libdir}/cmake/KF5DocTools + + +%files doc +%{_kf5_docdir}/HTML/*/kdoctools5-common + +%changelog +* Tue Jun 03 2014 Daniel Vrátil - 4.100.0-2 +- Fix license +- Fix installation of man pages + +* Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 +- KDE Frameworks 4.100.0 + +* Sun May 18 2014 Daniel Vrátil - 4.99.0-3 +- Apply upstream patch to improve error reporting in meinproc + +* 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-1 +- Update to KDE Frameworks 5 Beta 1 (4.98.0) + +* Sat Mar 15 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 09 2014 Daniel Vrátil 4.95.0-1 +- Update to KDE Frameworks 5 TP1 (4.95.0) + +* Tue Jan 7 2014 Daniel Vrátil +- add docboox-style-xsl to Requires + +* Tue Jan 7 2014 Daniel Vrátil +- add docbook-dtds to Requries, needed for meinproc to actually work + +* Sat Jan 4 2014 Daniel Vrátil +- initial version diff --git a/sources b/sources index e69de29..15ea30c 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +087f26aa3ff15478a7d13eb087b057d1 kdoctools-4.100.0.tar.xz From 7a0980c8d3146f39eb7e72783c10e5ce342b8082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 25 Jun 2014 15:28:50 +0200 Subject: [PATCH 02/88] Adhere to Static Library Packaging Guidelines and some minor bugfixes - -devel subpackage Provides -static (RHBZ#1113070) - -doc subpackages Requires kf5-filesystem - Remove %post and %postun ldconfig - we have no shared libs - Fix directory ownership --- kf5-kdoctools.spec | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 64034a2..7752d55 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 4.100.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -36,6 +36,7 @@ Provides tools to generate documentation in various format from DocBook files. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} +Provides: kf5-kdoctools-static = %{version}-%{release} Requires: kf5-karchive-devel %description devel @@ -44,6 +45,7 @@ developing applications that use %{name}. %package doc Summary: User documentation and help for %{name} +Requires: kf5-filesystem %description doc Documentation and user help for %{name}. @@ -63,10 +65,6 @@ 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 @@ -75,11 +73,11 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_datadir}/man/man1/* %{_kf5_datadir}/man/man7/* %{_kf5_datadir}/man/man8/* -%{_kf5_datadir}/kf5/kdoctools/customization +%{_kf5_datadir}/kf5/kdoctools %files devel -%{_kf5_includedir}/XsltKde/* +%{_kf5_includedir}/XsltKde %{_kf5_libdir}/libKF5XsltKde.a %{_kf5_libdir}/cmake/KF5DocTools @@ -88,6 +86,11 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %changelog +* Wed Jun 25 2014 Daniel Vrátil - 4.100.0-3 +- Add Provides -static to -devel (RHBZ#1113070) +- Add Requires kf5-filesystem to -doc +- Remove %%post and %%postun ldconfig, there are no shared libs + * Tue Jun 03 2014 Daniel Vrátil - 4.100.0-2 - Fix license - Fix installation of man pages From 1aea246be91f211b2fce86e48845f3ced328a984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 9 Jul 2014 15:37:13 +0200 Subject: [PATCH 03/88] KDE Frameworks 5.0.0 --- .gitignore | 1 + kf5-kdoctools.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f38d048..d456c6b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kdoctools-4.100.0.tar.xz +/kdoctools-5.0.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 7752d55..8f51e5e 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,8 +2,8 @@ %define framework kdoctools Name: kf5-%{framework} -Version: 4.100.0 -Release: 3%{?dist} +Version: 5.0.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -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: libxslt-devel BuildRequires: libxml2-devel @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %changelog +* Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 +- KDE Frameworks 5.0.0 + * Wed Jun 25 2014 Daniel Vrátil - 4.100.0-3 - Add Provides -static to -devel (RHBZ#1113070) - Add Requires kf5-filesystem to -doc diff --git a/sources b/sources index 15ea30c..818d5d4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -087f26aa3ff15478a7d13eb087b057d1 kdoctools-4.100.0.tar.xz +7048b70497c07e65c5f36842fd074850 kdoctools-5.0.0.tar.xz From dc9ec6f49ccbabe64015a6a69fc899263aabf748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 6 Aug 2014 15:16:50 +0200 Subject: [PATCH 04/88] KDE Frameworks 5.1.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d456c6b..13194e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kdoctools-4.100.0.tar.xz /kdoctools-5.0.0.tar.xz +/kdoctools-5.1.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 8f51e5e..4a79798 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,7 +2,7 @@ %define framework kdoctools Name: kf5-%{framework} -Version: 5.0.0 +Version: 5.1.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %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 818d5d4..df4c86c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7048b70497c07e65c5f36842fd074850 kdoctools-5.0.0.tar.xz +214a007848541c9c8ebed6f6e1c8efc7 kdoctools-5.1.0.tar.xz From c72d636029d6564da2ea925fafbf3990d75de995 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 23:47:00 +0000 Subject: [PATCH 05/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 4a79798..7a896e5 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %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 4e52611a2037f701b6c172f0635a9884c1a1d7cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 15 Sep 2014 09:44:28 +0200 Subject: [PATCH 06/88] KDE Frameworks 5.2.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 13194e3..5bdd2b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kdoctools-4.100.0.tar.xz /kdoctools-5.0.0.tar.xz /kdoctools-5.1.0.tar.xz +/kdoctools-5.2.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 7a896e5..608a33c 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,8 +2,8 @@ %define framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %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 df4c86c..813f987 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -214a007848541c9c8ebed6f6e1c8efc7 kdoctools-5.1.0.tar.xz +20a4b38f8f9dd50f94b872bfb8eb727c kdoctools-5.2.0.tar.xz From 311e793a005aeb0e5b1c68b590c7801be9cade91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Oct 2014 13:06:50 +0200 Subject: [PATCH 07/88] KDE Frameworks 5.3.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5bdd2b7..745a2a3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kdoctools-5.0.0.tar.xz /kdoctools-5.1.0.tar.xz /kdoctools-5.2.0.tar.xz +/kdoctools-5.3.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 608a33c..508fc7b 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,7 +2,7 @@ %define framework kdoctools Name: kf5-%{framework} -Version: 5.2.0 +Version: 5.3.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %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 813f987..5d87d81 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -20a4b38f8f9dd50f94b872bfb8eb727c kdoctools-5.2.0.tar.xz +905660afc7ef3526fe91a97db4e9d876 kdoctools-5.3.0.tar.xz From 071da114b4d30a8210eb0651df6021d258c1a56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:11:29 +0100 Subject: [PATCH 08/88] KDE Frameworks 5.4.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 745a2a3..a6e32c9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kdoctools-5.1.0.tar.xz /kdoctools-5.2.0.tar.xz /kdoctools-5.3.0.tar.xz +/kdoctools-5.4.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 508fc7b..cbbb0aa 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,7 +2,7 @@ %define framework kdoctools Name: kf5-%{framework} -Version: 5.3.0 +Version: 5.4.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -86,6 +86,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common %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 5d87d81..79cef43 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -905660afc7ef3526fe91a97db4e9d876 kdoctools-5.3.0.tar.xz +a9b6de67f41ac6c988506b79dcaa7097 kdoctools-5.4.0.tar.xz From 250725b7fa443e08e89a0ad8da487b02f8cf7aef 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 09/88] Clean up spec file, autodetect stable/unstable download folder --- kf5-kdoctools.spec | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index cbbb0aa..ad5c185 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,4 +1,3 @@ -# %define snapshot 20140315 %define framework kdoctools Name: kf5-%{framework} @@ -8,11 +7,14 @@ Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT 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: libxslt-devel BuildRequires: libxml2-devel @@ -32,7 +34,6 @@ Requires: kf5-filesystem %description Provides tools to generate documentation in various format from DocBook files. - %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} @@ -53,7 +54,6 @@ Documentation and user help for %{name}. %prep %setup -q -n %{framework}-%{version} - %build mkdir -p %{_target_platform} pushd %{_target_platform} @@ -75,16 +75,15 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_datadir}/man/man8/* %{_kf5_datadir}/kf5/kdoctools - %files devel %{_kf5_includedir}/XsltKde %{_kf5_libdir}/libKF5XsltKde.a %{_kf5_libdir}/cmake/KF5DocTools - %files doc %{_kf5_docdir}/HTML/*/kdoctools5-common + %changelog * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 From 2161db74710ea52da9cd073b3ea7abd83a48bd0a 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 10/88] Use %global instead of %define --- kf5-kdoctools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index ad5c185..79a2609 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,4 +1,4 @@ -%define framework kdoctools +%global framework kdoctools Name: kf5-%{framework} Version: 5.4.0 From a89904d83833689d8fe5f27e753a7c29bc96c729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 8 Dec 2014 15:09:46 +0100 Subject: [PATCH 11/88] KDE Frameworks 5.5.0 --- .gitignore | 1 + kf5-kdoctools.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a6e32c9..21b26f4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kdoctools-5.2.0.tar.xz /kdoctools-5.3.0.tar.xz /kdoctools-5.4.0.tar.xz +/kdoctools-5.5.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 79a2609..e7620e2 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,20 +1,21 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.4.0 +Version: 5.5.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT 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: libxslt-devel BuildRequires: libxml2-devel @@ -85,6 +86,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 79cef43..d893d8e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a9b6de67f41ac6c988506b79dcaa7097 kdoctools-5.4.0.tar.xz +419eda9c9eff2a16adaf532da362ecfd kdoctools-5.5.0.tar.xz From 014f4103294f8052abbd92601b87917f66020bd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Jan 2015 14:41:43 +0100 Subject: [PATCH 12/88] KDE Frameworks 5.6.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 21b26f4..a649ac3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /kdoctools-5.3.0.tar.xz /kdoctools-5.4.0.tar.xz /kdoctools-5.5.0.tar.xz +/kdoctools-5.6.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index e7620e2..34d419b 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.5.0 +Version: 5.6.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -86,6 +86,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 d893d8e..afd2108 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -419eda9c9eff2a16adaf532da362ecfd kdoctools-5.5.0.tar.xz +5d74c325e1eecf067bf3327cdee1f76f kdoctools-5.6.0.tar.xz From 741da05484e5213d8256f796cfc15dd736a54647 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 13/88] Use make install/fast --- kf5-kdoctools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 34d419b..f8743e8 100644 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -64,7 +64,7 @@ popd make %{?_smp_mflags} -C %{_target_platform} %install -%make_install -C %{_target_platform} +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files From 85b89fdbeb20f95248682fd37e16ae180361424b 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 14/88] KDE Frameworks 5.7.0 --- .gitignore | 1 + kf5-kdoctools.spec | 11 ++++++++++- sources | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) mode change 100644 => 100755 kf5-kdoctools.spec diff --git a/.gitignore b/.gitignore index a649ac3..7b6ee62 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /kdoctools-5.4.0.tar.xz /kdoctools-5.5.0.tar.xz /kdoctools-5.6.0.tar.xz +/kdoctools-5.7.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec old mode 100644 new mode 100755 index f8743e8..4c30404 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.6.0 +Version: 5.7.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -25,6 +25,8 @@ BuildRequires: docbook-style-xsl BuildRequires: kf5-rpm-macros BuildRequires: extra-cmake-modules BuildRequires: qt5-qtbase-devel +BuildRequires: kf5-ki18n-devel +BuildRequires: kf5-kdoctools-devel BuildRequires: kf5-karchive-devel @@ -39,6 +41,7 @@ Provides tools to generate documentation in various format from DocBook files. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} +Requires: qt5-qtbase-devel Requires: kf5-karchive-devel %description devel @@ -86,6 +89,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 afd2108..2af5fbe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5d74c325e1eecf067bf3327cdee1f76f kdoctools-5.6.0.tar.xz +65efa563057f08eb25bf626eab5d7345 kdoctools-5.7.0.tar.xz From 5ed1c502b4e25c7617ddb24d66903c3ddcb525ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 17 Feb 2015 17:03:48 +0100 Subject: [PATCH 15/88] Install translations --- kf5-kdoctools.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 4c30404..5d90845 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -68,9 +68,10 @@ make %{?_smp_mflags} -C %{_target_platform} %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +%find_lang kdoctools5_qt --with-qt --with-man --with-kde --all-name -%files +%files -f kdoctools5_qt.lang %doc COPYING.LIB README.md %{_kf5_bindir}/checkXML5 %{_kf5_bindir}/meinproc5 From 6335c4522e21d6cc7e7eb29f4ca1d5a90cf81b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Fri, 27 Feb 2015 18:10:34 +0100 Subject: [PATCH 16/88] Rebuild (GCC 5) --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5d90845..f4f014b 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -90,6 +90,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 a62e35b32811545b6e886b923415aeed1b29524d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Mar 2015 12:54:36 +0100 Subject: [PATCH 17/88] KDE Frameworks 5.8.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7b6ee62..59af38f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /kdoctools-5.5.0.tar.xz /kdoctools-5.6.0.tar.xz /kdoctools-5.7.0.tar.xz +/kdoctools-5.8.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index f4f014b..aa24aba 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -90,6 +90,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 2af5fbe..7fb43ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -65efa563057f08eb25bf626eab5d7345 kdoctools-5.7.0.tar.xz +1bcb1b093999efa4426be034e2aa671f kdoctools-5.8.0.tar.xz From 7ca0e89d86b03062264dc538e133ea98457b6dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Mar 2015 17:28:12 +0100 Subject: [PATCH 18/88] BR perl-Any-URI-Escape --- kf5-kdoctools.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index aa24aba..2baac8b 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -28,7 +28,7 @@ BuildRequires: qt5-qtbase-devel BuildRequires: kf5-ki18n-devel BuildRequires: kf5-kdoctools-devel -BuildRequires: kf5-karchive-devel +BuildRequires: perl-Any-URI-Escape Requires: docbook-dtds Requires: docbook-style-xsl @@ -43,6 +43,7 @@ Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} Requires: qt5-qtbase-devel Requires: kf5-karchive-devel +Requires: perl-Any-URI-Escape %description devel The %{name}-devel package contains libraries and header files for @@ -90,6 +91,7 @@ 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 From 5221f163e9ad65e91859666f8197c2b019d23a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 17 Mar 2015 10:58:16 +0100 Subject: [PATCH 19/88] Remove ambiguous BR --- kf5-kdoctools.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 2baac8b..aa38a35 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -26,7 +26,6 @@ BuildRequires: kf5-rpm-macros BuildRequires: extra-cmake-modules BuildRequires: qt5-qtbase-devel BuildRequires: kf5-ki18n-devel -BuildRequires: kf5-kdoctools-devel BuildRequires: perl-Any-URI-Escape From 50dd1276bfe940d3fcf41f60f3abc780ea73a3d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 17 Mar 2015 13:26:40 +0100 Subject: [PATCH 20/88] BR kf5-karchive-devel --- kf5-kdoctools.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index aa38a35..d2d6e0f 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -26,6 +26,7 @@ BuildRequires: kf5-rpm-macros BuildRequires: extra-cmake-modules BuildRequires: qt5-qtbase-devel BuildRequires: kf5-ki18n-devel +BuildRequires: kf5-karchive-devel BuildRequires: perl-Any-URI-Escape From 4069ad833be195108ef637ef62da69590f11ad71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Apr 2015 13:09:09 +0200 Subject: [PATCH 21/88] KDE Frameworks 5.9.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 59af38f..22ea5a2 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /kdoctools-5.6.0.tar.xz /kdoctools-5.7.0.tar.xz /kdoctools-5.8.0.tar.xz +/kdoctools-5.9.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index d2d6e0f..dccc87e 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.8.0 +Version: 5.9.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -91,6 +91,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 7fb43ad..8eb41db 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1bcb1b093999efa4426be034e2aa671f kdoctools-5.8.0.tar.xz +0344ecb6b0cb28c266c1fe71a98684d9 kdoctools-5.9.0.tar.xz From 8ed41b2b3249cf14171de429a9f53a01a0e8c5da Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 14:43:58 +0200 Subject: [PATCH 22/88] Rebuilt for GCC 5 C++11 ABI change --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index dccc87e..c178d6c 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -91,6 +91,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 717cc11d2acd90986bec3eeb81b7590f8cb5b479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 11 May 2015 11:11:34 +0200 Subject: [PATCH 23/88] KDE Frameworks 5.10.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 22ea5a2..14c1fce 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /kdoctools-5.7.0.tar.xz /kdoctools-5.8.0.tar.xz /kdoctools-5.9.0.tar.xz +/kdoctools-5.10.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index c178d6c..db0ffe5 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -91,6 +91,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 8eb41db..0766243 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0344ecb6b0cb28c266c1fe71a98684d9 kdoctools-5.9.0.tar.xz +2b1c8515da109dea0c5cf8894768f72b kdoctools-5.10.0.tar.xz From 7dc3c73e8247d1a270151f100f0d242cd55669ef Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 29 May 2015 08:49:50 -0500 Subject: [PATCH 24/88] drop -doc subpkg fold content into main --- kf5-kdoctools.spec | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index db0ffe5..5eb49a3 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -34,6 +34,9 @@ Requires: docbook-dtds Requires: docbook-style-xsl Requires: kf5-filesystem +Obsoletes: kf5-kdoctools-doc < 5.3.0-2 +Provides: kf5-kdoctools-doc = %{version}-%{release} + %description Provides tools to generate documentation in various format from DocBook files. @@ -49,27 +52,24 @@ Requires: perl-Any-URI-Escape The %{name}-devel package contains libraries and header files for developing applications that use %{name}. -%package doc -Summary: User documentation and help for %{name} -Requires: kf5-filesystem -%description doc -Documentation and user help for %{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} -%find_lang kdoctools5_qt --with-qt --with-man --with-kde --all-name + +%find_lang kdoctools5_qt --with-qt --with-man --all-name %files -f kdoctools5_qt.lang @@ -79,18 +79,20 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_datadir}/man/man1/* %{_kf5_datadir}/man/man7/* %{_kf5_datadir}/man/man8/* -%{_kf5_datadir}/kf5/kdoctools +%{_kf5_datadir}/kf5/kdoctools/ +# FIXME/TODO: %%lang'ify these -- rex +%{_kf5_docdir}/HTML/*/kdoctools5-common/ %files devel -%{_kf5_includedir}/XsltKde +%{_kf5_includedir}/XsltKde/ %{_kf5_libdir}/libKF5XsltKde.a -%{_kf5_libdir}/cmake/KF5DocTools - -%files doc -%{_kf5_docdir}/HTML/*/kdoctools5-common +%{_kf5_libdir}/cmake/KF5DocTools/ %changelog +* Fri May 29 2015 Rex Dieter 5.10.0-2 +- drop -doc subpkg fold content into main + * Mon May 11 2015 Daniel Vrátil - 5.10.0-1 - KDE Frameworks 5.10.0 From 4e64e02104334bb6643a07b379a7e94550967d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 10 Jun 2015 14:26:34 +0200 Subject: [PATCH 25/88] KDE Frameworks 5.11.0 --- .gitignore | 1 + kf5-kdoctools.spec | 8 +++++--- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 14c1fce..2dfda4c 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /kdoctools-5.8.0.tar.xz /kdoctools-5.9.0.tar.xz /kdoctools-5.10.0.tar.xz +/kdoctools-5.11.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5eb49a3..5c035b9 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.10.0 -Release: 2%{?dist} +Version: 5.11.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -45,7 +45,6 @@ Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} Requires: qt5-qtbase-devel -Requires: kf5-karchive-devel Requires: perl-Any-URI-Escape %description devel @@ -90,6 +89,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 + * Fri May 29 2015 Rex Dieter 5.10.0-2 - drop -doc subpkg fold content into main diff --git a/sources b/sources index 0766243..946ac68 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2b1c8515da109dea0c5cf8894768f72b kdoctools-5.10.0.tar.xz +78e56f2cc33d4e8443339e87fec3571b kdoctools-5.11.0.tar.xz From deba3b7040bc75ca33eff9ab1cc711df18e921ed Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 13:13:07 +0000 Subject: [PATCH 26/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5c035b9..9040708 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -89,6 +89,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 529b049f83623be5dda6941251f5cce6b9390f83 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Jul 2015 07:23:27 -0500 Subject: [PATCH 27/88] 5.12.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2dfda4c..6d8b045 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /kdoctools-5.9.0.tar.xz /kdoctools-5.10.0.tar.xz /kdoctools-5.11.0.tar.xz +/kdoctools-5.12.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 9040708..136b242 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -89,6 +89,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 946ac68..c6f54ee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -78e56f2cc33d4e8443339e87fec3571b kdoctools-5.11.0.tar.xz +09617b8f4ce218626e8dc1a1bc0d43f5 kdoctools-5.12.0.tar.xz From 5527bc6c790e8b998fc56f61f64a29c673dd9616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 19 Aug 2015 16:49:42 +0200 Subject: [PATCH 28/88] KDE Frameworks 5.13.0 --- .gitignore | 1 + kf5-kdoctools.spec | 21 +++++++++++++++------ sources | 2 +- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 6d8b045..84bf96f 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /kdoctools-5.10.0.tar.xz /kdoctools-5.11.0.tar.xz /kdoctools-5.12.0.tar.xz +/kdoctools-5.13.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 136b242..177342d 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.12.0 +Version: 5.13.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -22,17 +22,17 @@ BuildRequires: libxml2-devel BuildRequires: docbook-dtds BuildRequires: docbook-style-xsl -BuildRequires: kf5-rpm-macros -BuildRequires: extra-cmake-modules +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: extra-cmake-modules >= %{version} BuildRequires: qt5-qtbase-devel -BuildRequires: kf5-ki18n-devel -BuildRequires: kf5-karchive-devel +BuildRequires: kf5-ki18n-devel >= %{version} +BuildRequires: kf5-karchive-devel >= %{version} BuildRequires: perl-Any-URI-Escape Requires: docbook-dtds Requires: docbook-style-xsl -Requires: kf5-filesystem +Requires: kf5-filesystem >= %{version} Obsoletes: kf5-kdoctools-doc < 5.3.0-2 Provides: kf5-kdoctools-doc = %{version}-%{release} @@ -89,6 +89,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 c6f54ee..2b37806 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -09617b8f4ce218626e8dc1a1bc0d43f5 kdoctools-5.12.0.tar.xz +1801a3e97110d734178814b5cd45059a kdoctools-5.13.0.tar.xz From 006c55fb4cc2ff464c759beb69c216885327c91c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 16 Sep 2015 13:46:56 +0200 Subject: [PATCH 29/88] KDE Frameworks 5.14.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 84bf96f..f535921 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /kdoctools-5.11.0.tar.xz /kdoctools-5.12.0.tar.xz /kdoctools-5.13.0.tar.xz +/kdoctools-5.14.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 177342d..551ae51 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.13.0 +Version: 5.14.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -89,6 +89,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 2b37806..31ae8ec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1801a3e97110d734178814b5cd45059a kdoctools-5.13.0.tar.xz +48a3a630dc242ba9de061a565b608ea9 kdoctools-5.14.0.tar.xz From 64bc47d3d298fc944b210fd4e26815ba51081732 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 21 Sep 2015 12:40:39 -0500 Subject: [PATCH 30/88] +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..7c39b6e --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +kdoctools From 93b8525ccf4089f9eaec249a0b59218baf7583ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Oct 2015 15:05:44 +0200 Subject: [PATCH 31/88] KDE Frameworks 5.15.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f535921..dea1c89 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /kdoctools-5.12.0.tar.xz /kdoctools-5.13.0.tar.xz /kdoctools-5.14.0.tar.xz +/kdoctools-5.15.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 551ae51..7e1dcb5 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.14.0 +Version: 5.15.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -89,6 +89,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 31ae8ec..b6cef3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -48a3a630dc242ba9de061a565b608ea9 kdoctools-5.14.0.tar.xz +57f930c04fc8befe6ce908b46abab05f kdoctools-5.15.0.tar.xz From b195e77aa9e41440ee6142f79fbba83f8f9dd559 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 32/88] KDE Frameworks 5.16 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index dea1c89..8c0f17c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /kdoctools-5.13.0.tar.xz /kdoctools-5.14.0.tar.xz /kdoctools-5.15.0.tar.xz +/kdoctools-5.16.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 7e1dcb5..8a8d300 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.15.0 +Version: 5.16.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -89,6 +89,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 b6cef3f..aaf1e31 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -57f930c04fc8befe6ce908b46abab05f kdoctools-5.15.0.tar.xz +0184c309cca6e2cf8912f7f034534579 kdoctools-5.16.0.tar.xz From 7273b57c0bd6fd6b98e92a8bd68bd6aa4fdb4104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 8 Dec 2015 23:34:20 +0100 Subject: [PATCH 33/88] KDE Frameworks 5.17.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8c0f17c..281e77e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /kdoctools-5.14.0.tar.xz /kdoctools-5.15.0.tar.xz /kdoctools-5.16.0.tar.xz +/kdoctools-5.17.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 8a8d300..5741ad1 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.16.0 +Version: 5.17.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -89,6 +89,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 aaf1e31..aa1f8a3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0184c309cca6e2cf8912f7f034534579 kdoctools-5.16.0.tar.xz +e238a08b2d496a855c726c5c186c97b9 kdoctools-5.17.0.tar.xz From 391c480f6d15106059e5b3f721aeb032d0410ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Sun, 3 Jan 2016 17:56:05 +0100 Subject: [PATCH 34/88] KDE Frameworks 5.18.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 281e77e..2db21d1 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /kdoctools-5.15.0.tar.xz /kdoctools-5.16.0.tar.xz /kdoctools-5.17.0.tar.xz +/kdoctools-5.18.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5741ad1..7f6c920 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.17.0 +Version: 5.18.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -89,6 +89,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 aa1f8a3..97f39b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e238a08b2d496a855c726c5c186c97b9 kdoctools-5.17.0.tar.xz +75f85023291440e81cf2fc70e412cd18 kdoctools-5.18.0.tar.xz From e4e314ff94cef65e995a05d32fa422befb2ad3d5 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 09:49:38 -0600 Subject: [PATCH 35/88] cosmetics, update URL, use %license --- kf5-kdoctools.spec | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 7f6c920..6ec9ddf 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT -URL: http://www.kde.org +URL: http://projects.kde.org/kdoctools %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -17,18 +17,16 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -BuildRequires: libxslt-devel -BuildRequires: libxml2-devel BuildRequires: docbook-dtds BuildRequires: docbook-style-xsl - -BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: qt5-qtbase-devel -BuildRequires: kf5-ki18n-devel >= %{version} BuildRequires: kf5-karchive-devel >= %{version} - +BuildRequires: kf5-ki18n-devel >= %{version} +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: libxml2-devel +BuildRequires: libxslt-devel BuildRequires: perl-Any-URI-Escape +BuildRequires: qt5-qtbase-devel Requires: docbook-dtds Requires: docbook-style-xsl @@ -46,7 +44,6 @@ Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} Requires: qt5-qtbase-devel Requires: perl-Any-URI-Escape - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -72,7 +69,8 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %files -f kdoctools5_qt.lang -%doc COPYING.LIB README.md +%doc README.md +%license COPYING.LIB %{_kf5_bindir}/checkXML5 %{_kf5_bindir}/meinproc5 %{_kf5_datadir}/man/man1/* @@ -89,6 +87,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %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 62e83ce12425e6e72b67192f1bea232ab48fc456 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 09:53:53 -0600 Subject: [PATCH 36/88] use %%_kf5_mandir macro --- kf5-kdoctools.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 6ec9ddf..b659f45 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -73,9 +73,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %license COPYING.LIB %{_kf5_bindir}/checkXML5 %{_kf5_bindir}/meinproc5 -%{_kf5_datadir}/man/man1/* -%{_kf5_datadir}/man/man7/* -%{_kf5_datadir}/man/man8/* +%{_kf5_mandir}/man1/*.1* +%{_kf5_mandir}/man7/*.7* +%{_kf5_mandir}/man8/*.8* %{_kf5_datadir}/kf5/kdoctools/ # FIXME/TODO: %%lang'ify these -- rex %{_kf5_docdir}/HTML/*/kdoctools5-common/ From df2878232a85fcc5a2141b588bd89965afe1ea1a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:01:40 +0000 Subject: [PATCH 37/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index b659f45..55f0000 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -87,6 +87,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 5414891927815976389262b5abe0e6efeaf9956b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 11 Feb 2016 15:17:32 +0100 Subject: [PATCH 38/88] KDE Frameworks 5.19.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2db21d1..913b024 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /kdoctools-5.16.0.tar.xz /kdoctools-5.17.0.tar.xz /kdoctools-5.18.0.tar.xz +/kdoctools-5.19.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 55f0000..3a6aedd 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -87,6 +87,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 97f39b1..d2e6bfe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -75f85023291440e81cf2fc70e412cd18 kdoctools-5.18.0.tar.xz +6c05f13822f918abf26b56510861d392 kdoctools-5.19.0.tar.xz From e7cce2af8b5cac4af2479dfbaa4a748838621619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 14 Mar 2016 11:41:39 +0100 Subject: [PATCH 39/88] KDE Frameworks 5.20.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 913b024..b95c54b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /kdoctools-5.17.0.tar.xz /kdoctools-5.18.0.tar.xz /kdoctools-5.19.0.tar.xz +/kdoctools-5.20.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 3a6aedd..6d62d6d 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.19.0 +Version: 5.20.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -87,6 +87,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 d2e6bfe..9f5e3e4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6c05f13822f918abf26b56510861d392 kdoctools-5.19.0.tar.xz +b4988310d6a97d052a6424ebcf50cfc0 kdoctools-5.20.0.tar.xz From 86a3ab949a4b9d405f878f3c226ae2b50b9b8d24 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Apr 2016 08:25:52 -0500 Subject: [PATCH 40/88] KDE Frameworks 5.21.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b95c54b..d5a51a5 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /kdoctools-5.18.0.tar.xz /kdoctools-5.19.0.tar.xz /kdoctools-5.20.0.tar.xz +/kdoctools-5.21.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 6d62d6d..db95d04 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.20.0 +Version: 5.21.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -87,6 +87,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 9f5e3e4..d36b74f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b4988310d6a97d052a6424ebcf50cfc0 kdoctools-5.20.0.tar.xz +74b3c7be0056416027b9fe7abd993bb5 kdoctools-5.21.0.tar.xz From 8cfc0403f5c35f3ca550b757d4e20c9c26aa08ac Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Apr 2016 16:52:57 -0500 Subject: [PATCH 41/88] update URL, tweak perl deps for fedora vs epel --- kf5-kdoctools.spec | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index db95d04..bceba67 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT -URL: http://projects.kde.org/kdoctools +URL: https://quickgit.kde.org/?p=%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -25,7 +25,12 @@ BuildRequires: kf5-ki18n-devel >= %{version} BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: libxml2-devel BuildRequires: libxslt-devel -BuildRequires: perl-Any-URI-Escape +%if 0%{?fedora} +BuildRequires: perl(Any::URI::Escape) +%endif +%if 0%{?rhel} +BuildRequires: perl(URI::Escape) +%endif BuildRequires: qt5-qtbase-devel Requires: docbook-dtds @@ -43,7 +48,12 @@ Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} Requires: qt5-qtbase-devel -Requires: perl-Any-URI-Escape +%if 0%{?fedora} +Requires: perl(Any::URI::Escape) +%endif +%if 0%{?rhel} +Requires: perl(URI::Escape) +%endif %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -87,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 05 2016 Rex Dieter - 5.21.0-2 +- update URL, tweak perl deps for fedora vs epel + * Mon Apr 04 2016 Rex Dieter - 5.21.0-1 - KDE Frameworks 5.21.0 From daad68f52d1ff8eaf3720ef4883c6cd74a8e5393 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 May 2016 09:55:06 -0500 Subject: [PATCH 42/88] KDE Frameworks 5.22.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d5a51a5..9f56c19 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /kdoctools-5.19.0.tar.xz /kdoctools-5.20.0.tar.xz /kdoctools-5.21.0.tar.xz +/kdoctools-5.22.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index bceba67..6f3f1f0 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -97,6 +97,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 + * Tue Apr 05 2016 Rex Dieter - 5.21.0-2 - update URL, tweak perl deps for fedora vs epel diff --git a/sources b/sources index d36b74f..8ae1ef1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -74b3c7be0056416027b9fe7abd993bb5 kdoctools-5.21.0.tar.xz +92ad15de045910ffee4dd29f91913caa kdoctools-5.22.0.tar.xz From f08cb00f3644e1dc457b442238bfcf7599c4450d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 10:32:10 -0500 Subject: [PATCH 43/88] KDE Frameworks 5.23.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9f56c19..ba14a25 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /kdoctools-5.20.0.tar.xz /kdoctools-5.21.0.tar.xz /kdoctools-5.22.0.tar.xz +/kdoctools-5.23.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 6f3f1f0..5d7a997 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.22.0 +Version: 5.23.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -97,6 +97,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 8ae1ef1..c491aeb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -92ad15de045910ffee4dd29f91913caa kdoctools-5.22.0.tar.xz +4db500f1850f6138172249ba4fabd926 kdoctools-5.23.0.tar.xz From 32401dbc25dac51271dfac5128215dc9cf641158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 24 Jun 2016 10:51:34 +0200 Subject: [PATCH 44/88] Mandatory Perl build-requires added --- kf5-kdoctools.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5d7a997..bb40b55 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -26,6 +26,7 @@ BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: libxml2-devel BuildRequires: libxslt-devel %if 0%{?fedora} +BuildRequires: perl-generators BuildRequires: perl(Any::URI::Escape) %endif %if 0%{?rhel} From fd2616140de312a8d7403f5f64f45db5ec37d60d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Wed, 6 Jul 2016 17:55:24 +0200 Subject: [PATCH 45/88] KDE Frameworks 5.24.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ba14a25..a1b1331 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /kdoctools-5.21.0.tar.xz /kdoctools-5.22.0.tar.xz /kdoctools-5.23.0.tar.xz +/kdoctools-5.24.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index bb40b55..9f0f0c6 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.23.0 +Version: 5.24.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 c491aeb..2a1f692 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4db500f1850f6138172249ba4fabd926 kdoctools-5.23.0.tar.xz +0826ac71e01ed1d343e6e1bb5e4fe438 kdoctools-5.24.0.tar.xz From 0badaad02149c961f8644c5a559c33e8b818ecfc 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 46/88] KDE Frameworks 5.25.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a1b1331..ebb30ed 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /kdoctools-5.22.0.tar.xz /kdoctools-5.23.0.tar.xz /kdoctools-5.24.0.tar.xz +/kdoctools-5.25.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 9f0f0c6..46289c4 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.24.0 +Version: 5.25.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 2a1f692..17a35d3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0826ac71e01ed1d343e6e1bb5e4fe438 kdoctools-5.24.0.tar.xz +9dc819d8f5402b252b71610102685939 kdoctools-5.25.0.tar.xz From 9bbe080b9bfe5926e2e781e04c83fe584b22fad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 8 Sep 2016 10:27:15 +0200 Subject: [PATCH 47/88] KDE Frameworks 5.26.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ebb30ed..1401c15 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /kdoctools-5.23.0.tar.xz /kdoctools-5.24.0.tar.xz /kdoctools-5.25.0.tar.xz +/kdoctools-5.26.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 46289c4..08fb873 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.25.0 +Version: 5.26.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 17a35d3..6ae26dc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9dc819d8f5402b252b71610102685939 kdoctools-5.25.0.tar.xz +861231008c9c8fc120ff1f87988e2a88 kdoctools-5.26.0.tar.xz From 9bbf810a1d41b187451b03fdfb639287f7d35839 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Oct 2016 21:28:20 -0500 Subject: [PATCH 48/88] 5.27.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1401c15..632ccf2 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /kdoctools-5.24.0.tar.xz /kdoctools-5.25.0.tar.xz /kdoctools-5.26.0.tar.xz +/kdoctools-5.27.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 08fb873..12beac3 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -98,6 +98,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 6ae26dc..7797b96 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -861231008c9c8fc120ff1f87988e2a88 kdoctools-5.26.0.tar.xz +c719c59151cc6bbb6fa660c0ce1e0b03 kdoctools-5.27.0.tar.xz From dabce160b3d3bdb72219a2de80a2b271cf124384 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 08:53:15 -0600 Subject: [PATCH 49/88] 5.29.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 632ccf2..4ab6577 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ /kdoctools-5.25.0.tar.xz /kdoctools-5.26.0.tar.xz /kdoctools-5.27.0.tar.xz +/kdoctools-5.29.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 12beac3..fa300a7 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.27.0 +Version: 5.29.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 7797b96..c882976 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c719c59151cc6bbb6fa660c0ce1e0b03 kdoctools-5.27.0.tar.xz +SHA512 (kdoctools-5.29.0.tar.xz) = 22dc99bc9f325b1b913c538cc470f289194c79c0c3924a926d9d7ce1fbac298e54df5b90bc2880cb0ef8801a2b8b05b94c376301fa3b3cf3a03106ee0262c808 From b3859d3c50c2d985fff6ccfe1a8b14efe46d02ab Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 6 Feb 2017 12:05:36 -0600 Subject: [PATCH 50/88] 5.31.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4ab6577..ee8c645 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ /kdoctools-5.26.0.tar.xz /kdoctools-5.27.0.tar.xz /kdoctools-5.29.0.tar.xz +/kdoctools-5.31.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index fa300a7..62fbea0 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.29.0 +Version: 5.31.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 c882976..854dba9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.29.0.tar.xz) = 22dc99bc9f325b1b913c538cc470f289194c79c0c3924a926d9d7ce1fbac298e54df5b90bc2880cb0ef8801a2b8b05b94c376301fa3b3cf3a03106ee0262c808 +SHA512 (kdoctools-5.31.0.tar.xz) = 1efd7a794972e99405cb79603a867afcf425d8af67a7ddd1c574636f527a696e1dce1e2da2172dc064d02f9725aaaddd796513d968673e7314dcbd47d548f4bb From 98fc37446abcbea3a0aba94bd8e7778aa3c430fc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 4 Mar 2017 14:26:18 -0600 Subject: [PATCH 51/88] 5.32.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ee8c645..76cc8de 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /kdoctools-5.27.0.tar.xz /kdoctools-5.29.0.tar.xz /kdoctools-5.31.0.tar.xz +/kdoctools-5.32.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 62fbea0..aeb6a19 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.31.0 +Version: 5.32.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -98,6 +98,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 854dba9..e744d9e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.31.0.tar.xz) = 1efd7a794972e99405cb79603a867afcf425d8af67a7ddd1c574636f527a696e1dce1e2da2172dc064d02f9725aaaddd796513d968673e7314dcbd47d548f4bb +SHA512 (kdoctools-5.32.0.tar.xz) = b782fbe2ef7e69b25df56286235d10d389144928d5d74e4c60e31259d9771ce2409200e42cc65dffea4a8be1534839cf58ce70ba2e98203604fd0eedb3d5579a From 96af383db8addc68e42f651c56bcc7a987fa8962 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 4 Mar 2017 17:00:17 -0600 Subject: [PATCH 52/88] update %files --- kf5-kdoctools.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index aeb6a19..0ae58ce 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -79,9 +79,14 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %find_lang kdoctools5_qt --with-qt --with-man --all-name +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + %files -f kdoctools5_qt.lang %doc README.md %license COPYING.LIB +%{_kf5_libdir}/libKF5DocTools.so.5* +## FIXME/TODO: which of these to move to -devel -- rex %{_kf5_bindir}/checkXML5 %{_kf5_bindir}/meinproc5 %{_kf5_mandir}/man1/*.1* @@ -92,11 +97,12 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_docdir}/HTML/*/kdoctools5-common/ %files devel -%{_kf5_includedir}/XsltKde/ -%{_kf5_libdir}/libKF5XsltKde.a +%{_kf5_includedir}/KDocTools/ +%{_kf5_libdir}/libKF5DocTools.so %{_kf5_libdir}/cmake/KF5DocTools/ + %changelog * Sat Mar 04 2017 Rex Dieter - 5.32.0-1 - 5.32.0 From b11e7dca3dbfc400a277dc698f735392b69ad1df Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Apr 2017 08:12:33 -0500 Subject: [PATCH 53/88] 5.33.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 76cc8de..ea7f782 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /kdoctools-5.29.0.tar.xz /kdoctools-5.31.0.tar.xz /kdoctools-5.32.0.tar.xz +/kdoctools-5.33.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 0ae58ce..a8911c4 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,12 +1,12 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.32.0 +Version: 5.33.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT -URL: https://quickgit.kde.org/?p=%{framework}.git +URL: https://cgit.kde.org/%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -104,6 +104,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Apr 03 2017 Rex Dieter - 5.33.0-1 +- 5.33.0 + * Sat Mar 04 2017 Rex Dieter - 5.32.0-1 - 5.32.0 diff --git a/sources b/sources index e744d9e..5e8d043 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.32.0.tar.xz) = b782fbe2ef7e69b25df56286235d10d389144928d5d74e4c60e31259d9771ce2409200e42cc65dffea4a8be1534839cf58ce70ba2e98203604fd0eedb3d5579a +SHA512 (kdoctools-5.33.0.tar.xz) = f62db583d1aacf3fbf1f6de62320dcc0c424d71ad477abfdfeb6aa67f0ff7c3ef6745537366559bea4befc510a9a07aa2c95abb92f455ec19287af70aa8be0a2 From 972cbd8fdeaa8c54bd55d8036e9a47aec955580a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 11:07:08 -0500 Subject: [PATCH 54/88] 5.34.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ea7f782..839e219 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ /kdoctools-5.31.0.tar.xz /kdoctools-5.32.0.tar.xz /kdoctools-5.33.0.tar.xz +/kdoctools-5.34.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index a8911c4..642d260 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.33.0 +Version: 5.34.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -104,6 +104,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 5e8d043..05673d4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.33.0.tar.xz) = f62db583d1aacf3fbf1f6de62320dcc0c424d71ad477abfdfeb6aa67f0ff7c3ef6745537366559bea4befc510a9a07aa2c95abb92f455ec19287af70aa8be0a2 +SHA512 (kdoctools-5.34.0.tar.xz) = b5574400b870e05e559b90ce9c9a82cdc15d14299429f49fc65ace9be8625f0a687da0b0ad8e1be8d4248afb0e1842bdbb23d1eef225b8e778c74a8edbcccae4 From e4ace3aa92c06d454811c00ffeec1bd3711909f8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Jun 2017 07:18:17 -0500 Subject: [PATCH 55/88] 5.35.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 839e219..b68e85b 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ /kdoctools-5.32.0.tar.xz /kdoctools-5.33.0.tar.xz /kdoctools-5.34.0.tar.xz +/kdoctools-5.35.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 642d260..ad891ea 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.34.0 +Version: 5.35.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -104,6 +104,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 05673d4..f46bd09 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.34.0.tar.xz) = b5574400b870e05e559b90ce9c9a82cdc15d14299429f49fc65ace9be8625f0a687da0b0ad8e1be8d4248afb0e1842bdbb23d1eef225b8e778c74a8edbcccae4 +SHA512 (kdoctools-5.35.0.tar.xz) = d1c0821d213fd9332a4422c140797b08acc4bb7e3292475f238aaa1387e07fb3d88ed9f0be595699b5d8a55ce1d163bdae6a9ce6cbe0ee251e374d1bb711f857 From 5a426e44696db8ae647e2d56ae0fe21acc710120 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Jul 2017 12:08:26 -0500 Subject: [PATCH 56/88] 5.36.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b68e85b..499eb25 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ /kdoctools-5.33.0.tar.xz /kdoctools-5.34.0.tar.xz /kdoctools-5.35.0.tar.xz +/kdoctools-5.36.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index ad891ea..e555dc6 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.35.0 +Version: 5.36.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -104,6 +104,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 f46bd09..36807c0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.35.0.tar.xz) = d1c0821d213fd9332a4422c140797b08acc4bb7e3292475f238aaa1387e07fb3d88ed9f0be595699b5d8a55ce1d163bdae6a9ce6cbe0ee251e374d1bb711f857 +SHA512 (kdoctools-5.36.0.tar.xz) = 269c05a07b173ee713c958bf663ef0ab3abadf9919e988bfcb12cfba99fd7535880d069045204b6d33750f8389a54df57f5b5cc237132c6dca66acc779e36082 From 18d947a530b3286966e6c635dadd2b6388bd3f85 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 15:16:12 +0000 Subject: [PATCH 57/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index e555dc6..c76119c 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -104,6 +104,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 6e4eac898ccbe6b6d160e1c5d005e3ac9388b747 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 00:25:48 +0000 Subject: [PATCH 58/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index c76119c..3b8a644 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -104,6 +104,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 1d3107be7674c12224bff06a6780208c6fe4d2e4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 25 Aug 2017 09:29:18 -0500 Subject: [PATCH 59/88] 5.37.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 499eb25..99b29bf 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ /kdoctools-5.34.0.tar.xz /kdoctools-5.35.0.tar.xz /kdoctools-5.36.0.tar.xz +/kdoctools-5.37.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 3b8a644..963220f 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -104,6 +104,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 36807c0..92b07bb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.36.0.tar.xz) = 269c05a07b173ee713c958bf663ef0ab3abadf9919e988bfcb12cfba99fd7535880d069045204b6d33750f8389a54df57f5b5cc237132c6dca66acc779e36082 +SHA512 (kdoctools-5.37.0.tar.xz) = 2f3deb54e186eb1efe94b89886d9bd48b035a41754625309ba886b41c467ece6fdf5f3aaf7549df3bc36dae3f3aa1e1982c69342c019410ffa8a5aead0b277a0 From e55b6663bcc4ca5c1a9bd757bc8f294f47161944 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 25 Aug 2017 10:56:27 -0500 Subject: [PATCH 60/88] fix build, cosmetics --- kf5-kdoctools.spec | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 963220f..7d0e9c3 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,28 +1,30 @@ %global framework kdoctools -Name: kf5-%{framework} +Name: kf5-%{framework} Version: 5.37.0 Release: 1%{?dist} -Summary: KDE Frameworks 5 Tier 2 addon for generating documentation +Summary: KDE Frameworks 5 Tier 2 addon for generating documentation -License: GPLv2+ and MIT -URL: https://cgit.kde.org/%{framework}.git +License: GPLv2+ and MIT +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: docbook-dtds BuildRequires: docbook-style-xsl -BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: kf5-karchive-devel >= %{version} -BuildRequires: kf5-ki18n-devel >= %{version} -BuildRequires: kf5-rpm-macros >= %{version} + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules >= %{majmin} +BuildRequires: kf5-karchive-devel >= %{majmin} +BuildRequires: kf5-ki18n-devel >= %{majmin} + BuildRequires: libxml2-devel BuildRequires: libxslt-devel %if 0%{?fedora} @@ -36,7 +38,6 @@ BuildRequires: qt5-qtbase-devel Requires: docbook-dtds Requires: docbook-style-xsl -Requires: kf5-filesystem >= %{version} Obsoletes: kf5-kdoctools-doc < 5.3.0-2 Provides: kf5-kdoctools-doc = %{version}-%{release} @@ -61,7 +62,7 @@ developing applications that use %{name}. %prep -%setup -q -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} -p1 %build @@ -76,13 +77,13 @@ make %{?_smp_mflags} -C %{_target_platform} %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang kdoctools5_qt --with-qt --with-man --all-name +%find_lang %{name} --all-name --with-html --with-man --with-qt %post -p /sbin/ldconfig %postun -p /sbin/ldconfig -%files -f kdoctools5_qt.lang +%files -f %{name}.lang %doc README.md %license COPYING.LIB %{_kf5_libdir}/libKF5DocTools.so.5* @@ -91,10 +92,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_bindir}/meinproc5 %{_kf5_mandir}/man1/*.1* %{_kf5_mandir}/man7/*.7* -%{_kf5_mandir}/man8/*.8* %{_kf5_datadir}/kf5/kdoctools/ -# FIXME/TODO: %%lang'ify these -- rex -%{_kf5_docdir}/HTML/*/kdoctools5-common/ %files devel %{_kf5_includedir}/KDocTools/ @@ -102,7 +100,6 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_libdir}/cmake/KF5DocTools/ - %changelog * Fri Aug 25 2017 Rex Dieter - 5.37.0-1 - 5.37.0 From 6bdb2c10d133e3de7d7ac88daa513d5620759f66 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 11 Sep 2017 14:56:16 -0500 Subject: [PATCH 61/88] 5.38.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 99b29bf..eefe93d 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /kdoctools-5.35.0.tar.xz /kdoctools-5.36.0.tar.xz /kdoctools-5.37.0.tar.xz +/kdoctools-5.38.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 7d0e9c3..00229c6 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.37.0 +Version: 5.38.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -101,6 +101,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 92b07bb..c32e0b4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.37.0.tar.xz) = 2f3deb54e186eb1efe94b89886d9bd48b035a41754625309ba886b41c467ece6fdf5f3aaf7549df3bc36dae3f3aa1e1982c69342c019410ffa8a5aead0b277a0 +SHA512 (kdoctools-5.38.0.tar.xz) = 5627b489e94321cdcc3633a8ba4fca4fa5d02812f68a1506e866f9d9b9d7614478555ac10f151f9c387dde1ad39bf4c66d104025576071c8aa50a312b91ebde1 From 9cf07e52cc16db93c76915ba8b26e354304c34cc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Oct 2017 10:00:23 -0500 Subject: [PATCH 62/88] 5.39.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index eefe93d..037cec1 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ /kdoctools-5.36.0.tar.xz /kdoctools-5.37.0.tar.xz /kdoctools-5.38.0.tar.xz +/kdoctools-5.39.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 00229c6..b7b2c8b 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.38.0 +Version: 5.39.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -101,6 +101,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 c32e0b4..ddb2123 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.38.0.tar.xz) = 5627b489e94321cdcc3633a8ba4fca4fa5d02812f68a1506e866f9d9b9d7614478555ac10f151f9c387dde1ad39bf4c66d104025576071c8aa50a312b91ebde1 +SHA512 (kdoctools-5.39.0.tar.xz) = a9ef804175ed465753bcac7bee2d92a7a17f24b0c778d86c9a05aa09e643f949ee388e5133249bc27e13fbea7944fa10906a75e894806094700eb25b6971b95c From 96482043ea47a598698634d007b869b61aa78fdd Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Thu, 9 Nov 2017 08:34:58 -0800 Subject: [PATCH 63/88] Cleanup conditionals --- kf5-kdoctools.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index b7b2c8b..446cd20 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.39.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -27,11 +27,10 @@ BuildRequires: kf5-ki18n-devel >= %{majmin} BuildRequires: libxml2-devel BuildRequires: libxslt-devel -%if 0%{?fedora} +%if 0%{?fedora} || 0%{?rhel} > 7 BuildRequires: perl-generators BuildRequires: perl(Any::URI::Escape) -%endif -%if 0%{?rhel} +%else BuildRequires: perl(URI::Escape) %endif BuildRequires: qt5-qtbase-devel @@ -50,10 +49,9 @@ Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Provides: kf5-kdoctools-static = %{version}-%{release} Requires: qt5-qtbase-devel -%if 0%{?fedora} +%if 0%{?fedora} || 0%{?rhel} > 7 Requires: perl(Any::URI::Escape) -%endif -%if 0%{?rhel} +%else Requires: perl(URI::Escape) %endif %description devel @@ -101,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Nov 09 2017 Troy Dawson - 5.39.0-2 +- Cleanup conditionals + * Sun Oct 08 2017 Rex Dieter - 5.39.0-1 - 5.39.0 From f211d5611832c378414d66f32e207bf0ac23a10d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Nov 2017 09:36:52 -0600 Subject: [PATCH 64/88] 5.40.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 037cec1..685d419 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ /kdoctools-5.37.0.tar.xz /kdoctools-5.38.0.tar.xz /kdoctools-5.39.0.tar.xz +/kdoctools-5.40.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 446cd20..f2fc619 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.39.0 -Release: 2%{?dist} +Version: 5.40.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation License: GPLv2+ and MIT @@ -99,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 10 2017 Rex Dieter - 5.40.0-1 +- 5.40.0 + * Thu Nov 09 2017 Troy Dawson - 5.39.0-2 - Cleanup conditionals diff --git a/sources b/sources index ddb2123..360a886 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.39.0.tar.xz) = a9ef804175ed465753bcac7bee2d92a7a17f24b0c778d86c9a05aa09e643f949ee388e5133249bc27e13fbea7944fa10906a75e894806094700eb25b6971b95c +SHA512 (kdoctools-5.40.0.tar.xz) = 7279a2bbb01c9b6e31e4c7c1b9b5b1a14d9ba8ec78e63d4bf635838fbf01bc90e88ea9eb0788886548cd6c031b6c7d270c667c13f2c14d4fda6a786bc94d641b From 3b5ec278bf746b408df49fd1100616821607d098 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Dec 2017 10:38:30 -0600 Subject: [PATCH 65/88] 5.41.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 685d419..6b8a536 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ /kdoctools-5.38.0.tar.xz /kdoctools-5.39.0.tar.xz /kdoctools-5.40.0.tar.xz +/kdoctools-5.41.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index f2fc619..a4d2078 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.40.0 +Version: 5.41.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 360a886..e0b2f21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.40.0.tar.xz) = 7279a2bbb01c9b6e31e4c7c1b9b5b1a14d9ba8ec78e63d4bf635838fbf01bc90e88ea9eb0788886548cd6c031b6c7d270c667c13f2c14d4fda6a786bc94d641b +SHA512 (kdoctools-5.41.0.tar.xz) = 8e5519bc6872d2c6da226d95c9d69e17a19b587e48cfb2de881e1bd735a869b2055b25c5121ce024f65237b1c1f886e93da6992e2213b163aa2940ee04eb6866 From ce07adea4185fca0a7f5f268d35c85e24406cfe7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 8 Jan 2018 08:58:21 -0600 Subject: [PATCH 66/88] 5.42.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6b8a536..c8ee4d1 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ /kdoctools-5.39.0.tar.xz /kdoctools-5.40.0.tar.xz /kdoctools-5.41.0.tar.xz +/kdoctools-5.42.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index a4d2078..5236bcf 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.41.0 +Version: 5.42.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 e0b2f21..53c66f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.41.0.tar.xz) = 8e5519bc6872d2c6da226d95c9d69e17a19b587e48cfb2de881e1bd735a869b2055b25c5121ce024f65237b1c1f886e93da6992e2213b163aa2940ee04eb6866 +SHA512 (kdoctools-5.42.0.tar.xz) = 347fb09e2e13bdffb1d1daff145eb1f19f563efd121dcb946576bbcb27a761b4ae8575a12e1a378a1fc0151e02b825dac144a2e19c6214ede6954a8c8ef7850e From 94afd4b245106af51b07b0754d7ebbba691b3918 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Feb 2018 09:55:01 -0600 Subject: [PATCH 67/88] 5.43.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c8ee4d1..0d9177a 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ /kdoctools-5.40.0.tar.xz /kdoctools-5.41.0.tar.xz /kdoctools-5.42.0.tar.xz +/kdoctools-5.43.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 5236bcf..6fb16f1 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.42.0 +Version: 5.43.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 53c66f0..138f0a6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.42.0.tar.xz) = 347fb09e2e13bdffb1d1daff145eb1f19f563efd121dcb946576bbcb27a761b4ae8575a12e1a378a1fc0151e02b825dac144a2e19c6214ede6954a8c8ef7850e +SHA512 (kdoctools-5.43.0.tar.xz) = af93b4ab7966246b38933eccd02ce2dd02c288e3f582c9b3e14e05aa03293c32ae78c0b3cda6710012faf368de4efab5d06ad3df8e279d1dda967d2860d5e62c From ae0103a4877ea025fdaa8c4492714f91fb978bb9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 3 Mar 2018 08:02:44 -0600 Subject: [PATCH 68/88] 5.44.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0d9177a..906546a 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ /kdoctools-5.41.0.tar.xz /kdoctools-5.42.0.tar.xz /kdoctools-5.43.0.tar.xz +/kdoctools-5.44.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 6fb16f1..3f31a3f 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.43.0 +Version: 5.44.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 138f0a6..9831545 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.43.0.tar.xz) = af93b4ab7966246b38933eccd02ce2dd02c288e3f582c9b3e14e05aa03293c32ae78c0b3cda6710012faf368de4efab5d06ad3df8e279d1dda967d2860d5e62c +SHA512 (kdoctools-5.44.0.tar.xz) = 512f381fc8bc3b6785162396eb8887947c88c1ea8d51cf74581022fe5c777bdc1b26340c7546c7b9507ebf8410d371a5516b6628aba8a6db8fc4beb405afd105 From de41c2c379a136740e2b704d183a804987167a59 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Apr 2018 07:36:44 -0500 Subject: [PATCH 69/88] 5.45.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 906546a..a472236 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ /kdoctools-5.42.0.tar.xz /kdoctools-5.43.0.tar.xz /kdoctools-5.44.0.tar.xz +/kdoctools-5.45.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 3f31a3f..4e5b436 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.44.0 +Version: 5.45.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 9831545..b546814 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.44.0.tar.xz) = 512f381fc8bc3b6785162396eb8887947c88c1ea8d51cf74581022fe5c777bdc1b26340c7546c7b9507ebf8410d371a5516b6628aba8a6db8fc4beb405afd105 +SHA512 (kdoctools-5.45.0.tar.xz) = b923003e130c6bb0b0590e38bdca73a87fec1555c813f87f716071836daade383670572f7ab98675ddad88cec87d14d0c842a29e477b8f22bc52e5ee41a19803 From 8952a26ad91f99547935087e460d6a782e2957e4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 5 May 2018 16:29:54 -0500 Subject: [PATCH 70/88] 5.46.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a472236..e202eb3 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ /kdoctools-5.43.0.tar.xz /kdoctools-5.44.0.tar.xz /kdoctools-5.45.0.tar.xz +/kdoctools-5.46.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 4e5b436..94799cb 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.45.0 +Version: 5.46.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 b546814..fa6e758 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.45.0.tar.xz) = b923003e130c6bb0b0590e38bdca73a87fec1555c813f87f716071836daade383670572f7ab98675ddad88cec87d14d0c842a29e477b8f22bc52e5ee41a19803 +SHA512 (kdoctools-5.46.0.tar.xz) = bbba5359bf2ad3c8e321c8142608dec57c577ee7f7418a600f7e15cac853f50b857a846dd1676a349d9b544ff60ab6162bd21819b4be34468a8e3d119a7c32d8 From adf4fd8bc05d19ab640633dd58b919423029d7da Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 2 Jun 2018 15:57:13 -0500 Subject: [PATCH 71/88] 5.47.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e202eb3..7f3db9b 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ /kdoctools-5.44.0.tar.xz /kdoctools-5.45.0.tar.xz /kdoctools-5.46.0.tar.xz +/kdoctools-5.47.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 94799cb..dcc85fc 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.46.0 +Version: 5.47.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 fa6e758..9535d90 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.46.0.tar.xz) = bbba5359bf2ad3c8e321c8142608dec57c577ee7f7418a600f7e15cac853f50b857a846dd1676a349d9b544ff60ab6162bd21819b4be34468a8e3d119a7c32d8 +SHA512 (kdoctools-5.47.0.tar.xz) = dd37ad49af0c0159692d2d24e0c206d757995b13afe5bb44a11295f6f397114b4dcbc75a0369b40cb9747e43c46f64fa77ac10cf13e4a54f52f07342703944c1 From 168880a34675735835144e5fede8ff86ede415d8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 7 Jun 2018 14:02:59 -0500 Subject: [PATCH 72/88] cleanup, drop old Obsoletes, use %make_build %ldconfig_scriptlets --- .gitignore | 46 ---------------------------------------------- kf5-kdoctools.spec | 15 +++++++-------- 2 files changed, 7 insertions(+), 54 deletions(-) diff --git a/.gitignore b/.gitignore index 7f3db9b..338eca9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1 @@ -/kdoctools-4.100.0.tar.xz -/kdoctools-5.0.0.tar.xz -/kdoctools-5.1.0.tar.xz -/kdoctools-5.2.0.tar.xz -/kdoctools-5.3.0.tar.xz -/kdoctools-5.4.0.tar.xz -/kdoctools-5.5.0.tar.xz -/kdoctools-5.6.0.tar.xz -/kdoctools-5.7.0.tar.xz -/kdoctools-5.8.0.tar.xz -/kdoctools-5.9.0.tar.xz -/kdoctools-5.10.0.tar.xz -/kdoctools-5.11.0.tar.xz -/kdoctools-5.12.0.tar.xz -/kdoctools-5.13.0.tar.xz -/kdoctools-5.14.0.tar.xz -/kdoctools-5.15.0.tar.xz -/kdoctools-5.16.0.tar.xz -/kdoctools-5.17.0.tar.xz -/kdoctools-5.18.0.tar.xz -/kdoctools-5.19.0.tar.xz -/kdoctools-5.20.0.tar.xz -/kdoctools-5.21.0.tar.xz -/kdoctools-5.22.0.tar.xz -/kdoctools-5.23.0.tar.xz -/kdoctools-5.24.0.tar.xz -/kdoctools-5.25.0.tar.xz -/kdoctools-5.26.0.tar.xz -/kdoctools-5.27.0.tar.xz -/kdoctools-5.29.0.tar.xz -/kdoctools-5.31.0.tar.xz -/kdoctools-5.32.0.tar.xz -/kdoctools-5.33.0.tar.xz -/kdoctools-5.34.0.tar.xz -/kdoctools-5.35.0.tar.xz -/kdoctools-5.36.0.tar.xz -/kdoctools-5.37.0.tar.xz -/kdoctools-5.38.0.tar.xz -/kdoctools-5.39.0.tar.xz -/kdoctools-5.40.0.tar.xz -/kdoctools-5.41.0.tar.xz -/kdoctools-5.42.0.tar.xz -/kdoctools-5.43.0.tar.xz -/kdoctools-5.44.0.tar.xz -/kdoctools-5.45.0.tar.xz -/kdoctools-5.46.0.tar.xz /kdoctools-5.47.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index dcc85fc..08c33a0 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -38,9 +38,6 @@ BuildRequires: qt5-qtbase-devel Requires: docbook-dtds Requires: docbook-style-xsl -Obsoletes: kf5-kdoctools-doc < 5.3.0-2 -Provides: kf5-kdoctools-doc = %{version}-%{release} - %description Provides tools to generate documentation in various format from DocBook files. @@ -69,17 +66,16 @@ pushd %{_target_platform} %{cmake_kf5} .. popd -make %{?_smp_mflags} -C %{_target_platform} +%make_build -C %{_target_platform} %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang %{name} --all-name --with-html --with-man --with-qt +%find_lang %{name} --all-name --with-html --with-man -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files -f %{name}.lang %doc README.md @@ -99,6 +95,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 07 2018 Rex Dieter - 5.47.0-2 +- cleanup, drop old Obsoletes, use %%make_build %%ldconfig_scriptlets + * Sat Jun 02 2018 Rex Dieter - 5.47.0-1 - 5.47.0 From 98ecd67e75fe74b3fbd23e844ddfb5ed858534d4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Jun 2018 15:16:15 -0500 Subject: [PATCH 73/88] drop --with-html --- kf5-kdoctools.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 08c33a0..4909c14 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -72,7 +72,7 @@ popd %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang %{name} --all-name --with-html --with-man +%find_lang %{name} --all-name --with-man %ldconfig_scriptlets From 3540e9972f40175a411e04b926c76b4d4c572987 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Jun 2018 15:46:02 -0500 Subject: [PATCH 74/88] hack html-docs for rhel7 --- kf5-kdoctools.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 4909c14..a8c58f3 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -28,6 +28,7 @@ BuildRequires: kf5-ki18n-devel >= %{majmin} BuildRequires: libxml2-devel BuildRequires: libxslt-devel %if 0%{?fedora} || 0%{?rhel} > 7 +%global _with_html --with-html BuildRequires: perl-generators BuildRequires: perl(Any::URI::Escape) %else @@ -72,7 +73,7 @@ popd %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang %{name} --all-name --with-man +%find_lang %{name} --all-name --with-man %{?_with_html} %ldconfig_scriptlets @@ -87,6 +88,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_mandir}/man1/*.1* %{_kf5_mandir}/man7/*.7* %{_kf5_datadir}/kf5/kdoctools/ +%if !0%{?_with_html:1} +%{_kf5_docdir}/HTML/*/kdoctools5-common/ +%endif %files devel %{_kf5_includedir}/KDocTools/ From 84ed1b21652068d0e218d1d786553d8eed1fd500 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Jul 2018 20:00:40 -0500 Subject: [PATCH 75/88] 5.48.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 338eca9..29d4cd0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /kdoctools-5.47.0.tar.xz +/kdoctools-5.48.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index a8c58f3..591d8ea 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -99,6 +99,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, drop old Obsoletes, use %%make_build %%ldconfig_scriptlets diff --git a/sources b/sources index 9535d90..9bfe64c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.47.0.tar.xz) = dd37ad49af0c0159692d2d24e0c206d757995b13afe5bb44a11295f6f397114b4dcbc75a0369b40cb9747e43c46f64fa77ac10cf13e4a54f52f07342703944c1 +SHA512 (kdoctools-5.48.0.tar.xz) = 40b50dfbd2f1590bdfa75dd276e9060d84988608398d0567dad3f798fcaa8782c23974256cf0ef7cb529c5b93bc54107d6219551458b608b576c922e83529729 From 5e60b559644df1b99ad7d5cfa223053f1d81e1f4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:05:15 +0000 Subject: [PATCH 76/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 591d8ea..2a1d6c1 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -99,6 +99,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 e3a2f08dd9a84a3add98b650bb2e23a049ef92c3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Aug 2018 10:19:42 -0500 Subject: [PATCH 77/88] 5.49.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 29d4cd0..fc8d2b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /kdoctools-5.47.0.tar.xz /kdoctools-5.48.0.tar.xz +/kdoctools-5.49.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 2a1d6c1..aea667f 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -99,6 +99,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 9bfe64c..3ce89c6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.48.0.tar.xz) = 40b50dfbd2f1590bdfa75dd276e9060d84988608398d0567dad3f798fcaa8782c23974256cf0ef7cb529c5b93bc54107d6219551458b608b576c922e83529729 +SHA512 (kdoctools-5.49.0.tar.xz) = bb1571583877ac09cc842c90525023628aa9cf319233831d6552226f52d82e76260e8d3d8b1c337031ef55c21e95de25cc2f21ac05e5d9198fa5d033456ee5fe From 3392bd00b51bea0e1b4570388d45b87947808531 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Sep 2018 15:01:40 -0500 Subject: [PATCH 78/88] 5.50.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fc8d2b8..0f06c78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /kdoctools-5.47.0.tar.xz /kdoctools-5.48.0.tar.xz /kdoctools-5.49.0.tar.xz +/kdoctools-5.50.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index aea667f..e896f7f 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.49.0 +Version: 5.50.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 3ce89c6..7e95196 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.49.0.tar.xz) = bb1571583877ac09cc842c90525023628aa9cf319233831d6552226f52d82e76260e8d3d8b1c337031ef55c21e95de25cc2f21ac05e5d9198fa5d033456ee5fe +SHA512 (kdoctools-5.50.0.tar.xz) = cb09a6c0a990b074e66161171e947f18b0036621da075a4f66452fb2a8f5985bee45b371e1e3303cc4afa73d376b89a839ac42e8b479c71911f7f89845422e86 From dee9133c1acc390e622bef7b39d973e324808000 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 15:42:09 -0500 Subject: [PATCH 79/88] 5.51.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0f06c78..ad40c3f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /kdoctools-5.48.0.tar.xz /kdoctools-5.49.0.tar.xz /kdoctools-5.50.0.tar.xz +/kdoctools-5.51.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index e896f7f..efeec36 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.50.0 +Version: 5.51.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 7e95196..9ee196b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.50.0.tar.xz) = cb09a6c0a990b074e66161171e947f18b0036621da075a4f66452fb2a8f5985bee45b371e1e3303cc4afa73d376b89a839ac42e8b479c71911f7f89845422e86 +SHA512 (kdoctools-5.51.0.tar.xz) = 732e7291a0620d3132145f4689449d8932c58e32814cbf7a96bb45e9a3139bf6ae494b0347205193239c6e551d153662562cf40c2bd69b06e750d8ede8d1f6ec From bc1640c0e1181c604873f2f7d7ced599195c12d7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Nov 2018 12:38:23 -0600 Subject: [PATCH 80/88] 5.52.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ad40c3f..c88633c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /kdoctools-5.49.0.tar.xz /kdoctools-5.50.0.tar.xz /kdoctools-5.51.0.tar.xz +/kdoctools-5.52.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index efeec36..de962b9 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.51.0 +Version: 5.52.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sun Nov 04 2018 Rex Dieter - 5.52.0-1 +- 5.52.0 + * Wed Oct 10 2018 Rex Dieter - 5.51.0-1 - 5.51.0 diff --git a/sources b/sources index 9ee196b..aca1631 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.51.0.tar.xz) = 732e7291a0620d3132145f4689449d8932c58e32814cbf7a96bb45e9a3139bf6ae494b0347205193239c6e551d153662562cf40c2bd69b06e750d8ede8d1f6ec +SHA512 (kdoctools-5.52.0.tar.xz) = 62be111cf594f8e4c3c1591329e26ebb557d8d65fcdcaba679ee8089e4b473a89921f8f640ff6354b6ba99ba731f2b18dec3054576f0d248d6b4fd75e65172b9 From 7f488943ef2f0c17f97ea4c627acbe7b7f9373e2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 9 Dec 2018 08:27:30 -0600 Subject: [PATCH 81/88] 5.53.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c88633c..ce04f28 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /kdoctools-5.50.0.tar.xz /kdoctools-5.51.0.tar.xz /kdoctools-5.52.0.tar.xz +/kdoctools-5.53.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index de962b9..8608542 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.52.0 +Version: 5.53.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 aca1631..bfb1c8d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.52.0.tar.xz) = 62be111cf594f8e4c3c1591329e26ebb557d8d65fcdcaba679ee8089e4b473a89921f8f640ff6354b6ba99ba731f2b18dec3054576f0d248d6b4fd75e65172b9 +SHA512 (kdoctools-5.53.0.tar.xz) = a7d096fb9f63639924441eac022af925611c3ede42edab39b06f484ae8b90eccab0f420340842f6688dc1c4bfb707b2e97a1b4273d883df9f82a087ed453a4b8 From 86f5b9e2f9a7032be628ea24cc82e590121329a6 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jan 2019 17:03:06 -0600 Subject: [PATCH 82/88] 5.54.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ce04f28..193c084 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /kdoctools-5.51.0.tar.xz /kdoctools-5.52.0.tar.xz /kdoctools-5.53.0.tar.xz +/kdoctools-5.54.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 8608542..154da9e 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.53.0 +Version: 5.54.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 bfb1c8d..99295b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.53.0.tar.xz) = a7d096fb9f63639924441eac022af925611c3ede42edab39b06f484ae8b90eccab0f420340842f6688dc1c4bfb707b2e97a1b4273d883df9f82a087ed453a4b8 +SHA512 (kdoctools-5.54.0.tar.xz) = b389fd1a7b2ea32d13ddca128ed2cb6375856f1c40f83c29a46e9ed1713de6e28e4415743403de37cf1f8a4ddcba4d7cc1e295e5c50443c4faf02939854f72cb From 07f9f29120bdfef0b07313adc70e566b93468006 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 05:29:19 +0000 Subject: [PATCH 83/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-kdoctools.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 154da9e..2423a7b 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.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 generating documentation License: GPLv2+ and MIT @@ -99,6 +99,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 d08afae0768e434004efa849853be6e6925bf9dd Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Feb 2019 11:06:42 -0600 Subject: [PATCH 84/88] 5.55.0 --- .gitignore | 1 + kf5-kdoctools.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 193c084..120f676 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /kdoctools-5.52.0.tar.xz /kdoctools-5.53.0.tar.xz /kdoctools-5.54.0.tar.xz +/kdoctools-5.55.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 2423a7b..50c8edc 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,8 +1,8 @@ %global framework kdoctools 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 generating documentation License: GPLv2+ and MIT @@ -99,6 +99,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 99295b0..e117154 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.54.0.tar.xz) = b389fd1a7b2ea32d13ddca128ed2cb6375856f1c40f83c29a46e9ed1713de6e28e4415743403de37cf1f8a4ddcba4d7cc1e295e5c50443c4faf02939854f72cb +SHA512 (kdoctools-5.55.0.tar.xz) = 157f7b98b16b8724c66885a2512952230ca8492b2f495d3738f1f4793c24c94b05751c88d4c4c79b3bd942b70e33e5fecb56f855383d883ef1b2f0c1ea8007d1 From a2a829270c94f22b60f998c030c2021369cf01f3 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Mar 2019 08:59:35 -0600 Subject: [PATCH 85/88] 5.56.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 120f676..3c3607d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /kdoctools-5.53.0.tar.xz /kdoctools-5.54.0.tar.xz /kdoctools-5.55.0.tar.xz +/kdoctools-5.56.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 50c8edc..615cea7 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.55.0 +Version: 5.56.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 e117154..e5d9424 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.55.0.tar.xz) = 157f7b98b16b8724c66885a2512952230ca8492b2f495d3738f1f4793c24c94b05751c88d4c4c79b3bd942b70e33e5fecb56f855383d883ef1b2f0c1ea8007d1 +SHA512 (kdoctools-5.56.0.tar.xz) = ec96d4112c9b88a002798006dd014ae26aaea8a95966368ea865070e58b94435e33ec7ab513a88b89ca389c6d49e9b91912ba8468fcb9516a4e3780c836929a5 From f16eda41520c8085333f49c2cfee32281775f231 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Apr 2019 10:07:20 -0500 Subject: [PATCH 86/88] 5.57.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3c3607d..23d6841 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /kdoctools-5.54.0.tar.xz /kdoctools-5.55.0.tar.xz /kdoctools-5.56.0.tar.xz +/kdoctools-5.57.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 615cea7..280be0d 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.56.0 +Version: 5.57.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 e5d9424..6a131e0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.56.0.tar.xz) = ec96d4112c9b88a002798006dd014ae26aaea8a95966368ea865070e58b94435e33ec7ab513a88b89ca389c6d49e9b91912ba8468fcb9516a4e3780c836929a5 +SHA512 (kdoctools-5.57.0.tar.xz) = b4428e106414768d11cfa8cd285fca17b7ee088b89138f394a62ad5209ab89e9364d623180ccf73faad8e2ed902ec38dc4548259355ab1cebce75148de71a722 From a00b64aa9cd744675a3da8cbaf20ea7aaee68039 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 May 2019 13:53:40 -0500 Subject: [PATCH 87/88] 5.58.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 23d6841..debd233 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /kdoctools-5.55.0.tar.xz /kdoctools-5.56.0.tar.xz /kdoctools-5.57.0.tar.xz +/kdoctools-5.58.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 280be0d..38ba253 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.57.0 +Version: 5.58.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 6a131e0..7c023bd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.57.0.tar.xz) = b4428e106414768d11cfa8cd285fca17b7ee088b89138f394a62ad5209ab89e9364d623180ccf73faad8e2ed902ec38dc4548259355ab1cebce75148de71a722 +SHA512 (kdoctools-5.58.0.tar.xz) = ab758d22eb424d5488d034a249d9f828412f78c8dde01b32f3e67feb7b84cec1aa5282135455ad0168d01f0fc54b590103d4d5f85f9f44c3d3a4742fbb160a7e From 4983bac319c15412a95a7b19153a2e17f5479e46 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jun 2019 12:39:06 -0500 Subject: [PATCH 88/88] 5.59.0 --- .gitignore | 1 + kf5-kdoctools.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index debd233..38eccfe 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /kdoctools-5.56.0.tar.xz /kdoctools-5.57.0.tar.xz /kdoctools-5.58.0.tar.xz +/kdoctools-5.59.0.tar.xz diff --git a/kf5-kdoctools.spec b/kf5-kdoctools.spec index 38ba253..6a0ce9a 100755 --- a/kf5-kdoctools.spec +++ b/kf5-kdoctools.spec @@ -1,7 +1,7 @@ %global framework kdoctools Name: kf5-%{framework} -Version: 5.58.0 +Version: 5.59.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 2 addon for generating documentation @@ -99,6 +99,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 7c023bd..622aded 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (kdoctools-5.58.0.tar.xz) = ab758d22eb424d5488d034a249d9f828412f78c8dde01b32f3e67feb7b84cec1aa5282135455ad0168d01f0fc54b590103d4d5f85f9f44c3d3a4742fbb160a7e +SHA512 (kdoctools-5.59.0.tar.xz) = f66db9c71e5181f03956257615a1260330d16133f2393c9dc3e2e157c64464abde9706cb2bcccc3ea7fd29bffaabe408ea02a6ed0e6cf2c1d248bd5379e1b738