diff options
author | markd <markd@pkgsrc.org> | 2021-04-07 12:28:14 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2021-04-07 12:28:14 +0000 |
commit | c29e9175c1cefbc3b4be48ad0825c0aefc0fbbff (patch) | |
tree | 9c990aaf06932c6d0f48a32b5e8217a5c03cf815 | |
parent | b9acbeafd5fa8fbb6594770278d113d79d488ca1 (diff) | |
download | pkgsrc-c29e9175c1cefbc3b4be48ad0825c0aefc0fbbff.tar.gz |
kde applications release: update to 20.12.3
10 months worth of updates.
335 files changed, 2031 insertions, 1838 deletions
diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 984bcd50469..ced9a7744d1 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.66 2021/02/07 06:30:11 ryoon Exp $ +# $NetBSD: Makefile,v 1.67 2021/04/07 12:28:14 markd Exp $ DISTNAME= ark-${KAPPSVER} -PKGREVISION= 8 CATEGORIES= x11 HOMEPAGE= https://kde.org/applications/utilities/ark/ diff --git a/archivers/ark/PLIST b/archivers/ark/PLIST index c0fc97a945a..421f9e877f9 100644 --- a/archivers/ark/PLIST +++ b/archivers/ark/PLIST @@ -1,7 +1,7 @@ -@comment $NetBSD: PLIST,v 1.7 2020/06/09 11:56:05 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:14 markd Exp $ bin/ark lib/libkerfuffle.so.20 -lib/libkerfuffle.so.20.4.1 +lib/libkerfuffle.so.${PKGVERSION} man/ca/man1/ark.1 man/de/man1/ark.1 man/es/man1/ark.1 @@ -50,6 +50,11 @@ share/doc/HTML/fr/ark/index.cache.bz2 share/doc/HTML/fr/ark/index.docbook share/doc/HTML/gl/ark/index.cache.bz2 share/doc/HTML/gl/ark/index.docbook +share/doc/HTML/it/ark/ark-comment.png +share/doc/HTML/it/ark/ark-mainwindow.png +share/doc/HTML/it/ark/create-archive.png +share/doc/HTML/it/ark/create-protected-archive.png +share/doc/HTML/it/ark/extract-dialog.png share/doc/HTML/it/ark/index.cache.bz2 share/doc/HTML/it/ark/index.docbook share/doc/HTML/nl/ark/index.cache.bz2 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 1f2e72b79d0..5cf78a90042 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,8 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/09/20 11:05:31 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:14 markd Exp $ -SHA1 (ark-20.04.1.tar.xz) = 8749d72169443e38514a64a850aad1f88f616422 -RMD160 (ark-20.04.1.tar.xz) = ec8435d4d5d5aeff657762ba4441acf3f6237bf7 -SHA512 (ark-20.04.1.tar.xz) = 4433b6aee95a88f7a57cca1275a25194cd721b26d38b60059b907c5f7949e75ddc76337f33ed4e07c095622f8e8ee20e9ce1158e02ff620d386fefd6e3472ff1 -Size (ark-20.04.1.tar.xz) = 2587528 bytes -SHA1 (patch-kerfuffle_jobs.cpp) = 41684c88ef8518e9a06ddcb073cf7251f78b9a79 -SHA1 (patch-plugins_libarchive_libarchiveplugin.cpp) = 1cd5da5873f3e32f79ce0a85a1afabca28b96fcd +SHA1 (ark-20.12.3.tar.xz) = c420284617af098aedb526c437f19df26c887161 +RMD160 (ark-20.12.3.tar.xz) = 748fc3c5aaee8e4d2acd424d83c7934870a24aa6 +SHA512 (ark-20.12.3.tar.xz) = c6f3da5f3c24ad274891af99dd118d0c852382ce632abbc1273a5b6e216ecb53ef466d49d2279d3e6f0e1b088975584eadb2d2182d3819b888047c0a59ba0a7a +Size (ark-20.12.3.tar.xz) = 2717324 bytes diff --git a/archivers/ark/patches/patch-kerfuffle_jobs.cpp b/archivers/ark/patches/patch-kerfuffle_jobs.cpp deleted file mode 100644 index e4433f98005..00000000000 --- a/archivers/ark/patches/patch-kerfuffle_jobs.cpp +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-kerfuffle_jobs.cpp,v 1.1 2020/09/20 11:05:31 markd Exp $ - -https://kde.org/info/security/advisory-20200730-1.txt -A maliciously crafted archive with "../" in the file paths would -install files anywhere in the user's home directory upon extraction. - ---- kerfuffle/jobs.cpp.orig 2020-05-11 21:15:07.000000000 +0000 -+++ kerfuffle/jobs.cpp -@@ -181,6 +181,13 @@ void Job::onError(const QString & messag - - void Job::onEntry(Archive::Entry *entry) - { -+ const QString entryFullPath = entry->fullPath(); -+ if (QDir::cleanPath(entryFullPath).contains(QLatin1String("../"))) { -+ qCWarning(ARK) << "Possibly malicious archive. Detected entry that could lead to a directory traversal attack:" << entryFullPath; -+ onError(i18n("Could not load the archive because it contains ill-formed entries and might be a malicious archive."), QString()); -+ onFinished(false); -+ return; -+ } - emit newEntry(entry); - } - diff --git a/archivers/ark/patches/patch-plugins_libarchive_libarchiveplugin.cpp b/archivers/ark/patches/patch-plugins_libarchive_libarchiveplugin.cpp deleted file mode 100644 index 3d3fc5a4d50..00000000000 --- a/archivers/ark/patches/patch-plugins_libarchive_libarchiveplugin.cpp +++ /dev/null @@ -1,33 +0,0 @@ -$NetBSD: patch-plugins_libarchive_libarchiveplugin.cpp,v 1.1 2020/09/20 11:05:31 markd Exp $ - -https://kde.org/info/security/advisory-20200827-1.txt -A maliciously crafted TAR archive containing symlink entries would -install files anywhere in the user's home directory upon extraction. - ---- plugins/libarchive/libarchiveplugin.cpp.orig 2020-05-11 21:15:07.000000000 +0000 -+++ plugins/libarchive/libarchiveplugin.cpp -@@ -509,21 +509,9 @@ void LibarchivePlugin::emitEntryFromArch - - int LibarchivePlugin::extractionFlags() const - { -- int result = ARCHIVE_EXTRACT_TIME; -- result |= ARCHIVE_EXTRACT_SECURE_NODOTDOT; -- -- // TODO: Don't use arksettings here -- /*if ( ArkSettings::preservePerms() ) -- { -- result &= ARCHIVE_EXTRACT_PERM; -- } -- -- if ( !ArkSettings::extractOverwrite() ) -- { -- result &= ARCHIVE_EXTRACT_NO_OVERWRITE; -- }*/ -- -- return result; -+ return ARCHIVE_EXTRACT_TIME -+ | ARCHIVE_EXTRACT_SECURE_NODOTDOT -+ | ARCHIVE_EXTRACT_SECURE_SYMLINKS; - } - - void LibarchivePlugin::copyData(const QString& filename, struct archive *dest, bool partialprogress) diff --git a/databases/kldap/Makefile b/databases/kldap/Makefile index 5ce9730a477..7963a1dc3c8 100644 --- a/databases/kldap/Makefile +++ b/databases/kldap/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/02/07 06:30:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.16 2021/04/07 12:28:15 markd Exp $ DISTNAME= kldap-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= databases HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/databases/kldap/PLIST b/databases/kldap/PLIST index 5af96c2331e..e7c0263473b 100644 --- a/databases/kldap/PLIST +++ b/databases/kldap/PLIST @@ -1,6 +1,11 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:05 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:15 markd Exp $ +include/KF5/KLDAP/KLDAP/AddHostDialog include/KF5/KLDAP/KLDAP/Ber +include/KF5/KLDAP/KLDAP/LdapClient +include/KF5/KLDAP/KLDAP/LdapClientSearch +include/KF5/KLDAP/KLDAP/LdapClientSearchConfig include/KF5/KLDAP/KLDAP/LdapConfigWidget +include/KF5/KLDAP/KLDAP/LdapConfigureWidget include/KF5/KLDAP/KLDAP/LdapConnection include/KF5/KLDAP/KLDAP/LdapControl include/KF5/KLDAP/KLDAP/LdapDN @@ -11,8 +16,13 @@ include/KF5/KLDAP/KLDAP/LdapSearch include/KF5/KLDAP/KLDAP/LdapServer include/KF5/KLDAP/KLDAP/LdapUrl include/KF5/KLDAP/KLDAP/Ldif +include/KF5/KLDAP/kldap/addhostdialog.h include/KF5/KLDAP/kldap/ber.h include/KF5/KLDAP/kldap/kldap_export.h +include/KF5/KLDAP/kldap/ldapclient.h +include/KF5/KLDAP/kldap/ldapclientsearch.h +include/KF5/KLDAP/kldap/ldapclientsearchconfig.h +include/KF5/KLDAP/kldap/ldapconfigurewidget.h include/KF5/KLDAP/kldap/ldapconfigwidget.h include/KF5/KLDAP/kldap/ldapconnection.h include/KF5/KLDAP/kldap/ldapcontrol.h @@ -31,7 +41,7 @@ lib/cmake/KF5Ldap/KF5LdapTargets-noconfig.cmake lib/cmake/KF5Ldap/KF5LdapTargets.cmake lib/libKF5Ldap.so lib/libKF5Ldap.so.5 -lib/libKF5Ldap.so.5.14.1 +lib/libKF5Ldap.so.5.16.3 qt5/mkspecs/modules/qt_Ldap.pri qt5/plugins/kf5/kio/ldap.so share/doc/HTML/ca/kioslave5/ldap/index.cache.bz2 @@ -44,8 +54,14 @@ share/doc/HTML/es/kioslave5/ldap/index.cache.bz2 share/doc/HTML/es/kioslave5/ldap/index.docbook share/doc/HTML/et/kioslave5/ldap/index.cache.bz2 share/doc/HTML/et/kioslave5/ldap/index.docbook +share/doc/HTML/fr/kioslave5/ldap/index.cache.bz2 +share/doc/HTML/fr/kioslave5/ldap/index.docbook +share/doc/HTML/gl/kioslave5/ldap/index.cache.bz2 +share/doc/HTML/gl/kioslave5/ldap/index.docbook share/doc/HTML/it/kioslave5/ldap/index.cache.bz2 share/doc/HTML/it/kioslave5/ldap/index.docbook +share/doc/HTML/ko/kioslave5/ldap/index.cache.bz2 +share/doc/HTML/ko/kioslave5/ldap/index.docbook share/doc/HTML/nl/kioslave5/ldap/index.cache.bz2 share/doc/HTML/nl/kioslave5/ldap/index.docbook share/doc/HTML/pt/kioslave5/ldap/index.cache.bz2 diff --git a/databases/kldap/distinfo b/databases/kldap/distinfo index 39b7242acee..1de55e86d5f 100644 --- a/databases/kldap/distinfo +++ b/databases/kldap/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.4 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.5 2021/04/07 12:28:15 markd Exp $ -SHA1 (kldap-20.04.1.tar.xz) = fd25d5bbd91f891e4cd373bd245094ec7697dab5 -RMD160 (kldap-20.04.1.tar.xz) = 739a70f8aee2e75b8bd62b0cf48138ab97a1ad2a -SHA512 (kldap-20.04.1.tar.xz) = d56e63815128606d539ed6cad3e25e05f7636df9f31cf019f792025acbb72ac66d05714497196f8e81641a26c24a4942011efc399113d6ae4b8d55f45f242ad1 -Size (kldap-20.04.1.tar.xz) = 148996 bytes +SHA1 (kldap-20.12.3.tar.xz) = b9c903fe9f38e7d53fb777a670c59e21190da242 +RMD160 (kldap-20.12.3.tar.xz) = 769ddba47f7d7a42c8db9176c3b9294fe8ce5a0f +SHA512 (kldap-20.12.3.tar.xz) = d1220afdd157de224fd65306f1b77f80c1adbe195307bea51c6de5234e9a94122b2c24d38e050ad5dd1a9597b5f7f0f65ea5de73a38c4a309d5692691ed09d54 +Size (kldap-20.12.3.tar.xz) = 164652 bytes SHA1 (patch-autotests_testkldap.cpp) = 7994aba5bc9e45fd2ec1ebd3bf2e918fb912e560 -SHA1 (patch-src_ber.cpp) = be0bb86e83fb8c01b9a5c26cf9636d9590eb25e2 -SHA1 (patch-src_ber.h) = ae191eb21abf68197887b42a3250c7efc2067fca -SHA1 (patch-src_ldapcontrol.cpp) = 9f91d9e6ae20bde896584986009fe18700addfef +SHA1 (patch-src_ber.cpp) = 66f9a33a6dd9680f582dd8e9662c2dd3e0bf9e71 +SHA1 (patch-src_ber.h) = 022a1c3ca4f77c4cc2ecfcc09d6153179a0d7977 +SHA1 (patch-src_ldapcontrol.cpp) = e0cfe8f2c7b1f4f68d77ac1e4bd1bb33e017b43c diff --git a/databases/kldap/patches/patch-src_ber.cpp b/databases/kldap/patches/patch-src_ber.cpp index dd7ce6aefe8..a55794f2af9 100644 --- a/databases/kldap/patches/patch-src_ber.cpp +++ b/databases/kldap/patches/patch-src_ber.cpp @@ -1,7 +1,7 @@ -$NetBSD: patch-src_ber.cpp,v 1.1 2020/02/18 16:49:13 joerg Exp $ +$NetBSD: patch-src_ber.cpp,v 1.2 2021/04/07 12:28:15 markd Exp $ ---- src/ber.cpp.orig 2020-01-14 16:17:11.814803692 +0000 -+++ src/ber.cpp +--- src/core/ber.cpp.orig 2020-01-14 16:17:11.814803692 +0000 ++++ src/core/ber.cpp @@ -124,7 +124,7 @@ QByteArray Ber::flatten() const return ret; } diff --git a/databases/kldap/patches/patch-src_ber.h b/databases/kldap/patches/patch-src_ber.h index b8da83aa650..793a04b1b38 100644 --- a/databases/kldap/patches/patch-src_ber.h +++ b/databases/kldap/patches/patch-src_ber.h @@ -1,7 +1,7 @@ -$NetBSD: patch-src_ber.h,v 1.1 2020/02/18 16:49:13 joerg Exp $ +$NetBSD: patch-src_ber.h,v 1.2 2021/04/07 12:28:15 markd Exp $ ---- src/ber.h.orig 2020-01-14 16:17:30.291511893 +0000 -+++ src/ber.h +--- src/core/ber.h.orig 2020-01-14 16:17:30.291511893 +0000 ++++ src/core/ber.h @@ -115,8 +115,8 @@ public: * </li> * </ul> diff --git a/databases/kldap/patches/patch-src_ldapcontrol.cpp b/databases/kldap/patches/patch-src_ldapcontrol.cpp index 8de728867ea..24cd1cd620d 100644 --- a/databases/kldap/patches/patch-src_ldapcontrol.cpp +++ b/databases/kldap/patches/patch-src_ldapcontrol.cpp @@ -1,7 +1,7 @@ -$NetBSD: patch-src_ldapcontrol.cpp,v 1.1 2020/02/18 16:49:13 joerg Exp $ +$NetBSD: patch-src_ldapcontrol.cpp,v 1.2 2021/04/07 12:28:15 markd Exp $ ---- src/ldapcontrol.cpp.orig 2020-01-14 16:22:02.256391951 +0000 -+++ src/ldapcontrol.cpp +--- src/core/ldapcontrol.cpp.orig 2020-01-14 16:22:02.256391951 +0000 ++++ src/core/ldapcontrol.cpp @@ -123,7 +123,7 @@ int LdapControl::parsePageControl(QByteA Ber ber(d->mValue); diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index 0650f846e2c..d76d1eafd81 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.59 2021/02/07 06:30:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.60 2021/04/07 12:28:15 markd Exp $ DISTNAME= cervisia-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/cervisia/ diff --git a/devel/cervisia/PLIST b/devel/cervisia/PLIST index 85a8c5c35c1..90fcccc2632 100644 --- a/devel/cervisia/PLIST +++ b/devel/cervisia/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2019/11/25 10:01:43 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:15 markd Exp $ bin/cervisia bin/cvsaskpass bin/cvsservice5 @@ -21,19 +21,12 @@ share/dbus-1/interfaces/org.kde.cervisia5.cvsjob.xml share/dbus-1/interfaces/org.kde.cervisia5.cvsloginjob.xml share/dbus-1/interfaces/org.kde.cervisia5.cvsservice.xml share/dbus-1/interfaces/org.kde.cervisia5.repository.xml -share/doc/HTML/ca/cervisia/annotate.png share/doc/HTML/ca/cervisia/checkout.png -share/doc/HTML/ca/cervisia/commit.png -share/doc/HTML/ca/cervisia/diff.png -share/doc/HTML/ca/cervisia/history.png share/doc/HTML/ca/cervisia/import.png share/doc/HTML/ca/cervisia/index.cache.bz2 share/doc/HTML/ca/cervisia/index.docbook -share/doc/HTML/ca/cervisia/logtree.png -share/doc/HTML/ca/cervisia/mainview.png share/doc/HTML/ca/cervisia/popup.png share/doc/HTML/ca/cervisia/repositories.png -share/doc/HTML/ca/cervisia/resolve.png share/doc/HTML/de/cervisia/index.cache.bz2 share/doc/HTML/de/cervisia/index.docbook share/doc/HTML/en/cervisia/annotate.png diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index ee1f38fb1a6..b762eb47fad 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:15 markd Exp $ -SHA1 (cervisia-20.04.1.tar.xz) = 1bc2d5e0c04de773c2431406fa9e43935ee23fe3 -RMD160 (cervisia-20.04.1.tar.xz) = e8790191394b8cf31477742b776e0d61926b2c16 -SHA512 (cervisia-20.04.1.tar.xz) = 58dace37962ab4a64b9245272c62886d1ba3b27cb2837e0d1e67f24d53ae15f4970f691286f0cc382495404e76def936c6c24256c52b54930e42719e4b20046b -Size (cervisia-20.04.1.tar.xz) = 1896684 bytes +SHA1 (cervisia-20.12.3.tar.xz) = b19bdd7c414269d0ec9a4450ea18f7360158aa65 +RMD160 (cervisia-20.12.3.tar.xz) = 68c58a383c0c2a622fd404589168ab94fef53371 +SHA512 (cervisia-20.12.3.tar.xz) = 461f856f6fc5a9381b981c82aea70c005fa0da424a5658a706b9b6f6c90749cef85c3e3692df38210c891db57ca42b214abba29fc22494a359d32ba4fc017113 +Size (cervisia-20.12.3.tar.xz) = 1888284 bytes diff --git a/devel/dolphin-plugins/PLIST b/devel/dolphin-plugins/PLIST index ba522d58c58..bcba6de993b 100644 --- a/devel/dolphin-plugins/PLIST +++ b/devel/dolphin-plugins/PLIST @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.3 2021/02/11 21:16:12 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:15 markd Exp $ qt5/plugins/fileviewbazaarplugin.so qt5/plugins/fileviewdropboxplugin.so qt5/plugins/fileviewgitplugin.so qt5/plugins/fileviewhgplugin.so qt5/plugins/fileviewsvnplugin.so +qt5/plugins/kf5/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg @@ -20,14 +21,17 @@ share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo @@ -36,6 +40,7 @@ share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo @@ -44,24 +49,32 @@ share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/et/LC_MESSAGES/mountisoaction.mo +share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/eu/LC_MESSAGES/mountisoaction.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo +share/locale/fi/LC_MESSAGES/fileviewhgplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/fi/LC_MESSAGES/mountisoaction.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/fr/LC_MESSAGES/mountisoaction.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo @@ -74,10 +87,16 @@ share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ia/LC_MESSAGES/fileviewbazaarplugin.mo +share/locale/ia/LC_MESSAGES/fileviewgitplugin.mo +share/locale/ia/LC_MESSAGES/fileviewhgplugin.mo +share/locale/ia/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ia/LC_MESSAGES/mountisoaction.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/it/LC_MESSAGES/mountisoaction.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo @@ -90,10 +109,12 @@ share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ko/LC_MESSAGES/mountisoaction.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/lt/LC_MESSAGES/mountisoaction.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo @@ -110,9 +131,11 @@ share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo @@ -120,30 +143,40 @@ share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo +share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo +share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo @@ -156,10 +189,12 @@ share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 7628bb7fbf5..575a068c61f 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2021/02/11 21:16:12 markd Exp $ +$NetBSD: distinfo,v 1.6 2021/04/07 12:28:15 markd Exp $ -SHA1 (dolphin-plugins-20.04.1.tar.xz) = 25c24bbd8adf65ead6c659b00c0276a6405123f2 -RMD160 (dolphin-plugins-20.04.1.tar.xz) = f92359bffd83f35ff0ed86bc57e65fa1d9ea1a32 -SHA512 (dolphin-plugins-20.04.1.tar.xz) = 5dab9c10f3ed93dab83a401c4317dc5f0d4252016d5157a0bb69ff82b2f3f8d4f78a0c65941203b5aaf92d7de8ed8efc903841cffc0024513b8e0e106edc32e3 -Size (dolphin-plugins-20.04.1.tar.xz) = 210668 bytes +SHA1 (dolphin-plugins-20.12.3.tar.xz) = b064f7a1e72eb5b759099ab1eef7404fe4d7c7c2 +RMD160 (dolphin-plugins-20.12.3.tar.xz) = 2524df69671f99b3bbd11777facd690519ab902c +SHA512 (dolphin-plugins-20.12.3.tar.xz) = 1d5303e92d912bc80c5260263b081205d36372f1f15205ebd3e705697a114f8481edd1ad31004d7906c3088d43a74cb1e33dac6e1196c247e702a544d67db11b +Size (dolphin-plugins-20.12.3.tar.xz) = 239340 bytes diff --git a/devel/kapptemplate/Makefile b/devel/kapptemplate/Makefile index 1575396954b..aec716502f3 100644 --- a/devel/kapptemplate/Makefile +++ b/devel/kapptemplate/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2021/04/05 05:01:23 markd Exp $ +# $NetBSD: Makefile,v 1.40 2021/04/07 12:28:15 markd Exp $ DISTNAME= kapptemplate-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/kapptemplate/ diff --git a/devel/kapptemplate/PLIST b/devel/kapptemplate/PLIST index 42d24944ce1..78068ae14ab 100644 --- a/devel/kapptemplate/PLIST +++ b/devel/kapptemplate/PLIST @@ -1,13 +1,9 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/25 10:03:20 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:15 markd Exp $ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg -share/doc/HTML/ca/kapptemplate/first-page.png -share/doc/HTML/ca/kapptemplate/fourth-page.png share/doc/HTML/ca/kapptemplate/index.cache.bz2 share/doc/HTML/ca/kapptemplate/index.docbook -share/doc/HTML/ca/kapptemplate/second-page.png -share/doc/HTML/ca/kapptemplate/third-page.png share/doc/HTML/de/kapptemplate/index.cache.bz2 share/doc/HTML/de/kapptemplate/index.docbook share/doc/HTML/en/kapptemplate/first-page.png @@ -20,6 +16,8 @@ share/doc/HTML/es/kapptemplate/index.cache.bz2 share/doc/HTML/es/kapptemplate/index.docbook share/doc/HTML/et/kapptemplate/index.cache.bz2 share/doc/HTML/et/kapptemplate/index.docbook +share/doc/HTML/fr/kapptemplate/index.cache.bz2 +share/doc/HTML/fr/kapptemplate/index.docbook share/doc/HTML/it/kapptemplate/index.cache.bz2 share/doc/HTML/it/kapptemplate/index.docbook share/doc/HTML/nl/kapptemplate/index.cache.bz2 @@ -28,6 +26,8 @@ share/doc/HTML/pt/kapptemplate/index.cache.bz2 share/doc/HTML/pt/kapptemplate/index.docbook share/doc/HTML/pt_BR/kapptemplate/index.cache.bz2 share/doc/HTML/pt_BR/kapptemplate/index.docbook +share/doc/HTML/ru/kapptemplate/index.cache.bz2 +share/doc/HTML/ru/kapptemplate/index.docbook share/doc/HTML/sv/kapptemplate/index.cache.bz2 share/doc/HTML/sv/kapptemplate/index.docbook share/doc/HTML/uk/kapptemplate/index.cache.bz2 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 4ad03c70e28..485cf817528 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:15 markd Exp $ -SHA1 (kapptemplate-20.04.1.tar.xz) = c92edb77a6707c932f4ada09ee3898ad64b562a4 -RMD160 (kapptemplate-20.04.1.tar.xz) = 16b01b6b3c5f23a3972dc4a41d9a11297376bca3 -SHA512 (kapptemplate-20.04.1.tar.xz) = 0ade84bd88eaac09a4ce5eaaec97ab2bb30ed8f37653452977cdcb0d37d33f16dd07134132a684345e3c0a45930a4647c353c2e405de4968b08e9da39ca3275b -Size (kapptemplate-20.04.1.tar.xz) = 325440 bytes +SHA1 (kapptemplate-20.12.3.tar.xz) = 6ee9ac2c9374e8cb72337aa4eeb6f08b71750082 +RMD160 (kapptemplate-20.12.3.tar.xz) = a232d89de0b9584bfdbd3012bfb0cd3464df1275 +SHA512 (kapptemplate-20.12.3.tar.xz) = a767c905b5a517c76940fef529a3add8f839c30bf80e36e3ff4a9319265c20686fa26d0b74fdf85cbd4b530931dce19191a267f0aa3fd426a62dacca9404716b +Size (kapptemplate-20.12.3.tar.xz) = 336772 bytes diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index 9e28a8f971a..c20d3a76754 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:18 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:15 markd Exp $ DISTNAME= kcachegrind-${KAPPSVER} -PKGREVISION= 8 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/kcachegrind/ diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 9cb0df0fcf5..40147f7f9b2 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:15 markd Exp $ -SHA1 (kcachegrind-20.04.1.tar.xz) = 464e79fffd327538d97e8a78d137e82a2ca46ea3 -RMD160 (kcachegrind-20.04.1.tar.xz) = 03274fae495be00e796d804f2de69c214a9235ef -SHA512 (kcachegrind-20.04.1.tar.xz) = 6ee56b674568cc1f6ae82e4df0ce7a0329394f45299535db1d0c3a9a3d30dc707db0420bf49fd20c3c61df75f998a1c04bb7a23613b990804e38feb2a554ff89 -Size (kcachegrind-20.04.1.tar.xz) = 810100 bytes +SHA1 (kcachegrind-20.12.3.tar.xz) = 2b5bac9dc35c98279bbb45acaffc525e1e6f646f +RMD160 (kcachegrind-20.12.3.tar.xz) = edfe348762ee642f98e2584ac5bcafa1321cfc0c +SHA512 (kcachegrind-20.12.3.tar.xz) = 6c2f3a70becf81736e481595676550ffa12426399e856bf6a33f033fb009b86ae55cac8f60b0fe8f499400e5d19d6fc316a191f47d11c40962c8206da7ffdd9d +Size (kcachegrind-20.12.3.tar.xz) = 818260 bytes diff --git a/devel/kde-dev-scripts/Makefile b/devel/kde-dev-scripts/Makefile index f319fdb10a5..fb80266d052 100644 --- a/devel/kde-dev-scripts/Makefile +++ b/devel/kde-dev-scripts/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2020/12/04 20:45:10 nia Exp $ +# $NetBSD: Makefile,v 1.39 2021/04/07 12:28:16 markd Exp $ DISTNAME= kde-dev-scripts-${KAPPSVER} -PKGREVISION= 4 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/ diff --git a/devel/kde-dev-scripts/PLIST b/devel/kde-dev-scripts/PLIST index a3e64e9bc98..55fd3c9ee9d 100644 --- a/devel/kde-dev-scripts/PLIST +++ b/devel/kde-dev-scripts/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/25 10:07:31 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:16 markd Exp $ bin/adddebug bin/build-progress.sh bin/c++-copy-class-and-file @@ -74,8 +74,6 @@ man/ca/man1/extractrc.1 man/ca/man1/fixincludes.1 man/ca/man1/pruneemptydirs.1 man/ca/man1/qtdoc.1 -man/ca/man1/reportview.1 -man/ca/man1/transxx.1 man/ca/man1/zonetab2pot.py.1 man/da/man1/adddebug.1 man/da/man1/cheatmake.1 @@ -91,7 +89,6 @@ man/da/man1/extractrc.1 man/da/man1/fixincludes.1 man/da/man1/pruneemptydirs.1 man/da/man1/qtdoc.1 -man/da/man1/reportview.1 man/da/man1/zonetab2pot.py.1 man/de/man1/adddebug.1 man/de/man1/cheatmake.1 @@ -108,8 +105,6 @@ man/de/man1/extractrc.1 man/de/man1/fixincludes.1 man/de/man1/pruneemptydirs.1 man/de/man1/qtdoc.1 -man/de/man1/reportview.1 -man/de/man1/transxx.1 man/de/man1/zonetab2pot.py.1 man/es/man1/adddebug.1 man/es/man1/cheatmake.1 @@ -126,8 +121,6 @@ man/es/man1/extractrc.1 man/es/man1/fixincludes.1 man/es/man1/pruneemptydirs.1 man/es/man1/qtdoc.1 -man/es/man1/reportview.1 -man/es/man1/transxx.1 man/es/man1/zonetab2pot.py.1 man/et/man1/qtdoc.1 man/fr/man1/adddebug.1 @@ -145,8 +138,6 @@ man/fr/man1/extractrc.1 man/fr/man1/fixincludes.1 man/fr/man1/pruneemptydirs.1 man/fr/man1/qtdoc.1 -man/fr/man1/reportview.1 -man/fr/man1/transxx.1 man/fr/man1/zonetab2pot.py.1 man/gl/man1/adddebug.1 man/gl/man1/cheatmake.1 @@ -162,8 +153,6 @@ man/gl/man1/extractrc.1 man/gl/man1/fixincludes.1 man/gl/man1/pruneemptydirs.1 man/gl/man1/qtdoc.1 -man/gl/man1/reportview.1 -man/gl/man1/transxx.1 man/gl/man1/zonetab2pot.py.1 man/it/man1/adddebug.1 man/it/man1/cheatmake.1 @@ -180,8 +169,6 @@ man/it/man1/extractrc.1 man/it/man1/fixincludes.1 man/it/man1/pruneemptydirs.1 man/it/man1/qtdoc.1 -man/it/man1/reportview.1 -man/it/man1/transxx.1 man/it/man1/zonetab2pot.py.1 man/man1/adddebug.1 man/man1/cheatmake.1 @@ -198,8 +185,6 @@ man/man1/extractrc.1 man/man1/fixincludes.1 man/man1/pruneemptydirs.1 man/man1/qtdoc.1 -man/man1/reportview.1 -man/man1/transxx.1 man/man1/zonetab2pot.py.1 man/nl/man1/adddebug.1 man/nl/man1/cheatmake.1 @@ -216,8 +201,6 @@ man/nl/man1/extractrc.1 man/nl/man1/fixincludes.1 man/nl/man1/pruneemptydirs.1 man/nl/man1/qtdoc.1 -man/nl/man1/reportview.1 -man/nl/man1/transxx.1 man/nl/man1/zonetab2pot.py.1 man/pt/man1/adddebug.1 man/pt/man1/cheatmake.1 @@ -234,8 +217,6 @@ man/pt/man1/extractrc.1 man/pt/man1/fixincludes.1 man/pt/man1/pruneemptydirs.1 man/pt/man1/qtdoc.1 -man/pt/man1/reportview.1 -man/pt/man1/transxx.1 man/pt/man1/zonetab2pot.py.1 man/pt_BR/man1/adddebug.1 man/pt_BR/man1/cheatmake.1 @@ -252,8 +233,6 @@ man/pt_BR/man1/extractrc.1 man/pt_BR/man1/fixincludes.1 man/pt_BR/man1/pruneemptydirs.1 man/pt_BR/man1/qtdoc.1 -man/pt_BR/man1/reportview.1 -man/pt_BR/man1/transxx.1 man/pt_BR/man1/zonetab2pot.py.1 man/sv/man1/adddebug.1 man/sv/man1/cheatmake.1 @@ -270,8 +249,6 @@ man/sv/man1/extractrc.1 man/sv/man1/fixincludes.1 man/sv/man1/pruneemptydirs.1 man/sv/man1/qtdoc.1 -man/sv/man1/reportview.1 -man/sv/man1/transxx.1 man/sv/man1/zonetab2pot.py.1 man/uk/man1/adddebug.1 man/uk/man1/cheatmake.1 @@ -288,8 +265,6 @@ man/uk/man1/extractrc.1 man/uk/man1/fixincludes.1 man/uk/man1/pruneemptydirs.1 man/uk/man1/qtdoc.1 -man/uk/man1/reportview.1 -man/uk/man1/transxx.1 man/uk/man1/zonetab2pot.py.1 share/uncrustify/uncrustify-kf5.cfg share/uncrustify/uncrustify-qt.cfg diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 160966e4350..548fa8eb663 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:16 markd Exp $ -SHA1 (kde-dev-scripts-20.04.1.tar.xz) = db73759a97bb0f8cded0bc532122030800bc1bc1 -RMD160 (kde-dev-scripts-20.04.1.tar.xz) = 977211db800fcc84fb302fbc1334bfc143d1cb8a -SHA512 (kde-dev-scripts-20.04.1.tar.xz) = 317589fbd6f0aae06d8043c970eda408c0c323ea059f555559f7569ebbf5e60813da06fa9f7d43e144c7c05bcdc16fb1f8aa9768e7f35cd36c9471bab15cb817 -Size (kde-dev-scripts-20.04.1.tar.xz) = 378476 bytes +SHA1 (kde-dev-scripts-20.12.3.tar.xz) = a086c10031571cdc93e879b6e0a594a3aa4f6f9a +RMD160 (kde-dev-scripts-20.12.3.tar.xz) = b6eb48de31fc35db03d5cac1519e0b8c36d9eda0 +SHA512 (kde-dev-scripts-20.12.3.tar.xz) = 5f6df12e9a43fe0721a9e21f152a25406ed03d7dcac45f06990667b54e13227744dacad2e7092b3c12655159e4c36aad1ebc908978117d8ac22db6f52486b59c +Size (kde-dev-scripts-20.12.3.tar.xz) = 366516 bytes SHA1 (patch-cvsaddcurrentdir) = d86b706c848e845bb54364af7d619a6637265d97 SHA1 (patch-uncrustify-kf5) = 5b8e246c84da3a83662858b5a976c3d052018d87 diff --git a/devel/kde-dev-utils/Makefile b/devel/kde-dev-utils/Makefile index 4d20bd90b1b..e401c473cb2 100644 --- a/devel/kde-dev-utils/Makefile +++ b/devel/kde-dev-utils/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.40 2021/02/07 06:30:18 ryoon Exp $ +# $NetBSD: Makefile,v 1.41 2021/04/07 12:28:16 markd Exp $ DISTNAME= kde-dev-utils-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/ diff --git a/devel/kde-dev-utils/PLIST b/devel/kde-dev-utils/PLIST index d0f65d9fa47..b792efb30eb 100644 --- a/devel/kde-dev-utils/PLIST +++ b/devel/kde-dev-utils/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/02/02 02:37:35 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:16 markd Exp $ bin/kpartloader bin/kuiviewer qt5/plugins/kf5/parts/kuiviewerpart.so @@ -82,6 +82,7 @@ share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo +share/locale/ro/LC_MESSAGES/kpartloader.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index d668a02dd32..bde9671918a 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:16 markd Exp $ -SHA1 (kde-dev-utils-20.04.1.tar.xz) = 43f3005dbec5ee7e95dd62e6afa559948688e016 -RMD160 (kde-dev-utils-20.04.1.tar.xz) = 4bf167ec227d13d0a2ef2390cce6ac88c374d613 -SHA512 (kde-dev-utils-20.04.1.tar.xz) = e2e60e2c32a35d30eceb7fff0a8d93d8f446313b8b5e48084de20f5f0cd6066c8c2a52cb821d06541de2503830cd0ac67468a7c1103e21f3268a834596274474 -Size (kde-dev-utils-20.04.1.tar.xz) = 64452 bytes +SHA1 (kde-dev-utils-20.12.3.tar.xz) = b9df661568b0c98ad3a851bb95ea0723fb473566 +RMD160 (kde-dev-utils-20.12.3.tar.xz) = 850af91d15e27130cabda3cd4fdba284f2b6d244 +SHA512 (kde-dev-utils-20.12.3.tar.xz) = 72f5eccb3a67c4ac1a1bf9a8b81879a622dcae23b23df9caafa90f13f16de449a6c4750b0de55d99146a823716cf3c8845d1547360824c51d3b94882ca83cb7c +Size (kde-dev-utils-20.12.3.tar.xz) = 65832 bytes diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 1f098d8f84d..b2abc6a18a7 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2021/04/05 06:53:13 markd Exp $ +# $NetBSD: Makefile,v 1.3 2021/04/07 12:28:16 markd Exp $ DISTNAME= kio-extras-${KAPPSVER} CATEGORIES= misc @@ -7,7 +7,6 @@ HOMEPAGE= https://kde.org/applications/internet/ COMMENT= Additional components to increase the functionality of KIO LICENSE= gnu-gpl-v2 -KAPPSVER= 20.12.3 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools diff --git a/devel/kompare/Makefile b/devel/kompare/Makefile index 3414143cd1e..cd47373bcdb 100644 --- a/devel/kompare/Makefile +++ b/devel/kompare/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2021/02/07 06:30:18 ryoon Exp $ +# $NetBSD: Makefile,v 1.43 2021/04/07 12:28:16 markd Exp $ DISTNAME= kompare-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/kompare/ diff --git a/devel/kompare/PLIST b/devel/kompare/PLIST index d7f39cc3496..b0dd48aaea4 100644 --- a/devel/kompare/PLIST +++ b/devel/kompare/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2019/11/25 09:59:25 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:16 markd Exp $ bin/kompare include/kompare/kompareinterface.h lib/libkomparedialogpages.so.5 @@ -7,16 +7,8 @@ lib/libkompareinterface.so.5 qt5/plugins/kf5/parts/komparenavtreepart.so qt5/plugins/kf5/parts/komparepart.so share/applications/org.kde.kompare.desktop -share/doc/HTML/ca/kompare/dock.png share/doc/HTML/ca/kompare/index.cache.bz2 share/doc/HTML/ca/kompare/index.docbook -share/doc/HTML/ca/kompare/settings-diff1.png -share/doc/HTML/ca/kompare/settings-diff2.png -share/doc/HTML/ca/kompare/settings-diff3.png -share/doc/HTML/ca/kompare/settings-diff4.png -share/doc/HTML/ca/kompare/settings-view1.png -share/doc/HTML/ca/kompare/settings-view2.png -share/doc/HTML/ca/kompare/undock.png share/doc/HTML/de/kompare/index.cache.bz2 share/doc/HTML/de/kompare/index.docbook share/doc/HTML/en/kompare/dock.png @@ -35,12 +27,20 @@ share/doc/HTML/et/kompare/index.cache.bz2 share/doc/HTML/et/kompare/index.docbook share/doc/HTML/it/kompare/index.cache.bz2 share/doc/HTML/it/kompare/index.docbook +share/doc/HTML/it/kompare/settings-diff1.png +share/doc/HTML/it/kompare/settings-diff2.png +share/doc/HTML/it/kompare/settings-diff3.png +share/doc/HTML/it/kompare/settings-diff4.png +share/doc/HTML/it/kompare/settings-view1.png +share/doc/HTML/it/kompare/settings-view2.png share/doc/HTML/nl/kompare/index.cache.bz2 share/doc/HTML/nl/kompare/index.docbook share/doc/HTML/pt/kompare/index.cache.bz2 share/doc/HTML/pt/kompare/index.docbook share/doc/HTML/pt_BR/kompare/index.cache.bz2 share/doc/HTML/pt_BR/kompare/index.docbook +share/doc/HTML/ru/kompare/index.cache.bz2 +share/doc/HTML/ru/kompare/index.docbook share/doc/HTML/sv/kompare/index.cache.bz2 share/doc/HTML/sv/kompare/index.docbook share/doc/HTML/sv/kompare/settings-diff1.png @@ -119,3 +119,4 @@ share/locale/uk/LC_MESSAGES/kompare.mo share/locale/zh_CN/LC_MESSAGES/kompare.mo share/locale/zh_TW/LC_MESSAGES/kompare.mo share/metainfo/org.kde.kompare.appdata.xml +share/qlogging-categories5/kompare.categories diff --git a/devel/kompare/distinfo b/devel/kompare/distinfo index 05acfde3bf6..bf2ef508818 100644 --- a/devel/kompare/distinfo +++ b/devel/kompare/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:05 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:16 markd Exp $ -SHA1 (kompare-20.04.1.tar.xz) = 1420f377d631b2dd9aecc6d96f6f402c89763fab -RMD160 (kompare-20.04.1.tar.xz) = ffa1ea83afb2d484ecdac6c3628176df35539322 -SHA512 (kompare-20.04.1.tar.xz) = a8a6aec9af8f12e06b7428cde4f8a6db2621c809f23ccd02cef0e667c9b81b3eafdb440c2d56875052a5a9262914cc364c39560cb774127b3d39903b51935591 -Size (kompare-20.04.1.tar.xz) = 802176 bytes +SHA1 (kompare-20.12.3.tar.xz) = dc4cc92915af88428a15e9841ec10155a72bda10 +RMD160 (kompare-20.12.3.tar.xz) = 4087dcd5078831ebe35e0a0e3536c73ec01591a2 +SHA512 (kompare-20.12.3.tar.xz) = 0da525fd73629d3d092b0a61c8cae610989981ed3cf6ec5d47b94ee1a3a443ac37ec18e8c56f1888b03a480fe6a127e9711bf0f5a983febed3126dcd8787386d +Size (kompare-20.12.3.tar.xz) = 929648 bytes diff --git a/devel/libkomparediff2/Makefile b/devel/libkomparediff2/Makefile index cea4321b981..844e59e3277 100644 --- a/devel/libkomparediff2/Makefile +++ b/devel/libkomparediff2/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2021/02/07 06:30:07 ryoon Exp $ +# $NetBSD: Makefile,v 1.31 2021/04/07 12:28:16 markd Exp $ DISTNAME= libkomparediff2-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/kompare/ diff --git a/devel/libkomparediff2/PLIST b/devel/libkomparediff2/PLIST index f91b0e771a9..f77a15665df 100644 --- a/devel/libkomparediff2/PLIST +++ b/devel/libkomparediff2/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/25 09:56:34 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:16 markd Exp $ include/libkomparediff2/diff2_export.h include/libkomparediff2/difference.h include/libkomparediff2/diffhunk.h @@ -66,3 +66,4 @@ share/locale/ug/LC_MESSAGES/libkomparediff2.mo share/locale/uk/LC_MESSAGES/libkomparediff2.mo share/locale/zh_CN/LC_MESSAGES/libkomparediff2.mo share/locale/zh_TW/LC_MESSAGES/libkomparediff2.mo +share/qlogging-categories5/libkomparediff2.categories diff --git a/devel/libkomparediff2/distinfo b/devel/libkomparediff2/distinfo index d157f02af3c..04e70d369fb 100644 --- a/devel/libkomparediff2/distinfo +++ b/devel/libkomparediff2/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.6 2021/04/07 12:28:16 markd Exp $ -SHA1 (libkomparediff2-20.04.1.tar.xz) = 4c080387833f246fc260e77180c6c7be887cda61 -RMD160 (libkomparediff2-20.04.1.tar.xz) = 964fb2a9db6a7ba3fa9ec0754bd7ff30076933d4 -SHA512 (libkomparediff2-20.04.1.tar.xz) = 6816a87941af111c3fa8d24fe1da5d8172b89557abcba21baf0b4b1dbc2b58eb1f231a0ac0a397fe78fc4e994f7d77254f4f040d6919fe60db70052a2d8b9080 -Size (libkomparediff2-20.04.1.tar.xz) = 170692 bytes +SHA1 (libkomparediff2-20.12.3.tar.xz) = 7dcd084b36e380108a7a6c9fa5ea993134d44774 +RMD160 (libkomparediff2-20.12.3.tar.xz) = acf9bf30bd691ee61b1e3bd3bc5d5720e5979737 +SHA512 (libkomparediff2-20.12.3.tar.xz) = 5b790d2c0ce5a73f3b87711df7ee501122e5672f4985487436968791e6bcc8a771093e755c7cb58fb4e589e50422be9b404438ab706c60e5bd88edddfa289618 +Size (libkomparediff2-20.12.3.tar.xz) = 159344 bytes diff --git a/devel/lokalize/Makefile b/devel/lokalize/Makefile index de778b91e06..5a26135ece7 100644 --- a/devel/lokalize/Makefile +++ b/devel/lokalize/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:19 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:16 markd Exp $ DISTNAME= lokalize-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/lokalize/ diff --git a/devel/lokalize/PLIST b/devel/lokalize/PLIST index 86cb7c9521a..bf9173b0f24 100644 --- a/devel/lokalize/PLIST +++ b/devel/lokalize/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/02/02 02:37:36 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:16 markd Exp $ bin/lokalize share/applications/org.kde.lokalize.desktop share/config.kcfg/lokalize.kcfg @@ -20,16 +20,28 @@ share/doc/HTML/es/lokalize/index.cache.bz2 share/doc/HTML/es/lokalize/index.docbook share/doc/HTML/et/lokalize/index.cache.bz2 share/doc/HTML/et/lokalize/index.docbook +share/doc/HTML/fr/lokalize/index.cache.bz2 +share/doc/HTML/fr/lokalize/index.docbook share/doc/HTML/id/lokalize/index.cache.bz2 share/doc/HTML/id/lokalize/index.docbook +share/doc/HTML/it/lokalize/configure_shortcuts.png +share/doc/HTML/it/lokalize/configure_toolbar.png +share/doc/HTML/it/lokalize/default_editor_lokalize.png +share/doc/HTML/it/lokalize/glossary.png share/doc/HTML/it/lokalize/index.cache.bz2 share/doc/HTML/it/lokalize/index.docbook +share/doc/HTML/it/lokalize/original-diff.png +share/doc/HTML/it/lokalize/project_overview.png +share/doc/HTML/it/lokalize/sync.png +share/doc/HTML/it/lokalize/tmview.png share/doc/HTML/nl/lokalize/index.cache.bz2 share/doc/HTML/nl/lokalize/index.docbook share/doc/HTML/pt/lokalize/index.cache.bz2 share/doc/HTML/pt/lokalize/index.docbook share/doc/HTML/pt_BR/lokalize/index.cache.bz2 share/doc/HTML/pt_BR/lokalize/index.docbook +share/doc/HTML/ru/lokalize/index.cache.bz2 +share/doc/HTML/ru/lokalize/index.docbook share/doc/HTML/sr/lokalize/glossary.png share/doc/HTML/sr/lokalize/index.cache.bz2 share/doc/HTML/sr/lokalize/index.docbook @@ -116,9 +128,6 @@ share/lokalize/icons/hicolor/16x16/actions/approved.png share/lokalize/icons/hicolor/16x16/actions/insert_arg.png share/lokalize/icons/hicolor/16x16/actions/insert_tag.png share/lokalize/icons/hicolor/16x16/actions/l10n/sr/approved.png -share/lokalize/icons/hicolor/16x16/actions/l10n/sr@ijekavian/approved.png -share/lokalize/icons/hicolor/16x16/actions/l10n/sr@ijekavianlatin/approved.png -share/lokalize/icons/hicolor/16x16/actions/l10n/sr@latin/approved.png share/lokalize/icons/hicolor/16x16/actions/msgid2msgstr.png share/lokalize/icons/hicolor/16x16/actions/nexterror.png share/lokalize/icons/hicolor/16x16/actions/nextfuzzy.png @@ -139,9 +148,6 @@ share/lokalize/icons/hicolor/22x22/actions/catalogmanager.png share/lokalize/icons/hicolor/22x22/actions/insert_arg.png share/lokalize/icons/hicolor/22x22/actions/insert_tag.png share/lokalize/icons/hicolor/22x22/actions/l10n/sr/approved.png -share/lokalize/icons/hicolor/22x22/actions/l10n/sr@ijekavian/approved.png -share/lokalize/icons/hicolor/22x22/actions/l10n/sr@ijekavianlatin/approved.png -share/lokalize/icons/hicolor/22x22/actions/l10n/sr@latin/approved.png share/lokalize/icons/hicolor/22x22/actions/msgid2msgstr.png share/lokalize/icons/hicolor/22x22/actions/nexterror.png share/lokalize/icons/hicolor/22x22/actions/nextfuzzy.png @@ -163,9 +169,6 @@ share/lokalize/icons/hicolor/32x32/actions/diff.png share/lokalize/icons/hicolor/32x32/actions/insert_arg.png share/lokalize/icons/hicolor/32x32/actions/insert_tag.png share/lokalize/icons/hicolor/32x32/actions/l10n/sr/approved.png -share/lokalize/icons/hicolor/32x32/actions/l10n/sr@ijekavian/approved.png -share/lokalize/icons/hicolor/32x32/actions/l10n/sr@ijekavianlatin/approved.png -share/lokalize/icons/hicolor/32x32/actions/l10n/sr@latin/approved.png share/lokalize/icons/hicolor/32x32/actions/msgid2msgstr.png share/lokalize/icons/hicolor/32x32/actions/nexterror.png share/lokalize/icons/hicolor/32x32/actions/nextfuzzy.png @@ -183,14 +186,8 @@ share/lokalize/icons/hicolor/32x32/actions/search2msgstr.png share/lokalize/icons/hicolor/32x32/actions/transsearch.png share/lokalize/icons/hicolor/48x48/actions/approved.png share/lokalize/icons/hicolor/48x48/actions/l10n/sr/approved.png -share/lokalize/icons/hicolor/48x48/actions/l10n/sr@ijekavian/approved.png -share/lokalize/icons/hicolor/48x48/actions/l10n/sr@ijekavianlatin/approved.png -share/lokalize/icons/hicolor/48x48/actions/l10n/sr@latin/approved.png share/lokalize/icons/hicolor/scalable/actions/approved.svgz share/lokalize/icons/hicolor/scalable/actions/l10n/sr/approved.svgz -share/lokalize/icons/hicolor/scalable/actions/l10n/sr@ijekavian/approved.svgz -share/lokalize/icons/hicolor/scalable/actions/l10n/sr@ijekavianlatin/approved.svgz -share/lokalize/icons/hicolor/scalable/actions/l10n/sr@latin/approved.svgz share/lokalize/icons/locolor/16x16/actions/catalogmanager.png share/lokalize/icons/locolor/16x16/actions/diff.png share/lokalize/icons/locolor/16x16/actions/insert_arg.png diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 43a15c478f6..83cdd03591e 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:16 markd Exp $ -SHA1 (lokalize-20.04.1.tar.xz) = 50e372a73a90f4a9ae4be1391643edff9bd83087 -RMD160 (lokalize-20.04.1.tar.xz) = 5c5bc6efdf3edae2031c7c0b2c0de30e5ace7bd8 -SHA512 (lokalize-20.04.1.tar.xz) = b0e398a624d389335dcf12d80c7499ed412b0685b8eef75b63b5d9e126c09baa6ef6e8729172bff3238d82eb248e86c31f4c829dc17a4205cac34a24520c2161 -Size (lokalize-20.04.1.tar.xz) = 1718224 bytes +SHA1 (lokalize-20.12.3.tar.xz) = 9c8e1ade7e630a83872c1f4f756d362dbcbde93b +RMD160 (lokalize-20.12.3.tar.xz) = 197be4c1c30ea845c7e388d852a09e7be756e13a +SHA512 (lokalize-20.12.3.tar.xz) = dd12526cbade8a71d0c0a395ebaba50b00a5357c3cdc68779520da1aec7a0dc2d87f29504f45315ccf5108346b60ab0df235a80c000ece9d9f5d434b91829cdf +Size (lokalize-20.12.3.tar.xz) = 1995860 bytes diff --git a/devel/poxml/Makefile b/devel/poxml/Makefile index 3dc7a89dd28..a7d3f18b187 100644 --- a/devel/poxml/Makefile +++ b/devel/poxml/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2020/11/05 09:07:58 ryoon Exp $ +# $NetBSD: Makefile,v 1.34 2021/04/07 12:28:16 markd Exp $ DISTNAME= poxml-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/ diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 2dcadfa3480..68ff67d2f39 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:16 markd Exp $ -SHA1 (poxml-20.04.1.tar.xz) = 228e5e4c058cb40a2ffa76e88dc7a4d1d663214c -RMD160 (poxml-20.04.1.tar.xz) = dcca7eb4cb9cb40fc43a448da77d6241bf0975dc -SHA512 (poxml-20.04.1.tar.xz) = dee5ada910f67e9aa364fae1b6656e4882e4459463093433f6a750dece204d1e541dae65386ed3e7b6a7420625d1667d31706857e75e7619b6061ef04cade31f -Size (poxml-20.04.1.tar.xz) = 43156 bytes +SHA1 (poxml-20.12.3.tar.xz) = 9bd3890b85cd03fd42c64e8b6587391a80426d1e +RMD160 (poxml-20.12.3.tar.xz) = f93c6ecbeb14e9693d23f0443bd05f980e227c07 +SHA512 (poxml-20.12.3.tar.xz) = b96c21440018d3adbad0d8acb1a054e147b167398e98238cde90a27337891fa0092304c2cbfce786ba473a7eeaec44c9010911dd55763626ecefdd7377ee9e8f +Size (poxml-20.12.3.tar.xz) = 43224 bytes diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index 876179d7bf5..62680c06c95 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.66 2021/02/07 06:30:19 ryoon Exp $ +# $NetBSD: Makefile,v 1.67 2021/04/07 12:28:16 markd Exp $ DISTNAME= umbrello-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= devel HOMEPAGE= https://kde.org/applications/development/umbrello/ diff --git a/devel/umbrello/PLIST b/devel/umbrello/PLIST index 7cefce21aea..f43c4f0d644 100644 --- a/devel/umbrello/PLIST +++ b/devel/umbrello/PLIST @@ -1,10 +1,20 @@ -@comment $NetBSD: PLIST,v 1.7 2020/06/14 11:27:41 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:16 markd Exp $ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/doc/HTML/ca/umbrello/apphelp/index.cache.bz2 share/doc/HTML/ca/umbrello/apphelp/index.docbook +share/doc/HTML/ca/umbrello/authors.docbook +share/doc/HTML/ca/umbrello/code_import_and_generation.docbook +share/doc/HTML/ca/umbrello/credits.docbook +share/doc/HTML/ca/umbrello/index.cache.bz2 +share/doc/HTML/ca/umbrello/index.docbook +share/doc/HTML/ca/umbrello/introduction.docbook +share/doc/HTML/ca/umbrello/other_features.docbook +share/doc/HTML/ca/umbrello/settings.docbook +share/doc/HTML/ca/umbrello/uml_basics.docbook +share/doc/HTML/ca/umbrello/working_with_umbrello.docbook share/doc/HTML/da/umbrello/authors.docbook share/doc/HTML/da/umbrello/code_import_and_generation.docbook share/doc/HTML/da/umbrello/credits.docbook @@ -14,8 +24,32 @@ share/doc/HTML/da/umbrello/introduction.docbook share/doc/HTML/da/umbrello/other_features.docbook share/doc/HTML/da/umbrello/uml_basics.docbook share/doc/HTML/da/umbrello/working_with_umbrello.docbook +share/doc/HTML/de/umbrello/activity-diagram.png +share/doc/HTML/de/umbrello/aggregation.png share/doc/HTML/de/umbrello/apphelp/index.cache.bz2 share/doc/HTML/de/umbrello/apphelp/index.docbook +share/doc/HTML/de/umbrello/association.png +share/doc/HTML/de/umbrello/authors.docbook +share/doc/HTML/de/umbrello/class-diagram.png +share/doc/HTML/de/umbrello/class.png +share/doc/HTML/de/umbrello/code-import.png +share/doc/HTML/de/umbrello/code_import_and_generation.docbook +share/doc/HTML/de/umbrello/collaboration-diagram.png +share/doc/HTML/de/umbrello/composition.png +share/doc/HTML/de/umbrello/credits.docbook +share/doc/HTML/de/umbrello/folders.png +share/doc/HTML/de/umbrello/generalization.png +share/doc/HTML/de/umbrello/generation-options.png +share/doc/HTML/de/umbrello/index.cache.bz2 +share/doc/HTML/de/umbrello/index.docbook +share/doc/HTML/de/umbrello/introduction.docbook +share/doc/HTML/de/umbrello/other_features.docbook +share/doc/HTML/de/umbrello/sequence-diagram.png +share/doc/HTML/de/umbrello/state-diagram.png +share/doc/HTML/de/umbrello/umbrello-ui.png +share/doc/HTML/de/umbrello/uml_basics.docbook +share/doc/HTML/de/umbrello/use-case-diagram.png +share/doc/HTML/de/umbrello/working_with_umbrello.docbook share/doc/HTML/en/umbrello/activity-diagram.png share/doc/HTML/en/umbrello/aggregation.png share/doc/HTML/en/umbrello/apphelp/index.cache.bz2 @@ -63,6 +97,16 @@ share/doc/HTML/en/umbrello/user-interface-settings.png share/doc/HTML/en/umbrello/working_with_umbrello.docbook share/doc/HTML/es/umbrello/apphelp/index.cache.bz2 share/doc/HTML/es/umbrello/apphelp/index.docbook +share/doc/HTML/es/umbrello/authors.docbook +share/doc/HTML/es/umbrello/code_import_and_generation.docbook +share/doc/HTML/es/umbrello/credits.docbook +share/doc/HTML/es/umbrello/index.cache.bz2 +share/doc/HTML/es/umbrello/index.docbook +share/doc/HTML/es/umbrello/introduction.docbook +share/doc/HTML/es/umbrello/other_features.docbook +share/doc/HTML/es/umbrello/settings.docbook +share/doc/HTML/es/umbrello/uml_basics.docbook +share/doc/HTML/es/umbrello/working_with_umbrello.docbook share/doc/HTML/gl/umbrello/authors.docbook share/doc/HTML/gl/umbrello/code_import_and_generation.docbook share/doc/HTML/gl/umbrello/credits.docbook @@ -83,8 +127,28 @@ share/doc/HTML/it/umbrello/uml_basics.docbook share/doc/HTML/it/umbrello/working_with_umbrello.docbook share/doc/HTML/nl/umbrello/apphelp/index.cache.bz2 share/doc/HTML/nl/umbrello/apphelp/index.docbook +share/doc/HTML/nl/umbrello/authors.docbook +share/doc/HTML/nl/umbrello/code_import_and_generation.docbook +share/doc/HTML/nl/umbrello/credits.docbook +share/doc/HTML/nl/umbrello/index.cache.bz2 +share/doc/HTML/nl/umbrello/index.docbook +share/doc/HTML/nl/umbrello/introduction.docbook +share/doc/HTML/nl/umbrello/other_features.docbook +share/doc/HTML/nl/umbrello/settings.docbook +share/doc/HTML/nl/umbrello/uml_basics.docbook +share/doc/HTML/nl/umbrello/welcome.docbook +share/doc/HTML/nl/umbrello/working_with_umbrello.docbook share/doc/HTML/pt/umbrello/apphelp/index.cache.bz2 share/doc/HTML/pt/umbrello/apphelp/index.docbook +share/doc/HTML/pt/umbrello/authors.docbook +share/doc/HTML/pt/umbrello/code_import_and_generation.docbook +share/doc/HTML/pt/umbrello/credits.docbook +share/doc/HTML/pt/umbrello/index.cache.bz2 +share/doc/HTML/pt/umbrello/index.docbook +share/doc/HTML/pt/umbrello/introduction.docbook +share/doc/HTML/pt/umbrello/other_features.docbook +share/doc/HTML/pt/umbrello/uml_basics.docbook +share/doc/HTML/pt/umbrello/working_with_umbrello.docbook share/doc/HTML/pt_BR/umbrello/activity-diagram.png share/doc/HTML/pt_BR/umbrello/aggregation.png share/doc/HTML/pt_BR/umbrello/association.png @@ -112,8 +176,51 @@ share/doc/HTML/pt_BR/umbrello/use-case-diagram.png share/doc/HTML/pt_BR/umbrello/working_with_umbrello.docbook share/doc/HTML/sv/umbrello/apphelp/index.cache.bz2 share/doc/HTML/sv/umbrello/apphelp/index.docbook +share/doc/HTML/sv/umbrello/authors.docbook +share/doc/HTML/sv/umbrello/code_import_and_generation.docbook +share/doc/HTML/sv/umbrello/credits.docbook +share/doc/HTML/sv/umbrello/index.cache.bz2 +share/doc/HTML/sv/umbrello/index.docbook +share/doc/HTML/sv/umbrello/introduction.docbook +share/doc/HTML/sv/umbrello/other_features.docbook +share/doc/HTML/sv/umbrello/settings.docbook +share/doc/HTML/sv/umbrello/uml_basics.docbook +share/doc/HTML/sv/umbrello/working_with_umbrello.docbook +share/doc/HTML/uk/umbrello/activity-diagram.png share/doc/HTML/uk/umbrello/apphelp/index.cache.bz2 share/doc/HTML/uk/umbrello/apphelp/index.docbook +share/doc/HTML/uk/umbrello/authors.docbook +share/doc/HTML/uk/umbrello/auto-layout-settings.png +share/doc/HTML/uk/umbrello/class-diagram.png +share/doc/HTML/uk/umbrello/class-settings.png +share/doc/HTML/uk/umbrello/code-generation-formatting-settings.png +share/doc/HTML/uk/umbrello/code-generation-general-settings.png +share/doc/HTML/uk/umbrello/code-generation-language-general.png +share/doc/HTML/uk/umbrello/code-generation-language-method-settings.png +share/doc/HTML/uk/umbrello/code-import-settings.png +share/doc/HTML/uk/umbrello/code-import.png +share/doc/HTML/uk/umbrello/code-viewer-settings.png +share/doc/HTML/uk/umbrello/code_import_and_generation.docbook +share/doc/HTML/uk/umbrello/collaboration-diagram.png +share/doc/HTML/uk/umbrello/credits.docbook +share/doc/HTML/uk/umbrello/diagram-font-settings.png +share/doc/HTML/uk/umbrello/entity-relationship-diagram.png +share/doc/HTML/uk/umbrello/folders.png +share/doc/HTML/uk/umbrello/font-settings.png +share/doc/HTML/uk/umbrello/general-settings.png +share/doc/HTML/uk/umbrello/generation-options.png +share/doc/HTML/uk/umbrello/index.cache.bz2 +share/doc/HTML/uk/umbrello/index.docbook +share/doc/HTML/uk/umbrello/introduction.docbook +share/doc/HTML/uk/umbrello/other_features.docbook +share/doc/HTML/uk/umbrello/sequence-diagram.png +share/doc/HTML/uk/umbrello/settings.docbook +share/doc/HTML/uk/umbrello/state-diagram.png +share/doc/HTML/uk/umbrello/umbrello-ui.png +share/doc/HTML/uk/umbrello/uml_basics.docbook +share/doc/HTML/uk/umbrello/use-case-diagram.png +share/doc/HTML/uk/umbrello/user-interface-settings.png +share/doc/HTML/uk/umbrello/working_with_umbrello.docbook share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png @@ -200,6 +307,7 @@ share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo +share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo @@ -210,6 +318,7 @@ share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo +share/locale/ro/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index c94751f121c..c5650ef4d39 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:16 markd Exp $ -SHA1 (umbrello-20.04.1.tar.xz) = 1f2e0d22f87d3ff4597ab9212de7a322e63c523a -RMD160 (umbrello-20.04.1.tar.xz) = 5f43a4b90456762ba0b825d7fc3c37753458657e -SHA512 (umbrello-20.04.1.tar.xz) = 3365d7c014e002da23a66b42e612bd3be8356f875ca8f7b9c8f90c9f566560bc97619de5b75788fe9c82534b8649bf459019f88a0ffb62eb9fdb407c12aad731 -Size (umbrello-20.04.1.tar.xz) = 4383840 bytes +SHA1 (umbrello-20.12.3.tar.xz) = b38b0f6f9117eeaf91e78c0e3d01257edefac427 +RMD160 (umbrello-20.12.3.tar.xz) = 826a618cf3f9e9966f772e1b887600dbe4a9c80a +SHA512 (umbrello-20.12.3.tar.xz) = 619d83ffd307be57fc8f3dc935dde6bdeffc60186ab675b8f2e530bb6a125ec1e03fccc49772c6d4cc120b3280e56f28344cba2627c3b955f9cd338cd071da6a +Size (umbrello-20.12.3.tar.xz) = 5555804 bytes diff --git a/editors/kate/Makefile b/editors/kate/Makefile index bf21a93b66b..f0fd2452bd7 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.63 2021/02/07 06:30:19 ryoon Exp $ +# $NetBSD: Makefile,v 1.64 2021/04/07 12:28:17 markd Exp $ DISTNAME= kate-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= editors HOMEPAGE= https://www.kde.org/applications/utilities/kate/ diff --git a/editors/kate/PLIST b/editors/kate/PLIST index 93d8b299fa7..b6fcb05898f 100644 --- a/editors/kate/PLIST +++ b/editors/kate/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.14 2020/06/09 11:56:06 markd Exp $ +@comment $NetBSD: PLIST,v 1.15 2021/04/07 12:28:17 markd Exp $ bin/kate bin/kwrite man/ca/man1/kate.1 @@ -9,6 +9,7 @@ man/man1/kate.1 man/nl/man1/kate.1 man/pt/man1/kate.1 man/pt_BR/man1/kate.1 +man/ru/man1/kate.1 man/sv/man1/kate.1 man/uk/man1/kate.1 qt5/plugins/ktexteditor/externaltoolsplugin.so @@ -36,45 +37,20 @@ qt5/plugins/ktexteditor/textfilterplugin.so qt5/plugins/plasma/dataengine/plasma_engine_katesessions.so share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop -share/doc/HTML/ca/kate/arrow-down-double-22.png -share/doc/HTML/ca/kate/arrow-up-double-22.png share/doc/HTML/ca/kate/backtrace-settings.png -share/doc/HTML/ca/kate/bookmarks-22.png share/doc/HTML/ca/kate/build-output.png share/doc/HTML/ca/kate/close-except-like.png share/doc/HTML/ca/kate/configdialog01.png -share/doc/HTML/ca/kate/configure-22.png -share/doc/HTML/ca/kate/configure-shortcuts-22.png share/doc/HTML/ca/kate/configuring.docbook share/doc/HTML/ca/kate/ctags-global-setting.png -share/doc/HTML/ca/kate/ctags-session-setting.png share/doc/HTML/ca/kate/development.docbook -share/doc/HTML/ca/kate/dialog-ok-22.png -share/doc/HTML/ca/kate/document-new-22.png -share/doc/HTML/ca/kate/document-open-22.png -share/doc/HTML/ca/kate/document-save-22.png -share/doc/HTML/ca/kate/document-save-as-22.png -share/doc/HTML/ca/kate/documentswitcher.png -share/doc/HTML/ca/kate/edit-copy-22.png -share/doc/HTML/ca/kate/edit-delete-22.png -share/doc/HTML/ca/kate/edit-select-all-22.png -share/doc/HTML/ca/kate/format-text-superscript-22.png share/doc/HTML/ca/kate/fundamentals.docbook -share/doc/HTML/ca/kate/games-config-options-22.png -share/doc/HTML/ca/kate/gdb-call-stack.png share/doc/HTML/ca/kate/gdb-io.png -share/doc/HTML/ca/kate/gdb-locals.png share/doc/HTML/ca/kate/gdb-output.png share/doc/HTML/ca/kate/gdb-settings.png -share/doc/HTML/ca/kate/go-down-22.png -share/doc/HTML/ca/kate/go-next-22.png -share/doc/HTML/ca/kate/go-previous-22.png -share/doc/HTML/ca/kate/go-up-22.png share/doc/HTML/ca/kate/index.cache.bz2 share/doc/HTML/ca/kate/index.docbook share/doc/HTML/ca/kate/kate.png -share/doc/HTML/ca/kate/list-add-22.png -share/doc/HTML/ca/kate/mascot_kate.png share/doc/HTML/ca/kate/menus.docbook share/doc/HTML/ca/kate/plugins.docbook share/doc/HTML/ca/kate/project-completition.png @@ -88,25 +64,13 @@ share/doc/HTML/ca/kate/snippets-panel.png share/doc/HTML/ca/kate/snippets-repository.png share/doc/HTML/ca/kate/snippets-usage.png share/doc/HTML/ca/kate/symbolviewer-settings.png -share/doc/HTML/ca/kate/system-switch-user-22.png -share/doc/HTML/ca/kate/tab-duplicate-22.png -share/doc/HTML/ca/kate/tab-new-22.png share/doc/HTML/ca/kate/textfilter.png -share/doc/HTML/ca/kate/view-refresh-22.png -share/doc/HTML/ca/kate/view-split-left-right-22.png share/doc/HTML/ca/katepart/advanced.docbook -share/doc/HTML/ca/katepart/arrow-down-double-22.png -share/doc/HTML/ca/katepart/arrow-up-double-22.png -share/doc/HTML/ca/katepart/comma-to.png -share/doc/HTML/ca/katepart/configure-shortcuts-22.png share/doc/HTML/ca/katepart/configuring.docbook share/doc/HTML/ca/katepart/development.docbook -share/doc/HTML/ca/katepart/edit-select-all-22.png -share/doc/HTML/ca/katepart/format-text-superscript-22.png share/doc/HTML/ca/katepart/fundamentals.docbook share/doc/HTML/ca/katepart/index.cache.bz2 share/doc/HTML/ca/katepart/index.docbook -share/doc/HTML/ca/katepart/line-modification-system.png share/doc/HTML/ca/katepart/menus.docbook share/doc/HTML/ca/katepart/minimap.png share/doc/HTML/ca/katepart/part.docbook @@ -234,6 +198,8 @@ share/doc/HTML/it/katepart/regular-expressions.docbook share/doc/HTML/it/katepart/vi.docbook share/doc/HTML/it/kwrite/index.cache.bz2 share/doc/HTML/it/kwrite/index.docbook +share/doc/HTML/ko/kwrite/index.cache.bz2 +share/doc/HTML/ko/kwrite/index.docbook share/doc/HTML/nl/kate/configuring.docbook share/doc/HTML/nl/kate/development.docbook share/doc/HTML/nl/kate/fundamentals.docbook @@ -279,6 +245,23 @@ share/doc/HTML/pt_BR/katepart/regular-expressions.docbook share/doc/HTML/pt_BR/katepart/vi.docbook share/doc/HTML/pt_BR/kwrite/index.cache.bz2 share/doc/HTML/pt_BR/kwrite/index.docbook +share/doc/HTML/ru/kate/configuring.docbook +share/doc/HTML/ru/kate/development.docbook +share/doc/HTML/ru/kate/fundamentals.docbook +share/doc/HTML/ru/kate/index.cache.bz2 +share/doc/HTML/ru/kate/index.docbook +share/doc/HTML/ru/kate/menus.docbook +share/doc/HTML/ru/kate/plugins.docbook +share/doc/HTML/ru/katepart/advanced.docbook +share/doc/HTML/ru/katepart/configuring.docbook +share/doc/HTML/ru/katepart/development.docbook +share/doc/HTML/ru/katepart/fundamentals.docbook +share/doc/HTML/ru/katepart/index.cache.bz2 +share/doc/HTML/ru/katepart/index.docbook +share/doc/HTML/ru/katepart/menus.docbook +share/doc/HTML/ru/katepart/part.docbook +share/doc/HTML/ru/katepart/regular-expressions.docbook +share/doc/HTML/ru/katepart/vi.docbook share/doc/HTML/ru/kwrite/index.cache.bz2 share/doc/HTML/ru/kwrite/index.docbook share/doc/HTML/sv/kate/configuring.docbook @@ -322,7 +305,6 @@ share/doc/HTML/uk/kate/project-current-analysis.png share/doc/HTML/uk/kate/project-quickopen.png share/doc/HTML/uk/kate/project-search.png share/doc/HTML/uk/kate/project-view.png -share/doc/HTML/uk/kate/rust-configuration.png share/doc/HTML/uk/kate/textfilter.png share/doc/HTML/uk/katepart/advanced.docbook share/doc/HTML/uk/katepart/configuring.docbook @@ -1296,6 +1278,7 @@ share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo @@ -1307,8 +1290,11 @@ share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo +share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo +share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/kwrite.mo +share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo @@ -1367,6 +1353,7 @@ share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo @@ -1382,6 +1369,7 @@ share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo +share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo diff --git a/editors/kate/distinfo b/editors/kate/distinfo index cb63cc96fdc..c18d525c711 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.15 2021/04/07 12:28:17 markd Exp $ -SHA1 (kate-20.04.1.tar.xz) = c70e1ec6ed4fdf47f9be205381e43591765e15ae -RMD160 (kate-20.04.1.tar.xz) = d925590bc9672596f0af97452db19b924f92c9c3 -SHA512 (kate-20.04.1.tar.xz) = b1b07b9ca25809afe316319f890e3a6eff2604f91779c2e1e942dbb16ce082f4a4d3bc6e72dea28a35fc2f31dc615eaa750f74c0528458d1397ae6cd651b7e47 -Size (kate-20.04.1.tar.xz) = 5826720 bytes +SHA1 (kate-20.12.3.tar.xz) = 7b7993cdc9436990352c7e08e84aca8aa547a71c +RMD160 (kate-20.12.3.tar.xz) = aebba03b59a31123303a1cbcc30fb5860262b17e +SHA512 (kate-20.12.3.tar.xz) = 545ec2a48ea6ec737011602b20ac2f60a0f9db0a5e55e0b232f9fd7c10b7e3f54d2a346be7e6341537758a3f8f94868c4083a6d2d10b572568f5c56c9d3aee9c +Size (kate-20.12.3.tar.xz) = 5949012 bytes diff --git a/games/blinken/Makefile b/games/blinken/Makefile index 0ce4b0d5e8b..3cb1870fbec 100644 --- a/games/blinken/Makefile +++ b/games/blinken/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:17 markd Exp $ DISTNAME= blinken-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/education/blinken/ diff --git a/games/blinken/PLIST b/games/blinken/PLIST index 1c0d650e36d..dbcee7b627c 100644 --- a/games/blinken/PLIST +++ b/games/blinken/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/20 21:58:38 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:17 markd Exp $ bin/blinken share/applications/org.kde.blinken.desktop share/blinken/README.packagers @@ -14,9 +14,7 @@ share/doc/HTML/ca/blinken/blinken1.png share/doc/HTML/ca/blinken/blinken2.png share/doc/HTML/ca/blinken/blinken_accesskeys.png share/doc/HTML/ca/blinken/blinken_helpbutton.png -share/doc/HTML/ca/blinken/blinken_highscoresbutton.png share/doc/HTML/ca/blinken/blinken_nickprompt.png -share/doc/HTML/ca/blinken/blinken_quitbutton.png share/doc/HTML/ca/blinken/index.cache.bz2 share/doc/HTML/ca/blinken/index.docbook share/doc/HTML/de/blinken/blinken1.png @@ -40,6 +38,12 @@ share/doc/HTML/es/blinken/index.cache.bz2 share/doc/HTML/es/blinken/index.docbook share/doc/HTML/et/blinken/index.cache.bz2 share/doc/HTML/et/blinken/index.docbook +share/doc/HTML/fr/blinken/blinken1.png +share/doc/HTML/fr/blinken/blinken2.png +share/doc/HTML/fr/blinken/blinken_accesskeys.png +share/doc/HTML/fr/blinken/blinken_nickprompt.png +share/doc/HTML/fr/blinken/index.cache.bz2 +share/doc/HTML/fr/blinken/index.docbook share/doc/HTML/it/blinken/index.cache.bz2 share/doc/HTML/it/blinken/index.docbook share/doc/HTML/nl/blinken/index.cache.bz2 @@ -50,9 +54,7 @@ share/doc/HTML/pt_BR/blinken/blinken1.png share/doc/HTML/pt_BR/blinken/blinken2.png share/doc/HTML/pt_BR/blinken/blinken_accesskeys.png share/doc/HTML/pt_BR/blinken/blinken_helpbutton.png -share/doc/HTML/pt_BR/blinken/blinken_highscoresbutton.png share/doc/HTML/pt_BR/blinken/blinken_nickprompt.png -share/doc/HTML/pt_BR/blinken/blinken_quitbutton.png share/doc/HTML/pt_BR/blinken/index.cache.bz2 share/doc/HTML/pt_BR/blinken/index.docbook share/doc/HTML/sv/blinken/blinken1.png diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 501f1cc2aec..c605bbc47f4 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:17 markd Exp $ -SHA1 (blinken-20.04.1.tar.xz) = 6367617dfa1ee124fd7ad9303ab47af026b21249 -RMD160 (blinken-20.04.1.tar.xz) = add54799faa1bb895cf6fa2c54b979a2c1c16eb0 -SHA512 (blinken-20.04.1.tar.xz) = f2d69713e8bb6f60367bf21c1ae3dbbb8a572cf0561ff060cb654bcacfa5ad7a4304ab5c2835a0775d31a7a94c29efa3006bd40b8bf4abe22830b6628769ce9e -Size (blinken-20.04.1.tar.xz) = 2821432 bytes +SHA1 (blinken-20.12.3.tar.xz) = 96e018738ccd918e7477d382463fcbb9700d1756 +RMD160 (blinken-20.12.3.tar.xz) = 54ec857392a9897a7322b4de183cf6839ccfc193 +SHA512 (blinken-20.12.3.tar.xz) = 0c78fdddb9772f003e73ef12cd09557fa0af469ecdbbbefe1b6c01e236f6d882b93182bdd99427d430eb680a0cfb2346a36df54f626cab568bb86d60e1fe3a84 +Size (blinken-20.12.3.tar.xz) = 2537996 bytes diff --git a/games/bomber/Makefile b/games/bomber/Makefile index e1ad686c26f..245300b4036 100644 --- a/games/bomber/Makefile +++ b/games/bomber/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:17 markd Exp $ DISTNAME= bomber-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/bomber/ diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 3eebc72d1bd..8f24897089b 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:17 markd Exp $ -SHA1 (bomber-20.04.1.tar.xz) = 4cf6b0cf8cdb5dd945af1ecfaa5c5c846592b1ef -RMD160 (bomber-20.04.1.tar.xz) = 8f41d465ed38745e78c11b5300d7337b970df11f -SHA512 (bomber-20.04.1.tar.xz) = cf2bdd227370ae735a4c786241fd9ffb0c06669e9409f0995e7cbf6ce38c66e661e2377c4d59a77a45d3007d86da151d0c4cc2aae897b58914d04005786f433d -Size (bomber-20.04.1.tar.xz) = 820240 bytes +SHA1 (bomber-20.12.3.tar.xz) = d067cff9d48163f15297ace1f8d9af1e8911c36d +RMD160 (bomber-20.12.3.tar.xz) = 58f2d86a9982eb8dc92bb2686506482166527c95 +SHA512 (bomber-20.12.3.tar.xz) = 4a40b968507ee3c0b9db4fd0adb87a734a11e170599513fc2bccf4086047eb9991ca566109f82b7b147cb551efe50e9ecb95d9a3a8b723a8c2c7823cebbde50c +Size (bomber-20.12.3.tar.xz) = 825104 bytes diff --git a/games/bovo/Makefile b/games/bovo/Makefile index 94878f4d1cd..5d3b86b389b 100644 --- a/games/bovo/Makefile +++ b/games/bovo/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:17 markd Exp $ DISTNAME= bovo-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/bovo/ diff --git a/games/bovo/distinfo b/games/bovo/distinfo index ee6a2cd166f..8155a69fe2d 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:06 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:17 markd Exp $ -SHA1 (bovo-20.04.1.tar.xz) = 8a9c779ebab16801ddef2da24003319d9fda5edb -RMD160 (bovo-20.04.1.tar.xz) = 34ad0fc51ae45e4d303beba0fe93d4ed26ff28a0 -SHA512 (bovo-20.04.1.tar.xz) = 6f450dfc72168abd5d6b6c2c542536bdf1ff4e3c7cc2f39d75f24c0121cbf7d5d541f2268cb99fab6d9efd6629d8bdd46c8d2f48c1367611b82d670bdbbd895b -Size (bovo-20.04.1.tar.xz) = 200220 bytes +SHA1 (bovo-20.12.3.tar.xz) = c6488fa028076f4e1be4ea7dc5fd656304f2ecd4 +RMD160 (bovo-20.12.3.tar.xz) = f4cc5b732142fa87b420ba980065066e150891df +SHA512 (bovo-20.12.3.tar.xz) = 3da7166ea79a597eb8efa092fdcaf85a89f32d2fd8cd9113d33741701c259d2267ace1f050ba87f5ed035cd451aa44fc77cb687a3321fa26a48adf118c4fe2ee +Size (bovo-20.12.3.tar.xz) = 205792 bytes diff --git a/games/granatier/Makefile b/games/granatier/Makefile index 8f44877dff5..43353210c60 100644 --- a/games/granatier/Makefile +++ b/games/granatier/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:17 markd Exp $ DISTNAME= granatier-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/granatier/ diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 66f2524c5b9..f8cd30dffbf 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:17 markd Exp $ -SHA1 (granatier-20.04.1.tar.xz) = e8ca780911dede962698cc15197ec19beb271448 -RMD160 (granatier-20.04.1.tar.xz) = 555d0f21ba31b8fc72f1c59c8f14aed69622b286 -SHA512 (granatier-20.04.1.tar.xz) = 6be2708b414f8e93499edd7c22453a9f4a7699481a8ea89add3dba9d4f1c738ad23d5d16f317474dfcc2f536b9064f9b185e25497305eb8f3d3f2f7b03525ac4 -Size (granatier-20.04.1.tar.xz) = 1944576 bytes +SHA1 (granatier-20.12.3.tar.xz) = 5cfc610495093f57692ff0b26e5276b716a1b103 +RMD160 (granatier-20.12.3.tar.xz) = 5b0e939e762505d33eb853c2de931d3169e4c464 +SHA512 (granatier-20.12.3.tar.xz) = 91b577c2b6e87e4e5376e139d6161d03c9f9f7e835446f11b02541d04e2bb1a0f8f5f6f0ae2f10c1d83ec0ce74046d3d926f29c2d051e68a2c83abf61730ee93 +Size (granatier-20.12.3.tar.xz) = 1951672 bytes diff --git a/games/kajongg/Makefile b/games/kajongg/Makefile index 20e760ec37c..3b14785ca16 100644 --- a/games/kajongg/Makefile +++ b/games/kajongg/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.69 2021/01/03 08:22:39 mef Exp $ +# $NetBSD: Makefile,v 1.70 2021/04/07 12:28:17 markd Exp $ DISTNAME= kajongg-${KAPPSVER} -PKGREVISION= 4 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kajongg/ diff --git a/games/kajongg/PLIST b/games/kajongg/PLIST index 8f971785c9f..74744255ff8 100644 --- a/games/kajongg/PLIST +++ b/games/kajongg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2021/01/03 08:22:39 mef Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:17 markd Exp $ bin/kajongg bin/kajonggserver share/applications/org.kde.kajongg.desktop @@ -54,6 +54,7 @@ share/icons/hicolor/scalable/apps/kajongg.svgz share/kajongg/__pycache__/about.cpython-${PYPKGVER}.pyc share/kajongg/__pycache__/altint.cpython-${PYPKGVER}.pyc share/kajongg/__pycache__/animation.cpython-${PYPKGVER}.pyc +share/kajongg/__pycache__/appversion.cpython-${PYPKGVER}.pyc share/kajongg/__pycache__/background.cpython-${PYPKGVER}.pyc share/kajongg/__pycache__/backgroundselector.cpython-${PYPKGVER}.pyc share/kajongg/__pycache__/board.cpython-${PYPKGVER}.pyc @@ -122,6 +123,7 @@ share/kajongg/__pycache__/wind.cpython-${PYPKGVER}.pyc share/kajongg/about.py share/kajongg/altint.py share/kajongg/animation.py +share/kajongg/appversion.py share/kajongg/background.py share/kajongg/backgroundselector.py share/kajongg/backgroundselector.ui diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 78ed0b3452f..720455f56ab 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:17 markd Exp $ -SHA1 (kajongg-20.04.1.tar.xz) = 30d76964ad05dad5e8e1043f5973f32f3da37a4e -RMD160 (kajongg-20.04.1.tar.xz) = d436c4ec807eeaebd8f309ec1347fa807c5f75a2 -SHA512 (kajongg-20.04.1.tar.xz) = 18934682b375eda4320b8e891c9db5965ef75c191ca5668cd9f6753c632cee45088eee76c2b9150ab058ba4276028dbf90c1a99fb6842da7b7ed0416ef517d7d -Size (kajongg-20.04.1.tar.xz) = 4468252 bytes +SHA1 (kajongg-20.12.3.tar.xz) = 5bb515939338acee702d482aea11e55af0ab4687 +RMD160 (kajongg-20.12.3.tar.xz) = 47aa3dc0b8a697c7fe46dee5ccd5f9815601f2ec +SHA512 (kajongg-20.12.3.tar.xz) = 6821c06c1eb7aa9f55872234289de9ffe503dbe6183bb208aee104769fe8fa1af4cc2e34448f5902046c576e0823c1724f215a0bc9a3f60ef25b59b81d85ffa6 +Size (kajongg-20.12.3.tar.xz) = 4471984 bytes diff --git a/games/kanagram/Makefile b/games/kanagram/Makefile index 845ce763a26..ff8afc91c10 100644 --- a/games/kanagram/Makefile +++ b/games/kanagram/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:17 markd Exp $ DISTNAME= kanagram-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/education/kanagram/ diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 1fc20c1e4fd..ff21f593f18 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:17 markd Exp $ -SHA1 (kanagram-20.04.1.tar.xz) = c53a12fad25c34411e5e08cc12b7679dbf278bb6 -RMD160 (kanagram-20.04.1.tar.xz) = 99279122118beb419f5b1283f5937644f3f1c592 -SHA512 (kanagram-20.04.1.tar.xz) = ad91300db779926302220767aefb01220b4feb91e028c1842561845b3456b2415e64f558334ac604fd16738b1acdcded6ad8649900cd667af0931b058912bc98 -Size (kanagram-20.04.1.tar.xz) = 8024164 bytes +SHA1 (kanagram-20.12.3.tar.xz) = 4140343e472bcebc7ac3a7703c69fc9248888994 +RMD160 (kanagram-20.12.3.tar.xz) = 3449ff755ab8d53130eddb994917564b5d26b10a +SHA512 (kanagram-20.12.3.tar.xz) = 2e101bc3430ab563c4b7c7f68d60560c60484c11c9e3243d6b7ca872fd4042e339165fcc8533a755c0c161098bef8a66c15afbae88a375a73f62293bddc54c26 +Size (kanagram-20.12.3.tar.xz) = 8028804 bytes diff --git a/games/kapman/Makefile b/games/kapman/Makefile index b4a54af73f0..8e5316b0b90 100644 --- a/games/kapman/Makefile +++ b/games/kapman/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:17 markd Exp $ DISTNAME= kapman-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kapman/ diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 5c3362a05b5..f3b197732b3 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:17 markd Exp $ -SHA1 (kapman-20.04.1.tar.xz) = 1847ea49bec1d3f5dadac2040b107bd62cfab279 -RMD160 (kapman-20.04.1.tar.xz) = 69110eebb615e21d358e4327f7b0f9e02b607ebf -SHA512 (kapman-20.04.1.tar.xz) = e05f36c94535b3bca1c6465eaaa0d90d938cffaad8d4968d566edf1b16954d0408cfd95b7de6376d54ee9c047ef0a4db9ec8ba37e84bfa7c927cfe463c7836f5 -Size (kapman-20.04.1.tar.xz) = 2526156 bytes +SHA1 (kapman-20.12.3.tar.xz) = 448f6a8305b1c8870bd26cb7cacf947cf9b9275b +RMD160 (kapman-20.12.3.tar.xz) = 9a6e0b3f3e1fccb9f77f5c7123bee86f3e85d255 +SHA512 (kapman-20.12.3.tar.xz) = cbfd2424a714695b643103300d693de987fb2b893910a9028806b8e18bf2b8841610fe816344821dc9847796af201d6732c86ae0add53e32fab0ade5bfe1be5f +Size (kapman-20.12.3.tar.xz) = 2531568 bytes diff --git a/games/katomic/Makefile b/games/katomic/Makefile index 6c90aaa4c66..7f1d8564636 100644 --- a/games/katomic/Makefile +++ b/games/katomic/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:18 markd Exp $ DISTNAME= katomic-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/katomic/ @@ -16,16 +15,6 @@ USE_TOOLS+= msgmerge REPLACE_PERL+= katomic-levelset-upd.pl -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/katomic.knsrc \ - ${PKG_SYSCONFDIR}/xdg/katomic.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/games/katomic/PLIST b/games/katomic/PLIST index be0fd53de3f..3758735606b 100644 --- a/games/katomic/PLIST +++ b/games/katomic/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:07 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:18 markd Exp $ bin/katomic share/applications/org.kde.katomic.desktop share/doc/HTML/ca/katomic/index.cache.bz2 @@ -29,7 +29,6 @@ share/doc/HTML/sv/katomic/index.docbook share/doc/HTML/uk/katomic/index.cache.bz2 share/doc/HTML/uk/katomic/index.docbook share/doc/HTML/uk/katomic/mainscreen.png -share/examples/kde-xdg/katomic.knsrc share/icons/hicolor/128x128/apps/katomic.png share/icons/hicolor/16x16/apps/katomic.png share/icons/hicolor/22x22/apps/katomic.png @@ -40,6 +39,7 @@ share/katomic/levels/default_levels.dat share/katomic/pics/default_theme.svgz share/kconf_update/katomic-levelset-upd.pl share/kconf_update/katomic-levelset.upd +share/knsrcfiles/katomic.knsrc share/kxmlgui5/katomic/katomicui.rc share/locale/ar/LC_MESSAGES/katomic.mo share/locale/bg/LC_MESSAGES/katomic.mo diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 12b9fe4e55c..8a11a21a969 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (katomic-20.04.1.tar.xz) = 98fe01a7a265c54c55abcc0f5bcad828d9a75971 -RMD160 (katomic-20.04.1.tar.xz) = 27cb426de6e8d50b035fa4a471f6cceb9fc282c6 -SHA512 (katomic-20.04.1.tar.xz) = 46ebaefe8e9fbd6e09193a688f278687b5e593b589caabb9b171c3035cac3e608f3864afa1844c198245635bf0c28787aeed0923672b761a66291a25a6484485 -Size (katomic-20.04.1.tar.xz) = 1424088 bytes +SHA1 (katomic-20.12.3.tar.xz) = 0226c5ef34f2e1a010f6f2d38e65f7546e9a685e +RMD160 (katomic-20.12.3.tar.xz) = 8e67c342bb2671031f890ac50484fca27541d935 +SHA512 (katomic-20.12.3.tar.xz) = 3b738b702ae41ab3044da158c38ec267d6cf71f73a49973c4f7d31ef0c31c87d38927dbcd6f8a4aae0b723cd969394d6ea61aa5717b3fc50285ee84d56ca26db +Size (katomic-20.12.3.tar.xz) = 1429264 bytes diff --git a/games/kblackbox/Makefile b/games/kblackbox/Makefile index f0713c28444..074cdf82b30 100644 --- a/games/kblackbox/Makefile +++ b/games/kblackbox/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:18 markd Exp $ DISTNAME= kblackbox-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kblackbox/ diff --git a/games/kblackbox/PLIST b/games/kblackbox/PLIST index 17a7b72f99b..81daa941b0f 100644 --- a/games/kblackbox/PLIST +++ b/games/kblackbox/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:07 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:18 markd Exp $ bin/kblackbox share/applications/org.kde.kblackbox.desktop share/doc/HTML/de/kblackbox/index.cache.bz2 @@ -10,6 +10,8 @@ share/doc/HTML/es/kblackbox/index.cache.bz2 share/doc/HTML/es/kblackbox/index.docbook share/doc/HTML/et/kblackbox/index.cache.bz2 share/doc/HTML/et/kblackbox/index.docbook +share/doc/HTML/fr/kblackbox/index.cache.bz2 +share/doc/HTML/fr/kblackbox/index.docbook share/doc/HTML/it/kblackbox/index.cache.bz2 share/doc/HTML/it/kblackbox/index.docbook share/doc/HTML/nl/kblackbox/index.cache.bz2 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 2ca3c34575f..283a664486b 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kblackbox-20.04.1.tar.xz) = 030122c2e88629db64284693ce134f7be9aed2f6 -RMD160 (kblackbox-20.04.1.tar.xz) = ceadf0158d4e7b907107482f27471ac01db3babd -SHA512 (kblackbox-20.04.1.tar.xz) = a2419de46914828350f6c3bce35ba0515f305c98ebcc704283c1f1d6f647b80959e92e8bbf50b8da6dc2563d5284d81ba085357767711cc3ea7c0a0118bf0efb -Size (kblackbox-20.04.1.tar.xz) = 447044 bytes +SHA1 (kblackbox-20.12.3.tar.xz) = 3710701da4309432d58b3e5a37c90d001f4ddaf8 +RMD160 (kblackbox-20.12.3.tar.xz) = 3181037027771d83bf9c617d79fd516ff6a6c36f +SHA512 (kblackbox-20.12.3.tar.xz) = 5e641009fa3482e8e1dac73b01224a66a6ce14c1a4180d011d08b812815919a74c9c9285a5a7aa49ea2567ac744475327eef3311fae505e4cd52400b998b6310 +Size (kblackbox-20.12.3.tar.xz) = 450304 bytes diff --git a/games/kblocks/Makefile b/games/kblocks/Makefile index e8797a5177f..f5e873b545e 100644 --- a/games/kblocks/Makefile +++ b/games/kblocks/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:18 markd Exp $ DISTNAME= kblocks-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kblocks/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kblocks.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kblocks.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/games/kblocks/PLIST b/games/kblocks/PLIST index 46f5406d242..141f07b035b 100644 --- a/games/kblocks/PLIST +++ b/games/kblocks/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/21 03:00:34 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:18 markd Exp $ bin/kblocks share/applications/org.kde.kblocks.desktop share/config.kcfg/kblocks.kcfg @@ -30,7 +30,6 @@ share/doc/HTML/sv/kblocks/index.docbook share/doc/HTML/uk/kblocks/gameboard.png share/doc/HTML/uk/kblocks/index.cache.bz2 share/doc/HTML/uk/kblocks/index.docbook -share/examples/kde-xdg/kblocks.knsrc share/icons/hicolor/128x128/apps/kblocks.png share/icons/hicolor/16x16/apps/kblocks.png share/icons/hicolor/22x22/apps/kblocks.png @@ -48,6 +47,7 @@ share/kblocks/themes/egyptian_preview.png share/kblocks/themes/oxygen.desktop share/kblocks/themes/oxygen.svg share/kblocks/themes/oxygen_preview.png +share/knsrcfiles/kblocks.knsrc share/kxmlgui5/kblocks/kblocksui.rc share/locale/ar/LC_MESSAGES/kblocks.mo share/locale/bg/LC_MESSAGES/kblocks.mo diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 455c347b139..cdce66a0d1a 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kblocks-20.04.1.tar.xz) = 3e7a73121b98f54a8a25ac37c23a258d5566a9cd -RMD160 (kblocks-20.04.1.tar.xz) = 82bb4f016403a6c458859ebecf661328d69beb01 -SHA512 (kblocks-20.04.1.tar.xz) = e16b90b2035df17392b6ce7a444e7c996778aab78d80015cd3594b88d7d19603d6f7b97cdc8819858338448c8ae8434d74181bf94e3e329d700ec7f39c8e4b41 -Size (kblocks-20.04.1.tar.xz) = 1907076 bytes +SHA1 (kblocks-20.12.3.tar.xz) = b9f42af54c9755768cc60b49873af71c07ce0915 +RMD160 (kblocks-20.12.3.tar.xz) = 0ed6fd6ca1fdca7a7808da8c958d9a336f4f401e +SHA512 (kblocks-20.12.3.tar.xz) = ba5164af1bae348780b4ac284be0a696521671d258a26d0e2d7e401b995077d7b4c01fa0c3df4dbffdd6f79c617907e41b452b067d6d8861ffcbe5b68d5a2690 +Size (kblocks-20.12.3.tar.xz) = 1908420 bytes diff --git a/games/kbounce/Makefile b/games/kbounce/Makefile index 4a58fe04443..984c7fdcbc9 100644 --- a/games/kbounce/Makefile +++ b/games/kbounce/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:18 markd Exp $ DISTNAME= kbounce-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kbounce/ diff --git a/games/kbounce/PLIST b/games/kbounce/PLIST index 2d8afd8e212..6c3f7b24fe0 100644 --- a/games/kbounce/PLIST +++ b/games/kbounce/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/18 09:38:17 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:18 markd Exp $ bin/kbounce share/applications/org.kde.kbounce.desktop share/doc/HTML/de/kbounce/button-new.png @@ -21,21 +21,21 @@ share/doc/HTML/es/kbounce/index.cache.bz2 share/doc/HTML/es/kbounce/index.docbook share/doc/HTML/et/kbounce/index.cache.bz2 share/doc/HTML/et/kbounce/index.docbook +share/doc/HTML/fr/kbounce/index.cache.bz2 +share/doc/HTML/fr/kbounce/index.docbook +share/doc/HTML/fr/kbounce/jezball_corridor1.png +share/doc/HTML/fr/kbounce/jezball_corridor2.png +share/doc/HTML/fr/kbounce/jezball_newWall.png share/doc/HTML/it/kbounce/index.cache.bz2 share/doc/HTML/it/kbounce/index.docbook share/doc/HTML/nl/kbounce/index.cache.bz2 share/doc/HTML/nl/kbounce/index.docbook share/doc/HTML/pt/kbounce/index.cache.bz2 share/doc/HTML/pt/kbounce/index.docbook -share/doc/HTML/pt_BR/kbounce/button-new.png -share/doc/HTML/pt_BR/kbounce/button-pause.png share/doc/HTML/pt_BR/kbounce/index.cache.bz2 share/doc/HTML/pt_BR/kbounce/index.docbook share/doc/HTML/pt_BR/kbounce/kbounce_corridor1.png share/doc/HTML/pt_BR/kbounce/kbounce_corridor2.png -share/doc/HTML/pt_BR/kbounce/menu-game.png -share/doc/HTML/pt_BR/kbounce/menu-settings.png -share/doc/HTML/pt_BR/kbounce/toolbar.png share/doc/HTML/sv/kbounce/index.cache.bz2 share/doc/HTML/sv/kbounce/index.docbook share/doc/HTML/uk/kbounce/index.cache.bz2 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 8b73226f10b..9cd74a493d6 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kbounce-20.04.1.tar.xz) = ccabe1a0172c24c1719e4d2121c8d763d7e0ce6c -RMD160 (kbounce-20.04.1.tar.xz) = 0552a5e7b8ed3cd9991bba81bb71898fe09a0d7a -SHA512 (kbounce-20.04.1.tar.xz) = 78ae8e10702c7c464da5c736c056353150dca9ea18607b852d799680072cabbc116871977caaf1893cf00b8164842cd9c8583eb305c13f7b4027aa00ebad2f40 -Size (kbounce-20.04.1.tar.xz) = 3467240 bytes +SHA1 (kbounce-20.12.3.tar.xz) = 31c34dae142620913df41bfef68099c6205ea023 +RMD160 (kbounce-20.12.3.tar.xz) = afb7cb078d84e064ad8636644a4240243d47233f +SHA512 (kbounce-20.12.3.tar.xz) = d1137116ba98a96b129d21fca8f087c87df338ef081dea0b6bcab6b026eb341ad9ef4e9c0858d95a7268e5585aac68336b58bc132acc14148a0f91646637a22c +Size (kbounce-20.12.3.tar.xz) = 3443204 bytes diff --git a/games/kbreakout/Makefile b/games/kbreakout/Makefile index 31625d3b17f..0ef8eabd5d6 100644 --- a/games/kbreakout/Makefile +++ b/games/kbreakout/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:18 markd Exp $ DISTNAME= kbreakout-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kbreakout/ diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 921d745e8fb..9f79f002670 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:07 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kbreakout-20.04.1.tar.xz) = e97af2937fae545fd9a4d030029fa97eb8ce4495 -RMD160 (kbreakout-20.04.1.tar.xz) = baf9a5b33238f55dcfd46cd109b344fc12deb7d6 -SHA512 (kbreakout-20.04.1.tar.xz) = a7a1cfd626db43fa645316dc40a521231e0925b5b44340aa0ebe3bb1e3140d764fed05e73cd8c4a8e981f30b044255041ec564662303220190b57f650cf9a3e4 -Size (kbreakout-20.04.1.tar.xz) = 2280264 bytes +SHA1 (kbreakout-20.12.3.tar.xz) = a693b9aaa9992260ec1d69b62fb5541be5cf7143 +RMD160 (kbreakout-20.12.3.tar.xz) = 3d3878671340b4734299578e41048d7b2a29e6f7 +SHA512 (kbreakout-20.12.3.tar.xz) = e74d6ecd602d210ca40f4192c00984eea9bc96c18dc2b72194449e578a5656f81c18680bacb444d707d301cdcf06c47b8651117a05b0ff2888117fea994958fe +Size (kbreakout-20.12.3.tar.xz) = 2284120 bytes diff --git a/games/kdiamond/Makefile b/games/kdiamond/Makefile index 405d9bd7b0d..1a41bca060a 100644 --- a/games/kdiamond/Makefile +++ b/games/kdiamond/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:18 markd Exp $ DISTNAME= kdiamond-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kdiamond/ @@ -14,15 +13,15 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' +#SUBST_CLASSES+= xdg +#SUBST_STAGE.xdg= pre-configure +#SUBST_MESSAGE.xdg= Install via examples dir. +#SUBST_FILES.xdg= src/CMakeLists.txt +#SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdiamond.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kdiamond.knsrc +#MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg +#CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdiamond.knsrc \ +# ${PKG_SYSCONFDIR}/xdg/kdiamond.knsrc .include "../../devel/knotifyconfig/buildlink3.mk" .include "../../games/libkdegames/buildlink3.mk" diff --git a/games/kdiamond/PLIST b/games/kdiamond/PLIST index 436af2f17c7..31d79cdb40a 100644 --- a/games/kdiamond/PLIST +++ b/games/kdiamond/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:08 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:18 markd Exp $ bin/kdiamond share/applications/org.kde.kdiamond.desktop share/doc/HTML/de/kdiamond/index.cache.bz2 @@ -29,7 +29,6 @@ share/doc/HTML/sv/kdiamond/index.docbook share/doc/HTML/uk/kdiamond/gameboard.png share/doc/HTML/uk/kdiamond/index.cache.bz2 share/doc/HTML/uk/kdiamond/index.docbook -share/examples/kde-xdg/kdiamond.knsrc share/icons/hicolor/128x128/apps/kdiamond.png share/icons/hicolor/16x16/apps/kdiamond.png share/icons/hicolor/22x22/apps/kdiamond.png @@ -47,6 +46,7 @@ share/kdiamond/themes/funny_zoo.desktop share/kdiamond/themes/funny_zoo.png share/kdiamond/themes/funny_zoo.svgz share/knotifications5/kdiamond.notifyrc +share/knsrcfiles/kdiamond.knsrc share/kxmlgui5/kdiamond/kdiamondui.rc share/locale/ar/LC_MESSAGES/kdiamond.mo share/locale/bg/LC_MESSAGES/kdiamond.mo diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 85a1e7d1e2d..404b7123633 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kdiamond-20.04.1.tar.xz) = 31c3ef58bd238e8007f3171281e534b0e6fd90ec -RMD160 (kdiamond-20.04.1.tar.xz) = b7b2c96b0491848f5cca4270f0f67b3f61b49b87 -SHA512 (kdiamond-20.04.1.tar.xz) = d39e2b55aad444dbbc8e10631b3a9061222a887f055678aa70c43ca3b57a5e99321948662f3dc1b7d5402a8f7ccd5c2b73301856ff389664671c142c7ba2d7f9 -Size (kdiamond-20.04.1.tar.xz) = 4693952 bytes +SHA1 (kdiamond-20.12.3.tar.xz) = d5f0eb6713975a3edc44e16c6d68dea74f6cb308 +RMD160 (kdiamond-20.12.3.tar.xz) = 5302a88dd04ac89fea1a18913f73a4b093f8885e +SHA512 (kdiamond-20.12.3.tar.xz) = f7eb5dbdeb709290a2cdb46b03f829ac111ea629dc49d81d61ce0f32eeaf0f23fcf234cd20d44a54013e93dc42e867b0dd802d54ec624d3ab4b5b9c1e8ce8c75 +Size (kdiamond-20.12.3.tar.xz) = 4698168 bytes diff --git a/games/kfourinline/Makefile b/games/kfourinline/Makefile index 5b5b6a63e9e..fdee9a56fa4 100644 --- a/games/kfourinline/Makefile +++ b/games/kfourinline/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:18 markd Exp $ DISTNAME= kfourinline-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kfourinline/ diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index e39f27bc96a..002797ad60f 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kfourinline-20.04.1.tar.xz) = 0c942808e3e72241edcbe4c7fa032739e0ce23f8 -RMD160 (kfourinline-20.04.1.tar.xz) = 0ea8de1bcef33590e80878bd2e177c81494fa225 -SHA512 (kfourinline-20.04.1.tar.xz) = 47189ddac4cd9dc85e612615e7c4f2adb2bfb6d2fa1fd766832380f31bf0f7498e1ac8aa7b7cafc0113dba64fbac7c3e2f633e0966fe383f517e98fe74799c9a -Size (kfourinline-20.04.1.tar.xz) = 640040 bytes +SHA1 (kfourinline-20.12.3.tar.xz) = 1bcaff1b0f4b281ad7ac3afe951b30e68d3ab010 +RMD160 (kfourinline-20.12.3.tar.xz) = 8e263428e9c0362a4d7e5ebd96d1a4eedead6460 +SHA512 (kfourinline-20.12.3.tar.xz) = 76792c00f6a2a0a5cd43d4441da5723b4c1ec79021d8fcdd66857ac222b25a80978014eb5878f05d4c091443a664d20fc5a2f25af8ec65f815d7a501775d3f83 +Size (kfourinline-20.12.3.tar.xz) = 643812 bytes diff --git a/games/kgoldrunner/Makefile b/games/kgoldrunner/Makefile index a85d9410490..9885563b1ba 100644 --- a/games/kgoldrunner/Makefile +++ b/games/kgoldrunner/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:18 markd Exp $ DISTNAME= kgoldrunner-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kgoldrunner/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= themes/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kgoldrunner.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kgoldrunner.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/games/kgoldrunner/PLIST b/games/kgoldrunner/PLIST index 076b0da9ad7..ecc1df67168 100644 --- a/games/kgoldrunner/PLIST +++ b/games/kgoldrunner/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:08 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:18 markd Exp $ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/doc/HTML/de/kgoldrunner/editbar.png @@ -39,7 +39,6 @@ share/doc/HTML/uk/kgoldrunner/index.cache.bz2 share/doc/HTML/uk/kgoldrunner/index.docbook share/doc/HTML/uk/kgoldrunner/select.png share/doc/HTML/uk/kgoldrunner/tute008.png -share/examples/kde-xdg/kgoldrunner.knsrc share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png @@ -111,6 +110,7 @@ share/kgoldrunner/themes/nostalgia/blue-set.svg share/kgoldrunner/themes/nostalgia/nostalgia-blues.png share/kgoldrunner/themes/nostalgia/nostalgia.png share/kgoldrunner/themes/nostalgia/set.svg +share/knsrcfiles/kgoldrunner.knsrc share/kxmlgui5/kgoldrunner/kgoldrunnerui.rc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo @@ -140,6 +140,7 @@ share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo +share/locale/ko/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 2c2c98e44a1..aac1944201e 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:18 markd Exp $ -SHA1 (kgoldrunner-20.04.1.tar.xz) = caeb0df29eedb1fdc176e4b7c1bd96e397e1d26a -RMD160 (kgoldrunner-20.04.1.tar.xz) = 4c46da3f87502966a4a36c38905c40db562ac549 -SHA512 (kgoldrunner-20.04.1.tar.xz) = 2187162615889cc10e1a869d10300384a330b6d100983907c697cd9a444f244d743a9d90fbe8528a3542ae5e26965df06f987aa6d5892dd2ef3f23bf81224c38 -Size (kgoldrunner-20.04.1.tar.xz) = 4429500 bytes +SHA1 (kgoldrunner-20.12.3.tar.xz) = ae7f40fbf72bce709a220be19845dc99c0795f90 +RMD160 (kgoldrunner-20.12.3.tar.xz) = c71ab3be85b42dc7f83beecb79de1d5fb83d4edd +SHA512 (kgoldrunner-20.12.3.tar.xz) = 0cc72a33d0dee5368c034e7f8f5928531e785abd1a62ade58c24e0975af3ac6ec7e5bf89f07f52be720ce5cd8e5f0d6d4fdd4fa02a5bc8d46ecc5175ad419a4b +Size (kgoldrunner-20.12.3.tar.xz) = 4444752 bytes diff --git a/games/khangman/Makefile b/games/khangman/Makefile index 816b4bf401b..4c36b00e477 100644 --- a/games/khangman/Makefile +++ b/games/khangman/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:19 markd Exp $ DISTNAME= khangman-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/education/khangman/ diff --git a/games/khangman/PLIST b/games/khangman/PLIST index 43c4bc1bfde..8d1fdbee609 100644 --- a/games/khangman/PLIST +++ b/games/khangman/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2020/02/02 02:44:50 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:19 markd Exp $ bin/khangman man/ca/man6/khangman.6 man/de/man6/khangman.6 @@ -60,8 +60,12 @@ share/doc/HTML/et/khangman/index.cache.bz2 share/doc/HTML/et/khangman/index.docbook share/doc/HTML/id/khangman/index.cache.bz2 share/doc/HTML/id/khangman/index.docbook +share/doc/HTML/it/khangman/getnewstuff.png share/doc/HTML/it/khangman/index.cache.bz2 share/doc/HTML/it/khangman/index.docbook +share/doc/HTML/it/khangman/khangman-desert.png +share/doc/HTML/it/khangman/khangman-main.png +share/doc/HTML/it/khangman/settings.png share/doc/HTML/nl/khangman/index.cache.bz2 share/doc/HTML/nl/khangman/index.docbook share/doc/HTML/pt/khangman/index.cache.bz2 @@ -157,8 +161,8 @@ share/khangman/qml/sounds/splash.ogg share/khangman/qml/sounds/splash.wav share/khangman/qml/sounds/wrong.ogg share/khangman/qml/sounds/wrong.wav +share/khangman/sk.txt share/khangman/sl.txt -share/khangman/sr@latin.txt share/khangman/sv.txt share/khangman/themes/khangman_bees.svg share/khangman/themes/khangman_desert.svg diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 85592f54156..0c86f3afa3f 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:19 markd Exp $ -SHA1 (khangman-20.04.1.tar.xz) = d526d05a13eaaaf4149037c89196924def9150e1 -RMD160 (khangman-20.04.1.tar.xz) = edc6ac2123b18d149bb61afa9a7aee23cc08f5a2 -SHA512 (khangman-20.04.1.tar.xz) = f7bff33094c866e0d11c2c855f49f816dc99b0af0dbd09698a3b61c352379218eb1767c0ead252ed6b48c99e4f216d712203915c41a96a4fcc3d9795f557ce2f -Size (khangman-20.04.1.tar.xz) = 7110768 bytes +SHA1 (khangman-20.12.3.tar.xz) = 3c0d711db066f6c6211ae62d73b51a8149b53464 +RMD160 (khangman-20.12.3.tar.xz) = 400c7ce6de52bc43d91328bba7beafa62e9296cb +SHA512 (khangman-20.12.3.tar.xz) = 6b421298762a5b1f0747e41946d10f35b576b37d2dd865f45b6b35fc402a44f6845714788607e96bbad657d3f2da147f6661f0e53ed04857bc4a0a3d0ea2a2fd +Size (khangman-20.12.3.tar.xz) = 7400372 bytes diff --git a/games/kigo/Makefile b/games/kigo/Makefile index a3c8e3de438..8f96e9957d8 100644 --- a/games/kigo/Makefile +++ b/games/kigo/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:19 markd Exp $ DISTNAME= kigo-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kigo/ @@ -14,18 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kigo.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kigo.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kigo-games.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kigo-games.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/games/kigo/PLIST b/games/kigo/PLIST index 1bb2997f3ab..8ddef985dbd 100644 --- a/games/kigo/PLIST +++ b/games/kigo/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:08 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:19 markd Exp $ bin/kigo share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg @@ -61,8 +61,6 @@ share/doc/HTML/uk/kigo/setup-general.png share/doc/HTML/uk/kigo/setup-theme.png share/doc/HTML/uk/kigo/start-loaded-game.png share/doc/HTML/uk/kigo/start-new-game.png -share/examples/kde-xdg/kigo.knsrc -share/examples/kde-xdg/kigo-games.knsrc share/icons/hicolor/128x128/apps/kigo.png share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png @@ -77,6 +75,8 @@ share/kigo/themes/kigo_default.svgz share/kigo/themes/kigo_plain.png share/kigo/themes/kigo_plain.svgz share/kigo/themes/plain.desktop +share/knsrcfiles/kigo-games.knsrc +share/knsrcfiles/kigo.knsrc share/kxmlgui5/kigo/kigoui.rc share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo @@ -89,6 +89,7 @@ share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo +share/locale/eu/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 9d9881f906b..cd66f0234a3 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:19 markd Exp $ -SHA1 (kigo-20.04.1.tar.xz) = d46a7131a4d0261cc04427a03ac8a98bbc22490d -RMD160 (kigo-20.04.1.tar.xz) = 68ca7743510d13d5a6676f5eac65f1da265d0c54 -SHA512 (kigo-20.04.1.tar.xz) = 3e95cff3d4f16c453be8a44fc96573dfd495ddc381cf3dbba9e6f2b40e01a0a02f0324f70b1f347d6bfc469be3611860dc4fc31736643b56a69ceff39965e8bc -Size (kigo-20.04.1.tar.xz) = 5227080 bytes +SHA1 (kigo-20.12.3.tar.xz) = 4024579f954bf5fcc4b9e46cfb94574ca1ac3e10 +RMD160 (kigo-20.12.3.tar.xz) = f252c3bbbbbe3fac851e3409ea7336171a3dffa2 +SHA512 (kigo-20.12.3.tar.xz) = 6576abeafbd67bddbcb4466a4b1079c2cf709b21921f906270d637b4bc2364fab62030c4b12848dd7212910537d2581d2cde588f242286aca5b2039d684df69e +Size (kigo-20.12.3.tar.xz) = 5234272 bytes diff --git a/games/killbots/Makefile b/games/killbots/Makefile index 2f34baa67f5..4b100bb9185 100644 --- a/games/killbots/Makefile +++ b/games/killbots/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:19 markd Exp $ DISTNAME= killbots-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/killbots/ diff --git a/games/killbots/PLIST b/games/killbots/PLIST index d4a72a7661b..5f1f8d51fbc 100644 --- a/games/killbots/PLIST +++ b/games/killbots/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:08 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:19 markd Exp $ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg @@ -70,6 +70,7 @@ share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo +share/locale/eu/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo diff --git a/games/killbots/distinfo b/games/killbots/distinfo index be90182ee5b..8c9a7e12d82 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:19 markd Exp $ -SHA1 (killbots-20.04.1.tar.xz) = 98bd459ef90c08153fb6a5f7ef212d5a13a6de96 -RMD160 (killbots-20.04.1.tar.xz) = 4552e5564e58b2e6a064c489cdb944bcd0537b0c -SHA512 (killbots-20.04.1.tar.xz) = 874387489c5744a26c2d40261f8cc8b6e06d12b18ecaf4956b37426b0dccddc9a71c58b9345e6d4e17f9aa396da8c5b09dc6d86117c46ee6dd3a369670aa4cba -Size (killbots-20.04.1.tar.xz) = 1173648 bytes +SHA1 (killbots-20.12.3.tar.xz) = f650787aef2d3cd0995ea8489e52f259c899712a +RMD160 (killbots-20.12.3.tar.xz) = 10a59223e831ac1a1b9439f39d2f3fafa69ff684 +SHA512 (killbots-20.12.3.tar.xz) = 247d4325d705e527ca3934d35d0f939415a05c4f37d7b7b53b43cdb9bf28c3b59b87f60070eeacd24bac9ce22888042081a9503c2c1ce65db8bd4495df7f8504 +Size (killbots-20.12.3.tar.xz) = 1186532 bytes diff --git a/games/kiriki/Makefile b/games/kiriki/Makefile index 9deace62d43..9bf4ec796f0 100644 --- a/games/kiriki/Makefile +++ b/games/kiriki/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:19 markd Exp $ DISTNAME= kiriki-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kiriki/ diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index ceec21a3526..a9c2bbaf54d 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:19 markd Exp $ -SHA1 (kiriki-20.04.1.tar.xz) = 860f5b051080258484b531dd831afd16230d3048 -RMD160 (kiriki-20.04.1.tar.xz) = 3691a9fe0a2625bf8a978adb2e1d474ed99a8456 -SHA512 (kiriki-20.04.1.tar.xz) = 8a7f94b0dedfcfd30a3697afcf7dec763252b21d1e61097d6170ad1e9b1216216eebc6dc547e4f65aadb33cde6e2009d20992a6e40799502e02646f6c27412f1 -Size (kiriki-20.04.1.tar.xz) = 373420 bytes +SHA1 (kiriki-20.12.3.tar.xz) = 0cceeacd2a4e08d8dcf08ec51a0c080b211345ea +RMD160 (kiriki-20.12.3.tar.xz) = 5cbe4258762103b95a10ddeaf5c6efbefc3ea633 +SHA512 (kiriki-20.12.3.tar.xz) = 52615d3de4ba76e3e80450c8ae90dafb9fbd123954c9e703d44167be78ef4b3ce85fc51fe90a811621e5a8beb79ddc95499ce0b5d91003e9726705f9e4a0f9b5 +Size (kiriki-20.12.3.tar.xz) = 378704 bytes diff --git a/games/kjumpingcube/Makefile b/games/kjumpingcube/Makefile index a87b5e20185..d43bebb51f1 100644 --- a/games/kjumpingcube/Makefile +++ b/games/kjumpingcube/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:20 markd Exp $ DISTNAME= kjumpingcube-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kjumpingcube/ diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 1486b8d23a7..a2b9ae9a5c9 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (kjumpingcube-20.04.1.tar.xz) = 20d3155d3f46f18469cdba70dea6656fe8ef1642 -RMD160 (kjumpingcube-20.04.1.tar.xz) = ec678a90fe35468125c763c36ce8167351d537a4 -SHA512 (kjumpingcube-20.04.1.tar.xz) = 8e39aae54ee2387bf2d733b09a833a9009e8d9ee3bd32c5da8414560dd08fc598ca31275893059cf0e0fae3a218d2688d522bd179d0dead17bea374dee8df983 -Size (kjumpingcube-20.04.1.tar.xz) = 288992 bytes +SHA1 (kjumpingcube-20.12.3.tar.xz) = 8e9c2f1f8a1ca3531588c3cc7d03cdb6cfb02e30 +RMD160 (kjumpingcube-20.12.3.tar.xz) = b50ffed9eb85bdaab4c00ea38938dbbf0db8df91 +SHA512 (kjumpingcube-20.12.3.tar.xz) = c4df393cf74c18b090d0cf97c04ab28579f75dc2f140921634a6250952747db0bec415a7516031eeda7ce731e15188062a57d652d0b5533193adfcdab48edc9b +Size (kjumpingcube-20.12.3.tar.xz) = 290892 bytes diff --git a/games/klickety/Makefile b/games/klickety/Makefile index 3fb77c01057..838b92d48c8 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= klickety-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/klickety/ diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 2854081e5dc..26744546309 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:08 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (klickety-20.04.1.tar.xz) = 97a27b3ce916469c38389a30ad9151279f1fd1b7 -RMD160 (klickety-20.04.1.tar.xz) = 41b7e750d416aad796ad670a5f078aa460b240e9 -SHA512 (klickety-20.04.1.tar.xz) = 8a409f3ad658245a9967fb43ad1b63ee960ca63c3a0b168516c82fc6990918091bb4a141ac94cc2c0300ee7a4cc6f5e29495d7dea655aa2a638cbf8aa69a53c3 -Size (klickety-20.04.1.tar.xz) = 1390580 bytes +SHA1 (klickety-20.12.3.tar.xz) = 39a9f7057e1d0adb6c8f90bf62c3f09e587bb921 +RMD160 (klickety-20.12.3.tar.xz) = b86cf5035d7b141eec23bc5c0244394ea35f62ce +SHA512 (klickety-20.12.3.tar.xz) = 6fd26ee6d83e70f01911c31b17fbf398f718a54d26997174792c75884d0cd97f935caf7b25730ef1a9f6f1bc6daa78396449c19412c07936e630b5a7d42bf9f5 +Size (klickety-20.12.3.tar.xz) = 1394852 bytes diff --git a/games/klines/Makefile b/games/klines/Makefile index 4a738db64e3..fa27cd89b72 100644 --- a/games/klines/Makefile +++ b/games/klines/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= klines-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/klines/ diff --git a/games/klines/PLIST b/games/klines/PLIST index d5dd97e8e18..7afa8450ae1 100644 --- a/games/klines/PLIST +++ b/games/klines/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:09 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:20 markd Exp $ bin/klines share/applications/org.kde.klines.desktop share/config.kcfg/klines.kcfg @@ -12,6 +12,8 @@ share/doc/HTML/es/klines/index.cache.bz2 share/doc/HTML/es/klines/index.docbook share/doc/HTML/et/klines/index.cache.bz2 share/doc/HTML/et/klines/index.docbook +share/doc/HTML/fr/klines/index.cache.bz2 +share/doc/HTML/fr/klines/index.docbook share/doc/HTML/it/klines/index.cache.bz2 share/doc/HTML/it/klines/index.docbook share/doc/HTML/nl/klines/index.cache.bz2 diff --git a/games/klines/distinfo b/games/klines/distinfo index fc5405e8bcb..9f6c6f8560c 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (klines-20.04.1.tar.xz) = 8da4a47b2825721f3acfe078ed27d9ad40a4673e -RMD160 (klines-20.04.1.tar.xz) = e0a666b1749ee5eb267fafa986dbe1cb9ebb978b -SHA512 (klines-20.04.1.tar.xz) = fd286956ca383b55a366782f2550eac67776a1e4a329dc64e65bc122145e9f88e009efabe5a3c34b7f23b8f220375feb8a0d8a3596a3b65c02c68f9706aefefb -Size (klines-20.04.1.tar.xz) = 1782048 bytes +SHA1 (klines-20.12.3.tar.xz) = 8f55340f14c2a08c1061e83c3c2869c73faf4fcd +RMD160 (klines-20.12.3.tar.xz) = 8fd755d3bc748bfe255506abe7747ef35805d89a +SHA512 (klines-20.12.3.tar.xz) = 8e580603b78e405c52dea0d7c9c122d47018898d6c6a9999f1945c43c2afbb97e38fdcf35d5782ed38549843d1fff9f00b1bed62e4fad529a9cb55aa64d2b83a +Size (klines-20.12.3.tar.xz) = 1790320 bytes diff --git a/games/kmahjongg/Makefile b/games/kmahjongg/Makefile index 8068617da24..2d744fab9d2 100644 --- a/games/kmahjongg/Makefile +++ b/games/kmahjongg/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:23 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= kmahjongg-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kmahjongg/ diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 860060238e3..eab73521656 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (kmahjongg-20.04.1.tar.xz) = 354e81c4b9a8f8a4c449282ae4ce40d5e77b072f -RMD160 (kmahjongg-20.04.1.tar.xz) = 76cbb4b87f2dd233172bbd165dbfbb2a58e85669 -SHA512 (kmahjongg-20.04.1.tar.xz) = 75123ccc80091f93126753ca748464bb939c1209655604fcf0f37be3e5f9f100a993c337671deab56851aadc00afc12a8f9508bcefe10908573216b432896782 -Size (kmahjongg-20.04.1.tar.xz) = 3427948 bytes +SHA1 (kmahjongg-20.12.3.tar.xz) = ec0aacbb4a2c297b3b80decc2e8a779d69b51574 +RMD160 (kmahjongg-20.12.3.tar.xz) = 8c4a9dbbd10025fcf7dcefc70e0b2d33c037c04b +SHA512 (kmahjongg-20.12.3.tar.xz) = f9c021e00f2c1a0be6acc589eb3cc6eed6541864d30e46a39d96a4b08f04ea497d1a2d3eec6706f66d0e3539ee571663415e12d666a972b21a412a061f3ce703 +Size (kmahjongg-20.12.3.tar.xz) = 3435208 bytes diff --git a/games/kmines/Makefile b/games/kmines/Makefile index 9ecf1a99bda..e70f2197e05 100644 --- a/games/kmines/Makefile +++ b/games/kmines/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= kmines-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kmines/ diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 9cf87a2bd30..2b694e8907c 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (kmines-20.04.1.tar.xz) = b02f26e88a64c7b3a49e9d7fe81802acf22dfed4 -RMD160 (kmines-20.04.1.tar.xz) = b0f44dbe50f2b064706be514e93153fa0e92405a -SHA512 (kmines-20.04.1.tar.xz) = 00756285fb2810bd02e1f3ab41a122a537e1c7de10641af5265149460be61f87375efeed3f623382368e343e61abbbdb20b6769ba755fb2eb6780531815e7084 -Size (kmines-20.04.1.tar.xz) = 899972 bytes +SHA1 (kmines-20.12.3.tar.xz) = da4577e0e3a920843a05343799bd49247e98ae26 +RMD160 (kmines-20.12.3.tar.xz) = 956fab755621403382933bf342fc6800c35a7a1b +SHA512 (kmines-20.12.3.tar.xz) = ba714171e9b58a4c997e98c35463dbc679673990d2ec8769b8007cea1164d512273e3d40ef94484c3034be935d5406ab386bb70e4e5739727a615d8c0f9cc22d +Size (kmines-20.12.3.tar.xz) = 959492 bytes diff --git a/games/knavalbattle/Makefile b/games/knavalbattle/Makefile index e4b346902b8..884144c39db 100644 --- a/games/knavalbattle/Makefile +++ b/games/knavalbattle/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= knavalbattle-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/knavalbattle/ diff --git a/games/knavalbattle/PLIST b/games/knavalbattle/PLIST index e8ad3cb3793..a5e5a41deb5 100644 --- a/games/knavalbattle/PLIST +++ b/games/knavalbattle/PLIST @@ -1,6 +1,8 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:09 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:20 markd Exp $ bin/knavalbattle share/applications/org.kde.knavalbattle.desktop +share/doc/HTML/ca/knavalbattle/index.cache.bz2 +share/doc/HTML/ca/knavalbattle/index.docbook share/doc/HTML/de/knavalbattle/index.cache.bz2 share/doc/HTML/de/knavalbattle/index.docbook share/doc/HTML/en/knavalbattle/gameboard.png diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index a667cd85772..b84fc31c1ae 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (knavalbattle-20.04.1.tar.xz) = f2b07725446c283c33c5d801c81046b339ab89df -RMD160 (knavalbattle-20.04.1.tar.xz) = 7c5ed24959367f2a49960550c8a3818904022fd1 -SHA512 (knavalbattle-20.04.1.tar.xz) = dc4eaaaccf5fd53f361a1d57af2cfe7c565438f716aac3a6ccab80ecb279dce4b91e8f59ba1b3009457102191ec05fa2bdfd6eb60ea0a3181552436a933cf664 -Size (knavalbattle-20.04.1.tar.xz) = 1282476 bytes +SHA1 (knavalbattle-20.12.3.tar.xz) = e37685720f5d8f4eb9585f2722b08183aca1cf99 +RMD160 (knavalbattle-20.12.3.tar.xz) = 386b175e7bf8d99e02664f9ed9cddba24bf16e5d +SHA512 (knavalbattle-20.12.3.tar.xz) = 015414551b0b365234243b8dc1b250513aede658d62908fe85b6d370dd471d10bc65e79c5f31ff1d03f9e05d6ea2387c116d1808df106097ab0bc21eaeb8cac8 +Size (knavalbattle-20.12.3.tar.xz) = 1290248 bytes diff --git a/games/knetwalk/Makefile b/games/knetwalk/Makefile index 377f708dd46..a2961e50c0f 100644 --- a/games/knetwalk/Makefile +++ b/games/knetwalk/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:20 markd Exp $ DISTNAME= knetwalk-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/knetwalk/ diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 4eec7f88fed..cc57b31b843 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (knetwalk-20.04.1.tar.xz) = 8af175af5e07bd8b6d3e44117ecd9dffe87ddcb1 -RMD160 (knetwalk-20.04.1.tar.xz) = bd55d21a3ba0e35af697f44a3754756f39ceb596 -SHA512 (knetwalk-20.04.1.tar.xz) = 240bdad5be7364186f55cb0f9d492e0e617e14642a2c089d464ebef19be70b1743f66da9a831384e9697d8681fbc444069174feb09d1dea61568eecd3a894f43 -Size (knetwalk-20.04.1.tar.xz) = 1259220 bytes +SHA1 (knetwalk-20.12.3.tar.xz) = 0365727f2ef2b785980cfe35f723144c6c53f861 +RMD160 (knetwalk-20.12.3.tar.xz) = f6612b512345a343d6798103ed41a958cff16627 +SHA512 (knetwalk-20.12.3.tar.xz) = 510ca6b0a7de58cbcd2e51cc3ec12c3ceac13e7cf03d1f1f0399a3d91b92deac4ebdba1528a62a0d7401b2bd60b2eae2b540727209d3bfed868d11a2ca1201c9 +Size (knetwalk-20.12.3.tar.xz) = 1267580 bytes diff --git a/games/kolf/Makefile b/games/kolf/Makefile index bc7f050540c..c695b9d4732 100644 --- a/games/kolf/Makefile +++ b/games/kolf/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:20 markd Exp $ DISTNAME= kolf-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kolf/ diff --git a/games/kolf/PLIST b/games/kolf/PLIST index 3be89937eec..a6b2274111c 100644 --- a/games/kolf/PLIST +++ b/games/kolf/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/06/09 11:56:09 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:20 markd Exp $ bin/kolf share/applications/org.kde.kolf.desktop share/doc/HTML/de/kolf/index.cache.bz2 @@ -11,6 +11,8 @@ share/doc/HTML/et/kolf/index.cache.bz2 share/doc/HTML/et/kolf/index.docbook share/doc/HTML/fr/kolf/index.cache.bz2 share/doc/HTML/fr/kolf/index.docbook +share/doc/HTML/gl/kolf/index.cache.bz2 +share/doc/HTML/gl/kolf/index.docbook share/doc/HTML/it/kolf/index.cache.bz2 share/doc/HTML/it/kolf/index.docbook share/doc/HTML/nl/kolf/index.cache.bz2 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 4443c841efa..e6ab4f6b330 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:20 markd Exp $ -SHA1 (kolf-20.04.1.tar.xz) = 2049180554c7830e4332f941e8ed148c652d5145 -RMD160 (kolf-20.04.1.tar.xz) = 3e48f2e351e50e266c2fb10150d4094f0bc6729c -SHA512 (kolf-20.04.1.tar.xz) = 471a00152be62a68144f42ba854524e1c50df044b461a7e5c5e52af5fcd5aee2a81d7f58932b1ac9cb50316f79106872e4af48776ad5a19b722cef4d617e71ff -Size (kolf-20.04.1.tar.xz) = 1020064 bytes +SHA1 (kolf-20.12.3.tar.xz) = 872ea751f3f9055fbec71e66dbae3e1c0aa0c9c4 +RMD160 (kolf-20.12.3.tar.xz) = cb78df57cb6691767a57e00b0a474a9653e3a045 +SHA512 (kolf-20.12.3.tar.xz) = 63f78174da9aa76bed51128b44900e52b314daf2caaf22e1f7bf2233b58e999a34e508354c46b20b26ba95908eb690d3cbe20a425ad6e2661a8ee5fd373acb63 +Size (kolf-20.12.3.tar.xz) = 1029796 bytes diff --git a/games/kollision/Makefile b/games/kollision/Makefile index c8d54362125..97b72a750d3 100644 --- a/games/kollision/Makefile +++ b/games/kollision/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= kollision-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kollision/ diff --git a/games/kollision/PLIST b/games/kollision/PLIST index 59c4e54c165..4e5d89f1ef5 100644 --- a/games/kollision/PLIST +++ b/games/kollision/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:09 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:21 markd Exp $ bin/kollision share/applications/org.kde.kollision.desktop share/doc/HTML/cs/kollision/index.cache.bz2 @@ -14,6 +14,8 @@ share/doc/HTML/et/kollision/index.cache.bz2 share/doc/HTML/et/kollision/index.docbook share/doc/HTML/fr/kollision/index.cache.bz2 share/doc/HTML/fr/kollision/index.docbook +share/doc/HTML/id/kollision/index.cache.bz2 +share/doc/HTML/id/kollision/index.docbook share/doc/HTML/it/kollision/index.cache.bz2 share/doc/HTML/it/kollision/index.docbook share/doc/HTML/ja/kollision/index.cache.bz2 @@ -67,6 +69,7 @@ share/locale/ga/LC_MESSAGES/kollision.mo share/locale/gl/LC_MESSAGES/kollision.mo share/locale/hr/LC_MESSAGES/kollision.mo share/locale/hu/LC_MESSAGES/kollision.mo +share/locale/id/LC_MESSAGES/kollision.mo share/locale/is/LC_MESSAGES/kollision.mo share/locale/it/LC_MESSAGES/kollision.mo share/locale/ja/LC_MESSAGES/kollision.mo diff --git a/games/kollision/distinfo b/games/kollision/distinfo index b1ca5755f11..d5597f00652 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (kollision-20.04.1.tar.xz) = cc1c5c7c3e16fde268b10c5f09cde4634158a973 -RMD160 (kollision-20.04.1.tar.xz) = 8f51569c9c743d9e2bd2f806668dd2df41e7ea26 -SHA512 (kollision-20.04.1.tar.xz) = d0eb8ed714b9992a064ed15eadf5a9cae53744f63e1f1ae8ff00e379a394881dc5dc347a6acbf6ca7e22ccfecc35b7c14ce0219b2bab5a4a83ebc355f02ebd4b -Size (kollision-20.04.1.tar.xz) = 280916 bytes +SHA1 (kollision-20.12.3.tar.xz) = dce632603cdd8ccb3b9fada6dc594e195160e5d0 +RMD160 (kollision-20.12.3.tar.xz) = 3ec0ddf26258f2bb9d8bcf95357352fd9ed242af +SHA512 (kollision-20.12.3.tar.xz) = e1c019efd9fbc99abd67fb70d81ef12f2846e6d7c2e2c8283a78bce7e96ca9b70ff430fb9556a7a7c26ad8fffffe8989311df1285a34b39c74a394112aec8fe4 +Size (kollision-20.12.3.tar.xz) = 290660 bytes diff --git a/games/konquest/Makefile b/games/konquest/Makefile index 53927ea7dc0..becf953e3f3 100644 --- a/games/konquest/Makefile +++ b/games/konquest/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= konquest-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/konquest/ diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 2d05ade5111..2844a183bbb 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:09 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (konquest-20.04.1.tar.xz) = fad3e40e6182583ffe326efc569271a5b896d7a6 -RMD160 (konquest-20.04.1.tar.xz) = 65be64056401a07bf558920922bb95e602a65a7b -SHA512 (konquest-20.04.1.tar.xz) = 0450276287b39c671d5054f9608a0b063fc6a2ac2529d75924811bb5f5231162b6bec7dd937e48fce4246e990d2494ff982a33f38a5dae8b36149cd137db88d1 -Size (konquest-20.04.1.tar.xz) = 660064 bytes +SHA1 (konquest-20.12.3.tar.xz) = abd871a539e29f30df579aa59e4974116581cabc +RMD160 (konquest-20.12.3.tar.xz) = 47d003eb3589bda81b00f1be827df104955c7016 +SHA512 (konquest-20.12.3.tar.xz) = 331571276a7318bc5ed04f0860d2918d5c9b0461bef66ba8185d1be2a09e3606e02bcf46479ba24e3cabf35c834c687fb195d4d347b90b5f72903395aedce113 +Size (konquest-20.12.3.tar.xz) = 666152 bytes diff --git a/games/kpat/Makefile b/games/kpat/Makefile index 4c6c9332a04..82f04552770 100644 --- a/games/kpat/Makefile +++ b/games/kpat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= kpat-${KAPPSVER} PKGREVISION= 6 @@ -8,6 +8,7 @@ HOMEPAGE= https://kde.org/applications/games/kpat/ COMMENT= Multiplicity of different solitaire games LICENSE= gnu-gpl-v2 AND gnu-fdl-v1.2 +KAPPSVER= 20.04.1 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools diff --git a/games/kreversi/Makefile b/games/kreversi/Makefile index 24ef0523fb8..fcc00212883 100644 --- a/games/kreversi/Makefile +++ b/games/kreversi/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= kreversi-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kreversi/ diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 79a09d49e85..3026ab6e7bf 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (kreversi-20.04.1.tar.xz) = 9834a12b940576aa566eafa483ece898b025f547 -RMD160 (kreversi-20.04.1.tar.xz) = cbfafb181ea14ec764fbf1db3be4a6b76e0a293f -SHA512 (kreversi-20.04.1.tar.xz) = f53f85f7cca1860584367623c203fabaf6bffa556b74bd256a2fc079680eeaea4e598817ca549683da6741bbe65249b3cb06f859ef6961415d376830e289d2e5 -Size (kreversi-20.04.1.tar.xz) = 946852 bytes +SHA1 (kreversi-20.12.3.tar.xz) = 7c98857c5ca27b08a557f5874726b309c79748a9 +RMD160 (kreversi-20.12.3.tar.xz) = 6d8483c4e4c6720e40c886cc6991c64b1f81aa18 +SHA512 (kreversi-20.12.3.tar.xz) = 300704489db887d3738491a7dc0b62bf6d7056c803c778ea48bbb086c71b4c57a46517fe4350379982c2b6effd8fa8bfe109e506957905f168c341eb51e0dcd2 +Size (kreversi-20.12.3.tar.xz) = 953588 bytes diff --git a/games/kshisen/Makefile b/games/kshisen/Makefile index 772106608b0..66011fe6fff 100644 --- a/games/kshisen/Makefile +++ b/games/kshisen/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= kshisen-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kshisen/ diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 200f3a5862a..6cde36c0bbf 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (kshisen-20.04.1.tar.xz) = 5c68f512d5cc2e65832c3378a017a78009a9267c -RMD160 (kshisen-20.04.1.tar.xz) = 7f44366a9c64cebbf8e7b1b46cb9f87927ac5173 -SHA512 (kshisen-20.04.1.tar.xz) = 000488b94ec745641112d87f34b6d9f3db672622b9fd825e817fe23ed08cc0005f4722e7cedb6d1388fd348c378d7cada5a6954e971d59d97023d20889d81567 -Size (kshisen-20.04.1.tar.xz) = 821760 bytes +SHA1 (kshisen-20.12.3.tar.xz) = 5f73bcde82481418835a1d0878ed006b1ba50c1d +RMD160 (kshisen-20.12.3.tar.xz) = d400b036cb0dbaa832b089cfbf22cabc03336237 +SHA512 (kshisen-20.12.3.tar.xz) = 32cf664a6c4c5bf20abf9d025398d45a4e37eb3693df337677ae23dc92f508862332f992c2d4a318af42fcc12abc4dcf2068c44633135ef66a7683cecbfe1581 +Size (kshisen-20.12.3.tar.xz) = 827336 bytes diff --git a/games/ksirk/Makefile b/games/ksirk/Makefile index abfef5fac58..a820a5e27bd 100644 --- a/games/ksirk/Makefile +++ b/games/ksirk/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:21 markd Exp $ DISTNAME= ksirk-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/ksirk/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= ksirk/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/ksirk.knsrc \ - ${PKG_SYSCONFDIR}/xdg/ksirk.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../multimedia/phonon-qt5/buildlink3.mk" diff --git a/games/ksirk/PLIST b/games/ksirk/PLIST index 6dd07753157..531ede9201a 100644 --- a/games/ksirk/PLIST +++ b/games/ksirk/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:10 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:21 markd Exp $ bin/ksirk bin/ksirkskineditor lib/libiris_ksirk.so @@ -116,7 +116,6 @@ share/doc/HTML/uk/ksirk/preferences.png share/doc/HTML/uk/ksirk/shownumberofarmies.png share/doc/HTML/uk/ksirkskineditor/index.cache.bz2 share/doc/HTML/uk/ksirkskineditor/index.docbook -share/examples/kde-xdg/ksirk.knsrc share/icons/hicolor/128x128/apps/ksirk.png share/icons/hicolor/16x16/apps/ksirk.png share/icons/hicolor/22x22/apps/ksirk.png @@ -124,6 +123,7 @@ share/icons/hicolor/32x32/apps/ksirk.png share/icons/hicolor/48x48/apps/ksirk.png share/icons/hicolor/64x64/apps/ksirk.png share/icons/hicolor/scalable/apps/ksirk.svgz +share/knsrcfiles/ksirk.knsrc share/ksirk/jabber.png share/ksirk/skins/default/Data/world.desktop share/ksirk/skins/default/Images/2DownArrow.png diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index a6752f5b2b8..4750ae19aa3 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (ksirk-20.04.1.tar.xz) = 79a34a3d981f2256e44c740581ba6a5458206df6 -RMD160 (ksirk-20.04.1.tar.xz) = 2fab22ba722bc65a3d822c267d9018f134f23671 -SHA512 (ksirk-20.04.1.tar.xz) = 83035f57178207d0d01a0908995f9f299bf1548e20be75e34c7b497550626c9122f2c3cb18f5d15d0e11404179c1fbdbd0bc022733d99fcc9ca98ce89b13bb35 -Size (ksirk-20.04.1.tar.xz) = 6988764 bytes +SHA1 (ksirk-20.12.3.tar.xz) = 3db8eebe8492ce380c5f5b9eac7c68c898d5fbb9 +RMD160 (ksirk-20.12.3.tar.xz) = b184de33ef14b2e0f0f36b2dc9a62675750c9482 +SHA512 (ksirk-20.12.3.tar.xz) = f45d4ba82435f9e76349ca1f6218e3d1cc6e1d3025f86db4bfe0ee724129ad96bd71e9b0b6d21bf60a5e19f460e1b9b7c9a3d7c6c0f229e9d5cf4600bff18672 +Size (ksirk-20.12.3.tar.xz) = 6993564 bytes diff --git a/games/ksnakeduel/Makefile b/games/ksnakeduel/Makefile index a95b9fb8de6..1b8c49240bf 100644 --- a/games/ksnakeduel/Makefile +++ b/games/ksnakeduel/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:21 markd Exp $ DISTNAME= ksnakeduel-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/ksnakeduel/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/ksnakeduel.knsrc \ - ${PKG_SYSCONFDIR}/xdg/ksnakeduel.knsrc - .include "../../games/libkdegames/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/games/ksnakeduel/PLIST b/games/ksnakeduel/PLIST index f93dd361752..67c0c7407b4 100644 --- a/games/ksnakeduel/PLIST +++ b/games/ksnakeduel/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:10 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:21 markd Exp $ bin/ksnakeduel share/applications/org.kde.ksnakeduel.desktop share/config.kcfg/ksnakeduel.kcfg @@ -32,7 +32,6 @@ share/doc/HTML/uk/ksnakeduel/index.cache.bz2 share/doc/HTML/uk/ksnakeduel/index.docbook share/doc/HTML/uk/ksnakeduel/settings-general.png share/doc/HTML/uk/ksnakeduel/settings-theme.png -share/examples/kde-xdg/ksnakeduel.knsrc share/icons/hicolor/128x128/apps/ksnakeduel.png share/icons/hicolor/16x16/apps/ksnakeduel.png share/icons/hicolor/22x22/apps/ksnakeduel.png @@ -40,6 +39,7 @@ share/icons/hicolor/256x256/apps/ksnakeduel.png share/icons/hicolor/32x32/apps/ksnakeduel.png share/icons/hicolor/48x48/apps/ksnakeduel.png share/icons/hicolor/64x64/apps/ksnakeduel.png +share/knsrcfiles/ksnakeduel.knsrc share/ksnakeduel/themes/default.desktop share/ksnakeduel/themes/default.png share/ksnakeduel/themes/default.svgz diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 77934918b59..6422ac0d664 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (ksnakeduel-20.04.1.tar.xz) = cf6fd4f3688d0756497d633af1992cf0f6b47426 -RMD160 (ksnakeduel-20.04.1.tar.xz) = 4ef794c38574de895d28bb7bc57cc6b03d060095 -SHA512 (ksnakeduel-20.04.1.tar.xz) = d61accbb991ce22805dc0d0b952c0fde0559c445e0543c7b2c81627121a908a77d8472430216928fe0dbc4f9eef5c7ef7ac1955e60d07107a8438e845abc3e54 -Size (ksnakeduel-20.04.1.tar.xz) = 605604 bytes +SHA1 (ksnakeduel-20.12.3.tar.xz) = 7f4bd1ecfd651b76fa8ca8f54ba11545246bdb29 +RMD160 (ksnakeduel-20.12.3.tar.xz) = 1f65b1c5f1ee6fb9e54e1773857a4d47977428ec +SHA512 (ksnakeduel-20.12.3.tar.xz) = 6915dbb658b85bcc647a70ee45a99bb07437424966256cac4efdb2d3dbee625a832f0ebeae1ee6f6138356d1c0baca42cca7fa2a80c668686480634fb350b5cf +Size (ksnakeduel-20.12.3.tar.xz) = 544212 bytes diff --git a/games/kspaceduel/Makefile b/games/kspaceduel/Makefile index 9c698538d32..20d0fcced9f 100644 --- a/games/kspaceduel/Makefile +++ b/games/kspaceduel/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:21 markd Exp $ DISTNAME= kspaceduel-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kspaceduel/ diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 3d3542d45c8..8ebc34106db 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:21 markd Exp $ -SHA1 (kspaceduel-20.04.1.tar.xz) = d04d7e375516ae3b98bbccd7bcd9da372bf3f8eb -RMD160 (kspaceduel-20.04.1.tar.xz) = dba8c83c0af0085f6a727acbc0f6d03e73816a8e -SHA512 (kspaceduel-20.04.1.tar.xz) = 2e94ef356445af04e3e441aba75cf7537377dc4259b5299e1d51a6f0f5d5e91675f7c4ee1844a7cdd8ce22701f1ca6ad98f942620e94ccc798e4a1e712d50cac -Size (kspaceduel-20.04.1.tar.xz) = 612260 bytes +SHA1 (kspaceduel-20.12.3.tar.xz) = fcb15988024031bfb590c34a640b2963856f9a84 +RMD160 (kspaceduel-20.12.3.tar.xz) = f57fed55fc7047b61932f425ae06f19078843b35 +SHA512 (kspaceduel-20.12.3.tar.xz) = 87c42bba9bc7c677e72ec62ad1255723ccca9b1acd6c840e83ed355ace40c95e605fedda6279b9946088fe94d0727760ee29b810e6fc9c0c353d2f357e453f3d +Size (kspaceduel-20.12.3.tar.xz) = 618104 bytes diff --git a/games/ksquares/Makefile b/games/ksquares/Makefile index 04e7e1106dd..e500e56957a 100644 --- a/games/ksquares/Makefile +++ b/games/ksquares/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:22 markd Exp $ DISTNAME= ksquares-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/ksquares/ diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index fac7b0bebfd..2fea6511f43 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (ksquares-20.04.1.tar.xz) = 62a5be5ec118ba82f7e47d50675d56a1a346e3b1 -RMD160 (ksquares-20.04.1.tar.xz) = 8a33862a45bc651300be2d319174dbda5dca128f -SHA512 (ksquares-20.04.1.tar.xz) = 7a6e892d999f458546caa199752b939987d1db129257713130b4b07554af2709817fb6b965bf2e4d3fd7bb1ddbd29adf39b9df75696efdf2fc9b6d935cad2924 -Size (ksquares-20.04.1.tar.xz) = 261072 bytes +SHA1 (ksquares-20.12.3.tar.xz) = 3f4275f0e96b8821ba7b49a63c04a85f7d75316f +RMD160 (ksquares-20.12.3.tar.xz) = cfe3ee049a7733e7cc7df7e60f6f4b5bc0f8c230 +SHA512 (ksquares-20.12.3.tar.xz) = a2b89b21e463bebd1951cf13502640fcd35967a74526bded57883a64ee408fb2eddfe47ae6bcb171c7f4f1d8dc7adc6d81dfc94de99eed7e3cb3e0b5612d23c9 +Size (ksquares-20.12.3.tar.xz) = 266692 bytes diff --git a/games/ksudoku/Makefile b/games/ksudoku/Makefile index e5828182dd9..660dc796fc0 100644 --- a/games/ksudoku/Makefile +++ b/games/ksudoku/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:22 markd Exp $ DISTNAME= ksudoku-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/ksudoku/ diff --git a/games/ksudoku/PLIST b/games/ksudoku/PLIST index be745e801b2..55a599bbf74 100644 --- a/games/ksudoku/PLIST +++ b/games/ksudoku/PLIST @@ -1,6 +1,8 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:10 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:22 markd Exp $ bin/ksudoku share/applications/org.kde.ksudoku.desktop +share/doc/HTML/ca/ksudoku/index.cache.bz2 +share/doc/HTML/ca/ksudoku/index.docbook share/doc/HTML/de/ksudoku/index.cache.bz2 share/doc/HTML/de/ksudoku/index.docbook share/doc/HTML/en/ksudoku/index.cache.bz2 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index ff3e3d2ce0a..f6c7abb742a 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (ksudoku-20.04.1.tar.xz) = a290a815a48707dde6f46baea9daa3ba2934c0ca -RMD160 (ksudoku-20.04.1.tar.xz) = c702289d9b665e74a84af44f57ee5a67c87a57b9 -SHA512 (ksudoku-20.04.1.tar.xz) = 1aaf7131be27299c6427f0094f06e4edddc94503bb2c0d268810363592b6b6aa666ec19d361a65844de42abe923e57351d0d15b86af2c52a2fa177d5fc84573b -Size (ksudoku-20.04.1.tar.xz) = 1655784 bytes +SHA1 (ksudoku-20.12.3.tar.xz) = 8090cb0425661143db8e221c583eac386d7ffc6e +RMD160 (ksudoku-20.12.3.tar.xz) = 2c28d88b1c0ac35adbe23a8f58293c401d461cf8 +SHA512 (ksudoku-20.12.3.tar.xz) = 3ee16844478ea8e70b606eda689279ae428423ffc758ea6876fb78ee3ad43795a44345c1314f0db0cbe8f98029f48bfeed9dbba1548d3160bf9f34e294e8c550 +Size (ksudoku-20.12.3.tar.xz) = 1676484 bytes +SHA1 (patch-src_gui_views_ArcBall.h) = 91e128a10235713edb8d7437fff81476ca8b5f17 diff --git a/games/ksudoku/patches/patch-src_gui_views_ArcBall.h b/games/ksudoku/patches/patch-src_gui_views_ArcBall.h new file mode 100644 index 00000000000..c0b58128583 --- /dev/null +++ b/games/ksudoku/patches/patch-src_gui_views_ArcBall.h @@ -0,0 +1,17 @@ +$NetBSD: patch-src_gui_views_ArcBall.h,v 1.1 2021/04/07 12:28:22 markd Exp $ + +Not finding NULL on NetBSD9 + +--- src/gui/views/ArcBall.h.orig 2021-02-28 22:44:32.000000000 +0000 ++++ src/gui/views/ArcBall.h +@@ -20,6 +20,10 @@ + #ifndef _ArcBall_h + #define _ArcBall_h + ++#ifdef __NetBSD__ ++#include <sys/null.h> ++#endif ++ + #include "math.h" // Needed for sqrtf + + // 8<--Snip here if you have your own math types/funcs-->8 diff --git a/games/ktuberling/Makefile b/games/ktuberling/Makefile index ec686cda7c8..2de3138c470 100644 --- a/games/ktuberling/Makefile +++ b/games/ktuberling/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:22 markd Exp $ DISTNAME= ktuberling-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/ktuberling/ diff --git a/games/ktuberling/PLIST b/games/ktuberling/PLIST index 43497377d6e..bc3240b54aa 100644 --- a/games/ktuberling/PLIST +++ b/games/ktuberling/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/06/09 11:56:10 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:22 markd Exp $ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/doc/HTML/de/ktuberling/button-new.png @@ -32,6 +32,29 @@ share/doc/HTML/es/ktuberling/technical-reference.docbook share/doc/HTML/et/ktuberling/index.cache.bz2 share/doc/HTML/et/ktuberling/index.docbook share/doc/HTML/et/ktuberling/technical-reference.docbook +share/doc/HTML/fr/ktuberling/button-new.png +share/doc/HTML/fr/ktuberling/button-open.png +share/doc/HTML/fr/ktuberling/button-print.png +share/doc/HTML/fr/ktuberling/button-redo.png +share/doc/HTML/fr/ktuberling/button-save.png +share/doc/HTML/fr/ktuberling/button-undo.png +share/doc/HTML/fr/ktuberling/gameboard.png +share/doc/HTML/fr/ktuberling/index.cache.bz2 +share/doc/HTML/fr/ktuberling/index.docbook +share/doc/HTML/fr/ktuberling/menu-edit.png +share/doc/HTML/fr/ktuberling/menu-game.png +share/doc/HTML/fr/ktuberling/menu-help.png +share/doc/HTML/fr/ktuberling/menu-settings.png +share/doc/HTML/fr/ktuberling/menu.edit.png +share/doc/HTML/fr/ktuberling/menu.file.png +share/doc/HTML/fr/ktuberling/menu.game.png +share/doc/HTML/fr/ktuberling/menu.help.png +share/doc/HTML/fr/ktuberling/menu.option.png +share/doc/HTML/fr/ktuberling/menu.playground.png +share/doc/HTML/fr/ktuberling/menu.raw.png +share/doc/HTML/fr/ktuberling/menu.speech.png +share/doc/HTML/fr/ktuberling/technical-reference.docbook +share/doc/HTML/fr/ktuberling/toolbar.png share/doc/HTML/it/ktuberling/index.cache.bz2 share/doc/HTML/it/ktuberling/index.docbook share/doc/HTML/it/ktuberling/technical-reference.docbook @@ -51,20 +74,9 @@ share/doc/HTML/sv/ktuberling/menu-game.png share/doc/HTML/sv/ktuberling/menu-help.png share/doc/HTML/sv/ktuberling/menu-settings.png share/doc/HTML/sv/ktuberling/technical-reference.docbook -share/doc/HTML/uk/ktuberling/button-load.png -share/doc/HTML/uk/ktuberling/button-new.png -share/doc/HTML/uk/ktuberling/button-print.png -share/doc/HTML/uk/ktuberling/button-redo.png -share/doc/HTML/uk/ktuberling/button-save.png -share/doc/HTML/uk/ktuberling/button-undo.png share/doc/HTML/uk/ktuberling/index.cache.bz2 share/doc/HTML/uk/ktuberling/index.docbook -share/doc/HTML/uk/ktuberling/menu-edit.png -share/doc/HTML/uk/ktuberling/menu-game.png -share/doc/HTML/uk/ktuberling/menu-help.png -share/doc/HTML/uk/ktuberling/menu-settings.png share/doc/HTML/uk/ktuberling/technical-reference.docbook -share/doc/HTML/uk/ktuberling/toolbar.png share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png @@ -1504,9 +1516,6 @@ share/ktuberling/sounds/sr/sesir.ogg share/ktuberling/sounds/sr/usta.ogg share/ktuberling/sounds/sr/uvo.ogg share/ktuberling/sounds/sr/znacka.ogg -share/ktuberling/sounds/sr@ijekavian.soundtheme -share/ktuberling/sounds/sr@ijekavianlatin.soundtheme -share/ktuberling/sounds/sr@latin.soundtheme share/ktuberling/sounds/sv.soundtheme share/ktuberling/sounds/sv/fluga.wav share/ktuberling/sounds/sv/glasogon.wav diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 4a3c39c21c3..ef9770fef06 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:10 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (ktuberling-20.04.1.tar.xz) = 94abd8a48cd6ddcd8ea49caa6f84a8159c3ebcd0 -RMD160 (ktuberling-20.04.1.tar.xz) = 4a6887a18ad3697ba9338e619850b2706420be40 -SHA512 (ktuberling-20.04.1.tar.xz) = 7856191445e60afe10438455999dc6a571f3f5c5569d932b71b08f190a6f7b2f06d2ee08f10102f75594e4a38877bc15171c5e333879cc73002119923c108494 -Size (ktuberling-20.04.1.tar.xz) = 70729228 bytes +SHA1 (ktuberling-20.12.3.tar.xz) = efac7647a62651bd98976487210c80e4ef53a1ae +RMD160 (ktuberling-20.12.3.tar.xz) = 8862acfdcc57e4233499b6116f7734a099fc4d11 +SHA512 (ktuberling-20.12.3.tar.xz) = ea6d1dd04f53cdb4bde868ae478b7368e1c1147a73d7e5179133ad47ad2bc9a823d61c11bfd5cd922c26fd169a2ea4c43e4f9fb86e13a6e12f4a92f4974cd8b0 +Size (ktuberling-20.12.3.tar.xz) = 70712392 bytes diff --git a/games/kubrick/Makefile b/games/kubrick/Makefile index 2fe1a83c2ba..16ad93080f8 100644 --- a/games/kubrick/Makefile +++ b/games/kubrick/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:22 markd Exp $ DISTNAME= kubrick-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/kubrick/ diff --git a/games/kubrick/PLIST b/games/kubrick/PLIST index 05182c954a2..69d1182b2f2 100644 --- a/games/kubrick/PLIST +++ b/games/kubrick/PLIST @@ -1,6 +1,8 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:11 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:22 markd Exp $ bin/kubrick share/applications/org.kde.kubrick.desktop +share/doc/HTML/ca/kubrick/index.cache.bz2 +share/doc/HTML/ca/kubrick/index.docbook share/doc/HTML/de/kubrick/index.cache.bz2 share/doc/HTML/de/kubrick/index.docbook share/doc/HTML/en/kubrick/index.cache.bz2 @@ -11,6 +13,8 @@ share/doc/HTML/et/kubrick/index.cache.bz2 share/doc/HTML/et/kubrick/index.docbook share/doc/HTML/fr/kubrick/index.cache.bz2 share/doc/HTML/fr/kubrick/index.docbook +share/doc/HTML/id/kubrick/index.cache.bz2 +share/doc/HTML/id/kubrick/index.docbook share/doc/HTML/it/kubrick/index.cache.bz2 share/doc/HTML/it/kubrick/index.docbook share/doc/HTML/nl/kubrick/index.cache.bz2 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index b42a36b9051..f7c4b3e1d9a 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (kubrick-20.04.1.tar.xz) = 11045621bd93f20e8180ad2cf9f31e0bb9e0ef07 -RMD160 (kubrick-20.04.1.tar.xz) = 8f147c2758b1a39cc7c5ed463e58280decaafc09 -SHA512 (kubrick-20.04.1.tar.xz) = ad0dcb69e06356ee5f3e39a9b61219235f95d1fa57a369e40bccccd1ef7fac0d0abc029366f3a243ddae58faa9ed1fe29100cc761b604efc01ed9bd7705810a9 -Size (kubrick-20.04.1.tar.xz) = 317996 bytes +SHA1 (kubrick-20.12.3.tar.xz) = aeed480b6979cc19bcd694da75b014b01effa690 +RMD160 (kubrick-20.12.3.tar.xz) = b7b0ff8f615063d9a43a9ac350c9e92e81f62f86 +SHA512 (kubrick-20.12.3.tar.xz) = bd0e22fcc299c065d64ec697a248cdefd57dac0e0c2487f5cdbd15c952a87b0873df588fcc7023a68c8f839199d00582fc39621e91746093ea409a83402bb7bc +Size (kubrick-20.12.3.tar.xz) = 339644 bytes diff --git a/games/libkdegames/Makefile b/games/libkdegames/Makefile index e706a440aae..16d01c62957 100644 --- a/games/libkdegames/Makefile +++ b/games/libkdegames/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.47 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.48 2021/04/07 12:28:22 markd Exp $ DISTNAME= libkdegames-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://www.kde.org/applications/games/ diff --git a/games/libkdegames/PLIST b/games/libkdegames/PLIST index 9f3d790d2ba..642ed9e74bc 100644 --- a/games/libkdegames/PLIST +++ b/games/libkdegames/PLIST @@ -1,5 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/06/09 11:56:11 markd Exp $ -include/KF5/KF5KDEGames/KDE/KExtHighscore +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:22 markd Exp $ include/KF5/KF5KDEGames/KDE/KGameClock include/KF5/KF5KDEGames/KDE/KGamePopupItem include/KF5/KF5KDEGames/KDE/KGameRenderedItem diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 54c26adbbfb..7d64ed8804c 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.11 2021/04/07 12:28:22 markd Exp $ -SHA1 (libkdegames-20.04.1.tar.xz) = c5bbe603c89f83e061c3b3856b32d9c8ed6f0980 -RMD160 (libkdegames-20.04.1.tar.xz) = b1d4a90c94fda457ff5ba6222dbb0af34077e537 -SHA512 (libkdegames-20.04.1.tar.xz) = e05828b98be4d4c3f1202da203cbe95d1f8e7ca881aeca2e726e0fc8427eae1b39388c75c10487070faaace94cec0526195c19f45a2a2bd104eef1ce8b53ce7f -Size (libkdegames-20.04.1.tar.xz) = 6378952 bytes +SHA1 (libkdegames-20.12.3.tar.xz) = 50eb9fb3a103e722665c60302065ccbe1625ecb0 +RMD160 (libkdegames-20.12.3.tar.xz) = e019b713c6114e961c545b8af451dfe78b85b673 +SHA512 (libkdegames-20.12.3.tar.xz) = a9b02c395b8e025f68b43f7bb5219cc3407ce6bbf9342c1542c53bf80881354f5410820f3f97dc496cdbc7dbbfd8c72e15b0fd07ea504235f40c9e3cd4123756 +Size (libkdegames-20.12.3.tar.xz) = 6389576 bytes diff --git a/games/libkmahjongg/Makefile b/games/libkmahjongg/Makefile index d0608cd5b3b..a018185b4e8 100644 --- a/games/libkmahjongg/Makefile +++ b/games/libkmahjongg/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2020/12/04 04:55:55 riastradh Exp $ +# $NetBSD: Makefile,v 1.43 2021/04/07 12:28:22 markd Exp $ DISTNAME= libkmahjongg-${KAPPSVER} -PKGREVISION= 3 CATEGORIES= games HOMEPAGE= https://www.kde.org/applications/games/ diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 62b5cd49ee1..bde694b7500 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (libkmahjongg-20.04.1.tar.xz) = e2a7064c33f603c73b79f40eb48afb1cdd1bec51 -RMD160 (libkmahjongg-20.04.1.tar.xz) = f2a195e7f9a95713512297e64c8b59b4fbaea682 -SHA512 (libkmahjongg-20.04.1.tar.xz) = e58e3f3c5d6040d9d770eb9619b34f93c18e2ba88adaf4640445a7188835321792f815e7e107303c581bac6bfb6f898ebafbea2a520eb513403e5813a7002d09 -Size (libkmahjongg-20.04.1.tar.xz) = 1684512 bytes +SHA1 (libkmahjongg-20.12.3.tar.xz) = ba4d87d816d4bb77377f8a69c1720368b90e4ff8 +RMD160 (libkmahjongg-20.12.3.tar.xz) = bfb817d7d30923974ce729a82d912bd919b9c4f2 +SHA512 (libkmahjongg-20.12.3.tar.xz) = c4e35ec5f60ab6c401ba278e69ff2d46ccf16fd6a5f88b1dd1fa4914c030c52c7a055e473a9fb14e87ce0ca9ba36d2229ff57fe985bb9fdff29285d43e98df0e +Size (libkmahjongg-20.12.3.tar.xz) = 1691308 bytes diff --git a/games/lskat/Makefile b/games/lskat/Makefile index a1dd9f5359c..8c6b5689238 100644 --- a/games/lskat/Makefile +++ b/games/lskat/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:25 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:22 markd Exp $ DISTNAME= lskat-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/lskat/ diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 0266aec3809..a5e7c290369 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:22 markd Exp $ -SHA1 (lskat-20.04.1.tar.xz) = 387b755a028dacfaa1d31497680b5f9682e62c06 -RMD160 (lskat-20.04.1.tar.xz) = a82449f197af9a6ddefc11495481dfc127dccbbc -SHA512 (lskat-20.04.1.tar.xz) = 30e150a91ae0eebc13b08e828154dc4c413431399ae6296a43052a5969de8b96b482534eab8b17e2da9e249cf17b849caba22ab60f929056883a7bc079d71edb -Size (lskat-20.04.1.tar.xz) = 1219992 bytes +SHA1 (lskat-20.12.3.tar.xz) = ce94e059c2e711015f3fc7624a6f8d2202c5bff4 +RMD160 (lskat-20.12.3.tar.xz) = 62bd0b071c4183197b5a1c380a9c6c24bc763349 +SHA512 (lskat-20.12.3.tar.xz) = 8e06137de8ad315cd0c885c382de0e7f85d76ace3d99a110e7d3f17e9a03011ebfe392c6236a9ca8523079d635421d4fc9fa1bcc0865807fad8a65b1d8093759 +Size (lskat-20.12.3.tar.xz) = 1225308 bytes diff --git a/games/palapeli/Makefile b/games/palapeli/Makefile index ef57b25411d..6b5c5b62498 100644 --- a/games/palapeli/Makefile +++ b/games/palapeli/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.46 2021/02/07 06:30:26 ryoon Exp $ +# $NetBSD: Makefile,v 1.47 2021/04/07 12:28:23 markd Exp $ DISTNAME= palapeli-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/palapeli/ diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 94322ae439e..9103a0309ca 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.11 2021/04/07 12:28:23 markd Exp $ -SHA1 (palapeli-20.04.1.tar.xz) = b4f92a4a0365723e30159644f74a1d42033ec070 -RMD160 (palapeli-20.04.1.tar.xz) = f483c3c2a748162f7313166f6d62be5163ebb55e -SHA512 (palapeli-20.04.1.tar.xz) = 4abccb62df6173d3e7221faa596fc098a1f0198b82a6c9b28b35b6e246409f0f33fec9b14bcce28f1f16751071be4047bf0f48ac0444855375cdca73e1ca4db9 -Size (palapeli-20.04.1.tar.xz) = 2071904 bytes +SHA1 (palapeli-20.12.3.tar.xz) = 47e20f3c8ac0958b4d51db76a60201a8264012e7 +RMD160 (palapeli-20.12.3.tar.xz) = 37bdde01f6ef017704587b840dbf2382a77d1478 +SHA512 (palapeli-20.12.3.tar.xz) = f26efc3e724afdaba0826495cb14f8aff913dc6a6922e6a4734bf4177f572ef286a5d5c2c0926e2804a3c7429b64b07ee8b48917272af0be018f023cd7ec6a02 +Size (palapeli-20.12.3.tar.xz) = 2078720 bytes diff --git a/games/picmi/Makefile b/games/picmi/Makefile index c5656f7925b..ea1e6c43730 100644 --- a/games/picmi/Makefile +++ b/games/picmi/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:26 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:23 markd Exp $ DISTNAME= picmi-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= games HOMEPAGE= https://kde.org/applications/games/picmi/ diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 73c6b0c7d83..44e46ac23d3 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:23 markd Exp $ -SHA1 (picmi-20.04.1.tar.xz) = b3eccc0411d1a4c390893ee6129e51e396530d7e -RMD160 (picmi-20.04.1.tar.xz) = abed4067fc336dcc6d7f08bf887180ca90a8390a -SHA512 (picmi-20.04.1.tar.xz) = 159a21429216e19f6c6db2d6c360a6146df1860f222234394fce0ae63af2cb85f0744d5b14a47640f69137b1c46b876b1bae67dfceb17ab95368a811d455cd90 -Size (picmi-20.04.1.tar.xz) = 1360824 bytes +SHA1 (picmi-20.12.3.tar.xz) = e888d00ec7ba6cc0d531abb0f533fadbf68f109b +RMD160 (picmi-20.12.3.tar.xz) = cbe2a10e2dafa24a7661f2a90106ace721448230 +SHA512 (picmi-20.12.3.tar.xz) = 46b269212a425a62fabe97d06f272bbc050ae7b288629ef4ad0597282a0fe8481016aeadd94e6b9971cd90317308032a6241d8f95bdb1c24a6b6601375aa64c8 +Size (picmi-20.12.3.tar.xz) = 1367556 bytes diff --git a/graphics/gwenview/Makefile b/graphics/gwenview/Makefile index 60fad425fdd..8099b575878 100644 --- a/graphics/gwenview/Makefile +++ b/graphics/gwenview/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.111 2021/02/07 06:30:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.112 2021/04/07 12:28:23 markd Exp $ DISTNAME= gwenview-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/org.kde.gwenview/ @@ -20,6 +19,7 @@ REPLACE_PERL= kconf_update/gwenview-imageview-alphabackgroundmode-update.pl .include "../../devel/cfitsio/buildlink3.mk" .include "../../devel/kitemmodels/buildlink3.mk" .include "../../devel/kparts/buildlink3.mk" +.include "../../devel/purpose/buildlink3.mk" .include "../../graphics/exiv2/buildlink3.mk" .include "../../graphics/libkdcraw/buildlink3.mk" .include "../../graphics/libkipi/buildlink3.mk" diff --git a/graphics/gwenview/PLIST b/graphics/gwenview/PLIST index 60d2b61c38b..36559975f63 100644 --- a/graphics/gwenview/PLIST +++ b/graphics/gwenview/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.23 2020/06/09 11:56:11 markd Exp $ +@comment $NetBSD: PLIST,v 1.24 2021/04/07 12:28:23 markd Exp $ bin/gwenview bin/gwenview_importer lib/libgwenviewlib.so.4.97.0 @@ -6,8 +6,6 @@ lib/libgwenviewlib.so.5 qt5/plugins/kf5/parts/gvpart.so share/applications/org.kde.gwenview.desktop share/doc/HTML/ca/gwenview/browse_mode.png -share/doc/HTML/ca/gwenview/fullscreen-browse.png -share/doc/HTML/ca/gwenview/fullscreen-view.png share/doc/HTML/ca/gwenview/index.cache.bz2 share/doc/HTML/ca/gwenview/index.docbook share/doc/HTML/ca/gwenview/modified-bar.png @@ -32,20 +30,29 @@ share/doc/HTML/es/gwenview/index.cache.bz2 share/doc/HTML/es/gwenview/index.docbook share/doc/HTML/id/gwenview/index.cache.bz2 share/doc/HTML/id/gwenview/index.docbook +share/doc/HTML/it/gwenview/browse_mode.png +share/doc/HTML/it/gwenview/fullscreen-browse.png +share/doc/HTML/it/gwenview/fullscreen-view.png +share/doc/HTML/it/gwenview/importer-picking-root-folder.png +share/doc/HTML/it/gwenview/importer.png share/doc/HTML/it/gwenview/index.cache.bz2 share/doc/HTML/it/gwenview/index.docbook +share/doc/HTML/it/gwenview/modified-bar.png +share/doc/HTML/it/gwenview/start-page.png +share/doc/HTML/it/gwenview/view_mode.png share/doc/HTML/nl/gwenview/index.cache.bz2 share/doc/HTML/nl/gwenview/index.docbook share/doc/HTML/pt/gwenview/index.cache.bz2 share/doc/HTML/pt/gwenview/index.docbook share/doc/HTML/pt_BR/gwenview/index.cache.bz2 share/doc/HTML/pt_BR/gwenview/index.docbook +share/doc/HTML/ru/gwenview/index.cache.bz2 +share/doc/HTML/ru/gwenview/index.docbook share/doc/HTML/sr/gwenview/index.cache.bz2 share/doc/HTML/sr/gwenview/index.docbook share/doc/HTML/sv/gwenview/index.cache.bz2 share/doc/HTML/sv/gwenview/index.docbook share/doc/HTML/uk/gwenview/browse_mode.png -share/doc/HTML/uk/gwenview/fullscreen_mode.png share/doc/HTML/uk/gwenview/importer-picking-root-folder.png share/doc/HTML/uk/gwenview/importer.png share/doc/HTML/uk/gwenview/index.cache.bz2 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 8b6ffc7fdfa..58ce3ff0624 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.33 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.34 2021/04/07 12:28:23 markd Exp $ -SHA1 (gwenview-20.04.1.tar.xz) = 50eb16f2a35850bda91273295e084231f2f015f0 -RMD160 (gwenview-20.04.1.tar.xz) = 8470df4a4a3d2ce9ef78f1aeb774db353b3f35b0 -SHA512 (gwenview-20.04.1.tar.xz) = 4bc915d12858ac4aeaf4890b027282d0c86350103defb8ee7dcad8678a10cf27067feee75eb9280fa0c33d73954fa0916506f7872a79ce9b7a26eee648d8dc39 -Size (gwenview-20.04.1.tar.xz) = 5741100 bytes +SHA1 (gwenview-20.12.3.tar.xz) = a457d05b780d6c9034ae20e2b47e2d504f3b3569 +RMD160 (gwenview-20.12.3.tar.xz) = ec9cf937ef5e465e06759bb55a9cba4cdd77c4ae +SHA512 (gwenview-20.12.3.tar.xz) = 4a2973029d7bb2e8883cebb8b031fa60068b3a258eceb165a8ba2dcfe52d63fa3c505772a895d72aae93bf88b024fbbb2189e9f1b982ecd94a3629f67d15eb2b +Size (gwenview-20.12.3.tar.xz) = 6753636 bytes diff --git a/graphics/kamera/Makefile b/graphics/kamera/Makefile index 92be77b1f5b..f22aaac767e 100644 --- a/graphics/kamera/Makefile +++ b/graphics/kamera/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:23 markd Exp $ DISTNAME= kamera-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/kamera/ diff --git a/graphics/kamera/PLIST b/graphics/kamera/PLIST index 4f48e1f9f1e..7572bd50318 100644 --- a/graphics/kamera/PLIST +++ b/graphics/kamera/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:11 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:23 markd Exp $ qt5/plugins/kcm_kamera.so qt5/plugins/kio_kamera.so share/doc/HTML/ca/kcontrol/kamera/index.cache.bz2 @@ -102,11 +102,13 @@ share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo +share/locale/ro/LC_MESSAGES/kio5_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo +share/locale/sl/LC_MESSAGES/kio5_kamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 6b98eb71ace..9c2bbd2d2a1 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:23 markd Exp $ -SHA1 (kamera-20.04.1.tar.xz) = 4a0b1542301b352f8743151b5181b4d123caa4ca -RMD160 (kamera-20.04.1.tar.xz) = 23ede24d44c023aeb18d54565d157dfb65066e08 -SHA512 (kamera-20.04.1.tar.xz) = f37d3c5ab786b6883cd97bbce9b877f6367fee308f90a2ae220b2703b76943dcb7b37817cf89a1cec86009cc5df299e8156c06319661069d9b07184b4e3fc49d -Size (kamera-20.04.1.tar.xz) = 103728 bytes +SHA1 (kamera-20.12.3.tar.xz) = 7d1622190c28c56556b7c4b15e5fbc9711337565 +RMD160 (kamera-20.12.3.tar.xz) = 183601904563fd8fec78d916d0a9139eba0d98cf +SHA512 (kamera-20.12.3.tar.xz) = 7abe0ae6e85e270084e608b85fa5982c3b67ebf16a81b9ed3e9690dbf860abbbc8ca1feb885e3cd7dd93faa91622757c16848a26baa4f68f128cc119fe91bd2c +Size (kamera-20.12.3.tar.xz) = 108696 bytes diff --git a/graphics/kcolorchooser/Makefile b/graphics/kcolorchooser/Makefile index 6f84a7cb986..d0484a636fa 100644 --- a/graphics/kcolorchooser/Makefile +++ b/graphics/kcolorchooser/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:23 markd Exp $ DISTNAME= kcolorchooser-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/kcolorchooser/ diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 70227310434..53c8c7be522 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/06/09 11:56:11 markd Exp $ +$NetBSD: distinfo,v 1.15 2021/04/07 12:28:23 markd Exp $ -SHA1 (kcolorchooser-20.04.1.tar.xz) = 8f882b6eda375a60eda3e7bd25a88a477da269ab -RMD160 (kcolorchooser-20.04.1.tar.xz) = 1cc44cb867e90068cbf2e1c6fc7599b716509b80 -SHA512 (kcolorchooser-20.04.1.tar.xz) = a48af27b981107f917ec519f242e555aef387f0d9ae111ef8b87ac014cffc35735d8676f0f3cf008098703c6a98615827a7fe9fa7d2d1674722f201685741d53 -Size (kcolorchooser-20.04.1.tar.xz) = 21780 bytes +SHA1 (kcolorchooser-20.12.3.tar.xz) = bc0a1bc17990509431bf1b0743c7d28bf0019599 +RMD160 (kcolorchooser-20.12.3.tar.xz) = 0a95fd6f74fde238dffa6b460f448c65573810e1 +SHA512 (kcolorchooser-20.12.3.tar.xz) = 0447b447ef7eab1bfa4a13d1e2767e636602180703c994cbfefe490fb7b18478e4d80ab86e52b88f67ab8bc4a327e3855fadf60f56af0816713703cce4b078fb +Size (kcolorchooser-20.12.3.tar.xz) = 27660 bytes diff --git a/graphics/kdegraphics-mobipocket/Makefile b/graphics/kdegraphics-mobipocket/Makefile index ffece55ba6d..8a32ee02c1a 100644 --- a/graphics/kdegraphics-mobipocket/Makefile +++ b/graphics/kdegraphics-mobipocket/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.59 2021/04/07 12:28:23 markd Exp $ DISTNAME= kdegraphics-mobipocket-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 5f71aeabdcd..b64fb06bdd5 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:23 markd Exp $ -SHA1 (kdegraphics-mobipocket-20.04.1.tar.xz) = 05dde6c9faf799763a1ccc82574db7edec65829d -RMD160 (kdegraphics-mobipocket-20.04.1.tar.xz) = 8758c20dafd8af6d4149c49afb0cfbb2f76119b2 -SHA512 (kdegraphics-mobipocket-20.04.1.tar.xz) = 3aa3b87d4498a1fecd756674f0a916b95765339b0f60cde4c02fa59b6472fdccd2c2bd53ddcfc9f9f54fc60172455ae267f7120b860ca1b47ae153ec100624bd -Size (kdegraphics-mobipocket-20.04.1.tar.xz) = 16456 bytes +SHA1 (kdegraphics-mobipocket-20.12.3.tar.xz) = e72138bdb8e879dccb504a3a0dcc77e8a3b699d6 +RMD160 (kdegraphics-mobipocket-20.12.3.tar.xz) = b786a5fb44d36ce8ec81ea4485e5025c17fa7983 +SHA512 (kdegraphics-mobipocket-20.12.3.tar.xz) = 53367ccebe087186a30959852daaa0168f0e4c65f11ec9e074dd2f52c37569258b304a3ee5159770d5d2571d5aea98be6e113d9112ed249d5c948f2f00d92e8d +Size (kdegraphics-mobipocket-20.12.3.tar.xz) = 17056 bytes diff --git a/graphics/kdegraphics-thumbnailers/Makefile b/graphics/kdegraphics-thumbnailers/Makefile index 619dc7c17b2..d48c02241ff 100644 --- a/graphics/kdegraphics-thumbnailers/Makefile +++ b/graphics/kdegraphics-thumbnailers/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:23 markd Exp $ DISTNAME= kdegraphics-thumbnailers-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 158e902fbeb..e1560f4b48f 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:23 markd Exp $ -SHA1 (kdegraphics-thumbnailers-20.04.1.tar.xz) = 6ba2c252513c637a3b724c635740bf8e6a838a92 -RMD160 (kdegraphics-thumbnailers-20.04.1.tar.xz) = 737f995772420d1a22cf16252e83a81b9a9545aa -SHA512 (kdegraphics-thumbnailers-20.04.1.tar.xz) = cba5ecac31b561931a77ccc63e274e4b03b4a2b6cc71d2a149fda378ab7f394291c624af89ae71e56e9bac6483af88589f6ba5d420e8e453d19fe394961652d6 -Size (kdegraphics-thumbnailers-20.04.1.tar.xz) = 46480 bytes +SHA1 (kdegraphics-thumbnailers-20.12.3.tar.xz) = 20ecf4ad6c350098bc9e149a1552e6aac35ea4b8 +RMD160 (kdegraphics-thumbnailers-20.12.3.tar.xz) = 5599a8e6ca01bff95b4ed1253f28dfc9c3b828bc +SHA512 (kdegraphics-thumbnailers-20.12.3.tar.xz) = f6f31b3ff14f81a9b7d8e25ba7be4c6def72815cf113c0f6d78b5f9568f5fc31d707950d10ec314406bf92ab94284492277046d0d476a8a94542b76b6b0f927a +Size (kdegraphics-thumbnailers-20.12.3.tar.xz) = 47048 bytes diff --git a/graphics/kipi-plugins/Makefile b/graphics/kipi-plugins/Makefile index 2ea29721a01..676ab291a40 100644 --- a/graphics/kipi-plugins/Makefile +++ b/graphics/kipi-plugins/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.145 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.146 2021/04/07 12:28:24 markd Exp $ DISTNAME= kipi-plugins-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://userbase.kde.org/KIPI/ diff --git a/graphics/kipi-plugins/PLIST b/graphics/kipi-plugins/PLIST index f6ae2e58cb5..24f6127b61c 100644 --- a/graphics/kipi-plugins/PLIST +++ b/graphics/kipi-plugins/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.28 2020/06/09 11:56:12 markd Exp $ +@comment $NetBSD: PLIST,v 1.29 2021/04/07 12:28:24 markd Exp $ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 qt5/plugins/kipiplugin_dropbox.so @@ -241,6 +241,7 @@ share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/da/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo @@ -852,6 +853,7 @@ share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/sl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index f24a50c4b5c..170bbaa0bfa 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.38 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.39 2021/04/07 12:28:24 markd Exp $ -SHA1 (kipi-plugins-20.04.1.tar.xz) = 294c9e21ddbc373f791ac94d68b512765d6082b6 -RMD160 (kipi-plugins-20.04.1.tar.xz) = a9304676c10aa20a2e9e28a00be2fc13cad66f71 -SHA512 (kipi-plugins-20.04.1.tar.xz) = 7afeeef2fc6b3d75e9c3208345eb97c8be53e018d005265de594b8575afeb2820df55e23706abdaf3f29052d8f6301b3b89826dd42f1a20243d200e79d3e0d8c -Size (kipi-plugins-20.04.1.tar.xz) = 1642932 bytes +SHA1 (kipi-plugins-20.12.3.tar.xz) = 74242523dd3c61509f760558775f563eda3bd27b +RMD160 (kipi-plugins-20.12.3.tar.xz) = 097bdefc9273554767ef2adcb225ec6830d77c6d +SHA512 (kipi-plugins-20.12.3.tar.xz) = 8e5cf2ea81facc7ab5eed509be71b0dc57e93ce06237c805211493e345805f82b3aa3f8994d0def3b81dec97261409acb9bc51616b85eebf10a98c43369b4992 +Size (kipi-plugins-20.12.3.tar.xz) = 1644852 bytes diff --git a/graphics/kolourpaint/Makefile b/graphics/kolourpaint/Makefile index 2204a5a6642..aa286eee976 100644 --- a/graphics/kolourpaint/Makefile +++ b/graphics/kolourpaint/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:27 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:24 markd Exp $ DISTNAME= kolourpaint-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/kolourpaint/ diff --git a/graphics/kolourpaint/PLIST b/graphics/kolourpaint/PLIST index 602cec56e18..ed97d0d39c0 100644 --- a/graphics/kolourpaint/PLIST +++ b/graphics/kolourpaint/PLIST @@ -1,16 +1,9 @@ -@comment $NetBSD: PLIST,v 1.6 2020/06/09 11:56:12 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:24 markd Exp $ bin/kolourpaint lib/libkolourpaint_lgpl.so lib/libkolourpaint_lgpl.so.5 share/applications/org.kde.kolourpaint.desktop share/doc/HTML/ca/kolourpaint/KolourPaint.png -share/doc/HTML/ca/kolourpaint/brush_shapes.png -share/doc/HTML/ca/kolourpaint/color_box.png -share/doc/HTML/ca/kolourpaint/eraser_shapes.png -share/doc/HTML/ca/kolourpaint/fcc_std_text.png -share/doc/HTML/ca/kolourpaint/fcc_trans_text.png -share/doc/HTML/ca/kolourpaint/fill_color_similarity.png -share/doc/HTML/ca/kolourpaint/fill_style.png share/doc/HTML/ca/kolourpaint/image_balance.png share/doc/HTML/ca/kolourpaint/image_emboss.png share/doc/HTML/ca/kolourpaint/image_flatten.png @@ -22,36 +15,6 @@ share/doc/HTML/ca/kolourpaint/image_skew.png share/doc/HTML/ca/kolourpaint/image_soften_sharpen.png share/doc/HTML/ca/kolourpaint/index.cache.bz2 share/doc/HTML/ca/kolourpaint/index.docbook -share/doc/HTML/ca/kolourpaint/line_width.png -share/doc/HTML/ca/kolourpaint/lines_30_45_deg.png -share/doc/HTML/ca/kolourpaint/lines_30_deg.png -share/doc/HTML/ca/kolourpaint/lines_45_deg.png -share/doc/HTML/ca/kolourpaint/rotate_image_30.png -share/doc/HTML/ca/kolourpaint/rotate_selection_30.png -share/doc/HTML/ca/kolourpaint/selections_opaque_transparent.png -share/doc/HTML/ca/kolourpaint/spraycan_patterns.png -share/doc/HTML/ca/kolourpaint/text_zoom_grid.png -share/doc/HTML/ca/kolourpaint/tool_brush.png -share/doc/HTML/ca/kolourpaint/tool_color_picker.png -share/doc/HTML/ca/kolourpaint/tool_color_washer.png -share/doc/HTML/ca/kolourpaint/tool_curve.png -share/doc/HTML/ca/kolourpaint/tool_ellipse.png -share/doc/HTML/ca/kolourpaint/tool_elliptical_selection.png -share/doc/HTML/ca/kolourpaint/tool_eraser.png -share/doc/HTML/ca/kolourpaint/tool_flood_fill.png -share/doc/HTML/ca/kolourpaint/tool_free_form_selection.png -share/doc/HTML/ca/kolourpaint/tool_line.png -share/doc/HTML/ca/kolourpaint/tool_pen.png -share/doc/HTML/ca/kolourpaint/tool_polygon.png -share/doc/HTML/ca/kolourpaint/tool_polyline.png -share/doc/HTML/ca/kolourpaint/tool_polystar.png -share/doc/HTML/ca/kolourpaint/tool_rect_selection.png -share/doc/HTML/ca/kolourpaint/tool_rectangle.png -share/doc/HTML/ca/kolourpaint/tool_rectangles.png -share/doc/HTML/ca/kolourpaint/tool_rounded_rectangle.png -share/doc/HTML/ca/kolourpaint/tool_selections.png -share/doc/HTML/ca/kolourpaint/tool_spraycan.png -share/doc/HTML/ca/kolourpaint/tool_text.png share/doc/HTML/de/kolourpaint/KolourPaint.png share/doc/HTML/de/kolourpaint/image_balance.png share/doc/HTML/de/kolourpaint/image_emboss.png @@ -282,6 +245,7 @@ share/doc/HTML/uk/kolourpaint/image_soften_sharpen.png share/doc/HTML/uk/kolourpaint/index.cache.bz2 share/doc/HTML/uk/kolourpaint/index.docbook share/doc/HTML/uk/kolourpaint/screenshot_acquiring.png +share/icons/hicolor/128x128/apps/kolourpaint.png share/icons/hicolor/16x16/apps/kolourpaint.png share/icons/hicolor/22x22/apps/kolourpaint.png share/icons/hicolor/32x32/apps/kolourpaint.png diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index ea802fefa36..6caa7a9da3a 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:24 markd Exp $ -SHA1 (kolourpaint-20.04.1.tar.xz) = 15ff683ee44daacc971febd70c1345dc9150e26d -RMD160 (kolourpaint-20.04.1.tar.xz) = 32d670fb69d670028682196e5b30ef1e25b103f4 -SHA512 (kolourpaint-20.04.1.tar.xz) = 891a0d28273c289c9ffa7a2efdb7c390c7dcee0de77df500f6e3660d9a868c2132957c1fc1dfbb524086fba4326800a624e3d5e657c09c0fd6aadcf29b11d9a6 -Size (kolourpaint-20.04.1.tar.xz) = 5652164 bytes +SHA1 (kolourpaint-20.12.3.tar.xz) = 0be0cbc1c9bd538fd704407407a0a3268893ea7b +RMD160 (kolourpaint-20.12.3.tar.xz) = ffd04996847c40ff34b84748782b262564c1c0ef +SHA512 (kolourpaint-20.12.3.tar.xz) = 03a2312932fbbb0a22bc2291b12af639c4cf2895068d25efed4f2307fcc124ce6d22f5580eb3ddcb4501c18dbfbf4c88572cce106c9795196afc117099157fc5 +Size (kolourpaint-20.12.3.tar.xz) = 5686472 bytes diff --git a/graphics/kqtquickcharts/Makefile b/graphics/kqtquickcharts/Makefile index 2b63fec979f..dcc1f214d1b 100644 --- a/graphics/kqtquickcharts/Makefile +++ b/graphics/kqtquickcharts/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2020/11/05 09:08:24 ryoon Exp $ +# $NetBSD: Makefile,v 1.11 2021/04/07 12:28:24 markd Exp $ DISTNAME= kqtquickcharts-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= graphics HOMEPAGE= https://edu.kde.org/ diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 3aeee9e3681..850a16dffb0 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:24 markd Exp $ -SHA1 (kqtquickcharts-20.04.1.tar.xz) = 5deafc45f5275cd6da2aea0727bb08899e064b60 -RMD160 (kqtquickcharts-20.04.1.tar.xz) = 4894951103f7abbbd50e50194495fc6354f2ff82 -SHA512 (kqtquickcharts-20.04.1.tar.xz) = c121150c3e3fdf2fca20309f1c49028134c68a6a04ef5b0b73fe59260872db46992dc7096c460faccbfceed9ba4ea3f69574752906286428acec740cda46333f -Size (kqtquickcharts-20.04.1.tar.xz) = 25636 bytes +SHA1 (kqtquickcharts-20.12.3.tar.xz) = c9da6e304e6967e5efa087a02a8abab8ebd73d8a +RMD160 (kqtquickcharts-20.12.3.tar.xz) = e9e460914bc1037dd8291068b13ead3f5b008267 +SHA512 (kqtquickcharts-20.12.3.tar.xz) = e3b02ac20b20c9c2d85f3006efb654af42154baf2d215373296bac1377aee889350cdcc2c6d0642d419285433352923fc280e72d6375127d3646d681ae3276cf +Size (kqtquickcharts-20.12.3.tar.xz) = 30080 bytes diff --git a/graphics/kruler/Makefile b/graphics/kruler/Makefile index ef21f556869..6d382deb205 100644 --- a/graphics/kruler/Makefile +++ b/graphics/kruler/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:24 markd Exp $ DISTNAME= kruler-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/kruler/ diff --git a/graphics/kruler/PLIST b/graphics/kruler/PLIST index 4f9181b9d4b..02f234d8137 100644 --- a/graphics/kruler/PLIST +++ b/graphics/kruler/PLIST @@ -1,10 +1,9 @@ -@comment $NetBSD: PLIST,v 1.3 2020/02/02 02:50:42 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:24 markd Exp $ bin/kruler share/applications/org.kde.kruler.desktop share/doc/HTML/ca/kruler/index.cache.bz2 share/doc/HTML/ca/kruler/index.docbook share/doc/HTML/ca/kruler/kruler-settings.png -share/doc/HTML/ca/kruler/kruler.png share/doc/HTML/de/kruler/index.cache.bz2 share/doc/HTML/de/kruler/index.docbook share/doc/HTML/en/kruler/index.cache.bz2 @@ -13,10 +12,13 @@ share/doc/HTML/en/kruler/kruler-settings.png share/doc/HTML/en/kruler/kruler.png share/doc/HTML/es/kruler/index.cache.bz2 share/doc/HTML/es/kruler/index.docbook +share/doc/HTML/fr/kruler/index.cache.bz2 +share/doc/HTML/fr/kruler/index.docbook share/doc/HTML/id/kruler/index.cache.bz2 share/doc/HTML/id/kruler/index.docbook share/doc/HTML/it/kruler/index.cache.bz2 share/doc/HTML/it/kruler/index.docbook +share/doc/HTML/it/kruler/kruler-settings.png share/doc/HTML/nl/kruler/index.cache.bz2 share/doc/HTML/nl/kruler/index.docbook share/doc/HTML/pt/kruler/index.cache.bz2 diff --git a/graphics/kruler/distinfo b/graphics/kruler/distinfo index 94907637fa8..ca8eaeaf0c4 100644 --- a/graphics/kruler/distinfo +++ b/graphics/kruler/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:24 markd Exp $ -SHA1 (kruler-20.04.1.tar.xz) = ff423231e52b5d04007ec07feb559d1112cb5af3 -RMD160 (kruler-20.04.1.tar.xz) = f7ebe59985b98603c399665b9ae79440b966476a -SHA512 (kruler-20.04.1.tar.xz) = b2ee3e869a38729cedee86dafec1e0eb860a7fde1aae6ba9bf6625626a23cf2a5f384c3ff4279231bd560315657dbff41c01d4c6ef89dcaa39063714063d93d6 -Size (kruler-20.04.1.tar.xz) = 250488 bytes +SHA1 (kruler-20.12.3.tar.xz) = 1fec432d5ec8d61b343ce8fa7667bb69aad4fd8f +RMD160 (kruler-20.12.3.tar.xz) = 95e760c595200766ec30fca472315699df1576c0 +SHA512 (kruler-20.12.3.tar.xz) = 2facf88204295321235b65975a1147b1e8e1d1f1ab9219bea635807bd9e6d3d060adc5a0e44d074132aea4a39cd0aeb4647b4f19692950484bd2b3516ca57b01 +Size (kruler-20.12.3.tar.xz) = 272396 bytes diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index 0f78799a8e2..d3d92d53d6b 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.78 2020/11/05 09:06:55 ryoon Exp $ +# $NetBSD: Makefile,v 1.79 2021/04/07 12:28:24 markd Exp $ DISTNAME= libkdcraw-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index dcab79628d8..9808b36dd2f 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.25 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.26 2021/04/07 12:28:24 markd Exp $ -SHA1 (libkdcraw-20.04.1.tar.xz) = af92d8f3720f1c0997825642d1af43d4d733fa0b -RMD160 (libkdcraw-20.04.1.tar.xz) = bdc816da99c25794c764dc8dc0c03b80a1801d0a -SHA512 (libkdcraw-20.04.1.tar.xz) = e0d52ef13ece5d45c64efc7e9fb0fb2f661fa21eb9c0e8e93f032276b4ad9cb75d99f808d30f09d0bb0000a1c02056be717e77359ac34b8ae9bdc6c8939e80cb -Size (libkdcraw-20.04.1.tar.xz) = 41944 bytes +SHA1 (libkdcraw-20.12.3.tar.xz) = 3dd2e4f7e908d2a227bff36d6483c931b466bc0d +RMD160 (libkdcraw-20.12.3.tar.xz) = 736c899da44d22f4d11e406ee4b33a5443bd8605 +SHA512 (libkdcraw-20.12.3.tar.xz) = a1b89a1c4732958c4432830e5b0ff10cf447c702740d43d70a0530e04d5ca8efc3638a41dc74d7280357af867a0443e35c0ab758e1ed6fee22695aa4551ea039 +Size (libkdcraw-20.12.3.tar.xz) = 41956 bytes diff --git a/graphics/libkexiv2/Makefile b/graphics/libkexiv2/Makefile index d781d031fc1..da0f440d9fb 100644 --- a/graphics/libkexiv2/Makefile +++ b/graphics/libkexiv2/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.84 2020/11/05 09:06:55 ryoon Exp $ +# $NetBSD: Makefile,v 1.85 2021/04/07 12:28:24 markd Exp $ DISTNAME= libkexiv2-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/libkexiv2/PLIST b/graphics/libkexiv2/PLIST index ef95baf3152..b81a7b6e7c0 100644 --- a/graphics/libkexiv2/PLIST +++ b/graphics/libkexiv2/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2019/11/17 02:36:54 markd Exp $ +@comment $NetBSD: PLIST,v 1.9 2021/04/07 12:28:24 markd Exp $ include/KF5/KExiv2/KExiv2/KExiv2 include/KF5/KExiv2/KExiv2/KExiv2Data include/KF5/KExiv2/KExiv2/KExiv2Previews @@ -16,3 +16,4 @@ lib/cmake/KF5KExiv2/KF5KExiv2Targets.cmake lib/libKF5KExiv2.so lib/libKF5KExiv2.so.15.0.0 lib/libKF5KExiv2.so.5.0.0 +share/qlogging-categories5/libkexiv2.categories diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 9901055b0bf..7f48dbb4788 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.23 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.24 2021/04/07 12:28:24 markd Exp $ -SHA1 (libkexiv2-20.04.1.tar.xz) = 2597bec47879b3598433de2b1e1ecedaea442d61 -RMD160 (libkexiv2-20.04.1.tar.xz) = 67e6c1211311b14a5bae0c89b0ca6cfb1841d460 -SHA512 (libkexiv2-20.04.1.tar.xz) = 22485c4e27922cded0162a4a58c2e55c4d096554bcb02601364a51ea491c41424b2a9bda171ac5cde30940d06a6c1e472948655fe06f35fd9748d66ddf1e35ac -Size (libkexiv2-20.04.1.tar.xz) = 64544 bytes +SHA1 (libkexiv2-20.12.3.tar.xz) = 7bd7da7b933f8c8e3efa79e7d39e4773628cf894 +RMD160 (libkexiv2-20.12.3.tar.xz) = 3688f0faaed36afbd27b5c5379015eaa2d73b997 +SHA512 (libkexiv2-20.12.3.tar.xz) = 35fc12b5f1dbe8aa533370627529eb46aec05085c71cd5dc2858fa9b52413afd5d706c099ec2e74e7827bd7f5fdfda323e1475b599ab67fe78a4a5831240e217 +Size (libkexiv2-20.12.3.tar.xz) = 64724 bytes diff --git a/graphics/libkipi/Makefile b/graphics/libkipi/Makefile index c9435fefafe..12c7f4d3dab 100644 --- a/graphics/libkipi/Makefile +++ b/graphics/libkipi/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.96 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.97 2021/04/07 12:28:24 markd Exp $ DISTNAME= libkipi-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 3c5705938df..ded2c3922cf 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.21 2020/06/09 11:56:12 markd Exp $ +$NetBSD: distinfo,v 1.22 2021/04/07 12:28:24 markd Exp $ -SHA1 (libkipi-20.04.1.tar.xz) = f6a40e5054d434578aaf632d98560b6f2f78989a -RMD160 (libkipi-20.04.1.tar.xz) = 1008686590407ba782160885c5d2dd963e268795 -SHA512 (libkipi-20.04.1.tar.xz) = a7e6128f56f051f4daf01fa6b6faf0aa75d0ce8b0197a9800bf12c53d7d62e97cded0eb134e459b81162c3ed70cb9d7a6c15a0d5019ad72dc797187fdefff1cf -Size (libkipi-20.04.1.tar.xz) = 103580 bytes +SHA1 (libkipi-20.12.3.tar.xz) = 02a8cc828e995f7885ded83534d634ba973a0023 +RMD160 (libkipi-20.12.3.tar.xz) = 960eacfa3ce1c801a3a17f2c9107dd4e5aa56de7 +SHA512 (libkipi-20.12.3.tar.xz) = fde2b5026423b39a55e182a85ac0f1c8ab187ee24a68bd5840f1acb9ce16cb6b8fd633572f017b2f8416db598679f0b2022338a91c3a027f918fd59928f55368 +Size (libkipi-20.12.3.tar.xz) = 103628 bytes diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index a6fb04720e8..d5c6fbf9443 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.59 2021/04/07 12:28:25 markd Exp $ DISTNAME= libksane-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 2e90972a130..3e1343817b4 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:25 markd Exp $ -SHA1 (libksane-20.04.1.tar.xz) = 03f092c18ccc6d866b15c1e5442ae9786d14a91c -RMD160 (libksane-20.04.1.tar.xz) = 01364be0572fe0a7df996fb864689ec81094b19a -SHA512 (libksane-20.04.1.tar.xz) = b40a7ffd107e6f07b00ab98240f065f12b0dc8b557c94f09203eef6979ac4fc3e17d0f98ca7653a9740e44676a87793a68c4564941265666957103313cd6773b -Size (libksane-20.04.1.tar.xz) = 143612 bytes +SHA1 (libksane-20.12.3.tar.xz) = ba6eddb5e07c13ba6c189ed3964524398de7c93d +RMD160 (libksane-20.12.3.tar.xz) = 238bbfe0b462e4d813aca34f28cef16724214a28 +SHA512 (libksane-20.12.3.tar.xz) = c0fa893cd8e18bfb9c9372b43378a4cf384984359f92c5a433e0ab78c56c17a7a68927e0492155ed376e82e52127ee8cf077bb36a7feb5473aefbeb2dc62f9f0 +Size (libksane-20.12.3.tar.xz) = 145464 bytes diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index fb95d360c62..97ec1b47fc9 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:25 markd Exp $ DISTNAME= spectacle-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/kruler/ COMMENT= KDE screenshot capture utility LICENSE= gnu-gpl-v2 AND gnu-fdl-v1.2 AND gnu-lgpl-v2 +KAPPSVER= 20.12.3 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools @@ -16,6 +16,7 @@ USE_TOOLS+= msgmerge pkg-config .include "../../devel/kdeclarative/buildlink3.mk" .include "../../devel/kwayland/buildlink3.mk" +.include "../../devel/purpose/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../graphics/libkipi/buildlink3.mk" .include "../../net/knewstuff/buildlink3.mk" diff --git a/graphics/spectacle/PLIST b/graphics/spectacle/PLIST index 060231acdb7..4ab878d935f 100644 --- a/graphics/spectacle/PLIST +++ b/graphics/spectacle/PLIST @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.2 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:25 markd Exp $ bin/spectacle lib/kconf_update_bin/spectacle-migrate-shortcuts +lib/systemd/user/app-org.kde.spectacle.service share/applications/org.kde.spectacle.desktop share/dbus-1/interfaces/org.kde.Spectacle.xml share/dbus-1/services/org.kde.Spectacle.service @@ -18,6 +19,9 @@ share/doc/HTML/en/spectacle/index.cache.bz2 share/doc/HTML/en/spectacle/index.docbook share/doc/HTML/es/spectacle/index.cache.bz2 share/doc/HTML/es/spectacle/index.docbook +share/doc/HTML/it/spectacle/ApplicationPreferences.png +share/doc/HTML/it/spectacle/MainWindow.png +share/doc/HTML/it/spectacle/SaveOptions.png share/doc/HTML/it/spectacle/index.cache.bz2 share/doc/HTML/it/spectacle/index.docbook share/doc/HTML/nl/spectacle/index.cache.bz2 @@ -26,6 +30,8 @@ share/doc/HTML/pt/spectacle/index.cache.bz2 share/doc/HTML/pt/spectacle/index.docbook share/doc/HTML/pt_BR/spectacle/index.cache.bz2 share/doc/HTML/pt_BR/spectacle/index.docbook +share/doc/HTML/ru/spectacle/index.cache.bz2 +share/doc/HTML/ru/spectacle/index.docbook share/doc/HTML/sv/spectacle/index.cache.bz2 share/doc/HTML/sv/spectacle/index.docbook share/doc/HTML/uk/spectacle/ApplicationPreferences.png @@ -71,6 +77,7 @@ share/locale/nn/LC_MESSAGES/spectacle.mo share/locale/pl/LC_MESSAGES/spectacle.mo share/locale/pt/LC_MESSAGES/spectacle.mo share/locale/pt_BR/LC_MESSAGES/spectacle.mo +share/locale/ro/LC_MESSAGES/spectacle.mo share/locale/ru/LC_MESSAGES/spectacle.mo share/locale/sk/LC_MESSAGES/spectacle.mo share/locale/sl/LC_MESSAGES/spectacle.mo diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 2f489f60640..d82d2d94fa1 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:25 markd Exp $ -SHA1 (spectacle-20.04.1.tar.xz) = 56ec88803f44f412b6f89dbbd5917c93d63d6d4d -RMD160 (spectacle-20.04.1.tar.xz) = e25568f949452baa39432db2bab87e6aec55dec7 -SHA512 (spectacle-20.04.1.tar.xz) = 72e3dbb4aed66beffc0f969d5f4a3f09584be0326a37e4da7caf2272cf2bb6a7b09237edf80c42462e476cacb9a34014a1a68e02d430638eee80974720975a00 -Size (spectacle-20.04.1.tar.xz) = 661788 bytes +SHA1 (spectacle-20.12.3.tar.xz) = 1907569462b3944db467af397868ea9168868c85 +RMD160 (spectacle-20.12.3.tar.xz) = b64e0243efa459bd0e830ca9b7405fb5295951e8 +SHA512 (spectacle-20.12.3.tar.xz) = 4749916ff1557d89c3a8aeae06ce2da4e3f5bbbc3495a588209d797453b265447a857266889a81178f33b12631f6ec29be7a65a3f98f27de604c198e997795dc +Size (spectacle-20.12.3.tar.xz) = 1170540 bytes diff --git a/graphics/svgpart/Makefile b/graphics/svgpart/Makefile index c3ec5b1bc65..1603e82dd91 100644 --- a/graphics/svgpart/Makefile +++ b/graphics/svgpart/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:25 markd Exp $ DISTNAME= svgpart-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= graphics HOMEPAGE= https://kde.org/applications/graphics/ diff --git a/graphics/svgpart/PLIST b/graphics/svgpart/PLIST index 23fbed8e6ef..70787a4b5a6 100644 --- a/graphics/svgpart/PLIST +++ b/graphics/svgpart/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/11/17 03:38:59 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:25 markd Exp $ qt5/plugins/kf5/parts/svgpart.so share/kservices5/svgpart.desktop share/locale/ar/LC_MESSAGES/svgpart.mo @@ -19,6 +19,7 @@ share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo +share/locale/hi/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo @@ -51,3 +52,4 @@ share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo +share/metainfo/org.kde.svgpart.metainfo.xml diff --git a/graphics/svgpart/distinfo b/graphics/svgpart/distinfo index 69273ec9c81..0d19868bc65 100644 --- a/graphics/svgpart/distinfo +++ b/graphics/svgpart/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:25 markd Exp $ -SHA1 (svgpart-20.04.1.tar.xz) = ceb10b4816784d1eb8173c3245eb323eee5844bb -RMD160 (svgpart-20.04.1.tar.xz) = c74b97e0065a35a1a012c41262a1e220fe503a07 -SHA512 (svgpart-20.04.1.tar.xz) = 74bcc7234601feb2ee3d65a6410461ee20ac4f46b47378de53d098e92ddfa5335f1c9d931a944415e452fd8a5e85d0eaaacf7986bb181bf303e58c369c9e8aa4 -Size (svgpart-20.04.1.tar.xz) = 21140 bytes +SHA1 (svgpart-20.12.3.tar.xz) = 1c781c1b34a614141aca6efd4ae0fa5338361ee2 +RMD160 (svgpart-20.12.3.tar.xz) = 20239eff36a2fd2193003c5c58216811a2cbed26 +SHA512 (svgpart-20.12.3.tar.xz) = 4c7dfc802a4a24d376d18c749743f1e8e248dd26f7794dc482952a9fc969c7c547ddb5462ec5dfdba9229e1f56f4c0886417b3422819beb9ae911ab75d4a4558 +Size (svgpart-20.12.3.tar.xz) = 23348 bytes diff --git a/mail/kimap/Makefile b/mail/kimap/Makefile index a60c9c3f3ee..ce6cc9849ba 100644 --- a/mail/kimap/Makefile +++ b/mail/kimap/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:25 markd Exp $ DISTNAME= kimap-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= mail HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/mail/kimap/PLIST b/mail/kimap/PLIST index 7f98c219f12..057c168ef02 100644 --- a/mail/kimap/PLIST +++ b/mail/kimap/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:25 markd Exp $ include/KF5/KIMAP/KIMAP/Acl include/KF5/KIMAP/KIMAP/AclJobBase include/KF5/KIMAP/KIMAP/AppendJob @@ -8,6 +8,7 @@ include/KF5/KIMAP/KIMAP/CopyJob include/KF5/KIMAP/KIMAP/CreateJob include/KF5/KIMAP/KIMAP/DeleteAclJob include/KF5/KIMAP/KIMAP/DeleteJob +include/KF5/KIMAP/KIMAP/EnableJob include/KF5/KIMAP/KIMAP/ExpungeJob include/KF5/KIMAP/KIMAP/FetchJob include/KF5/KIMAP/KIMAP/GetAclJob @@ -49,6 +50,7 @@ include/KF5/KIMAP/kimap/CopyJob include/KF5/KIMAP/kimap/CreateJob include/KF5/KIMAP/kimap/DeleteAclJob include/KF5/KIMAP/kimap/DeleteJob +include/KF5/KIMAP/kimap/EnableJob include/KF5/KIMAP/kimap/ExpungeJob include/KF5/KIMAP/kimap/FetchJob include/KF5/KIMAP/kimap/GetAclJob @@ -90,6 +92,7 @@ include/KF5/KIMAP/kimap/copyjob.h include/KF5/KIMAP/kimap/createjob.h include/KF5/KIMAP/kimap/deleteacljob.h include/KF5/KIMAP/kimap/deletejob.h +include/KF5/KIMAP/kimap/enablejob.h include/KF5/KIMAP/kimap/expungejob.h include/KF5/KIMAP/kimap/fetchjob.h include/KF5/KIMAP/kimap/getacljob.h @@ -132,7 +135,7 @@ lib/cmake/KF5IMAP/KF5IMAPTargets-noconfig.cmake lib/cmake/KF5IMAP/KF5IMAPTargets.cmake lib/libKF5IMAP.so lib/libKF5IMAP.so.5 -lib/libKF5IMAP.so.5.14.1 +lib/libKF5IMAP.so.5.16.3 lib/libkimaptest.a qt5/mkspecs/modules/qt_KIMAP.pri share/locale/bs/LC_MESSAGES/libkimap5.mo diff --git a/mail/kimap/distinfo b/mail/kimap/distinfo index aa298bbdd1f..fd60f660dcc 100644 --- a/mail/kimap/distinfo +++ b/mail/kimap/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:25 markd Exp $ -SHA1 (kimap-20.04.1.tar.xz) = 130e9e2089b0d50b069c81b0c8ac4185e9d9a652 -RMD160 (kimap-20.04.1.tar.xz) = 1fee86e3416b148278e6bdd60d51d9bfb82395b1 -SHA512 (kimap-20.04.1.tar.xz) = ce7647a7d962994594d27dc431216282a918d0141669382189b5230010a026855149f576e74f0dcd6d80d31b1aeba12ec26d177cac43eaac7e171f0ad4787163 -Size (kimap-20.04.1.tar.xz) = 119700 bytes +SHA1 (kimap-20.12.3.tar.xz) = 0fd408075d1374e1e81fac506eafc8b23602201a +RMD160 (kimap-20.12.3.tar.xz) = 2807821382c3cda6bde4086cd9ccc76f214e005e +SHA512 (kimap-20.12.3.tar.xz) = dc64e972c7955e64e5aea1b141d2c48b76e2074946c4048eada4c647f0089fb051bfd505578461fbf0cf7925b334c49c8de3abb898fc7ad97401276d4a16c5c3 +Size (kimap-20.12.3.tar.xz) = 124676 bytes diff --git a/mail/kmbox/Makefile b/mail/kmbox/Makefile index e8560617a6c..a79f55ea23a 100644 --- a/mail/kmbox/Makefile +++ b/mail/kmbox/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2020/11/05 09:06:59 ryoon Exp $ +# $NetBSD: Makefile,v 1.11 2021/04/07 12:28:25 markd Exp $ DISTNAME= kmbox-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= mail HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/mail/kmbox/PLIST b/mail/kmbox/PLIST index de69ccf07a4..c8beb648aab 100644 --- a/mail/kmbox/PLIST +++ b/mail/kmbox/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:25 markd Exp $ include/KF5/KMbox/KMbox/MBox include/KF5/KMbox/KMbox/MBoxEntry include/KF5/KMbox/kmbox/kmbox_export.h @@ -11,7 +11,7 @@ lib/cmake/KF5Mbox/KF5MboxTargets-noconfig.cmake lib/cmake/KF5Mbox/KF5MboxTargets.cmake lib/libKF5Mbox.so lib/libKF5Mbox.so.5 -lib/libKF5Mbox.so.5.14.1 -qt5/mkspecs/modules/qt_Mbox.pri +lib/libKF5Mbox.so.5.16.3 +qt5/mkspecs/modules/qt_KMbox.pri share/qlogging-categories5/kmbox.categories share/qlogging-categories5/kmbox.renamecategories diff --git a/mail/kmbox/distinfo b/mail/kmbox/distinfo index ca4f7e9bd99..189e4521e58 100644 --- a/mail/kmbox/distinfo +++ b/mail/kmbox/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:25 markd Exp $ -SHA1 (kmbox-20.04.1.tar.xz) = f557357edf41f6a54bb03477a2bc534c5cd0baff -RMD160 (kmbox-20.04.1.tar.xz) = 9402c7c9e1a9f6f97847490112dcea1c5f8ff6e3 -SHA512 (kmbox-20.04.1.tar.xz) = dacd7d9b5d2dfd3001786fb490ec26fc6ee29ed5c2ca048022d5922bbc686f7b0bb8ec7b5ec5d86f89ab377e6c1cf34b13a9be088047750a3c734f1e83b1b3ce -Size (kmbox-20.04.1.tar.xz) = 24680 bytes +SHA1 (kmbox-20.12.3.tar.xz) = 1bc1ecd124847d3707e031caba2fb3064bde8bb3 +RMD160 (kmbox-20.12.3.tar.xz) = 915ac2d4939a7981d47519a186449a8f1c91dc87 +SHA512 (kmbox-20.12.3.tar.xz) = 6df398ec30bb0d892ef6f29586de345400bfa8bad4f5888d1aa2ce9b71c99e59dc96778bfbf4d08085aabaf32f0c8cd374afabe079b9956a13134c69b49d1fd1 +Size (kmbox-20.12.3.tar.xz) = 24792 bytes diff --git a/mail/kmime/Makefile b/mail/kmime/Makefile index d52d6488d17..bcc6388b946 100644 --- a/mail/kmime/Makefile +++ b/mail/kmime/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2020/11/05 09:06:59 ryoon Exp $ +# $NetBSD: Makefile,v 1.11 2021/04/07 12:28:25 markd Exp $ DISTNAME= kmime-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= mail HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/mail/kmime/PLIST b/mail/kmime/PLIST index 2532ad2b086..b562716e11e 100644 --- a/mail/kmime/PLIST +++ b/mail/kmime/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:25 markd Exp $ include/KF5/KMime/KMime/Content include/KF5/KMime/KMime/ContentIndex include/KF5/KMime/KMime/DateFormatter @@ -28,7 +28,7 @@ lib/cmake/KF5Mime/KF5MimeTargets-noconfig.cmake lib/cmake/KF5Mime/KF5MimeTargets.cmake lib/libKF5Mime.so lib/libKF5Mime.so.5 -lib/libKF5Mime.so.5.14.1 +lib/libKF5Mime.so.5.16.3 qt5/mkspecs/modules/qt_KMime.pri share/locale/ar/LC_MESSAGES/libkmime5.mo share/locale/bg/LC_MESSAGES/libkmime5.mo diff --git a/mail/kmime/distinfo b/mail/kmime/distinfo index 0291ad14dae..6ecb89fecc6 100644 --- a/mail/kmime/distinfo +++ b/mail/kmime/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:25 markd Exp $ -SHA1 (kmime-20.04.1.tar.xz) = 5aa796495fd20da0c522c898a5a60f89c9c11cf0 -RMD160 (kmime-20.04.1.tar.xz) = 59225a355a97d64e0ac5b7f5261a280f19736326 -SHA512 (kmime-20.04.1.tar.xz) = abc21cb63d379bffc3cb3d52e74eca37d576f390e57098a2fe9f00777289099f02f47f0e542562105fefe7bfefb4da4f772352baa1f0b74be81c9d9d1b76adac -Size (kmime-20.04.1.tar.xz) = 147916 bytes +SHA1 (kmime-20.12.3.tar.xz) = 60927de7c095ff3df82b75ab58b4bd5e4dcbd429 +RMD160 (kmime-20.12.3.tar.xz) = 815fbb2b1bf9a5bb2b7ceba98f9537438aa9a899 +SHA512 (kmime-20.12.3.tar.xz) = 8c472b64ec4633a31a53dc35f6609802cc9d15ebe035c64b162a0a1839d4ecc6a7252be380d5125039cea5b10ffaac67f30e2d1a35c005b81f57505505a00cea +Size (kmime-20.12.3.tar.xz) = 150872 bytes diff --git a/mail/ksmtp/Makefile b/mail/ksmtp/Makefile index ffd8284aa41..58b4413c620 100644 --- a/mail/ksmtp/Makefile +++ b/mail/ksmtp/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:25 markd Exp $ DISTNAME= ksmtp-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= mail HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/mail/ksmtp/PLIST b/mail/ksmtp/PLIST index 4019885a4a9..5c53c974292 100644 --- a/mail/ksmtp/PLIST +++ b/mail/ksmtp/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:25 markd Exp $ include/KPim/KSMTP/KSMTP/Job include/KPim/KSMTP/KSMTP/LoginJob include/KPim/KSMTP/KSMTP/SendJob @@ -17,7 +17,7 @@ lib/cmake/KPimSMTP/KPimSMTPTargets-noconfig.cmake lib/cmake/KPimSMTP/KPimSMTPTargets.cmake lib/libKPimSMTP.so lib/libKPimSMTP.so.5 -lib/libKPimSMTP.so.5.14.1 +lib/libKPimSMTP.so.5.16.3 qt5/mkspecs/modules/qt_KSMTP.pri share/locale/ar/LC_MESSAGES/libksmtp5.mo share/locale/bs/LC_MESSAGES/libksmtp5.mo diff --git a/mail/ksmtp/distinfo b/mail/ksmtp/distinfo index 05e7a313806..84575c926ed 100644 --- a/mail/ksmtp/distinfo +++ b/mail/ksmtp/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:25 markd Exp $ -SHA1 (ksmtp-20.04.1.tar.xz) = b9ce2e5e62eab30737514918ec973d601e032d11 -RMD160 (ksmtp-20.04.1.tar.xz) = 5116e90a46f6fee33c1459e33286486f9e79d6ab -SHA512 (ksmtp-20.04.1.tar.xz) = f8e573ec91aef270dd647795897bec368d2f0ab5d44a3e40de34b88859b03b965d7bd931e14463d74194b9de63c3cb40febbee680770b50df6c16b336213af41 -Size (ksmtp-20.04.1.tar.xz) = 41284 bytes +SHA1 (ksmtp-20.12.3.tar.xz) = 8ac9127be282cd79209abd660583c8671f98a2a9 +RMD160 (ksmtp-20.12.3.tar.xz) = 23a7269029e0a5e1efedf06f818aaa99aa47c962 +SHA512 (ksmtp-20.12.3.tar.xz) = 813b742471f35a9ceb851e3b4fecdce578532b0754b45afd9e1ba1cd1c33b5ad06f40399488f65a9753af61af674c3c6ce9956307b61be5f2661ddabb53937fb +Size (ksmtp-20.12.3.tar.xz) = 43124 bytes diff --git a/math/analitza/Makefile b/math/analitza/Makefile index 50ab50c0883..203605475b9 100644 --- a/math/analitza/Makefile +++ b/math/analitza/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2021/02/07 06:30:29 ryoon Exp $ +# $NetBSD: Makefile,v 1.59 2021/04/07 12:28:26 markd Exp $ DISTNAME= analitza-${KAPPSVER} -PKGREVISION= 5 CATEGORIES= math HOMEPAGE= https://edu.kde.org/ diff --git a/math/analitza/PLIST b/math/analitza/PLIST index c350a2fbf02..8b3d4a1b9b5 100644 --- a/math/analitza/PLIST +++ b/math/analitza/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2019/11/20 22:04:14 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:26 markd Exp $ include/Analitza5/analitza/abstractexpressionvisitor.h include/Analitza5/analitza/abstractlexer.h include/Analitza5/analitza/analitzaexport.h @@ -77,11 +77,13 @@ share/locale/el/LC_MESSAGES/analitza_qt.qm share/locale/en_GB/LC_MESSAGES/analitza_qt.qm share/locale/es/LC_MESSAGES/analitza_qt.qm share/locale/et/LC_MESSAGES/analitza_qt.qm +share/locale/eu/LC_MESSAGES/analitza_qt.qm share/locale/fi/LC_MESSAGES/analitza_qt.qm share/locale/fr/LC_MESSAGES/analitza_qt.qm share/locale/ga/LC_MESSAGES/analitza_qt.qm share/locale/gl/LC_MESSAGES/analitza_qt.qm share/locale/hu/LC_MESSAGES/analitza_qt.qm +share/locale/ia/LC_MESSAGES/analitza_qt.qm share/locale/it/LC_MESSAGES/analitza_qt.qm share/locale/ja/LC_MESSAGES/analitza_qt.qm share/locale/kk/LC_MESSAGES/analitza_qt.qm diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 0821315bec0..afccc839d9e 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:26 markd Exp $ -SHA1 (analitza-20.04.1.tar.xz) = 62a91d5421fbbd4e3fc620bde669b143190e828a -RMD160 (analitza-20.04.1.tar.xz) = 96b035db5117fcc41a4cb4fbdd6a19f144534b51 -SHA512 (analitza-20.04.1.tar.xz) = 1ae972bba40f90372fb2f22ccc3fe3bdf38e7954b67d2c3eea0ab9d3bd1943af1cecdf2c75d6fbbd673095f8af851644ba8e390d0b7115119480990059eaeb43 -Size (analitza-20.04.1.tar.xz) = 332852 bytes +SHA1 (analitza-20.12.3.tar.xz) = 05125fe8ba91cbaa97025c779ea7ecb4dede30dd +RMD160 (analitza-20.12.3.tar.xz) = f12de89ffc53947fd06580830dcf99b6ff6537fe +SHA512 (analitza-20.12.3.tar.xz) = 2357c5395bcdf66b1a54de7404441ef6966ef6b2a6c2c9a6cc31d5104a126acdd09f7aeb3f4d605591c0e2753a32967eafbccb48e188c96318126ed6657b0d01 +Size (analitza-20.12.3.tar.xz) = 341640 bytes diff --git a/math/cantor/Makefile b/math/cantor/Makefile index b13597c75ba..8ad93d9da82 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.77 2021/02/07 06:30:29 ryoon Exp $ +# $NetBSD: Makefile,v 1.78 2021/04/07 12:28:26 markd Exp $ DISTNAME= cantor-${KAPPSVER} -PKGREVISION= 8 CATEGORIES= math HOMEPAGE= https://kde.org/applications/education/cantor/ @@ -19,44 +18,13 @@ CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_LuaJIT=TRUE # only try to build python3 support PYTHON_VERSIONS_INCOMPATIBLE= 27 -CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_PythonLibs=TRUE -SUBST_CLASSES+= py3 -SUBST_STAGE.py3= pre-configure -SUBST_FILES.py3= cmake/FindPythonLibs3.cmake -SUBST_SED.py3= -e 's:python3):python-${PYVERSSUFFIX}):' -SUBST_SED.py3+= -e 's:python3.6m python3.7m:python3.6m python3.6 python3.7m python3.7:' REPLACE_SH+= src/backends/sage/cantor-execsage -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_FILES.xdg+= src/backends/*/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_kalgebra.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_kalgebra.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_maxima.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_maxima.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_octave.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_octave.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_python.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_python.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_qalculate.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_qalculate.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_sage.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_sage.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/cantor_scilab.knsrc \ - ${PKG_SYSCONFDIR}/xdg/cantor_scilab.knsrc - SUBST_CLASSES+= fix-moc SUBST_STAGE.fix-moc= post-configure SUBST_MESSAGE.fix-moc= Cleaning up MOC includes -SUBST_FILES.fix-moc= _KDE_build/src/*/*/CMakeFiles/cantor_*_autogen.dir/AutogenInfo.json +SUBST_FILES.fix-moc= _KDE_build/src/*/*/CMakeFiles/*_autogen.dir/AutogenInfo.json SUBST_NOOP_OK.fix-moc= yes SUBST_SED.fix-moc= -e 's;"${PREFIX}/include",;;g' diff --git a/math/cantor/PLIST b/math/cantor/PLIST index f6177bc9f58..24a3be6ad02 100644 --- a/math/cantor/PLIST +++ b/math/cantor/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2020/06/09 11:56:13 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:26 markd Exp $ bin/cantor bin/cantor_pythonserver bin/cantor_scripteditor @@ -13,12 +13,15 @@ include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h +include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/latexresult.h include/cantor/mimeresult.h +include/cantor/panelplugin.h +include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h @@ -33,7 +36,7 @@ lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.${PKGVERSION} -lib/libcantorlibs.so.24 +lib/libcantorlibs.so.28 qt5/plugins/cantor/assistants/cantor_advancedplotassistant.so qt5/plugins/cantor/assistants/cantor_creatematrixassistant.so qt5/plugins/cantor/assistants/cantor_differentiateassistant.so @@ -54,16 +57,20 @@ qt5/plugins/cantor/backends/cantor_pythonbackend.so qt5/plugins/cantor/backends/cantor_qalculatebackend.so qt5/plugins/cantor/backends/cantor_sagebackend.so qt5/plugins/cantor/backends/cantor_scilabbackend.so +qt5/plugins/cantor/panels/cantor_filebrowserpanelplugin.so qt5/plugins/cantor/panels/cantor_helppanelplugin.so +qt5/plugins/cantor/panels/cantor_tocpanelplugin.so qt5/plugins/cantor/panels/cantor_variablemanagerplugin.so qt5/plugins/libcantorpart.so share/applications/org.kde.cantor.desktop share/cantor/latex/preview.sty share/cantor/maximabackend/cantor-initmaxima.lisp +share/cantor/octave/graphic_packages.xml share/cantor/octavebackend/cantor_eigenvectors.m share/cantor/octavebackend/cantor_plot2d.m share/cantor/octavebackend/cantor_plot3d.m share/cantor/octavebackend/cantor_print.m +share/cantor/python/graphic_packages.xml share/cantor/sagebackend/cantor-execsage share/cantor/xslt/latex.xsl share/config.kcfg/cantor.kcfg @@ -81,7 +88,6 @@ share/doc/HTML/ca/cantor/import-dlg.png share/doc/HTML/ca/cantor/index.cache.bz2 share/doc/HTML/ca/cantor/index.docbook share/doc/HTML/ca/cantor/integrate-dlg.png -share/doc/HTML/ca/cantor/latex_formula.png share/doc/HTML/ca/cantor/matrix-dlg.png share/doc/HTML/ca/cantor/plot-dlg1.png share/doc/HTML/ca/cantor/plot-dlg2.png @@ -141,14 +147,6 @@ share/doc/HTML/uk/cantor/plot2d-dlg.png share/doc/HTML/uk/cantor/plot3d-dlg.png share/doc/HTML/uk/cantor/screenshot.png share/doc/HTML/uk/cantor/solve-equations-dlg.png -share/examples/kde-xdg/cantor.knsrc -share/examples/kde-xdg/cantor_kalgebra.knsrc -share/examples/kde-xdg/cantor_maxima.knsrc -share/examples/kde-xdg/cantor_octave.knsrc -share/examples/kde-xdg/cantor_python.knsrc -share/examples/kde-xdg/cantor_qalculate.knsrc -share/examples/kde-xdg/cantor_sage.knsrc -share/examples/kde-xdg/cantor_scilab.knsrc share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png @@ -165,6 +163,14 @@ share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png +share/knsrcfiles/cantor.knsrc +share/knsrcfiles/cantor_kalgebra.knsrc +share/knsrcfiles/cantor_maxima.knsrc +share/knsrcfiles/cantor_octave.knsrc +share/knsrcfiles/cantor_python.knsrc +share/knsrcfiles/cantor_qalculate.knsrc +share/knsrcfiles/cantor_sage.knsrc +share/knsrcfiles/cantor_scilab.knsrc share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc @@ -199,6 +205,7 @@ share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo +share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 11104884bba..1ca7cbc0098 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:13 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:26 markd Exp $ -SHA1 (cantor-20.04.1.tar.xz) = 2311d6b0f5cda341daf67bb7513994134e812ac0 -RMD160 (cantor-20.04.1.tar.xz) = 7d81d09eb3ef4738ce882dd41e12a2d16216efa3 -SHA512 (cantor-20.04.1.tar.xz) = fa948ab806a051d7cd820becae72c10042e9de6535401dcd2617b4558c4353a7594ff75e75e37587b6d1064c36044863fe93c701f1c869145e38be870216d17c -Size (cantor-20.04.1.tar.xz) = 9026456 bytes +SHA1 (cantor-20.12.3.tar.xz) = 0d6bc0fe84841e34601cb5214be1041f2acee6ba +RMD160 (cantor-20.12.3.tar.xz) = f634aa5049e359a58b453768004e8684dc23ab4f +SHA512 (cantor-20.12.3.tar.xz) = 35461a47c9ce4aa4de8ca8496ca33c42691db6be927f30018e174f3234a485c436cca90b6362c8ba325f8bc220a09079069278bdfd08f4510dd7d12ee1a39ed7 +Size (cantor-20.12.3.tar.xz) = 9128948 bytes SHA1 (patch-src_lib_jupyterutils.cpp) = d5af7e37e59bc7475112e22d5b37cc31a134fcbb diff --git a/math/kalgebra/Makefile b/math/kalgebra/Makefile index 8a9bf7c49b5..dd2d242f9e0 100644 --- a/math/kalgebra/Makefile +++ b/math/kalgebra/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:29 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:26 markd Exp $ DISTNAME= kalgebra-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= math HOMEPAGE= https://kde.org/applications/education/kalgebra/ @@ -21,5 +20,6 @@ USE_TOOLS+= msgmerge .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../x11/qt5-qtbase/buildlink3.mk" +CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE #.include "../../x11/qt5-qtwebengine/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/math/kalgebra/PLIST b/math/kalgebra/PLIST index 6f7c325003c..132969656d8 100644 --- a/math/kalgebra/PLIST +++ b/math/kalgebra/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2020/06/09 11:56:14 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:26 markd Exp $ bin/calgebra bin/kalgebramobile share/applications/org.kde.kalgebramobile.desktop @@ -7,10 +7,8 @@ share/doc/HTML/ca/kalgebra/index.cache.bz2 share/doc/HTML/ca/kalgebra/index.docbook share/doc/HTML/ca/kalgebra/kalgebra-2dgraph-window.png share/doc/HTML/ca/kalgebra/kalgebra-3dgraph-window.png -share/doc/HTML/ca/kalgebra/kalgebra-console-window.png share/doc/HTML/ca/kalgebra/kalgebra-dictionary-window.png share/doc/HTML/ca/kalgebra/kalgebra-main-window.png -share/doc/HTML/ca/kalgebra/view-fullscreen.png share/doc/HTML/de/kalgebra/commands.docbook share/doc/HTML/de/kalgebra/index.cache.bz2 share/doc/HTML/de/kalgebra/index.docbook @@ -44,6 +42,10 @@ share/doc/HTML/pt_BR/kalgebra/commands.docbook share/doc/HTML/pt_BR/kalgebra/index.cache.bz2 share/doc/HTML/pt_BR/kalgebra/index.docbook share/doc/HTML/pt_BR/kalgebra/kalgebra-main-window.png +share/doc/HTML/ru/kalgebra/commands.docbook +share/doc/HTML/ru/kalgebra/index.cache.bz2 +share/doc/HTML/ru/kalgebra/index.docbook +share/doc/HTML/ru/kalgebra/kalgebra-main-window.png share/doc/HTML/sv/kalgebra/commands.docbook share/doc/HTML/sv/kalgebra/index.cache.bz2 share/doc/HTML/sv/kalgebra/index.docbook @@ -177,6 +179,7 @@ share/locale/sk/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebramobile.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sl/LC_MESSAGES/kalgebra.mo +share/locale/sl/LC_MESSAGES/kalgebramobile.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalgebramobile.mo diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 2e1e8c9325a..1c4fd3fab9a 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:26 markd Exp $ -SHA1 (kalgebra-20.04.1.tar.xz) = fee0fe7c88b524507e1c636aaf85c996e0da4f5b -RMD160 (kalgebra-20.04.1.tar.xz) = e54f822af96e2941106cadc215cd727ec9d63bc8 -SHA512 (kalgebra-20.04.1.tar.xz) = 9ed48488b448da004d52f49dba28c67a2a0fe83db9f72d37f1beed1751b53cff407e201ba3d72ba90a8082c77ff0a2d57b6524351a171e5631c1fa2bf5d28c30 -Size (kalgebra-20.04.1.tar.xz) = 1158236 bytes +SHA1 (kalgebra-20.12.3.tar.xz) = dac2a892afdd6d182dd7c068dae54927a5349838 +RMD160 (kalgebra-20.12.3.tar.xz) = eb8e91b0e91e4a6d922270dd1bc86074d8ad5742 +SHA512 (kalgebra-20.12.3.tar.xz) = 75cc1a85253103768486de84526fb3902fe8a269320af0259bdb0c2dc732062a2928b05c8871a74dc0d0563db57fa5d0304e7c0702c928b29d6a40c99a3b9d30 +Size (kalgebra-20.12.3.tar.xz) = 1024612 bytes diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index 32339165dc8..b237c4914bc 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:29 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:26 markd Exp $ DISTNAME= kcalc-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= math HOMEPAGE= https://kde.org/applications/utilities/kcalc/ diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 59a9187b546..f8fc74cc2ca 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:26 markd Exp $ -SHA1 (kcalc-20.04.1.tar.xz) = 2a46ce69ea31f3e67a1bb17bf11095a615ea5dea -RMD160 (kcalc-20.04.1.tar.xz) = d5c69e0316fd87aa93946c68d373cf1efa6a846e -SHA512 (kcalc-20.04.1.tar.xz) = 5e89748b6df60db826d2f0981d78159be3e69c24f27be0bba0983190e33e9ecd1b982a121a20a527b43a59fe9d3860bcfe3bac2f80560d23d1a03185a2fd13c8 -Size (kcalc-20.04.1.tar.xz) = 374372 bytes +SHA1 (kcalc-20.12.3.tar.xz) = 40ba2e269d7ef92d39fe6814bd38e9523d3a5e59 +RMD160 (kcalc-20.12.3.tar.xz) = 340afb10dbd9213951c00d2e7b2c1d4d9850fc3e +SHA512 (kcalc-20.12.3.tar.xz) = 033b57ed3432f09974185a8b237a6e675a5603328be5fe9391a00039a22784e7f5757cf64a65f0cec0eaa878004670447036e54fed25e120558f4bfdeccdb4df +Size (kcalc-20.12.3.tar.xz) = 380676 bytes diff --git a/meta-pkgs/kde/applications.mk b/meta-pkgs/kde/applications.mk index 9eb54c44d79..526c11f9aa2 100644 --- a/meta-pkgs/kde/applications.mk +++ b/meta-pkgs/kde/applications.mk @@ -1,6 +1,6 @@ -# $NetBSD: applications.mk,v 1.6 2020/06/09 06:51:46 markd Exp $ +# $NetBSD: applications.mk,v 1.7 2021/04/07 12:28:14 markd Exp $ -KAPPSVER?= 20.04.1 +KAPPSVER?= 20.12.3 CATEGORIES+= kde MASTER_SITES?= ${MASTER_SITE_KDE:=release-service/${KAPPSVER}/src/} EXTRACT_SUFX?= .tar.xz diff --git a/misc/kalzium/Makefile b/misc/kalzium/Makefile index 34afdc20a45..93388d10484 100644 --- a/misc/kalzium/Makefile +++ b/misc/kalzium/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.59 2021/03/08 08:13:03 jaapb Exp $ +# $NetBSD: Makefile,v 1.60 2021/04/07 12:28:26 markd Exp $ DISTNAME= kalzium-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kalzium/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge pkg-config -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{CONFIG_INSTALL_DIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kalzium.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kalzium.knsrc - .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../graphics/kplotting/buildlink3.mk" .include "../../lang/ocaml/buildlink3.mk" diff --git a/misc/kalzium/PLIST b/misc/kalzium/PLIST index 28fe2116d04..7087c5fd80c 100644 --- a/misc/kalzium/PLIST +++ b/misc/kalzium/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2020/02/02 02:57:44 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:26 markd Exp $ bin/kalzium include/libkdeedu/chemicaldataobject.h include/libkdeedu/element.h @@ -271,7 +271,6 @@ share/doc/HTML/pt_BR/kalzium/screenshot-rs-phrases.png share/doc/HTML/pt_BR/kalzium/screenshot-tables.png share/doc/HTML/pt_BR/kalzium/screenshot1.png share/doc/HTML/pt_BR/kalzium/screenshot2.png -share/doc/HTML/pt_BR/kalzium/screenshot5.png share/doc/HTML/pt_BR/kalzium/screenshot6.png share/doc/HTML/pt_BR/kalzium/screenshot7.png share/doc/HTML/pt_BR/kalzium/screenshotnuclidboard.png @@ -344,7 +343,6 @@ share/doc/HTML/uk/kalzium/infodialog_isotopes.png share/doc/HTML/uk/kalzium/infodialog_misc.png share/doc/HTML/uk/kalzium/infodialog_spectrum.png share/doc/HTML/uk/kalzium/quick-1.png -share/doc/HTML/uk/kalzium/quick-2.png share/doc/HTML/uk/kalzium/quick-3.png share/doc/HTML/uk/kalzium/quick-4.png share/doc/HTML/uk/kalzium/screenshot-calc-conc.png @@ -358,7 +356,6 @@ share/doc/HTML/uk/kalzium/screenshot-rs-phrases.png share/doc/HTML/uk/kalzium/screenshot-tables.png share/doc/HTML/uk/kalzium/screenshot1.png share/doc/HTML/uk/kalzium/screenshot2.png -share/doc/HTML/uk/kalzium/screenshot5.png share/doc/HTML/uk/kalzium/screenshot6.png share/doc/HTML/uk/kalzium/screenshot7.png share/doc/HTML/uk/kalzium/screenshotnuclidboard.png @@ -367,7 +364,6 @@ share/doc/HTML/uk/kalzium/settings2.png share/doc/HTML/uk/kalzium/settings3.png share/doc/HTML/uk/kalzium/settings4.png share/doc/HTML/uk/kalzium/sidebar1.png -share/examples/kde-xdg/kalzium.knsrc share/icons/hicolor/128x128/apps/kalzium.png share/icons/hicolor/16x16/apps/kalzium.png share/icons/hicolor/22x22/apps/kalzium.png diff --git a/misc/kalzium/distinfo b/misc/kalzium/distinfo index eee04c08e0c..9f45d91ef0e 100644 --- a/misc/kalzium/distinfo +++ b/misc/kalzium/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.15 2021/04/07 12:28:26 markd Exp $ -SHA1 (kalzium-20.04.1.tar.xz) = ffd26206c7c16f89dfaa0eb3aef51f4c37b07b18 -RMD160 (kalzium-20.04.1.tar.xz) = 2f9c8e7fe84eec827110f9961fb3ba491d9bd2ad -SHA512 (kalzium-20.04.1.tar.xz) = 3413f7e4ad0630f0463664cc24329ad64044e2624e7781b77ca5cdd195e06cb6aa4f11a92a326e41d0908a72f5202e5215435de63bfce758ccc55ecacbff53a5 -Size (kalzium-20.04.1.tar.xz) = 24595836 bytes +SHA1 (kalzium-20.12.3.tar.xz) = a5dff194a72c21e85df3f42fb653ff510318c821 +RMD160 (kalzium-20.12.3.tar.xz) = 1031e0a97609b087d2cdc256e9af3bc591889520 +SHA512 (kalzium-20.12.3.tar.xz) = 09e3d588dd0ebcdac0b7c473f5bf7f240516a12797240a36efb1e764968c3953373c04e589ee84ff92b23df97e8d367a155b980175dc8ad01a2551a9d5d1f046 +Size (kalzium-20.12.3.tar.xz) = 24521912 bytes diff --git a/misc/kbruch/Makefile b/misc/kbruch/Makefile index 2ee6510851f..ebd15b7f467 100644 --- a/misc/kbruch/Makefile +++ b/misc/kbruch/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:26 markd Exp $ DISTNAME= kbruch-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kbruch/ diff --git a/misc/kbruch/PLIST b/misc/kbruch/PLIST index 2f35ab6b4ef..77de6f7537e 100644 --- a/misc/kbruch/PLIST +++ b/misc/kbruch/PLIST @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/21 06:12:37 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:26 markd Exp $ bin/kbruch man/ca/man1/kbruch.1 man/de/man1/kbruch.1 man/es/man1/kbruch.1 man/et/man1/kbruch.1 +man/fr/man1/kbruch.1 man/it/man1/kbruch.1 man/man1/kbruch.1 man/nl/man1/kbruch.1 @@ -58,6 +59,20 @@ share/doc/HTML/es/kbruch/settings.png share/doc/HTML/es/kbruch/statistics.png share/doc/HTML/et/kbruch/index.cache.bz2 share/doc/HTML/et/kbruch/index.docbook +share/doc/HTML/fr/kbruch/checked.png +share/doc/HTML/fr/kbruch/compare.png +share/doc/HTML/fr/kbruch/convert.png +share/doc/HTML/fr/kbruch/factorize.png +share/doc/HTML/fr/kbruch/gui_main.png +share/doc/HTML/fr/kbruch/gui_mode.png +share/doc/HTML/fr/kbruch/index.cache.bz2 +share/doc/HTML/fr/kbruch/index.docbook +share/doc/HTML/fr/kbruch/learning.png +share/doc/HTML/fr/kbruch/mixed.png +share/doc/HTML/fr/kbruch/percentage.png +share/doc/HTML/fr/kbruch/reduced.png +share/doc/HTML/fr/kbruch/settings.png +share/doc/HTML/fr/kbruch/statistics.png share/doc/HTML/it/kbruch/index.cache.bz2 share/doc/HTML/it/kbruch/index.docbook share/doc/HTML/nl/kbruch/checked.png diff --git a/misc/kbruch/distinfo b/misc/kbruch/distinfo index 3adc33f1bb3..7568ffa58fa 100644 --- a/misc/kbruch/distinfo +++ b/misc/kbruch/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.13 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.14 2021/04/07 12:28:26 markd Exp $ -SHA1 (kbruch-20.04.1.tar.xz) = b431740d515739e674d5501aab411fa8992a5939 -RMD160 (kbruch-20.04.1.tar.xz) = b79b9ec8cd316a25d1bb0c35db8378e2085d866e -SHA512 (kbruch-20.04.1.tar.xz) = 5cea8fbed160780abd1b3ecc2db80e7d0bb321d5bbe4138cf2a9062e127b55e4842bc49f592786dfe0b31bc68788812cba5fcfbd8886bd7c4cd7dc48b9e493df -Size (kbruch-20.04.1.tar.xz) = 5605636 bytes +SHA1 (kbruch-20.12.3.tar.xz) = 629b9d622cd7cc0aa28bbaa11fae819164cd14eb +RMD160 (kbruch-20.12.3.tar.xz) = 55c6c81fb5f2541f18162bb80a1c8d895ca54f7c +SHA512 (kbruch-20.12.3.tar.xz) = c0c72e9eef3da49328b201e36160d0ff6e92e011c8be5ff3d82db67a2c598e53a1ed4d95949ae0734bedaa3bf3b49af5722eb184fcb2578a813af5f159797dae +Size (kbruch-20.12.3.tar.xz) = 5614940 bytes diff --git a/misc/kcharselect/Makefile b/misc/kcharselect/Makefile index 52e8277ebac..ec4907ba8af 100644 --- a/misc/kcharselect/Makefile +++ b/misc/kcharselect/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:26 markd Exp $ DISTNAME= kcharselect-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/utilities/kcharselect/ diff --git a/misc/kcharselect/PLIST b/misc/kcharselect/PLIST index dd95a8af759..e800ee56441 100644 --- a/misc/kcharselect/PLIST +++ b/misc/kcharselect/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/17 04:32:27 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:26 markd Exp $ bin/kcharselect share/applications/org.kde.kcharselect.desktop share/doc/HTML/ca/kcharselect/index.cache.bz2 @@ -24,6 +24,7 @@ share/doc/HTML/gl/kcharselect/index.cache.bz2 share/doc/HTML/gl/kcharselect/index.docbook share/doc/HTML/it/kcharselect/index.cache.bz2 share/doc/HTML/it/kcharselect/index.docbook +share/doc/HTML/it/kcharselect/kcharselect.png share/doc/HTML/ko/kcharselect/index.cache.bz2 share/doc/HTML/ko/kcharselect/index.docbook share/doc/HTML/nl/kcharselect/index.cache.bz2 diff --git a/misc/kcharselect/distinfo b/misc/kcharselect/distinfo index 82bbb50d29f..22a22d952d4 100644 --- a/misc/kcharselect/distinfo +++ b/misc/kcharselect/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:26 markd Exp $ -SHA1 (kcharselect-20.04.1.tar.xz) = 27f36a61d818668ed0a65fa463c092dfe9f3fe5b -RMD160 (kcharselect-20.04.1.tar.xz) = fe3faee80a8f245df5e149c0a9e1c040b10a998b -SHA512 (kcharselect-20.04.1.tar.xz) = d1981d63b2e650691bbeac7c8e6b1d5f79e082d31ad1a256363f1d9b4cf849dbbe20b35096904f8e9f81d8c89c8e15cda8be74e912b66a0056cf001da59f4f70 -Size (kcharselect-20.04.1.tar.xz) = 335584 bytes +SHA1 (kcharselect-20.12.3.tar.xz) = c8c4ec42291da7bc6a3c612d8b0c1b663735b791 +RMD160 (kcharselect-20.12.3.tar.xz) = 518a4ca85def443da3a0c05796caa1ae9b4baa60 +SHA512 (kcharselect-20.12.3.tar.xz) = 327eb664516645df72b671fc6a77c70435e5515506a661a40945a760f9b46f027303f97069e04f1695bd4a79009949fdfda70b213edc2415444a7ca0d05912f2 +Size (kcharselect-20.12.3.tar.xz) = 366696 bytes diff --git a/misc/kdeedu-data/Makefile b/misc/kdeedu-data/Makefile index b64011867d1..1717b6d37f9 100644 --- a/misc/kdeedu-data/Makefile +++ b/misc/kdeedu-data/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2020/11/05 09:08:40 ryoon Exp $ +# $NetBSD: Makefile,v 1.11 2021/04/07 12:28:27 markd Exp $ DISTNAME= kdeedu-data-${KAPPSVER} -PKGREVISION= 2 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/ diff --git a/misc/kdeedu-data/PLIST b/misc/kdeedu-data/PLIST index a7b6b192016..57d5402ce17 100644 --- a/misc/kdeedu-data/PLIST +++ b/misc/kdeedu-data/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2019/11/21 05:55:40 markd Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/04/07 12:28:27 markd Exp $ share/apps/kvtml/bg/animals.kvtml share/apps/kvtml/bg/easy.kvtml share/apps/kvtml/bg/hard.kvtml @@ -283,6 +283,10 @@ share/apps/kvtml/ru/people.kvtml share/apps/kvtml/ru/space.kvtml share/apps/kvtml/ru/transportation.kvtml share/apps/kvtml/ru/worldcapitals.kvtml +share/apps/kvtml/sk/animals.kvtml +share/apps/kvtml/sk/easy.kvtml +share/apps/kvtml/sk/hard.kvtml +share/apps/kvtml/sk/medium.kvtml share/apps/kvtml/sl/animals.kvtml share/apps/kvtml/sl/clothing.kvtml share/apps/kvtml/sl/computers.kvtml diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 5d4a2da8892..804f51f4b73 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:27 markd Exp $ -SHA1 (kdeedu-data-20.04.1.tar.xz) = e5c8431fa1b70b2ef28dba9d442632a6b1f47370 -RMD160 (kdeedu-data-20.04.1.tar.xz) = 3f294601d37f5570782aecea866332bfe835b042 -SHA512 (kdeedu-data-20.04.1.tar.xz) = dee3a3566eba452421c24900dfa1fdeddd31d14c036c70d5c693a12130a30c0840268e7bac71074d28cbcb278d9e00d7b98eef74f30a3e6dc6483d23e135658a -Size (kdeedu-data-20.04.1.tar.xz) = 328620 bytes +SHA1 (kdeedu-data-20.12.3.tar.xz) = 5d91772d35870aa2ffe2b8aa7b9590ba53fdf68c +RMD160 (kdeedu-data-20.12.3.tar.xz) = a6123bbcc86a4ba76afbec51026d049b070170f2 +SHA512 (kdeedu-data-20.12.3.tar.xz) = f01ff9489e7548ef13ff0d4120e6d2cf77c5e41c26f0a74fa7979dde96cb89e1b08957017e54ae3df60bc440eae2abd653dd16d87d340f58ec17a9d84141286f +Size (kdeedu-data-20.12.3.tar.xz) = 335416 bytes diff --git a/misc/kgeography/Makefile b/misc/kgeography/Makefile index 5282883203e..83ad57e4dbb 100644 --- a/misc/kgeography/Makefile +++ b/misc/kgeography/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.57 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.58 2021/04/07 12:28:27 markd Exp $ DISTNAME= kgeography-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kgeography/ diff --git a/misc/kgeography/PLIST b/misc/kgeography/PLIST index 69a3cce1864..e8909fad552 100644 --- a/misc/kgeography/PLIST +++ b/misc/kgeography/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2020/06/09 11:56:14 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:27 markd Exp $ bin/kgeography share/applications/org.kde.kgeography.desktop share/config.kcfg/kgeography.kcfg @@ -399,28 +399,6 @@ share/kgeography/flags/ethiopia.png share/kgeography/flags/fiji.png share/kgeography/flags/finland.png share/kgeography/flags/france.png -share/kgeography/flags/france/alsace.png -share/kgeography/flags/france/aquitaine.png -share/kgeography/flags/france/auvergne.png -share/kgeography/flags/france/basse_normandie.png -share/kgeography/flags/france/bourgogne.png -share/kgeography/flags/france/bretagne.png -share/kgeography/flags/france/centre_val_de_loire.png -share/kgeography/flags/france/champagne-ardennes.png -share/kgeography/flags/france/corse.png -share/kgeography/flags/france/franche_comte.png -share/kgeography/flags/france/haute_normandie.png -share/kgeography/flags/france/ile_de_france.png -share/kgeography/flags/france/languedoc_roussillon.png -share/kgeography/flags/france/limousin.png -share/kgeography/flags/france/lorraine.png -share/kgeography/flags/france/midi_pyrenees.png -share/kgeography/flags/france/nord-pas_de_calais.png -share/kgeography/flags/france/pays_de_la_loire.png -share/kgeography/flags/france/picardie.png -share/kgeography/flags/france/poitou_charentes.png -share/kgeography/flags/france/provence_alpes_cote_d_azur.png -share/kgeography/flags/france/rhone_alpes.png share/kgeography/flags/french_polynesia.png share/kgeography/flags/gabon.png share/kgeography/flags/gambia.png diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 973b8bb5f80..3d48ab7e1c2 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/06/09 11:56:14 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:27 markd Exp $ -SHA1 (kgeography-20.04.1.tar.xz) = 21be385461a8875a14938f8718b53e1a44fac380 -RMD160 (kgeography-20.04.1.tar.xz) = af03c8034fbf6b64bba7d5527d3cad55a971024f -SHA512 (kgeography-20.04.1.tar.xz) = 4777b72a25e06ae2d04d2b21b0a97342f06681cd16169c84e017b4ada2bee55ea1dee4f7dd7df2afb8717d4cadd2e94162d96506785b68a45cadd46fa9962435 -Size (kgeography-20.04.1.tar.xz) = 10871664 bytes +SHA1 (kgeography-20.12.3.tar.xz) = ccc2d3defe200c004c0a893d7214bbac02cfd84b +RMD160 (kgeography-20.12.3.tar.xz) = 5efe0ab70969f7ea10fb7aa4abdd18167197e6ba +SHA512 (kgeography-20.12.3.tar.xz) = b77f334c063364608875f783795b362aefd0360af1e06f6a3a2eb8047ab3f84a6853bde23e76e38f3f4ca5c348d358551af79fb8290e26d9d6615752df9746ab +Size (kgeography-20.12.3.tar.xz) = 10764016 bytes diff --git a/misc/khelpcenter/Makefile b/misc/khelpcenter/Makefile index 45c2cc63b8d..1a6a4c709ff 100644 --- a/misc/khelpcenter/Makefile +++ b/misc/khelpcenter/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.17 2021/04/07 12:28:27 markd Exp $ DISTNAME= khelpcenter-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= misc HOMEPAGE= https://userbase.kde.org/KHelpCenter diff --git a/misc/khelpcenter/PLIST b/misc/khelpcenter/PLIST index ae0ca48fd68..1886251d33b 100644 --- a/misc/khelpcenter/PLIST +++ b/misc/khelpcenter/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2019/11/30 21:44:27 markd Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/04/07 12:28:27 markd Exp $ bin/khelpcenter lib/libkdeinit5_khelpcenter.so libexec/khc_mansearch.pl @@ -29,37 +29,16 @@ share/doc/HTML/ca/fundamentals/toolbars-toolbar.png share/doc/HTML/ca/fundamentals/ui.docbook share/doc/HTML/ca/fundamentals/visualdict-breadcrumb.png share/doc/HTML/ca/fundamentals/visualdict-button.png -share/doc/HTML/ca/fundamentals/visualdict-central-widget.png -share/doc/HTML/ca/fundamentals/visualdict-check-box.png share/doc/HTML/ca/fundamentals/visualdict-color-selector.png share/doc/HTML/ca/fundamentals/visualdict-combo-box.png share/doc/HTML/ca/fundamentals/visualdict-context-menu.png share/doc/HTML/ca/fundamentals/visualdict-dialog-box.png share/doc/HTML/ca/fundamentals/visualdict-drop-down-box.png -share/doc/HTML/ca/fundamentals/visualdict-icon.png -share/doc/HTML/ca/fundamentals/visualdict-list-box.png -share/doc/HTML/ca/fundamentals/visualdict-panel.png -share/doc/HTML/ca/fundamentals/visualdict-progress-bar.png -share/doc/HTML/ca/fundamentals/visualdict-radio-button.png -share/doc/HTML/ca/fundamentals/visualdict-scrollbar.png -share/doc/HTML/ca/fundamentals/visualdict-slider.png -share/doc/HTML/ca/fundamentals/visualdict-spin-box.png -share/doc/HTML/ca/fundamentals/visualdict-text-area.png -share/doc/HTML/ca/fundamentals/visualdict-text-box.png -share/doc/HTML/ca/fundamentals/visualdict-toolbar.png -share/doc/HTML/ca/khelpcenter/background.png -share/doc/HTML/ca/khelpcenter/bgtable.png share/doc/HTML/ca/khelpcenter/glossary/index.cache.bz2 share/doc/HTML/ca/khelpcenter/glossary/index.docbook share/doc/HTML/ca/khelpcenter/glossary/kdeprintingglossary.docbook share/doc/HTML/ca/khelpcenter/index.cache.bz2 share/doc/HTML/ca/khelpcenter/index.docbook -share/doc/HTML/ca/khelpcenter/kdelogo2.png -share/doc/HTML/ca/khelpcenter/khelpcenter.png -share/doc/HTML/ca/khelpcenter/lines.png -share/doc/HTML/ca/khelpcenter/lines2.png -share/doc/HTML/ca/khelpcenter/pointers.png -share/doc/HTML/ca/khelpcenter/shadow1.png share/doc/HTML/ca/onlinehelp/index.cache.bz2 share/doc/HTML/ca/onlinehelp/index.docbook share/doc/HTML/de/fundamentals/config.docbook @@ -159,12 +138,40 @@ share/doc/HTML/es/fundamentals/ui.docbook share/doc/HTML/es/khelpcenter/glossary/index.cache.bz2 share/doc/HTML/es/khelpcenter/glossary/index.docbook share/doc/HTML/es/khelpcenter/glossary/kdeprintingglossary.docbook +share/doc/HTML/es/khelpcenter/index.cache.bz2 +share/doc/HTML/es/khelpcenter/index.docbook +share/doc/HTML/es/onlinehelp/index.cache.bz2 +share/doc/HTML/es/onlinehelp/index.docbook +share/doc/HTML/it/fundamentals/colors.png share/doc/HTML/it/fundamentals/config.docbook +share/doc/HTML/it/fundamentals/files-locationbar-context-menu.png +share/doc/HTML/it/fundamentals/files-open.png +share/doc/HTML/it/fundamentals/files-save.png +share/doc/HTML/it/fundamentals/find-find-inline.png +share/doc/HTML/it/fundamentals/find-find.png +share/doc/HTML/it/fundamentals/find-found.png +share/doc/HTML/it/fundamentals/find-replace-inline.png +share/doc/HTML/it/fundamentals/find-replace.png +share/doc/HTML/it/fundamentals/fonts.png share/doc/HTML/it/fundamentals/index.cache.bz2 share/doc/HTML/it/fundamentals/index.docbook share/doc/HTML/it/fundamentals/install.docbook +share/doc/HTML/it/fundamentals/menus.png +share/doc/HTML/it/fundamentals/shortcuts-schemes.png +share/doc/HTML/it/fundamentals/shortcuts-search.png +share/doc/HTML/it/fundamentals/shortcuts-set.png +share/doc/HTML/it/fundamentals/spellcheck-check.png share/doc/HTML/it/fundamentals/tasks.docbook +share/doc/HTML/it/fundamentals/toolbars-configure.png +share/doc/HTML/it/fundamentals/toolbars-toolbar.png share/doc/HTML/it/fundamentals/ui.docbook +share/doc/HTML/it/fundamentals/visualdict-gui1.png +share/doc/HTML/it/fundamentals/visualdict-gui2.png +share/doc/HTML/it/fundamentals/visualdict-gui3.png +share/doc/HTML/it/fundamentals/visualdict-gui4.png +share/doc/HTML/it/fundamentals/visualdict-panel.png +share/doc/HTML/it/fundamentals/visualdict-window.png +share/doc/HTML/it/fundamentals/visualdict-window2.png share/doc/HTML/it/khelpcenter/glossary/index.cache.bz2 share/doc/HTML/it/khelpcenter/glossary/index.docbook share/doc/HTML/it/khelpcenter/glossary/kdeprintingglossary.docbook @@ -270,7 +277,6 @@ share/doc/HTML/ru/fundamentals/ui.docbook share/doc/HTML/ru/fundamentals/visualdict-breadcrumb.png share/doc/HTML/ru/fundamentals/visualdict-button.png share/doc/HTML/ru/fundamentals/visualdict-central-widget.png -share/doc/HTML/ru/fundamentals/visualdict-check-box.png share/doc/HTML/ru/fundamentals/visualdict-color-selector.png share/doc/HTML/ru/fundamentals/visualdict-combo-box.png share/doc/HTML/ru/fundamentals/visualdict-context-menu.png @@ -281,22 +287,15 @@ share/doc/HTML/ru/fundamentals/visualdict-gui2.png share/doc/HTML/ru/fundamentals/visualdict-gui3.png share/doc/HTML/ru/fundamentals/visualdict-icon-list.png share/doc/HTML/ru/fundamentals/visualdict-icon.png -share/doc/HTML/ru/fundamentals/visualdict-list-box.png share/doc/HTML/ru/fundamentals/visualdict-menu-button.png share/doc/HTML/ru/fundamentals/visualdict-menu.png share/doc/HTML/ru/fundamentals/visualdict-menubar.png share/doc/HTML/ru/fundamentals/visualdict-panel.png -share/doc/HTML/ru/fundamentals/visualdict-progress-bar.png -share/doc/HTML/ru/fundamentals/visualdict-radio-button.png -share/doc/HTML/ru/fundamentals/visualdict-scrollbar.png -share/doc/HTML/ru/fundamentals/visualdict-slider.png -share/doc/HTML/ru/fundamentals/visualdict-spin-box.png share/doc/HTML/ru/fundamentals/visualdict-statusbar.png share/doc/HTML/ru/fundamentals/visualdict-tab.png share/doc/HTML/ru/fundamentals/visualdict-text-area.png share/doc/HTML/ru/fundamentals/visualdict-text-box.png share/doc/HTML/ru/fundamentals/visualdict-titlebar.png -share/doc/HTML/ru/fundamentals/visualdict-toolbar.png share/doc/HTML/ru/fundamentals/visualdict-tree-view.png share/doc/HTML/ru/fundamentals/visualdict-window.png share/doc/HTML/ru/fundamentals/visualdict-window2.png diff --git a/misc/khelpcenter/distinfo b/misc/khelpcenter/distinfo index 3c0ed18dd24..72c5b0bed76 100644 --- a/misc/khelpcenter/distinfo +++ b/misc/khelpcenter/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:27 markd Exp $ -SHA1 (khelpcenter-20.04.1.tar.xz) = fa509417e936ed6b8fbed802297228a5252c7830 -RMD160 (khelpcenter-20.04.1.tar.xz) = e1ad22bba999cb3f1e791716001bb84e5e176c0c -SHA512 (khelpcenter-20.04.1.tar.xz) = 84741f17a0e45629b0a2a10dae5193e0554a857883e00c098b28ccad1b868183f66ce50ec2ad8b2d68114288adb21a4ed3eea4fff389db2a88bbcb3823912b11 -Size (khelpcenter-20.04.1.tar.xz) = 3842560 bytes +SHA1 (khelpcenter-20.12.3.tar.xz) = 784cda95a9ba434c34e7f9707a24af23c61d10fc +RMD160 (khelpcenter-20.12.3.tar.xz) = 2f304206f2bc9e04b5c45c5e636ef48f4c9e2cc0 +SHA512 (khelpcenter-20.12.3.tar.xz) = 6047f7dd135a5ae8b25494d48ef36c245f9c7055eff294e5c29087d4395df656a6b4d5c6f1099cb99257628ac4362b31bb8c4278be46ebae2ae5c01261b566e0 +Size (khelpcenter-20.12.3.tar.xz) = 4250480 bytes diff --git a/misc/kidentitymanagement/Makefile b/misc/kidentitymanagement/Makefile index 92fd1a9821a..a90ef633171 100644 --- a/misc/kidentitymanagement/Makefile +++ b/misc/kidentitymanagement/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:08 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:27 markd Exp $ DISTNAME= kidentitymanagement-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/misc/kidentitymanagement/PLIST b/misc/kidentitymanagement/PLIST index 742350aaa99..314e7c0707e 100644 --- a/misc/kidentitymanagement/PLIST +++ b/misc/kidentitymanagement/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:15 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:27 markd Exp $ include/KF5/KIdentityManagement/KIdentityManagement/Identity include/KF5/KIdentityManagement/KIdentityManagement/IdentityCombo include/KF5/KIdentityManagement/KIdentityManagement/IdentityManager @@ -19,7 +19,7 @@ lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets-noconfig.cmake lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets.cmake lib/libKF5IdentityManagement.so lib/libKF5IdentityManagement.so.5 -lib/libKF5IdentityManagement.so.5.14.1 +lib/libKF5IdentityManagement.so.5.16.3 qt5/mkspecs/modules/qt_KIdentityManagement.pri share/dbus-1/interfaces/kf5_org.kde.pim.IdentityManager.xml share/locale/ar/LC_MESSAGES/libkpimidentities5.mo @@ -34,6 +34,7 @@ share/locale/en_GB/LC_MESSAGES/libkpimidentities5.mo share/locale/eo/LC_MESSAGES/libkpimidentities5.mo share/locale/es/LC_MESSAGES/libkpimidentities5.mo share/locale/et/LC_MESSAGES/libkpimidentities5.mo +share/locale/eu/LC_MESSAGES/libkpimidentities5.mo share/locale/fi/LC_MESSAGES/libkpimidentities5.mo share/locale/fr/LC_MESSAGES/libkpimidentities5.mo share/locale/ga/LC_MESSAGES/libkpimidentities5.mo diff --git a/misc/kidentitymanagement/distinfo b/misc/kidentitymanagement/distinfo index adf8ff8c7fd..a5b90f77115 100644 --- a/misc/kidentitymanagement/distinfo +++ b/misc/kidentitymanagement/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:27 markd Exp $ -SHA1 (kidentitymanagement-20.04.1.tar.xz) = c28b05528112d9708a3b7ce73c2fb7472cda791d -RMD160 (kidentitymanagement-20.04.1.tar.xz) = 6a56f535601d2fcd556900824343610233f89451 -SHA512 (kidentitymanagement-20.04.1.tar.xz) = c5506c3efa3510358163c8be87383bd201f031ef7724c082d51ae85ae6e998c2bf2d8aaa6bf12a84b31723b2a735c1fe139cfd30aa03b2faf1eeacd655bc9f5e -Size (kidentitymanagement-20.04.1.tar.xz) = 149224 bytes +SHA1 (kidentitymanagement-20.12.3.tar.xz) = e5c30151622588b6addb7485ec89df21d24cc691 +RMD160 (kidentitymanagement-20.12.3.tar.xz) = c93d458c2e750756db4061169119700547c7204f +SHA512 (kidentitymanagement-20.12.3.tar.xz) = 24ea71f45bb1dc0efcd9acc03f4a05c4558a77a24689dfc70a3dfecb8a697c7282e05e3d212466961e37661c2c8522606f909df0b750e3b203e3843ea3729e02 +Size (kidentitymanagement-20.12.3.tar.xz) = 152000 bytes diff --git a/misc/kig/Makefile b/misc/kig/Makefile index 31e0b7d6a2b..ea16addbc0c 100644 --- a/misc/kig/Makefile +++ b/misc/kig/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.57 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.58 2021/04/07 12:28:27 markd Exp $ DISTNAME= kig-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kig/ diff --git a/misc/kig/PLIST b/misc/kig/PLIST index a483560c461..675dce1e476 100644 --- a/misc/kig/PLIST +++ b/misc/kig/PLIST @@ -1,10 +1,11 @@ -@comment $NetBSD: PLIST,v 1.4 2019/11/21 06:17:29 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:27 markd Exp $ bin/kig bin/pykig.py man/ca/man1/kig.1 man/de/man1/kig.1 man/es/man1/kig.1 man/et/man1/kig.1 +man/fr/man1/kig.1 man/it/man1/kig.1 man/man1/kig.1 man/nl/man1/kig.1 @@ -379,157 +380,53 @@ share/kig/tips share/kservices5/kig_part.desktop share/kxmlgui5/kig/kigpartui.rc share/kxmlgui5/kig/kigui.rc -share/locale/ar/LC_MESSAGES/kfile_drgeo.mo -share/locale/ar/LC_MESSAGES/kfile_kig.mo share/locale/ar/LC_MESSAGES/kig.mo -share/locale/bg/LC_MESSAGES/kfile_drgeo.mo -share/locale/bg/LC_MESSAGES/kfile_kig.mo share/locale/bg/LC_MESSAGES/kig.mo -share/locale/bs/LC_MESSAGES/kfile_drgeo.mo -share/locale/bs/LC_MESSAGES/kfile_kig.mo share/locale/bs/LC_MESSAGES/kig.mo -share/locale/ca/LC_MESSAGES/kfile_drgeo.mo -share/locale/ca/LC_MESSAGES/kfile_kig.mo share/locale/ca/LC_MESSAGES/kig.mo -share/locale/ca@valencia/LC_MESSAGES/kfile_drgeo.mo -share/locale/ca@valencia/LC_MESSAGES/kfile_kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo -share/locale/cs/LC_MESSAGES/kfile_drgeo.mo -share/locale/cs/LC_MESSAGES/kfile_kig.mo share/locale/cs/LC_MESSAGES/kig.mo -share/locale/da/LC_MESSAGES/kfile_drgeo.mo -share/locale/da/LC_MESSAGES/kfile_kig.mo share/locale/da/LC_MESSAGES/kig.mo -share/locale/de/LC_MESSAGES/kfile_drgeo.mo -share/locale/de/LC_MESSAGES/kfile_kig.mo share/locale/de/LC_MESSAGES/kig.mo -share/locale/el/LC_MESSAGES/kfile_drgeo.mo -share/locale/el/LC_MESSAGES/kfile_kig.mo share/locale/el/LC_MESSAGES/kig.mo -share/locale/en_GB/LC_MESSAGES/kfile_drgeo.mo -share/locale/en_GB/LC_MESSAGES/kfile_kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo -share/locale/eo/LC_MESSAGES/kfile_drgeo.mo -share/locale/eo/LC_MESSAGES/kfile_kig.mo share/locale/eo/LC_MESSAGES/kig.mo -share/locale/es/LC_MESSAGES/kfile_drgeo.mo -share/locale/es/LC_MESSAGES/kfile_kig.mo share/locale/es/LC_MESSAGES/kig.mo -share/locale/et/LC_MESSAGES/kfile_drgeo.mo -share/locale/et/LC_MESSAGES/kfile_kig.mo share/locale/et/LC_MESSAGES/kig.mo -share/locale/eu/LC_MESSAGES/kfile_drgeo.mo -share/locale/eu/LC_MESSAGES/kfile_kig.mo share/locale/eu/LC_MESSAGES/kig.mo -share/locale/fa/LC_MESSAGES/kfile_drgeo.mo -share/locale/fa/LC_MESSAGES/kfile_kig.mo share/locale/fa/LC_MESSAGES/kig.mo -share/locale/fi/LC_MESSAGES/kfile_drgeo.mo -share/locale/fi/LC_MESSAGES/kfile_kig.mo share/locale/fi/LC_MESSAGES/kig.mo -share/locale/fr/LC_MESSAGES/kfile_drgeo.mo -share/locale/fr/LC_MESSAGES/kfile_kig.mo share/locale/fr/LC_MESSAGES/kig.mo -share/locale/ga/LC_MESSAGES/kfile_drgeo.mo -share/locale/ga/LC_MESSAGES/kfile_kig.mo share/locale/ga/LC_MESSAGES/kig.mo -share/locale/gl/LC_MESSAGES/kfile_drgeo.mo -share/locale/gl/LC_MESSAGES/kfile_kig.mo share/locale/gl/LC_MESSAGES/kig.mo -share/locale/he/LC_MESSAGES/kfile_drgeo.mo -share/locale/he/LC_MESSAGES/kfile_kig.mo -share/locale/hi/LC_MESSAGES/kfile_drgeo.mo -share/locale/hi/LC_MESSAGES/kfile_kig.mo share/locale/hi/LC_MESSAGES/kig.mo -share/locale/hr/LC_MESSAGES/kfile_drgeo.mo -share/locale/hr/LC_MESSAGES/kfile_kig.mo share/locale/hr/LC_MESSAGES/kig.mo -share/locale/hu/LC_MESSAGES/kfile_drgeo.mo -share/locale/hu/LC_MESSAGES/kfile_kig.mo share/locale/hu/LC_MESSAGES/kig.mo -share/locale/is/LC_MESSAGES/kfile_drgeo.mo -share/locale/is/LC_MESSAGES/kfile_kig.mo share/locale/is/LC_MESSAGES/kig.mo -share/locale/it/LC_MESSAGES/kfile_drgeo.mo -share/locale/it/LC_MESSAGES/kfile_kig.mo share/locale/it/LC_MESSAGES/kig.mo -share/locale/ja/LC_MESSAGES/kfile_drgeo.mo -share/locale/ja/LC_MESSAGES/kfile_kig.mo share/locale/ja/LC_MESSAGES/kig.mo -share/locale/kk/LC_MESSAGES/kfile_drgeo.mo -share/locale/kk/LC_MESSAGES/kfile_kig.mo share/locale/kk/LC_MESSAGES/kig.mo -share/locale/km/LC_MESSAGES/kfile_drgeo.mo -share/locale/km/LC_MESSAGES/kfile_kig.mo share/locale/km/LC_MESSAGES/kig.mo -share/locale/ko/LC_MESSAGES/kfile_drgeo.mo -share/locale/ko/LC_MESSAGES/kfile_kig.mo -share/locale/lt/LC_MESSAGES/kfile_drgeo.mo -share/locale/lt/LC_MESSAGES/kfile_kig.mo share/locale/lt/LC_MESSAGES/kig.mo -share/locale/lv/LC_MESSAGES/kfile_drgeo.mo -share/locale/lv/LC_MESSAGES/kfile_kig.mo share/locale/lv/LC_MESSAGES/kig.mo -share/locale/ml/LC_MESSAGES/kfile_drgeo.mo -share/locale/ml/LC_MESSAGES/kfile_kig.mo share/locale/ml/LC_MESSAGES/kig.mo -share/locale/mr/LC_MESSAGES/kfile_drgeo.mo -share/locale/mr/LC_MESSAGES/kfile_kig.mo share/locale/mr/LC_MESSAGES/kig.mo -share/locale/nb/LC_MESSAGES/kfile_drgeo.mo -share/locale/nb/LC_MESSAGES/kfile_kig.mo share/locale/nb/LC_MESSAGES/kig.mo -share/locale/nds/LC_MESSAGES/kfile_drgeo.mo -share/locale/nds/LC_MESSAGES/kfile_kig.mo share/locale/nds/LC_MESSAGES/kig.mo -share/locale/nl/LC_MESSAGES/kfile_drgeo.mo -share/locale/nl/LC_MESSAGES/kfile_kig.mo share/locale/nl/LC_MESSAGES/kig.mo -share/locale/nn/LC_MESSAGES/kfile_drgeo.mo -share/locale/nn/LC_MESSAGES/kfile_kig.mo share/locale/nn/LC_MESSAGES/kig.mo -share/locale/pa/LC_MESSAGES/kfile_drgeo.mo -share/locale/pa/LC_MESSAGES/kfile_kig.mo share/locale/pa/LC_MESSAGES/kig.mo -share/locale/pl/LC_MESSAGES/kfile_drgeo.mo -share/locale/pl/LC_MESSAGES/kfile_kig.mo share/locale/pl/LC_MESSAGES/kig.mo -share/locale/pt/LC_MESSAGES/kfile_drgeo.mo -share/locale/pt/LC_MESSAGES/kfile_kig.mo share/locale/pt/LC_MESSAGES/kig.mo -share/locale/pt_BR/LC_MESSAGES/kfile_drgeo.mo -share/locale/pt_BR/LC_MESSAGES/kfile_kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo -share/locale/ro/LC_MESSAGES/kfile_drgeo.mo -share/locale/ro/LC_MESSAGES/kfile_kig.mo share/locale/ro/LC_MESSAGES/kig.mo -share/locale/ru/LC_MESSAGES/kfile_drgeo.mo -share/locale/ru/LC_MESSAGES/kfile_kig.mo share/locale/ru/LC_MESSAGES/kig.mo -share/locale/sk/LC_MESSAGES/kfile_drgeo.mo -share/locale/sk/LC_MESSAGES/kfile_kig.mo share/locale/sk/LC_MESSAGES/kig.mo -share/locale/sl/LC_MESSAGES/kfile_drgeo.mo -share/locale/sl/LC_MESSAGES/kfile_kig.mo share/locale/sl/LC_MESSAGES/kig.mo -share/locale/sr/LC_MESSAGES/kfile_drgeo.mo -share/locale/sr/LC_MESSAGES/kfile_kig.mo -share/locale/sv/LC_MESSAGES/kfile_drgeo.mo -share/locale/sv/LC_MESSAGES/kfile_kig.mo share/locale/sv/LC_MESSAGES/kig.mo -share/locale/tr/LC_MESSAGES/kfile_drgeo.mo -share/locale/tr/LC_MESSAGES/kfile_kig.mo share/locale/tr/LC_MESSAGES/kig.mo -share/locale/ug/LC_MESSAGES/kfile_drgeo.mo -share/locale/ug/LC_MESSAGES/kfile_kig.mo share/locale/ug/LC_MESSAGES/kig.mo -share/locale/uk/LC_MESSAGES/kfile_drgeo.mo -share/locale/uk/LC_MESSAGES/kfile_kig.mo share/locale/uk/LC_MESSAGES/kig.mo -share/locale/zh_CN/LC_MESSAGES/kfile_drgeo.mo -share/locale/zh_CN/LC_MESSAGES/kfile_kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo -share/locale/zh_TW/LC_MESSAGES/kfile_drgeo.mo -share/locale/zh_TW/LC_MESSAGES/kfile_kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/metainfo/org.kde.kig.appdata.xml diff --git a/misc/kig/distinfo b/misc/kig/distinfo index 3a1655daee5..990a7522c70 100644 --- a/misc/kig/distinfo +++ b/misc/kig/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:27 markd Exp $ -SHA1 (kig-20.04.1.tar.xz) = 0d22c2918b0edf5cd095e2b1d51aed520c1dfcbc -RMD160 (kig-20.04.1.tar.xz) = d6b53db8f4ce5be2f8a963f46f5e5b3723e4769e -SHA512 (kig-20.04.1.tar.xz) = a3801243c03a08ae8f012f00e42dbbf434e2572cfcf06e163402b304ded9073ac1bfacd524aec6d50b8049bf6d490c6d78e6839d6aaba8648be87bf406a57257 -Size (kig-20.04.1.tar.xz) = 3500292 bytes +SHA1 (kig-20.12.3.tar.xz) = 750fdb63f6df71c216d7bb4931bfff6e25258e5a +RMD160 (kig-20.12.3.tar.xz) = b29cb40b3854843ba5752e40554ca05826fdb8c7 +SHA512 (kig-20.12.3.tar.xz) = 4de18bf47d532c623aa877e2d52ef3e78f9fe715b96a110eb654aca578fb1addb5aa7d8f9e8e0f54f0549954018e3d7f829f07cb41bf587da115f1a2923e5428 +Size (kig-20.12.3.tar.xz) = 3122112 bytes diff --git a/misc/kiten/Makefile b/misc/kiten/Makefile index d69e4b118ac..8c5190f7a70 100644 --- a/misc/kiten/Makefile +++ b/misc/kiten/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:30 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:27 markd Exp $ DISTNAME= kiten-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kiten/ diff --git a/misc/kiten/PLIST b/misc/kiten/PLIST index 9d143d59411..8efd4338daf 100644 --- a/misc/kiten/PLIST +++ b/misc/kiten/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2019/11/21 06:19:47 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:27 markd Exp $ bin/kiten bin/kitengen bin/kitenkanjibrowser @@ -47,6 +47,8 @@ share/doc/HTML/es/kiten/index.cache.bz2 share/doc/HTML/es/kiten/index.docbook share/doc/HTML/et/kiten/index.cache.bz2 share/doc/HTML/et/kiten/index.docbook +share/doc/HTML/fr/kiten/index.cache.bz2 +share/doc/HTML/fr/kiten/index.docbook share/doc/HTML/it/kiten/index.cache.bz2 share/doc/HTML/it/kiten/index.docbook share/doc/HTML/nl/kiten/index.cache.bz2 diff --git a/misc/kiten/distinfo b/misc/kiten/distinfo index e9495758981..c82e70bcda8 100644 --- a/misc/kiten/distinfo +++ b/misc/kiten/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:27 markd Exp $ -SHA1 (kiten-20.04.1.tar.xz) = c795d31631552ff346ab8fc709c7ce00dec51252 -RMD160 (kiten-20.04.1.tar.xz) = a50a2fb1e947609c02948abb4a575f51b82a806b -SHA512 (kiten-20.04.1.tar.xz) = e78697baeb88fcee9abe3c0b27336786cf28ede45c39c943817c41d51d7c8e66137834429fafafa8a9523cb63b0cfe754f9ceedcfea924287b479cd1a366c14c -Size (kiten-20.04.1.tar.xz) = 11282712 bytes +SHA1 (kiten-20.12.3.tar.xz) = 0a305981cb346cad2845a0f69752e4d7243a6b09 +RMD160 (kiten-20.12.3.tar.xz) = aa6a26a2dfb886a6a48472ca9984febf3c6cea4f +SHA512 (kiten-20.12.3.tar.xz) = f9801aa1bb8eb5a7021f6ee8a5daff3a4b3cfa9e36166e4a4b4ab5407ed7557b3a75fc1cba4e79f80fb1b0f93633f1066116129f2250adcd9756b98745fd9209 +Size (kiten-20.12.3.tar.xz) = 11298492 bytes diff --git a/misc/klettres/Makefile b/misc/klettres/Makefile index 9fcde296059..50a76a16ad7 100644 --- a/misc/klettres/Makefile +++ b/misc/klettres/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:27 markd Exp $ DISTNAME= klettres-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/klettres/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/klettres.knsrc \ - ${PKG_SYSCONFDIR}/xdg/klettres.knsrc - .include "../../net/knewstuff/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" diff --git a/misc/klettres/PLIST b/misc/klettres/PLIST index 9e0966fc0eb..a6af901e22f 100644 --- a/misc/klettres/PLIST +++ b/misc/klettres/PLIST @@ -1,9 +1,16 @@ -@comment $NetBSD: PLIST,v 1.4 2019/11/21 06:21:42 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:27 markd Exp $ bin/klettres share/applications/org.kde.klettres.desktop share/config.kcfg/klettres.kcfg share/doc/HTML/ca/klettres/index.cache.bz2 share/doc/HTML/ca/klettres/index.docbook +share/doc/HTML/ca/klettres/klettres-newstuff.png +share/doc/HTML/ca/klettres/klettres-newstuff2.png +share/doc/HTML/ca/klettres/klettres1.png +share/doc/HTML/ca/klettres/klettres2.png +share/doc/HTML/ca/klettres/klettres3.png +share/doc/HTML/ca/klettres/klettres4.png +share/doc/HTML/ca/klettres/klettres5.png share/doc/HTML/de/klettres/index.cache.bz2 share/doc/HTML/de/klettres/index.docbook share/doc/HTML/de/klettres/klettres-newstuff.png @@ -66,7 +73,6 @@ share/doc/HTML/sv/klettres/klettres6.png share/doc/HTML/uk/klettres/index.cache.bz2 share/doc/HTML/uk/klettres/index.docbook share/doc/HTML/uk/klettres/klettres-newstuff.png -share/doc/HTML/uk/klettres/klettres-newstuff1.png share/doc/HTML/uk/klettres/klettres-newstuff2.png share/doc/HTML/uk/klettres/klettres1.png share/doc/HTML/uk/klettres/klettres2.png @@ -74,7 +80,6 @@ share/doc/HTML/uk/klettres/klettres3.png share/doc/HTML/uk/klettres/klettres4.png share/doc/HTML/uk/klettres/klettres5.png share/doc/HTML/uk/klettres/klettres6.png -share/examples/kde-xdg/klettres.knsrc share/icons/hicolor/128x128/apps/klettres.png share/icons/hicolor/16x16/apps/klettres.png share/icons/hicolor/22x22/apps/klettres.png @@ -740,6 +745,115 @@ share/klettres/icons/hicolor/48x48/actions/klettres_kids.png share/klettres/icons/hicolor/64x64/actions/klettres_desert.png share/klettres/icons/hicolor/64x64/actions/klettres_grownup.png share/klettres/icons/hicolor/64x64/actions/klettres_kids.png +share/klettres/id/alpha/a.wav +share/klettres/id/alpha/b.wav +share/klettres/id/alpha/c.wav +share/klettres/id/alpha/d.wav +share/klettres/id/alpha/e.wav +share/klettres/id/alpha/f.wav +share/klettres/id/alpha/g.wav +share/klettres/id/alpha/h.wav +share/klettres/id/alpha/i.wav +share/klettres/id/alpha/j.wav +share/klettres/id/alpha/k.wav +share/klettres/id/alpha/l.wav +share/klettres/id/alpha/m.wav +share/klettres/id/alpha/n.wav +share/klettres/id/alpha/o.wav +share/klettres/id/alpha/p.wav +share/klettres/id/alpha/q.wav +share/klettres/id/alpha/r.wav +share/klettres/id/alpha/s.wav +share/klettres/id/alpha/t.wav +share/klettres/id/alpha/u.wav +share/klettres/id/alpha/v.wav +share/klettres/id/alpha/w.wav +share/klettres/id/alpha/x.wav +share/klettres/id/alpha/y.wav +share/klettres/id/alpha/z.wav +share/klettres/id/sounds.xml +share/klettres/id/syllab/ba.wav +share/klettres/id/syllab/be.wav +share/klettres/id/syllab/bi.wav +share/klettres/id/syllab/bo.wav +share/klettres/id/syllab/bu.wav +share/klettres/id/syllab/ca.wav +share/klettres/id/syllab/ce.wav +share/klettres/id/syllab/co.wav +share/klettres/id/syllab/cu.wav +share/klettres/id/syllab/da.wav +share/klettres/id/syllab/de.wav +share/klettres/id/syllab/di.wav +share/klettres/id/syllab/do.wav +share/klettres/id/syllab/du.wav +share/klettres/id/syllab/fa.wav +share/klettres/id/syllab/fe.wav +share/klettres/id/syllab/fi.wav +share/klettres/id/syllab/fo.wav +share/klettres/id/syllab/fu.wav +share/klettres/id/syllab/ga.wav +share/klettres/id/syllab/go.wav +share/klettres/id/syllab/gu.wav +share/klettres/id/syllab/ja.wav +share/klettres/id/syllab/je.wav +share/klettres/id/syllab/ji.wav +share/klettres/id/syllab/jo.wav +share/klettres/id/syllab/ju.wav +share/klettres/id/syllab/la.wav +share/klettres/id/syllab/le.wav +share/klettres/id/syllab/li.wav +share/klettres/id/syllab/lo.wav +share/klettres/id/syllab/lu.wav +share/klettres/id/syllab/ma.wav +share/klettres/id/syllab/me.wav +share/klettres/id/syllab/mi.wav +share/klettres/id/syllab/mo.wav +share/klettres/id/syllab/mu.wav +share/klettres/id/syllab/na.wav +share/klettres/id/syllab/ne.wav +share/klettres/id/syllab/ni.wav +share/klettres/id/syllab/no.wav +share/klettres/id/syllab/nu.wav +share/klettres/id/syllab/pa.wav +share/klettres/id/syllab/pe.wav +share/klettres/id/syllab/pi.wav +share/klettres/id/syllab/po.wav +share/klettres/id/syllab/pu.wav +share/klettres/id/syllab/ra.wav +share/klettres/id/syllab/re.wav +share/klettres/id/syllab/ri.wav +share/klettres/id/syllab/ro.wav +share/klettres/id/syllab/ru.wav +share/klettres/id/syllab/sa.wav +share/klettres/id/syllab/se.wav +share/klettres/id/syllab/si.wav +share/klettres/id/syllab/so.wav +share/klettres/id/syllab/su.wav +share/klettres/id/syllab/ta.wav +share/klettres/id/syllab/te.wav +share/klettres/id/syllab/ti.wav +share/klettres/id/syllab/to.wav +share/klettres/id/syllab/tu.wav +share/klettres/id/syllab/va.wav +share/klettres/id/syllab/ve.wav +share/klettres/id/syllab/vi.wav +share/klettres/id/syllab/vo.wav +share/klettres/id/syllab/vu.wav +share/klettres/id/syllab/wa.wav +share/klettres/id/syllab/we.wav +share/klettres/id/syllab/wi.wav +share/klettres/id/syllab/wo.wav +share/klettres/id/syllab/wu.wav +share/klettres/id/syllab/ya.wav +share/klettres/id/syllab/ye.wav +share/klettres/id/syllab/yi.wav +share/klettres/id/syllab/yo.wav +share/klettres/id/syllab/yu.wav +share/klettres/id/syllab/za.wav +share/klettres/id/syllab/ze.wav +share/klettres/id/syllab/zi.wav +share/klettres/id/syllab/zo.wav +share/klettres/id/syllab/zu.wav share/klettres/it/alpha/a.ogg share/klettres/it/alpha/b.ogg share/klettres/it/alpha/c.ogg @@ -1927,6 +2041,7 @@ share/klettres/uk/syllab/zhy.ogg share/klettres/uk/syllab/zhyt.ogg share/klettres/uk/syllab/zmi.ogg share/klettres/uk/syllab/zyk.ogg +share/knsrcfiles/klettres.knsrc share/kxmlgui5/klettres/klettresui.rc share/locale/ar/LC_MESSAGES/klettres.mo share/locale/bg/LC_MESSAGES/klettres.mo diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index d4c44fd48c7..fd73866698f 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:27 markd Exp $ -SHA1 (klettres-20.04.1.tar.xz) = 1c91be0dc6e206f397699621dc4e16912d2b8204 -RMD160 (klettres-20.04.1.tar.xz) = 5eb2a53b134ef9ac0498303bbf008afd86a213c7 -SHA512 (klettres-20.04.1.tar.xz) = c155eb7aece8dacf95f478d0214bdf1530fe053f1cc00c9be995cf2cda12ef442ab3c3f86a50b4f8ff49dcee863254200b2ac2d87980abdfe47db234158ae04c -Size (klettres-20.04.1.tar.xz) = 40137668 bytes +SHA1 (klettres-20.12.3.tar.xz) = 2579ea5d6e5e10f60bb303158a9cab9b35f56d96 +RMD160 (klettres-20.12.3.tar.xz) = 2c9e78adcbb8272aaeeacdfdced0d0673b4dfb7e +SHA512 (klettres-20.12.3.tar.xz) = 89e3b72f07f3594b83909e0cfb719a074d999a4ffc253d340d018ab3523293b41605d66fa3f0474974d9a9f0aab57c7bd443cbf58968495ccb69598e6f0da094 +Size (klettres-20.12.3.tar.xz) = 47059092 bytes diff --git a/misc/kmag/Makefile b/misc/kmag/Makefile index c433d9b713e..498cdaa6db3 100644 --- a/misc/kmag/Makefile +++ b/misc/kmag/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:27 markd Exp $ DISTNAME= kmag-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/utilities/kmag/ diff --git a/misc/kmag/PLIST b/misc/kmag/PLIST index 57f47647411..5553a27bde8 100644 --- a/misc/kmag/PLIST +++ b/misc/kmag/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:15 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:27 markd Exp $ bin/kmag man/ca/man1/kmag.1 man/de/man1/kmag.1 @@ -30,6 +30,9 @@ share/doc/HTML/fr/kmag/index.docbook share/doc/HTML/fr/kmag/screenshot.png share/doc/HTML/it/kmag/index.cache.bz2 share/doc/HTML/it/kmag/index.docbook +share/doc/HTML/it/kmag/screenshot.png +share/doc/HTML/ko/kmag/index.cache.bz2 +share/doc/HTML/ko/kmag/index.docbook share/doc/HTML/nl/kmag/index.cache.bz2 share/doc/HTML/nl/kmag/index.docbook share/doc/HTML/nl/kmag/screenshot.png @@ -38,6 +41,8 @@ share/doc/HTML/pt/kmag/index.docbook share/doc/HTML/pt_BR/kmag/index.cache.bz2 share/doc/HTML/pt_BR/kmag/index.docbook share/doc/HTML/pt_BR/kmag/screenshot.png +share/doc/HTML/ru/kmag/index.cache.bz2 +share/doc/HTML/ru/kmag/index.docbook share/doc/HTML/sv/kmag/index.cache.bz2 share/doc/HTML/sv/kmag/index.docbook share/doc/HTML/sv/kmag/screenshot.png diff --git a/misc/kmag/distinfo b/misc/kmag/distinfo index 7bb35550e47..19e8ce85de3 100644 --- a/misc/kmag/distinfo +++ b/misc/kmag/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.15 2021/04/07 12:28:27 markd Exp $ -SHA1 (kmag-20.04.1.tar.xz) = 9155802f04ec28a1a414d7e8cb7f7987ac4872ee -RMD160 (kmag-20.04.1.tar.xz) = 6e0f3430bc0e57129edb2057faad4bf1e3f5f4ea -SHA512 (kmag-20.04.1.tar.xz) = ab1eb2c157a8d9d997f2b6cc6ffb865a66a7048d134774da087801075ea95ffab6d7359e1d2d7cf0eb20ab7645ffee1b5d562b8960dc1c4fc68dc096fa763c2a -Size (kmag-20.04.1.tar.xz) = 674652 bytes +SHA1 (kmag-20.12.3.tar.xz) = 792066198c17e6d83c5ce4c1ebb77d09fc8c65ef +RMD160 (kmag-20.12.3.tar.xz) = 290b1e1165b74db7609311af04fcf0d21507650b +SHA512 (kmag-20.12.3.tar.xz) = 6c80bbb0ef4e54ad9f4cd6275da7cdfb878d93f8826e78ea68d1330ca75e438474b0f288a676f544feac144a8190fcace37e53f94752ab40fdf93373c1aa1be0 +Size (kmag-20.12.3.tar.xz) = 700412 bytes diff --git a/misc/kmousetool/Makefile b/misc/kmousetool/Makefile index b8a613faa17..9ace200be6e 100644 --- a/misc/kmousetool/Makefile +++ b/misc/kmousetool/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.56 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2021/04/07 12:28:28 markd Exp $ DISTNAME= kmousetool-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/utilities/kmousetool/ diff --git a/misc/kmousetool/distinfo b/misc/kmousetool/distinfo index 6cd9d9e6f02..a973e6abe5c 100644 --- a/misc/kmousetool/distinfo +++ b/misc/kmousetool/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.15 2021/04/07 12:28:28 markd Exp $ -SHA1 (kmousetool-20.04.1.tar.xz) = 49504e7ed474f568cd0c29bfc76c41a7194cc6d6 -RMD160 (kmousetool-20.04.1.tar.xz) = 513b438129a86acd597e50ae160fe2d8cb8fb4f7 -SHA512 (kmousetool-20.04.1.tar.xz) = b4a349ae6f8ae7fc036e27e76d45ccfd80052aa88865d9b6e4cde6541b62be8ab427623106b813dcba322eb633a52c479439e764b40489ffdc3db2e2c6fdbc2d -Size (kmousetool-20.04.1.tar.xz) = 113716 bytes +SHA1 (kmousetool-20.12.3.tar.xz) = 5a3c46d03265b655300784652174092bc8255f97 +RMD160 (kmousetool-20.12.3.tar.xz) = 61502d07a096903d0158d85797215dc3608f3ebc +SHA512 (kmousetool-20.12.3.tar.xz) = 8b0d7a4c9a83a4b4c0fdc97016356f1aca195c6728802b182491421a71fb9dedf41bf4f8e5c4e0f2042cd46d972fa07492911844251117fc821a37ad03663c1d +Size (kmousetool-20.12.3.tar.xz) = 116760 bytes diff --git a/misc/kmouth/Makefile b/misc/kmouth/Makefile index 7fadd93ffdc..8a5e0673a60 100644 --- a/misc/kmouth/Makefile +++ b/misc/kmouth/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:28 markd Exp $ DISTNAME= kmouth-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/utilities/kmouth/ diff --git a/misc/kmouth/PLIST b/misc/kmouth/PLIST index 0332b56c0fb..a4d2f7cf502 100644 --- a/misc/kmouth/PLIST +++ b/misc/kmouth/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:15 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:28 markd Exp $ bin/kmouth man/ca/man1/kmouth.1 man/da/man1/kmouth.1 @@ -11,6 +11,7 @@ man/man1/kmouth.1 man/nl/man1/kmouth.1 man/pt/man1/kmouth.1 man/pt_BR/man1/kmouth.1 +man/ru/man1/kmouth.1 man/sv/man1/kmouth.1 man/uk/man1/kmouth.1 share/applications/org.kde.kmouth.desktop @@ -54,6 +55,14 @@ share/doc/HTML/fr/kmouth/kmouthmain.png share/doc/HTML/fr/kmouth/kmouthwizard.png share/doc/HTML/it/kmouth/index.cache.bz2 share/doc/HTML/it/kmouth/index.docbook +share/doc/HTML/it/kmouth/kmouthcpref.png +share/doc/HTML/it/kmouth/kmouthctts.png +share/doc/HTML/it/kmouth/kmouthcwcp.png +share/doc/HTML/it/kmouth/kmouthedit.png +share/doc/HTML/it/kmouth/kmouthmain.png +share/doc/HTML/it/kmouth/kmouthwizard1.png +share/doc/HTML/it/kmouth/kmouthwizard2.png +share/doc/HTML/it/kmouth/kmouthwizard3.png share/doc/HTML/nl/kmouth/index.cache.bz2 share/doc/HTML/nl/kmouth/index.docbook share/doc/HTML/nl/kmouth/kmouthcpref.png @@ -74,6 +83,8 @@ share/doc/HTML/pt_BR/kmouth/kmouthmain.png share/doc/HTML/pt_BR/kmouth/kmouthwizard1.png share/doc/HTML/pt_BR/kmouth/kmouthwizard2.png share/doc/HTML/pt_BR/kmouth/kmouthwizard3.png +share/doc/HTML/ru/kmouth/index.cache.bz2 +share/doc/HTML/ru/kmouth/index.docbook share/doc/HTML/sv/kmouth/index.cache.bz2 share/doc/HTML/sv/kmouth/index.docbook share/doc/HTML/sv/kmouth/kmouthcpref.png diff --git a/misc/kmouth/distinfo b/misc/kmouth/distinfo index 3007cda7633..5ea1b770594 100644 --- a/misc/kmouth/distinfo +++ b/misc/kmouth/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:28 markd Exp $ -SHA1 (kmouth-20.04.1.tar.xz) = d2011501bc85f4274101bf0fbb2a949e8024b630 -RMD160 (kmouth-20.04.1.tar.xz) = 36ae4e0baead540d7fcf6fa86db4e991f0908540 -SHA512 (kmouth-20.04.1.tar.xz) = 5b4333cc2b57c88b73dc35b6fb23c90066c0f956ef4a19a6c517b1f283d44065bde49bf3f873565eb10745b6502e84462d3d96f618605800d883053b1fcabb39 -Size (kmouth-20.04.1.tar.xz) = 1964488 bytes +SHA1 (kmouth-20.12.3.tar.xz) = 2a90fbb85158f3a12ff075556a7ac849cf7b1d44 +RMD160 (kmouth-20.12.3.tar.xz) = a02b5504ac2e036eb9ef5c2dfe0fa1d79569a7e3 +SHA512 (kmouth-20.12.3.tar.xz) = 2e9966dc0aee562bca227570b2f27789f1b15b41bec581f4fff99de43b9dc01ba088d9dd54968c9b4331c0977de67f8328eb40651ab02262db2ec61022a170b4 +Size (kmouth-20.12.3.tar.xz) = 2086596 bytes diff --git a/misc/kteatime/Makefile b/misc/kteatime/Makefile index 5640598a2d4..06145537053 100644 --- a/misc/kteatime/Makefile +++ b/misc/kteatime/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.37 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.38 2021/04/07 12:28:28 markd Exp $ DISTNAME= kteatime-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/games/kteatime/ diff --git a/misc/kteatime/PLIST b/misc/kteatime/PLIST index a56ddd4ea69..de821b8023d 100644 --- a/misc/kteatime/PLIST +++ b/misc/kteatime/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/11/24 03:54:19 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:28 markd Exp $ bin/kteatime share/applications/org.kde.kteatime.desktop share/doc/HTML/ca/kteatime/index.cache.bz2 @@ -11,6 +11,9 @@ share/doc/HTML/en/kteatime/index.cache.bz2 share/doc/HTML/en/kteatime/index.docbook share/doc/HTML/es/kteatime/index.cache.bz2 share/doc/HTML/es/kteatime/index.docbook +share/doc/HTML/fr/kteatime/config.png +share/doc/HTML/fr/kteatime/index.cache.bz2 +share/doc/HTML/fr/kteatime/index.docbook share/doc/HTML/it/kteatime/index.cache.bz2 share/doc/HTML/it/kteatime/index.docbook share/doc/HTML/nl/kteatime/index.cache.bz2 diff --git a/misc/kteatime/distinfo b/misc/kteatime/distinfo index 96272412d88..fd4251836ef 100644 --- a/misc/kteatime/distinfo +++ b/misc/kteatime/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:15 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:28 markd Exp $ -SHA1 (kteatime-20.04.1.tar.xz) = 057cc76f2b7f9100dfc79ce658e02803d6766797 -RMD160 (kteatime-20.04.1.tar.xz) = 0392b401e386a7e8871bca6e82be224552666dc3 -SHA512 (kteatime-20.04.1.tar.xz) = c0079a1df57dac090d8a33fbde270b5831dda918c51c4c339a9a557b3373b6d7cb36520a328bb8b16d97034d24c425571e823036b08f81236503812b5003e05d -Size (kteatime-20.04.1.tar.xz) = 287152 bytes +SHA1 (kteatime-20.12.3.tar.xz) = 1c3f2a2ef6a4f7406f004d7bdb96a01e5e3a7dd5 +RMD160 (kteatime-20.12.3.tar.xz) = f7b5917fa2c6d993378a5d13d3af2abd7b09fdb0 +SHA512 (kteatime-20.12.3.tar.xz) = 98d6e376b4ffd156ff0b88d1b1f5574361cb9f92ce4365df62adc408a85c38aa965455db5088a86505a7139af690e9a3fcab4d06d5827470f28ce05e1da82eeb +Size (kteatime-20.12.3.tar.xz) = 294280 bytes diff --git a/misc/ktouch/Makefile b/misc/ktouch/Makefile index e3c4cb88fb4..d1794795e1b 100644 --- a/misc/ktouch/Makefile +++ b/misc/ktouch/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.55 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.56 2021/04/07 12:28:28 markd Exp $ DISTNAME= ktouch-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/ktouch/ diff --git a/misc/ktouch/PLIST b/misc/ktouch/PLIST index ec0181bb1cd..13d466f69e2 100644 --- a/misc/ktouch/PLIST +++ b/misc/ktouch/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2019/11/21 06:29:03 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:28 markd Exp $ bin/ktouch man/ca/man1/ktouch.1 man/de/man1/ktouch.1 @@ -272,6 +272,7 @@ share/locale/he/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktouch.mo share/locale/hr/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktouch.mo +share/locale/ia/LC_MESSAGES/ktouch.mo share/locale/is/LC_MESSAGES/ktouch.mo share/locale/it/LC_MESSAGES/ktouch.mo share/locale/ja/LC_MESSAGES/ktouch.mo diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 60d400ba960..9016682e877 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:28 markd Exp $ -SHA1 (ktouch-20.04.1.tar.xz) = 6bc7ba5a4ef49bd75dfbc8736d9fd893edffa1be -RMD160 (ktouch-20.04.1.tar.xz) = 6a4d7e2ee37866669d5782c84a5055280dd2a94d -SHA512 (ktouch-20.04.1.tar.xz) = 5953846e50259eaa2efa9c40afdce0d7c23458ea76225409d1a6a9574d80763d0686e54740427fc48de90b0cbde697fd2caea85a305b3814d52ff8a5fe8371e6 -Size (ktouch-20.04.1.tar.xz) = 4936708 bytes +SHA1 (ktouch-20.12.3.tar.xz) = 60843788acc2219c456cfcb86727b41e9665bd39 +RMD160 (ktouch-20.12.3.tar.xz) = 2307e2e3d52f477bdc1028ee28f7018c35e48707 +SHA512 (ktouch-20.12.3.tar.xz) = 33041f31a910182969f20c98e33393cb53142e0ae69fb5717d1d235a3006ee931734a50a77f9d0336b801984ae0ba3e7295f46de82ffda90fa3003a0634ba968 +Size (ktouch-20.12.3.tar.xz) = 4942444 bytes diff --git a/misc/kturtle/Makefile b/misc/kturtle/Makefile index 9bdaf08b207..179355271ff 100644 --- a/misc/kturtle/Makefile +++ b/misc/kturtle/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:28 markd Exp $ DISTNAME= kturtle-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kturtle/ diff --git a/misc/kturtle/PLIST b/misc/kturtle/PLIST index 78a05055243..412f0a5d556 100644 --- a/misc/kturtle/PLIST +++ b/misc/kturtle/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/21 06:31:16 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:28 markd Exp $ bin/kturtle share/applications/org.kde.kturtle.desktop share/doc/HTML/ca/kturtle/getting-started.docbook @@ -54,6 +54,13 @@ share/doc/HTML/fr/kturtle/mainwindow_flower_nrs.png share/doc/HTML/fr/kturtle/programming-reference.docbook share/doc/HTML/fr/kturtle/translator-guide.docbook share/doc/HTML/fr/kturtle/using-kturtle.docbook +share/doc/HTML/gl/kturtle/getting-started.docbook +share/doc/HTML/gl/kturtle/glossary.docbook +share/doc/HTML/gl/kturtle/index.cache.bz2 +share/doc/HTML/gl/kturtle/index.docbook +share/doc/HTML/gl/kturtle/programming-reference.docbook +share/doc/HTML/gl/kturtle/translator-guide.docbook +share/doc/HTML/gl/kturtle/using-kturtle.docbook share/doc/HTML/it/kturtle/getting-started.docbook share/doc/HTML/it/kturtle/glossary.docbook share/doc/HTML/it/kturtle/index.cache.bz2 diff --git a/misc/kturtle/distinfo b/misc/kturtle/distinfo index 82d2444fb80..25568ac285d 100644 --- a/misc/kturtle/distinfo +++ b/misc/kturtle/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:28 markd Exp $ -SHA1 (kturtle-20.04.1.tar.xz) = d83e8ec91228b8776c0b1c1beb583f42aa4267d0 -RMD160 (kturtle-20.04.1.tar.xz) = 1c40da4cba0f57da1a538433985385ff2ec967bd -SHA512 (kturtle-20.04.1.tar.xz) = e170458f478aa4a144276a08612cc090ab795b7fd284f1d96d05b5288f4498eb3357a10ff00db1cdae87dc6a2ae10b6db64d489ab29f0c0d7e47aa42c1cc97c8 -Size (kturtle-20.04.1.tar.xz) = 1833764 bytes +SHA1 (kturtle-20.12.3.tar.xz) = a18524fb38fb5cac8af542cfd794d53a029dc935 +RMD160 (kturtle-20.12.3.tar.xz) = 6679d57fc41f1692113c7f7af3431cc8b7d8cde2 +SHA512 (kturtle-20.12.3.tar.xz) = a24ed68ca908693b76cfac731c39fc51579c3a26eddb08800ec8064091c7a00b5964078546754524d739d89ebcb11966d1246bd0044aef0b6167fc3094c57570 +Size (kturtle-20.12.3.tar.xz) = 1837380 bytes diff --git a/misc/kwordquiz/Makefile b/misc/kwordquiz/Makefile index b6a01d9419c..346f187a5f6 100644 --- a/misc/kwordquiz/Makefile +++ b/misc/kwordquiz/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:31 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:28 markd Exp $ DISTNAME= kwordquiz-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/kwordquiz/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kwordquiz.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kwordquiz.knsrc - .include "../../devel/knotifyconfig/buildlink3.mk" .include "../../misc/libkeduvocdocument/buildlink3.mk" .include "../../net/knewstuff/buildlink3.mk" diff --git a/misc/kwordquiz/PLIST b/misc/kwordquiz/PLIST index cd255ee914e..c8069f6dde0 100644 --- a/misc/kwordquiz/PLIST +++ b/misc/kwordquiz/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2019/11/21 06:09:54 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:28 markd Exp $ bin/kwordquiz share/applications/org.kde.kwordquiz.desktop share/config.kcfg/kwordquiz.kcfg @@ -66,6 +66,8 @@ share/doc/HTML/et/kwordquiz/index.cache.bz2 share/doc/HTML/et/kwordquiz/index.docbook share/doc/HTML/it/kwordquiz/index.cache.bz2 share/doc/HTML/it/kwordquiz/index.docbook +share/doc/HTML/ko/kwordquiz/index.cache.bz2 +share/doc/HTML/ko/kwordquiz/index.docbook share/doc/HTML/nl/kwordquiz/index.cache.bz2 share/doc/HTML/nl/kwordquiz/index.docbook share/doc/HTML/pt/kwordquiz/index.cache.bz2 @@ -107,7 +109,6 @@ share/doc/HTML/uk/kwordquiz/kwq-tutor-popup-native.png share/doc/HTML/uk/kwordquiz/kwq-tutor-settings.png share/doc/HTML/uk/kwordquiz/kwq-tutor-shortcuts.png share/doc/HTML/uk/kwordquiz/kwq-tutor-welcome.png -share/examples/kde-xdg/kwordquiz.knsrc share/icons/hicolor/128x128/apps/kwordquiz.png share/icons/hicolor/128x128/mimetypes/application-x-kwordquiz.png share/icons/hicolor/16x16/apps/kwordquiz.png @@ -120,6 +121,7 @@ share/icons/hicolor/48x48/apps/kwordquiz.png share/icons/hicolor/48x48/mimetypes/application-x-kwordquiz.png share/icons/hicolor/64x64/apps/kwordquiz.png share/knotifications5/kwordquiz.notifyrc +share/knsrcfiles/kwordquiz.knsrc share/kwordquiz/examples/example.kvtml share/kwordquiz/examples/fill_in_the_blank.kvtml share/kwordquiz/examples/french_verbs.kvtml @@ -295,6 +297,7 @@ share/locale/gl/LC_MESSAGES/kwordquiz.mo share/locale/hi/LC_MESSAGES/kwordquiz.mo share/locale/hr/LC_MESSAGES/kwordquiz.mo share/locale/hu/LC_MESSAGES/kwordquiz.mo +share/locale/ia/LC_MESSAGES/kwordquiz.mo share/locale/it/LC_MESSAGES/kwordquiz.mo share/locale/ja/LC_MESSAGES/kwordquiz.mo share/locale/kk/LC_MESSAGES/kwordquiz.mo diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 0fc49e14cc0..54e71811f97 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:28 markd Exp $ -SHA1 (kwordquiz-20.04.1.tar.xz) = d2dacf3c162f37be96e9b744e3d4da2cfa9b3ffb -RMD160 (kwordquiz-20.04.1.tar.xz) = 5ef14f77b3aa274162e565f60262d2b24641e6c4 -SHA512 (kwordquiz-20.04.1.tar.xz) = a7bf05a7b9e552a5d112fb8acb24954b7047f2c8b617366c4945292d73a839fe6487d88b0d1ff080e2b094c0e3bb75c0e8de58c83d5819132d0d825756e0483d -Size (kwordquiz-20.04.1.tar.xz) = 4175624 bytes +SHA1 (kwordquiz-20.12.3.tar.xz) = 64f2ba1b5f1ca02c277c28e9f35f459cda081d16 +RMD160 (kwordquiz-20.12.3.tar.xz) = e42c3737b2e7c02e186e67dc1317c986186f1812 +SHA512 (kwordquiz-20.12.3.tar.xz) = 2192c8e0b9bdd9d26ed5b0596baa208450bf31b89855c106c125b63465ec505e61e180bc05d60c36809ac93cc31cc9ef814e3636d8a7833909332755aced3872 +Size (kwordquiz-20.12.3.tar.xz) = 4187776 bytes diff --git a/misc/libkeduvocdocument/Makefile b/misc/libkeduvocdocument/Makefile index 4729d7be6e6..fb8d3041431 100644 --- a/misc/libkeduvocdocument/Makefile +++ b/misc/libkeduvocdocument/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:28 markd Exp $ DISTNAME= libkeduvocdocument-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/ diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index dcb45476c02..004ffc087dd 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:28 markd Exp $ -SHA1 (libkeduvocdocument-20.04.1.tar.xz) = 7da81c45c0939d04e59aea838fb737fc98d855e6 -RMD160 (libkeduvocdocument-20.04.1.tar.xz) = 32396b0875e236960d42ee4589e33258adb9fc44 -SHA512 (libkeduvocdocument-20.04.1.tar.xz) = 22e76b1608567eb008e88ad99e823975f26cddd5b20a270db05c30658a554c53c56833ed3c5153dd6c85e649fa4d5f2a8f0741c9223165c19fd35b7515fe42ca -Size (libkeduvocdocument-20.04.1.tar.xz) = 206776 bytes +SHA1 (libkeduvocdocument-20.12.3.tar.xz) = b15cb1fe9aee48a07dea5fdd0bee1cdaa1698338 +RMD160 (libkeduvocdocument-20.12.3.tar.xz) = 0ae8b3d8594eb655f1d2a3f04e3b61d4c1304dfc +SHA512 (libkeduvocdocument-20.12.3.tar.xz) = 6ae7dfe1e22c0d412efe3c2d10f879b2fa9f853c4f9bcc41a86f4ad0d6031a8be57423cfb7b8badd666cff7666cfff535017882231d589e00d1ceddca6c59684 +Size (libkeduvocdocument-20.12.3.tar.xz) = 211096 bytes diff --git a/misc/marble/Makefile b/misc/marble/Makefile index b9189f31043..6105bdf2a7e 100644 --- a/misc/marble/Makefile +++ b/misc/marble/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2021/03/30 09:08:58 markd Exp $ +# $NetBSD: Makefile,v 1.65 2021/04/07 12:28:28 markd Exp $ DISTNAME= marble-${KAPPSVER} -PKGREVISION= 10 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/system/marble/ @@ -24,18 +23,9 @@ SUBST_FILES.fix-moc= _KDE_build/src/apps/*/CMakeFiles/*_autogen.dir/AutogenInfo. SUBST_NOOP_OK.fix-moc= yes SUBST_SED.fix-moc= -e 's;"${PREFIX}/include",;;g' -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/apps/marble-kde/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/marble.knsrc \ - ${PKG_SYSCONFDIR}/xdg/marble.knsrc - .include "../../devel/kparts/buildlink3.mk" .include "../../devel/krunner/buildlink3.mk" +.include "../../devel/protobuf/buildlink3.mk" .include "../../geography/gpsd/buildlink3.mk" .include "../../geography/shapelib/buildlink3.mk" .include "../../net/knewstuff/buildlink3.mk" diff --git a/misc/marble/PLIST b/misc/marble/PLIST index 318131e1c26..da37f30e14b 100644 --- a/misc/marble/PLIST +++ b/misc/marble/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2021/03/30 09:08:58 markd Exp $ +@comment $NetBSD: PLIST,v 1.10 2021/04/07 12:28:28 markd Exp $ bin/marble bin/marble-qt include/astro/astr2lib.h @@ -28,6 +28,7 @@ include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h +include/marble/FileManager.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h @@ -180,68 +181,68 @@ lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.0.28.0 lib/libmarblewidget-qt5.so.28 -lib/marble/plugins/libAnnotatePlugin.so -lib/marble/plugins/libAprsPlugin.so -lib/marble/plugins/libAtmospherePlugin.so -lib/marble/plugins/libCachePlugin.so -lib/marble/plugins/libCompassFloatItem.so -lib/marble/plugins/libCrosshairsPlugin.so -lib/marble/plugins/libCycleStreetsPlugin.so -lib/marble/plugins/libEarthquakePlugin.so -lib/marble/plugins/libEclipsesPlugin.so -lib/marble/plugins/libElevationProfileFloatItem.so -lib/marble/plugins/libElevationProfileMarker.so -lib/marble/plugins/libFlightGearPositionProviderPlugin.so -lib/marble/plugins/libFoursquarePlugin.so -lib/marble/plugins/libGeoUriPlugin.so -lib/marble/plugins/libGosmoreReverseGeocodingPlugin.so -lib/marble/plugins/libGosmoreRoutingPlugin.so -lib/marble/plugins/libGpsInfo.so -lib/marble/plugins/libGpsbabelPlugin.so -lib/marble/plugins/libGpsdPositionProviderPlugin.so -lib/marble/plugins/libGpxPlugin.so -lib/marble/plugins/libGraticulePlugin.so -lib/marble/plugins/libHostipPlugin.so -lib/marble/plugins/libJsonPlugin.so -lib/marble/plugins/libKmlPlugin.so -lib/marble/plugins/libLatLonPlugin.so -lib/marble/plugins/libLicense.so -lib/marble/plugins/libLocalDatabasePlugin.so -lib/marble/plugins/libLocalOsmSearchPlugin.so -lib/marble/plugins/libLogPlugin.so -lib/marble/plugins/libMapQuestPlugin.so -lib/marble/plugins/libMapScaleFloatItem.so -lib/marble/plugins/libMeasureTool.so -lib/marble/plugins/libMonavPlugin.so -lib/marble/plugins/libNavigationFloatItem.so -lib/marble/plugins/libNominatimReverseGeocodingPlugin.so -lib/marble/plugins/libNominatimSearchPlugin.so -lib/marble/plugins/libNotesPlugin.so -lib/marble/plugins/libOSRMPlugin.so -lib/marble/plugins/libOpenLocationCodeSearchPlugin.so -lib/marble/plugins/libOpenRouteServicePlugin.so -lib/marble/plugins/libOsmPlugin.so -lib/marble/plugins/libOverviewMap.so -lib/marble/plugins/libPn2Plugin.so -lib/marble/plugins/libPntPlugin.so -lib/marble/plugins/libPositionMarker.so -lib/marble/plugins/libPostalCode.so -lib/marble/plugins/libProgressFloatItem.so -lib/marble/plugins/libQtPositioningPositionProviderPlugin.so -lib/marble/plugins/libRoutingPlugin.so -lib/marble/plugins/libRoutinoPlugin.so -lib/marble/plugins/libSatellitesPlugin.so -lib/marble/plugins/libShpPlugin.so -lib/marble/plugins/libSpeedometer.so -lib/marble/plugins/libStarsPlugin.so -lib/marble/plugins/libSunPlugin.so -lib/marble/plugins/libYoursPlugin.so +lib/marble/plugins/AnnotatePlugin.so +lib/marble/plugins/AprsPlugin.so +lib/marble/plugins/AtmospherePlugin.so +lib/marble/plugins/CachePlugin.so +lib/marble/plugins/CompassFloatItem.so +lib/marble/plugins/CrosshairsPlugin.so +lib/marble/plugins/CycleStreetsPlugin.so +lib/marble/plugins/EarthquakePlugin.so +lib/marble/plugins/EclipsesPlugin.so +lib/marble/plugins/ElevationProfileFloatItem.so +lib/marble/plugins/ElevationProfileMarker.so +lib/marble/plugins/FlightGearPositionProviderPlugin.so +lib/marble/plugins/FoursquarePlugin.so +lib/marble/plugins/GeoUriPlugin.so +lib/marble/plugins/GosmoreReverseGeocodingPlugin.so +lib/marble/plugins/GosmoreRoutingPlugin.so +lib/marble/plugins/GpsInfo.so +lib/marble/plugins/GpsbabelPlugin.so +lib/marble/plugins/GpsdPositionProviderPlugin.so +lib/marble/plugins/GpxPlugin.so +lib/marble/plugins/GraticulePlugin.so +lib/marble/plugins/HostipPlugin.so +lib/marble/plugins/JsonPlugin.so +lib/marble/plugins/KmlPlugin.so +lib/marble/plugins/LatLonPlugin.so +lib/marble/plugins/License.so +lib/marble/plugins/LocalDatabasePlugin.so +lib/marble/plugins/LocalOsmSearchPlugin.so +lib/marble/plugins/LogPlugin.so +lib/marble/plugins/MapQuestPlugin.so +lib/marble/plugins/MapScaleFloatItem.so +lib/marble/plugins/MeasureTool.so +lib/marble/plugins/MonavPlugin.so +lib/marble/plugins/NavigationFloatItem.so +lib/marble/plugins/NominatimReverseGeocodingPlugin.so +lib/marble/plugins/NominatimSearchPlugin.so +lib/marble/plugins/NotesPlugin.so +lib/marble/plugins/OSRMPlugin.so +lib/marble/plugins/OpenLocationCodeSearchPlugin.so +lib/marble/plugins/OpenRouteServicePlugin.so +lib/marble/plugins/OsmPlugin.so +lib/marble/plugins/OverviewMap.so +lib/marble/plugins/Pn2Plugin.so +lib/marble/plugins/PntPlugin.so +lib/marble/plugins/PositionMarker.so +lib/marble/plugins/PostalCode.so +lib/marble/plugins/ProgressFloatItem.so +lib/marble/plugins/QtPositioningPositionProviderPlugin.so +lib/marble/plugins/RoutingPlugin.so +lib/marble/plugins/RoutinoPlugin.so +lib/marble/plugins/SatellitesPlugin.so +lib/marble/plugins/ShpPlugin.so +lib/marble/plugins/Speedometer.so +lib/marble/plugins/StarsPlugin.so +lib/marble/plugins/SunPlugin.so +lib/marble/plugins/YoursPlugin.so qt5/mkspecs/modules/qt_Marble.pri -qt5/plugins/designer/libLatLonEditPlugin.so -qt5/plugins/designer/libMarbleNavigatorPlugin.so -qt5/plugins/designer/libMarbleWidgetPlugin.so +qt5/plugins/designer/LatLonEditPlugin.so +qt5/plugins/designer/MarbleNavigatorPlugin.so +qt5/plugins/designer/MarbleWidgetPlugin.so qt5/plugins/libmarble_part.so -qt5/plugins/libmarblethumbnail.so +qt5/plugins/marblethumbnail.so qt5/plugins/plasma_runner_marble.so qt5/qml/org/kde/marble/private/plasma/libmarblequick.so qt5/qml/org/kde/marble/private/plasma/qmldir @@ -319,7 +320,6 @@ share/doc/HTML/fr/marble/configure-view.png share/doc/HTML/fr/marble/download-region-3.png share/doc/HTML/fr/marble/index.cache.bz2 share/doc/HTML/fr/marble/index.docbook -share/doc/HTML/fr/marble/logo-1.png share/doc/HTML/fr/marble/mapview-1.png share/doc/HTML/fr/marble/measure-1.png share/doc/HTML/fr/marble/quick-1.png @@ -357,7 +357,6 @@ share/doc/HTML/nl/marble/configure-plugins.png share/doc/HTML/nl/marble/configure-view.png share/doc/HTML/nl/marble/index.cache.bz2 share/doc/HTML/nl/marble/index.docbook -share/doc/HTML/nl/marble/logo-1.png share/doc/HTML/nl/marble/mapview-1.png share/doc/HTML/nl/marble/measure-1.png share/doc/HTML/nl/marble/quick-1.png @@ -419,13 +418,13 @@ share/doc/HTML/uk/marble/routing-5.png share/doc/HTML/uk/marble/routing-6.png share/doc/HTML/uk/marble/search-1.png share/doc/HTML/uk/marble/search-2.png -share/examples/kde-xdg/marble.knsrc share/icons/hicolor/128x128/apps/marble.png share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png +share/knsrcfiles/marble.knsrc share/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop @@ -462,7 +461,9 @@ share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm +share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo +share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo @@ -491,6 +492,7 @@ share/locale/et/LC_MESSAGES/marble_qt.qm share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo +share/locale/eu/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo diff --git a/misc/marble/distinfo b/misc/marble/distinfo index 3aa4b988777..00fc8b606b9 100644 --- a/misc/marble/distinfo +++ b/misc/marble/distinfo @@ -1,11 +1,10 @@ -$NetBSD: distinfo,v 1.15 2020/09/23 22:18:28 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:28 markd Exp $ -SHA1 (marble-20.04.1.tar.xz) = 1501384faed46a7cec18e32991b6be3f5e7e3812 -RMD160 (marble-20.04.1.tar.xz) = 0a2a9b953edda0c97e32804b933b6c6dd2c87412 -SHA512 (marble-20.04.1.tar.xz) = 4eb9bd5df71f0ad9d15309e43a7d12856e382bab4eecf7050451776e7fb97307b664ffe70f5c96fc589df33a1be884c68f0ed8717010545e699e3d4fb16b098f -Size (marble-20.04.1.tar.xz) = 52197400 bytes +SHA1 (marble-20.12.3.tar.xz) = 8b81f1f9e7eb3c767d661883b30c8bb3858142dc +RMD160 (marble-20.12.3.tar.xz) = 71b6d1f74c01bcda3aafc12bc1e3b770c56ad6d8 +SHA512 (marble-20.12.3.tar.xz) = 0dc69ce2dafac196d3b494bd29a268f879e8bd14ae916454682289822024d58e077e4972588cc6d51284459f2fc9aceacd4e1e8a8302f987556e20a7acaf172a +Size (marble-20.12.3.tar.xz) = 52242116 bytes SHA1 (patch-src_lib_astro_astrolib.cpp) = 541b39516af740b0ff8e485e9e4e8a339ca5d7f4 SHA1 (patch-src_lib_astro_astrolib.h) = 4123af9f32a35400e05943598e7dceff84899928 SHA1 (patch-src_lib_astro_solarsystem.cpp) = 1e00e5edf7ac5b38a1d4d29ccf4847470b6f4906 -SHA1 (patch-src_plugins_positionprovider_gpsd_GpsdPositionProviderPlugin.cpp) = 2ee8a2904e4a798400e47e605ab9cf1c61461df7 SHA1 (patch-src_plugins_render_stars_StarsPlugin.cpp) = 06fdce98d53db7a74e972dcc39459016646246d0 diff --git a/misc/marble/patches/patch-src_plugins_positionprovider_gpsd_GpsdPositionProviderPlugin.cpp b/misc/marble/patches/patch-src_plugins_positionprovider_gpsd_GpsdPositionProviderPlugin.cpp deleted file mode 100644 index f61b337a66b..00000000000 --- a/misc/marble/patches/patch-src_plugins_positionprovider_gpsd_GpsdPositionProviderPlugin.cpp +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-src_plugins_positionprovider_gpsd_GpsdPositionProviderPlugin.cpp,v 1.1 2020/09/23 22:18:28 markd Exp $ - -Handle gpsd>=3.21 - ---- src/plugins/positionprovider/gpsd/GpsdPositionProviderPlugin.cpp.orig 2020-05-11 07:18:57.000000000 +0000 -+++ src/plugins/positionprovider/gpsd/GpsdPositionProviderPlugin.cpp -@@ -79,7 +79,11 @@ void GpsdPositionProviderPlugin::update( - { - PositionProviderStatus oldStatus = m_status; - GeoDataCoordinates oldPosition = m_position; -+#if defined( GPSD_API_MAJOR_VERSION ) && ( GPSD_API_MAJOR_VERSION >= 10 ) -+ if ( data.fix.status == STATUS_NO_FIX || std::isnan( data.fix.longitude ) || std::isnan( data.fix.latitude ) ) -+#else - if ( data.status == STATUS_NO_FIX || std::isnan( data.fix.longitude ) || std::isnan( data.fix.latitude ) ) -+#endif - m_status = PositionProviderStatusAcquiring; - else { - m_status = PositionProviderStatusAvailable; diff --git a/misc/rocs/Makefile b/misc/rocs/Makefile index 0e3924dfad4..ba61418d578 100644 --- a/misc/rocs/Makefile +++ b/misc/rocs/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.70 2021/02/07 06:30:32 ryoon Exp $ +# $NetBSD: Makefile,v 1.71 2021/04/07 12:28:29 markd Exp $ DISTNAME= rocs-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/rocs/ diff --git a/misc/rocs/PLIST b/misc/rocs/PLIST index 02c19a8e21f..0152a39b7af 100644 --- a/misc/rocs/PLIST +++ b/misc/rocs/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2020/06/09 11:56:16 markd Exp $ +@comment $NetBSD: PLIST,v 1.9 2021/04/07 12:28:29 markd Exp $ bin/rocs include/rocs/edge.h include/rocs/graphdocument.h @@ -16,26 +16,8 @@ qt5/plugins/rocs/fileformats/tgffileformat.so qt5/plugins/rocs/fileformats/tikzfileformat.so share/applications/org.kde.rocs.desktop share/config.kcfg/rocs.kcfg -share/doc/HTML/ca/rocs/apiConsole.docbook -share/doc/HTML/ca/rocs/apiDatastructure.docbook -share/doc/HTML/ca/rocs/apiGraphstructure.docbook -share/doc/HTML/ca/rocs/apiLinkedListstructure.docbook -share/doc/HTML/ca/rocs/apiRootedTreestructure.docbook -share/doc/HTML/ca/rocs/chapterImportExport.docbook -share/doc/HTML/ca/rocs/hi22-action-rocsalignbottom.png -share/doc/HTML/ca/rocs/hi22-action-rocsaligncircle.png -share/doc/HTML/ca/rocs/hi22-action-rocsalignhmiddle.png -share/doc/HTML/ca/rocs/hi22-action-rocsalignleft.png -share/doc/HTML/ca/rocs/hi22-action-rocsalignright.png -share/doc/HTML/ca/rocs/hi22-action-rocsaligntop.png -share/doc/HTML/ca/rocs/hi22-action-rocsaligntree.png -share/doc/HTML/ca/rocs/hi22-action-rocsalignvmiddle.png -share/doc/HTML/ca/rocs/hi22-action-rocsproperties.png share/doc/HTML/ca/rocs/index.cache.bz2 share/doc/HTML/ca/rocs/index.docbook -share/doc/HTML/ca/rocs/rocs-control-engine-debug.png -share/doc/HTML/ca/rocs/rocs-control-engine-step.png -share/doc/HTML/ca/rocs/scripting-api.docbook share/doc/HTML/de/rocs/index.cache.bz2 share/doc/HTML/de/rocs/index.docbook share/doc/HTML/en/rocs/hi22-action-rocsalignbottom.png @@ -87,23 +69,14 @@ share/doc/HTML/nl/rocs/index.docbook share/doc/HTML/nl/rocs/scripting-api.docbook share/doc/HTML/pt/rocs/index.cache.bz2 share/doc/HTML/pt/rocs/index.docbook -share/doc/HTML/pt_BR/rocs/apiConsole.docbook -share/doc/HTML/pt_BR/rocs/apiDatastructure.docbook -share/doc/HTML/pt_BR/rocs/apiGraphstructure.docbook -share/doc/HTML/pt_BR/rocs/apiLinkedListstructure.docbook -share/doc/HTML/pt_BR/rocs/apiRootedTreestructure.docbook -share/doc/HTML/pt_BR/rocs/chapterImportExport.docbook share/doc/HTML/pt_BR/rocs/index.cache.bz2 share/doc/HTML/pt_BR/rocs/index.docbook share/doc/HTML/sv/rocs/index.cache.bz2 share/doc/HTML/sv/rocs/index.docbook -share/doc/HTML/uk/rocs/document-selector.png share/doc/HTML/uk/rocs/index.cache.bz2 share/doc/HTML/uk/rocs/index.docbook share/doc/HTML/uk/rocs/rocs-interfaces.png share/doc/HTML/uk/rocs/rocs-screenshot.png -share/doc/HTML/uk/rocs/rocs-toolbar-alignment.png -share/doc/HTML/uk/rocs/rocs-toolbar-main.png share/icons/hicolor/128x128/apps/rocs.png share/icons/hicolor/16x16/apps/rocs.png share/icons/hicolor/22x22/apps/rocs.png diff --git a/misc/rocs/distinfo b/misc/rocs/distinfo index cdbe33e55ee..53dcd6626c4 100644 --- a/misc/rocs/distinfo +++ b/misc/rocs/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.16 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.17 2021/04/07 12:28:29 markd Exp $ -SHA1 (rocs-20.04.1.tar.xz) = 7cf556ff9143bb7c0865cadcb11bacf08791918f -RMD160 (rocs-20.04.1.tar.xz) = 7785b1db9f6905a80a5271dbce9d0ee158cdbc4e -SHA512 (rocs-20.04.1.tar.xz) = c639800a4ecd8c0c1ee1ef7e764c30853db97572cda70c68ab519157e8a30de2b2933fb3c6cd2f6a30c984dd64391b2969072cde34b4a5daa365e073906799e5 -Size (rocs-20.04.1.tar.xz) = 1507368 bytes +SHA1 (rocs-20.12.3.tar.xz) = 7597bdf441fbad275f4c7e72f7ed6f8a4c2a43f8 +RMD160 (rocs-20.12.3.tar.xz) = a4d523e24a991f1c7043b5608c56cfee726dcab6 +SHA512 (rocs-20.12.3.tar.xz) = 12bd3c8c7c7e46a9da630fe722a2ac1db58a03a8686c2d6c5a852da204d84e9ca071d2a812caeab0915214983d755175bee592c712cf2f0fcdbcf57be29cf8a3 +Size (rocs-20.12.3.tar.xz) = 1492376 bytes diff --git a/misc/step/Makefile b/misc/step/Makefile index 04934deff0f..006522b3b6e 100644 --- a/misc/step/Makefile +++ b/misc/step/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.60 2021/02/07 06:30:32 ryoon Exp $ +# $NetBSD: Makefile,v 1.61 2021/04/07 12:28:29 markd Exp $ DISTNAME= step-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= misc HOMEPAGE= https://kde.org/applications/education/step/ @@ -14,16 +13,6 @@ BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools USE_TOOLS+= msgmerge pkg-config -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= step/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/step.knsrc \ - ${PKG_SYSCONFDIR}/xdg/step.knsrc - PYTHON_VERSIONS_INCOMPATIBLE= 27 PYTHON_FOR_BUILD_ONLY= yes .include "../../lang/python/tool.mk" diff --git a/misc/step/PLIST b/misc/step/PLIST index adfd176a63d..a64e988a428 100644 --- a/misc/step/PLIST +++ b/misc/step/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2020/06/09 11:56:16 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:29 markd Exp $ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg @@ -31,6 +31,10 @@ share/doc/HTML/et/step/examples.docbook share/doc/HTML/et/step/index.cache.bz2 share/doc/HTML/et/step/index.docbook share/doc/HTML/et/step/tutorials.docbook +share/doc/HTML/fr/step/examples.docbook +share/doc/HTML/fr/step/index.cache.bz2 +share/doc/HTML/fr/step/index.docbook +share/doc/HTML/fr/step/tutorials.docbook share/doc/HTML/it/step/examples.docbook share/doc/HTML/it/step/index.cache.bz2 share/doc/HTML/it/step/index.docbook @@ -52,7 +56,6 @@ share/doc/HTML/uk/step/index.cache.bz2 share/doc/HTML/uk/step/index.docbook share/doc/HTML/uk/step/mainwindow.png share/doc/HTML/uk/step/tutorials.docbook -share/examples/kde-xdg/step.knsrc share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png @@ -83,137 +86,109 @@ share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png +share/knsrcfiles/step.knsrc share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo -share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo -share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo -share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo -share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo -share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo -share/locale/da/LC_MESSAGES/step_qt.qm +share/locale/da/LC_MESSAGES/step_example_files.mo +share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step.mo -share/locale/de/LC_MESSAGES/step_qt.qm +share/locale/de/LC_MESSAGES/step_example_files.mo +share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step.mo -share/locale/el/LC_MESSAGES/step_qt.qm +share/locale/el/LC_MESSAGES/step_example_files.mo +share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo -share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo -share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo -share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo -share/locale/et/LC_MESSAGES/step_qt.qm +share/locale/eu/LC_MESSAGES/step.mo +share/locale/eu/LC_MESSAGES/step_example_files.mo +share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step.mo -share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo -share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo -share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo -share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo -share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo -share/locale/hu/LC_MESSAGES/step_qt.qm +share/locale/ia/LC_MESSAGES/step.mo +share/locale/ia/LC_MESSAGES/step_example_files.mo +share/locale/ia/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo -share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo -share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo -share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo -share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo -share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo -share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo -share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo -share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo -share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo -share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo -share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo -share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo -share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo -share/locale/pl/LC_MESSAGES/step_qt.qm +share/locale/pl/LC_MESSAGES/step_example_files.mo +share/locale/pl/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo -share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo -share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo -share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo -share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo -share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo -share/locale/sl/LC_MESSAGES/step_qt.qm +share/locale/sl/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo -share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo -share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo -share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo -share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo -share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo -share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml share/step/examples/brownian.step @@ -268,8 +243,59 @@ share/step/examples/cs/softbody.step share/step/examples/cs/solar.step share/step/examples/cs/springs.step share/step/examples/cs/wave.step +share/step/examples/da/brownian.step +share/step/examples/da/doublependulum.step +share/step/examples/da/eightpendula.step +share/step/examples/da/first.step +share/step/examples/da/fourpendula.step +share/step/examples/da/gas.step +share/step/examples/da/graph.step +share/step/examples/da/liquid.step +share/step/examples/da/lissajous.step +share/step/examples/da/motor.step +share/step/examples/da/motor1.step +share/step/examples/da/note.step +share/step/examples/da/resonance.step +share/step/examples/da/softbody.step +share/step/examples/da/solar.step +share/step/examples/da/springs.step +share/step/examples/da/wave.step +share/step/examples/de/brownian.step +share/step/examples/de/doublependulum.step +share/step/examples/de/eightpendula.step +share/step/examples/de/first.step +share/step/examples/de/fourpendula.step +share/step/examples/de/gas.step +share/step/examples/de/graph.step +share/step/examples/de/liquid.step +share/step/examples/de/lissajous.step +share/step/examples/de/motor.step +share/step/examples/de/motor1.step +share/step/examples/de/note.step +share/step/examples/de/resonance.step +share/step/examples/de/softbody.step +share/step/examples/de/solar.step +share/step/examples/de/springs.step +share/step/examples/de/wave.step share/step/examples/doublependulum.step share/step/examples/eightpendula.step +share/step/examples/el/brownian.step +share/step/examples/el/doublependulum.step +share/step/examples/el/eightpendula.step +share/step/examples/el/first.step +share/step/examples/el/fourpendula.step +share/step/examples/el/gas.step +share/step/examples/el/graph.step +share/step/examples/el/liquid.step +share/step/examples/el/lissajous.step +share/step/examples/el/motor.step +share/step/examples/el/motor1.step +share/step/examples/el/note.step +share/step/examples/el/resonance.step +share/step/examples/el/softbody.step +share/step/examples/el/solar.step +share/step/examples/el/springs.step +share/step/examples/el/wave.step share/step/examples/en_GB/brownian.step share/step/examples/en_GB/doublependulum.step share/step/examples/en_GB/eightpendula.step @@ -321,6 +347,23 @@ share/step/examples/et/softbody.step share/step/examples/et/solar.step share/step/examples/et/springs.step share/step/examples/et/wave.step +share/step/examples/eu/brownian.step +share/step/examples/eu/doublependulum.step +share/step/examples/eu/eightpendula.step +share/step/examples/eu/first.step +share/step/examples/eu/fourpendula.step +share/step/examples/eu/gas.step +share/step/examples/eu/graph.step +share/step/examples/eu/liquid.step +share/step/examples/eu/lissajous.step +share/step/examples/eu/motor.step +share/step/examples/eu/motor1.step +share/step/examples/eu/note.step +share/step/examples/eu/resonance.step +share/step/examples/eu/softbody.step +share/step/examples/eu/solar.step +share/step/examples/eu/springs.step +share/step/examples/eu/wave.step share/step/examples/first.step share/step/examples/fourpendula.step share/step/examples/fr/brownian.step @@ -342,6 +385,23 @@ share/step/examples/fr/springs.step share/step/examples/fr/wave.step share/step/examples/gas.step share/step/examples/graph.step +share/step/examples/ia/brownian.step +share/step/examples/ia/doublependulum.step +share/step/examples/ia/eightpendula.step +share/step/examples/ia/first.step +share/step/examples/ia/fourpendula.step +share/step/examples/ia/gas.step +share/step/examples/ia/graph.step +share/step/examples/ia/liquid.step +share/step/examples/ia/lissajous.step +share/step/examples/ia/motor.step +share/step/examples/ia/motor1.step +share/step/examples/ia/note.step +share/step/examples/ia/resonance.step +share/step/examples/ia/softbody.step +share/step/examples/ia/solar.step +share/step/examples/ia/springs.step +share/step/examples/ia/wave.step share/step/examples/it/brownian.step share/step/examples/it/doublependulum.step share/step/examples/it/eightpendula.step @@ -432,6 +492,23 @@ share/step/examples/nl/solar.step share/step/examples/nl/springs.step share/step/examples/nl/wave.step share/step/examples/note.step +share/step/examples/pl/brownian.step +share/step/examples/pl/doublependulum.step +share/step/examples/pl/eightpendula.step +share/step/examples/pl/first.step +share/step/examples/pl/fourpendula.step +share/step/examples/pl/gas.step +share/step/examples/pl/graph.step +share/step/examples/pl/liquid.step +share/step/examples/pl/lissajous.step +share/step/examples/pl/motor.step +share/step/examples/pl/motor1.step +share/step/examples/pl/note.step +share/step/examples/pl/resonance.step +share/step/examples/pl/softbody.step +share/step/examples/pl/solar.step +share/step/examples/pl/springs.step +share/step/examples/pl/wave.step share/step/examples/pt/brownian.step share/step/examples/pt/doublependulum.step share/step/examples/pt/eightpendula.step @@ -639,24 +716,63 @@ share/step/objinfo/l10n/cs/softbody.html share/step/objinfo/l10n/cs/spring.html share/step/objinfo/l10n/cs/weightforce.html share/step/objinfo/l10n/cs/world.html -share/step/objinfo/l10n/de/Anchor.html -share/step/objinfo/l10n/de/Box.html -share/step/objinfo/l10n/de/ChargedParticle.html -share/step/objinfo/l10n/de/CoulombForce.html -share/step/objinfo/l10n/de/Disk.html -share/step/objinfo/l10n/de/Gas.html -share/step/objinfo/l10n/de/GasLJForce.html -share/step/objinfo/l10n/de/GasParticle.html -share/step/objinfo/l10n/de/GravitationForce.html -share/step/objinfo/l10n/de/LinearMotor.html -share/step/objinfo/l10n/de/Meter.html -share/step/objinfo/l10n/de/Note.html -share/step/objinfo/l10n/de/Particle.html -share/step/objinfo/l10n/de/Pin.html -share/step/objinfo/l10n/de/Polygon.html -share/step/objinfo/l10n/de/Spring.html -share/step/objinfo/l10n/de/WeightForce.html -share/step/objinfo/l10n/de/World.html +share/step/objinfo/l10n/da/anchor.html +share/step/objinfo/l10n/da/box.html +share/step/objinfo/l10n/da/chargedparticle.html +share/step/objinfo/l10n/da/coulombforce.html +share/step/objinfo/l10n/da/disk.html +share/step/objinfo/l10n/da/gas.html +share/step/objinfo/l10n/da/gasljforce.html +share/step/objinfo/l10n/da/gasparticle.html +share/step/objinfo/l10n/da/gravitationforce.html +share/step/objinfo/l10n/da/linearmotor.html +share/step/objinfo/l10n/da/meter.html +share/step/objinfo/l10n/da/note.html +share/step/objinfo/l10n/da/particle.html +share/step/objinfo/l10n/da/pin.html +share/step/objinfo/l10n/da/polygon.html +share/step/objinfo/l10n/da/softbody.html +share/step/objinfo/l10n/da/spring.html +share/step/objinfo/l10n/da/weightforce.html +share/step/objinfo/l10n/da/world.html +share/step/objinfo/l10n/de/anchor.html +share/step/objinfo/l10n/de/box.html +share/step/objinfo/l10n/de/chargedparticle.html +share/step/objinfo/l10n/de/coulombforce.html +share/step/objinfo/l10n/de/disk.html +share/step/objinfo/l10n/de/gas.html +share/step/objinfo/l10n/de/gasljforce.html +share/step/objinfo/l10n/de/gasparticle.html +share/step/objinfo/l10n/de/gravitationforce.html +share/step/objinfo/l10n/de/linearmotor.html +share/step/objinfo/l10n/de/meter.html +share/step/objinfo/l10n/de/note.html +share/step/objinfo/l10n/de/particle.html +share/step/objinfo/l10n/de/pin.html +share/step/objinfo/l10n/de/polygon.html +share/step/objinfo/l10n/de/softbody.html +share/step/objinfo/l10n/de/spring.html +share/step/objinfo/l10n/de/weightforce.html +share/step/objinfo/l10n/de/world.html +share/step/objinfo/l10n/el/anchor.html +share/step/objinfo/l10n/el/box.html +share/step/objinfo/l10n/el/chargedparticle.html +share/step/objinfo/l10n/el/coulombforce.html +share/step/objinfo/l10n/el/disk.html +share/step/objinfo/l10n/el/gas.html +share/step/objinfo/l10n/el/gasljforce.html +share/step/objinfo/l10n/el/gasparticle.html +share/step/objinfo/l10n/el/gravitationforce.html +share/step/objinfo/l10n/el/linearmotor.html +share/step/objinfo/l10n/el/meter.html +share/step/objinfo/l10n/el/note.html +share/step/objinfo/l10n/el/particle.html +share/step/objinfo/l10n/el/pin.html +share/step/objinfo/l10n/el/polygon.html +share/step/objinfo/l10n/el/softbody.html +share/step/objinfo/l10n/el/spring.html +share/step/objinfo/l10n/el/weightforce.html +share/step/objinfo/l10n/el/world.html share/step/objinfo/l10n/en_GB/anchor.html share/step/objinfo/l10n/en_GB/box.html share/step/objinfo/l10n/en_GB/chargedparticle.html @@ -714,6 +830,25 @@ share/step/objinfo/l10n/et/softbody.html share/step/objinfo/l10n/et/spring.html share/step/objinfo/l10n/et/weightforce.html share/step/objinfo/l10n/et/world.html +share/step/objinfo/l10n/eu/anchor.html +share/step/objinfo/l10n/eu/box.html +share/step/objinfo/l10n/eu/chargedparticle.html +share/step/objinfo/l10n/eu/coulombforce.html +share/step/objinfo/l10n/eu/disk.html +share/step/objinfo/l10n/eu/gas.html +share/step/objinfo/l10n/eu/gasljforce.html +share/step/objinfo/l10n/eu/gasparticle.html +share/step/objinfo/l10n/eu/gravitationforce.html +share/step/objinfo/l10n/eu/linearmotor.html +share/step/objinfo/l10n/eu/meter.html +share/step/objinfo/l10n/eu/note.html +share/step/objinfo/l10n/eu/particle.html +share/step/objinfo/l10n/eu/pin.html +share/step/objinfo/l10n/eu/polygon.html +share/step/objinfo/l10n/eu/softbody.html +share/step/objinfo/l10n/eu/spring.html +share/step/objinfo/l10n/eu/weightforce.html +share/step/objinfo/l10n/eu/world.html share/step/objinfo/l10n/fr/anchor.html share/step/objinfo/l10n/fr/box.html share/step/objinfo/l10n/fr/chargedparticle.html @@ -733,17 +868,25 @@ share/step/objinfo/l10n/fr/softbody.html share/step/objinfo/l10n/fr/spring.html share/step/objinfo/l10n/fr/weightforce.html share/step/objinfo/l10n/fr/world.html -share/step/objinfo/l10n/it/Box.html -share/step/objinfo/l10n/it/ChargedParticle.html -share/step/objinfo/l10n/it/Disk.html -share/step/objinfo/l10n/it/Gas.html -share/step/objinfo/l10n/it/GasParticle.html -share/step/objinfo/l10n/it/Meter.html -share/step/objinfo/l10n/it/Note.html -share/step/objinfo/l10n/it/Particle.html -share/step/objinfo/l10n/it/Polygon.html -share/step/objinfo/l10n/it/Spring.html -share/step/objinfo/l10n/it/World.html +share/step/objinfo/l10n/ia/anchor.html +share/step/objinfo/l10n/ia/box.html +share/step/objinfo/l10n/ia/chargedparticle.html +share/step/objinfo/l10n/ia/coulombforce.html +share/step/objinfo/l10n/ia/disk.html +share/step/objinfo/l10n/ia/gas.html +share/step/objinfo/l10n/ia/gasljforce.html +share/step/objinfo/l10n/ia/gasparticle.html +share/step/objinfo/l10n/ia/gravitationforce.html +share/step/objinfo/l10n/ia/linearmotor.html +share/step/objinfo/l10n/ia/meter.html +share/step/objinfo/l10n/ia/note.html +share/step/objinfo/l10n/ia/particle.html +share/step/objinfo/l10n/ia/pin.html +share/step/objinfo/l10n/ia/polygon.html +share/step/objinfo/l10n/ia/softbody.html +share/step/objinfo/l10n/ia/spring.html +share/step/objinfo/l10n/ia/weightforce.html +share/step/objinfo/l10n/ia/world.html share/step/objinfo/l10n/it/anchor.html share/step/objinfo/l10n/it/box.html share/step/objinfo/l10n/it/chargedparticle.html @@ -839,6 +982,25 @@ share/step/objinfo/l10n/nl/softbody.html share/step/objinfo/l10n/nl/spring.html share/step/objinfo/l10n/nl/weightforce.html share/step/objinfo/l10n/nl/world.html +share/step/objinfo/l10n/pl/anchor.html +share/step/objinfo/l10n/pl/box.html +share/step/objinfo/l10n/pl/chargedparticle.html +share/step/objinfo/l10n/pl/coulombforce.html +share/step/objinfo/l10n/pl/disk.html +share/step/objinfo/l10n/pl/gas.html +share/step/objinfo/l10n/pl/gasljforce.html +share/step/objinfo/l10n/pl/gasparticle.html +share/step/objinfo/l10n/pl/gravitationforce.html +share/step/objinfo/l10n/pl/linearmotor.html +share/step/objinfo/l10n/pl/meter.html +share/step/objinfo/l10n/pl/note.html +share/step/objinfo/l10n/pl/particle.html +share/step/objinfo/l10n/pl/pin.html +share/step/objinfo/l10n/pl/polygon.html +share/step/objinfo/l10n/pl/softbody.html +share/step/objinfo/l10n/pl/spring.html +share/step/objinfo/l10n/pl/weightforce.html +share/step/objinfo/l10n/pl/world.html share/step/objinfo/l10n/pt/anchor.html share/step/objinfo/l10n/pt/box.html share/step/objinfo/l10n/pt/chargedparticle.html @@ -915,6 +1077,25 @@ share/step/objinfo/l10n/sk/softbody.html share/step/objinfo/l10n/sk/spring.html share/step/objinfo/l10n/sk/weightforce.html share/step/objinfo/l10n/sk/world.html +share/step/objinfo/l10n/sl/anchor.html +share/step/objinfo/l10n/sl/box.html +share/step/objinfo/l10n/sl/chargedparticle.html +share/step/objinfo/l10n/sl/coulombforce.html +share/step/objinfo/l10n/sl/disk.html +share/step/objinfo/l10n/sl/gas.html +share/step/objinfo/l10n/sl/gasljforce.html +share/step/objinfo/l10n/sl/gasparticle.html +share/step/objinfo/l10n/sl/gravitationforce.html +share/step/objinfo/l10n/sl/linearmotor.html +share/step/objinfo/l10n/sl/meter.html +share/step/objinfo/l10n/sl/note.html +share/step/objinfo/l10n/sl/particle.html +share/step/objinfo/l10n/sl/pin.html +share/step/objinfo/l10n/sl/polygon.html +share/step/objinfo/l10n/sl/softbody.html +share/step/objinfo/l10n/sl/spring.html +share/step/objinfo/l10n/sl/weightforce.html +share/step/objinfo/l10n/sl/world.html share/step/objinfo/l10n/sv/anchor.html share/step/objinfo/l10n/sv/box.html share/step/objinfo/l10n/sv/chargedparticle.html @@ -1016,6 +1197,21 @@ share/step/tutorials/cs/tutorial2.step share/step/tutorials/cs/tutorial3.step share/step/tutorials/cs/tutorial4.step share/step/tutorials/cs/tutorial5.step +share/step/tutorials/da/tutorial1.step +share/step/tutorials/da/tutorial2.step +share/step/tutorials/da/tutorial3.step +share/step/tutorials/da/tutorial4.step +share/step/tutorials/da/tutorial5.step +share/step/tutorials/de/tutorial1.step +share/step/tutorials/de/tutorial2.step +share/step/tutorials/de/tutorial3.step +share/step/tutorials/de/tutorial4.step +share/step/tutorials/de/tutorial5.step +share/step/tutorials/el/tutorial1.step +share/step/tutorials/el/tutorial2.step +share/step/tutorials/el/tutorial3.step +share/step/tutorials/el/tutorial4.step +share/step/tutorials/el/tutorial5.step share/step/tutorials/en_GB/tutorial1.step share/step/tutorials/en_GB/tutorial2.step share/step/tutorials/en_GB/tutorial3.step @@ -1031,11 +1227,21 @@ share/step/tutorials/et/tutorial2.step share/step/tutorials/et/tutorial3.step share/step/tutorials/et/tutorial4.step share/step/tutorials/et/tutorial5.step +share/step/tutorials/eu/tutorial1.step +share/step/tutorials/eu/tutorial2.step +share/step/tutorials/eu/tutorial3.step +share/step/tutorials/eu/tutorial4.step +share/step/tutorials/eu/tutorial5.step share/step/tutorials/fr/tutorial1.step share/step/tutorials/fr/tutorial2.step share/step/tutorials/fr/tutorial3.step share/step/tutorials/fr/tutorial4.step share/step/tutorials/fr/tutorial5.step +share/step/tutorials/ia/tutorial1.step +share/step/tutorials/ia/tutorial2.step +share/step/tutorials/ia/tutorial3.step +share/step/tutorials/ia/tutorial4.step +share/step/tutorials/ia/tutorial5.step share/step/tutorials/it/tutorial1.step share/step/tutorials/it/tutorial2.step share/step/tutorials/it/tutorial3.step @@ -1061,6 +1267,11 @@ share/step/tutorials/nl/tutorial2.step share/step/tutorials/nl/tutorial3.step share/step/tutorials/nl/tutorial4.step share/step/tutorials/nl/tutorial5.step +share/step/tutorials/pl/tutorial1.step +share/step/tutorials/pl/tutorial2.step +share/step/tutorials/pl/tutorial3.step +share/step/tutorials/pl/tutorial4.step +share/step/tutorials/pl/tutorial5.step share/step/tutorials/pt/tutorial1.step share/step/tutorials/pt/tutorial2.step share/step/tutorials/pt/tutorial3.step diff --git a/misc/step/distinfo b/misc/step/distinfo index c1c199cb0a2..b98b5a55c28 100644 --- a/misc/step/distinfo +++ b/misc/step/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:29 markd Exp $ -SHA1 (step-20.04.1.tar.xz) = 8b24290cc91c46241dffd8a029ca6fa3620800ee -RMD160 (step-20.04.1.tar.xz) = 46b8fd7fb435c597c2f9b09289df5fd9888df5b8 -SHA512 (step-20.04.1.tar.xz) = 6e82ec3aa42f511c6fbc4213e29d6d70f4643be6d43c5c655abb958479cfca3b4f7c466503c5d3a1814d1f33266d6bf9ba9ecbf9154edf7d8158f3e5e6141a7e -Size (step-20.04.1.tar.xz) = 916932 bytes +SHA1 (step-20.12.3.tar.xz) = 01e136a0c77a54b6537b7602012fdc4726eb2f81 +RMD160 (step-20.12.3.tar.xz) = 61cc230b86ff26d2359d9d0dead4ecb07ea91fa5 +SHA512 (step-20.12.3.tar.xz) = d5971012711b3e8c0e9a85844babf26db983efdfee77dc112f419979d9f8fca9374c81fc8612511928b1bc4cd7b3a385ff821739fb6e80f77c60d37194bc78a2 +Size (step-20.12.3.tar.xz) = 958852 bytes diff --git a/multimedia/audiocd-kio/PLIST b/multimedia/audiocd-kio/PLIST index 3f05e9e0b3e..03c5d9b61ab 100644 --- a/multimedia/audiocd-kio/PLIST +++ b/multimedia/audiocd-kio/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2021/02/25 03:27:54 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:29 markd Exp $ include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so @@ -15,6 +15,8 @@ share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/config.kcfg/audiocd_vorbis_encoder.kcfg +share/doc/HTML/ca/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/ca/kcontrol/kcmaudiocd/index.docbook share/doc/HTML/ca/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/ca/kioslave5/audiocd/index.docbook share/doc/HTML/de/kioslave5/audiocd/index.cache.bz2 @@ -29,14 +31,20 @@ share/doc/HTML/en/kcontrol/audiocd/ogg.png share/doc/HTML/en/kcontrol/audiocd/opus.png share/doc/HTML/en/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/en/kioslave5/audiocd/index.docbook +share/doc/HTML/es/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmaudiocd/index.docbook share/doc/HTML/es/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/es/kioslave5/audiocd/index.docbook share/doc/HTML/et/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/et/kioslave5/audiocd/index.docbook share/doc/HTML/fr/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/fr/kioslave5/audiocd/index.docbook +share/doc/HTML/it/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/it/kcontrol/kcmaudiocd/index.docbook share/doc/HTML/it/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/it/kioslave5/audiocd/index.docbook +share/doc/HTML/nl/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/nl/kcontrol/kcmaudiocd/index.docbook share/doc/HTML/nl/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/nl/kioslave5/audiocd/index.docbook share/doc/HTML/pl/kioslave5/audiocd/index.cache.bz2 @@ -49,8 +57,18 @@ share/doc/HTML/ru/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/ru/kioslave5/audiocd/index.docbook share/doc/HTML/sr/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/sr/kioslave5/audiocd/index.docbook +share/doc/HTML/sv/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/sv/kcontrol/kcmaudiocd/index.docbook share/doc/HTML/sv/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/sv/kioslave5/audiocd/index.docbook +share/doc/HTML/uk/kcontrol/kcmaudiocd/flac.png +share/doc/HTML/uk/kcontrol/kcmaudiocd/general.png +share/doc/HTML/uk/kcontrol/kcmaudiocd/index.cache.bz2 +share/doc/HTML/uk/kcontrol/kcmaudiocd/index.docbook +share/doc/HTML/uk/kcontrol/kcmaudiocd/mp3.png +share/doc/HTML/uk/kcontrol/kcmaudiocd/names.png +share/doc/HTML/uk/kcontrol/kcmaudiocd/ogg.png +share/doc/HTML/uk/kcontrol/kcmaudiocd/opus.png share/doc/HTML/uk/kioslave5/audiocd/index.cache.bz2 share/doc/HTML/uk/kioslave5/audiocd/index.docbook share/konqsidebartng/virtual_folders/services/audiocd.desktop @@ -89,6 +107,7 @@ share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/da/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo @@ -175,6 +194,7 @@ share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo +share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo @@ -242,6 +262,7 @@ share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/nn/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo @@ -267,6 +288,7 @@ share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo +share/locale/ro/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo @@ -285,6 +307,7 @@ share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo @@ -330,4 +353,5 @@ share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/qlogging-categories5/kio_audiocd.categories +share/qlogging-categories5/kio_audiocd.renamecategories share/solid/actions/solid_audiocd.desktop diff --git a/multimedia/audiocd-kio/distinfo b/multimedia/audiocd-kio/distinfo index 8a78c24a8ba..08f8a542f9c 100644 --- a/multimedia/audiocd-kio/distinfo +++ b/multimedia/audiocd-kio/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2021/02/25 03:27:54 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:29 markd Exp $ -SHA1 (audiocd-kio-20.04.1.tar.xz) = c14b6a41ece24440d54db0fb3f8d50727e193d56 -RMD160 (audiocd-kio-20.04.1.tar.xz) = 3c90ff414d3554ba789305045601112329ba2750 -SHA512 (audiocd-kio-20.04.1.tar.xz) = 9307473a305099ef5a5a1df7358b0165eefcef004589a5a0c61ccbfc19ddb2a62f0dfb36a96270a2a453b6f92562ac067039c399a3898482a3538f8fa337d01f -Size (audiocd-kio-20.04.1.tar.xz) = 358584 bytes +SHA1 (audiocd-kio-20.12.3.tar.xz) = 4b882e314931934b7b1b5282f9738632da1212d8 +RMD160 (audiocd-kio-20.12.3.tar.xz) = ccfc53f88cf68f3ff2eaa6db6a25aa15c69ce14f +SHA512 (audiocd-kio-20.12.3.tar.xz) = 0b5d343f802cee3435fa1aadf39ddba3afa6ec70569bab00da0e0cbda4360618e5384042c913a4e54017f82f27f3f202a509d933762d1b7ef4884d2ba70556bc +Size (audiocd-kio-20.12.3.tar.xz) = 500672 bytes diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index e736e022ddd..fa97d4683ae 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.44 2021/02/07 06:30:32 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2021/04/07 12:28:29 markd Exp $ DISTNAME= dragon-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= multimedia HOMEPAGE= https://kde.org/applications/multimedia/dragon/ diff --git a/multimedia/dragon/PLIST b/multimedia/dragon/PLIST index 762fd4075d1..ff125eb8f9b 100644 --- a/multimedia/dragon/PLIST +++ b/multimedia/dragon/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/11/17 04:01:34 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:29 markd Exp $ bin/dragon man/ca/man1/dragon.1 man/de/man1/dragon.1 @@ -34,8 +34,12 @@ share/doc/HTML/fr/dragonplayer/index.cache.bz2 share/doc/HTML/fr/dragonplayer/index.docbook share/doc/HTML/gl/dragonplayer/index.cache.bz2 share/doc/HTML/gl/dragonplayer/index.docbook +share/doc/HTML/id/dragonplayer/index.cache.bz2 +share/doc/HTML/id/dragonplayer/index.docbook share/doc/HTML/it/dragonplayer/index.cache.bz2 share/doc/HTML/it/dragonplayer/index.docbook +share/doc/HTML/it/dragonplayer/main.png +share/doc/HTML/it/dragonplayer/playmedia.png share/doc/HTML/nl/dragonplayer/index.cache.bz2 share/doc/HTML/nl/dragonplayer/index.docbook share/doc/HTML/pl/dragonplayer/index.cache.bz2 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 280b05dcf60..58d5bd93e2b 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:16 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:29 markd Exp $ -SHA1 (dragon-20.04.1.tar.xz) = f3ffb8f450f5ff45b7ac448884a05744f4e9988b -RMD160 (dragon-20.04.1.tar.xz) = 654a3932ba76ccf1f9172e8fb113dab9b858aaca -SHA512 (dragon-20.04.1.tar.xz) = 3d194e518c6cef32d0d46269faddaf1e82414454c4b527bd6e3f3dfeb4f83ae74ca42803544f7f9e44c6e618e6146655abf2567c316b2cd16e88506dbb54767b -Size (dragon-20.04.1.tar.xz) = 1352004 bytes +SHA1 (dragon-20.12.3.tar.xz) = 79c3ce1b9d9645a2fd49d3c060f0cfc5cbcf1073 +RMD160 (dragon-20.12.3.tar.xz) = 840294a305547eca2b2219be9f2d240028c9f7b0 +SHA512 (dragon-20.12.3.tar.xz) = af05801abdf24670286fcfdade58c600b1f0ae4a0316cc95cb8020deafbba7a5b5832e9907b7cc78569d5074d855a348e9aac325305ccb5afd7fdeb0d1e62527 +Size (dragon-20.12.3.tar.xz) = 1656596 bytes diff --git a/multimedia/juk/Makefile b/multimedia/juk/Makefile index 7b166129090..83bcc53268c 100644 --- a/multimedia/juk/Makefile +++ b/multimedia/juk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2021/04/05 06:51:04 markd Exp $ +# $NetBSD: Makefile,v 1.48 2021/04/07 12:28:29 markd Exp $ DISTNAME= juk-${KAPPSVER} CATEGORIES= multimedia @@ -7,7 +7,6 @@ HOMEPAGE= https://kde.org/applications/multimedia/juk/ COMMENT= Jukebox, tagger and music collection manager LICENSE= gnu-gpl-v2 AND gnu-fdl-v1.2 AND gnu-lgpl-v2 -KAPPSVER= 20.12.3 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index 84e56a085d5..ed1615213be 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.67 2021/02/07 06:30:34 ryoon Exp $ +# $NetBSD: Makefile,v 1.68 2021/04/07 12:28:29 markd Exp $ DISTNAME= kdenlive-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= multimedia HOMEPAGE= https://www.kdenlive.org/ COMMENT= KDE video editor LICENSE= gnu-gpl-v2 +KAPPSVER= 20.12.3 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.19.0:../../devel/kdoctools @@ -20,24 +20,9 @@ CXXFLAGS.NetBSD+= -DHAVE_LOCALE_H CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_LibV4L2=TRUE CMAKE_ARGS+= -DFFMPEG_SUFFIX=4 -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= data/CMakeLists.txt -SUBST_SED.xdg= -e 's:{CONFIG_INSTALL_DIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdenlive_keyboardschemes.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kdenlive_keyboardschemes.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdenlive_renderprofiles.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kdenlive_renderprofiles.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdenlive_titles.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kdenlive_titles.knsrc -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdenlive_wipes.knsrc \ - ${PKG_SYSCONFDIR}/xdg/kdenlive_wipes.knsrc - .include "../../devel/kdeclarative/buildlink3.mk" .include "../../devel/knotifyconfig/buildlink3.mk" +.include "../../devel/purpose/buildlink3.mk" .include "../../devel/rttr/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../multimedia/ffmpeg4/buildlink3.mk" @@ -48,5 +33,6 @@ CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/kdenlive_wipes.knsrc \ .include "../../sysutils/kfilemetadata5/buildlink3.mk" .include "../../x11/qt5-qtbase/buildlink3.mk" .include "../../x11/qt5-qtquickcontrols2/buildlink3.mk" -.include "../../x11/qt5-qtwebkit/buildlink3.mk" +CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE +#.include "../../x11/qt5-qtwebengine/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/multimedia/kdenlive/PLIST b/multimedia/kdenlive/PLIST index b2ac0eafe40..4fbab133aa4 100644 --- a/multimedia/kdenlive/PLIST +++ b/multimedia/kdenlive/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2020/02/02 03:00:22 markd Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/04/07 12:28:29 markd Exp $ bin/kdenlive bin/kdenlive_render man/man1/kdenlive.1 @@ -8,12 +8,9 @@ share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg share/doc/HTML/ca/kdenlive/index.cache.bz2 share/doc/HTML/ca/kdenlive/index.docbook -share/doc/HTML/ca/kdenlive/kdenlive_quickstart-overlap-clips.png share/doc/HTML/ca/kdenlive/kdenlive_quickstart-renderer.png -share/doc/HTML/ca/kdenlive/kdenlive_quickstart-resize-marker.png share/doc/HTML/ca/kdenlive/kdenlive_quickstart-save-project.png share/doc/HTML/ca/kdenlive/kdenlive_quickstart-timeline-clips.png -share/doc/HTML/ca/kdenlive/kdenlive_quickstart-timelinecursor.png share/doc/HTML/de/kdenlive/index.cache.bz2 share/doc/HTML/de/kdenlive/index.docbook share/doc/HTML/de/kdenlive/kdenlive_quickstart-add-clips.png @@ -107,10 +104,6 @@ share/doc/HTML/uk/kdenlive/kdenlive_quickstart-timelinecursor.png share/doc/Kdenlive/AUTHORS share/doc/Kdenlive/COPYING share/doc/Kdenlive/README.md -share/examples/kde-xdg/kdenlive_keyboardschemes.knsrc -share/examples/kde-xdg/kdenlive_renderprofiles.knsrc -share/examples/kde-xdg/kdenlive_titles.knsrc -share/examples/kde-xdg/kdenlive_wipes.knsrc share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png @@ -165,6 +158,7 @@ share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png +share/icons/hicolor/scalable/actions/kdenlive-add-subtitle.svg share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz @@ -206,12 +200,95 @@ share/kdenlive/effects/acompressor.xml share/kdenlive/effects/aecho.xml share/kdenlive/effects/agate.xml share/kdenlive/effects/audiobalance.xml +share/kdenlive/effects/audiomap.xml share/kdenlive/effects/audiopan.xml share/kdenlive/effects/audiospectrum.xml share/kdenlive/effects/audiowave.xml share/kdenlive/effects/audiowaveform.xml share/kdenlive/effects/automask.xml +share/kdenlive/effects/avfilter_atadenoise.xml +share/kdenlive/effects/avfilter_avgblur.xml +share/kdenlive/effects/avfilter_boxblur.xml +share/kdenlive/effects/avfilter_bwdif.xml +share/kdenlive/effects/avfilter_chromahold.xml +share/kdenlive/effects/avfilter_chromashift.xml +share/kdenlive/effects/avfilter_colorbalance.xml +share/kdenlive/effects/avfilter_colorchannelmixer.xml +share/kdenlive/effects/avfilter_colorhold.xml +share/kdenlive/effects/avfilter_colorlevels.xml +share/kdenlive/effects/avfilter_colormatrix.xml +share/kdenlive/effects/avfilter_colorspace.xml +share/kdenlive/effects/avfilter_datascope.xml +share/kdenlive/effects/avfilter_dctdnoiz.xml +share/kdenlive/effects/avfilter_deband.xml +share/kdenlive/effects/avfilter_deblock.xml +share/kdenlive/effects/avfilter_dedot.xml +share/kdenlive/effects/avfilter_deflate.xml +share/kdenlive/effects/avfilter_delogo.xml +share/kdenlive/effects/avfilter_derain.xml +share/kdenlive/effects/avfilter_despill.xml +share/kdenlive/effects/avfilter_dilation.xml +share/kdenlive/effects/avfilter_doubleweave.xml +share/kdenlive/effects/avfilter_drawbox.xml +share/kdenlive/effects/avfilter_drawgrid.xml +share/kdenlive/effects/avfilter_edgedetect.xml +share/kdenlive/effects/avfilter_elbg.xml +share/kdenlive/effects/avfilter_eq.xml +share/kdenlive/effects/avfilter_equalizer.xml +share/kdenlive/effects/avfilter_erosion.xml +share/kdenlive/effects/avfilter_fftdnoiz.xml +share/kdenlive/effects/avfilter_fftfilt.xml +share/kdenlive/effects/avfilter_field.xml +share/kdenlive/effects/avfilter_fieldorder.xml +share/kdenlive/effects/avfilter_fillborders.xml +share/kdenlive/effects/avfilter_framestep.xml +share/kdenlive/effects/avfilter_fspp.xml +share/kdenlive/effects/avfilter_gblur.xml +share/kdenlive/effects/avfilter_graphmonitor.xml +share/kdenlive/effects/avfilter_hflip.xml +share/kdenlive/effects/avfilter_histeq.xml +share/kdenlive/effects/avfilter_histogram.xml +share/kdenlive/effects/avfilter_hqdn3d.xml +share/kdenlive/effects/avfilter_hqx.xml +share/kdenlive/effects/avfilter_il.xml +share/kdenlive/effects/avfilter_inflate.xml +share/kdenlive/effects/avfilter_kerneldeint.xml +share/kdenlive/effects/avfilter_lagfun.xml +share/kdenlive/effects/avfilter_lenscorrection.xml +share/kdenlive/effects/avfilter_limiter.xml share/kdenlive/effects/avfilter_lut3d.xml +share/kdenlive/effects/avfilter_mcdeint.xml +share/kdenlive/effects/avfilter_negate.xml +share/kdenlive/effects/avfilter_noise.xml +share/kdenlive/effects/avfilter_normalize.xml +share/kdenlive/effects/avfilter_phase.xml +share/kdenlive/effects/avfilter_prewitt.xml +share/kdenlive/effects/avfilter_random.xml +share/kdenlive/effects/avfilter_removegrain.xml +share/kdenlive/effects/avfilter_rgbashift.xml +share/kdenlive/effects/avfilter_roberts.xml +share/kdenlive/effects/avfilter_sab.xml +share/kdenlive/effects/avfilter_selectivecolor.xml +share/kdenlive/effects/avfilter_separatefields.xml +share/kdenlive/effects/avfilter_setrange.xml +share/kdenlive/effects/avfilter_shuffleplanes.xml +share/kdenlive/effects/avfilter_smartblur.xml +share/kdenlive/effects/avfilter_sobel.xml +share/kdenlive/effects/avfilter_sr.xml +share/kdenlive/effects/avfilter_stereo3D.xml +share/kdenlive/effects/avfilter_tmix.xml +share/kdenlive/effects/avfilter_transpose.xml +share/kdenlive/effects/avfilter_unsharp.xml +share/kdenlive/effects/avfilter_vaguedenoiser.xml +share/kdenlive/effects/avfilter_vectorscope.xml +share/kdenlive/effects/avfilter_vflip.xml +share/kdenlive/effects/avfilter_vibrance.xml +share/kdenlive/effects/avfilter_w3fdif.xml +share/kdenlive/effects/avfilter_waveform.xml +share/kdenlive/effects/avfilter_weave.xml +share/kdenlive/effects/avfilter_xbr.xml +share/kdenlive/effects/avfilter_yadif.xml +share/kdenlive/effects/avfilter_zoompan.xml share/kdenlive/effects/boxblur.xml share/kdenlive/effects/brightness.xml share/kdenlive/effects/channelcopy.xml @@ -219,6 +296,7 @@ share/kdenlive/effects/charcoal.xml share/kdenlive/effects/chroma.xml share/kdenlive/effects/chroma_hold.xml share/kdenlive/effects/crop.xml +share/kdenlive/effects/dance.xml share/kdenlive/effects/dust.xml share/kdenlive/effects/dynamic_loudness.xml share/kdenlive/effects/dynamictext.xml @@ -233,8 +311,16 @@ share/kdenlive/effects/frei0r_alphaspot.xml share/kdenlive/effects/frei0r_balanc0r.xml share/kdenlive/effects/frei0r_baltan.xml share/kdenlive/effects/frei0r_bezier_curves.xml +share/kdenlive/effects/frei0r_bgsubtract0r.xml +share/kdenlive/effects/frei0r_bigsh0t_eq_mask.xml +share/kdenlive/effects/frei0r_bigsh0t_eq_to_rect.xml +share/kdenlive/effects/frei0r_bigsh0t_hemi_to_eq.xml +share/kdenlive/effects/frei0r_bigsh0t_rect_to_eq.xml +share/kdenlive/effects/frei0r_bigsh0t_stabilize_360.xml +share/kdenlive/effects/frei0r_bigsh0t_transform_360.xml share/kdenlive/effects/frei0r_brightness.xml share/kdenlive/effects/frei0r_c0rners.xml +share/kdenlive/effects/frei0r_cairoimagegrid.xml share/kdenlive/effects/frei0r_cartoon.xml share/kdenlive/effects/frei0r_cluster.xml share/kdenlive/effects/frei0r_colgate.xml @@ -276,6 +362,7 @@ share/kdenlive/effects/frei0r_pr0file.xml share/kdenlive/effects/frei0r_primaries.xml share/kdenlive/effects/frei0r_rgbnoise.xml share/kdenlive/effects/frei0r_rgbparade.xml +share/kdenlive/effects/frei0r_rgbsplit0r.xml share/kdenlive/effects/frei0r_saturat0r.xml share/kdenlive/effects/frei0r_scale0tilt.xml share/kdenlive/effects/frei0r_scanline0r.xml @@ -302,12 +389,15 @@ share/kdenlive/effects/grain.xml share/kdenlive/effects/greyscale.xml share/kdenlive/effects/invert.xml share/kdenlive/effects/lift_gamma_gain.xml +share/kdenlive/effects/lightshow.xml share/kdenlive/effects/loudness.xml share/kdenlive/effects/luma.xml share/kdenlive/effects/mirror.xml +share/kdenlive/effects/mono.xml share/kdenlive/effects/movit_blur.xml share/kdenlive/effects/movit_deconvolution_sharpen.xml share/kdenlive/effects/movit_diffusion.xml +share/kdenlive/effects/movit_flip.xml share/kdenlive/effects/movit_glow.xml share/kdenlive/effects/movit_lift_gamma_gain.xml share/kdenlive/effects/movit_mirror.xml @@ -322,13 +412,14 @@ share/kdenlive/effects/normalise.xml share/kdenlive/effects/obscure.xml share/kdenlive/effects/oldfilm.xml share/kdenlive/effects/pan_zoom.xml +share/kdenlive/effects/pillar_echo.xml share/kdenlive/effects/qtblend.xml +share/kdenlive/effects/qtcrop.xml share/kdenlive/effects/region.xml share/kdenlive/effects/rotation.xml share/kdenlive/effects/rotation_keyframable.xml share/kdenlive/effects/rotoscoping.xml share/kdenlive/effects/scratchlines.xml -share/kdenlive/effects/selectivecolor.xml share/kdenlive/effects/sepia.xml share/kdenlive/effects/shape.xml share/kdenlive/effects/sox_band.xml @@ -344,7 +435,7 @@ share/kdenlive/effects/swapchannels.xml share/kdenlive/effects/tcolor.xml share/kdenlive/effects/threshold.xml share/kdenlive/effects/tracker.xml -share/kdenlive/effects/unsharp.xml +share/kdenlive/effects/typewriter.xml share/kdenlive/effects/update/frei0r.balanc0r.js share/kdenlive/effects/update/frei0r.cartoon.js share/kdenlive/effects/update/frei0r.curves.js @@ -363,6 +454,7 @@ share/kdenlive/externalproxies.rc share/kdenlive/generators/count.xml share/kdenlive/generators/frei0r_test_pat_b.xml share/kdenlive/generators/noise.xml +share/kdenlive/kdenlivedefaultlayouts.rc share/kdenlive/kdenliveeffectscategory.rc share/kdenlive/kdenlivetranscodingrc share/kdenlive/lumas/HD/bi-linear_x.pgm @@ -404,7 +496,6 @@ share/kdenlive/lumas/PAL/symmetric_clock.pgm share/kdenlive/meta_ffmpeg.png share/kdenlive/meta_libav.png share/kdenlive/meta_magiclantern.png -share/kdenlive/metadata.properties share/kdenlive/profiles/dci_2160p_2398 share/kdenlive/profiles/dci_2160p_24 share/kdenlive/profiles/dci_2160p_25 @@ -413,6 +504,7 @@ share/kdenlive/profiles/dci_2160p_30 share/kdenlive/profiles/dci_2160p_50 share/kdenlive/profiles/dci_2160p_5994 share/kdenlive/profiles/dci_2160p_60 +share/kdenlive/shortcuts/Premiere share/kdenlive/timeline_athumbs.png share/kdenlive/timeline_avthumbs.png share/kdenlive/timeline_nothumbs.png @@ -432,6 +524,10 @@ share/kdenlive/transitions/region.xml share/kdenlive/transitions/slide.xml share/kdenlive/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc +share/knsrcfiles/kdenlive_keyboardschemes.knsrc +share/knsrcfiles/kdenlive_renderprofiles.knsrc +share/knsrcfiles/kdenlive_titles.knsrc +share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo @@ -454,6 +550,7 @@ share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo +share/locale/ia/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index cdf066fbc60..f1ecd319b88 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.9 2021/04/07 12:28:29 markd Exp $ -SHA1 (kdenlive-20.04.1.tar.xz) = cd73203927d186acf194af462488f0d77c906c34 -RMD160 (kdenlive-20.04.1.tar.xz) = 4560a035f19eba0a0f7dd3a6b68244f759acef65 -SHA512 (kdenlive-20.04.1.tar.xz) = 2d412c2041937213346d96a16c975f7e8770b22b70abfffe655f16c752ae33a8f85d2870e8343fc25b3aea8ba7ad8323e32bf076404f907879fb2cb8107cda0c -Size (kdenlive-20.04.1.tar.xz) = 11278316 bytes +SHA1 (kdenlive-20.12.3.tar.xz) = 3a6e02a21bebd9acc6a2700ca75daec7bafd6bdb +RMD160 (kdenlive-20.12.3.tar.xz) = 3d5cde722ca1f9ee9e8c80b610b1bce9eb2f5e47 +SHA512 (kdenlive-20.12.3.tar.xz) = b21c9bd59171969ab84b93bab2617333160521c3b99b61a2182f9d9b5e65c3220b6dd960d71fe5eeb032733127392dafd40748b950b9973e0edfb5ae6317380a +Size (kdenlive-20.12.3.tar.xz) = 11514396 bytes diff --git a/multimedia/libkcddb/Makefile b/multimedia/libkcddb/Makefile index eb5b50aa27b..9285bd48972 100644 --- a/multimedia/libkcddb/Makefile +++ b/multimedia/libkcddb/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.48 2021/02/07 06:30:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.49 2021/04/07 12:28:29 markd Exp $ DISTNAME= libkcddb-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= multimedia HOMEPAGE= https://www.kde.org/applications/multimedia/ diff --git a/multimedia/libkcddb/PLIST b/multimedia/libkcddb/PLIST index 7df9306a652..75f5940b655 100644 --- a/multimedia/libkcddb/PLIST +++ b/multimedia/libkcddb/PLIST @@ -1,14 +1,12 @@ -@comment $NetBSD: PLIST,v 1.4 2020/06/09 11:56:17 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:29 markd Exp $ include/KF5/KCddb/Categories include/KF5/KCddb/Cdinfo -include/KF5/KCddb/CdinfoDialog include/KF5/KCddb/Client include/KF5/KCddb/Genres include/KF5/KCddb/Kcddb include/KF5/KCddb/KcddbConfig include/KF5/KCddb/categories.h include/KF5/KCddb/cdinfo.h -include/KF5/KCddb/cdinfodialog.h include/KF5/KCddb/client.h include/KF5/KCddb/configbase.h include/KF5/KCddb/genres.h @@ -23,17 +21,11 @@ lib/cmake/KF5Cddb/KF5CddbTargets.cmake lib/libKF5Cddb.so lib/libKF5Cddb.so.5 lib/libKF5Cddb.so.5.0.0 -lib/libKF5CddbWidgets.so -lib/libKF5CddbWidgets.so.5 -lib/libKF5CddbWidgets.so.5.0.0 qt5/mkspecs/modules/qt_KCddb.pri qt5/plugins/kcm_cddb.so share/config.kcfg/libkcddb5.kcfg share/doc/HTML/ca/kcontrol/cddbretrieval5/index.cache.bz2 share/doc/HTML/ca/kcontrol/cddbretrieval5/index.docbook -share/doc/HTML/ca/kcontrol/cddbretrieval5/kscd13.png -share/doc/HTML/ca/kcontrol/cddbretrieval5/kscd14.png -share/doc/HTML/ca/kcontrol/cddbretrieval5/kscd16.png share/doc/HTML/de/kcontrol/cddbretrieval5/index.cache.bz2 share/doc/HTML/de/kcontrol/cddbretrieval5/index.docbook share/doc/HTML/de/kcontrol/cddbretrieval5/kscd14.png diff --git a/multimedia/libkcddb/distinfo b/multimedia/libkcddb/distinfo index 9a79c739b9c..b953621ca9e 100644 --- a/multimedia/libkcddb/distinfo +++ b/multimedia/libkcddb/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.12 2021/04/07 12:28:29 markd Exp $ -SHA1 (libkcddb-20.04.1.tar.xz) = ae13b407f6d0b6903d6392a40e760abd49842a51 -RMD160 (libkcddb-20.04.1.tar.xz) = 82584d5f079cd69691670b418451d63190b3cbc8 -SHA512 (libkcddb-20.04.1.tar.xz) = e7dc1d6bca0911bbd2291c5b15d7c384908eea33093bbd1ff621d8d1d846322b28c49261c9efdf186401ac9e2eac272c8355b7a6e37f8ec286d0aa3fd8ea5379 -Size (libkcddb-20.04.1.tar.xz) = 427308 bytes +SHA1 (libkcddb-20.12.3.tar.xz) = ce4207cac78f3c319d652048732138c4184f4d9b +RMD160 (libkcddb-20.12.3.tar.xz) = 127cf8016991b60136de31e4a3b84dc2e1ef12fa +SHA512 (libkcddb-20.12.3.tar.xz) = 7659ccb25555a3c9ae496f7ed695a69bd6ac7df1002c94379f5e637a85673ca1194311b8aa04c2b53a2d3b9f41013e38ecd33403ba5fe66c1afc473cefe08af1 +Size (libkcddb-20.12.3.tar.xz) = 425180 bytes diff --git a/multimedia/libkcompactdisc/distinfo b/multimedia/libkcompactdisc/distinfo index c46392937d5..53bd0ee84e3 100644 --- a/multimedia/libkcompactdisc/distinfo +++ b/multimedia/libkcompactdisc/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2021/02/25 03:23:49 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:29 markd Exp $ -SHA1 (libkcompactdisc-20.04.1.tar.xz) = 60edbb0c0eead7111c799441b5de8477b92daa75 -RMD160 (libkcompactdisc-20.04.1.tar.xz) = 4737125fa37b2751fc1764b3de83e65438ed8350 -SHA512 (libkcompactdisc-20.04.1.tar.xz) = a4e6842876d942103925e940a2c57c88541cf47312661f8d996bfc4bbf659ddcd9cd8fb41fbcd1ce4a0e88a2a07a96aa8f242bf5feb265dfbfda661f320c57b5 -Size (libkcompactdisc-20.04.1.tar.xz) = 88784 bytes +SHA1 (libkcompactdisc-20.12.3.tar.xz) = bcd58fd5c92558e6cab9f9ceedd22ce1b7ac11f6 +RMD160 (libkcompactdisc-20.12.3.tar.xz) = 005b3979f74ae887af684fa179ebf912adf6284e +SHA512 (libkcompactdisc-20.12.3.tar.xz) = cc586d297970304bd845ac8948912753e22d9de8a22e039c6f0a25083c8601bfd21ff831d863786f6db58c990a75f942fc3ce3d3c49bdb55e9a47a2dfaa6192c +Size (libkcompactdisc-20.12.3.tar.xz) = 96728 bytes diff --git a/net/krdc/Makefile b/net/krdc/Makefile index c8a508ee3d3..b202be75c60 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.45 2021/02/07 06:30:36 ryoon Exp $ +# $NetBSD: Makefile,v 1.46 2021/04/07 12:28:30 markd Exp $ DISTNAME= krdc-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= net HOMEPAGE= https://kde.org/applications/internet/krdc/ diff --git a/net/krdc/PLIST b/net/krdc/PLIST index f952c07c7af..e8bafd1035c 100644 --- a/net/krdc/PLIST +++ b/net/krdc/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/30 19:28:45 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:30 markd Exp $ bin/krdc include/krdc/hostpreferences.h include/krdc/remoteview.h @@ -16,8 +16,6 @@ share/applications/org.kde.krdc.desktop share/config.kcfg/krdc.kcfg share/doc/HTML/ca/krdc/index.cache.bz2 share/doc/HTML/ca/krdc/index.docbook -share/doc/HTML/ca/krdc/view-fullscreen.png -share/doc/HTML/ca/krdc/view-restore.png share/doc/HTML/de/krdc/address_input.png share/doc/HTML/de/krdc/bookmarks_menu.png share/doc/HTML/de/krdc/general_preferences.png @@ -53,8 +51,16 @@ share/doc/HTML/fr/krdc/krdc_mainwindow.png share/doc/HTML/fr/krdc/rdp_preferences.png share/doc/HTML/fr/krdc/vnc_host_configuration.png share/doc/HTML/fr/krdc/vnc_preferences.png +share/doc/HTML/it/krdc/address_input.png +share/doc/HTML/it/krdc/bookmarks_menu.png +share/doc/HTML/it/krdc/general_preferences.png share/doc/HTML/it/krdc/index.cache.bz2 share/doc/HTML/it/krdc/index.docbook +share/doc/HTML/it/krdc/krdc_mainwindow.png +share/doc/HTML/it/krdc/password_entry.png +share/doc/HTML/it/krdc/rdp_preferences.png +share/doc/HTML/it/krdc/vnc_host_configuration.png +share/doc/HTML/it/krdc/vnc_preferences.png share/doc/HTML/nl/krdc/index.cache.bz2 share/doc/HTML/nl/krdc/index.docbook share/doc/HTML/pl/krdc/bookmarks_menu.png @@ -79,8 +85,6 @@ share/doc/HTML/sv/krdc/index.cache.bz2 share/doc/HTML/sv/krdc/index.docbook share/doc/HTML/uk/krdc/index.cache.bz2 share/doc/HTML/uk/krdc/index.docbook -share/krdc/pics/pointcursor.png -share/krdc/pics/pointcursormask.png share/kservices5/ServiceMenus/smb2rdc.desktop share/kservices5/krdc_rdp_config.desktop share/kservices5/krdc_vnc_config.desktop diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 304cf93d8f8..ae8f2371160 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.8 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.9 2021/04/07 12:28:30 markd Exp $ -SHA1 (krdc-20.04.1.tar.xz) = 262099d6c7b9a730b415cffc0cefe2b6a1b62ebf -RMD160 (krdc-20.04.1.tar.xz) = 25748121767c66f254ffc2e0451e45d1b3210804 -SHA512 (krdc-20.04.1.tar.xz) = 1bc332e331bfae3865566fd68a4023925cba7ad62f08c1537c235e0e007bc7c4fad1816b2d1fb66ff5854db09104c407e8636a53f94a8d303479c3768f086aa9 -Size (krdc-20.04.1.tar.xz) = 1425064 bytes +SHA1 (krdc-20.12.3.tar.xz) = 313b4fb1c9272d9a9cf538bca57ff1a8411c67da +RMD160 (krdc-20.12.3.tar.xz) = 1760dec838e47b46cc72a8af8d5384d704f19e09 +SHA512 (krdc-20.12.3.tar.xz) = bdf9fd7fd0be6925e6a547d2473ec78d073cfd252595996715f1216d1ff86a2792c995e708aecc4d9273dd605463bd769edffaf6543d0dffc0af910174789e4f +Size (krdc-20.12.3.tar.xz) = 1564652 bytes SHA1 (patch-CMakeLists.txt) = 3debefb9ad426245aec169eb0d8934dbdb6752ae SHA1 (patch-cmake_modules_FindLibVNCServer.cmake) = efc3f6a70f77bcbb2bde951b3108e91a91552613 SHA1 (patch-rdp_rdpview.cpp) = ae33d0996fa41bb5c9d3605c70f8f49b0d8ae343 diff --git a/net/krfb/Makefile b/net/krfb/Makefile index 1dc94a6069c..ea6240e9242 100644 --- a/net/krfb/Makefile +++ b/net/krfb/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2021/02/07 06:30:36 ryoon Exp $ +# $NetBSD: Makefile,v 1.43 2021/04/07 12:28:30 markd Exp $ DISTNAME= krfb-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= net HOMEPAGE= https://kde.org/applications/system/krfb/ diff --git a/net/krfb/PLIST b/net/krfb/PLIST index 4f9cadc8099..f7ecd5aae31 100644 --- a/net/krfb/PLIST +++ b/net/krfb/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2019/11/30 19:35:11 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:30 markd Exp $ bin/krfb lib/libkrfbprivate.so.5 lib/libkrfbprivate.so.5.0 @@ -120,3 +120,4 @@ share/locale/uk/LC_MESSAGES/krfb.mo share/locale/zh_CN/LC_MESSAGES/krfb.mo share/locale/zh_TW/LC_MESSAGES/krfb.mo share/metainfo/org.kde.krfb.appdata.xml +share/qlogging-categories5/krfb.categories diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 03bc266044b..8d0abd11436 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.9 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.10 2021/04/07 12:28:30 markd Exp $ -SHA1 (krfb-20.04.1.tar.xz) = aaa6f31210311352de6144af8bb55c3c6aae0708 -RMD160 (krfb-20.04.1.tar.xz) = 0aedd77903b82e9f71a483f2197aa078d0fe526a -SHA512 (krfb-20.04.1.tar.xz) = 06840c61fc5a771c1acc0e0cbea6c49aa67de5964e75bf4ee617bee0a002036e48e70fa47c3aeb7f376d71db7245cd9325c15fb5c057537d68a9752d43ae6c7c -Size (krfb-20.04.1.tar.xz) = 1276728 bytes +SHA1 (krfb-20.12.3.tar.xz) = 3f89dd5a9a4776b39ba6a41232c4088787b2c53f +RMD160 (krfb-20.12.3.tar.xz) = a9343089670893e77829e4e86faed6926f068ea1 +SHA512 (krfb-20.12.3.tar.xz) = f66948288fbf78adf893c9c53c76acd6eb36e805d6603d912e4cd5d7ecd6fd7dedfa421a072aff989b51b312041793b4a6c3d2a16dbef50a9a1f7014c558b5ab +Size (krfb-20.12.3.tar.xz) = 1280912 bytes SHA1 (patch-cmake_modules_FindLibVNCServer.cmake) = b9033a21495ccdaf1e9cf382af9c43b98486c3e7 diff --git a/print/okular/Makefile b/print/okular/Makefile index d8112c2cc42..c1e82530fcd 100644 --- a/print/okular/Makefile +++ b/print/okular/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.109 2021/04/06 22:55:18 mrg Exp $ +# $NetBSD: Makefile,v 1.110 2021/04/07 12:28:30 markd Exp $ DISTNAME= okular-${KAPPSVER} -PKGREVISION= 7 CATEGORIES= print HOMEPAGE= https://kde.org/applications/graphics/okular/ @@ -26,8 +25,8 @@ SUBST_SED.fix-moc= -e 's;"${PREFIX}/include",;;g' .include "../../devel/chmlib/buildlink3.mk" .include "../../devel/kparts/buildlink3.mk" .include "../../devel/kpty/buildlink3.mk" -.include "../../devel/threadweaver/buildlink3.mk" .include "../../devel/purpose/buildlink3.mk" +.include "../../devel/threadweaver/buildlink3.mk" .include "../../graphics/djvulibre-lib/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../graphics/kdegraphics-mobipocket/buildlink3.mk" diff --git a/print/okular/PLIST b/print/okular/PLIST index dfae17655da..f327bf37b61 100644 --- a/print/okular/PLIST +++ b/print/okular/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2020/06/09 11:56:17 markd Exp $ +@comment $NetBSD: PLIST,v 1.12 2021/04/07 12:28:30 markd Exp $ bin/okular include/okular/core/action.h include/okular/core/annotations.h @@ -62,7 +62,6 @@ qt5/plugins/okular/generators/okularGenerator_ghostview.so qt5/plugins/okular/generators/okularGenerator_kimgio.so qt5/plugins/okular/generators/okularGenerator_md.so qt5/plugins/okular/generators/okularGenerator_mobi.so -qt5/plugins/okular/generators/okularGenerator_ooo.so qt5/plugins/okular/generators/okularGenerator_plucker.so qt5/plugins/okular/generators/okularGenerator_poppler.so qt5/plugins/okular/generators/okularGenerator_tiff.so @@ -80,7 +79,6 @@ share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop -share/applications/okularApplication_ooo.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop @@ -97,7 +95,6 @@ share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop -share/applications/org.kde.mobile.okular_ooo.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop @@ -109,29 +106,14 @@ share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/doc/HTML/ca/okular/bookmark-management.png -share/doc/HTML/ca/okular/bookmarks.png share/doc/HTML/ca/okular/configure-annotations.png share/doc/HTML/ca/okular/configure-backends.png share/doc/HTML/ca/okular/configure-editor.png share/doc/HTML/ca/okular/configure.png -share/doc/HTML/ca/okular/enhance-lowcontrast.png -share/doc/HTML/ca/okular/enhance-shape.png -share/doc/HTML/ca/okular/enhance-solid.png -share/doc/HTML/ca/okular/enhance-thinline.png share/doc/HTML/ca/okular/index.cache.bz2 share/doc/HTML/ca/okular/index.docbook share/doc/HTML/ca/okular/mainwindow.png share/doc/HTML/ca/okular/presentation.png -share/doc/HTML/ca/okular/tool-ellipse-okular.png -share/doc/HTML/ca/okular/tool-highlighter-okular.png -share/doc/HTML/ca/okular/tool-ink-okular.png -share/doc/HTML/ca/okular/tool-line-okular.png -share/doc/HTML/ca/okular/tool-note-inline-okular.png -share/doc/HTML/ca/okular/tool-note-okular.png -share/doc/HTML/ca/okular/tool-polygon-okular.png -share/doc/HTML/ca/okular/tool-stamp-okular.png -share/doc/HTML/ca/okular/tool-typewriter-okular.png -share/doc/HTML/ca/okular/tool-underline-okular.png share/doc/HTML/de/okular/annotation-properties.png share/doc/HTML/de/okular/configure-annotations.png share/doc/HTML/de/okular/configure-editor.png @@ -160,16 +142,29 @@ share/doc/HTML/en/okular/mainwindow.png share/doc/HTML/en/okular/presentation.png share/doc/HTML/en/okular/signatures-bar.png share/doc/HTML/en/okular/signatures-panel.png -share/doc/HTML/en/okular/tool-ellipse-okular.png -share/doc/HTML/en/okular/tool-highlighter-okular.png -share/doc/HTML/en/okular/tool-ink-okular.png -share/doc/HTML/en/okular/tool-line-okular.png -share/doc/HTML/en/okular/tool-note-inline-okular.png -share/doc/HTML/en/okular/tool-note-okular.png -share/doc/HTML/en/okular/tool-polygon-okular.png -share/doc/HTML/en/okular/tool-stamp-okular.png -share/doc/HTML/en/okular/tool-typewriter-okular.png -share/doc/HTML/en/okular/tool-underline-okular.png +share/doc/HTML/en/okular/tool-draw-arrow.png +share/doc/HTML/en/okular/tool-draw-ellipse.png +share/doc/HTML/en/okular/tool-draw-freehand.png +share/doc/HTML/en/okular/tool-draw-highlight.png +share/doc/HTML/en/okular/tool-draw-line.png +share/doc/HTML/en/okular/tool-draw-polyline.png +share/doc/HTML/en/okular/tool-draw-rectangle.png +share/doc/HTML/en/okular/tool-edit-comment.png +share/doc/HTML/en/okular/tool-edit-line-width.png +share/doc/HTML/en/okular/tool-edit-opacity.png +share/doc/HTML/en/okular/tool-favorite.png +share/doc/HTML/en/okular/tool-fill-color.png +share/doc/HTML/en/okular/tool-font-face.png +share/doc/HTML/en/okular/tool-format-text-color.png +share/doc/HTML/en/okular/tool-format-text-strikethrough.png +share/doc/HTML/en/okular/tool-format-text-underline-squiggle.png +share/doc/HTML/en/okular/tool-format-text-underline.png +share/doc/HTML/en/okular/tool-note.png +share/doc/HTML/en/okular/tool-pin.png +share/doc/HTML/en/okular/tool-settings-configure.png +share/doc/HTML/en/okular/tool-tag.png +share/doc/HTML/en/okular/tool-tool-text.png +share/doc/HTML/en/okular/tool-window-pin.png share/doc/HTML/es/okular/configure.png share/doc/HTML/es/okular/embedded-files-bar.png share/doc/HTML/es/okular/index.cache.bz2 @@ -188,8 +183,21 @@ share/doc/HTML/fr/okular/mainwindow.png share/doc/HTML/fr/okular/presentation.png share/doc/HTML/gl/okular/index.cache.bz2 share/doc/HTML/gl/okular/index.docbook +share/doc/HTML/it/okular/annotation-properties.png +share/doc/HTML/it/okular/annotations.png +share/doc/HTML/it/okular/bookmark-management.png +share/doc/HTML/it/okular/configure-annotations.png +share/doc/HTML/it/okular/configure-backends.png +share/doc/HTML/it/okular/configure-editor.png +share/doc/HTML/it/okular/configure.png +share/doc/HTML/it/okular/embedded-files-bar.png +share/doc/HTML/it/okular/forms-bar.png share/doc/HTML/it/okular/index.cache.bz2 share/doc/HTML/it/okular/index.docbook +share/doc/HTML/it/okular/mainwindow.png +share/doc/HTML/it/okular/presentation.png +share/doc/HTML/it/okular/signatures-bar.png +share/doc/HTML/it/okular/signatures-panel.png share/doc/HTML/ja/okular/configure.png share/doc/HTML/ja/okular/embedded-files-bar.png share/doc/HTML/ja/okular/index.cache.bz2 @@ -204,10 +212,6 @@ share/doc/HTML/pl/okular/configure-backends.png share/doc/HTML/pl/okular/configure-editor.png share/doc/HTML/pl/okular/configure.png share/doc/HTML/pl/okular/embedded-files-bar.png -share/doc/HTML/pl/okular/enhance-lowcontrast.png -share/doc/HTML/pl/okular/enhance-shape.png -share/doc/HTML/pl/okular/enhance-solid.png -share/doc/HTML/pl/okular/enhance-thinline.png share/doc/HTML/pl/okular/forms-bar.png share/doc/HTML/pl/okular/index.cache.bz2 share/doc/HTML/pl/okular/index.docbook @@ -276,7 +280,6 @@ share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop -share/kservices5/okularOoo.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop @@ -298,7 +301,6 @@ share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo -share/locale/ar/LC_MESSAGES/okular_ooo.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_txt.mo @@ -318,7 +320,6 @@ share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo -share/locale/bg/LC_MESSAGES/okular_ooo.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_txt.mo @@ -335,7 +336,6 @@ share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo -share/locale/bs/LC_MESSAGES/okular_ooo.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo @@ -353,9 +353,9 @@ share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo -share/locale/ca/LC_MESSAGES/okular_ooo.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo +share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -371,9 +371,9 @@ share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo -share/locale/ca@valencia/LC_MESSAGES/okular_ooo.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo +share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -389,9 +389,9 @@ share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo -share/locale/cs/LC_MESSAGES/okular_ooo.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo +share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -405,8 +405,8 @@ share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo +share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo -share/locale/da/LC_MESSAGES/okular_ooo.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo @@ -424,9 +424,9 @@ share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo -share/locale/de/LC_MESSAGES/okular_ooo.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo +share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -442,9 +442,9 @@ share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo -share/locale/el/LC_MESSAGES/okular_ooo.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo +share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -460,9 +460,9 @@ share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo -share/locale/en_GB/LC_MESSAGES/okular_ooo.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo +share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -477,7 +477,6 @@ share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo -share/locale/eo/LC_MESSAGES/okular_ooo.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo @@ -493,9 +492,9 @@ share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo -share/locale/es/LC_MESSAGES/okular_ooo.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo +share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -511,7 +510,6 @@ share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo -share/locale/et/LC_MESSAGES/okular_ooo.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo @@ -529,9 +527,9 @@ share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo -share/locale/eu/LC_MESSAGES/okular_ooo.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo +share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -548,9 +546,9 @@ share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo -share/locale/fi/LC_MESSAGES/okular_ooo.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo +share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -566,9 +564,9 @@ share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo -share/locale/fr/LC_MESSAGES/okular_ooo.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo +share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -583,7 +581,6 @@ share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo -share/locale/ga/LC_MESSAGES/okular_ooo.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo @@ -600,7 +597,6 @@ share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo -share/locale/gl/LC_MESSAGES/okular_ooo.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo @@ -614,7 +610,6 @@ share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo -share/locale/hi/LC_MESSAGES/okular_ooo.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_xps.mo @@ -629,7 +624,6 @@ share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo -share/locale/hr/LC_MESSAGES/okular_ooo.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo @@ -643,10 +637,11 @@ share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo +share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo -share/locale/hu/LC_MESSAGES/okular_ooo.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo +share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -662,9 +657,9 @@ share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo -share/locale/ia/LC_MESSAGES/okular_ooo.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo +share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -680,7 +675,6 @@ share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo -share/locale/is/LC_MESSAGES/okular_ooo.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo @@ -697,9 +691,9 @@ share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo -share/locale/it/LC_MESSAGES/okular_ooo.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo +share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -715,7 +709,6 @@ share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo -share/locale/ja/LC_MESSAGES/okular_ooo.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_txt.mo @@ -732,7 +725,6 @@ share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo -share/locale/kk/LC_MESSAGES/okular_ooo.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo @@ -749,7 +741,6 @@ share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo -share/locale/km/LC_MESSAGES/okular_ooo.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo @@ -765,9 +756,9 @@ share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo -share/locale/ko/LC_MESSAGES/okular_ooo.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo +share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -783,9 +774,9 @@ share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo -share/locale/lt/LC_MESSAGES/okular_ooo.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo +share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -800,7 +791,6 @@ share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo -share/locale/lv/LC_MESSAGES/okular_ooo.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo @@ -816,7 +806,6 @@ share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo -share/locale/ml/LC_MESSAGES/okular_ooo.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo @@ -833,7 +822,6 @@ share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo -share/locale/mr/LC_MESSAGES/okular_ooo.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo @@ -849,7 +837,6 @@ share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo -share/locale/nb/LC_MESSAGES/okular_ooo.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo @@ -866,7 +853,6 @@ share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo -share/locale/nds/LC_MESSAGES/okular_ooo.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo @@ -884,9 +870,9 @@ share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo -share/locale/nl/LC_MESSAGES/okular_ooo.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo +share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -902,9 +888,9 @@ share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo -share/locale/nn/LC_MESSAGES/okular_ooo.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo +share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -919,7 +905,6 @@ share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo -share/locale/pa/LC_MESSAGES/okular_ooo.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo @@ -937,9 +922,9 @@ share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo -share/locale/pl/LC_MESSAGES/okular_ooo.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo +share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -955,9 +940,9 @@ share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo -share/locale/pt/LC_MESSAGES/okular_ooo.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo +share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -973,9 +958,9 @@ share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo -share/locale/pt_BR/LC_MESSAGES/okular_ooo.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo +share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -990,7 +975,6 @@ share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo -share/locale/ro/LC_MESSAGES/okular_ooo.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_txt.mo @@ -1008,9 +992,9 @@ share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo -share/locale/ru/LC_MESSAGES/okular_ooo.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo +share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1026,9 +1010,9 @@ share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo -share/locale/sk/LC_MESSAGES/okular_ooo.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo +share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1044,9 +1028,9 @@ share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo -share/locale/sl/LC_MESSAGES/okular_ooo.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo +share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1062,7 +1046,6 @@ share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo -share/locale/sr/LC_MESSAGES/okular_ooo.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo @@ -1079,9 +1062,9 @@ share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo -share/locale/sv/LC_MESSAGES/okular_ooo.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo +share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1096,7 +1079,6 @@ share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo -share/locale/tr/LC_MESSAGES/okular_ooo.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_txt.mo @@ -1113,7 +1095,6 @@ share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo -share/locale/ug/LC_MESSAGES/okular_ooo.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo @@ -1131,9 +1112,9 @@ share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo -share/locale/uk/LC_MESSAGES/okular_ooo.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo +share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1147,7 +1128,6 @@ share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo -share/locale/wa/LC_MESSAGES/okular_ooo.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo @@ -1163,9 +1143,9 @@ share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo -share/locale/zh_CN/LC_MESSAGES/okular_ooo.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo +share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo @@ -1181,7 +1161,6 @@ share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo -share/locale/zh_TW/LC_MESSAGES/okular_ooo.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo @@ -1197,7 +1176,6 @@ share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml -share/metainfo/org.kde.okular-ooo.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml @@ -1246,4 +1224,5 @@ share/okular/pics/tool-typewriter-okular-colorizable@2x.png share/okular/pics/uparrow.png share/okular/pics/upleftarrow.png share/okular/tools.xml +share/okular/toolsQuick.xml share/qlogging-categories5/okular.categories diff --git a/print/okular/distinfo b/print/okular/distinfo index ea0b9e2b84b..63b6dddd8fd 100644 --- a/print/okular/distinfo +++ b/print/okular/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.18 2021/04/07 12:28:30 markd Exp $ -SHA1 (okular-20.04.1.tar.xz) = 2ae88cab0028614d308496eb4f3eacfedefa7f59 -RMD160 (okular-20.04.1.tar.xz) = 71b05a433925286a852869a641e097420439758f -SHA512 (okular-20.04.1.tar.xz) = c2414c16d938d06b9bf78956741a3b1f97dab1930a47ba1c822909062e0efc6c5e2faf841d045552d455dc20b2e200213906ff8a5fa888d09c881846a55316bc -Size (okular-20.04.1.tar.xz) = 7236580 bytes +SHA1 (okular-20.12.3.tar.xz) = c6b8b746b7d192ede083042cda8d1755f2e69f8c +RMD160 (okular-20.12.3.tar.xz) = 10967c460d2e1325a27e606ffca3016690d0bcc4 +SHA512 (okular-20.12.3.tar.xz) = f64eca81bdbd163b2780037026c330259d5dd7fed7a175b06601742bc6b98c25f26463d72764e5b77878b3c36df4f4657d4cd5349f389786a45df1a5fa9cda45 +Size (okular-20.12.3.tar.xz) = 7884780 bytes diff --git a/security/kwalletmanager/Makefile b/security/kwalletmanager/Makefile index b4974a78d74..e12ceeb1ee4 100644 --- a/security/kwalletmanager/Makefile +++ b/security/kwalletmanager/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2021/02/07 06:30:37 ryoon Exp $ +# $NetBSD: Makefile,v 1.31 2021/04/07 12:28:30 markd Exp $ DISTNAME= kwalletmanager-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= security HOMEPAGE= https://kde.org/applications/system/kwalletmanager/ diff --git a/security/kwalletmanager/PLIST b/security/kwalletmanager/PLIST index eda97497cd8..1ec0415794b 100644 --- a/security/kwalletmanager/PLIST +++ b/security/kwalletmanager/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2020/02/02 03:04:19 markd Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/04/07 12:28:30 markd Exp $ bin/kwalletmanager5 libexec/kauth/kcm_kwallet_helper5 qt5/plugins/kcm_kwallet5.so @@ -44,8 +44,6 @@ share/doc/HTML/sr/kwallet5/index.cache.bz2 share/doc/HTML/sr/kwallet5/index.docbook share/doc/HTML/sv/kwallet5/index.cache.bz2 share/doc/HTML/sv/kwallet5/index.docbook -share/doc/HTML/uk/kwallet5/edit1.png -share/doc/HTML/uk/kwallet5/edit2.png share/doc/HTML/uk/kwallet5/index.cache.bz2 share/doc/HTML/uk/kwallet5/index.docbook share/doc/HTML/uk/kwallet5/kwalletmanager.png diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 89af3047dce..4129c11f14e 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.7 2021/04/07 12:28:30 markd Exp $ -SHA1 (kwalletmanager-20.04.1.tar.xz) = f4a2425a44ff7ff1b1d9a55dbd87105e078a833a -RMD160 (kwalletmanager-20.04.1.tar.xz) = fd68b202270d04012ac38680cfe542e1e9353698 -SHA512 (kwalletmanager-20.04.1.tar.xz) = 74655976d8e9827be5d3437aedffa06c698d1b152565b7eeb341d5bb3e4c328516c8386a695c736c6e6ff983baa090b1698f5bf8c4e56f275d212aef7c88f5b6 -Size (kwalletmanager-20.04.1.tar.xz) = 789216 bytes +SHA1 (kwalletmanager-20.12.3.tar.xz) = ee0149631d135c26f1b11e571c11fa1beb3ddf6b +RMD160 (kwalletmanager-20.12.3.tar.xz) = 14422791100ce2ffecf22520e6f2b2bfaf9e7500 +SHA512 (kwalletmanager-20.12.3.tar.xz) = 6cc9cb53813b4dc0e5c7c74a3130fee51dd85c4de9f78e4d3c64d40c4b2ed2b134a24f5fe10d67996077f57c4032a8cf2481e418238c5e5ff73c9f0d9657a6a3 +Size (kwalletmanager-20.12.3.tar.xz) = 773840 bytes diff --git a/sysutils/baloo-widgets/PLIST b/sysutils/baloo-widgets/PLIST index 93f424c6c61..63d3b7121bd 100644 --- a/sysutils/baloo-widgets/PLIST +++ b/sysutils/baloo-widgets/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2021/02/11 20:57:44 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:30 markd Exp $ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget @@ -12,7 +12,7 @@ lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-noconfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so -lib/libKF5BalooWidgets.so.20.4.1 +lib/libKF5BalooWidgets.so.20.12.3 lib/libKF5BalooWidgets.so.5 qt5/plugins/baloofilepropertiesplugin.so qt5/plugins/kf5/kfileitemaction/tagsfileitemaction.so diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index bc8cc25e80a..4581642061e 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2021/02/11 20:57:44 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:30 markd Exp $ -SHA1 (baloo-widgets-20.04.1.tar.xz) = e8518300172357f89a853062e9cc4de137c45aaa -RMD160 (baloo-widgets-20.04.1.tar.xz) = 57b6d4d8b0c802040c76307ba68e6e8b17cb448c -SHA512 (baloo-widgets-20.04.1.tar.xz) = f38671acb7e892af0b6d4136e98d6bdb8f42cda937c8dc04de284fd892998c0201b3d48b7d6b313f9dbd214999ec8203fa64e138fb709e81cc8c6877635d93cf -Size (baloo-widgets-20.04.1.tar.xz) = 261524 bytes +SHA1 (baloo-widgets-20.12.3.tar.xz) = cf6ace1e1052e3dc9a9416f431081709a42e9684 +RMD160 (baloo-widgets-20.12.3.tar.xz) = 0bfba1b82b41a27e0993adf18b4da7cadec325b6 +SHA512 (baloo-widgets-20.12.3.tar.xz) = dc00b8196cb0128c69188981b691b17ef242dc150b38322fa7094b400393cd4b592be472c1c17991fd85f8d606f4138936d225a02568b24ee28440ecdba37650 +Size (baloo-widgets-20.12.3.tar.xz) = 261628 bytes diff --git a/sysutils/dolphin/Makefile b/sysutils/dolphin/Makefile index 530134c0db7..d1a8470d160 100644 --- a/sysutils/dolphin/Makefile +++ b/sysutils/dolphin/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2021/02/18 00:15:46 gutteridge Exp $ +# $NetBSD: Makefile,v 1.3 2021/04/07 12:28:30 markd Exp $ DISTNAME= dolphin-${KAPPSVER} -PKGREVISION= 1 CATEGORIES= sysutils HOMEPAGE= https://kde.org/applications/system/dolphin/ @@ -21,16 +20,6 @@ REPLACE_RUBY+= src/settings/services/servicemenudeinstallation USE_TOOLS+= msgmerge -SUBST_CLASSES+= xdg -SUBST_STAGE.xdg= pre-configure -SUBST_MESSAGE.xdg= Install via examples dir. -SUBST_FILES.xdg= src/CMakeLists.txt -SUBST_SED.xdg= -e 's:{KDE_INSTALL_CONFDIR}:{KDE_INSTALL_XDG_EX_DIR}:' - -MAKE_DIRS+= ${PKG_SYSCONFDIR}/xdg -CONF_FILES+= ${PREFIX}/share/examples/kde-xdg/servicemenu.knsrc \ - ${PKG_SYSCONFDIR}/xdg/servicemenu.knsrc - MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/_KDE_build/bin .include "../../devel/kcmutils/buildlink3.mk" diff --git a/sysutils/dolphin/PLIST b/sysutils/dolphin/PLIST index 9854cb595f0..66ca33e4220 100644 --- a/sysutils/dolphin/PLIST +++ b/sysutils/dolphin/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2021/02/11 21:09:49 markd Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/04/07 12:28:30 markd Exp $ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin @@ -44,7 +44,6 @@ share/doc/HTML/ca/dolphin/nepomuk-search.png share/doc/HTML/ca/dolphin/preferences-general-behavior.png share/doc/HTML/ca/dolphin/preferences-navigation.png share/doc/HTML/ca/dolphin/preferences-services.png -share/doc/HTML/ca/dolphin/preferences-startup.png share/doc/HTML/ca/dolphin/preferences-trash.png share/doc/HTML/ca/dolphin/preferences-viewmodes-icons.png share/doc/HTML/ca/dolphin/toolbar-navigation.png @@ -88,8 +87,27 @@ share/doc/HTML/es/dolphin/index.cache.bz2 share/doc/HTML/es/dolphin/index.docbook share/doc/HTML/id/dolphin/index.cache.bz2 share/doc/HTML/id/dolphin/index.docbook +share/doc/HTML/it/dolphin/default-ui.png +share/doc/HTML/it/dolphin/grouping-view.png share/doc/HTML/it/dolphin/index.cache.bz2 share/doc/HTML/it/dolphin/index.docbook +share/doc/HTML/it/dolphin/locationbar-breadcrumb.png +share/doc/HTML/it/dolphin/locationbar-context-menu.png +share/doc/HTML/it/dolphin/locationbar-editable.png +share/doc/HTML/it/dolphin/locationbar-kioslaves-menu.png +share/doc/HTML/it/dolphin/locationbar-places-icon.png +share/doc/HTML/it/dolphin/nepomuk-search-more-options.png +share/doc/HTML/it/dolphin/nepomuk-search.png +share/doc/HTML/it/dolphin/preferences-general-behavior.png +share/doc/HTML/it/dolphin/preferences-navigation.png +share/doc/HTML/it/dolphin/preferences-services.png +share/doc/HTML/it/dolphin/preferences-startup.png +share/doc/HTML/it/dolphin/preferences-trash.png +share/doc/HTML/it/dolphin/preferences-viewmodes-icons.png +share/doc/HTML/it/dolphin/toolbar-navigation.png +share/doc/HTML/it/dolphin/toolbar-view-appearance.png +share/doc/HTML/it/dolphin/toolbar.png +share/doc/HTML/it/dolphin/viewproperties-dialog.png share/doc/HTML/nl/dolphin/default-ui.png share/doc/HTML/nl/dolphin/index.cache.bz2 share/doc/HTML/nl/dolphin/index.docbook @@ -126,6 +144,8 @@ share/doc/HTML/pt_BR/dolphin/toolbar-navigation.png share/doc/HTML/pt_BR/dolphin/toolbar-view-appearance.png share/doc/HTML/pt_BR/dolphin/toolbar.png share/doc/HTML/pt_BR/dolphin/viewproperties-dialog.png +share/doc/HTML/ru/dolphin/index.cache.bz2 +share/doc/HTML/ru/dolphin/index.docbook share/doc/HTML/sr/dolphin/index.cache.bz2 share/doc/HTML/sr/dolphin/index.docbook share/doc/HTML/sv/dolphin/bookmarkbutton.png @@ -158,8 +178,8 @@ share/doc/HTML/uk/dolphin/preferences-viewmodes-icons.png share/doc/HTML/uk/dolphin/toolbar-view-appearance.png share/doc/HTML/uk/dolphin/toolbar.png share/doc/HTML/uk/dolphin/viewproperties-dialog.png -share/examples/kde-xdg/servicemenu.knsrc share/kglobalaccel/org.kde.dolphin.desktop +share/knsrcfiles/servicemenu.knsrc share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop @@ -204,6 +224,7 @@ share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo +share/locale/hu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo @@ -231,6 +252,7 @@ share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo +share/locale/pa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo @@ -238,11 +260,13 @@ share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo +share/locale/ro/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo +share/locale/sl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo diff --git a/sysutils/dolphin/distinfo b/sysutils/dolphin/distinfo index 45714b01710..876579c3b11 100644 --- a/sysutils/dolphin/distinfo +++ b/sysutils/dolphin/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2021/02/11 21:09:49 markd Exp $ +$NetBSD: distinfo,v 1.2 2021/04/07 12:28:30 markd Exp $ -SHA1 (dolphin-20.04.1.tar.xz) = 0ba1cbf308f19ccfea2c215f2634314c076fd3c6 -RMD160 (dolphin-20.04.1.tar.xz) = 3359c2caf27c411233ec676c53bbdb119b0079f7 -SHA512 (dolphin-20.04.1.tar.xz) = 41aa8c95f6159bdfe24ab6adc7a2aa774cc67ddbd074662deb4f459b93d43d7a3c96e958c88d0f437cc52ece37ed1409696eea2bddf0ee2b9bcb8920ad97d5c8 -Size (dolphin-20.04.1.tar.xz) = 4799472 bytes +SHA1 (dolphin-20.12.3.tar.xz) = 521e00a2de03862c1c71007b6da53c6ed4f2f664 +RMD160 (dolphin-20.12.3.tar.xz) = 01fc9e34d62c37fe716b1efd0d6f01a577e8d814 +SHA512 (dolphin-20.12.3.tar.xz) = fb57121875fb6b3db9b3071590ea2b6fe7db1d22238af758591835946ac297d7a1734646385a2f6b7ade41de7dcfdf8f6b5e7dccf335a3cf558259d017e44a11 +Size (dolphin-20.12.3.tar.xz) = 5134660 bytes diff --git a/sysutils/filelight/Makefile b/sysutils/filelight/Makefile index 678b6885871..0860f3a0033 100644 --- a/sysutils/filelight/Makefile +++ b/sysutils/filelight/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.81 2021/02/07 06:30:37 ryoon Exp $ +# $NetBSD: Makefile,v 1.82 2021/04/07 12:28:30 markd Exp $ DISTNAME= filelight-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= sysutils HOMEPAGE= https://kde.org/applications/utilities/org.kde.filelight/ diff --git a/sysutils/filelight/PLIST b/sysutils/filelight/PLIST index 845b63d4676..91da37b6514 100644 --- a/sysutils/filelight/PLIST +++ b/sysutils/filelight/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2019/11/17 04:14:18 markd Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/04/07 12:28:30 markd Exp $ bin/filelight share/applications/org.kde.filelight.desktop share/doc/HTML/de/filelight/config_appear.png @@ -49,6 +49,7 @@ share/icons/hicolor/32x32/apps/filelight.png share/icons/hicolor/48x48/apps/filelight.png share/icons/hicolor/64x64/apps/filelight.png share/kxmlgui5/filelight/filelightui.rc +share/locale/ast/LC_MESSAGES/filelight.mo share/locale/bg/LC_MESSAGES/filelight.mo share/locale/bs/LC_MESSAGES/filelight.mo share/locale/ca/LC_MESSAGES/filelight.mo diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index bb55b432b6d..e3ebd66240e 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2020/06/09 11:56:17 markd Exp $ +$NetBSD: distinfo,v 1.16 2021/04/07 12:28:30 markd Exp $ -SHA1 (filelight-20.04.1.tar.xz) = e779f1c979bcac1887d1392202943d20c218fd0e -RMD160 (filelight-20.04.1.tar.xz) = 11e375819484fdd7c12a328a71baf23fa54b8635 -SHA512 (filelight-20.04.1.tar.xz) = 93b7d8fdd09d84582d9ec41d6c4c7e60a03997f94f8c56ae72eec42c5ef79cc8fb75f310a195c97a3b386f3bed3257874f26955a29928941c5dd895aa556b8c4 -Size (filelight-20.04.1.tar.xz) = 661760 bytes +SHA1 (filelight-20.12.3.tar.xz) = c04b27afb210c7bcd67ab035a0520a1beadd85d1 +RMD160 (filelight-20.12.3.tar.xz) = ea03d111051b6785ebbf1b93029c0f93a0fe5f74 +SHA512 (filelight-20.12.3.tar.xz) = 3a30181a95deb4eb8f9f5cc435658bfa9f5d6406a4756d80535de6783c5ab86c31f874cfa86f56b9a687a72b249d73fcdaa7066e99a548301f648b0abe5b2bb9 +Size (filelight-20.12.3.tar.xz) = 671244 bytes diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index e0a5ea02f6b..23e750f7092 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.122 2021/04/05 12:54:28 markd Exp $ +# $NetBSD: Makefile,v 1.123 2021/04/07 12:28:31 markd Exp $ DISTNAME= k3b-${KAPPSVER} CATEGORIES= sysutils @@ -7,7 +7,6 @@ HOMEPAGE= https://userbase.kde.org/K3b COMMENT= DVD and CD authoring program LICENSE= gnu-gpl-v2 AND gnu-fdl-v1.2 -KAPPSVER= 20.12.3 .include "../../meta-pkgs/kde/applications.mk" BUILD_DEPENDS+= kdoctools>=5.64.0:../../devel/kdoctools diff --git a/sysutils/k3b/PLIST b/sysutils/k3b/PLIST index 677b358fc75..40dcc4667d9 100644 --- a/sysutils/k3b/PLIST +++ b/sysutils/k3b/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2021/04/05 12:54:28 markd Exp $ +@comment $NetBSD: PLIST,v 1.17 2021/04/07 12:28:31 markd Exp $ bin/k3b include/k3b_export.h include/k3bactivepipe.h diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 554565276d5..bb3e08a3e4a 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.28 2021/04/05 12:54:28 markd Exp $ +$NetBSD: distinfo,v 1.29 2021/04/07 12:28:31 markd Exp $ SHA1 (k3b-20.12.3.tar.xz) = 094fb553e92134384beb8a4a3b94dcb600af1870 RMD160 (k3b-20.12.3.tar.xz) = cbe421ff091c1d51300e64f18c13eeaa84f84768 diff --git a/sysutils/kdf/Makefile b/sysutils/kdf/Makefile index 50d3956cb46..0f07faa6724 100644 --- a/sysutils/kdf/Makefile +++ b/sysutils/kdf/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.78 2021/02/07 06:30:38 ryoon Exp $ +# $NetBSD: Makefile,v 1.79 2021/04/07 12:28:31 markd Exp $ DISTNAME= kdf-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= sysutils HOMEPAGE= https://kde.org/applications/system/kdiskfree/ diff --git a/sysutils/kdf/PLIST b/sysutils/kdf/PLIST index 8b07f1cdd1d..4983f408102 100644 --- a/sysutils/kdf/PLIST +++ b/sysutils/kdf/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2020/06/09 11:56:18 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:31 markd Exp $ bin/kdf bin/kwikdisk lib/libkdfprivate.so.20 @@ -38,6 +38,8 @@ share/doc/HTML/it/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/it/kcontrol/blockdevices/index.docbook share/doc/HTML/it/kdf/index.cache.bz2 share/doc/HTML/it/kdf/index.docbook +share/doc/HTML/ko/kcontrol/blockdevices/index.cache.bz2 +share/doc/HTML/ko/kcontrol/blockdevices/index.docbook share/doc/HTML/nl/kcontrol/blockdevices/index.cache.bz2 share/doc/HTML/nl/kcontrol/blockdevices/index.docbook share/doc/HTML/nl/kdf/index.cache.bz2 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 4d2985c87ae..16214ba8fea 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.19 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.20 2021/04/07 12:28:31 markd Exp $ -SHA1 (kdf-20.04.1.tar.xz) = bc8f80bc5dca84ebfb810f2981d74cfbd6cbe6ff -RMD160 (kdf-20.04.1.tar.xz) = 0b2bf526eec796c772b052fe3a9013e1b518822d -SHA512 (kdf-20.04.1.tar.xz) = 60c4914e66ec09726ed14b280243c88c6ba063a633c462489f8b29fc851b151dc0e3efd9c6821c99b62aa4a0847cef8f13efa836684349f911148f2aa32dd65c -Size (kdf-20.04.1.tar.xz) = 462316 bytes +SHA1 (kdf-20.12.3.tar.xz) = 67682be9230a85e18083da4d4bc635221eb7c3be +RMD160 (kdf-20.12.3.tar.xz) = 5dde128dd73554a29963fdb94cee4f3afbb80816 +SHA512 (kdf-20.12.3.tar.xz) = 9b799221e9eaefc57f602c927a08c391792ac919e9d100508ec55ff63be2218048a19496157045f6376629625cf4398ca3efd74ec52f815b2400e63995e0c714 +Size (kdf-20.12.3.tar.xz) = 467360 bytes diff --git a/sysutils/kfloppy/Makefile b/sysutils/kfloppy/Makefile index 8fd9ef07fc8..76ef0c13795 100644 --- a/sysutils/kfloppy/Makefile +++ b/sysutils/kfloppy/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:38 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:31 markd Exp $ DISTNAME= kfloppy-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= sysutils HOMEPAGE= https://kde.org/applications/utilities/kfloppy/ diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index cd8bf433433..f39eb31d0cf 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:31 markd Exp $ -SHA1 (kfloppy-20.04.1.tar.xz) = 7693f6819504adc0059ad31d83ed2e158f661023 -RMD160 (kfloppy-20.04.1.tar.xz) = 016047e17542bb92045c9e52c109ab5fb366003b -SHA512 (kfloppy-20.04.1.tar.xz) = dfba3d4ac8befd1bb1f89c59d0067f9c393400c276bac666ded37b8fc5195936babc6cf9fbf18545baf63657bfd9e1322e3bdedc030516d3e52211b41f9d334b -Size (kfloppy-20.04.1.tar.xz) = 199028 bytes +SHA1 (kfloppy-20.12.3.tar.xz) = a7b7d2db4a4c178bdac91aa4fd7a5483d0becebf +RMD160 (kfloppy-20.12.3.tar.xz) = 4201adc7e349303b4f8034f252e8e7189f5559c6 +SHA512 (kfloppy-20.12.3.tar.xz) = 5220a465fbcb9feeed5f572d26ae4c2cf4eaf2aad68d66e102e3b6d24521d6997582bcb27484c39bb257ffdb19b93239dfe791890edec94af68879e8e10179c6 +Size (kfloppy-20.12.3.tar.xz) = 204260 bytes diff --git a/sysutils/ksystemlog/Makefile b/sysutils/ksystemlog/Makefile index d64eb8d5e12..17c310fe80d 100644 --- a/sysutils/ksystemlog/Makefile +++ b/sysutils/ksystemlog/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.37 2021/02/07 06:30:38 ryoon Exp $ +# $NetBSD: Makefile,v 1.38 2021/04/07 12:28:31 markd Exp $ DISTNAME= ksystemlog-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= sysutils HOMEPAGE= https://kde.org/applications/system/ksystemlog/ diff --git a/sysutils/ksystemlog/PLIST b/sysutils/ksystemlog/PLIST index bfa00b15cfc..8b14eeffab4 100644 --- a/sysutils/ksystemlog/PLIST +++ b/sysutils/ksystemlog/PLIST @@ -1,8 +1,6 @@ -@comment $NetBSD: PLIST,v 1.2 2019/11/25 10:15:37 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:31 markd Exp $ bin/ksystemlog share/applications/org.kde.ksystemlog.desktop -share/doc/HTML/ca/ksystemlog/filter-process.png -share/doc/HTML/ca/ksystemlog/first-opening.png share/doc/HTML/ca/ksystemlog/index.cache.bz2 share/doc/HTML/ca/ksystemlog/index.docbook share/doc/HTML/de/ksystemlog/filter-process.png @@ -26,6 +24,8 @@ share/doc/HTML/fr/ksystemlog/index.docbook share/doc/HTML/fr/ksystemlog/main-screen.png share/doc/HTML/it/ksystemlog/index.cache.bz2 share/doc/HTML/it/ksystemlog/index.docbook +share/doc/HTML/ko/ksystemlog/index.cache.bz2 +share/doc/HTML/ko/ksystemlog/index.docbook share/doc/HTML/nl/ksystemlog/index.cache.bz2 share/doc/HTML/nl/ksystemlog/index.docbook share/doc/HTML/pt/ksystemlog/index.cache.bz2 @@ -35,6 +35,8 @@ share/doc/HTML/pt_BR/ksystemlog/first-opening.png share/doc/HTML/pt_BR/ksystemlog/index.cache.bz2 share/doc/HTML/pt_BR/ksystemlog/index.docbook share/doc/HTML/pt_BR/ksystemlog/main-screen.png +share/doc/HTML/ru/ksystemlog/index.cache.bz2 +share/doc/HTML/ru/ksystemlog/index.docbook share/doc/HTML/sv/ksystemlog/index.cache.bz2 share/doc/HTML/sv/ksystemlog/index.docbook share/doc/HTML/uk/ksystemlog/filter-process.png @@ -42,6 +44,8 @@ share/doc/HTML/uk/ksystemlog/first-opening.png share/doc/HTML/uk/ksystemlog/index.cache.bz2 share/doc/HTML/uk/ksystemlog/index.docbook share/doc/HTML/uk/ksystemlog/main-screen.png +share/doc/HTML/zh_CN/ksystemlog/index.cache.bz2 +share/doc/HTML/zh_CN/ksystemlog/index.docbook share/kxmlgui5/ksystemlog/ksystemlogui.rc share/locale/ar/LC_MESSAGES/ksystemlog.mo share/locale/bg/LC_MESSAGES/ksystemlog.mo diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index ada152a9aff..246b64f6147 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.8 2021/04/07 12:28:31 markd Exp $ -SHA1 (ksystemlog-20.04.1.tar.xz) = 5544e56bd9b56b0653b233b47ff7cf48adf14a6c -RMD160 (ksystemlog-20.04.1.tar.xz) = 57a3a258941ee19a1e76adf8d70edb040d7ee1f5 -SHA512 (ksystemlog-20.04.1.tar.xz) = d2b2269be0beec03788982822c7cd4512338ead6de7c1080066e654253c38d6f5f4d0c6d2d301034b77b22f73083fd0570d8a8320444b542593cf0ed3771bdcf -Size (ksystemlog-20.04.1.tar.xz) = 1929568 bytes +SHA1 (ksystemlog-20.12.3.tar.xz) = bf934f0238cffc8af5c0e3506b28b9272300ada1 +RMD160 (ksystemlog-20.12.3.tar.xz) = 61f7a1b5222181b907668314ed103df78c28d6b9 +SHA512 (ksystemlog-20.12.3.tar.xz) = a7b7d5bdeb7c118469888adcf5c0856758e0a0802d76f6bc8b3afafa7df2de7df7810f0ba73d8867b4bd55003b6c042a6b76e3292f28f1387247fd5e6adc5faa +Size (ksystemlog-20.12.3.tar.xz) = 1938596 bytes diff --git a/textproc/kpimtextedit/Makefile b/textproc/kpimtextedit/Makefile index cfffa959d16..76ab47e38a0 100644 --- a/textproc/kpimtextedit/Makefile +++ b/textproc/kpimtextedit/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:10 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:31 markd Exp $ DISTNAME= kpimtextedit-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= textproc HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/textproc/kpimtextedit/PLIST b/textproc/kpimtextedit/PLIST index 8875736bef1..4c5cafa519e 100644 --- a/textproc/kpimtextedit/PLIST +++ b/textproc/kpimtextedit/PLIST @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:18 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:31 markd Exp $ +include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractMarkupBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab @@ -14,6 +15,7 @@ include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget +include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer @@ -28,6 +30,7 @@ include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils +include/KF5/KPIMTextEdit/kpimtextedit/abstractmarkupbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h include/KF5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h @@ -44,6 +47,7 @@ include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h +include/KF5/KPIMTextEdit/kpimtextedit/richtexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h @@ -65,7 +69,7 @@ lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-noconfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake lib/libKF5PimTextEdit.so lib/libKF5PimTextEdit.so.5 -lib/libKF5PimTextEdit.so.5.14.1 +lib/libKF5PimTextEdit.so.5.16.3 qt5/mkspecs/modules/qt_KPIMTextEdit.pri qt5/plugins/designer/kpimtexteditwidgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo diff --git a/textproc/kpimtextedit/distinfo b/textproc/kpimtextedit/distinfo index dbdaa109f61..50c0521515f 100644 --- a/textproc/kpimtextedit/distinfo +++ b/textproc/kpimtextedit/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:31 markd Exp $ -SHA1 (kpimtextedit-20.04.1.tar.xz) = 33fc354280f836f35b002072777932ac605697d8 -RMD160 (kpimtextedit-20.04.1.tar.xz) = 3440667b4571906108c7c4b667adac55fe9fa8bf -SHA512 (kpimtextedit-20.04.1.tar.xz) = 5007c727492530cdf43f36cca3ebc0c9a73994da8a15ca527620da36e491fba0c5d1506c0340609267e442c12ac3f04ee9424ea45b49898e02cf95e5b3387aa2 -Size (kpimtextedit-20.04.1.tar.xz) = 178520 bytes +SHA1 (kpimtextedit-20.12.3.tar.xz) = 8281e389cea030fb20628a9843df2ff5ac757c06 +RMD160 (kpimtextedit-20.12.3.tar.xz) = af938e53a86405fa32a791cc5048b0170071d8bd +SHA512 (kpimtextedit-20.12.3.tar.xz) = 8a62f79e909d4d434766151b5a53f024252fd6feca94bead809ed5f2a5b81a544563bff15afdcc3c9b280ba51e7f96bd643b490d88c0e28dd7fa378168cb1469 +Size (kpimtextedit-20.12.3.tar.xz) = 201292 bytes diff --git a/time/kcalutils/Makefile b/time/kcalutils/Makefile index f7b42679b7d..d93b48fe91b 100644 --- a/time/kcalutils/Makefile +++ b/time/kcalutils/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/02/07 06:30:10 ryoon Exp $ +# $NetBSD: Makefile,v 1.15 2021/04/07 12:28:31 markd Exp $ DISTNAME= kcalutils-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= time HOMEPAGE= https://community.kde.org/KDE_PIM diff --git a/time/kcalutils/PLIST b/time/kcalutils/PLIST index 90aa300ec0a..daa5bdcb501 100644 --- a/time/kcalutils/PLIST +++ b/time/kcalutils/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2020/06/09 11:56:18 markd Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/04/07 12:28:31 markd Exp $ include/KF5/KCalUtils/KCalUtils/DndFactory include/KF5/KCalUtils/KCalUtils/HtmlExport include/KF5/KCalUtils/KCalUtils/ICalDrag @@ -24,7 +24,7 @@ lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets.cmake lib/grantlee/5.2/kcalendar_grantlee_plugin.so lib/libKF5CalendarUtils.so lib/libKF5CalendarUtils.so.5 -lib/libKF5CalendarUtils.so.5.14.1 +lib/libKF5CalendarUtils.so.5.16.3 qt5/mkspecs/modules/qt_KCalUtils.pri share/locale/ar/LC_MESSAGES/libkcalutils5.mo share/locale/bs/LC_MESSAGES/libkcalutils5.mo diff --git a/time/kcalutils/distinfo b/time/kcalutils/distinfo index b0ff711401d..74904c958bc 100644 --- a/time/kcalutils/distinfo +++ b/time/kcalutils/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.4 2021/04/07 12:28:31 markd Exp $ -SHA1 (kcalutils-20.04.1.tar.xz) = 0ca68dbe63af2c81a177d8660e7f7cd060c447f9 -RMD160 (kcalutils-20.04.1.tar.xz) = ba6ab4d4a57864d387fb09a286af81d579b69ccf -SHA512 (kcalutils-20.04.1.tar.xz) = dddc1ef32ba0f2c5516e6e8c92c6c0e9f212a7d302d1a64e6907524dc3ee364ca01cf712417af2375c4017ff805f4b328500d8467772cbfcd0c4972f54d2f2c6 -Size (kcalutils-20.04.1.tar.xz) = 320892 bytes +SHA1 (kcalutils-20.12.3.tar.xz) = 738e0eedc986dc64611caadb4532f9598ebb2fde +RMD160 (kcalutils-20.12.3.tar.xz) = 308dae4d3d2b24b8abd61a570c81b3b0b69aea0b +SHA512 (kcalutils-20.12.3.tar.xz) = a25d85dcc2e7ece08e9b1e4299954977150ea0e4422f1e9062a86a4829f59a356417bc6cea3f242310e7645f88bd66f8335a8b07b839ef58df1c00abf26558df +Size (kcalutils-20.12.3.tar.xz) = 324512 bytes diff --git a/time/ktimer/Makefile b/time/ktimer/Makefile index cca39aa33e4..afec843e8af 100644 --- a/time/ktimer/Makefile +++ b/time/ktimer/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2021/02/07 06:30:39 ryoon Exp $ +# $NetBSD: Makefile,v 1.55 2021/04/07 12:28:31 markd Exp $ DISTNAME= ktimer-${KAPPSVER} -PKGREVISION= 6 CATEGORIES= time HOMEPAGE= https://kde.org/applications/utilities/ktimer/ diff --git a/time/ktimer/PLIST b/time/ktimer/PLIST index 8d17f1684e0..96e7f64cd11 100644 --- a/time/ktimer/PLIST +++ b/time/ktimer/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/11/17 04:59:39 markd Exp $ +@comment $NetBSD: PLIST,v 1.3 2021/04/07 12:28:31 markd Exp $ bin/ktimer share/applications/org.kde.ktimer.desktop share/doc/HTML/ca/ktimer/index.cache.bz2 @@ -21,6 +21,8 @@ share/doc/HTML/es/ktimer/index.cache.bz2 share/doc/HTML/es/ktimer/index.docbook share/doc/HTML/et/ktimer/index.cache.bz2 share/doc/HTML/et/ktimer/index.docbook +share/doc/HTML/fr/ktimer/index.cache.bz2 +share/doc/HTML/fr/ktimer/index.docbook share/doc/HTML/it/ktimer/index.cache.bz2 share/doc/HTML/it/ktimer/index.docbook share/doc/HTML/nl/ktimer/index.cache.bz2 @@ -33,6 +35,8 @@ share/doc/HTML/pt_BR/ktimer/index.docbook share/doc/HTML/pt_BR/ktimer/main.png share/doc/HTML/pt_BR/ktimer/running.png share/doc/HTML/pt_BR/ktimer/two_at_once.png +share/doc/HTML/ru/ktimer/index.cache.bz2 +share/doc/HTML/ru/ktimer/index.docbook share/doc/HTML/sr/ktimer/index.cache.bz2 share/doc/HTML/sr/ktimer/index.docbook share/doc/HTML/sv/ktimer/index.cache.bz2 diff --git a/time/ktimer/distinfo b/time/ktimer/distinfo index e1cdd87e022..7f26a3d4f54 100644 --- a/time/ktimer/distinfo +++ b/time/ktimer/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.12 2020/06/09 11:56:18 markd Exp $ +$NetBSD: distinfo,v 1.13 2021/04/07 12:28:31 markd Exp $ -SHA1 (ktimer-20.04.1.tar.xz) = fc740499ba4ae9aec06549f15c60f9c8c182c2be -RMD160 (ktimer-20.04.1.tar.xz) = e556c17b220650a083d226bbee8d854d41ff6496 -SHA512 (ktimer-20.04.1.tar.xz) = f1b0f4520578302e669f58641dd45a0bea203da8e4779e151edec584f45ea445e60a6047cc32513b2d7a9f5a1293f378087413008c930217a2fb2fd7eb62b984 -Size (ktimer-20.04.1.tar.xz) = 377824 bytes +SHA1 (ktimer-20.12.3.tar.xz) = bea1e355e534d2baffb4c1b3a242979d54e2a060 +RMD160 (ktimer-20.12.3.tar.xz) = 778d1ad7065da5424d31d8021152b86b595c7586 +SHA512 (ktimer-20.12.3.tar.xz) = 3c278640bf5ce1340941f957ae7ab9050a9ba7b93a25ac9111f73cc01bec49b49a872363a6ceab03d0e893c65ad8228309903fbb993baead896a81ec389ed93b +Size (ktimer-20.12.3.tar.xz) = 386444 bytes diff --git a/x11/kguiaddons/buildlink3.mk b/x11/kguiaddons/buildlink3.mk index 19d1636b2c2..b54b90f632d 100644 --- a/x11/kguiaddons/buildlink3.mk +++ b/x11/kguiaddons/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.20 2020/11/05 09:07:16 ryoon Exp $ +# $NetBSD: buildlink3.mk,v 1.21 2021/04/07 12:28:31 markd Exp $ BUILDLINK_TREE+= kguiaddons @@ -9,6 +9,7 @@ BUILDLINK_API_DEPENDS.kguiaddons+= kguiaddons>=5.18.0 BUILDLINK_ABI_DEPENDS.kguiaddons?= kguiaddons>=5.70.0nb2 BUILDLINK_PKGSRCDIR.kguiaddons?= ../../x11/kguiaddons +.include "../../x11/qt5-qtwayland/buildlink3.mk" .include "../../x11/qt5-qtx11extras/buildlink3.mk" .endif # KGUIADDONS_BUILDLINK3_MK diff --git a/x11/konsole/PLIST b/x11/konsole/PLIST index 97e50f534c4..1038cf293ad 100644 --- a/x11/konsole/PLIST +++ b/x11/konsole/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2021/03/06 04:47:37 markd Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/04/07 12:28:32 markd Exp $ bin/konsole bin/konsoleprofile lib/libkdeinit5_konsole.so @@ -14,6 +14,7 @@ share/doc/HTML/de/konsole/index.docbook share/doc/HTML/en/konsole/draganddrop-contextmenu.png share/doc/HTML/en/konsole/index.cache.bz2 share/doc/HTML/en/konsole/index.docbook +share/doc/HTML/it/konsole/draganddrop-contextmenu.png share/doc/HTML/it/konsole/index.cache.bz2 share/doc/HTML/it/konsole/index.docbook share/doc/HTML/nl/konsole/index.cache.bz2 @@ -23,6 +24,8 @@ share/doc/HTML/pt/konsole/index.docbook share/doc/HTML/pt_BR/konsole/draganddrop-contextmenu.png share/doc/HTML/pt_BR/konsole/index.cache.bz2 share/doc/HTML/pt_BR/konsole/index.docbook +share/doc/HTML/ru/konsole/index.cache.bz2 +share/doc/HTML/ru/konsole/index.docbook share/doc/HTML/sr/konsole/index.cache.bz2 share/doc/HTML/sr/konsole/index.docbook share/doc/HTML/sv/konsole/index.cache.bz2 @@ -30,6 +33,8 @@ share/doc/HTML/sv/konsole/index.docbook share/doc/HTML/uk/konsole/draganddrop-contextmenu.png share/doc/HTML/uk/konsole/index.cache.bz2 share/doc/HTML/uk/konsole/index.docbook +share/doc/HTML/zh_CN/konsole/index.cache.bz2 +share/doc/HTML/zh_CN/konsole/index.docbook share/khotkeys/konsole.khotkeys share/knotifications5/konsole.notifyrc share/knsrcfiles/konsole.knsrc @@ -47,6 +52,7 @@ share/konsole/SolarizedLight.colorscheme share/konsole/WhiteOnBlack.colorscheme share/konsole/default.keytab share/konsole/linux.keytab +share/konsole/macos.keytab share/konsole/solaris.keytab share/kservices5/ServiceMenus/konsolehere.desktop share/kservices5/ServiceMenus/konsolerun.desktop diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 1e11d257b96..167fb4f2cd9 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.10 2021/03/06 04:47:37 markd Exp $ +$NetBSD: distinfo,v 1.11 2021/04/07 12:28:32 markd Exp $ -SHA1 (konsole-20.04.1.tar.xz) = 8ba73f791b283b377536d92f989ac70252bf1912 -RMD160 (konsole-20.04.1.tar.xz) = 3c3981ead2ce86c79a3d7643c2bcf72d0d6ef930 -SHA512 (konsole-20.04.1.tar.xz) = 608bc4e9652e1129b219867c01b40ea2aba4044b9827b6b39ef0d2fed436dfd091c3cd4f568673122761ceb3106e8304d490b0ad5b73210d1890a5ec9e516fa3 -Size (konsole-20.04.1.tar.xz) = 1165784 bytes -SHA1 (patch-src_ProcessInfo.cpp) = a4c6b166f10885ae088b787d2b419b150b9446a8 +SHA1 (konsole-20.12.3.tar.xz) = 6fe6388ef450b5fb718abcac4c9b7fa43adc191b +RMD160 (konsole-20.12.3.tar.xz) = 1666f8e199eca51894bacf20e01c9fdf84588572 +SHA512 (konsole-20.12.3.tar.xz) = a48eaa0080b26369f5f163f3ae345bca7f35aa06d581ecc0bbeca54fee2e9b900a4b648f940a67f506ecb00dba971220f1c1c7a699efcbb6e27ee0932c27e37a +Size (konsole-20.12.3.tar.xz) = 1250536 bytes +SHA1 (patch-src_ProcessInfo.cpp) = 3919cc3b4c3b1f4acc6bd8fc1bbf58ce66803ef3 diff --git a/x11/konsole/patches/patch-src_ProcessInfo.cpp b/x11/konsole/patches/patch-src_ProcessInfo.cpp index 6b85f9268d3..d7049f8804d 100644 --- a/x11/konsole/patches/patch-src_ProcessInfo.cpp +++ b/x11/konsole/patches/patch-src_ProcessInfo.cpp @@ -1,13 +1,13 @@ -$NetBSD: patch-src_ProcessInfo.cpp,v 1.4 2021/03/06 04:47:37 markd Exp $ +$NetBSD: patch-src_ProcessInfo.cpp,v 1.5 2021/04/07 12:28:32 markd Exp $ NetBSD support ---- src/ProcessInfo.cpp.orig 2019-08-08 23:59:38.000000000 +0000 +--- src/ProcessInfo.cpp.orig 2021-02-24 23:11:38.000000000 +0000 +++ src/ProcessInfo.cpp -@@ -999,6 +999,163 @@ private: - return false; +@@ -646,6 +646,164 @@ private: } }; + +#elif defined(Q_OS_NETBSD) +class NetBSDProcessInfo : public UnixProcessInfo +{ @@ -164,11 +164,12 @@ NetBSD support + return false; + } + } -+} ; - #endif - - SSHProcessInfo::SSHProcessInfo(const ProcessInfo &process) : -@@ -1186,6 +1343,8 @@ ProcessInfo *ProcessInfo::newInstance(in ++}; ++ + #elif defined(Q_OS_OPENBSD) + class OpenBSDProcessInfo : public UnixProcessInfo + { +@@ -937,6 +1095,8 @@ ProcessInfo *ProcessInfo::newInstance(in info = new MacProcessInfo(pid); #elif defined(Q_OS_FREEBSD) info = new FreeBSDProcessInfo(pid); |