pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/ki18n ki18n: update to 5.93.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/686a472ef083
branches:  trunk
changeset: 377802:686a472ef083
user:      markd <markd%pkgsrc.org@localhost>
date:      Mon Apr 25 04:02:39 2022 +0000

description:
ki18n: update to 5.93.0

5.83.0
ki18n_wrap_ui: catch alias targets before failing internally

5.88.0
Don't discard non-conflicting substring matches
Fall back to the compile-time detected iso-codes location
Use unique_ptr instead of managing memory manually
Load Qt translations even if some catalogs are missing
Add KCountry[Subdivision]::operator!=
Forward declaration needs a matching export macro on Windows
Extend README to cover the new features
Move the new country/country subdivision/timezone code into its on library
Add QML API for KTimeZone
Add QML bindings for country/country subdivision API
Fix offset overflows for ISO 3166-2 name lookups
Integrate the Unicode normalization and prefix matching from KContacts
Cache iso codes cache sizes
Implement KCountry::fromName()
Add timezone lookup by geo coordinate, and timezone to country mapping
Make use of the spatial index for countries and subdivisions
Generate spatial index for timezones/countries/country subdivisions
Implement timezone by country (subdivision) lookup
QGIS Python scripts for generating country/timezone lookup tables
Add country and country subdivision lookup and translation API

5.89.0
Document how KLazyLocalizedString is tied to a translation domain
Consider TRANSLATION_DOMAIN when converting to a KLocalizedString
KLazyLocalizedString: add KLocalizedString forward API for convenience
KLazyLocalizedString: allow implicit default constructor
Add KLazyLocalizedString::isEmpty() const
Fix MSVC warning about inconsistent export macro in forward declaration
Port Kuit keymap away from I18N_NOOP macro usage
Deprecate the I18N_NOOP macros in favor of KLazyLocalizedString
Add KLazyLocalizedString as a replacement for the I18N_NOOP macros
Fix loading a KCatalog with a different language on Windows

5.90.0
API dox: fix KUIT tags examples to use xi18n* calls

5.91.0
Default initialize QVariants as such, not as a QString
install plugins in kf<version>
Fix warning info
KuitSetup: fix setting classification of tags

diffstat:

 devel/ki18n/Makefile |   3 +--
 devel/ki18n/PLIST    |  18 ++++++++++++++++--
 devel/ki18n/distinfo |   8 ++++----
 3 files changed, 21 insertions(+), 8 deletions(-)

diffs (70 lines):

diff -r ca9c33f6d795 -r 686a472ef083 devel/ki18n/Makefile
--- a/devel/ki18n/Makefile      Mon Apr 25 03:59:20 2022 +0000
+++ b/devel/ki18n/Makefile      Mon Apr 25 04:02:39 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.48 2022/04/18 19:10:52 adam Exp $
+# $NetBSD: Makefile,v 1.49 2022/04/25 04:02:39 markd Exp $
 
 DISTNAME=      ki18n-${KF5VER}
-PKGREVISION=   6
 CATEGORIES=    devel
 
 HOMEPAGE=      https://community.kde.org/Frameworks
diff -r ca9c33f6d795 -r 686a472ef083 devel/ki18n/PLIST
--- a/devel/ki18n/PLIST Mon Apr 25 03:59:20 2022 +0000
+++ b/devel/ki18n/PLIST Mon Apr 25 04:02:39 2022 +0000
@@ -1,16 +1,25 @@
-@comment $NetBSD: PLIST,v 1.6 2021/03/30 10:58:22 markd Exp $
+@comment $NetBSD: PLIST,v 1.7 2022/04/25 04:02:39 markd Exp $
+include/KF5/KI18n/KLazyLocalizedString
 include/KF5/KI18n/KLocalizedContext
 include/KF5/KI18n/KLocalizedString
 include/KF5/KI18n/KLocalizedTranslator
 include/KF5/KI18n/KuitMarkup
 include/KF5/KI18n/KuitSetup
 include/KF5/KI18n/ki18n_export.h
+include/KF5/KI18n/ki18n_version.h
+include/KF5/KI18n/klazylocalizedstring.h
 include/KF5/KI18n/klocalizedcontext.h
 include/KF5/KI18n/klocalizedstring.h
 include/KF5/KI18n/klocalizedtranslator.h
 include/KF5/KI18n/kuitmarkup.h
 include/KF5/KI18n/kuitsetup.h
-include/KF5/ki18n_version.h
+include/KF5/KI18nLocaleData/KCountry
+include/KF5/KI18nLocaleData/KCountrySubdivision
+include/KF5/KI18nLocaleData/KTimeZone
+include/KF5/KI18nLocaleData/kcountry.h
+include/KF5/KI18nLocaleData/kcountrysubdivision.h
+include/KF5/KI18nLocaleData/ki18nlocaledata_export.h
+include/KF5/KI18nLocaleData/ktimezone.h
 lib/cmake/KF5I18n/KF5I18nConfig.cmake
 lib/cmake/KF5I18n/KF5I18nConfigVersion.cmake
 lib/cmake/KF5I18n/KF5I18nMacros.cmake
@@ -23,8 +32,13 @@
 lib/libKF5I18n.so
 lib/libKF5I18n.so.5
 lib/libKF5I18n.so.${PKGVERSION}
+lib/libKF5I18nLocaleData.so
+lib/libKF5I18nLocaleData.so.5
+lib/libKF5I18nLocaleData.so.${PKGVERSION}
 qt5/mkspecs/modules/qt_KI18n.pri
 qt5/plugins/kf5/ktranscript.so
+qt5/qml/org/kde/i18n/localeData/libki18nlocaledataqmlplugin.so
+qt5/qml/org/kde/i18n/localeData/qmldir
 share/locale/af/LC_MESSAGES/ki18n5.mo
 share/locale/ar/LC_MESSAGES/ki18n5.mo
 share/locale/as/LC_MESSAGES/ki18n5.mo
diff -r ca9c33f6d795 -r 686a472ef083 devel/ki18n/distinfo
--- a/devel/ki18n/distinfo      Mon Apr 25 03:59:20 2022 +0000
+++ b/devel/ki18n/distinfo      Mon Apr 25 04:02:39 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.13 2021/10/26 10:15:10 nia Exp $
+$NetBSD: distinfo,v 1.14 2022/04/25 04:02:39 markd Exp $
 
-BLAKE2s (ki18n-5.80.0.tar.xz) = ae7601dbf72f383c7a037f303c5b68bbc1692a386ab7ab01611ffacfa69276e0
-SHA512 (ki18n-5.80.0.tar.xz) = 0ba5b71c40f98c77792d73fd15a97e59cfb3d7f33da5d49a48621dbeed36a893c914b61e179c6f457ac552a91ebead55f59d70266ed02e6cac270e9936cd2494
-Size (ki18n-5.80.0.tar.xz) = 591016 bytes
+BLAKE2s (ki18n-5.93.0.tar.xz) = ef5cb8ef11efa55de3cf6e73fc98d796265b4fd66c330217925e55bab3737709
+SHA512 (ki18n-5.93.0.tar.xz) = ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a
+Size (ki18n-5.93.0.tar.xz) = 955916 bytes



Home | Main Index | Thread Index | Old Index