From c597fce68aa3d35618141ffd771e01a99772a73f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 20 May 2014 12:48:23 +0000 Subject: [PATCH 001/190] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From d876fef45887b02ad9c49ebcb5e10a830d6bc8ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 21 May 2014 10:04:48 +0200 Subject: [PATCH 002/190] Import package (kf5-ki18n-4.99.0-4) --- .gitignore | 1 + kf5-ki18n.spec | 103 +++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 105 insertions(+) create mode 100644 kf5-ki18n.spec diff --git a/.gitignore b/.gitignore index e69de29..949eaf0 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/ki18n-4.99.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec new file mode 100644 index 0000000..3a19a2f --- /dev/null +++ b/kf5-ki18n.spec @@ -0,0 +1,103 @@ +#%define snapshot 20140205 +%define framework ki18n + +Name: kf5-%{framework} +Version: 4.99.0 +Release: 4%{?dist} +Summary: KDE Frameworks 5 Tier 1 addon for localization + +License: LGPLv2+ +URL: http://www.kde.org +# git archive --format=tar --prefix=%{framework}-%{version}/ \ +# --remote=git://anongit.kde.org/%{framework}.git master | \ +# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 +#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 +Source0: http://download.kde.org/unstable/frameworks/4.99.0/%{framework}-4.99.0.tar.xz + +BuildRequires: perl + +BuildRequires: kf5-rpm-macros +BuildRequires: extra-cmake-modules +BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtscript-devel +BuildRequires: gettext + +Requires: kf5-filesystem + +%description +KDE Frameworks 5 Tier 1 addon for localization. + +%package devel +Summary: Development files for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: gettext + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%setup -q -n %{framework}-%{version} + +%build +mkdir -p %{_target_platform} +pushd %{_target_platform} +%{cmake_kf5} .. +popd + +make %{?_smp_mflags} -C %{_target_platform} + +%install +%make_install -C %{_target_platform} + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%doc COPYING.LIB README.md +%{_kf5_libdir}/libKF5I18n.so.* +%{_kf5_qtplugindir}/kf5/ktranscript.so + + +%files devel +%{_kf5_includedir}/ki18n_version.h +%{_kf5_includedir}/KI18n +%{_kf5_libdir}/libKF5I18n.so +%{_kf5_libdir}/cmake/KF5I18n +%{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri + +%changelog +* Wed May 14 2014 Daniel Vrátil - 4.99.0-4 +- Rebuild against updated kf5-rpm-macros + +* Thu May 08 2014 Daniel Vrátil - 4.99.0-3 +- BR gettext + +* Tue May 06 2014 Daniel Vrátil - 4.99.0-2 +- Rebuild against updated kf5-rpm-macros + +* Mon May 05 2014 Daniel Vrátil - 4.99.0-1 +- KDE Frameworks 4.99.0 + +* Tue Apr 22 2014 Daniel Vrátil 4.98.0-2 +- Upgrade KI18n to a Tier 1 Framework + +* Mon Mar 31 2014 Jan Grulich 4.98.0-1 +- Update to KDE Frameworks 5 Beta 1 (4.98.0) + +* Wed Mar 05 2014 Jan Grulich 4.97.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.97.0) + +* Wed Feb 12 2014 Daniel Vrátil 4.96.0-1 +- Update to KDE Frameworks 5 Alpha 1 (4.96.0) + +* Wed Feb 05 2014 Daniel Vrátil 4.96.0-0.1.20140205git +- Update to pre-relase snapshot of 4.96.0 + +* Thu Jan 09 2014 Daniel Vrátil 4.95.0-1 +- Update to KDE Frameworks 5 TP1 (4.95.0) + +* Sat Jan 4 2014 Daniel Vrátil +- initial version diff --git a/sources b/sources index e69de29..05ba50d 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +aec50a8bce055c81e361088df61a4a7c ki18n-4.99.0.tar.xz From 4649bf9e72f326a8ae893bd7cd63b84974461f63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 3 Jun 2014 12:10:59 +0200 Subject: [PATCH 003/190] KDE Frameworks 4.100.0 --- .gitignore | 1 + kf5-ki18n.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 949eaf0..5d66eb7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ki18n-4.99.0.tar.xz +/ki18n-4.100.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3a19a2f..e6898d6 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %define framework ki18n Name: kf5-%{framework} -Version: 4.99.0 -Release: 4%{?dist} +Version: 4.100.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -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/4.99.0/%{framework}-4.99.0.tar.xz +Source0: http://download.kde.org/unstable/frameworks/4.100.0/%{framework}-4.100.0.tar.xz%{framework}-4.99.0.tar.xz BuildRequires: perl @@ -69,6 +69,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 +- KDE Frameworks 4.100.0 + * Wed May 14 2014 Daniel Vrátil - 4.99.0-4 - Rebuild against updated kf5-rpm-macros diff --git a/sources b/sources index 05ba50d..352eace 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -aec50a8bce055c81e361088df61a4a7c ki18n-4.99.0.tar.xz +393375fc10359461657757a096f86797 ki18n-4.100.0.tar.xz From 85b69cb03e93f43290d6e72761889f9fa9b9bdb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 3 Jun 2014 12:34:51 +0200 Subject: [PATCH 004/190] Fix Source0 URL --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index e6898d6..c1f69b1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -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/4.100.0/%{framework}-4.100.0.tar.xz%{framework}-4.99.0.tar.xz +Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: perl From 2f36550c84b3f6720d1e202f5413bf6388caaa3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 4 Jun 2014 10:45:58 +0200 Subject: [PATCH 005/190] Package translations --- kf5-ki18n.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c1f69b1..11be7fa 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -49,13 +49,14 @@ make %{?_smp_mflags} -C %{_target_platform} %install %make_install -C %{_target_platform} +%find_lang ki18n5_qt --with-qt --all-name %post -p /sbin/ldconfig %postun -p /sbin/ldconfig -%files +%files -f ki18n5_qt.lang %doc COPYING.LIB README.md %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so From 49633f8f2bbad6ac5fd1de178acb9bc54b06bb33 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 21:31:25 -0500 Subject: [PATCH 006/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 11be7fa..ae9dd61 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 4.100.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -70,6 +70,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.100.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Tue Jun 03 2014 Daniel Vrátil - 4.100.0-1 - KDE Frameworks 4.100.0 From a7eed17952e06a7dd71b7f2819717fcbbc5d970b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 9 Jun 2014 11:32:03 +0200 Subject: [PATCH 007/190] Add upstream patch to fix plugin installation destination --- kf5-ki18n.spec | 9 +++- ki18n-plugin-install-dir.patch | 76 ++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 ki18n-plugin-install-dir.patch diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ae9dd61..2305456 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 4.100.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -14,6 +14,8 @@ URL: http://www.kde.org #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 Source0: http://download.kde.org/unstable/frameworks/%{version}/%{framework}-%{version}.tar.xz +Patch0: ki18n-plugin-install-dir.patch + BuildRequires: perl BuildRequires: kf5-rpm-macros @@ -39,6 +41,8 @@ developing applications that use %{name}. %prep %setup -q -n %{framework}-%{version} +%patch0 -p1 -b .pluginInstallDir + %build mkdir -p %{_target_platform} pushd %{_target_platform} @@ -70,6 +74,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Mon Jun 09 2014 Daniel Vrátil - 4.100.0-2 +- add upstream patch to fix plugins installation destination + * Sun Jun 08 2014 Fedora Release Engineering - 4.100.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/ki18n-plugin-install-dir.patch b/ki18n-plugin-install-dir.patch new file mode 100644 index 0000000..e83ad62 --- /dev/null +++ b/ki18n-plugin-install-dir.patch @@ -0,0 +1,76 @@ +From: Alex Merry +Date: Mon, 02 Jun 2014 22:00:26 +0000 +Subject: Put transcript plugin in kf5 subdir and simplify search logic +X-Git-Url: http://quickgit.kde.org/?p=ki18n.git&a=commitdiff&h=8bb821a959fa71c405a1e94bc73aa20920254122 +--- +Put transcript plugin in kf5 subdir and simplify search logic + +Putting the plugin in a versioned subdirectory ensures there will not be +any coinstallability issues with KF6 if it is Qt5-based. Using +QPluginLoader to find the plugin makes for simpler, more reliable code. + +REVIEW: 118486 +--- + + +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -46,10 +46,9 @@ + ) + add_library(ktranscript MODULE ${ktranscript_LIB_SRCS}) + generate_export_header(ktranscript BASE_NAME KTranscript) +-set_target_properties(ktranscript PROPERTIES PREFIX "") # remove lib prefix + target_link_libraries(ktranscript PRIVATE Qt5::Script Qt5::Core) + +-install(TARGETS ktranscript DESTINATION ${PLUGIN_INSTALL_DIR}) ++install(TARGETS ktranscript DESTINATION ${PLUGIN_INSTALL_DIR}/kf5) + + + include(ECMGeneratePriFile) + +--- a/src/klocalizedstring.cpp ++++ b/src/klocalizedstring.cpp +@@ -31,6 +31,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -1362,29 +1363,14 @@ + s->loadTranscriptCalled = true; + s->ktrs = NULL; // null indicates that Transcript is not available + +-#if 0 +- // FIXME: Automatic plugin path resolution does not work at the moment, +- // so search manually through library paths. +- QString pluginPathNoExt = QLatin1String("kf5/ktranscript"); +-#else +- QString pluginPathNoExt; +- QStringList nameFilters; +- QString pluginName = QLatin1String("ktranscript"); +- nameFilters.append(pluginName + QLatin1String(".*")); +- foreach (const QString &dirPath, QCoreApplication::libraryPaths()) { +- QString dirPathKf = dirPath + QLatin1Char('/'); +- if (!QDir(dirPathKf).entryList(nameFilters).isEmpty()) { +- pluginPathNoExt = dirPathKf + QLatin1Char('/') + pluginName; +- break; +- } +- } +- if (pluginPathNoExt.isEmpty()) { ++ // QPluginLoader is just used to find the plugin ++ QPluginLoader loader(QStringLiteral("kf5/ktranscript")); ++ if (loader.fileName().isEmpty()) { + qWarning() << QString::fromLatin1("Cannot find Transcript plugin."); + return; + } +-#endif +- +- QLibrary lib(pluginPathNoExt); ++ ++ QLibrary lib(loader.fileName()); + if (!lib.load()) { + qWarning() << QString::fromLatin1("Cannot load Transcript plugin:") + << lib.errorString(); + From b016aff15fd4199152ba7b19efce993ff0198fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 9 Jul 2014 15:27:55 +0200 Subject: [PATCH 008/190] KDE Frameworks 5.0.0 --- .gitignore | 1 + kf5-ki18n.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5d66eb7..563da4f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-4.99.0.tar.xz /ki18n-4.100.0.tar.xz +/ki18n-5.0.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2305456..0fec265 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %define framework ki18n Name: kf5-%{framework} -Version: 4.100.0 -Release: 3%{?dist} +Version: 5.0.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -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 Patch0: ki18n-plugin-install-dir.patch @@ -74,6 +74,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 +- KDE Frameworks 5.0.0 + * Mon Jun 09 2014 Daniel Vrátil - 4.100.0-2 - add upstream patch to fix plugins installation destination diff --git a/sources b/sources index 352eace..4769fec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -393375fc10359461657757a096f86797 ki18n-4.100.0.tar.xz +2f57ce764c7f08a1feb0f5ad75ba7afe ki18n-5.0.0.tar.xz From 950f9fc8e0a28ea1701665702e6abe6be485b217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 10 Jul 2014 14:38:05 +0200 Subject: [PATCH 009/190] Remove obsolete upstream patch --- kf5-ki18n.spec | 9 ++-- ki18n-plugin-install-dir.patch | 76 ---------------------------------- 2 files changed, 4 insertions(+), 81 deletions(-) delete mode 100644 ki18n-plugin-install-dir.patch diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0fec265..9cafc74 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -14,8 +14,6 @@ URL: http://www.kde.org #Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz -Patch0: ki18n-plugin-install-dir.patch - BuildRequires: perl BuildRequires: kf5-rpm-macros @@ -41,8 +39,6 @@ developing applications that use %{name}. %prep %setup -q -n %{framework}-%{version} -%patch0 -p1 -b .pluginInstallDir - %build mkdir -p %{_target_platform} pushd %{_target_platform} @@ -74,6 +70,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Thu Jul 10 2014 Daniel Vrátil - 5.0.0-2 +- Remove obsolete upstream patch + * Wed Jul 09 2014 Daniel Vrátil - 5.0.0-1 - KDE Frameworks 5.0.0 diff --git a/ki18n-plugin-install-dir.patch b/ki18n-plugin-install-dir.patch deleted file mode 100644 index e83ad62..0000000 --- a/ki18n-plugin-install-dir.patch +++ /dev/null @@ -1,76 +0,0 @@ -From: Alex Merry -Date: Mon, 02 Jun 2014 22:00:26 +0000 -Subject: Put transcript plugin in kf5 subdir and simplify search logic -X-Git-Url: http://quickgit.kde.org/?p=ki18n.git&a=commitdiff&h=8bb821a959fa71c405a1e94bc73aa20920254122 ---- -Put transcript plugin in kf5 subdir and simplify search logic - -Putting the plugin in a versioned subdirectory ensures there will not be -any coinstallability issues with KF6 if it is Qt5-based. Using -QPluginLoader to find the plugin makes for simpler, more reliable code. - -REVIEW: 118486 ---- - - ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -46,10 +46,9 @@ - ) - add_library(ktranscript MODULE ${ktranscript_LIB_SRCS}) - generate_export_header(ktranscript BASE_NAME KTranscript) --set_target_properties(ktranscript PROPERTIES PREFIX "") # remove lib prefix - target_link_libraries(ktranscript PRIVATE Qt5::Script Qt5::Core) - --install(TARGETS ktranscript DESTINATION ${PLUGIN_INSTALL_DIR}) -+install(TARGETS ktranscript DESTINATION ${PLUGIN_INSTALL_DIR}/kf5) - - - include(ECMGeneratePriFile) - ---- a/src/klocalizedstring.cpp -+++ b/src/klocalizedstring.cpp -@@ -31,6 +31,7 @@ - #include - #include - #include -+#include - #include - #include - #include -@@ -1362,29 +1363,14 @@ - s->loadTranscriptCalled = true; - s->ktrs = NULL; // null indicates that Transcript is not available - --#if 0 -- // FIXME: Automatic plugin path resolution does not work at the moment, -- // so search manually through library paths. -- QString pluginPathNoExt = QLatin1String("kf5/ktranscript"); --#else -- QString pluginPathNoExt; -- QStringList nameFilters; -- QString pluginName = QLatin1String("ktranscript"); -- nameFilters.append(pluginName + QLatin1String(".*")); -- foreach (const QString &dirPath, QCoreApplication::libraryPaths()) { -- QString dirPathKf = dirPath + QLatin1Char('/'); -- if (!QDir(dirPathKf).entryList(nameFilters).isEmpty()) { -- pluginPathNoExt = dirPathKf + QLatin1Char('/') + pluginName; -- break; -- } -- } -- if (pluginPathNoExt.isEmpty()) { -+ // QPluginLoader is just used to find the plugin -+ QPluginLoader loader(QStringLiteral("kf5/ktranscript")); -+ if (loader.fileName().isEmpty()) { - qWarning() << QString::fromLatin1("Cannot find Transcript plugin."); - return; - } --#endif -- -- QLibrary lib(pluginPathNoExt); -+ -+ QLibrary lib(loader.fileName()); - if (!lib.load()) { - qWarning() << QString::fromLatin1("Cannot load Transcript plugin:") - << lib.errorString(); - From 26646e1c8e2bdecf3687991eca66b5250dd03c7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 6 Aug 2014 15:08:28 +0200 Subject: [PATCH 010/190] KDE Frameworks 5.1.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 563da4f..19fa911 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ki18n-4.99.0.tar.xz /ki18n-4.100.0.tar.xz /ki18n-5.0.0.tar.xz +/ki18n-5.1.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9cafc74..06718a7 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %define framework ki18n Name: kf5-%{framework} -Version: 5.0.0 -Release: 2%{?dist} +Version: 5.1.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -70,6 +70,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 +- KDE Frameworks 5.1.0 + * Thu Jul 10 2014 Daniel Vrátil - 5.0.0-2 - Remove obsolete upstream patch diff --git a/sources b/sources index 4769fec..ad4f2a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2f57ce764c7f08a1feb0f5ad75ba7afe ki18n-5.0.0.tar.xz +4df6b757abd3494e22fb6000a5db4f6a ki18n-5.1.0.tar.xz From 2b589592f37aafe246f81d69f22de138d4ac7a75 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 23:49:15 +0000 Subject: [PATCH 011/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 06718a7..64b251e 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -70,6 +70,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 5.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Wed Aug 06 2014 Daniel Vrátil - 5.1.0-1 - KDE Frameworks 5.1.0 From d5e704e6dc897ce4449fff54416bf1347bfd55d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 11 Sep 2014 10:12:16 +0200 Subject: [PATCH 012/190] KDE Frameworks 5.2.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 19fa911..640c3bf 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /ki18n-4.100.0.tar.xz /ki18n-5.0.0.tar.xz /ki18n-5.1.0.tar.xz +/ki18n-5.2.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 64b251e..7db223d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %define framework ki18n Name: kf5-%{framework} -Version: 5.1.0 -Release: 2%{?dist} +Version: 5.2.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -70,6 +70,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Thu Sep 11 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 ad4f2a1..1e3c15f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4df6b757abd3494e22fb6000a5db4f6a ki18n-5.1.0.tar.xz +a33e66329e6f0ec4761de7d9fe5acdac ki18n-5.2.0.tar.xz From df7d5a2192df93c5e1fdd5f72c96a88dc7baae2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 15 Sep 2014 11:27:33 +0200 Subject: [PATCH 013/190] Install trapnakron locale files --- kf5-ki18n.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7db223d..6933ed4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -60,6 +60,9 @@ make %{?_smp_mflags} -C %{_target_platform} %doc COPYING.LIB README.md %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so +%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ki18n5.js +%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/trapnakron.pmap +%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/trapnakron.pmapc %files devel From bde0682a4b65b359dc91c3353b06a623dc5e9a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Oct 2014 13:01:27 +0200 Subject: [PATCH 014/190] KDE Frameworks 5.3.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 640c3bf..7cb5d7b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /ki18n-5.0.0.tar.xz /ki18n-5.1.0.tar.xz /ki18n-5.2.0.tar.xz +/ki18n-5.3.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 6933ed4..b35d496 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %define framework ki18n Name: kf5-%{framework} -Version: 5.2.0 +Version: 5.3.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -73,6 +73,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 +- KDE Frameworks 5.3.0 + * Thu Sep 11 2014 Daniel Vrátil - 5.2.0-1 - KDE Frameworks 5.2.0 diff --git a/sources b/sources index 1e3c15f..c12a132 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a33e66329e6f0ec4761de7d9fe5acdac ki18n-5.2.0.tar.xz +d01815a8c04baa90b81e3350805b4c5d ki18n-5.3.0.tar.xz From 6a631bfb482c2bbd46472de5efa9fa97799e0c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 29 Oct 2014 11:24:22 +0100 Subject: [PATCH 015/190] Tag trapnakron files with %lang (RBHZ#1157349) --- kf5-ki18n.spec | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b35d496..f916464 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.3.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -61,9 +61,16 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so %{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ki18n5.js -%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/trapnakron.pmap -%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/trapnakron.pmapc +# Trapnakron files are too large to be installed by default +%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmap +%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc +%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmap +%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmapc +%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmap +%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmapc +%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmap +%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmapc %files devel %{_kf5_includedir}/ki18n_version.h @@ -73,6 +80,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Wed Oct 29 2014 Daniel Vrátil - 5.3.0-2 +- Tag trapnakron files with %%lang + * Tue Oct 07 2014 Daniel Vrátil - 5.3.0-1 - KDE Frameworks 5.3.0 From 1b1eec90c9ffe65b75a5e94c125223a42cd62659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:06:45 +0100 Subject: [PATCH 016/190] KDE Frameworks 5.4.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7cb5d7b..e4d90f9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /ki18n-5.1.0.tar.xz /ki18n-5.2.0.tar.xz /ki18n-5.3.0.tar.xz +/ki18n-5.4.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f916464..8dd6f2e 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %define framework ki18n Name: kf5-%{framework} -Version: 5.3.0 -Release: 2%{?dist} +Version: 5.4.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -80,6 +80,9 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 +- KDE Frameworks 5.4.0 + * Wed Oct 29 2014 Daniel Vrátil - 5.3.0-2 - Tag trapnakron files with %%lang diff --git a/sources b/sources index c12a132..8ec2d3c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d01815a8c04baa90b81e3350805b4c5d ki18n-5.3.0.tar.xz +b340728a206fc4529f93ff73d2168b41 ki18n-5.4.0.tar.xz From b582bdd6da4ffd670098617f2daba9189445abe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 12:54:11 +0100 Subject: [PATCH 017/190] Clean up spec file, autodetect stable/unstable download folder --- kf5-ki18n.spec | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8dd6f2e..9f4db74 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,4 +1,3 @@ -#%define snapshot 20140205 %define framework ki18n Name: kf5-%{framework} @@ -8,11 +7,14 @@ Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ URL: http://www.kde.org -# git archive --format=tar --prefix=%{framework}-%{version}/ \ -# --remote=git://anongit.kde.org/%{framework}.git master | \ -# bzip2 -c > %{name}-%{version}-%{snapshot}git.tar.bz2 -#Source0: %{name}-%{version}-%{snapshot}git.tar.bz2 -Source0: http://download.kde.org/stable/frameworks/%{version}/%{framework}-%{version}.tar.xz + +%global revision %(echo %{version} | cut -d. -f3) +%if %{revision} >= 50 +%global stable unstable +%else +%global stable stable +%endif +Source0: http://download.kde.org/%{stable}/frameworks/%{version}/%{framework}-%{version}.tar.xz BuildRequires: perl @@ -51,17 +53,15 @@ make %{?_smp_mflags} -C %{_target_platform} %make_install -C %{_target_platform} %find_lang ki18n5_qt --with-qt --all-name -%post -p /sbin/ldconfig +%post -p /sbin/ldconfig %postun -p /sbin/ldconfig - %files -f ki18n5_qt.lang %doc COPYING.LIB README.md %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so %{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ki18n5.js - # Trapnakron files are too large to be installed by default %lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmap %lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc @@ -79,6 +79,7 @@ make %{?_smp_mflags} -C %{_target_platform} %{_kf5_libdir}/cmake/KF5I18n %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri + %changelog * Mon Nov 03 2014 Daniel Vrátil - 5.4.0-1 - KDE Frameworks 5.4.0 From bd14e7debdc6b0cc8374e210df17a3babde53f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 13:35:55 +0100 Subject: [PATCH 018/190] Use %global instead of %define --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9f4db74..9ff3818 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,4 +1,4 @@ -%define framework ki18n +%global framework ki18n Name: kf5-%{framework} Version: 5.4.0 From 1ca86205c8338c4d902fc38a12023542cedb1e8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 3 Nov 2014 14:58:48 +0100 Subject: [PATCH 019/190] Install Finnish pmap files --- kf5-ki18n.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9ff3818..5bc5019 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -71,6 +71,8 @@ make %{?_smp_mflags} -C %{_target_platform} %lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmapc %lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmap %lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmapc +%lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/general.pmap +%lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/general.pmapc %files devel %{_kf5_includedir}/ki18n_version.h From 256b1463136419b7d9f723afe24d3a9246cf70f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 8 Dec 2014 15:04:39 +0100 Subject: [PATCH 020/190] KDE Frameworks 5.5.0 --- .gitignore | 1 + kf5-ki18n.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e4d90f9..4790a6d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /ki18n-5.2.0.tar.xz /ki18n-5.3.0.tar.xz /ki18n-5.4.0.tar.xz +/ki18n-5.5.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 5bc5019..6a73ca5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,20 +1,21 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.4.0 +Version: 5.5.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ URL: http://www.kde.org +%global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 %global stable unstable %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{version}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz BuildRequires: perl @@ -83,6 +84,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 8ec2d3c..aff9dd0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b340728a206fc4529f93ff73d2168b41 ki18n-5.4.0.tar.xz +646a1dc1c41831de3cadbc8975df71fe ki18n-5.5.0.tar.xz From 7e57b58a64e767f0b7d6e6e46f112c9a5e581021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Jan 2015 14:37:19 +0100 Subject: [PATCH 021/190] KDE Frameworks 5.6.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4790a6d..1aeda7d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /ki18n-5.3.0.tar.xz /ki18n-5.4.0.tar.xz /ki18n-5.5.0.tar.xz +/ki18n-5.6.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 6a73ca5..1b7d8a2 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.5.0 +Version: 5.6.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -84,6 +84,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 aff9dd0..f5fc1cb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -646a1dc1c41831de3cadbc8975df71fe ki18n-5.5.0.tar.xz +8634bbe03e96316749b7aa4884c5a9e8 ki18n-5.6.0.tar.xz From 976531bc83ebcb793d85f234e075ee1a63ef8aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Feb 2015 13:12:58 +0100 Subject: [PATCH 022/190] KDE Frameworks 5.7.0 --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1b7d8a2..ad711ef 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.6.0 +Version: 5.7.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -84,6 +84,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Mon Feb 16 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 From c6146cbacc964eec056ec2222a4e36e23a7e8dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Feb 2015 14:25:36 +0100 Subject: [PATCH 023/190] Update sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1aeda7d..7514a6c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /ki18n-5.4.0.tar.xz /ki18n-5.5.0.tar.xz /ki18n-5.6.0.tar.xz +/ki18n-5.7.0.tar.xz diff --git a/sources b/sources index f5fc1cb..148a745 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8634bbe03e96316749b7aa4884c5a9e8 ki18n-5.6.0.tar.xz +71cb953acb2a9e7a6106b1e22260801a ki18n-5.7.0.tar.xz From 48f957b01df8c8c9abae17eb2eb9b0f7ef04caf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Fri, 27 Feb 2015 18:09:40 +0100 Subject: [PATCH 024/190] Rebuild (GCC 5) --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ad711ef..738f3da 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -84,6 +84,9 @@ make %{?_smp_mflags} -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 c6095c6ae7c1550bcb0c0b3de4ed16c19916472b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 16 Mar 2015 12:50:50 +0100 Subject: [PATCH 025/190] KDE Frameworks 5.8.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7514a6c..8f1837f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /ki18n-5.5.0.tar.xz /ki18n-5.6.0.tar.xz /ki18n-5.7.0.tar.xz +/ki18n-5.8.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 738f3da..8dacd47 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.7.0 -Release: 2%{?dist} +Version: 5.8.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -84,6 +84,9 @@ make %{?_smp_mflags} -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 148a745..91821ad 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -71cb953acb2a9e7a6106b1e22260801a ki18n-5.7.0.tar.xz +b5e61aeba4216e352cb692ffed2d0c21 ki18n-5.8.0.tar.xz From 03407d0f704bb8c02c79bab47722aaa60e24f726 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 24 Mar 2015 18:29:13 +0100 Subject: [PATCH 026/190] Add upstream patch to load Qt catalogs --- ...he-global-qt-catalog-when-using-i18n.patch | 80 +++++++++++++++++++ kf5-ki18n.spec | 11 ++- 2 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 0001-preload-the-global-qt-catalog-when-using-i18n.patch diff --git a/0001-preload-the-global-qt-catalog-when-using-i18n.patch b/0001-preload-the-global-qt-catalog-when-using-i18n.patch new file mode 100644 index 0000000..19727f4 --- /dev/null +++ b/0001-preload-the-global-qt-catalog-when-using-i18n.patch @@ -0,0 +1,80 @@ +commit fded87b06de0c956131b0763716b1100e46e1408 +Author: Lukáš Tinkl +Date: Thu Mar 19 16:35:07 2015 +0100 + + preload the global Qt catalog when using i18n() + + tested with eg. systemsettings; without the patch, the fonts kcm dialogs + (QFontDialog) are in English + +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 8c206f9..818595e 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -4,6 +4,7 @@ set(libki18n_SRCS + kcatalog.cpp + kuitmarkup.cpp + common_helpers.cpp ++ main.cpp + ) + + add_library(KF5I18n ${libki18n_SRCS}) +diff --git a/src/main.cpp b/src/main.cpp +new file mode 100644 +index 0000000..6b46f41 +--- /dev/null ++++ b/src/main.cpp +@@ -0,0 +1,53 @@ ++/* This file is part of the KDE libraries ++ Copyright (C) 2015 Lukáš Tinkl ++ ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public ++ License as published by the Free Software Foundation; either ++ version 2 of the License, or (at your option) any later version. ++ ++ This library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public License ++ along with this library; see the file COPYING.LIB. If not, write to ++ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ++ Boston, MA 02110-1301, USA. ++*/ ++ ++#include ++#include ++#include ++#include ++ ++// load global Qt translation, needed in KDE e.g. by lots of builtin dialogs (QColorDialog, QFontDialog) that we use ++static bool loadTranslation(const QString &localeName) ++{ ++ QTranslator *translator = new QTranslator(QCoreApplication::instance()); ++ if (!translator->load(QLocale(localeName), QStringLiteral("qt_"), QString(), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) { ++ delete translator; ++ return false; ++ } ++ QCoreApplication::instance()->installTranslator(translator); ++ return true; ++} ++ ++static void load() ++{ ++ // The way Qt translation system handles plural forms makes it necessary to ++ // have a translation file which contains only plural forms for `en`. That's ++ // why we load the `en` translation unconditionally, then load the ++ // translation for the current locale to overload it. ++ loadTranslation(QStringLiteral("en")); ++ ++ QLocale locale = QLocale::system(); ++ if (locale.name() != QStringLiteral("en")) { ++ if (!loadTranslation(locale.name())) { ++ loadTranslation(locale.bcp47Name()); ++ } ++ } ++} ++ ++Q_COREAPP_STARTUP_FUNCTION(load) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8dacd47..b62ea64 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -17,6 +17,10 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +# upstream patches +Patch1: 0001-preload-the-global-qt-catalog-when-using-i18n.patch + + BuildRequires: perl BuildRequires: kf5-rpm-macros @@ -40,7 +44,7 @@ The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep -%setup -q -n %{framework}-%{version} +%autosetup -n %{framework}-%{version} -p1 %build mkdir -p %{_target_platform} @@ -84,6 +88,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Tue Mar 24 2015 Daniel Vrátil - 5.8.0-2 +- add upstream patch to fix to load Qt catalogs too + * Mon Mar 16 2015 Daniel Vrátil - 5.8.0-1 - KDE Frameworks 5.8.0 From b963f1db9c8f41e7c20988627087f0eb87e01f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 7 Apr 2015 13:04:49 +0200 Subject: [PATCH 027/190] KDE Frameworks 5.9.0 --- .gitignore | 1 + ...he-global-qt-catalog-when-using-i18n.patch | 80 ------------------- kf5-ki18n.spec | 11 ++- sources | 2 +- 4 files changed, 7 insertions(+), 87 deletions(-) delete mode 100644 0001-preload-the-global-qt-catalog-when-using-i18n.patch diff --git a/.gitignore b/.gitignore index 8f1837f..1519f98 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /ki18n-5.6.0.tar.xz /ki18n-5.7.0.tar.xz /ki18n-5.8.0.tar.xz +/ki18n-5.9.0.tar.xz diff --git a/0001-preload-the-global-qt-catalog-when-using-i18n.patch b/0001-preload-the-global-qt-catalog-when-using-i18n.patch deleted file mode 100644 index 19727f4..0000000 --- a/0001-preload-the-global-qt-catalog-when-using-i18n.patch +++ /dev/null @@ -1,80 +0,0 @@ -commit fded87b06de0c956131b0763716b1100e46e1408 -Author: Lukáš Tinkl -Date: Thu Mar 19 16:35:07 2015 +0100 - - preload the global Qt catalog when using i18n() - - tested with eg. systemsettings; without the patch, the fonts kcm dialogs - (QFontDialog) are in English - -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 8c206f9..818595e 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -4,6 +4,7 @@ set(libki18n_SRCS - kcatalog.cpp - kuitmarkup.cpp - common_helpers.cpp -+ main.cpp - ) - - add_library(KF5I18n ${libki18n_SRCS}) -diff --git a/src/main.cpp b/src/main.cpp -new file mode 100644 -index 0000000..6b46f41 ---- /dev/null -+++ b/src/main.cpp -@@ -0,0 +1,53 @@ -+/* This file is part of the KDE libraries -+ Copyright (C) 2015 Lukáš Tinkl -+ -+ This library is free software; you can redistribute it and/or -+ modify it under the terms of the GNU Library General Public -+ License as published by the Free Software Foundation; either -+ version 2 of the License, or (at your option) any later version. -+ -+ This library is distributed in the hope that it will be useful, -+ but WITHOUT ANY WARRANTY; without even the implied warranty of -+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ Library General Public License for more details. -+ -+ You should have received a copy of the GNU Library General Public License -+ along with this library; see the file COPYING.LIB. If not, write to -+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -+ Boston, MA 02110-1301, USA. -+*/ -+ -+#include -+#include -+#include -+#include -+ -+// load global Qt translation, needed in KDE e.g. by lots of builtin dialogs (QColorDialog, QFontDialog) that we use -+static bool loadTranslation(const QString &localeName) -+{ -+ QTranslator *translator = new QTranslator(QCoreApplication::instance()); -+ if (!translator->load(QLocale(localeName), QStringLiteral("qt_"), QString(), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) { -+ delete translator; -+ return false; -+ } -+ QCoreApplication::instance()->installTranslator(translator); -+ return true; -+} -+ -+static void load() -+{ -+ // The way Qt translation system handles plural forms makes it necessary to -+ // have a translation file which contains only plural forms for `en`. That's -+ // why we load the `en` translation unconditionally, then load the -+ // translation for the current locale to overload it. -+ loadTranslation(QStringLiteral("en")); -+ -+ QLocale locale = QLocale::system(); -+ if (locale.name() != QStringLiteral("en")) { -+ if (!loadTranslation(locale.name())) { -+ loadTranslation(locale.bcp47Name()); -+ } -+ } -+} -+ -+Q_COREAPP_STARTUP_FUNCTION(load) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b62ea64..dc530b4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.8.0 -Release: 2%{?dist} +Version: 5.9.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -17,10 +17,6 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -# upstream patches -Patch1: 0001-preload-the-global-qt-catalog-when-using-i18n.patch - - BuildRequires: perl BuildRequires: kf5-rpm-macros @@ -88,6 +84,9 @@ make %{?_smp_mflags} -C %{_target_platform} %changelog +* Tue Apr 07 2015 Daniel Vrátil - 5.9.0-1 +- KDE Frameworks 5.9.0 + * Tue Mar 24 2015 Daniel Vrátil - 5.8.0-2 - add upstream patch to fix to load Qt catalogs too diff --git a/sources b/sources index 91821ad..cf4e72d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b5e61aeba4216e352cb692ffed2d0c21 ki18n-5.8.0.tar.xz +12d24d6133ac0e0cc428887feded22f0 ki18n-5.9.0.tar.xz From 196145a0f690d29cb843304490eab4ddd6579e5f Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 14:44:43 +0200 Subject: [PATCH 028/190] Rebuilt for GCC 5 C++11 ABI change --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index dc530b4..2b77bfb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -84,6 +84,9 @@ make %{?_smp_mflags} -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 02c8ef3a24eca9403df116f69fe8f1a2a32c1eb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 11 May 2015 11:10:28 +0200 Subject: [PATCH 029/190] KDE Frameworks 5.10.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1519f98..2303e6f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /ki18n-5.7.0.tar.xz /ki18n-5.8.0.tar.xz /ki18n-5.9.0.tar.xz +/ki18n-5.10.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2b77bfb..9e83d3e 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.9.0 -Release: 2%{?dist} +Version: 5.10.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -84,6 +84,9 @@ make %{?_smp_mflags} -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 cf4e72d..0f18850 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -12d24d6133ac0e0cc428887feded22f0 ki18n-5.9.0.tar.xz +c9d5a36b3f036f26aeccbb7854875276 ki18n-5.10.0.tar.xz From 3b8381503d9a44571222ff265def603dac266ecc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 May 2015 09:25:03 -0500 Subject: [PATCH 030/190] .spec cosmetics, own and fully %lang'ify %{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ (#1157349) --- kf5-ki18n.spec | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9e83d3e..3869d95 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -34,24 +34,26 @@ KDE Frameworks 5 Tier 1 addon for localization. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: gettext - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. + %prep %autosetup -n %{framework}-%{version} -p1 + %build -mkdir -p %{_target_platform} +mkdir %{_target_platform} pushd %{_target_platform} %{cmake_kf5} .. popd make %{?_smp_mflags} -C %{_target_platform} + %install -%make_install -C %{_target_platform} +make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %find_lang ki18n5_qt --with-qt --all-name @@ -62,28 +64,27 @@ make %{?_smp_mflags} -C %{_target_platform} %doc COPYING.LIB README.md %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so -%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ki18n5.js -# Trapnakron files are too large to be installed by default -%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmap -%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc -%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmap -%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmapc -%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmap -%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmapc -%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmap -%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmapc -%lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/general.pmap -%lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/general.pmapc +%lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ +%lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ +%lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ +%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ +%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ +%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ +%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ +%lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel %{_kf5_includedir}/ki18n_version.h -%{_kf5_includedir}/KI18n +%{_kf5_includedir}/KI18n/ %{_kf5_libdir}/libKF5I18n.so -%{_kf5_libdir}/cmake/KF5I18n +%{_kf5_libdir}/cmake/KF5I18n/ %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri %changelog +* Thu May 14 2015 Rex Dieter 5.10.0-2 +- .spec cosmetics, own and fully %%lang'ify %%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ (#1157349) + * Mon May 11 2015 Daniel Vrátil - 5.10.0-1 - KDE Frameworks 5.10.0 From 69109eec3b1b9567800fce6a40f59ea9bfe8d0f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 10 Jun 2015 14:25:33 +0200 Subject: [PATCH 031/190] KDE Frameworks 5.11.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2303e6f..3082ecc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /ki18n-5.8.0.tar.xz /ki18n-5.9.0.tar.xz /ki18n-5.10.0.tar.xz +/ki18n-5.11.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3869d95..b5c6593 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.10.0 -Release: 2%{?dist} +Version: 5.11.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -82,6 +82,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 + * Thu May 14 2015 Rex Dieter 5.10.0-2 - .spec cosmetics, own and fully %%lang'ify %%{_datadir}/locale/*/LC_SCRIPTS/ki18n5/ (#1157349) diff --git a/sources b/sources index 0f18850..dd6f3a2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c9d5a36b3f036f26aeccbb7854875276 ki18n-5.10.0.tar.xz +a6bd7a449ccfbbab1a3e400d984ceabe ki18n-5.11.0.tar.xz From efd50df9c9cd5ff2286de66a33c814a9101a8c4d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 13:14:05 +0000 Subject: [PATCH 032/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b5c6593..0bd56f9 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.11.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -82,6 +82,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 6027177b9279571880952f061714c14d67db0272 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 9 Jul 2015 12:48:41 -0500 Subject: [PATCH 033/190] 5.12.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3082ecc..7ee7525 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /ki18n-5.9.0.tar.xz /ki18n-5.10.0.tar.xz /ki18n-5.11.0.tar.xz +/ki18n-5.12.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0bd56f9..bd7fac8 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.11.0 -Release: 2%{?dist} +Version: 5.12.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -82,6 +82,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jul 09 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 dd6f3a2..5a0235e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a6bd7a449ccfbbab1a3e400d984ceabe ki18n-5.11.0.tar.xz +146da9ecae1e489d462309092011edd2 ki18n-5.12.0.tar.xz From a08a82f4161cfcf754e3273a18c9a4389c99ef44 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 9 Jul 2015 13:35:25 -0500 Subject: [PATCH 034/190] update %files --- kf5-ki18n.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bd7fac8..be3f690 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -66,6 +66,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %{_kf5_qtplugindir}/kf5/ktranscript.so %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ +%lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ %lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ %lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ From 45018ed01574279ce3bad65075338a7539a7b570 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 19 Aug 2015 16:48:38 +0200 Subject: [PATCH 035/190] KDE Frameworks 5.13.0 --- .gitignore | 1 + kf5-ki18n.spec | 17 +++++++++++++---- sources | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 7ee7525..fab81b8 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /ki18n-5.10.0.tar.xz /ki18n-5.11.0.tar.xz /ki18n-5.12.0.tar.xz +/ki18n-5.13.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index be3f690..679d1ff 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.12.0 +Version: 5.13.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -19,13 +19,13 @@ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{fra BuildRequires: perl -BuildRequires: kf5-rpm-macros -BuildRequires: extra-cmake-modules +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: extra-cmake-modules >= %{version} BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtscript-devel BuildRequires: gettext -Requires: kf5-filesystem +Requires: kf5-filesystem >= %{version} %description KDE Frameworks 5 Tier 1 addon for localization. @@ -83,6 +83,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 + * Thu Jul 09 2015 Rex Dieter - 5.12.0-1 - 5.12.0 diff --git a/sources b/sources index 5a0235e..9246f83 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -146da9ecae1e489d462309092011edd2 ki18n-5.12.0.tar.xz +cfd83c271590f9e627fafd3a2a0420c7 ki18n-5.13.0.tar.xz From 8de7989e888ed62f5f9eaadcb3f33d4e3e3cccf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Wed, 16 Sep 2015 13:45:51 +0200 Subject: [PATCH 036/190] KDE Frameworks 5.14.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fab81b8..6344480 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /ki18n-5.11.0.tar.xz /ki18n-5.12.0.tar.xz /ki18n-5.13.0.tar.xz +/ki18n-5.14.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 679d1ff..7f18a87 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.13.0 +Version: 5.14.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -83,6 +83,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 9246f83..7f6d964 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cfd83c271590f9e627fafd3a2a0420c7 ki18n-5.13.0.tar.xz +a6d89fc546487e02dc921a7c21cb782d ki18n-5.14.0.tar.xz From 78df17e56e578380536f793206add4b2fbd19f99 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 21 Sep 2015 12:40:59 -0500 Subject: [PATCH 037/190] +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..8ac063f --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +ki18n From 97bc4145769148b103ff5d7f3292774d94755b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Thu, 8 Oct 2015 15:04:33 +0200 Subject: [PATCH 038/190] KDE Frameworks 5.15.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6344480..91a8465 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /ki18n-5.12.0.tar.xz /ki18n-5.13.0.tar.xz /ki18n-5.14.0.tar.xz +/ki18n-5.15.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7f18a87..9d8eb72 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.14.0 +Version: 5.15.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -83,6 +83,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 7f6d964..4d3f91b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a6d89fc546487e02dc921a7c21cb782d ki18n-5.14.0.tar.xz +6b1be481a81380b894d056ddcdd4a34f ki18n-5.15.0.tar.xz From d65254c402ba500ef0f7d78378bebad958c2fee2 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 4 Nov 2015 07:23:48 -0600 Subject: [PATCH 039/190] old sources --- .gitignore | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.gitignore b/.gitignore index 91a8465..b8394bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1 @@ -/ki18n-4.99.0.tar.xz -/ki18n-4.100.0.tar.xz -/ki18n-5.0.0.tar.xz -/ki18n-5.1.0.tar.xz -/ki18n-5.2.0.tar.xz -/ki18n-5.3.0.tar.xz -/ki18n-5.4.0.tar.xz -/ki18n-5.5.0.tar.xz -/ki18n-5.6.0.tar.xz -/ki18n-5.7.0.tar.xz -/ki18n-5.8.0.tar.xz -/ki18n-5.9.0.tar.xz -/ki18n-5.10.0.tar.xz -/ki18n-5.11.0.tar.xz -/ki18n-5.12.0.tar.xz -/ki18n-5.13.0.tar.xz -/ki18n-5.14.0.tar.xz /ki18n-5.15.0.tar.xz From adbd89d02452acaf06d64221ba11777bca292bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 9 Nov 2015 23:07:51 +0100 Subject: [PATCH 040/190] KDE Frameworks 5.16 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b8394bd..ca2bc1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ki18n-5.15.0.tar.xz +/ki18n-5.16.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9d8eb72..cd121e4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.15.0 +Version: 5.16.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -83,6 +83,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 4d3f91b..d9b905b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6b1be481a81380b894d056ddcdd4a34f ki18n-5.15.0.tar.xz +d26f14f17a4b3435f3d9db21592fad90 ki18n-5.16.0.tar.xz From ddb1383c0442ac69c21ad00c5358fd516cadc60e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Tue, 8 Dec 2015 23:35:47 +0100 Subject: [PATCH 041/190] KDE Frameworks 5.17.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 ++++++- sources | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ca2bc1d..f6419a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-5.15.0.tar.xz /ki18n-5.16.0.tar.xz +/ki18n-5.17.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index cd121e4..71f9141 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.16.0 +Version: 5.17.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -24,6 +24,8 @@ BuildRequires: extra-cmake-modules >= %{version} BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtscript-devel BuildRequires: gettext +BuildRequires: qt5-qtdeclarative-devel + Requires: kf5-filesystem >= %{version} @@ -83,6 +85,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 d9b905b..de239a2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d26f14f17a4b3435f3d9db21592fad90 ki18n-5.16.0.tar.xz +91f35b3fba203c887c697fce42cdffbe ki18n-5.17.0.tar.xz From 43a903cb65a704355da623a0a7718d154e1ce88a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Sun, 3 Jan 2016 18:04:01 +0100 Subject: [PATCH 042/190] KDE Frameworks 5.18.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f6419a4..ea9ecd6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ki18n-5.15.0.tar.xz /ki18n-5.16.0.tar.xz /ki18n-5.17.0.tar.xz +/ki18n-5.18.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 71f9141..2082f3e 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.17.0 +Version: 5.18.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -85,6 +85,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 de239a2..0691cd0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -91f35b3fba203c887c697fce42cdffbe ki18n-5.17.0.tar.xz +cbea420a939fedd13f6d4c0b9279b758 ki18n-5.18.0.tar.xz From 5e9fcaad44645c6a0e6f13baab194167fe709b47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 4 Jan 2016 00:52:50 +0100 Subject: [PATCH 043/190] Fix install --- kf5-ki18n.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2082f3e..f38508b 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -75,6 +75,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ %lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ +%lang(zh_CN) %{_datadir}/locale/zh_CN/LC_SCRIPTS/ki18n5/ %files devel %{_kf5_includedir}/ki18n_version.h From a671323820c25440d7a6ce22a529f41441a233d4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 10:15:59 -0600 Subject: [PATCH 044/190] cosmetics, update URL, use %license --- .gitignore | 3 --- kf5-ki18n.spec | 19 +++++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index ea9ecd6..32df5b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -/ki18n-5.15.0.tar.xz -/ki18n-5.16.0.tar.xz -/ki18n-5.17.0.tar.xz /ki18n-5.18.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f38508b..8cd40e5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -6,7 +6,7 @@ Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ -URL: http://www.kde.org +URL: http://projects.kde.org/ki18n %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -17,15 +17,13 @@ URL: http://www.kde.org %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz -BuildRequires: perl - -BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: extra-cmake-modules >= %{version} -BuildRequires: qt5-qtbase-devel -BuildRequires: qt5-qtscript-devel BuildRequires: gettext +BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: perl +BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel - +BuildRequires: qt5-qtscript-devel Requires: kf5-filesystem >= %{version} @@ -56,6 +54,7 @@ make %{?_smp_mflags} -C %{_target_platform} %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} + %find_lang ki18n5_qt --with-qt --all-name @@ -63,7 +62,8 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %postun -p /sbin/ldconfig %files -f ki18n5_qt.lang -%doc COPYING.LIB README.md +%doc README.md +%license COPYING.LIB %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ @@ -86,6 +86,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jan 14 2016 Rex Dieter 5.18.0-1 +- cosmetics, update URL, use %%license + * Sun Jan 03 2016 Daniel Vrátil - 5.18.0-1 - KDE Frameworks 5.18.0 From 922ca0bd23d9e0318e945aca8be7f6c21dfb8d83 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jan 2016 10:16:32 -0600 Subject: [PATCH 045/190] Release++ --- kf5-ki18n.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8cd40e5..c658051 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -86,7 +86,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog -* Thu Jan 14 2016 Rex Dieter 5.18.0-1 +* 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 From ae6fecc75ef251e845bbf719e21de354fde06028 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 02:02:37 +0000 Subject: [PATCH 046/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c658051..0e67bb5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.18.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -86,6 +86,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 445efd56bc99a28dcd72ca91951ce68f2f0dbcfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 11 Feb 2016 15:24:23 +0100 Subject: [PATCH 047/190] KDE Frameworks 5.19.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 32df5b4..727ed95 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ki18n-5.18.0.tar.xz +/ki18n-5.19.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0e67bb5..0507e71 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.18.0 -Release: 3%{?dist} +Version: 5.19.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -86,6 +86,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 0691cd0..b711163 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cbea420a939fedd13f6d4c0b9279b758 ki18n-5.18.0.tar.xz +281cfa08356179d250b67b6d19b85b46 ki18n-5.19.0.tar.xz From b6ca3be576cb405c23ae89f47cbf6738b59e4cf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 14 Mar 2016 11:48:00 +0100 Subject: [PATCH 048/190] KDE Frameworks 5.20.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 727ed95..f912d4c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-5.18.0.tar.xz /ki18n-5.19.0.tar.xz +/ki18n-5.20.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0507e71..5a26a19 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.19.0 +Version: 5.20.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -86,6 +86,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 b711163..5ad8cdb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -281cfa08356179d250b67b6d19b85b46 ki18n-5.19.0.tar.xz +b2c5edb59d6ab4fd78d0bf68cfb631c6 ki18n-5.20.0.tar.xz From 3ec4d4d3e488ce58efac761b5e07696acbf33056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Mon, 14 Mar 2016 14:17:05 +0100 Subject: [PATCH 049/190] Install translations --- kf5-ki18n.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 5a26a19..0d374ff 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -69,6 +69,8 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ +%lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ +%lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ %lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ %lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ From e43a0468af5b673dcac0a23b245e3e6b3d5003fe Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Apr 2016 08:23:41 -0500 Subject: [PATCH 050/190] KDE Frameworks 5.21.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f912d4c..5fc57b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ki18n-5.18.0.tar.xz /ki18n-5.19.0.tar.xz /ki18n-5.20.0.tar.xz +/ki18n-5.21.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0d374ff..7c4938f 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.20.0 +Version: 5.21.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -88,6 +88,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 5ad8cdb..4cc8b52 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b2c5edb59d6ab4fd78d0bf68cfb631c6 ki18n-5.20.0.tar.xz +b96cc4d8aa9ae3368463c1a7c647c17f ki18n-5.21.0.tar.xz From 8b2665f9adde9469a35f6f71963101726723044c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Apr 2016 10:54:59 -0500 Subject: [PATCH 051/190] update %%files --- kf5-ki18n.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7c4938f..641afd1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -66,6 +66,8 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %license COPYING.LIB %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_qtplugindir}/kf5/ktranscript.so +%lang(ca) %{_datadir}/locale/ca/LC_SCRIPTS/ki18n5/ +%lang(ca@valencia) %{_datadir}/locale/ca@valencia/LC_SCRIPTS/ki18n5/ %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ From f1fb4503cf8f227fc8a9a2ca605af45dc775cce8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 May 2016 09:52:45 -0500 Subject: [PATCH 052/190] KDE Frameworks 5.22.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5fc57b8..17f935b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /ki18n-5.19.0.tar.xz /ki18n-5.20.0.tar.xz /ki18n-5.21.0.tar.xz +/ki18n-5.22.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 641afd1..226954e 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.21.0 +Version: 5.22.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -90,6 +90,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 16 2016 Rex Dieter - 5.22.0-1 +- KDE Frameworks 5.22.0 + * Mon Apr 04 2016 Rex Dieter - 5.21.0-1 - KDE Frameworks 5.21.0 diff --git a/sources b/sources index 4cc8b52..07e8cc6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b96cc4d8aa9ae3368463c1a7c647c17f ki18n-5.21.0.tar.xz +9fa8448a8bc458756ad0996603560462 ki18n-5.22.0.tar.xz From 0be5b50e40835fcc653c2e47e284a34260172224 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 09:20:23 -0500 Subject: [PATCH 053/190] update URL --- kf5-ki18n.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 226954e..04b5aaa 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,11 +2,11 @@ Name: kf5-%{framework} Version: 5.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ -URL: http://projects.kde.org/ki18n +URL: https://quickgit.kde.org/?p=%{framework}.git %global versiondir %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -90,6 +90,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 07 2016 Rex Dieter - 5.22.0-2 +- update URL + * Mon May 16 2016 Rex Dieter - 5.22.0-1 - KDE Frameworks 5.22.0 From b2c23f60a02845efe686ea65204cee5d695acd6f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jun 2016 10:29:02 -0500 Subject: [PATCH 054/190] KDE Frameworks 5.23.0 --- .gitignore | 1 + clog | 2 ++ kf5-ki18n.spec | 7 +++++-- sources | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 clog diff --git a/.gitignore b/.gitignore index 17f935b..97497d1 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /ki18n-5.20.0.tar.xz /ki18n-5.21.0.tar.xz /ki18n-5.22.0.tar.xz +/ki18n-5.23.0.tar.xz diff --git a/clog b/clog new file mode 100644 index 0000000..6160085 --- /dev/null +++ b/clog @@ -0,0 +1,2 @@ +update URL + diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 04b5aaa..c478cab 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.22.0 -Release: 2%{?dist} +Version: 5.23.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -90,6 +90,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 + * Tue Jun 07 2016 Rex Dieter - 5.22.0-2 - update URL diff --git a/sources b/sources index 07e8cc6..be79d93 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9fa8448a8bc458756ad0996603560462 ki18n-5.22.0.tar.xz +eee903d5ed5575487769403a4979c016 ki18n-5.23.0.tar.xz From e387727dfffdb79f0266cc136b7a3442a71a3ebe Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 25 Jun 2016 08:34:17 -0500 Subject: [PATCH 055/190] rm clog --- clog | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 clog diff --git a/clog b/clog deleted file mode 100644 index 6160085..0000000 --- a/clog +++ /dev/null @@ -1,2 +0,0 @@ -update URL - From e9c5880a4c879c087e69f6bb3fadfda67f0e01d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Wed, 6 Jul 2016 17:55:55 +0200 Subject: [PATCH 056/190] KDE Frameworks 5.24.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 97497d1..4d48e91 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /ki18n-5.21.0.tar.xz /ki18n-5.22.0.tar.xz /ki18n-5.23.0.tar.xz +/ki18n-5.24.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c478cab..bc10bfb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.23.0 +Version: 5.24.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -90,6 +90,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 be79d93..0882a13 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -eee903d5ed5575487769403a4979c016 ki18n-5.23.0.tar.xz +dce1577097eec63a478c6968e3611100 ki18n-5.24.0.tar.xz From 80ccb34247f62ab7d963cb0091f6c18feb99df7e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 14 Jul 2016 08:47:30 -0500 Subject: [PATCH 057/190] devel: (Build)Requires: python --- kf5-ki18n.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bc10bfb..a8ca14f 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.24.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -21,6 +21,8 @@ BuildRequires: extra-cmake-modules >= %{version} BuildRequires: gettext BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: perl +# FindPythonInterp.cmake , can find/use multiple versions, rely on the default for now +BuildRequires: python BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qtscript-devel @@ -34,6 +36,7 @@ KDE Frameworks 5 Tier 1 addon for localization. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: gettext +Requires: python %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -90,6 +93,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jul 14 2016 Rex Dieter - 5.24.0-2 +- -devel: (Build)Requires: python + * Wed Jul 06 2016 Daniel Vrátil - 5.24.0-1 - KDE Frameworks 5.24.0 From 8a3b60b9e2a3c48d70154148ed67c7795f8bd42b 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 058/190] KDE Frameworks 5.25.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4d48e91..bb82115 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /ki18n-5.22.0.tar.xz /ki18n-5.23.0.tar.xz /ki18n-5.24.0.tar.xz +/ki18n-5.25.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index a8ca14f..1f0116c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.24.0 -Release: 2%{?dist} +Version: 5.25.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -93,6 +93,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 + * Thu Jul 14 2016 Rex Dieter - 5.24.0-2 - -devel: (Build)Requires: python diff --git a/sources b/sources index 0882a13..46b2fd5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dce1577097eec63a478c6968e3611100 ki18n-5.24.0.tar.xz +051c7cab151f9d361d6da83968fb68d2 ki18n-5.25.0.tar.xz From 2bde83a46152c9dc78c1b954b232075faea28397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Thu, 8 Sep 2016 10:27:43 +0200 Subject: [PATCH 059/190] KDE Frameworks 5.26.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bb82115..c1a0a74 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /ki18n-5.23.0.tar.xz /ki18n-5.24.0.tar.xz /ki18n-5.25.0.tar.xz +/ki18n-5.26.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1f0116c..b556afb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.25.0 +Version: 5.26.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -93,6 +93,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 46b2fd5..a1a72f7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -051c7cab151f9d361d6da83968fb68d2 ki18n-5.25.0.tar.xz +9529e66256c60a171d95b2c51236e7f3 ki18n-5.26.0.tar.xz From a18b8660b6e335c68041ab1a752f915855c6b370 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Oct 2016 13:38:17 -0500 Subject: [PATCH 060/190] 5.27.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c1a0a74..4084ebe 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /ki18n-5.24.0.tar.xz /ki18n-5.25.0.tar.xz /ki18n-5.26.0.tar.xz +/ki18n-5.27.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b556afb..1bd10ea 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.26.0 -Release: 1%{?dist} +Version: 5.27.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -93,6 +93,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Oct 03 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 a1a72f7..766dd8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9529e66256c60a171d95b2c51236e7f3 ki18n-5.26.0.tar.xz +9b8848b193da6d8920d7853430408c0b ki18n-5.27.0.tar.xz From 7b32884b2fad85a5de6e3d3325c2af2ee4123e02 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 09:01:41 -0600 Subject: [PATCH 061/190] 5.29.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4084ebe..68b23ff 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /ki18n-5.25.0.tar.xz /ki18n-5.26.0.tar.xz /ki18n-5.27.0.tar.xz +/ki18n-5.29.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1bd10ea..a2870a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.27.0 +Version: 5.29.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -93,6 +93,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Dec 16 2016 Rex Dieter - 5.29.0-1 +- 5.29.0 + * Mon Oct 03 2016 Rex Dieter - 5.27.0-1 - 5.27.0 diff --git a/sources b/sources index 766dd8a..0167cf7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9b8848b193da6d8920d7853430408c0b ki18n-5.27.0.tar.xz +SHA512 (ki18n-5.29.0.tar.xz) = fb756defe6392584e85ecf9f4d5d54499f458c28ccd3f8b9b266796f2748829584526872120af8a4164ac8b7580d919c20218f0dd9495d54a27fcc5abd7881fc From ee2432736a2aceb53a77b85e9b7cad81e3746e4f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 16 Dec 2016 11:45:58 -0600 Subject: [PATCH 062/190] 5.29.0 --- kf5-ki18n.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index a2870a1..265bbde 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -96,6 +96,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} * Fri Dec 16 2016 Rex Dieter - 5.29.0-1 - 5.29.0 +* Fri Dec 16 2016 Rex Dieter - 5.29.0-1 +- 5.29.0 + * Mon Oct 03 2016 Rex Dieter - 5.27.0-1 - 5.27.0 From 8ad8a9937efda0817f6025ec66516e7d06fc90a9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 2 Jan 2017 10:34:52 -0600 Subject: [PATCH 063/190] filter plugin provides --- kf5-ki18n.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 265bbde..4e8cb88 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.29.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -17,6 +17,9 @@ URL: https://quickgit.kde.org/?p=%{framework}.git %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +# filter plugin provides +%global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ + BuildRequires: extra-cmake-modules >= %{version} BuildRequires: gettext BuildRequires: kf5-rpm-macros >= %{version} @@ -93,6 +96,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jan 02 2017 Rex Dieter - 5.29.0-2 +- filter plugin provides + * Fri Dec 16 2016 Rex Dieter - 5.29.0-1 - 5.29.0 From eb55e881ad70f7a7eb2345b1b7bcc5cce2545483 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 6 Feb 2017 12:07:05 -0600 Subject: [PATCH 064/190] 5.31.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 68b23ff..a140e4f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /ki18n-5.26.0.tar.xz /ki18n-5.27.0.tar.xz /ki18n-5.29.0.tar.xz +/ki18n-5.31.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 4e8cb88..ac26ac6 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.29.0 -Release: 2%{?dist} +Version: 5.31.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -96,6 +96,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 06 2017 Rex Dieter - 5.31.0-1 +- 5.31.0 + * Mon Jan 02 2017 Rex Dieter - 5.29.0-2 - filter plugin provides diff --git a/sources b/sources index 0167cf7..a5d1c76 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.29.0.tar.xz) = fb756defe6392584e85ecf9f4d5d54499f458c28ccd3f8b9b266796f2748829584526872120af8a4164ac8b7580d919c20218f0dd9495d54a27fcc5abd7881fc +SHA512 (ki18n-5.31.0.tar.xz) = cd25acfae1ff9d47290dc9c1b4e247aac1d3d5c69dbd3205272752a99fde30738bf7a6e99ef4ae61de16205c168739c4a8307c15568b28634d5be5b941e2e31b From 92788c3b93f584a808946ead7407b4e9ba0cc51f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 4 Mar 2017 14:27:42 -0600 Subject: [PATCH 065/190] 5.32.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a140e4f..6aa2276 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /ki18n-5.27.0.tar.xz /ki18n-5.29.0.tar.xz /ki18n-5.31.0.tar.xz +/ki18n-5.32.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ac26ac6..7d5d1f7 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.31.0 +Version: 5.32.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,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 a5d1c76..9223ef6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.31.0.tar.xz) = cd25acfae1ff9d47290dc9c1b4e247aac1d3d5c69dbd3205272752a99fde30738bf7a6e99ef4ae61de16205c168739c4a8307c15568b28634d5be5b941e2e31b +SHA512 (ki18n-5.32.0.tar.xz) = 5848ee6779a725e18fd2d922c57475b6adf85e6dd372da992ea654df3a9dd1999681d3adb54f8a9794db1441dfa084ec9ec34d2020c6c97f56899d2f27bda6a3 From 8b1bb7334e40d6bdc694b1a7a53848532cf4bb29 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Apr 2017 08:14:08 -0500 Subject: [PATCH 066/190] 5.33.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6aa2276..2274cad 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /ki18n-5.29.0.tar.xz /ki18n-5.31.0.tar.xz /ki18n-5.32.0.tar.xz +/ki18n-5.33.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7d5d1f7..1f21a0d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,12 +1,12 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.32.0 +Version: 5.33.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ -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) @@ -96,6 +96,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 9223ef6..40be876 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.32.0.tar.xz) = 5848ee6779a725e18fd2d922c57475b6adf85e6dd372da992ea654df3a9dd1999681d3adb54f8a9794db1441dfa084ec9ec34d2020c6c97f56899d2f27bda6a3 +SHA512 (ki18n-5.33.0.tar.xz) = 0c806cb5aeaf553098be0f8aa47d20ad860cf2307dc1e0f8b9fc81ba669cf4af0f08ae4ea5a9ef769abdc3998228083ce621030ab8dd331d7e4d5076d82dd960 From a59a68030ffb9ce261352fae61df8856cc18583d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 11:08:48 -0500 Subject: [PATCH 067/190] 5.34.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2274cad..3dbf18f 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /ki18n-5.31.0.tar.xz /ki18n-5.32.0.tar.xz /ki18n-5.33.0.tar.xz +/ki18n-5.34.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1f21a0d..bdeddfd 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.33.0 +Version: 5.34.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,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 40be876..e5c6fb5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.33.0.tar.xz) = 0c806cb5aeaf553098be0f8aa47d20ad860cf2307dc1e0f8b9fc81ba669cf4af0f08ae4ea5a9ef769abdc3998228083ce621030ab8dd331d7e4d5076d82dd960 +SHA512 (ki18n-5.34.0.tar.xz) = 1c7c33442d48d9a6e9e948b05a27b570d77f336fe3f5210dcb40246d9022183efa6942607a9793460e00feb14f6aea6ff8ebdf281e132f2b07eae158bd9ad6c3 From 6551b81d6002605f2c2128da27b662cf6446d901 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 14:13:11 -0500 Subject: [PATCH 068/190] update %%files --- kf5-ki18n.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bdeddfd..8698f25 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -76,6 +76,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %lang(ca@valencia) %{_datadir}/locale/ca@valencia/LC_SCRIPTS/ki18n5/ %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ +%lang(jp) %{_datadir}/locale/ja/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ %lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ %lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ From 65fb4bf82307c20a4feb76eddd25dab1ecfb4b53 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 15 May 2017 14:38:55 -0500 Subject: [PATCH 069/190] fix ja locale --- kf5-ki18n.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8698f25..92c7803 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.34.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -76,7 +76,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %lang(ca@valencia) %{_datadir}/locale/ca@valencia/LC_SCRIPTS/ki18n5/ %lang(fi) %{_datadir}/locale/fi/LC_SCRIPTS/ki18n5/ %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ -%lang(jp) %{_datadir}/locale/ja/LC_SCRIPTS/ki18n5/ +%lang(ja) %{_datadir}/locale/ja/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ %lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ %lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 15 2017 Rex Dieter - 5.34.0-2 +- fix ja locale + * Mon May 15 2017 Rex Dieter - 5.34.0-1 - 5.34.0 From 10ec58336517013a3deceb0d0f2a7648dabbf56d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Jun 2017 07:19:22 -0500 Subject: [PATCH 070/190] 5.35.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3dbf18f..65bc231 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /ki18n-5.32.0.tar.xz /ki18n-5.33.0.tar.xz /ki18n-5.34.0.tar.xz +/ki18n-5.35.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 92c7803..38c2f59 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.34.0 -Release: 2%{?dist} +Version: 5.35.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,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-2 - fix ja locale diff --git a/sources b/sources index e5c6fb5..4f2d314 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.34.0.tar.xz) = 1c7c33442d48d9a6e9e948b05a27b570d77f336fe3f5210dcb40246d9022183efa6942607a9793460e00feb14f6aea6ff8ebdf281e132f2b07eae158bd9ad6c3 +SHA512 (ki18n-5.35.0.tar.xz) = 9bbfe5a33f3796a4a145d78916199aac0faabd383b2bfc8d5699edb221d18524d2e60ef9008a9244f7aec016692f6a1fcf1fe09c8a4c9345ee59dbeecded5729 From 45b30125010ebed326bf6f9b8fe6cb85cf1a1740 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Jul 2017 12:10:51 -0500 Subject: [PATCH 071/190] 5.36.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 65bc231..f6fdf91 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /ki18n-5.33.0.tar.xz /ki18n-5.34.0.tar.xz /ki18n-5.35.0.tar.xz +/ki18n-5.36.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 38c2f59..0d41274 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.35.0 +Version: 5.36.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 4f2d314..aff88c2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.35.0.tar.xz) = 9bbfe5a33f3796a4a145d78916199aac0faabd383b2bfc8d5699edb221d18524d2e60ef9008a9244f7aec016692f6a1fcf1fe09c8a4c9345ee59dbeecded5729 +SHA512 (ki18n-5.36.0.tar.xz) = 4c98c668ed29fcf2e240d3c03316042973605573a22aac37eb63590a6e1f6592ea5e9f13d1c9ecb12bd0b29c0c98e92ef468e803e0786b46e47a6361ee202790 From 29da5972188a643f5b55ab6b3b254ce2fc5b0751 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jul 2017 07:51:38 -0500 Subject: [PATCH 072/190] pull in upstream fix --- .gitignore | 1 + kf5-ki18n.spec | 8 +++++++- sources | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f6fdf91..df5e56a 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /ki18n-5.34.0.tar.xz /ki18n-5.35.0.tar.xz /ki18n-5.36.0.tar.xz +/0001-Make-sure-that-the-tsfiles-target-is-generated.patch diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0d41274..455d846 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -17,6 +17,9 @@ URL: https://cgit.kde.org/%{framework}.git %endif Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +## upstream patches +Patch1: 0001-Make-sure-that-the-tsfiles-target-is-generated.patch + # filter plugin provides %global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ @@ -97,6 +100,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jul 06 2017 Rex Dieter - 5.36.0-2 +- pull in upstream fix + * Mon Jul 03 2017 Rex Dieter - 5.36.0-1 - 5.36.0 diff --git a/sources b/sources index aff88c2..ce2889a 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (ki18n-5.36.0.tar.xz) = 4c98c668ed29fcf2e240d3c03316042973605573a22aac37eb63590a6e1f6592ea5e9f13d1c9ecb12bd0b29c0c98e92ef468e803e0786b46e47a6361ee202790 +SHA512 (0001-Make-sure-that-the-tsfiles-target-is-generated.patch) = 87d2b74932f3172219069c80cc1651c021dd6f2247cb1c4f487c6eb83a10a142232256b879abbbaf9cb7fee4812a7ee198cc3f84e925b3be859bbf519424afa8 From c9955f3dd1721c40888dcff16f026c3355d0812a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 7 Jul 2017 08:54:16 -0500 Subject: [PATCH 073/190] respin --- .gitignore | 17 ----------------- kf5-ki18n.spec | 6 ++++-- sources | 3 +-- 3 files changed, 5 insertions(+), 21 deletions(-) diff --git a/.gitignore b/.gitignore index df5e56a..1811614 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1 @@ -/ki18n-5.18.0.tar.xz -/ki18n-5.19.0.tar.xz -/ki18n-5.20.0.tar.xz -/ki18n-5.21.0.tar.xz -/ki18n-5.22.0.tar.xz -/ki18n-5.23.0.tar.xz -/ki18n-5.24.0.tar.xz -/ki18n-5.25.0.tar.xz -/ki18n-5.26.0.tar.xz -/ki18n-5.27.0.tar.xz -/ki18n-5.29.0.tar.xz -/ki18n-5.31.0.tar.xz -/ki18n-5.32.0.tar.xz -/ki18n-5.33.0.tar.xz -/ki18n-5.34.0.tar.xz -/ki18n-5.35.0.tar.xz /ki18n-5.36.0.tar.xz -/0001-Make-sure-that-the-tsfiles-target-is-generated.patch diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 455d846..39f6179 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -18,7 +18,6 @@ URL: https://cgit.kde.org/%{framework}.git Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstream patches -Patch1: 0001-Make-sure-that-the-tsfiles-target-is-generated.patch # filter plugin provides %global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ @@ -100,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Jul 07 2017 Rex Dieter - 5.36.0-3 +- respin + * Thu Jul 06 2017 Rex Dieter - 5.36.0-2 - pull in upstream fix diff --git a/sources b/sources index ce2889a..c7fdcb5 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (ki18n-5.36.0.tar.xz) = 4c98c668ed29fcf2e240d3c03316042973605573a22aac37eb63590a6e1f6592ea5e9f13d1c9ecb12bd0b29c0c98e92ef468e803e0786b46e47a6361ee202790 -SHA512 (0001-Make-sure-that-the-tsfiles-target-is-generated.patch) = 87d2b74932f3172219069c80cc1651c021dd6f2247cb1c4f487c6eb83a10a142232256b879abbbaf9cb7fee4812a7ee198cc3f84e925b3be859bbf519424afa8 +SHA512 (ki18n-5.36.0.tar.xz) = b2de34a5320d76a565e29a4f6649520351c14bbb19ff1baea1a5ca38c4d791735d4bdd2a0baf90692aba3d34b8b7c8e8518c300c619e0cc7d26765795a78bc0f From 17d23e685495d386b18919214e54c8d90aa47c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 12 Jul 2017 15:15:54 +0200 Subject: [PATCH 074/190] perl dependency renamed to perl-interpreter --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 39f6179..fc2a07d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -25,7 +25,7 @@ Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{fra BuildRequires: extra-cmake-modules >= %{version} BuildRequires: gettext BuildRequires: kf5-rpm-macros >= %{version} -BuildRequires: perl +BuildRequires: perl-interpreter # FindPythonInterp.cmake , can find/use multiple versions, rely on the default for now BuildRequires: python BuildRequires: qt5-qtbase-devel From d85d426da9ee775f3168160bb581a7765e020bdc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 15:17:13 +0000 Subject: [PATCH 075/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index fc2a07d..2c01196 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -99,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Jul 07 2017 Rex Dieter - 5.36.0-3 - respin From bf1a9d757f9a93cb0a1f67ec9b245f3278bc2858 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 00:26:39 +0000 Subject: [PATCH 076/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2c01196..31fd9e0 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.36.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -99,6 +99,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 5.36.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 5.36.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 9241778deed925fee94c1d75eff4cdfdaa29990f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 25 Aug 2017 09:30:58 -0500 Subject: [PATCH 077/190] 5.37.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1811614..9696564 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ki18n-5.36.0.tar.xz +/ki18n-5.37.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 31fd9e0..f126bbf 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.36.0 -Release: 5%{?dist} +Version: 5.37.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -99,6 +99,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-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index c7fdcb5..b8b7723 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.36.0.tar.xz) = b2de34a5320d76a565e29a4f6649520351c14bbb19ff1baea1a5ca38c4d791735d4bdd2a0baf90692aba3d34b8b7c8e8518c300c619e0cc7d26765795a78bc0f +SHA512 (ki18n-5.37.0.tar.xz) = b4e25b9e20cab9406087c859cd4a899ff29187820f507f8cc6b061af3bc51b958e915c9273241b9e0ac3e4344db73b67b3ace0d9ad127e119fe051e45700cb19 From e0c939fd6572edd6f9d11c3a73fdf79e6c85efa8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 11 Sep 2017 14:57:49 -0500 Subject: [PATCH 078/190] 5.38.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9696564..083306c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-5.36.0.tar.xz /ki18n-5.37.0.tar.xz +/ki18n-5.38.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f126bbf..11c6eec 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.37.0 +Version: 5.38.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -99,6 +99,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 b8b7723..f523b64 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.37.0.tar.xz) = b4e25b9e20cab9406087c859cd4a899ff29187820f507f8cc6b061af3bc51b958e915c9273241b9e0ac3e4344db73b67b3ace0d9ad127e119fe051e45700cb19 +SHA512 (ki18n-5.38.0.tar.xz) = ae8e237de2c3acd5697f00177aae80d03c6f65788b3ae9f0edcfd6f01984a8cdc7fb3423317ce5bbd36f85411bff2f9714c3546fd01ede43572557510d0082a6 From 0ce7695ebd376bcae1472c9290232afe9fb41bb8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Oct 2017 10:01:45 -0500 Subject: [PATCH 079/190] 5.39.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 083306c..cb23364 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ki18n-5.36.0.tar.xz /ki18n-5.37.0.tar.xz /ki18n-5.38.0.tar.xz +/ki18n-5.39.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 11c6eec..c0113ff 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.38.0 +Version: 5.39.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -99,6 +99,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 f523b64..cb69044 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.38.0.tar.xz) = ae8e237de2c3acd5697f00177aae80d03c6f65788b3ae9f0edcfd6f01984a8cdc7fb3423317ce5bbd36f85411bff2f9714c3546fd01ede43572557510d0082a6 +SHA512 (ki18n-5.39.0.tar.xz) = 0baefd0404a37666fd6d5e66328e94d05e1540e3be098a59aeb28589b3111ff1769fe880b5f8db1379dad229ed5a2bfe7b3535938c753a00fb7bee12c6b5953c From d7b54a58288bfab29805293a654ab1e53ea77d5f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Oct 2017 12:50:28 -0500 Subject: [PATCH 080/190] update %%files --- kf5-ki18n.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c0113ff..1d6cb1c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -88,7 +88,6 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ %lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ -%lang(zh_CN) %{_datadir}/locale/zh_CN/LC_SCRIPTS/ki18n5/ %files devel %{_kf5_includedir}/ki18n_version.h From 7689c4f3750b32bd7cd3fb180c23ccde97639701 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 10 Nov 2017 09:38:20 -0600 Subject: [PATCH 081/190] 5.40.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index cb23364..7482300 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /ki18n-5.37.0.tar.xz /ki18n-5.38.0.tar.xz /ki18n-5.39.0.tar.xz +/ki18n-5.40.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1d6cb1c..231aae1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.39.0 +Version: 5.40.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 10 2017 Rex Dieter - 5.40.0-1 +- 5.40.0 + * Sun Oct 08 2017 Rex Dieter - 5.39.0-1 - 5.39.0 diff --git a/sources b/sources index cb69044..5b95115 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.39.0.tar.xz) = 0baefd0404a37666fd6d5e66328e94d05e1540e3be098a59aeb28589b3111ff1769fe880b5f8db1379dad229ed5a2bfe7b3535938c753a00fb7bee12c6b5953c +SHA512 (ki18n-5.40.0.tar.xz) = cfdabb1c22d0ae275c274b4e0d40af94305364bf69a8152c6d9064dcc4d5b8d208eace8b2679c4eb97f095ce5af5582350fec1564ace049d2f63e852b4249bd3 From 94b3c1684da460bceb581c43bb0d1380e21e3d94 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Dec 2017 10:39:57 -0600 Subject: [PATCH 082/190] 5.41.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7482300..134db47 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /ki18n-5.38.0.tar.xz /ki18n-5.39.0.tar.xz /ki18n-5.40.0.tar.xz +/ki18n-5.41.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 231aae1..81e45a3 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.40.0 +Version: 5.41.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,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 5b95115..d7d7040 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.40.0.tar.xz) = cfdabb1c22d0ae275c274b4e0d40af94305364bf69a8152c6d9064dcc4d5b8d208eace8b2679c4eb97f095ce5af5582350fec1564ace049d2f63e852b4249bd3 +SHA512 (ki18n-5.41.0.tar.xz) = 9e108cd8f9cc32c3fe1447415b427981baac58c01cd3127fe0df58b8f7b6ebd6716d48e87b99561c220178f3e6de6e557ce935326451e632028cb6253afd8488 From b585e0eb24f5afdbcf4bab2fed39ce05974c57fe Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 8 Jan 2018 08:59:51 -0600 Subject: [PATCH 083/190] 5.42.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 134db47..6dc72b5 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /ki18n-5.39.0.tar.xz /ki18n-5.40.0.tar.xz /ki18n-5.41.0.tar.xz +/ki18n-5.42.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 81e45a3..93be529 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.41.0 +Version: 5.42.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,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 d7d7040..898d2a8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.41.0.tar.xz) = 9e108cd8f9cc32c3fe1447415b427981baac58c01cd3127fe0df58b8f7b6ebd6716d48e87b99561c220178f3e6de6e557ce935326451e632028cb6253afd8488 +SHA512 (ki18n-5.42.0.tar.xz) = 31d6a548e6d6b0643a063030823d399c956f95a7403939ae63f1d9b03c70b38804bdba9332a473d7619f22fe6c5f65a33ff64f3ac5e12557ed9e1540431f6b87 From db772fad39960a03da96e6fdffe6ffbc986c42a9 Mon Sep 17 00:00:00 2001 From: Iryna Shcherbina Date: Wed, 7 Feb 2018 04:20:11 +0100 Subject: [PATCH 084/190] Update Python 2 dependency declarations to new packaging standards --- kf5-ki18n.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 93be529..b654a85 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.42.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -27,7 +27,7 @@ BuildRequires: gettext BuildRequires: kf5-rpm-macros >= %{version} BuildRequires: perl-interpreter # FindPythonInterp.cmake , can find/use multiple versions, rely on the default for now -BuildRequires: python +BuildRequires: python2 BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qtscript-devel @@ -41,7 +41,7 @@ KDE Frameworks 5 Tier 1 addon for localization. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: gettext -Requires: python +Requires: python2 %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -98,6 +98,10 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Feb 07 2018 Iryna Shcherbina - 5.42.0-2 +- Update Python 2 dependency declarations to new packaging standards + (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) + * Mon Jan 08 2018 Rex Dieter - 5.42.0-1 - 5.42.0 From 91de752a428ca00d3cebb5986a2650908f670d58 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Feb 2018 09:56:39 -0600 Subject: [PATCH 085/190] 5.43.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6dc72b5..11791bd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /ki18n-5.40.0.tar.xz /ki18n-5.41.0.tar.xz /ki18n-5.42.0.tar.xz +/ki18n-5.43.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b654a85..74a2bf8 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.42.0 -Release: 2%{?dist} +Version: 5.43.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Feb 07 2018 Rex Dieter - 5.43.0-1 +- 5.43.0 + * Wed Feb 07 2018 Iryna Shcherbina - 5.42.0-2 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) diff --git a/sources b/sources index 898d2a8..0045e58 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.42.0.tar.xz) = 31d6a548e6d6b0643a063030823d399c956f95a7403939ae63f1d9b03c70b38804bdba9332a473d7619f22fe6c5f65a33ff64f3ac5e12557ed9e1540431f6b87 +SHA512 (ki18n-5.43.0.tar.xz) = 14b7f632feed5c71a44259b4f0d9cc11ab72d7f132a59fba597e048efee7a4ff360eb01b95c5b4957ca28ba8ab0e2cf9ed752cd146f6dc19855c6c78c05a7e6e From d061d96dc93fbf82a095c4687d03a5604ff7a972 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 3 Mar 2018 08:04:36 -0600 Subject: [PATCH 086/190] 5.44.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 11791bd..3b9cc05 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /ki18n-5.41.0.tar.xz /ki18n-5.42.0.tar.xz /ki18n-5.43.0.tar.xz +/ki18n-5.44.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 74a2bf8..f436813 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.43.0 +Version: 5.44.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,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 0045e58..435aca3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.43.0.tar.xz) = 14b7f632feed5c71a44259b4f0d9cc11ab72d7f132a59fba597e048efee7a4ff360eb01b95c5b4957ca28ba8ab0e2cf9ed752cd146f6dc19855c6c78c05a7e6e +SHA512 (ki18n-5.44.0.tar.xz) = 92acb91807970f83182f35a3f356e8b9b70e7b3e1b07347ab4f16ef3200d5d95b6819218891b66bd43eee3efa5c17ee4c91c195ef1a05440b6dec7c34747ffa5 From 635c546c37ac54da041ccb2e1824d85d74f05ecf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Apr 2018 07:38:31 -0500 Subject: [PATCH 087/190] 5.45.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3b9cc05..7b440b4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /ki18n-5.42.0.tar.xz /ki18n-5.43.0.tar.xz /ki18n-5.44.0.tar.xz +/ki18n-5.45.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f436813..ad933d5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.44.0 +Version: 5.45.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,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 435aca3..52ad85f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.44.0.tar.xz) = 92acb91807970f83182f35a3f356e8b9b70e7b3e1b07347ab4f16ef3200d5d95b6819218891b66bd43eee3efa5c17ee4c91c195ef1a05440b6dec7c34747ffa5 +SHA512 (ki18n-5.45.0.tar.xz) = 3fde0c71d7ea65064c7a926c02b55ebe082cde673e581acbb24e7f614324de401e8d48ddbca0b15a59de3a8de9be867528124a328465e099b7bf07717fbeaa71 From e3ff8186c8bac6c840b73083721128275d68fc54 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 2 May 2018 10:03:02 -0500 Subject: [PATCH 088/190] pull in upstream fix, cleanup --- .gitignore | 9 --------- kf5-ki18n.spec | 13 ++++++++----- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 7b440b4..44fd63d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1 @@ -/ki18n-5.36.0.tar.xz -/ki18n-5.37.0.tar.xz -/ki18n-5.38.0.tar.xz -/ki18n-5.39.0.tar.xz -/ki18n-5.40.0.tar.xz -/ki18n-5.41.0.tar.xz -/ki18n-5.42.0.tar.xz -/ki18n-5.43.0.tar.xz -/ki18n-5.44.0.tar.xz /ki18n-5.45.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ad933d5..d65479c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.45.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -18,6 +18,7 @@ URL: https://cgit.kde.org/%{framework}.git Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstream patches +Patch1: 0001-Don-t-need-to-run-previous-iterations-commands-again.patch # filter plugin provides %global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ @@ -57,17 +58,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 ki18n5_qt --with-qt --all-name +%find_lang ki18n5_qt --all-name -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files -f ki18n5_qt.lang %doc README.md @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed May 02 2018 Rex Dieter - 5.45.0-2 +- pull in upstream fix, cleanup + * Sun Apr 08 2018 Rex Dieter - 5.45.0-1 - 5.45.0 From 1adfd2f37de936e42b431488c761f73f7469f502 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 2 May 2018 10:06:08 -0500 Subject: [PATCH 089/190] add patch --- ...n-previous-iterations-commands-again.patch | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 0001-Don-t-need-to-run-previous-iterations-commands-again.patch diff --git a/0001-Don-t-need-to-run-previous-iterations-commands-again.patch b/0001-Don-t-need-to-run-previous-iterations-commands-again.patch new file mode 100644 index 0000000..7691617 --- /dev/null +++ b/0001-Don-t-need-to-run-previous-iterations-commands-again.patch @@ -0,0 +1,39 @@ +From 9c32bdab29b345976eee3b9c1c4bebd76cdcdde2 Mon Sep 17 00:00:00 2001 +From: Aleix Pol +Date: Sun, 15 Apr 2018 01:39:58 +0200 +Subject: [PATCH 1/3] Don't need to run previous iterations commands again + +Summary: BUG: 393141 + +Test Plan: +Tested building plasma-workspace, it was clearly faster (although it +would have finished eventually) + +Reviewers: #frameworks, arojas, sitter + +Reviewed By: sitter + +Subscribers: sitter, heikobecker + +Tags: #frameworks + +Differential Revision: https://phabricator.kde.org/D12216 +--- + cmake/build-pofiles.cmake | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/cmake/build-pofiles.cmake b/cmake/build-pofiles.cmake +index d0991ad..b39be31 100644 +--- a/cmake/build-pofiles.cmake ++++ b/cmake/build-pofiles.cmake +@@ -62,6 +62,7 @@ foreach(pofile IN LISTS pofiles) + if(i EQUAL ${numberOfProcesses}) + _processCommands() + set(i 0) ++ set(commands) + endif() + endforeach() + +-- +2.14.3 + From 39766fee95f9bd47e450c05153fe1b518795facf Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 5 May 2018 16:44:48 -0500 Subject: [PATCH 090/190] 5.46.0 --- .gitignore | 1 + ...n-previous-iterations-commands-again.patch | 39 ------------------- kf5-ki18n.spec | 8 ++-- sources | 2 +- 4 files changed, 7 insertions(+), 43 deletions(-) delete mode 100644 0001-Don-t-need-to-run-previous-iterations-commands-again.patch diff --git a/.gitignore b/.gitignore index 44fd63d..9299584 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /ki18n-5.45.0.tar.xz +/ki18n-5.46.0.tar.xz diff --git a/0001-Don-t-need-to-run-previous-iterations-commands-again.patch b/0001-Don-t-need-to-run-previous-iterations-commands-again.patch deleted file mode 100644 index 7691617..0000000 --- a/0001-Don-t-need-to-run-previous-iterations-commands-again.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 9c32bdab29b345976eee3b9c1c4bebd76cdcdde2 Mon Sep 17 00:00:00 2001 -From: Aleix Pol -Date: Sun, 15 Apr 2018 01:39:58 +0200 -Subject: [PATCH 1/3] Don't need to run previous iterations commands again - -Summary: BUG: 393141 - -Test Plan: -Tested building plasma-workspace, it was clearly faster (although it -would have finished eventually) - -Reviewers: #frameworks, arojas, sitter - -Reviewed By: sitter - -Subscribers: sitter, heikobecker - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D12216 ---- - cmake/build-pofiles.cmake | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/cmake/build-pofiles.cmake b/cmake/build-pofiles.cmake -index d0991ad..b39be31 100644 ---- a/cmake/build-pofiles.cmake -+++ b/cmake/build-pofiles.cmake -@@ -62,6 +62,7 @@ foreach(pofile IN LISTS pofiles) - if(i EQUAL ${numberOfProcesses}) - _processCommands() - set(i 0) -+ set(commands) - endif() - endforeach() - --- -2.14.3 - diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index d65479c..9fb7716 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.45.0 -Release: 2%{?dist} +Version: 5.46.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -18,7 +18,6 @@ URL: https://cgit.kde.org/%{framework}.git Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz ## upstream patches -Patch1: 0001-Don-t-need-to-run-previous-iterations-commands-again.patch # filter plugin provides %global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ @@ -98,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat May 05 2018 Rex Dieter - 5.46.0-1 +- 5.46.0 + * Wed May 02 2018 Rex Dieter - 5.45.0-2 - pull in upstream fix, cleanup diff --git a/sources b/sources index 52ad85f..a020fd5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.45.0.tar.xz) = 3fde0c71d7ea65064c7a926c02b55ebe082cde673e581acbb24e7f614324de401e8d48ddbca0b15a59de3a8de9be867528124a328465e099b7bf07717fbeaa71 +SHA512 (ki18n-5.46.0.tar.xz) = d4edabf5708311244ecc02541a0c6f9e90d118a4f0e784cf67d4be906fe890eb56225430ea78926e00da3c2fbf483fd0195f4929e579f1b9e21053696c2bcc17 From a20558b02226df055407d707f6178a03c65c7f3d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 2 Jun 2018 15:59:01 -0500 Subject: [PATCH 091/190] 5.47.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9299584..c8cf53a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-5.45.0.tar.xz /ki18n-5.46.0.tar.xz +/ki18n-5.47.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9fb7716..4ae71f4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.46.0 +Version: 5.47.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 a020fd5..7390281 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.46.0.tar.xz) = d4edabf5708311244ecc02541a0c6f9e90d118a4f0e784cf67d4be906fe890eb56225430ea78926e00da3c2fbf483fd0195f4929e579f1b9e21053696c2bcc17 +SHA512 (ki18n-5.47.0.tar.xz) = 876f330fa911e009889980d1d73f7c685940024302fe8cad4758301c190770a101f59112f5717faf29845ce91149a16ba041004cdf34cd67d1b5345cb6b8db04 From 0969aea3e1cf9cade894e14bedbc9bbb21e296de Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 7 Jun 2018 11:22:29 -0500 Subject: [PATCH 092/190] cleanup, use %majmin --- .gitignore | 1 - kf5-ki18n.spec | 19 +++++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index c8cf53a..24df669 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -/ki18n-5.45.0.tar.xz /ki18n-5.46.0.tar.xz /ki18n-5.47.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 4ae71f4..221ae6b 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,29 +2,29 @@ Name: kf5-%{framework} Version: 5.47.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ URL: https://cgit.kde.org/%{framework}.git -%global versiondir %(echo %{version} | cut -d. -f1-2) +%global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) %if %{revision} >= 50 %global stable unstable %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{versiondir}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstream patches # filter plugin provides %global __provides_exclude_from ^(%{_kf5_plugindir}/.*\\.so)$ -BuildRequires: extra-cmake-modules >= %{version} +BuildRequires: extra-cmake-modules >= %{majmin} BuildRequires: gettext -BuildRequires: kf5-rpm-macros >= %{version} +BuildRequires: kf5-rpm-macros >= %{majmin} BuildRequires: perl-interpreter # FindPythonInterp.cmake , can find/use multiple versions, rely on the default for now BuildRequires: python2 @@ -32,7 +32,7 @@ BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qtscript-devel -Requires: kf5-filesystem >= %{version} +Requires: kf5-filesystem >= %{majmin} %description KDE Frameworks 5 Tier 1 addon for localization. @@ -63,12 +63,12 @@ popd %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang ki18n5_qt --all-name +%find_lang %{name} --all-name --with-html %ldconfig_scriptlets -%files -f ki18n5_qt.lang +%files -f %{name}.lang %doc README.md %license COPYING.LIB %{_kf5_libdir}/libKF5I18n.so.* @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jun 07 2018 Rex Dieter - 5.47.0-2 +- cleanup, use %%majmin + * Sat Jun 02 2018 Rex Dieter - 5.47.0-1 - 5.47.0 From f3bfdefe1f0394bbd665d118b94bd0cfade1a220 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Jun 2018 14:07:24 -0500 Subject: [PATCH 093/190] no %%find_lang --with-html on rhel7 --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 221ae6b..b404274 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -63,7 +63,7 @@ popd %install make install/fast DESTDIR=%{buildroot} -C %{_target_platform} -%find_lang %{name} --all-name --with-html +%find_lang %{name} --all-name %ldconfig_scriptlets From 353e2b6bdc6ccda8568677f49920ff1f209441ef Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 8 Jul 2018 20:02:43 -0500 Subject: [PATCH 094/190] 5.48.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 24df669..59e7a06 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /ki18n-5.46.0.tar.xz /ki18n-5.47.0.tar.xz +/ki18n-5.48.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b404274..5aa7365 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.47.0 -Release: 2%{?dist} +Version: 5.48.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Jul 09 2018 Rex Dieter - 5.48.0-1 +- 5.48.0 + * Thu Jun 07 2018 Rex Dieter - 5.47.0-2 - cleanup, use %%majmin diff --git a/sources b/sources index 7390281..a038ed5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.47.0.tar.xz) = 876f330fa911e009889980d1d73f7c685940024302fe8cad4758301c190770a101f59112f5717faf29845ce91149a16ba041004cdf34cd67d1b5345cb6b8db04 +SHA512 (ki18n-5.48.0.tar.xz) = b757ce1d0dd1becbe658f628f4840cf82d5abf97ccad7657305166a5c7928b315269e9641773cb17d7bf02cba043d24f962578038a07f2de10cdffc186452af2 From 6f4915f0c27169c80a01dc839e6601aeafb2a001 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 07:05:57 +0000 Subject: [PATCH 095/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 5aa7365..fb60b7c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.48.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,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 56c434ba9c61e0eef7edb959fb693b55fcfac5a7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Aug 2018 10:21:04 -0500 Subject: [PATCH 096/190] 5.49.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 59e7a06..5f785a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /ki18n-5.46.0.tar.xz /ki18n-5.47.0.tar.xz /ki18n-5.48.0.tar.xz +/ki18n-5.49.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index fb60b7c..b35f02c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.48.0 -Release: 2%{?dist} +Version: 5.49.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,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 a038ed5..aff7d2d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.48.0.tar.xz) = b757ce1d0dd1becbe658f628f4840cf82d5abf97ccad7657305166a5c7928b315269e9641773cb17d7bf02cba043d24f962578038a07f2de10cdffc186452af2 +SHA512 (ki18n-5.49.0.tar.xz) = 5fb139a2b0b7f1e1f8d4bd6d4f57856b78e5957f76b6262c3c5653c10487b3a81719082874166b9c1eea1d233b3d931c8178c3accbdc4bb354c81eab8237f8ef From b653324fb43873fa82503c7ae31e74976b481ee4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Sep 2018 15:03:05 -0500 Subject: [PATCH 097/190] 5.50.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5f785a7..2ab4b98 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /ki18n-5.47.0.tar.xz /ki18n-5.48.0.tar.xz /ki18n-5.49.0.tar.xz +/ki18n-5.50.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b35f02c..e6dabaa 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.49.0 +Version: 5.50.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 aff7d2d..f42afb0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.49.0.tar.xz) = 5fb139a2b0b7f1e1f8d4bd6d4f57856b78e5957f76b6262c3c5653c10487b3a81719082874166b9c1eea1d233b3d931c8178c3accbdc4bb354c81eab8237f8ef +SHA512 (ki18n-5.50.0.tar.xz) = 4d05eda1f5ab6f08a7aa5617c456c646a7037f1b099f60dbaead1fdabb02ad4579306c3774cf86cc45713c14dcc1b3c12013380150de95ed2e4bb40511aa4e9f From e1f1fa7074c731adc5c586c698f577ddcdb65ab8 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Oct 2018 15:43:36 -0500 Subject: [PATCH 098/190] 5.51.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2ab4b98..9acbad5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /ki18n-5.48.0.tar.xz /ki18n-5.49.0.tar.xz /ki18n-5.50.0.tar.xz +/ki18n-5.51.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index e6dabaa..2388644 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.50.0 +Version: 5.51.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 f42afb0..197db2a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.50.0.tar.xz) = 4d05eda1f5ab6f08a7aa5617c456c646a7037f1b099f60dbaead1fdabb02ad4579306c3774cf86cc45713c14dcc1b3c12013380150de95ed2e4bb40511aa4e9f +SHA512 (ki18n-5.51.0.tar.xz) = ad5b54c3e2825761d236a47a9b9f268cbefe743fd6515e9211443e48a16825ab9913691ae3709e6490f93c2fe9b4c159087e73a00f89b5e19a469ca6548f52ca From e2ad7f522d1a885d2ff7d3bd19fdad01a624a255 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 4 Nov 2018 12:40:29 -0600 Subject: [PATCH 099/190] 5.52.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9acbad5..b5df9bd 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /ki18n-5.49.0.tar.xz /ki18n-5.50.0.tar.xz /ki18n-5.51.0.tar.xz +/ki18n-5.52.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2388644..35841fe 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.51.0 +Version: 5.52.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 197db2a..ffe754c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.51.0.tar.xz) = ad5b54c3e2825761d236a47a9b9f268cbefe743fd6515e9211443e48a16825ab9913691ae3709e6490f93c2fe9b4c159087e73a00f89b5e19a469ca6548f52ca +SHA512 (ki18n-5.52.0.tar.xz) = 67bebc2dbc92d4ebe49760b5a7bd5fe0f6e1cbebda35a72ba45722a22790e802ca35e66ffaa648fea79c55a0b7ea4def3deda303279c8c602838500c47e4bd08 From 6b03dae675024c915d1b2dfa0896866382b6d91d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 9 Dec 2018 08:29:55 -0600 Subject: [PATCH 100/190] 5.53.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b5df9bd..74991e9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /ki18n-5.50.0.tar.xz /ki18n-5.51.0.tar.xz /ki18n-5.52.0.tar.xz +/ki18n-5.53.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 35841fe..ea102c0 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.52.0 +Version: 5.53.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 ffe754c..191463e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.52.0.tar.xz) = 67bebc2dbc92d4ebe49760b5a7bd5fe0f6e1cbebda35a72ba45722a22790e802ca35e66ffaa648fea79c55a0b7ea4def3deda303279c8c602838500c47e4bd08 +SHA512 (ki18n-5.53.0.tar.xz) = c8cf728926b66255650a7cb6cdd5b70c9a9a8d73ca95f54823f6aebabf4d7551efbe5d8a92831238a7216311006bd174e3b7a1580d985a1d681b4201726ddffb From 44199e680b01f32b95aea29ca1e219352155e23d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jan 2019 17:05:02 -0600 Subject: [PATCH 101/190] 5.54.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 74991e9..51782f0 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /ki18n-5.51.0.tar.xz /ki18n-5.52.0.tar.xz /ki18n-5.53.0.tar.xz +/ki18n-5.54.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ea102c0..a2a7cae 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.53.0 +Version: 5.54.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 191463e..26f0e4a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.53.0.tar.xz) = c8cf728926b66255650a7cb6cdd5b70c9a9a8d73ca95f54823f6aebabf4d7551efbe5d8a92831238a7216311006bd174e3b7a1580d985a1d681b4201726ddffb +SHA512 (ki18n-5.54.0.tar.xz) = 1c974a8445cac7474b989b641b154c131f6231d97979d3c54e04b6182b10f87d3412d9e75503ead09499e83d30e2eafeeff9ddd8683fd2005889e675311a5bb6 From 6dd3f223a4710f72cfd3bca8d064a0b503a76a2f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 05:30:27 +0000 Subject: [PATCH 102/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index a2a7cae..7692c8a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.54.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,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 d87ee117049c3ff33d40c48043f1b67a412d07b7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Feb 2019 11:08:47 -0600 Subject: [PATCH 103/190] 5.55.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 51782f0..1360509 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /ki18n-5.52.0.tar.xz /ki18n-5.53.0.tar.xz /ki18n-5.54.0.tar.xz +/ki18n-5.55.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7692c8a..8243c00 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.54.0 -Release: 2%{?dist} +Version: 5.55.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,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 26f0e4a..1747d7c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.54.0.tar.xz) = 1c974a8445cac7474b989b641b154c131f6231d97979d3c54e04b6182b10f87d3412d9e75503ead09499e83d30e2eafeeff9ddd8683fd2005889e675311a5bb6 +SHA512 (ki18n-5.55.0.tar.xz) = 2ecc7493b594e18abccb828bb3d7da63fb5d6f6920829443758ed4745f1a2f5f45852ab71badaaf9109e1daa404ced905135d8a0cda02229e38de6399b3d3cc7 From c74328a2c95383169360fc5003aa4538fd47a87f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Mar 2019 09:01:44 -0600 Subject: [PATCH 104/190] 5.56.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1360509..990ac5f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /ki18n-5.53.0.tar.xz /ki18n-5.54.0.tar.xz /ki18n-5.55.0.tar.xz +/ki18n-5.56.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8243c00..3935d00 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.55.0 +Version: 5.56.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 1747d7c..4cd65a0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.55.0.tar.xz) = 2ecc7493b594e18abccb828bb3d7da63fb5d6f6920829443758ed4745f1a2f5f45852ab71badaaf9109e1daa404ced905135d8a0cda02229e38de6399b3d3cc7 +SHA512 (ki18n-5.56.0.tar.xz) = a7c45251e692b48165dabc4e0ef54cef08cf7e8436eec611b26e4cdb0e747350f531c34b114a62b0093dd3c44f8d95f2a9ce96f79ba9b475b80b45bf053c007c From 52073679037bbe8ac261ec30069d18d3d3d903dc Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Apr 2019 10:09:17 -0500 Subject: [PATCH 105/190] 5.57.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 990ac5f..17d5fce 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /ki18n-5.54.0.tar.xz /ki18n-5.55.0.tar.xz /ki18n-5.56.0.tar.xz +/ki18n-5.57.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3935d00..bc4ce98 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.56.0 +Version: 5.57.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 4cd65a0..986519a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.56.0.tar.xz) = a7c45251e692b48165dabc4e0ef54cef08cf7e8436eec611b26e4cdb0e747350f531c34b114a62b0093dd3c44f8d95f2a9ce96f79ba9b475b80b45bf053c007c +SHA512 (ki18n-5.57.0.tar.xz) = 0d6993b55d79138f735821a7cacdd95db264cc63e11d40fb65c5a8fe2ebd3bec58b688d5d4f8dbb58a6aba41d505aeb9460a5a6de35c91c2426c7e10e9604488 From b6b0f30abcdd72bdfb994ddd3a482f10a6fd5488 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 May 2019 13:56:04 -0500 Subject: [PATCH 106/190] 5.58.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 17d5fce..ef207b4 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /ki18n-5.55.0.tar.xz /ki18n-5.56.0.tar.xz /ki18n-5.57.0.tar.xz +/ki18n-5.58.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bc4ce98..0c7a2e3 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.57.0 +Version: 5.58.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 986519a..105d96f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.57.0.tar.xz) = 0d6993b55d79138f735821a7cacdd95db264cc63e11d40fb65c5a8fe2ebd3bec58b688d5d4f8dbb58a6aba41d505aeb9460a5a6de35c91c2426c7e10e9604488 +SHA512 (ki18n-5.58.0.tar.xz) = dae7dbfeb887db2f799619222702e2767a7a4f83e21a718af7f9376e735928846f4d792f9fa30dcf4d9010efdd5ffd926a89fb0fa9dd068e2573d2d47159a971 From fee652bd3d340e31e5e83eddf2a7509c069da4b4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 6 Jun 2019 12:41:15 -0500 Subject: [PATCH 107/190] 5.59.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ef207b4..103e5cb 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /ki18n-5.56.0.tar.xz /ki18n-5.57.0.tar.xz /ki18n-5.58.0.tar.xz +/ki18n-5.59.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0c7a2e3..7754d47 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.58.0 +Version: 5.59.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,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 105d96f..2a2a860 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.58.0.tar.xz) = dae7dbfeb887db2f799619222702e2767a7a4f83e21a718af7f9376e735928846f4d792f9fa30dcf4d9010efdd5ffd926a89fb0fa9dd068e2573d2d47159a971 +SHA512 (ki18n-5.59.0.tar.xz) = 1cef4e76fbfb39a06dd635f5be03f8b5918ee9f7fccd55fc0e6a75761b96557be2762cc6e0170f2af46df1bde40822060a4f209928958c4a208fd687823dc510 From 43e19f5e24bd91658be568d07d3a78842f19e628 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 13 Jul 2019 12:09:49 -0500 Subject: [PATCH 108/190] 5.60.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 103e5cb..cb40b18 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /ki18n-5.57.0.tar.xz /ki18n-5.58.0.tar.xz /ki18n-5.59.0.tar.xz +/ki18n-5.60.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7754d47..e1cfa6f 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.59.0 +Version: 5.60.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Sat Jul 13 2019 Rex Dieter - 5.60.0-1 +- 5.60.0 + * Thu Jun 06 2019 Rex Dieter - 5.59.0-1 - 5.59.0 diff --git a/sources b/sources index 2a2a860..a8e8e8e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.59.0.tar.xz) = 1cef4e76fbfb39a06dd635f5be03f8b5918ee9f7fccd55fc0e6a75761b96557be2762cc6e0170f2af46df1bde40822060a4f209928958c4a208fd687823dc510 +SHA512 (ki18n-5.60.0.tar.xz) = c49d764861ba539dc77ba05e87d654cc96390d64875636864888052d94ec013411ee6174b3342b178e4f4f2a3ef625ca29a7f3fa7852ee34084a4b480c9dd35a From e4fda8dc7f525aa0fbd20413bc54074098f3c161 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 11:33:13 +0000 Subject: [PATCH 109/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index e1cfa6f..5edcbcc 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.60.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 5.60.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Jul 13 2019 Rex Dieter - 5.60.0-1 - 5.60.0 From 7fb0ca98f76d7c09184c4edcc3e1b034524b33ec Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Aug 2019 10:01:55 -0500 Subject: [PATCH 110/190] 5.61.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cb40b18..57af4f8 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /ki18n-5.58.0.tar.xz /ki18n-5.59.0.tar.xz /ki18n-5.60.0.tar.xz +/ki18n-5.61.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 5edcbcc..4dbb313 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.60.0 -Release: 2%{?dist} +Version: 5.61.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Aug 07 2019 Rex Dieter - 5.61.0-1 +- 5.61.0 + * Thu Jul 25 2019 Fedora Release Engineering - 5.60.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index a8e8e8e..48569a0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.60.0.tar.xz) = c49d764861ba539dc77ba05e87d654cc96390d64875636864888052d94ec013411ee6174b3342b178e4f4f2a3ef625ca29a7f3fa7852ee34084a4b480c9dd35a +SHA512 (ki18n-5.61.0.tar.xz) = f5701f26056aafb746bafe66ece5a4ce34e89113201851471189196b4e381abbeb83635808faca179f06799c58aec52396df2a22f101cc9710481b810287a9ba From 05ab612dc6cda3a9bc45201cffb119c3f3b7cfb0 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 5 Sep 2019 11:04:43 -0500 Subject: [PATCH 111/190] use python3 --- kf5-ki18n.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 4dbb313..110ffce 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.61.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -26,8 +26,7 @@ BuildRequires: extra-cmake-modules >= %{majmin} BuildRequires: gettext BuildRequires: kf5-rpm-macros >= %{majmin} BuildRequires: perl-interpreter -# FindPythonInterp.cmake , can find/use multiple versions, rely on the default for now -BuildRequires: python2 +BuildRequires: python3 BuildRequires: qt5-qtbase-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qtscript-devel @@ -41,7 +40,7 @@ KDE Frameworks 5 Tier 1 addon for localization. Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: gettext -Requires: python2 +Requires: python3 %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. @@ -54,7 +53,8 @@ developing applications that use %{name}. %build mkdir %{_target_platform} pushd %{_target_platform} -%{cmake_kf5} .. +%{cmake_kf5} .. \ + -DPYTHON_EXECUTABLE:PATH=%__python3 popd %make_build -C %{_target_platform} @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Thu Sep 05 2019 Rex Dieter - 5.61.0-2 +- use python3 + * Wed Aug 07 2019 Rex Dieter - 5.61.0-1 - 5.61.0 From b955d4d07e649a8e697dc7b026550644759609f1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 16 Sep 2019 16:36:35 -0500 Subject: [PATCH 112/190] 5.62.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 57af4f8..16edb40 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /ki18n-5.59.0.tar.xz /ki18n-5.60.0.tar.xz /ki18n-5.61.0.tar.xz +/ki18n-5.62.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 110ffce..2e4a839 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.61.0 -Release: 2%{?dist} +Version: 5.62.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Sep 16 2019 Rex Dieter - 5.62.0-1 +- 5.62.0 + * Thu Sep 05 2019 Rex Dieter - 5.61.0-2 - use python3 diff --git a/sources b/sources index 48569a0..12e8a68 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.61.0.tar.xz) = f5701f26056aafb746bafe66ece5a4ce34e89113201851471189196b4e381abbeb83635808faca179f06799c58aec52396df2a22f101cc9710481b810287a9ba +SHA512 (ki18n-5.62.0.tar.xz) = dfb929cafd3b14fedc72821b7fb75d71da20dfa5f78307526f26e9654f44ad4ce052d1df00065b14fef0777aa6b9da13fda52af97189f79339177247eedfe211 From e66e7106f6056904eb6b6d0d5f34adabf8dddf72 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 22 Oct 2019 08:33:24 -0500 Subject: [PATCH 113/190] 5.63.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 16edb40..d856a2e 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /ki18n-5.60.0.tar.xz /ki18n-5.61.0.tar.xz /ki18n-5.62.0.tar.xz +/ki18n-5.63.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2e4a839..65ec68d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.62.0 +Version: 5.63.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Oct 22 2019 Rex Dieter - 5.63.0-1 +- 5.63.0 + * Mon Sep 16 2019 Rex Dieter - 5.62.0-1 - 5.62.0 diff --git a/sources b/sources index 12e8a68..a34a2cd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.62.0.tar.xz) = dfb929cafd3b14fedc72821b7fb75d71da20dfa5f78307526f26e9654f44ad4ce052d1df00065b14fef0777aa6b9da13fda52af97189f79339177247eedfe211 +SHA512 (ki18n-5.63.0.tar.xz) = e8e5f9f8a8e688455a4d5db1b03a316fb0506eecc40971f4ce5d199e8928cf5c90f4b2e9b8513484c577153f370d22cb48a657ae079b19cf41cb40c408b275eb From f47c2b765e4d7863764290b2ed2da3bce985912d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Nov 2019 10:27:45 -0600 Subject: [PATCH 114/190] 5.64.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d856a2e..858b13c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /ki18n-5.61.0.tar.xz /ki18n-5.62.0.tar.xz /ki18n-5.63.0.tar.xz +/ki18n-5.64.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 65ec68d..063ef0d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.63.0 +Version: 5.64.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -97,6 +97,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Nov 08 2019 Rex Dieter - 5.64.0-1 +- 5.64.0 + * Tue Oct 22 2019 Rex Dieter - 5.63.0-1 - 5.63.0 diff --git a/sources b/sources index a34a2cd..2ea9166 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.63.0.tar.xz) = e8e5f9f8a8e688455a4d5db1b03a316fb0506eecc40971f4ce5d199e8928cf5c90f4b2e9b8513484c577153f370d22cb48a657ae079b19cf41cb40c408b275eb +SHA512 (ki18n-5.64.0.tar.xz) = 68e65934a19621850a189b9aeb24b48a3bb8ea493ed5af1e490030154f759b653aaf0e1a27b5579ad36ca3cb249c7ef72b7429dbc70aa27be827a608b68577c3 From dcef1034efbdb0a9c1d5a3f3a5b0f39a52341848 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Nov 2019 16:11:26 -0600 Subject: [PATCH 115/190] update %%files --- kf5-ki18n.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 063ef0d..c78cb4a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -72,6 +72,7 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %doc README.md %license COPYING.LIB %{_kf5_libdir}/libKF5I18n.so.* +%{_kf5_datadir}/qlogging-categories5/*%{framework}* %{_kf5_qtplugindir}/kf5/ktranscript.so %lang(ca) %{_datadir}/locale/ca/LC_SCRIPTS/ki18n5/ %lang(ca@valencia) %{_datadir}/locale/ca@valencia/LC_SCRIPTS/ki18n5/ From 4e8ef7b2f3d4fa36216922f3bc1a6402c5aa825e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 17 Dec 2019 11:08:58 -0600 Subject: [PATCH 116/190] 5.65.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 858b13c..bb056e8 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /ki18n-5.62.0.tar.xz /ki18n-5.63.0.tar.xz /ki18n-5.64.0.tar.xz +/ki18n-5.65.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c78cb4a..f047ec8 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.64.0 +Version: 5.65.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Dec 17 2019 Rex Dieter - 5.65.0-1 +- 5.65.0 + * Fri Nov 08 2019 Rex Dieter - 5.64.0-1 - 5.64.0 diff --git a/sources b/sources index 2ea9166..b1784ea 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.64.0.tar.xz) = 68e65934a19621850a189b9aeb24b48a3bb8ea493ed5af1e490030154f759b653aaf0e1a27b5579ad36ca3cb249c7ef72b7429dbc70aa27be827a608b68577c3 +SHA512 (ki18n-5.65.0.tar.xz) = 5d18b42d9026d49543ac58728870d9b1367c6f2d5bec2d5edc88844fc6f2b3077d164d617c5ff3166d663e920886c1742bc60374d3fb6bacae6ab2457ebce323 From 63ae357cced04a5dafab8b793534ede58e43c145 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jan 2020 14:13:05 -0600 Subject: [PATCH 117/190] 5.66.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bb056e8..dfd4a43 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /ki18n-5.63.0.tar.xz /ki18n-5.64.0.tar.xz /ki18n-5.65.0.tar.xz +/ki18n-5.66.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f047ec8..e927a5a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.65.0 +Version: 5.66.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jan 07 2020 Rex Dieter - 5.66.0-1 +- 5.66.0 + * Tue Dec 17 2019 Rex Dieter - 5.65.0-1 - 5.65.0 diff --git a/sources b/sources index b1784ea..903ccec 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.65.0.tar.xz) = 5d18b42d9026d49543ac58728870d9b1367c6f2d5bec2d5edc88844fc6f2b3077d164d617c5ff3166d663e920886c1742bc60374d3fb6bacae6ab2457ebce323 +SHA512 (ki18n-5.66.0.tar.xz) = 00d310f84af139946864cb17cd85e80bc3ef07d9ede2c92ca56a66b4f31ad79071acf60caad7e8ed758954d396984e1e3f12b5dbf336bb8be2be3349fbfa9245 From 23fba6410a730268af91165ea01369fe392ecb94 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 07:12:18 +0000 Subject: [PATCH 118/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index e927a5a..7b28c08 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.66.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 5.66.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Jan 07 2020 Rex Dieter - 5.66.0-1 - 5.66.0 From 4e3849ce0f0e382420305de4cb9db4da3aa5f584 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 2 Feb 2020 18:01:30 -0600 Subject: [PATCH 119/190] 5.67.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index dfd4a43..7f7a637 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /ki18n-5.64.0.tar.xz /ki18n-5.65.0.tar.xz /ki18n-5.66.0.tar.xz +/ki18n-5.67.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7b28c08..dc0a5ad 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.66.0 -Release: 2%{?dist} +Version: 5.67.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon Feb 03 2020 Rex Dieter - 5.67.0-1 +- 5.67.0 + * Wed Jan 29 2020 Fedora Release Engineering - 5.66.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 903ccec..7fa4c1c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.66.0.tar.xz) = 00d310f84af139946864cb17cd85e80bc3ef07d9ede2c92ca56a66b4f31ad79071acf60caad7e8ed758954d396984e1e3f12b5dbf336bb8be2be3349fbfa9245 +SHA512 (ki18n-5.67.0.tar.xz) = 509db8423cb5cc20b927e8f5ee789cd08758a2a2746c7c2275e8b0c2c15c237e847bceb50070256452b28fb4d673f2b84863f65a45a042fbf28bd9b47d0913c1 From 55fe827bfc87dc641cbf8c65a5984e84358a3b2f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Mar 2020 22:07:43 -0500 Subject: [PATCH 120/190] 5.68.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7f7a637..1333595 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /ki18n-5.65.0.tar.xz /ki18n-5.66.0.tar.xz /ki18n-5.67.0.tar.xz +/ki18n-5.68.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index dc0a5ad..c5622ca 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.67.0 +Version: 5.68.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Fri Mar 20 2020 Rex Dieter - 5.68.0-1 +- 5.68.0 + * Mon Feb 03 2020 Rex Dieter - 5.67.0-1 - 5.67.0 diff --git a/sources b/sources index 7fa4c1c..727b05c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.67.0.tar.xz) = 509db8423cb5cc20b927e8f5ee789cd08758a2a2746c7c2275e8b0c2c15c237e847bceb50070256452b28fb4d673f2b84863f65a45a042fbf28bd9b47d0913c1 +SHA512 (ki18n-5.68.0.tar.xz) = 2256e06a40761b7f948cd83caf527e8533035afd2ecda266535b67dab9030571154a6eab75744db94da4c13c27bcc67d1d2dcdfb3b9de92e75abcf3f517e52e7 From bbc3f014f3e8223cc9b7d0cb323b64188e23296e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 21 Apr 2020 13:33:55 -0500 Subject: [PATCH 121/190] 5.69.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1333595..d87e1f6 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /ki18n-5.66.0.tar.xz /ki18n-5.67.0.tar.xz /ki18n-5.68.0.tar.xz +/ki18n-5.69.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c5622ca..7ccf274 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.68.0 +Version: 5.69.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Apr 21 2020 Rex Dieter - 5.69.0-1 +- 5.69.0 + * Fri Mar 20 2020 Rex Dieter - 5.68.0-1 - 5.68.0 diff --git a/sources b/sources index 727b05c..b5fee91 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.68.0.tar.xz) = 2256e06a40761b7f948cd83caf527e8533035afd2ecda266535b67dab9030571154a6eab75744db94da4c13c27bcc67d1d2dcdfb3b9de92e75abcf3f517e52e7 +SHA512 (ki18n-5.69.0.tar.xz) = daa958363e5de8b928324baf3442bb10f4f27b11d3425be7dcc87102c2018f72f44ae873b74ed18c0da850db4a88e7aa711bb4b4c41a56317620c311e698f3a1 From 6f2a04ff29c123b473933e2ed56d671e614e0443 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 May 2020 16:56:52 -0500 Subject: [PATCH 122/190] 5.70.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d87e1f6..bad9f2a 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /ki18n-5.67.0.tar.xz /ki18n-5.68.0.tar.xz /ki18n-5.69.0.tar.xz +/ki18n-5.70.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7ccf274..92d81bb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.69.0 +Version: 5.70.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Mon May 04 2020 Rex Dieter - 5.70.0-1 +- 5.70.0 + * Tue Apr 21 2020 Rex Dieter - 5.69.0-1 - 5.69.0 diff --git a/sources b/sources index b5fee91..bf6b32b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.69.0.tar.xz) = daa958363e5de8b928324baf3442bb10f4f27b11d3425be7dcc87102c2018f72f44ae873b74ed18c0da850db4a88e7aa711bb4b4c41a56317620c311e698f3a1 +SHA512 (ki18n-5.70.0.tar.xz) = d15274d77ae8c192690d7b823bc00c19ec6a4054f390bd0973b0b012c70d0d3144a1eb479a95c51ac8a151c20af8117a2a3b59302c255b550e9810f1377bd2ef From 75066223631764b879978c4c40fea74919fc1172 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 16 Jun 2020 09:34:31 -0500 Subject: [PATCH 123/190] 5.71.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bad9f2a..06037ed 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /ki18n-5.68.0.tar.xz /ki18n-5.69.0.tar.xz /ki18n-5.70.0.tar.xz +/ki18n-5.71.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 92d81bb..8f0a2eb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.70.0 +Version: 5.71.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jun 16 2020 Rex Dieter - 5.71.0-1 +- 5.71.0 + * Mon May 04 2020 Rex Dieter - 5.70.0-1 - 5.70.0 diff --git a/sources b/sources index bf6b32b..f3d4d29 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.70.0.tar.xz) = d15274d77ae8c192690d7b823bc00c19ec6a4054f390bd0973b0b012c70d0d3144a1eb479a95c51ac8a151c20af8117a2a3b59302c255b550e9810f1377bd2ef +SHA512 (ki18n-5.71.0.tar.xz) = 6bf20ecbbf72011851f829a2abb016863d455502132108e72d8f67aec50f8a6e1cb2ff59fe08bc04c096a800f5bbcb1923c9b045f7daa43f44e85a04112fdfea From fc8ae7dcdf3df80c4d73592442ea197d35602153 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 7 Jul 2020 12:21:42 -0500 Subject: [PATCH 124/190] 5.72.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 06037ed..ce67551 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /ki18n-5.69.0.tar.xz /ki18n-5.70.0.tar.xz /ki18n-5.71.0.tar.xz +/ki18n-5.72.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 8f0a2eb..859046f 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.71.0 +Version: 5.72.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -98,6 +98,9 @@ make install/fast DESTDIR=%{buildroot} -C %{_target_platform} %changelog +* Tue Jul 07 2020 Rex Dieter - 5.72.0-1 +- 5.72.0 + * Tue Jun 16 2020 Rex Dieter - 5.71.0-1 - 5.71.0 diff --git a/sources b/sources index f3d4d29..8ea820e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.71.0.tar.xz) = 6bf20ecbbf72011851f829a2abb016863d455502132108e72d8f67aec50f8a6e1cb2ff59fe08bc04c096a800f5bbcb1923c9b045f7daa43f44e85a04112fdfea +SHA512 (ki18n-5.72.0.tar.xz) = 754302680a70e8c8a68ee9b2873b6d42a806c4f473b2daf1d3435f4e70d9e285a5e93d092f8503218d17f8981d87be7cea388c5ca4998fab973c5baf806a582f From 72089a8602c3320a349241a33613f77894ca3efc Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Sat, 18 Jul 2020 09:55:57 +0200 Subject: [PATCH 125/190] Improve compatibility with new CMake macro Signed-off-by: Igor Raits --- kf5-ki18n.spec | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 859046f..16dd02c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,3 +1,4 @@ +%undefine __cmake_in_source_build %global framework ki18n Name: kf5-%{framework} @@ -51,17 +52,13 @@ developing applications that use %{name}. %build -mkdir %{_target_platform} -pushd %{_target_platform} -%{cmake_kf5} .. \ +%{cmake_kf5} \ -DPYTHON_EXECUTABLE:PATH=%__python3 -popd - -%make_build -C %{_target_platform} +%cmake_build %install -make install/fast DESTDIR=%{buildroot} -C %{_target_platform} +%cmake_install %find_lang %{name} --all-name From b71da33ef67f301f48e53ea5a152864ce1cedf99 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 03:10:32 +0000 Subject: [PATCH 126/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 16dd02c..f37189a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.72.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 5.72.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jul 07 2020 Rex Dieter - 5.72.0-1 - 5.72.0 From 7058a5e0285744d99bd165323f602fa66f38fade Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 Aug 2020 11:44:19 -0500 Subject: [PATCH 127/190] 5.73.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ce67551..e326063 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ /ki18n-5.70.0.tar.xz /ki18n-5.71.0.tar.xz /ki18n-5.72.0.tar.xz +/ki18n-5.73.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f37189a..7fe69d8 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.72.0 -Release: 2%{?dist} +Version: 5.73.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Mon Aug 03 2020 Rex Dieter - 5.73.0-1 +- 5.73.0 + * Tue Jul 28 2020 Fedora Release Engineering - 5.72.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 8ea820e..11ab80f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.72.0.tar.xz) = 754302680a70e8c8a68ee9b2873b6d42a806c4f473b2daf1d3435f4e70d9e285a5e93d092f8503218d17f8981d87be7cea388c5ca4998fab973c5baf806a582f +SHA512 (ki18n-5.73.0.tar.xz) = 39f663092f7697f711fcf1e4e9f4081d73d7f73f3b110a151063967712bbdcab18ecf5e96350ff4db494b58f48cf1976e7fb002a7ba298386fa77cef2f8766b1 From d5ff4e7eab607704f711724678e4a4eb8058bf76 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 11:02:52 +0200 Subject: [PATCH 128/190] 5.74.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e326063..e66d029 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ /ki18n-5.71.0.tar.xz /ki18n-5.72.0.tar.xz /ki18n-5.73.0.tar.xz +/ki18n-5.74.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7fe69d8..b251543 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.73.0 +Version: 5.74.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Fri Sep 18 2020 Jan Grulich - 5.74.0-1 +- 5.74.0 + * Mon Aug 03 2020 Rex Dieter - 5.73.0-1 - 5.73.0 diff --git a/sources b/sources index 11ab80f..9985fcc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.73.0.tar.xz) = 39f663092f7697f711fcf1e4e9f4081d73d7f73f3b110a151063967712bbdcab18ecf5e96350ff4db494b58f48cf1976e7fb002a7ba298386fa77cef2f8766b1 +SHA512 (ki18n-5.74.0.tar.xz) = 5027dbd316ea429f72aa45ac215675d970ab5625741fe0908c63957646ec4f12b1d21e7649787364d2d716cd1ceab11a505a4271f28b85a0e18dcbc6c3b15ffe From 53759056a15e140584aeb86732f60d9d1c926290 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Fri, 18 Sep 2020 11:58:52 +0200 Subject: [PATCH 129/190] Fix instalation of licence files --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index b251543..0f64057 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -67,7 +67,7 @@ developing applications that use %{name}. %files -f %{name}.lang %doc README.md -%license COPYING.LIB +%license LICENSES/*.txt %{_kf5_libdir}/libKF5I18n.so.* %{_kf5_datadir}/qlogging-categories5/*%{framework}* %{_kf5_qtplugindir}/kf5/ktranscript.so From 07af8193c75cc75c281db20c851289738e1ac47c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 14 Oct 2020 09:55:51 -0500 Subject: [PATCH 130/190] 5.75.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e66d029..5e9c530 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ /ki18n-5.72.0.tar.xz /ki18n-5.73.0.tar.xz /ki18n-5.74.0.tar.xz +/ki18n-5.75.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0f64057..30e5394 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.74.0 +Version: 5.75.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Wed Oct 14 09:55:45 CDT 2020 Rex Dieter - 5.75.0-1 +- 5.75.0 + * Fri Sep 18 2020 Jan Grulich - 5.74.0-1 - 5.74.0 diff --git a/sources b/sources index 9985fcc..9940ee0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.74.0.tar.xz) = 5027dbd316ea429f72aa45ac215675d970ab5625741fe0908c63957646ec4f12b1d21e7649787364d2d716cd1ceab11a505a4271f28b85a0e18dcbc6c3b15ffe +SHA512 (ki18n-5.75.0.tar.xz) = 2827fef364ae122c9e5ae554bfb7fe43999f498c93a53761b1a0b6cdc8b46b23a103ed9b9d83b6e5dc15099bcdf6a8cf556d92dea460aa8e8f314595ddd6ba98 From a2ab0327fac0010deceb8fbb5f739b29ec3d23aa Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 19 Nov 2020 09:03:32 -0600 Subject: [PATCH 131/190] 5.76.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5e9c530..412632d 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ /ki18n-5.73.0.tar.xz /ki18n-5.74.0.tar.xz /ki18n-5.75.0.tar.xz +/ki18n-5.76.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 30e5394..99df55c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.75.0 +Version: 5.76.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Thu Nov 19 09:03:25 CST 2020 Rex Dieter - 5.76.0-1 +- 5.76.0 + * Wed Oct 14 09:55:45 CDT 2020 Rex Dieter - 5.75.0-1 - 5.75.0 diff --git a/sources b/sources index 9940ee0..99c6a57 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.75.0.tar.xz) = 2827fef364ae122c9e5ae554bfb7fe43999f498c93a53761b1a0b6cdc8b46b23a103ed9b9d83b6e5dc15099bcdf6a8cf556d92dea460aa8e8f314595ddd6ba98 +SHA512 (ki18n-5.76.0.tar.xz) = 7c5e8e664cb13996ee7319995470f2d6fe33fa22bb56d6104e38654630b2e3d9caec9f7f0f9ea20c9ff8608fb5794689d8013b7347f19b7d1c88726b5ab108ff From 2d10d0826e6f7c2b921e09a000c735b966709895 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sun, 13 Dec 2020 14:14:05 -0600 Subject: [PATCH 132/190] 5.77.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 412632d..c660623 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ /ki18n-5.74.0.tar.xz /ki18n-5.75.0.tar.xz /ki18n-5.76.0.tar.xz +/ki18n-5.77.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 99df55c..9bf35c1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.76.0 +Version: 5.77.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sun Dec 13 14:14:01 CST 2020 Rex Dieter - 5.77.0-1 +- 5.77.0 + * Thu Nov 19 09:03:25 CST 2020 Rex Dieter - 5.76.0-1 - 5.76.0 diff --git a/sources b/sources index 99c6a57..4321159 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.76.0.tar.xz) = 7c5e8e664cb13996ee7319995470f2d6fe33fa22bb56d6104e38654630b2e3d9caec9f7f0f9ea20c9ff8608fb5794689d8013b7347f19b7d1c88726b5ab108ff +SHA512 (ki18n-5.77.0.tar.xz) = fc6c97b21f2b5ccf26fdead1a9dd9d9faf13d79b1ab6740d29e96d6dd3bd3b312890cb60df0f0120db0699e35445011bf3632e73efac84e4fab4572d7c8b8a57 From 9b273bff6ec8c957f448584ff32d6a57f608503a Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 4 Jan 2021 08:47:30 -0600 Subject: [PATCH 133/190] 5.78.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c660623..2700be0 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ /ki18n-5.75.0.tar.xz /ki18n-5.76.0.tar.xz /ki18n-5.77.0.tar.xz +/ki18n-5.78.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 9bf35c1..d4edf64 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,12 +2,12 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.77.0 +Version: 5.78.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ -URL: https://cgit.kde.org/%{framework}.git +URL: https://invent.kde.org/frameworks/%{framework} %global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Mon Jan 4 08:47:24 CST 2021 Rex Dieter - 5.78.0-1 +- 5.78.0 + * Sun Dec 13 14:14:01 CST 2020 Rex Dieter - 5.77.0-1 - 5.77.0 diff --git a/sources b/sources index 4321159..21d8381 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.77.0.tar.xz) = fc6c97b21f2b5ccf26fdead1a9dd9d9faf13d79b1ab6740d29e96d6dd3bd3b312890cb60df0f0120db0699e35445011bf3632e73efac84e4fab4572d7c8b8a57 +SHA512 (ki18n-5.78.0.tar.xz) = 0283caf2a33bdcb2196e91eec7db1ba3e56d27cfa449e431e738e5ada0a0d8d83ed5a315300858e034eb85313f5e820c296939c19fcfdeb4c4e59d19152abbbe From 31e371e2795684c3d0286f67213686ff4c2ddb00 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 15:37:56 +0000 Subject: [PATCH 134/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index d4edf64..fe0b7e7 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.78.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 5.78.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jan 4 08:47:24 CST 2021 Rex Dieter - 5.78.0-1 - 5.78.0 From 3835a905503301e961ae4d647d70b47a33a5f499 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 09:54:25 -0600 Subject: [PATCH 135/190] 5.79.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2700be0..b01b714 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ /ki18n-5.76.0.tar.xz /ki18n-5.77.0.tar.xz /ki18n-5.78.0.tar.xz +/ki18n-5.79.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index fe0b7e7..4d1f1c8 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.78.0 -Release: 2%{?dist} +Version: 5.79.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sat Feb 06 2021 Rex Dieter - 5.79.0-1 +- 5.79.0 + * Tue Jan 26 2021 Fedora Release Engineering - 5.78.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index 21d8381..dfdafb0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.78.0.tar.xz) = 0283caf2a33bdcb2196e91eec7db1ba3e56d27cfa449e431e738e5ada0a0d8d83ed5a315300858e034eb85313f5e820c296939c19fcfdeb4c4e59d19152abbbe +SHA512 (ki18n-5.79.0.tar.xz) = 82c3b4e00324bba599fa23a91d9018697133586752814b6dcea1baf50c4ee32dde9a9502a40655c4cf34d547478b445cddc23a7bf4e30e52c93599c170d13294 From e59948131f972fe998ba6c124a0474ff66cb1b6c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 10:52:29 -0600 Subject: [PATCH 136/190] cosmetics, update %%files --- kf5-ki18n.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 4d1f1c8..87695b0 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -54,6 +54,7 @@ developing applications that use %{name}. %build %{cmake_kf5} \ -DPYTHON_EXECUTABLE:PATH=%__python3 + %cmake_build @@ -77,13 +78,13 @@ developing applications that use %{name}. %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ %lang(ja) %{_datadir}/locale/ja/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ -%lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ -%lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ -%lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ -%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ -%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ -%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ -%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ +#lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ +#lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ +#lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ +#lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ +#lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ +#lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ +#lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel From 7ab7e141328dd2f2b70ba992f1e8ee411a6b233e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 15:16:26 -0600 Subject: [PATCH 137/190] respin --- kf5-ki18n.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 87695b0..3c2c193 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.79.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Sat Feb 06 2021 Rex Dieter - 5.79.0-2 +- respin + * Sat Feb 06 2021 Rex Dieter - 5.79.0-1 - 5.79.0 diff --git a/sources b/sources index dfdafb0..310e795 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.79.0.tar.xz) = 82c3b4e00324bba599fa23a91d9018697133586752814b6dcea1baf50c4ee32dde9a9502a40655c4cf34d547478b445cddc23a7bf4e30e52c93599c170d13294 +SHA512 (ki18n-5.79.0.tar.xz) = 11caa82ea4bcce074a024595ac5cbd739d368e5e5a3c46d1aa6ab54209a3a70bf3ae795487e8164e2f3c3abb52fea54a709c078899500e59228ba9070bab622e From 1e8d4670589bba065e83b69b6e05b91a49fd0131 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 6 Feb 2021 19:02:05 -0600 Subject: [PATCH 138/190] re-add missing translations --- kf5-ki18n.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3c2c193..29413f7 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -78,13 +78,13 @@ developing applications that use %{name}. %lang(gd) %{_datadir}/locale/gd/LC_SCRIPTS/ki18n5/ %lang(ja) %{_datadir}/locale/ja/LC_SCRIPTS/ki18n5/ %lang(ko) %{_datadir}/locale/ko/LC_SCRIPTS/ki18n5/ -#lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ -#lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ -#lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ -#lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ -#lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ -#lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ -#lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ +%lang(nb) %{_datadir}/locale/nb/LC_SCRIPTS/ki18n5/ +%lang(nn) %{_datadir}/locale/nn/LC_SCRIPTS/ki18n5/ +%lang(ru) %{_datadir}/locale/ru/LC_SCRIPTS/ki18n5/ +%lang(sr) %{_datadir}/locale/sr/LC_SCRIPTS/ki18n5/ +%lang(sr@ijekavian) %{_datadir}/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ +%lang(sr@ijekavianlatin) %{_datadir}/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ +%lang(sr@latin) %{_datadir}/locale/sr@latin/LC_SCRIPTS/ki18n5/ %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel From fa07184d23b2a33ff1111d55b73f2a0b422a9bef Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 9 Mar 2021 08:41:08 -0600 Subject: [PATCH 139/190] 5.80.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b01b714..9097aea 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ /ki18n-5.77.0.tar.xz /ki18n-5.78.0.tar.xz /ki18n-5.79.0.tar.xz +/ki18n-5.80.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 29413f7..0b0bc48 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.79.0 -Release: 2%{?dist} +Version: 5.80.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Tue Mar 09 2021 Rex Dieter - 5.80.0-1 +- 5.80.0 + * Sat Feb 06 2021 Rex Dieter - 5.79.0-2 - respin diff --git a/sources b/sources index 310e795..d0556f3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.79.0.tar.xz) = 11caa82ea4bcce074a024595ac5cbd739d368e5e5a3c46d1aa6ab54209a3a70bf3ae795487e8164e2f3c3abb52fea54a709c078899500e59228ba9070bab622e +SHA512 (ki18n-5.80.0.tar.xz) = 0ba5b71c40f98c77792d73fd15a97e59cfb3d7f33da5d49a48621dbeed36a893c914b61e179c6f457ac552a91ebead55f59d70266ed02e6cac270e9936cd2494 From 8e5ab4f7d713f8075f892d0879ffb4f51adeab98 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 6 Apr 2021 08:54:39 -0500 Subject: [PATCH 140/190] 5.81.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9097aea..c8e63c5 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,4 @@ /ki18n-5.78.0.tar.xz /ki18n-5.79.0.tar.xz /ki18n-5.80.0.tar.xz +/ki18n-5.81.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0b0bc48..96a5bc9 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.80.0 +Version: 5.81.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Tue Apr 06 2021 Rex Dieter - 5.81.0-1 +- 5.81.0 + * Tue Mar 09 2021 Rex Dieter - 5.80.0-1 - 5.80.0 diff --git a/sources b/sources index d0556f3..fa6760e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.80.0.tar.xz) = 0ba5b71c40f98c77792d73fd15a97e59cfb3d7f33da5d49a48621dbeed36a893c914b61e179c6f457ac552a91ebead55f59d70266ed02e6cac270e9936cd2494 +SHA512 (ki18n-5.81.0.tar.xz) = 5caffe9c3181881a12587de218e183cbd9e4221d39dd9b699ce1a40dae9a69edcb8e768d5c4ed896be09f18c161fe119a4736ae8b473b5d678f988520bda1a1d From b6dd28d214edbe1030e0ca341ff488b6d165b0e4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Mon, 3 May 2021 08:40:16 -0500 Subject: [PATCH 141/190] 5.82.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c8e63c5..11aa6f7 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ /ki18n-5.79.0.tar.xz /ki18n-5.80.0.tar.xz /ki18n-5.81.0.tar.xz +/ki18n-5.82.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 96a5bc9..22618e9 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.81.0 +Version: 5.82.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Mon May 03 2021 Rex Dieter - 5.82.0-1 +- 5.82.0 + * Tue Apr 06 2021 Rex Dieter - 5.81.0-1 - 5.81.0 diff --git a/sources b/sources index fa6760e..978460b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.81.0.tar.xz) = 5caffe9c3181881a12587de218e183cbd9e4221d39dd9b699ce1a40dae9a69edcb8e768d5c4ed896be09f18c161fe119a4736ae8b473b5d678f988520bda1a1d +SHA512 (ki18n-5.82.0.tar.xz) = a0f84494897d5c614923581bb3df016ba8801b7404b933c7cf85b158be96baa0cc87199a4798a694654fa80ad8204085a2fb6da8e6f930156071261b213894eb From 82004e4dbca96af7cd95fcd549b34286ec5de0c1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 8 Jun 2021 16:02:02 -0500 Subject: [PATCH 142/190] 5.83.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 11aa6f7..9aac8f4 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,4 @@ /ki18n-5.80.0.tar.xz /ki18n-5.81.0.tar.xz /ki18n-5.82.0.tar.xz +/ki18n-5.83.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 22618e9..ef627e4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.82.0 +Version: 5.83.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Tue Jun 08 2021 Rex Dieter - 5.83.0-1 +- 5.83.0 + * Mon May 03 2021 Rex Dieter - 5.82.0-1 - 5.82.0 diff --git a/sources b/sources index 978460b..aed6778 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.82.0.tar.xz) = a0f84494897d5c614923581bb3df016ba8801b7404b933c7cf85b158be96baa0cc87199a4798a694654fa80ad8204085a2fb6da8e6f930156071261b213894eb +SHA512 (ki18n-5.83.0.tar.xz) = 357be287d17b062de8748d2803fbe5cd19d96725bfdd9de02191f8d46ee59bf6c9c81da6bef8baf0dc892c6304ee2bf2d26817f4cf5e5948a1b45874dd1e8de5 From f90c4a4e6e37e7e513a0a545cfe3156030f5c62f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 09:52:00 +0000 Subject: [PATCH 143/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index ef627e4..f053439 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -3,7 +3,7 @@ Name: kf5-%{framework} Version: 5.83.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 5.83.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jun 08 2021 Rex Dieter - 5.83.0-1 - 5.83.0 From ebf750daef8c085a5b2eebe7b06ca07807e8ff42 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 12 Aug 2021 11:07:31 -0500 Subject: [PATCH 144/190] 5.85.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9aac8f4..e3ffbf5 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ /ki18n-5.81.0.tar.xz /ki18n-5.82.0.tar.xz /ki18n-5.83.0.tar.xz +/ki18n-5.85.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f053439..4e62277 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,8 +2,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.83.0 -Release: 2%{?dist} +Version: 5.85.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Thu Aug 12 2021 Rex Dieter - 5.85.0-1 +- 5.85.0 + * Thu Jul 22 2021 Fedora Release Engineering - 5.83.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index aed6778..cc7eb1a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.83.0.tar.xz) = 357be287d17b062de8748d2803fbe5cd19d96725bfdd9de02191f8d46ee59bf6c9c81da6bef8baf0dc892c6304ee2bf2d26817f4cf5e5948a1b45874dd1e8de5 +SHA512 (ki18n-5.85.0.tar.xz) = 01053f5715d907eba28daab411880013b9f0305f72d84d1a26edd1aeae6b3f05c1b580ea95aae4de122a57a3bcabb11c4737a82bd51facf8201d584c64708856 From 9e59b7a8b7f49140f5fce8de4ab46119207a92de Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Wed, 15 Sep 2021 00:19:55 +0200 Subject: [PATCH 145/190] 5.86.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e3ffbf5..070729a 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ /ki18n-5.82.0.tar.xz /ki18n-5.83.0.tar.xz /ki18n-5.85.0.tar.xz +/ki18n-5.86.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 4e62277..f8ee048 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.85.0 +Version: 5.86.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Tue Sep 14 2021 Marc Deop - 5.86.0-1 +- 5.86.0 + * Thu Aug 12 2021 Rex Dieter - 5.85.0-1 - 5.85.0 diff --git a/sources b/sources index cc7eb1a..666411d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.85.0.tar.xz) = 01053f5715d907eba28daab411880013b9f0305f72d84d1a26edd1aeae6b3f05c1b580ea95aae4de122a57a3bcabb11c4737a82bd51facf8201d584c64708856 +SHA512 (ki18n-5.86.0.tar.xz) = ac51b877e10803d06520cda3a222cc425abc6208437558dbdfc27f2af7dbc9fc33f214f7d0f35598b03733b347f640b5aeb49cca7e3204b7fe37742cc13dc669 From 349470d739267bd27d4d8bd326141efbc8e12ec1 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 5 Oct 2021 09:21:48 -0500 Subject: [PATCH 146/190] 5.87.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 070729a..88db128 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ /ki18n-5.83.0.tar.xz /ki18n-5.85.0.tar.xz /ki18n-5.86.0.tar.xz +/ki18n-5.87.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f8ee048..f94b0ca 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.86.0 +Version: 5.87.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Tue Oct 05 2021 Rex Dieter - 5.87.0-1 +- 5.87.0 + * Tue Sep 14 2021 Marc Deop - 5.86.0-1 - 5.86.0 diff --git a/sources b/sources index 666411d..c823b2c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.86.0.tar.xz) = ac51b877e10803d06520cda3a222cc425abc6208437558dbdfc27f2af7dbc9fc33f214f7d0f35598b03733b347f640b5aeb49cca7e3204b7fe37742cc13dc669 +SHA512 (ki18n-5.87.0.tar.xz) = 3b6420de995d6ed64a57934c16334fc48bdd495e81d5b64c15d2403c82fcbab21601d831d9b802b61af64b88c16281a50c8d689069bb3a92467c963cb6e9a0ac From aa6ca2484f0b1bbdb77b3df6facb52bd2309ea5a Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 9 Nov 2021 10:02:09 +0100 Subject: [PATCH 147/190] 5.88.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 88db128..47c64b4 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ /ki18n-5.85.0.tar.xz /ki18n-5.86.0.tar.xz /ki18n-5.87.0.tar.xz +/ki18n-5.88.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f94b0ca..bc6aa53 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.87.0 +Version: 5.88.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -96,6 +96,9 @@ developing applications that use %{name}. %changelog +* Mon Nov 08 2021 Marc Deop - 5.88.0-1 +- 5.88.0 + * Tue Oct 05 2021 Rex Dieter - 5.87.0-1 - 5.87.0 diff --git a/sources b/sources index c823b2c..5db8464 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.87.0.tar.xz) = 3b6420de995d6ed64a57934c16334fc48bdd495e81d5b64c15d2403c82fcbab21601d831d9b802b61af64b88c16281a50c8d689069bb3a92467c963cb6e9a0ac +SHA512 (ki18n-5.88.0.tar.xz) = 7d417a34667ca0e63a49e8d7cc2608028ea66e51adb6f22934a694fda65bb3f858b1e36960b184dcfd919d90107264682bd6426b27cbaba92faf34758668784c From 001df7cd951d328734fc93fa3c6165d3f13c73ec Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Wed, 10 Nov 2021 17:04:42 +0100 Subject: [PATCH 148/190] fix: add qt5-qtbase-private-devel buildrequires and add missing files --- kf5-ki18n.spec | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bc6aa53..cec96d7 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -29,6 +29,7 @@ BuildRequires: kf5-rpm-macros >= %{majmin} BuildRequires: perl-interpreter BuildRequires: python3 BuildRequires: qt5-qtbase-devel +BuildRequires: qt5-qtbase-private-devel BuildRequires: qt5-qtdeclarative-devel BuildRequires: qt5-qtscript-devel @@ -70,7 +71,10 @@ developing applications that use %{name}. %doc README.md %license LICENSES/*.txt %{_kf5_libdir}/libKF5I18n.so.* +%{_kf5_libdir}/libKF5I18nLocaleData.so +%{_kf5_libdir}/libKF5I18nLocaleData.so.* %{_kf5_datadir}/qlogging-categories5/*%{framework}* +%{_kf5_qmldir}/org/kde/i18n/localeData/ %{_kf5_qtplugindir}/kf5/ktranscript.so %lang(ca) %{_datadir}/locale/ca/LC_SCRIPTS/ki18n5/ %lang(ca@valencia) %{_datadir}/locale/ca@valencia/LC_SCRIPTS/ki18n5/ @@ -90,6 +94,7 @@ developing applications that use %{name}. %files devel %{_kf5_includedir}/ki18n_version.h %{_kf5_includedir}/KI18n/ +%{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so %{_kf5_libdir}/cmake/KF5I18n/ %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri From 67fe1701ba16d0310587a229daead09ff397d5aa Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 10 Nov 2021 11:05:05 -0600 Subject: [PATCH 149/190] .spec cosmetics, move lib*.so to -devel --- kf5-ki18n.spec | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index cec96d7..53297a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,13 +1,12 @@ -%undefine __cmake_in_source_build %global framework ki18n -Name: kf5-%{framework} +Name: kf5-%{framework} Version: 5.88.0 Release: 1%{?dist} -Summary: KDE Frameworks 5 Tier 1 addon for localization +Summary: KDE Frameworks 5 Tier 1 addon for localization -License: LGPLv2+ -URL: https://invent.kde.org/frameworks/%{framework} +License: LGPLv2+ +URL: https://invent.kde.org/frameworks/%{framework} %global majmin %(echo %{version} | cut -d. -f1-2) %global revision %(echo %{version} | cut -d. -f3) @@ -16,7 +15,7 @@ URL: https://invent.kde.org/frameworks/%{framework} %else %global stable stable %endif -Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz +Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstream patches @@ -53,7 +52,7 @@ developing applications that use %{name}. %build -%{cmake_kf5} \ +%cmake_kf5 \ -DPYTHON_EXECUTABLE:PATH=%__python3 %cmake_build @@ -71,7 +70,6 @@ developing applications that use %{name}. %doc README.md %license LICENSES/*.txt %{_kf5_libdir}/libKF5I18n.so.* -%{_kf5_libdir}/libKF5I18nLocaleData.so %{_kf5_libdir}/libKF5I18nLocaleData.so.* %{_kf5_datadir}/qlogging-categories5/*%{framework}* %{_kf5_qmldir}/org/kde/i18n/localeData/ @@ -96,6 +94,7 @@ developing applications that use %{name}. %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so +%{_kf5_libdir}/libKF5I18nLocaleData.so %{_kf5_libdir}/cmake/KF5I18n/ %{_kf5_archdatadir}/mkspecs/modules/qt_KI18n.pri From b4df94de488c5fb1ac81a28d419e20384afa10d9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 8 Dec 2021 09:34:19 -0600 Subject: [PATCH 150/190] 5.89.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 47c64b4..01605c6 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ /ki18n-5.86.0.tar.xz /ki18n-5.87.0.tar.xz /ki18n-5.88.0.tar.xz +/ki18n-5.89.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 53297a1..471a652 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.88.0 +Version: 5.89.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Wed Dec 08 2021 Rex Dieter - 5.89.0-1 +- 5.89.0 + * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 5db8464..790f448 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.88.0.tar.xz) = 7d417a34667ca0e63a49e8d7cc2608028ea66e51adb6f22934a694fda65bb3f858b1e36960b184dcfd919d90107264682bd6426b27cbaba92faf34758668784c +SHA512 (ki18n-5.89.0.tar.xz) = 8fa6b5287f1044da3db6950b45723a913273f8a0084bd88aca4f2781df11be4446fdd993bf725fee729e1f921b43b4abbe92a59211ea3ddedb93e473a49b4d59 From 636a3906e36e7e11e757fed33a541a551b1aa56e Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Tue, 4 Jan 2022 09:32:55 +0100 Subject: [PATCH 151/190] 5.90.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 01605c6..bf23e43 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ /ki18n-5.87.0.tar.xz /ki18n-5.88.0.tar.xz /ki18n-5.89.0.tar.xz +/ki18n-5.90.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 471a652..3d042fd 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.89.0 +Version: 5.90.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 +- 5.90.0 + * Wed Dec 08 2021 Rex Dieter - 5.89.0-1 - 5.89.0 diff --git a/sources b/sources index 790f448..5702321 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.89.0.tar.xz) = 8fa6b5287f1044da3db6950b45723a913273f8a0084bd88aca4f2781df11be4446fdd993bf725fee729e1f921b43b4abbe92a59211ea3ddedb93e473a49b4d59 +SHA512 (ki18n-5.90.0.tar.xz) = 4af602314692c53d3e040d0aec5b5952b7840f4e2a18d5126d347ee2ef6e7e42e4afecc7201ed8c3250ba9132f7078ebb6cbd110ca425109db1e99c5f06afab8 From 39955a40366845d77a9e81a205836168039a3d22 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 14:36:50 +0000 Subject: [PATCH 152/190] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3d042fd..319d013 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.90.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 - 5.90.0 From a2cabbcb60f150a0e6360d29f44a0fe69b3960ed Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 11 Feb 2022 12:28:27 -0600 Subject: [PATCH 153/190] 5.91.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bf23e43..1c49b0a 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ /ki18n-5.88.0.tar.xz /ki18n-5.89.0.tar.xz /ki18n-5.90.0.tar.xz +/ki18n-5.91.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 319d013..81b36a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.90.0 -Release: 2%{?dist} +Version: 5.91.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Fri Feb 11 2022 Rex Dieter - 5.91.0-1 +- 5.91.0 + * Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index 5702321..55d5e4e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.90.0.tar.xz) = 4af602314692c53d3e040d0aec5b5952b7840f4e2a18d5126d347ee2ef6e7e42e4afecc7201ed8c3250ba9132f7078ebb6cbd110ca425109db1e99c5f06afab8 +SHA512 (ki18n-5.91.0.tar.xz) = 6bb7a67589ea19a39de628b412f1e57e3717d7f9640405d513ebc5edccb091dd7dddbc75db806274e2302466428a2d256a8ec00613a285ba9fdc5ba2bb454e66 From b3de6155364f347c82b23fa98a19e4ce87c18cf9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 15 Feb 2022 10:08:11 -0600 Subject: [PATCH 154/190] update %%files --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 81b36a1..21dd8d5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -90,7 +90,7 @@ developing applications that use %{name}. %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel -%{_kf5_includedir}/ki18n_version.h + %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so From 255818d70ef45a074a85b649c405296ae5050123 Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 8 Mar 2022 15:39:30 +0100 Subject: [PATCH 155/190] Rebuild (qt5) --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 21dd8d5..45b33e5 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.91.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue Mar 08 2022 Jan Grulich - 5.91.0-2 +- Rebuild (qt5) + * Fri Feb 11 2022 Rex Dieter - 5.91.0-1 - 5.91.0 From a4eeffae6c929379f8d9d8f803b8202948fb5b04 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Thu, 10 Mar 2022 15:02:06 -0600 Subject: [PATCH 156/190] 5.92.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1c49b0a..522eb72 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ /ki18n-5.89.0.tar.xz /ki18n-5.90.0.tar.xz /ki18n-5.91.0.tar.xz +/ki18n-5.92.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 45b33e5..bb3aafc 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.91.0 -Release: 2%{?dist} +Version: 5.92.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Thu Mar 10 2022 Rex Dieter - 5.92.0-1 +- 5.92.0 + * Tue Mar 08 2022 Jan Grulich - 5.91.0-2 - Rebuild (qt5) diff --git a/sources b/sources index 55d5e4e..382b6d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.91.0.tar.xz) = 6bb7a67589ea19a39de628b412f1e57e3717d7f9640405d513ebc5edccb091dd7dddbc75db806274e2302466428a2d256a8ec00613a285ba9fdc5ba2bb454e66 +SHA512 (ki18n-5.92.0.tar.xz) = 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 From 4298d78d46c4237a6eae7cc360f62fff83891bab Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 22 Mar 2022 08:39:13 +0100 Subject: [PATCH 157/190] Rebuild (qt5) --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 21dd8d5..f66ca5a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.91.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue Mar 22 2022 Jan Grulich - 5.91.0-2 +- Rebuild (qt5) + * Fri Feb 11 2022 Rex Dieter - 5.91.0-1 - 5.91.0 From a3875fb8b93ab95d016c1dc179d21e835483a5fa Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 10 Apr 2022 13:25:56 +0930 Subject: [PATCH 158/190] Update to 5.93 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 522eb72..3869639 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,4 @@ /ki18n-5.90.0.tar.xz /ki18n-5.91.0.tar.xz /ki18n-5.92.0.tar.xz +./ki18n-5.93.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bb3aafc..00b7154 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.92.0 +Version: 5.93.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Sun Apr 10 2022 Justin Zobel - 5.93-1 +- Update to 5.93 + * Thu Mar 10 2022 Rex Dieter - 5.92.0-1 - 5.92.0 diff --git a/sources b/sources index 382b6d7..718bc1e 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (ki18n-5.92.0.tar.xz) = 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 +SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a From 7ef77a6bee0efcc7f362e627d70e7f0cafafb031 Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Mon, 11 Apr 2022 15:30:05 +0930 Subject: [PATCH 159/190] Update to 5.93.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1c49b0a..69df072 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,4 @@ /ki18n-5.89.0.tar.xz /ki18n-5.90.0.tar.xz /ki18n-5.91.0.tar.xz +/ki18n-5.93.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index f66ca5a..c704003 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.91.0 -Release: 2%{?dist} +Version: 5.93.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Mon Apr 11 2022 Justin Zobel - 5.93.0-1 +- Update to 5.93.0 + * Tue Mar 22 2022 Jan Grulich - 5.91.0-2 - Rebuild (qt5) diff --git a/sources b/sources index 55d5e4e..0b5d8f1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.91.0.tar.xz) = 6bb7a67589ea19a39de628b412f1e57e3717d7f9640405d513ebc5edccb091dd7dddbc75db806274e2302466428a2d256a8ec00613a285ba9fdc5ba2bb454e66 +SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a From 3527e75071ecaa09442a537d050e6ea8419d778d Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:17:43 -0700 Subject: [PATCH 160/190] Revert back --- kf5-ki18n.spec | 25 ++----------------------- sources | 3 +-- sources.basename | 1 - 3 files changed, 3 insertions(+), 26 deletions(-) delete mode 100644 sources.basename diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 00b7154..53297a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.93.0 +Version: 5.88.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -90,7 +90,7 @@ developing applications that use %{name}. %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel - +%{_kf5_includedir}/ki18n_version.h %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so @@ -100,27 +100,6 @@ developing applications that use %{name}. %changelog -* Sun Apr 10 2022 Justin Zobel - 5.93-1 -- Update to 5.93 - -* Thu Mar 10 2022 Rex Dieter - 5.92.0-1 -- 5.92.0 - -* Tue Mar 08 2022 Jan Grulich - 5.91.0-2 -- Rebuild (qt5) - -* Fri Feb 11 2022 Rex Dieter - 5.91.0-1 -- 5.91.0 - -* Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 -- 5.90.0 - -* Wed Dec 08 2021 Rex Dieter - 5.89.0-1 -- 5.89.0 - * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 718bc1e..5db8464 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (ki18n-5.92.0.tar.xz) = 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 -SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a +SHA512 (ki18n-5.88.0.tar.xz) = 7d417a34667ca0e63a49e8d7cc2608028ea66e51adb6f22934a694fda65bb3f858b1e36960b184dcfd919d90107264682bd6426b27cbaba92faf34758668784c diff --git a/sources.basename b/sources.basename deleted file mode 100644 index 8ac063f..0000000 --- a/sources.basename +++ /dev/null @@ -1 +0,0 @@ -ki18n From a1aa191af96178d77ef04839082e78da119c98a5 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:20:55 -0700 Subject: [PATCH 161/190] Rebuild for qt5-5.15.3 --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 53297a1..3811dce 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.88.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue Apr 26 2022 Troy Dawson - 5.88.0-2 +- Rebuild for qt5-5.15.3 + * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 From bbf018ce8c4d28fed00a78e6f64659063170ad32 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:47:17 -0700 Subject: [PATCH 162/190] Revert "Rebuild for qt5-5.15.3" This reverts commit a1aa191af96178d77ef04839082e78da119c98a5. --- kf5-ki18n.spec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 3811dce..53297a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.88.0 -Release: 2%{?dist} +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,9 +100,6 @@ developing applications that use %{name}. %changelog -* Tue Apr 26 2022 Troy Dawson - 5.88.0-2 -- Rebuild for qt5-5.15.3 - * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 From 42a457a0c432e697add79b152386baa4d6e87eb5 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:47:18 -0700 Subject: [PATCH 163/190] Revert "Revert back" This reverts commit 3527e75071ecaa09442a537d050e6ea8419d778d. --- kf5-ki18n.spec | 25 +++++++++++++++++++++++-- sources | 3 ++- sources.basename | 1 + 3 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 sources.basename diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 53297a1..00b7154 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.88.0 +Version: 5.93.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -90,7 +90,7 @@ developing applications that use %{name}. %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel -%{_kf5_includedir}/ki18n_version.h + %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so @@ -100,6 +100,27 @@ developing applications that use %{name}. %changelog +* Sun Apr 10 2022 Justin Zobel - 5.93-1 +- Update to 5.93 + +* Thu Mar 10 2022 Rex Dieter - 5.92.0-1 +- 5.92.0 + +* Tue Mar 08 2022 Jan Grulich - 5.91.0-2 +- Rebuild (qt5) + +* Fri Feb 11 2022 Rex Dieter - 5.91.0-1 +- 5.91.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 +- 5.90.0 + +* Wed Dec 08 2021 Rex Dieter - 5.89.0-1 +- 5.89.0 + * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 5db8464..718bc1e 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -SHA512 (ki18n-5.88.0.tar.xz) = 7d417a34667ca0e63a49e8d7cc2608028ea66e51adb6f22934a694fda65bb3f858b1e36960b184dcfd919d90107264682bd6426b27cbaba92faf34758668784c +SHA512 (ki18n-5.92.0.tar.xz) = 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 +SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a diff --git a/sources.basename b/sources.basename new file mode 100644 index 0000000..8ac063f --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +ki18n From 32af22bf524905ca10b37c294ac86da594b0f928 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:53:05 -0700 Subject: [PATCH 164/190] Revert back --- kf5-ki18n.spec | 16 ++-------------- sources | 2 +- sources.basename | 1 - 3 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 sources.basename diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 21dd8d5..53297a1 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.91.0 +Version: 5.88.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -90,7 +90,7 @@ developing applications that use %{name}. %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel - +%{_kf5_includedir}/ki18n_version.h %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so @@ -100,18 +100,6 @@ developing applications that use %{name}. %changelog -* Fri Feb 11 2022 Rex Dieter - 5.91.0-1 -- 5.91.0 - -* Thu Jan 20 2022 Fedora Release Engineering - 5.90.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Tue Jan 04 2022 Marc Deop i Argemí (Private) - 5.90.0-1 -- 5.90.0 - -* Wed Dec 08 2021 Rex Dieter - 5.89.0-1 -- 5.89.0 - * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 diff --git a/sources b/sources index 55d5e4e..5db8464 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.91.0.tar.xz) = 6bb7a67589ea19a39de628b412f1e57e3717d7f9640405d513ebc5edccb091dd7dddbc75db806274e2302466428a2d256a8ec00613a285ba9fdc5ba2bb454e66 +SHA512 (ki18n-5.88.0.tar.xz) = 7d417a34667ca0e63a49e8d7cc2608028ea66e51adb6f22934a694fda65bb3f858b1e36960b184dcfd919d90107264682bd6426b27cbaba92faf34758668784c diff --git a/sources.basename b/sources.basename deleted file mode 100644 index 8ac063f..0000000 --- a/sources.basename +++ /dev/null @@ -1 +0,0 @@ -ki18n From f1f384e000719a849edf9af4946141736470be6f Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 26 Apr 2022 09:54:31 -0700 Subject: [PATCH 165/190] Rebuild for qt5-5.15.3 --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 53297a1..3811dce 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.88.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue Apr 26 2022 Troy Dawson - 5.88.0-2 +- Rebuild for qt5-5.15.3 + * Mon Nov 08 2021 Marc Deop - 5.88.0-1 - 5.88.0 From b0147124c76bb310be2aa4463772cda831c52a8d Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 13 May 2022 11:17:37 -0500 Subject: [PATCH 166/190] 5.94.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3869639..2cbbc3a 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ /ki18n-5.91.0.tar.xz /ki18n-5.92.0.tar.xz ./ki18n-5.93.tar.xz +/ki18n-5.94.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 00b7154..1d75348 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.93.0 +Version: 5.94.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Fri May 13 2022 Rex Dieter - 5.94.0-1 +- 5.94.0 + * Sun Apr 10 2022 Justin Zobel - 5.93-1 - Update to 5.93 diff --git a/sources b/sources index 718bc1e..7cb7b87 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (ki18n-5.92.0.tar.xz) = 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 -SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a +SHA512 (ki18n-5.94.0.tar.xz) = ff00a56f1d6e5a425d025320be6f6e1559e329f56e68975df9d7c1ecdc0108f2118af37373db583d7760f34877bd0f18bef47080a70dfca628d958f35e8f9e15 From c7b4238a52034e8b9df5c2cc32bb2fcc79f31f3d Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Tue, 17 May 2022 13:03:50 +0200 Subject: [PATCH 167/190] Rebuild (qt5) --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1d75348..31cf9c6 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.94.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Tue May 17 2022 Jan Grulich - 5.94.0-2 +- Rebuild (qt5) + * Fri May 13 2022 Rex Dieter - 5.94.0-1 - 5.94.0 From fa976dd34b3a057abd63208f44f11268efbf6191 Mon Sep 17 00:00:00 2001 From: Marc Deop Date: Sun, 3 Jul 2022 23:25:45 +0200 Subject: [PATCH 168/190] 5.96.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2cbbc3a..2e725b0 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,4 @@ /ki18n-5.92.0.tar.xz ./ki18n-5.93.tar.xz /ki18n-5.94.0.tar.xz +/ki18n-5.96.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 31cf9c6..708010f 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.94.0 -Release: 2%{?dist} +Version: 5.96.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Sun Jul 03 2022 Marc Deop - 5.96.0-1 +- 5.96.0 + * Tue May 17 2022 Jan Grulich - 5.94.0-2 - Rebuild (qt5) diff --git a/sources b/sources index 7cb7b87..492354d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.94.0.tar.xz) = ff00a56f1d6e5a425d025320be6f6e1559e329f56e68975df9d7c1ecdc0108f2118af37373db583d7760f34877bd0f18bef47080a70dfca628d958f35e8f9e15 +SHA512 (ki18n-5.96.0.tar.xz) = ab059bd98ce16e20a803f7597ae0e5e3698f6b5ccbcd846131a8c8b0d02201ca9a61ed67ecf93cb2931ac347d3e13d5515079643c2cbbec39b0fe8139de17216 From e17113feae7ca7c6513e0ec62cc597eff266f2ca Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Thu, 7 Jul 2022 11:29:32 -0700 Subject: [PATCH 169/190] Merge branch epel9-next into epel8-next --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index a0f668d..c704003 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -90,7 +90,7 @@ developing applications that use %{name}. %lang(sr) %{_datadir}/locale/uk/LC_SCRIPTS/ki18n5/ %files devel -%{_kf5_includedir}/ki18n_version.h + %{_kf5_includedir}/KI18n/ %{_kf5_includedir}/KI18nLocaleData/ %{_kf5_libdir}/libKF5I18n.so From b69ac75132d48f6fb62ad403e839d5b706d1b35f Mon Sep 17 00:00:00 2001 From: Jan Grulich Date: Thu, 14 Jul 2022 15:03:24 +0200 Subject: [PATCH 170/190] Rebuild (qt5) --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 708010f..cae0cc9 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.96.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Thu Jul 14 2022 Jan Grulich - 5.96.0-2 +- Rebuild (qt5) + * Sun Jul 03 2022 Marc Deop - 5.96.0-1 - 5.96.0 From 495a6cc482bc81513db9b4ff684bf66a7e220e56 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 16:03:12 +0000 Subject: [PATCH 171/190] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index cae0cc9..24809cb 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.96.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 5.96.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Thu Jul 14 2022 Jan Grulich - 5.96.0-2 - Rebuild (qt5) From ddcf66d4cc371a7ce8120806a2dde842541c3548 Mon Sep 17 00:00:00 2001 From: Justin Zobel Date: Sun, 14 Aug 2022 13:07:03 +0930 Subject: [PATCH 172/190] Update to 5.97.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2e725b0..1d684f8 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,4 @@ ./ki18n-5.93.tar.xz /ki18n-5.94.0.tar.xz /ki18n-5.96.0.tar.xz +/ki18n-5.97.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 24809cb..177b537 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.96.0 -Release: 3%{?dist} +Version: 5.97.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Sat Aug 13 2022 Justin Zobel - 5.97.0-1 +- Update to 5.97.0 + * Thu Jul 21 2022 Fedora Release Engineering - 5.96.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 492354d..7de06f3 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ SHA512 (ki18n-5.96.0.tar.xz) = ab059bd98ce16e20a803f7597ae0e5e3698f6b5ccbcd846131a8c8b0d02201ca9a61ed67ecf93cb2931ac347d3e13d5515079643c2cbbec39b0fe8139de17216 +SHA512 (ki18n-5.97.0.tar.xz) = b95ec831b22428dd9f236e3c4d44721e4de488e39c6aba1cb8be36ef48d2223bc21f4f0a90d4204d53bef849ab8a3ee987dd6d71f437b7de9e3bd75f247012e9 From 8274634bff070dfb05deb1a843abd13ee444f1e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Thu, 15 Sep 2022 17:59:18 +0200 Subject: [PATCH 173/190] 5.98.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 3 +-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1d684f8..604d199 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ /ki18n-5.94.0.tar.xz /ki18n-5.96.0.tar.xz /ki18n-5.97.0.tar.xz +/ki18n-5.98.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 177b537..6965d78 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.97.0 +Version: 5.98.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Thu Sep 15 2022 Marc Deop - 5.98.0-1 +- 5.98.0 + * Sat Aug 13 2022 Justin Zobel - 5.97.0-1 - Update to 5.97.0 diff --git a/sources b/sources index 7de06f3..ca931b5 100644 --- a/sources +++ b/sources @@ -1,2 +1 @@ -SHA512 (ki18n-5.96.0.tar.xz) = ab059bd98ce16e20a803f7597ae0e5e3698f6b5ccbcd846131a8c8b0d02201ca9a61ed67ecf93cb2931ac347d3e13d5515079643c2cbbec39b0fe8139de17216 -SHA512 (ki18n-5.97.0.tar.xz) = b95ec831b22428dd9f236e3c4d44721e4de488e39c6aba1cb8be36ef48d2223bc21f4f0a90d4204d53bef849ab8a3ee987dd6d71f437b7de9e3bd75f247012e9 +SHA512 (ki18n-5.98.0.tar.xz) = 33b0694b26735f312d84ee1d1797c850e826a7899486e80dbba00b26a7922e2adf88af5695a600fb95e56e307e9f9ad8cb433204c60ab8fa9c5d7076505b696a From 0d7f775acc928427b44d60f65b1fbda5c0237235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Fri, 14 Oct 2022 17:00:04 +0200 Subject: [PATCH 174/190] 5.99.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 604d199..6763fd5 100644 --- a/.gitignore +++ b/.gitignore @@ -49,3 +49,4 @@ /ki18n-5.96.0.tar.xz /ki18n-5.97.0.tar.xz /ki18n-5.98.0.tar.xz +/ki18n-5.99.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 6965d78..45fadee 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.98.0 +Version: 5.99.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Fri Oct 14 2022 Marc Deop - 5.99.0-1 +- 5.99.0 + * Thu Sep 15 2022 Marc Deop - 5.98.0-1 - 5.98.0 diff --git a/sources b/sources index ca931b5..1080ebc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.98.0.tar.xz) = 33b0694b26735f312d84ee1d1797c850e826a7899486e80dbba00b26a7922e2adf88af5695a600fb95e56e307e9f9ad8cb433204c60ab8fa9c5d7076505b696a +SHA512 (ki18n-5.99.0.tar.xz) = 845776c52e949b0306506185ed9000568d55c0bb1db9b6776310e637175d8c86a815b53a53ebf20a7c87375f9535afa50e7a21daf43a6f46eb99b0281431cd76 From e5ceabdae69942cce4e8ea9f3295e8a2578ff8e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 6 Nov 2022 22:29:02 +0100 Subject: [PATCH 175/190] 5.100.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6763fd5..cdae547 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,4 @@ /ki18n-5.97.0.tar.xz /ki18n-5.98.0.tar.xz /ki18n-5.99.0.tar.xz +/ki18n-5.100.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 45fadee..2cd3f61 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.99.0 +Version: 5.100.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -100,6 +100,9 @@ developing applications that use %{name}. %changelog +* Sun Nov 06 2022 Marc Deop - 5.100.0-1 +- 5.100.0 + * Fri Oct 14 2022 Marc Deop - 5.99.0-1 - 5.99.0 diff --git a/sources b/sources index 1080ebc..12c22c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.99.0.tar.xz) = 845776c52e949b0306506185ed9000568d55c0bb1db9b6776310e637175d8c86a815b53a53ebf20a7c87375f9535afa50e7a21daf43a6f46eb99b0281431cd76 +SHA512 (ki18n-5.100.0.tar.xz) = 18d8c9a8e80fa8a1229a6cfa6c8de02044a406ad5af0491461c6e66ad15182a9700f43478e7ec9e90e36cc3d4f20b8e9650ba29aadfa64ce67d61de859dfb5e1 From 4d7220d79f24b8a23793377a9303913b128a6364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 12 Dec 2022 16:02:52 +0100 Subject: [PATCH 176/190] 5.101.0 --- .gitignore | 1 + kf5-ki18n.spec | 13 ++++++------- sources | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index cdae547..2e523d3 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,4 @@ /ki18n-5.98.0.tar.xz /ki18n-5.99.0.tar.xz /ki18n-5.100.0.tar.xz +/ki18n-5.101.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 2cd3f61..0f8830d 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.100.0 +Version: 5.101.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -9,12 +9,7 @@ License: LGPLv2+ URL: https://invent.kde.org/frameworks/%{framework} %global majmin %(echo %{version} | cut -d. -f1-2) -%global revision %(echo %{version} | cut -d. -f3) -%if %{revision} >= 50 -%global stable unstable -%else -%global stable stable -%endif +%global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz ## upstream patches @@ -100,6 +95,10 @@ developing applications that use %{name}. %changelog +* Mon Dec 12 2022 Marc Deop - 5.101.0-1 +- 5.101.0 +- use new macros to simplify code + * Sun Nov 06 2022 Marc Deop - 5.100.0-1 - 5.100.0 diff --git a/sources b/sources index 12c22c4..1322a4c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.100.0.tar.xz) = 18d8c9a8e80fa8a1229a6cfa6c8de02044a406ad5af0491461c6e66ad15182a9700f43478e7ec9e90e36cc3d4f20b8e9650ba29aadfa64ce67d61de859dfb5e1 +SHA512 (ki18n-5.101.0.tar.xz) = 6f5f1bd4f8dfaba466c3ee76469208fa8ba1ca42bb7fb74f039eabcbfc5fa471c3397a60ca077989a1267ba517e4bb6f29c91a4db5d487653784ea3ac20c6822 From 85cee2eadec1cb3236868583abd2d40d0ef0fd89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 14 Jan 2023 16:40:35 +0100 Subject: [PATCH 177/190] 5.102.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2e523d3..b95d157 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ /ki18n-5.99.0.tar.xz /ki18n-5.100.0.tar.xz /ki18n-5.101.0.tar.xz +/ki18n-5.102.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 0f8830d..58fb7d2 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.101.0 +Version: 5.102.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sat Jan 14 2023 Marc Deop - 5.102.0-1 +- 5.102.0 + * Mon Dec 12 2022 Marc Deop - 5.101.0-1 - 5.101.0 - use new macros to simplify code diff --git a/sources b/sources index 1322a4c..4eb0183 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.101.0.tar.xz) = 6f5f1bd4f8dfaba466c3ee76469208fa8ba1ca42bb7fb74f039eabcbfc5fa471c3397a60ca077989a1267ba517e4bb6f29c91a4db5d487653784ea3ac20c6822 +SHA512 (ki18n-5.102.0.tar.xz) = 382f5e06af5d48ca0efc2465d85c073cba66ff04a7928e8763438b116a586293406e6b66567447f35db10850d2db2cd026e40c47b79fe473f01e0696af0d45ec From 88eca696b9468d68d4ad562bb07057ab805e7c66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 15 Jan 2023 17:46:21 +0100 Subject: [PATCH 178/190] fix: use macros from macros.kf5 instead of custom code --- kf5-ki18n.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 58fb7d2..1d303ed 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -8,7 +8,7 @@ Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ URL: https://invent.kde.org/frameworks/%{framework} -%global majmin %(echo %{version} | cut -d. -f1-2) +%global majmin %majmin_ver_kf5 %global stable %stable_kf5 Source0: http://download.kde.org/%{stable}/frameworks/%{majmin}/%{framework}-%{version}.tar.xz From 755867edf14e0fc4a5ae2c8d6502bc676d781f51 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Jan 2023 14:33:12 +0000 Subject: [PATCH 179/190] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1d303ed..940492c 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.102.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Thu Jan 19 2023 Fedora Release Engineering - 5.102.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jan 14 2023 Marc Deop - 5.102.0-1 - 5.102.0 From 3fee545e4008f50da157f9ff620e47acef593ce0 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Wed, 25 Jan 2023 14:44:43 -0800 Subject: [PATCH 180/190] fix diffs --- .gitignore | 2 +- kf5-ki18n.spec | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 51417c0..b95d157 100644 --- a/.gitignore +++ b/.gitignore @@ -44,7 +44,7 @@ /ki18n-5.90.0.tar.xz /ki18n-5.91.0.tar.xz /ki18n-5.92.0.tar.xz -/ki18n-5.93.0.tar.xz +./ki18n-5.93.tar.xz /ki18n-5.94.0.tar.xz /ki18n-5.96.0.tar.xz /ki18n-5.97.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 539e07f..58fb7d2 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -129,8 +129,8 @@ developing applications that use %{name}. * Fri May 13 2022 Rex Dieter - 5.94.0-1 - 5.94.0 -* Mon Apr 11 2022 Justin Zobel - 5.93.0-1 -- Update to 5.93.0 +* Sun Apr 10 2022 Justin Zobel - 5.93-1 +- Update to 5.93 * Thu Mar 10 2022 Rex Dieter - 5.92.0-1 - 5.92.0 From 48f447fb0003fc0fde7330e03c466f15ce25dd08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 5 Feb 2023 17:38:20 +0100 Subject: [PATCH 181/190] 5.103.0 --- .gitignore | 1 + kf5-ki18n.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b95d157..e5435bb 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,4 @@ /ki18n-5.100.0.tar.xz /ki18n-5.101.0.tar.xz /ki18n-5.102.0.tar.xz +/ki18n-5.103.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 940492c..10e61ac 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,8 +1,8 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.102.0 -Release: 2%{?dist} +Version: 5.103.0 +Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sun Feb 05 2023 Marc Deop - 5.103.0-1 +- 5.103.0 + * Thu Jan 19 2023 Fedora Release Engineering - 5.102.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild diff --git a/sources b/sources index 4eb0183..8e8ef27 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.102.0.tar.xz) = 382f5e06af5d48ca0efc2465d85c073cba66ff04a7928e8763438b116a586293406e6b66567447f35db10850d2db2cd026e40c47b79fe473f01e0696af0d45ec +SHA512 (ki18n-5.103.0.tar.xz) = 74d5d39ec233add88f7f940b17143c87063cfdf7c34c70d6957acc47a6880c90821a30db816a9f934868e658dccc5dba89abc3c458d3a8b4e52e40d3af52f1ca From c8153bf643d5c631830ae9dec3f91bb63a6c41d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 4 Mar 2023 17:24:41 +0100 Subject: [PATCH 182/190] 5.104.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e5435bb..9a1158c 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,4 @@ /ki18n-5.101.0.tar.xz /ki18n-5.102.0.tar.xz /ki18n-5.103.0.tar.xz +/ki18n-5.104.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 10e61ac..c03b5f9 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.103.0 +Version: 5.104.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sat Mar 04 2023 Marc Deop i Argemí - 5.104.0-1 +- 5.104.0 + * Sun Feb 05 2023 Marc Deop - 5.103.0-1 - 5.103.0 diff --git a/sources b/sources index 8e8ef27..3c4bfb1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.103.0.tar.xz) = 74d5d39ec233add88f7f940b17143c87063cfdf7c34c70d6957acc47a6880c90821a30db816a9f934868e658dccc5dba89abc3c458d3a8b4e52e40d3af52f1ca +SHA512 (ki18n-5.104.0.tar.xz) = da93d05b66eed7bfe2527d5156f72747acc2eec03e89f543a7bb1767f891d81a148d0c42be90e466667a2f05a87e451db9976ef1e5fb123bc416b3feac637071 From 59dde9f151d511d391d5b787d850c5bdab253e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Apr 2023 10:21:00 +0200 Subject: [PATCH 183/190] 5.105.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9a1158c..fc3dbf7 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,4 @@ /ki18n-5.102.0.tar.xz /ki18n-5.103.0.tar.xz /ki18n-5.104.0.tar.xz +/ki18n-5.105.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index c03b5f9..bdcf7d4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.104.0 +Version: 5.105.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sun Apr 02 2023 Marc Deop i Argemí - 5.105.0-1 +- 5.105.0 + * Sat Mar 04 2023 Marc Deop i Argemí - 5.104.0-1 - 5.104.0 diff --git a/sources b/sources index 3c4bfb1..f5d14d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.104.0.tar.xz) = da93d05b66eed7bfe2527d5156f72747acc2eec03e89f543a7bb1767f891d81a148d0c42be90e466667a2f05a87e451db9976ef1e5fb123bc416b3feac637071 +SHA512 (ki18n-5.105.0.tar.xz) = ca8bb4e2f812cfad50e95405d2e5243df3c2c0c844bad32820e88692d799669d9b573b86e8ab712caf88b9283413a5d18cf743ed197e2c44c4514451abdf6f16 From 15e2bc19758d3a0124dc841f60fdb21c447cf309 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Tue, 9 May 2023 06:19:23 -0700 Subject: [PATCH 184/190] Rebuild for update qt5 --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bdcf7d4..1ee3663 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.105.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Tue May 09 2023 Troy Dawson - 5.105.0-2 +- Rebuild for update qt5 + * Sun Apr 02 2023 Marc Deop i Argemí - 5.105.0-1 - 5.105.0 From 4b3dd2a161049ea94b5be95a589998a5d379a2d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Mon, 15 May 2023 21:55:25 +0200 Subject: [PATCH 185/190] 5.106.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fc3dbf7..a6469e5 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,4 @@ /ki18n-5.103.0.tar.xz /ki18n-5.104.0.tar.xz /ki18n-5.105.0.tar.xz +/ki18n-5.106.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index bdcf7d4..1c4b74a 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.105.0 +Version: 5.106.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Mon May 15 2023 Marc Deop i Argemí - 5.106.0-1 +- 5.106.0 + * Sun Apr 02 2023 Marc Deop i Argemí - 5.105.0-1 - 5.105.0 diff --git a/sources b/sources index f5d14d7..4ff198c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.105.0.tar.xz) = ca8bb4e2f812cfad50e95405d2e5243df3c2c0c844bad32820e88692d799669d9b573b86e8ab712caf88b9283413a5d18cf743ed197e2c44c4514451abdf6f16 +SHA512 (ki18n-5.106.0.tar.xz) = 8012b5cc1d78ae92b3077d978b6010e032183b6ce8ceb0ef4df928bb1d2f21be4fe91e584cf5bac40539cc9c11cc9e5f5973ab8333518cfca4d8119f31bdabd5 From 5c7bc6235f2240c276a436d04df08330b5ad55ec Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Wed, 17 May 2023 10:35:21 -0700 Subject: [PATCH 186/190] Rebuild again for qt5 update --- kf5-ki18n.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1ee3663..ba20ff3 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -2,7 +2,7 @@ Name: kf5-%{framework} Version: 5.105.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization License: LGPLv2+ @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Wed May 17 2023 Troy Dawson - 5.105.0-3 +- Rebuild again for qt5 update + * Tue May 09 2023 Troy Dawson - 5.105.0-2 - Rebuild for update qt5 From cee97fc5306c2d184130ef985d6d6684677118af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sat, 3 Jun 2023 15:29:20 +0200 Subject: [PATCH 187/190] 5.107.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a6469e5..52dce58 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,4 @@ /ki18n-5.104.0.tar.xz /ki18n-5.105.0.tar.xz /ki18n-5.106.0.tar.xz +/ki18n-5.107.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 1c4b74a..7be59b4 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.106.0 +Version: 5.107.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sat Jun 03 2023 Marc Deop i Argemí - 5.107.0-1 +- 5.107.0 + * Mon May 15 2023 Marc Deop i Argemí - 5.106.0-1 - 5.106.0 diff --git a/sources b/sources index 4ff198c..f7d203d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.106.0.tar.xz) = 8012b5cc1d78ae92b3077d978b6010e032183b6ce8ceb0ef4df928bb1d2f21be4fe91e584cf5bac40539cc9c11cc9e5f5973ab8333518cfca4d8119f31bdabd5 +SHA512 (ki18n-5.107.0.tar.xz) = b6bdc2ff82fdd6c7acea209ae99fdc79ebf3b36db404fd59dc356281b3c0b32793ff34fc34c293f19202a234afb5a7060e464fe0c572683af2cab71088eec1ed From b6d1f68120c551dc1e486622528992cd1f56af76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Deop=20i=20Argem=C3=AD?= Date: Sun, 2 Jul 2023 19:32:20 +0200 Subject: [PATCH 188/190] 5.108.0 --- .gitignore | 1 + kf5-ki18n.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 52dce58..bad5eea 100644 --- a/.gitignore +++ b/.gitignore @@ -58,3 +58,4 @@ /ki18n-5.105.0.tar.xz /ki18n-5.106.0.tar.xz /ki18n-5.107.0.tar.xz +/ki18n-5.108.0.tar.xz diff --git a/kf5-ki18n.spec b/kf5-ki18n.spec index 7be59b4..c74dbc2 100644 --- a/kf5-ki18n.spec +++ b/kf5-ki18n.spec @@ -1,7 +1,7 @@ %global framework ki18n Name: kf5-%{framework} -Version: 5.107.0 +Version: 5.108.0 Release: 1%{?dist} Summary: KDE Frameworks 5 Tier 1 addon for localization @@ -95,6 +95,9 @@ developing applications that use %{name}. %changelog +* Sun Jul 02 2023 Marc Deop i Argemí - 5.108.0-1 +- 5.108.0 + * Sat Jun 03 2023 Marc Deop i Argemí - 5.107.0-1 - 5.107.0 diff --git a/sources b/sources index f7d203d..b71be86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ki18n-5.107.0.tar.xz) = b6bdc2ff82fdd6c7acea209ae99fdc79ebf3b36db404fd59dc356281b3c0b32793ff34fc34c293f19202a234afb5a7060e464fe0c572683af2cab71088eec1ed +SHA512 (ki18n-5.108.0.tar.xz) = fc3abfb724197b79ccf5cba01cfab11e1c5838a3314fae4e9b2c6b1833f53dea345aebeb8f6aa182e471ff2922422bd9d59df6d0fc45086993133348125495d2 From 8c63aa7650f9919e89046a06bb8dcfa60c5a12a5 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Fri, 20 Oct 2023 18:58:45 -0700 Subject: [PATCH 189/190] Add 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..8ac063f --- /dev/null +++ b/sources.basename @@ -0,0 +1 @@ +ki18n From a3d66526d6bf30a856e7ee0892f7f6bb7066b43e Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:39:52 +0300 Subject: [PATCH 190/190] Remove unnecessary files --- sources | 1 - sources.basename | 1 - 2 files changed, 2 deletions(-) delete mode 100644 sources delete mode 100644 sources.basename diff --git a/sources b/sources deleted file mode 100644 index b71be86..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (ki18n-5.108.0.tar.xz) = fc3abfb724197b79ccf5cba01cfab11e1c5838a3314fae4e9b2c6b1833f53dea345aebeb8f6aa182e471ff2922422bd9d59df6d0fc45086993133348125495d2 diff --git a/sources.basename b/sources.basename deleted file mode 100644 index 8ac063f..0000000 --- a/sources.basename +++ /dev/null @@ -1 +0,0 @@ -ki18n