Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 541820) +++ head/Mk/Uses/kde.mk (revision 541821) @@ -1,862 +1,862 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.19.3 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.71.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 20.04.2 -KDE_APPLICATIONS_SHLIB_VER?= 5.14.2 +KDE_APPLICATIONS_VERSION?= 20.04.3 +KDE_APPLICATIONS_SHLIB_VER?= 5.14.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif -DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} +DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-kwayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKF5DAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 541820) +++ head/accessibility/kmag/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712606 -SHA256 (KDE/applications/20.04.2/kmag-20.04.2.tar.xz) = ad74e7131f5024e3291760759107923ae86d6c7ec887bcb850ac5e369fa9ee7e -SIZE (KDE/applications/20.04.2/kmag-20.04.2.tar.xz) = 674500 +TIMESTAMP = 1594146928 +SHA256 (KDE/release-service/20.04.3/kmag-20.04.3.tar.xz) = f006b2e3b685accc343cdfc8b90d915e7c2647d983b66c2d38565d669ed6d464 +SIZE (KDE/release-service/20.04.3/kmag-20.04.3.tar.xz) = 674356 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 541820) +++ head/accessibility/kmousetool/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712607 -SHA256 (KDE/applications/20.04.2/kmousetool-20.04.2.tar.xz) = b175ef353d9957072d7a23846c7b893ef78f327e88921f5dc7f0e3926e1b680d -SIZE (KDE/applications/20.04.2/kmousetool-20.04.2.tar.xz) = 113348 +TIMESTAMP = 1594146929 +SHA256 (KDE/release-service/20.04.3/kmousetool-20.04.3.tar.xz) = acf710dcdc53e58d3a833345f88214b22dfbd5ab9fd26d9e26c883c18441c715 +SIZE (KDE/release-service/20.04.3/kmousetool-20.04.3.tar.xz) = 113316 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 541820) +++ head/accessibility/kmouth/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712608 -SHA256 (KDE/applications/20.04.2/kmouth-20.04.2.tar.xz) = a2260e2d6b0f30d2aac461c95b9969d75fac2b8901a6d4e3b0705e970a0917af -SIZE (KDE/applications/20.04.2/kmouth-20.04.2.tar.xz) = 1964676 +TIMESTAMP = 1594146929 +SHA256 (KDE/release-service/20.04.3/kmouth-20.04.3.tar.xz) = edc1aab8edd13f3f10f99b79a27dabaffe22ac7048868dd7b66b33a662cc46b2 +SIZE (KDE/release-service/20.04.3/kmouth-20.04.3.tar.xz) = 1964136 Index: head/archivers/ark/Makefile =================================================================== --- head/archivers/ark/Makefile (revision 541820) +++ head/archivers/ark/Makefile (revision 541821) @@ -1,46 +1,46 @@ # $FreeBSD$ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \ qt:5 shared-mime-info tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= 7ZIP ZIP DOCS OPTIONS_DEFAULT_i386= RAR OPTIONS_DEFAULT_amd64= RAR OPTIONS_SUB= YES # The 7ZIP and RAR options only need runtime dependencies; # the port builds identically with or without them. 7ZIP_DESC= Support for 7-Zip archives (runtime) 7ZIP_RUN_DEPENDS= 7z:archivers/p7zip RAR_DESC= Support for RAR archives (runtime) RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip # Override shared library version -KDE_APPLICATIONS_SHLIB_VER=20.4.2 +KDE_APPLICATIONS_SHLIB_VER=20.4.3 .include Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 541820) +++ head/archivers/ark/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712609 -SHA256 (KDE/applications/20.04.2/ark-20.04.2.tar.xz) = ba2176a5ca3ca5de7bb38ff60d276c6cb85eb1533ae0dc76b3c4095fbde0bb96 -SIZE (KDE/applications/20.04.2/ark-20.04.2.tar.xz) = 2587052 +TIMESTAMP = 1594146930 +SHA256 (KDE/release-service/20.04.3/ark-20.04.3.tar.xz) = e7251b0b6f12291ffbaa328bf7f8e101ebeef6fd110dabbcf76d8ad7cfd305bc +SIZE (KDE/release-service/20.04.3/ark-20.04.3.tar.xz) = 2586436 Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 541820) +++ head/astro/libkgeomap/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712609 -SHA256 (KDE/applications/20.04.2/libkgeomap-20.04.2.tar.xz) = 8a32b23942c7fa670dd0e8024340e0c28a9d326b8dc44f8453412ffa8748168a -SIZE (KDE/applications/20.04.2/libkgeomap-20.04.2.tar.xz) = 150952 +TIMESTAMP = 1594146931 +SHA256 (KDE/release-service/20.04.3/libkgeomap-20.04.3.tar.xz) = 34e41b2505a34355a31a548bb8f94955b3dc4391c71201164574ff45b532818d +SIZE (KDE/release-service/20.04.3/libkgeomap-20.04.3.tar.xz) = 150940 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 541820) +++ head/astro/marble/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712611 -SHA256 (KDE/applications/20.04.2/marble-20.04.2.tar.xz) = dbd31b0d81e8414db30278948a95f87a23730da0aa5b96cbf3088ec67c450714 -SIZE (KDE/applications/20.04.2/marble-20.04.2.tar.xz) = 52206460 +TIMESTAMP = 1594146932 +SHA256 (KDE/release-service/20.04.3/marble-20.04.3.tar.xz) = 9c0b6fb13d53e1748de081c43e06cc132d5b07d46e594443b207fbaf74e1f95b +SIZE (KDE/release-service/20.04.3/marble-20.04.3.tar.xz) = 52200548 Index: head/astro/marble/pkg-plist =================================================================== --- head/astro/marble/pkg-plist (revision 541820) +++ head/astro/marble/pkg-plist (revision 541821) @@ -1,1811 +1,1770 @@ bin/marble bin/marble-qt etc/xdg/marble.knsrc include/astro/astr2lib.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_declarative_export.h include/marble/marble_export.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.0.17.20 lib/libastro.so.1 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 %%GPS%%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 %%WEBENGINE%%lib/marble/plugins/libOpenDesktopPlugin.so lib/marble/plugins/libOpenLocationCodeSearchPlugin.so lib/marble/plugins/libOpenRouteServicePlugin.so lib/marble/plugins/libOsmPlugin.so lib/marble/plugins/libOverviewMap.so %%WEBENGINE%%lib/marble/plugins/libPhoto.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 %%GPS%%lib/marble/plugins/libQtPositioningPositionProviderPlugin.so lib/marble/plugins/libRoutingPlugin.so lib/marble/plugins/libRoutinoPlugin.so lib/marble/plugins/libSatellitesPlugin.so lib/marble/plugins/libSpeedometer.so lib/marble/plugins/libStarsPlugin.so lib/marble/plugins/libSunPlugin.so %%WEBENGINE%%lib/marble/plugins/libWeather.so %%WEBENGINE%%lib/marble/plugins/libWikipedia.so lib/marble/plugins/libYoursPlugin.so lib/plugins/designer/libLatLonEditPlugin.so lib/plugins/designer/libMarbleNavigatorPlugin.so lib/plugins/designer/libMarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/libmarblethumbnail.so %%QT_PLUGINDIR%%/plasma_runner_marble.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg 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/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop share/kservices5/marble_thumbnail_kml.desktop share/kservices5/marble_thumbnail_kmz.desktop share/kservices5/marble_thumbnail_osm.desktop share/kservices5/plasma-applet-org.kde.plasma.worldclock.desktop share/kservices5/plasma-runner-marble.desktop share/kservices5/plasma-wallpaper-org.kde.plasma.worldmap.desktop share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm -share/locale/bg/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm -share/locale/bs/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm -share/locale/ca/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm -share/locale/ca@valencia/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm -share/locale/cs/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo 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/marble_xml_mimetypes.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm -share/locale/de/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm -share/locale/el/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm -share/locale/en_GB/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm -share/locale/eo/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm -share/locale/es/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm -share/locale/et/LC_MESSAGES/marble_xml_mimetypes.mo 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/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm -share/locale/fi/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm -share/locale/fr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm -share/locale/ga/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm -share/locale/gl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm -share/locale/hu/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm -share/locale/it/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm -share/locale/ja/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm -share/locale/kk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm -share/locale/ko/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm -share/locale/lt/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm -share/locale/lv/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm -share/locale/ml/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm -share/locale/mr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm -share/locale/nb/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm -share/locale/nds/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm -share/locale/nl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm -share/locale/nn/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm -share/locale/pl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm -share/locale/pt/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm -share/locale/pt_BR/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm -share/locale/ru/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm -share/locale/sk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm -share/locale/sl/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm -share/locale/sv/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm -share/locale/tr/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm -share/locale/ug/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm -share/locale/uk/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm -share/locale/zh_CN/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm -share/locale/zh_TW/LC_MESSAGES/marble_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/LICENSE.txt %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/sentinel2/0/0/0.jpg %%DATADIR%%/data/maps/earth/sentinel2/legend.html %%DATADIR%%/data/maps/earth/sentinel2/sentinel2-preview.png %%DATADIR%%/data/maps/earth/sentinel2/sentinel2.dgml %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg %%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/metainfo/org.kde.plasma.worldclock.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 541820) +++ head/audio/audiocd-kio/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712611 -SHA256 (KDE/applications/20.04.2/audiocd-kio-20.04.2.tar.xz) = 99664af57b6bd0d51c28ff666323e6deb4959ae0b83e7061d517bbdfb211c894 -SIZE (KDE/applications/20.04.2/audiocd-kio-20.04.2.tar.xz) = 489304 +TIMESTAMP = 1594146933 +SHA256 (KDE/release-service/20.04.3/audiocd-kio-20.04.3.tar.xz) = af8782771a5d48fb2e3ba9703f8b8e542f5fddd418ca293d23a6eb83ebe86929 +SIZE (KDE/release-service/20.04.3/audiocd-kio-20.04.3.tar.xz) = 489356 Index: head/audio/elisa/distinfo =================================================================== --- head/audio/elisa/distinfo (revision 541820) +++ head/audio/elisa/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591724286 -SHA256 (KDE/applications/20.04.2/elisa-20.04.2.tar.xz) = d46b8eab27aa183362d6298dacbcec04e57126f25b122f1db31f6819f42dd893 -SIZE (KDE/applications/20.04.2/elisa-20.04.2.tar.xz) = 1407692 +TIMESTAMP = 1594146934 +SHA256 (KDE/release-service/20.04.3/elisa-20.04.3.tar.xz) = d99dc2eb80d4219d08c72e612ac07cbb6c91c2eff365b49da69cbc3c1e70885b +SIZE (KDE/release-service/20.04.3/elisa-20.04.3.tar.xz) = 1409336 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 541820) +++ head/audio/juk/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712612 -SHA256 (KDE/applications/20.04.2/juk-20.04.2.tar.xz) = 2756d8b67fcbb95d9b30e1aa8f79e30dff2353086b138f6a62243a7bd1586115 -SIZE (KDE/applications/20.04.2/juk-20.04.2.tar.xz) = 1869788 +TIMESTAMP = 1594146935 +SHA256 (KDE/release-service/20.04.3/juk-20.04.3.tar.xz) = 2566257f83db74d69b95e109146a82e1e03966b3592c891b48e81cf2a13d812b +SIZE (KDE/release-service/20.04.3/juk-20.04.3.tar.xz) = 1868832 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 541820) +++ head/audio/kmix/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712613 -SHA256 (KDE/applications/20.04.2/kmix-20.04.2.tar.xz) = 6cbd745bd3214c7b14ddae13d6d214d866734028192865fda25ebc944e7f75d7 -SIZE (KDE/applications/20.04.2/kmix-20.04.2.tar.xz) = 1007080 +TIMESTAMP = 1594146936 +SHA256 (KDE/release-service/20.04.3/kmix-20.04.3.tar.xz) = 1830bc59d836d2155fd7a24c5afe3c7f5682a96217c159a062fd28b851414dc6 +SIZE (KDE/release-service/20.04.3/kmix-20.04.3.tar.xz) = 1006804 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 541820) +++ head/audio/kwave/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712614 -SHA256 (KDE/applications/20.04.2/kwave-20.04.2.tar.xz) = 055de6b199008006108779451c74007f1e781fb1ee2d957018783015edb50e79 -SIZE (KDE/applications/20.04.2/kwave-20.04.2.tar.xz) = 6195816 +TIMESTAMP = 1594146937 +SHA256 (KDE/release-service/20.04.3/kwave-20.04.3.tar.xz) = 111ea78c90371f566500e88d746812b17875e154e431b3694e3d226f3f19e988 +SIZE (KDE/release-service/20.04.3/kwave-20.04.3.tar.xz) = 6195772 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 541820) +++ head/audio/libkcddb/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712615 -SHA256 (KDE/applications/20.04.2/libkcddb-20.04.2.tar.xz) = a48cc2c81da2882d59eed961c9f5a0ad979e1d7c02e21aec7233b7ed7bf2c452 -SIZE (KDE/applications/20.04.2/libkcddb-20.04.2.tar.xz) = 427412 +TIMESTAMP = 1594146937 +SHA256 (KDE/release-service/20.04.3/libkcddb-20.04.3.tar.xz) = d205d3a458c0d54d7118e36006710fe2d2993de5b417c9d8936762fa710634b4 +SIZE (KDE/release-service/20.04.3/libkcddb-20.04.3.tar.xz) = 427292 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 541820) +++ head/audio/libkcompactdisc/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712616 -SHA256 (KDE/applications/20.04.2/libkcompactdisc-20.04.2.tar.xz) = 9ac8b6efc31b6055cfc03891af878d10ac5e1fec039ff3b3e3fce56c7110872b -SIZE (KDE/applications/20.04.2/libkcompactdisc-20.04.2.tar.xz) = 88720 +TIMESTAMP = 1594146938 +SHA256 (KDE/release-service/20.04.3/libkcompactdisc-20.04.3.tar.xz) = 5bc98eba521f66cb52645786cf875037397e4dbd3ec4c9a23687d936d1505d24 +SIZE (KDE/release-service/20.04.3/libkcompactdisc-20.04.3.tar.xz) = 88768 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 541820) +++ head/databases/akonadi/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712616 -SHA256 (KDE/applications/20.04.2/akonadi-20.04.2.tar.xz) = b2e4bb3a8038ecb47bcdecc25edad21a6c5eb0366c1e739064ccaa3f13b20f16 -SIZE (KDE/applications/20.04.2/akonadi-20.04.2.tar.xz) = 1584156 +TIMESTAMP = 1594146939 +SHA256 (KDE/release-service/20.04.3/akonadi-20.04.3.tar.xz) = c91cc53afd2f81fbeed55700cd86010ee865de2594948769410167e6992bdb32 +SIZE (KDE/release-service/20.04.3/akonadi-20.04.3.tar.xz) = 1584704 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 541820) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712617 -SHA256 (KDE/applications/20.04.2/akonadi-calendar-tools-20.04.2.tar.xz) = e0c1c99ee52347da9942f494272f979d7d692b6c3e7a05dc67ac74a27df963f2 -SIZE (KDE/applications/20.04.2/akonadi-calendar-tools-20.04.2.tar.xz) = 224616 +TIMESTAMP = 1594146940 +SHA256 (KDE/release-service/20.04.3/akonadi-calendar-tools-20.04.3.tar.xz) = 654fec93158e6623a8a81a371fa85d0a18b9f486f6c29926d97a8105a2d65ed2 +SIZE (KDE/release-service/20.04.3/akonadi-calendar-tools-20.04.3.tar.xz) = 224784 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 541820) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712618 -SHA256 (KDE/applications/20.04.2/akonadi-import-wizard-20.04.2.tar.xz) = 3573bb200102d9439f65e278c4c1fc5e3adc6d8049898ebeab859ded159304eb -SIZE (KDE/applications/20.04.2/akonadi-import-wizard-20.04.2.tar.xz) = 439148 +TIMESTAMP = 1594146941 +SHA256 (KDE/release-service/20.04.3/akonadi-import-wizard-20.04.3.tar.xz) = 225615f9d64166ce33718817dfda7aadada5876204c939edc1455ae01b7bf1b2 +SIZE (KDE/release-service/20.04.3/akonadi-import-wizard-20.04.3.tar.xz) = 439088 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 541820) +++ head/deskutils/akonadiconsole/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712619 -SHA256 (KDE/applications/20.04.2/akonadiconsole-20.04.2.tar.xz) = 453ea3ed27b897b588d7adc9dc0865655efde841ecbcc9aceba84a923071eef8 -SIZE (KDE/applications/20.04.2/akonadiconsole-20.04.2.tar.xz) = 193656 +TIMESTAMP = 1594146942 +SHA256 (KDE/release-service/20.04.3/akonadiconsole-20.04.3.tar.xz) = acd6d63a30af49ec66ff30c3ecdd4e53c4f4a15c4d1e41ffd988366b5106447c +SIZE (KDE/release-service/20.04.3/akonadiconsole-20.04.3.tar.xz) = 193688 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 541820) +++ head/deskutils/akregator/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712620 -SHA256 (KDE/applications/20.04.2/akregator-20.04.2.tar.xz) = f5f79894bf939d9448a51da3a52eb81d8609831e55a8e7eeb556374d63e5b0fd -SIZE (KDE/applications/20.04.2/akregator-20.04.2.tar.xz) = 2196800 +TIMESTAMP = 1594146943 +SHA256 (KDE/release-service/20.04.3/akregator-20.04.3.tar.xz) = e175a1b60270ad76afaf16e8e5630d237cdc068c06d0ae93591494b18ad4584c +SIZE (KDE/release-service/20.04.3/akregator-20.04.3.tar.xz) = 2196124 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 541820) +++ head/deskutils/grantlee-editor/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712621 -SHA256 (KDE/applications/20.04.2/grantlee-editor-20.04.2.tar.xz) = 95206ed8f3372198f77e3b9307828d94d79c8278f41624d6467de3eddef77819 -SIZE (KDE/applications/20.04.2/grantlee-editor-20.04.2.tar.xz) = 111212 +TIMESTAMP = 1594146945 +SHA256 (KDE/release-service/20.04.3/grantlee-editor-20.04.3.tar.xz) = 1a3e4ece1a37e11735291bbec99314bc0ede0714377db916ed1266ec19325ef5 +SIZE (KDE/release-service/20.04.3/grantlee-editor-20.04.3.tar.xz) = 111096 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 541820) +++ head/deskutils/grantleetheme/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712621 -SHA256 (KDE/applications/20.04.2/grantleetheme-20.04.2.tar.xz) = 112520067c6ee714f4412318ee126a9582e44fdcb584660847fe33840e3dc2e5 -SIZE (KDE/applications/20.04.2/grantleetheme-20.04.2.tar.xz) = 55008 +TIMESTAMP = 1594146946 +SHA256 (KDE/release-service/20.04.3/grantleetheme-20.04.3.tar.xz) = c5b2e4b1d5e14b39d2e66d160ba0b86c16f86e921abf578640bf1576a5f25eb3 +SIZE (KDE/release-service/20.04.3/grantleetheme-20.04.3.tar.xz) = 55100 Index: head/deskutils/grantleetheme/pkg-plist =================================================================== --- head/deskutils/grantleetheme/pkg-plist (revision 541820) +++ head/deskutils/grantleetheme/pkg-plist (revision 541821) @@ -1,70 +1,71 @@ share/qlogging-categories5/grantleetheme.categories share/qlogging-categories5/grantleetheme.renamecategories include/KF5/GrantleeTheme/GenericFormatter include/KF5/GrantleeTheme/GrantleeKi18nLocalizer include/KF5/GrantleeTheme/GrantleeTheme include/KF5/GrantleeTheme/GrantleeThemeEngine include/KF5/GrantleeTheme/GrantleeThemeManager include/KF5/GrantleeTheme/QtResourceTemplateLoader include/KF5/grantleetheme/GenericFormatter include/KF5/grantleetheme/GrantleeKi18nLocalizer include/KF5/grantleetheme/GrantleeTheme include/KF5/grantleetheme/GrantleeThemeEngine include/KF5/grantleetheme/GrantleeThemeManager include/KF5/grantleetheme/QtResourceTemplateLoader include/KF5/grantleetheme/grantleeki18nlocalizer.h include/KF5/grantleetheme/grantleetheme.h include/KF5/grantleetheme/genericformatter.h include/KF5/grantleetheme/grantleetheme_export.h include/KF5/grantleetheme/grantleethemeengine.h include/KF5/grantleetheme/grantleethememanager.h include/KF5/grantleetheme/qtresourcetemplateloader.h include/KF5/grantleetheme_version.h lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfig.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfigVersion.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kde_grantlee_plugin.so lib/libKF5GrantleeTheme.so lib/libKF5GrantleeTheme.so.5 lib/libKF5GrantleeTheme.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_GrantleeTheme.pri share/locale/ar/LC_MESSAGES/libgrantleetheme.mo share/locale/bg/LC_MESSAGES/libgrantleetheme.mo share/locale/bs/LC_MESSAGES/libgrantleetheme.mo share/locale/ca/LC_MESSAGES/libgrantleetheme.mo share/locale/ca@valencia/LC_MESSAGES/libgrantleetheme.mo share/locale/cs/LC_MESSAGES/libgrantleetheme.mo share/locale/da/LC_MESSAGES/libgrantleetheme.mo share/locale/de/LC_MESSAGES/libgrantleetheme.mo share/locale/el/LC_MESSAGES/libgrantleetheme.mo share/locale/en_GB/LC_MESSAGES/libgrantleetheme.mo share/locale/es/LC_MESSAGES/libgrantleetheme.mo share/locale/et/LC_MESSAGES/libgrantleetheme.mo share/locale/fi/LC_MESSAGES/libgrantleetheme.mo share/locale/fr/LC_MESSAGES/libgrantleetheme.mo share/locale/gl/LC_MESSAGES/libgrantleetheme.mo share/locale/hu/LC_MESSAGES/libgrantleetheme.mo share/locale/ia/LC_MESSAGES/libgrantleetheme.mo share/locale/it/LC_MESSAGES/libgrantleetheme.mo share/locale/ja/LC_MESSAGES/libgrantleetheme.mo share/locale/kk/LC_MESSAGES/libgrantleetheme.mo share/locale/ko/LC_MESSAGES/libgrantleetheme.mo share/locale/lt/LC_MESSAGES/libgrantleetheme.mo share/locale/nb/LC_MESSAGES/libgrantleetheme.mo share/locale/nds/LC_MESSAGES/libgrantleetheme.mo share/locale/nl/LC_MESSAGES/libgrantleetheme.mo +share/locale/nn/LC_MESSAGES/libgrantleetheme.mo share/locale/pl/LC_MESSAGES/libgrantleetheme.mo share/locale/pt/LC_MESSAGES/libgrantleetheme.mo share/locale/pt_BR/LC_MESSAGES/libgrantleetheme.mo share/locale/ro/LC_MESSAGES/libgrantleetheme.mo share/locale/ru/LC_MESSAGES/libgrantleetheme.mo share/locale/sk/LC_MESSAGES/libgrantleetheme.mo share/locale/sl/LC_MESSAGES/libgrantleetheme.mo share/locale/sr/LC_MESSAGES/libgrantleetheme.mo share/locale/sv/LC_MESSAGES/libgrantleetheme.mo share/locale/tr/LC_MESSAGES/libgrantleetheme.mo share/locale/ug/LC_MESSAGES/libgrantleetheme.mo share/locale/uk/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_CN/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_TW/LC_MESSAGES/libgrantleetheme.mo Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 541820) +++ head/deskutils/kaddressbook/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712622 -SHA256 (KDE/applications/20.04.2/kaddressbook-20.04.2.tar.xz) = 74b79b5682e1475bd75240468d4fe61cd8bbb8cf8bffe64cb72587623ad0eb00 -SIZE (KDE/applications/20.04.2/kaddressbook-20.04.2.tar.xz) = 2427676 +TIMESTAMP = 1594146948 +SHA256 (KDE/release-service/20.04.3/kaddressbook-20.04.3.tar.xz) = d1c8f6af88572548a90756963921a8555df239467858432079a37788f4980b58 +SIZE (KDE/release-service/20.04.3/kaddressbook-20.04.3.tar.xz) = 2427140 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 541820) +++ head/deskutils/kalarm/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712623 -SHA256 (KDE/applications/20.04.2/kalarm-20.04.2.tar.xz) = dbe88105a14920f1d4113e4c0842ae7ead01db1d5362e3a41305791ccc2a9f33 -SIZE (KDE/applications/20.04.2/kalarm-20.04.2.tar.xz) = 1840924 +TIMESTAMP = 1594146949 +SHA256 (KDE/release-service/20.04.3/kalarm-20.04.3.tar.xz) = 71f94af998495c759b9c2e7bf2092887748301c993f76dbf36f6ac9e4bb2a1f5 +SIZE (KDE/release-service/20.04.3/kalarm-20.04.3.tar.xz) = 1838048 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 541820) +++ head/deskutils/kcharselect/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712624 -SHA256 (KDE/applications/20.04.2/kcharselect-20.04.2.tar.xz) = 50fff8cfa3dea3f51312b1c3d629d633a66f6cb6c1ca62bdd26f1f5a72f00de2 -SIZE (KDE/applications/20.04.2/kcharselect-20.04.2.tar.xz) = 335648 +TIMESTAMP = 1594146950 +SHA256 (KDE/release-service/20.04.3/kcharselect-20.04.3.tar.xz) = 0da77b66efeab1ba7c17335853f3c3feab9b53b4c37cfa6a9f983327d13080f4 +SIZE (KDE/release-service/20.04.3/kcharselect-20.04.3.tar.xz) = 335620 Index: head/deskutils/kdeconnect-kde/distinfo =================================================================== --- head/deskutils/kdeconnect-kde/distinfo (revision 541820) +++ head/deskutils/kdeconnect-kde/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591722743 -SHA256 (KDE/applications/20.04.2/kdeconnect-kde-20.04.2.tar.xz) = 37a606f243dcce42cdb84f5d27123845b6377e1f7043a618ad2f31b69653037b -SIZE (KDE/applications/20.04.2/kdeconnect-kde-20.04.2.tar.xz) = 429760 +TIMESTAMP = 1594146952 +SHA256 (KDE/release-service/20.04.3/kdeconnect-kde-20.04.3.tar.xz) = 412940a35dcd9f1491a54e4f9fd5ffdadc890bb9a45cfe2a0f8cb1ee7dc1ccbb +SIZE (KDE/release-service/20.04.3/kdeconnect-kde-20.04.3.tar.xz) = 431092 Index: head/deskutils/kdeconnect-kde/pkg-plist =================================================================== --- head/deskutils/kdeconnect-kde/pkg-plist (revision 541820) +++ head/deskutils/kdeconnect-kde/pkg-plist (revision 541821) @@ -1,611 +1,617 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.1 lib/libkdeconnectcore.so.1.4.0 lib/libkdeconnectinterfaces.so.1 lib/libkdeconnectinterfaces.so.1.4.0 lib/libkdeconnectpluginkcm.so.1 lib/libkdeconnectpluginkcm.so.1.4.0 lib/libkdeconnectsmshelper.so.1 lib/libkdeconnectsmshelper.so.1.4.0 %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect.smshandler.desktop share/applications/org.kde.kdeconnect.telhandler.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/icons/hicolor/128x128/apps/kdeconnect.png share/icons/hicolor/16x16/apps/kdeconnect.png share/icons/hicolor/22x22/apps/kdeconnect.png share/icons/hicolor/256x256/apps/kdeconnect.png share/icons/hicolor/32x32/apps/kdeconnect.png share/icons/hicolor/32x32/status/laptopconnected.png share/icons/hicolor/32x32/status/laptopdisconnected.png share/icons/hicolor/32x32/status/laptoptrusted.png share/icons/hicolor/32x32/status/smartphoneconnected.png share/icons/hicolor/32x32/status/smartphonedisconnected.png share/icons/hicolor/32x32/status/smartphonetrusted.png share/icons/hicolor/32x32/status/tabletconnected.png share/icons/hicolor/32x32/status/tabletdisconnected.png share/icons/hicolor/32x32/status/tablettrusted.png share/icons/hicolor/32x32/status/tvconnected.png share/icons/hicolor/32x32/status/tvdisconnected.png share/icons/hicolor/32x32/status/tvtrusted.png share/icons/hicolor/48x48/apps/kdeconnect.png share/icons/hicolor/64x64/apps/kdeconnect.png share/icons/hicolor/scalable/apps/kdeconnect.svgz share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/icons/hicolor/scalable/status/laptopconnected.svg share/icons/hicolor/scalable/status/laptopdisconnected.svg share/icons/hicolor/scalable/status/laptoptrusted.svg share/icons/hicolor/scalable/status/smartphoneconnected.svg share/icons/hicolor/scalable/status/smartphonedisconnected.svg share/icons/hicolor/scalable/status/smartphonetrusted.svg share/icons/hicolor/scalable/status/tabletconnected.svg share/icons/hicolor/scalable/status/tabletdisconnected.svg share/icons/hicolor/scalable/status/tablettrusted.svg share/icons/hicolor/scalable/status/tvconnected.svg share/icons/hicolor/scalable/status/tvdisconnected.svg share/icons/hicolor/scalable/status/tvtrusted.svg share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/kservicetypes5/kdeconnect_plugin.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo +share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/zsh/site-functions/_kdeconnect Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 541820) +++ head/deskutils/kdepim-addons/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712625 -SHA256 (KDE/applications/20.04.2/kdepim-addons-20.04.2.tar.xz) = 6daa6b0b00dfa36047d26595c882a5b95f1e848e6545b7999a5b7344771dd3fb -SIZE (KDE/applications/20.04.2/kdepim-addons-20.04.2.tar.xz) = 2065332 +TIMESTAMP = 1594146953 +SHA256 (KDE/release-service/20.04.3/kdepim-addons-20.04.3.tar.xz) = db0c70df94891bd6f90db533287269909e3442bfd0f546fa3f951d71f6268e9d +SIZE (KDE/release-service/20.04.3/kdepim-addons-20.04.3.tar.xz) = 2064488 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 541820) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712626 -SHA256 (KDE/applications/20.04.2/kdepim-apps-libs-20.04.2.tar.xz) = 76a39e6cf75125664c413e5b749fb7b0bae5905b774f0e5a38835bd961e0caa8 -SIZE (KDE/applications/20.04.2/kdepim-apps-libs-20.04.2.tar.xz) = 84836 +TIMESTAMP = 1594146954 +SHA256 (KDE/release-service/20.04.3/kdepim-apps-libs-20.04.3.tar.xz) = 7d69ac9cecfe0035e4806f0ff43fd41ac3755d788fffea9fd51427e1bc7027e3 +SIZE (KDE/release-service/20.04.3/kdepim-apps-libs-20.04.3.tar.xz) = 84624 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 541820) +++ head/deskutils/kdepim-runtime/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712627 -SHA256 (KDE/applications/20.04.2/kdepim-runtime-20.04.2.tar.xz) = cd54019d60e78ff8d3cd291fdda36fe2f03ace4591f5bbbc3521e999f071f0a0 -SIZE (KDE/applications/20.04.2/kdepim-runtime-20.04.2.tar.xz) = 1740368 +TIMESTAMP = 1594146956 +SHA256 (KDE/release-service/20.04.3/kdepim-runtime-20.04.3.tar.xz) = 1e4cffed12098baf29d8acfc4e4e12848d36ad8f55bf75d8c089a57e6f906494 +SIZE (KDE/release-service/20.04.3/kdepim-runtime-20.04.3.tar.xz) = 1739888 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 541820) +++ head/deskutils/keditbookmarks/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712627 -SHA256 (KDE/applications/20.04.2/keditbookmarks-20.04.2.tar.xz) = e38614d7b72fb25f40efd83b548e9fbdd75ff06deaeb77390c4a7673c285e975 -SIZE (KDE/applications/20.04.2/keditbookmarks-20.04.2.tar.xz) = 187064 +TIMESTAMP = 1594146957 +SHA256 (KDE/release-service/20.04.3/keditbookmarks-20.04.3.tar.xz) = ec25b40d0ab85e3f72eb334ea7d658d6fe19ae08d626d9fbf0ad71d57594ad88 +SIZE (KDE/release-service/20.04.3/keditbookmarks-20.04.3.tar.xz) = 188256 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 541820) +++ head/deskutils/kfind/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712628 -SHA256 (KDE/applications/20.04.2/kfind-20.04.2.tar.xz) = 917ebc1f845fba942237ae924f171dd8427f76fe7d343fbcde25c855b90c7a8e -SIZE (KDE/applications/20.04.2/kfind-20.04.2.tar.xz) = 271592 +TIMESTAMP = 1594146958 +SHA256 (KDE/release-service/20.04.3/kfind-20.04.3.tar.xz) = ff0d412dcd4b5812eb781618c4bf52d33f4691af2b9def4ba56644b5a668ef6e +SIZE (KDE/release-service/20.04.3/kfind-20.04.3.tar.xz) = 271464 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 541820) +++ head/deskutils/kmail/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712629 -SHA256 (KDE/applications/20.04.2/kmail-20.04.2.tar.xz) = 10fca989f68c6c477cf4c47d0b3301f6db62a4187e4d20487504a547ba166b25 -SIZE (KDE/applications/20.04.2/kmail-20.04.2.tar.xz) = 4721788 +TIMESTAMP = 1594146959 +SHA256 (KDE/release-service/20.04.3/kmail-20.04.3.tar.xz) = 5b653c680097a7be4ff53bc902bc3fcda9edac99f699a63a1375a1df81240d03 +SIZE (KDE/release-service/20.04.3/kmail-20.04.3.tar.xz) = 4719852 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 541820) +++ head/deskutils/kmail-account-wizard/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712630 -SHA256 (KDE/applications/20.04.2/kmail-account-wizard-20.04.2.tar.xz) = bb01e6fa3d46a99332ec9f92e9595f0928e262b2cf8bd9cf38e7b968ccd8618c -SIZE (KDE/applications/20.04.2/kmail-account-wizard-20.04.2.tar.xz) = 158268 +TIMESTAMP = 1594146960 +SHA256 (KDE/release-service/20.04.3/kmail-account-wizard-20.04.3.tar.xz) = ba789c679664a390480808431510d7d6ee1591a5f7be3dfceb5951347e3cc9b1 +SIZE (KDE/release-service/20.04.3/kmail-account-wizard-20.04.3.tar.xz) = 158132 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 541820) +++ head/deskutils/knotes/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712631 -SHA256 (KDE/applications/20.04.2/knotes-20.04.2.tar.xz) = 37e3fb20304f93e3cb77ae2c12c7fe1d1f790e06cb5842979019a75dd917a5a7 -SIZE (KDE/applications/20.04.2/knotes-20.04.2.tar.xz) = 320968 +TIMESTAMP = 1594146961 +SHA256 (KDE/release-service/20.04.3/knotes-20.04.3.tar.xz) = 90c47b902f738492286d9b3e0acb26e6a10504e1c933f921213cd1784309b796 +SIZE (KDE/release-service/20.04.3/knotes-20.04.3.tar.xz) = 320856 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 541820) +++ head/deskutils/kontact/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712631 -SHA256 (KDE/applications/20.04.2/kontact-20.04.2.tar.xz) = caa65482e60008e633fa013f24984879822e5d4c7cac472b699a369f6e3672b3 -SIZE (KDE/applications/20.04.2/kontact-20.04.2.tar.xz) = 793368 +TIMESTAMP = 1594146962 +SHA256 (KDE/release-service/20.04.3/kontact-20.04.3.tar.xz) = c35a68a0a99195d1d9b63f7c8edaadb9e4f1dd6957e3823e2e44c8225ccafde7 +SIZE (KDE/release-service/20.04.3/kontact-20.04.3.tar.xz) = 793420 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 541820) +++ head/deskutils/korganizer/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712632 -SHA256 (KDE/applications/20.04.2/korganizer-20.04.2.tar.xz) = 81322609b3f5e257b35fb49491391f70a7895105e6eff34e7bd69ce4473a61b3 -SIZE (KDE/applications/20.04.2/korganizer-20.04.2.tar.xz) = 2240516 +TIMESTAMP = 1594146963 +SHA256 (KDE/release-service/20.04.3/korganizer-20.04.3.tar.xz) = bf2ee5a3e50dca9ab0cde0b5b0d67dc561788527a216d4ef159144da5bf192a3 +SIZE (KDE/release-service/20.04.3/korganizer-20.04.3.tar.xz) = 2240728 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 541820) +++ head/deskutils/kruler/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712633 -SHA256 (KDE/applications/20.04.2/kruler-20.04.2.tar.xz) = a20eb488f9b1cd4273affa2ad4e2e502d735fe9b5aea7dbab686a745c37825cd -SIZE (KDE/applications/20.04.2/kruler-20.04.2.tar.xz) = 250528 +TIMESTAMP = 1594146964 +SHA256 (KDE/release-service/20.04.3/kruler-20.04.3.tar.xz) = 66a02829d860777184e281747dd696c6bd326d874a96173d9c47759b9e7243fe +SIZE (KDE/release-service/20.04.3/kruler-20.04.3.tar.xz) = 250384 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 541820) +++ head/deskutils/libkdepim/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712634 -SHA256 (KDE/applications/20.04.2/libkdepim-20.04.2.tar.xz) = 3356ec5d380350e49eb88511559237a225113f9f7342c3f213460bbcc74cb75b -SIZE (KDE/applications/20.04.2/libkdepim-20.04.2.tar.xz) = 333848 +TIMESTAMP = 1594146965 +SHA256 (KDE/release-service/20.04.3/libkdepim-20.04.3.tar.xz) = f4ecc6d33aace0a0025afe390a113f79bb052b816c567ea31996aaf08fe873ea +SIZE (KDE/release-service/20.04.3/libkdepim-20.04.3.tar.xz) = 333712 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 541820) +++ head/deskutils/mbox-importer/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712635 -SHA256 (KDE/applications/20.04.2/mbox-importer-20.04.2.tar.xz) = 50e0b468bdcb7af5900fb9ba5ca343cd21ff734043b90505329704b396d994af -SIZE (KDE/applications/20.04.2/mbox-importer-20.04.2.tar.xz) = 33520 +TIMESTAMP = 1594146966 +SHA256 (KDE/release-service/20.04.3/mbox-importer-20.04.3.tar.xz) = ce208091272052a909521cda31a74b2f4c8e8fabcb2937c24639673d1f43981d +SIZE (KDE/release-service/20.04.3/mbox-importer-20.04.3.tar.xz) = 33708 Index: head/deskutils/mbox-importer/pkg-plist =================================================================== --- head/deskutils/mbox-importer/pkg-plist (revision 541820) +++ head/deskutils/mbox-importer/pkg-plist (revision 541821) @@ -1,40 +1,41 @@ bin/mboximporter share/applications/org.kde.mboximporter.desktop share/locale/ar/LC_MESSAGES/mboximporter.mo share/locale/bg/LC_MESSAGES/mboximporter.mo share/locale/bs/LC_MESSAGES/mboximporter.mo share/locale/ca/LC_MESSAGES/mboximporter.mo share/locale/ca@valencia/LC_MESSAGES/mboximporter.mo share/locale/cs/LC_MESSAGES/mboximporter.mo share/locale/da/LC_MESSAGES/mboximporter.mo share/locale/de/LC_MESSAGES/mboximporter.mo share/locale/en_GB/LC_MESSAGES/mboximporter.mo share/locale/es/LC_MESSAGES/mboximporter.mo share/locale/et/LC_MESSAGES/mboximporter.mo share/locale/fi/LC_MESSAGES/mboximporter.mo share/locale/fr/LC_MESSAGES/mboximporter.mo share/locale/gl/LC_MESSAGES/mboximporter.mo share/locale/hu/LC_MESSAGES/mboximporter.mo share/locale/ia/LC_MESSAGES/mboximporter.mo share/locale/it/LC_MESSAGES/mboximporter.mo share/locale/ja/LC_MESSAGES/mboximporter.mo share/locale/kk/LC_MESSAGES/mboximporter.mo share/locale/ko/LC_MESSAGES/mboximporter.mo share/locale/lt/LC_MESSAGES/mboximporter.mo share/locale/nb/LC_MESSAGES/mboximporter.mo share/locale/nds/LC_MESSAGES/mboximporter.mo share/locale/nl/LC_MESSAGES/mboximporter.mo +share/locale/nn/LC_MESSAGES/mboximporter.mo share/locale/pl/LC_MESSAGES/mboximporter.mo share/locale/pt/LC_MESSAGES/mboximporter.mo share/locale/pt_BR/LC_MESSAGES/mboximporter.mo share/locale/ro/LC_MESSAGES/mboximporter.mo share/locale/ru/LC_MESSAGES/mboximporter.mo share/locale/sk/LC_MESSAGES/mboximporter.mo share/locale/sl/LC_MESSAGES/mboximporter.mo share/locale/sr/LC_MESSAGES/mboximporter.mo share/locale/sv/LC_MESSAGES/mboximporter.mo share/locale/tr/LC_MESSAGES/mboximporter.mo share/locale/ug/LC_MESSAGES/mboximporter.mo share/locale/uk/LC_MESSAGES/mboximporter.mo share/locale/zh_CN/LC_MESSAGES/mboximporter.mo share/locale/zh_TW/LC_MESSAGES/mboximporter.mo Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 541820) +++ head/deskutils/pim-data-exporter/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712635 -SHA256 (KDE/applications/20.04.2/pim-data-exporter-20.04.2.tar.xz) = 0235b9a2070d83efac2c9f27ac68d3a6841ffe3d5cbeaec52468d14393bead00 -SIZE (KDE/applications/20.04.2/pim-data-exporter-20.04.2.tar.xz) = 278028 +TIMESTAMP = 1594146967 +SHA256 (KDE/release-service/20.04.3/pim-data-exporter-20.04.3.tar.xz) = 742727f09c984ff86f0406fa756b8ab50e695d6bd8a10abd7d55950c1c2c10de +SIZE (KDE/release-service/20.04.3/pim-data-exporter-20.04.3.tar.xz) = 277704 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 541820) +++ head/deskutils/pim-sieve-editor/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712636 -SHA256 (KDE/applications/20.04.2/pim-sieve-editor-20.04.2.tar.xz) = 593c8c433bb0b2341c796c022594684baf77931578f42cbd532b624bf1a940d7 -SIZE (KDE/applications/20.04.2/pim-sieve-editor-20.04.2.tar.xz) = 452988 +TIMESTAMP = 1594146968 +SHA256 (KDE/release-service/20.04.3/pim-sieve-editor-20.04.3.tar.xz) = e59c4eee3f7548fc724f7b79cbff2f90c10be92eb0cab7259dd57fd221f2b7dc +SIZE (KDE/release-service/20.04.3/pim-sieve-editor-20.04.3.tar.xz) = 452796 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 541820) +++ head/devel/cervisia/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712637 -SHA256 (KDE/applications/20.04.2/cervisia-20.04.2.tar.xz) = 508e585d11f5fdebd548997e7871566a76040c5dff98f3dfab5d9adab5244ba5 -SIZE (KDE/applications/20.04.2/cervisia-20.04.2.tar.xz) = 1896544 +TIMESTAMP = 1594146969 +SHA256 (KDE/release-service/20.04.3/cervisia-20.04.3.tar.xz) = 3e2aac0a08c01d9ea5c5814e739f082ec5a510cd8f0f6bce37cfff9130b0f078 +SIZE (KDE/release-service/20.04.3/cervisia-20.04.3.tar.xz) = 1882368 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 541820) +++ head/devel/dolphin-plugins/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712638 -SHA256 (KDE/applications/20.04.2/dolphin-plugins-20.04.2.tar.xz) = c8bac93e799b5bcaac5f9afe258d69494a01c4f6956aabebe47d08d7a0ee5403 -SIZE (KDE/applications/20.04.2/dolphin-plugins-20.04.2.tar.xz) = 211048 +TIMESTAMP = 1594146970 +SHA256 (KDE/release-service/20.04.3/dolphin-plugins-20.04.3.tar.xz) = f0dad66e7302711e136b0253fb73dbf16bc9facdbb4ad617207fb818fc84130a +SIZE (KDE/release-service/20.04.3/dolphin-plugins-20.04.3.tar.xz) = 213888 Index: head/devel/dolphin-plugins/pkg-plist =================================================================== --- head/devel/dolphin-plugins/pkg-plist (revision 541820) +++ head/devel/dolphin-plugins/pkg-plist (revision 541821) @@ -1,166 +1,168 @@ %%QT_PLUGINDIR%%/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/fileviewgitplugin.so %%QT_PLUGINDIR%%/fileviewhgplugin.so %%QT_PLUGINDIR%%/fileviewsvnplugin.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/kservices5/fileviewbazaarplugin.desktop share/kservices5/fileviewdropboxplugin.desktop share/kservices5/fileviewgitplugin.desktop share/kservices5/fileviewhgplugin.desktop share/kservices5/fileviewsvnplugin.desktop share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo 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@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/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/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo 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/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo 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/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/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/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.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/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/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo 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/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/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo 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/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/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo 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/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo 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/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_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/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/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/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/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/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo 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/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_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 541820) +++ head/devel/kapptemplate/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712639 -SHA256 (KDE/applications/20.04.2/kapptemplate-20.04.2.tar.xz) = 91df1bb906169ad2f5bdd09d3301e8ae0abdaf63009951677a8607c7d7b060d1 -SIZE (KDE/applications/20.04.2/kapptemplate-20.04.2.tar.xz) = 325468 +TIMESTAMP = 1594146971 +SHA256 (KDE/release-service/20.04.3/kapptemplate-20.04.3.tar.xz) = 72ce76b66ae503591a60081f334c2d2a0e9338a125b64de413e1e4ab81c29013 +SIZE (KDE/release-service/20.04.3/kapptemplate-20.04.3.tar.xz) = 325176 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 541820) +++ head/devel/kcachegrind/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712639 -SHA256 (KDE/applications/20.04.2/kcachegrind-20.04.2.tar.xz) = b2b5fac52c01a0d11cfe0875f2f87dfe60f854c196d58e3a9ff14a557ebfd7b2 -SIZE (KDE/applications/20.04.2/kcachegrind-20.04.2.tar.xz) = 810032 +TIMESTAMP = 1594146972 +SHA256 (KDE/release-service/20.04.3/kcachegrind-20.04.3.tar.xz) = ef6e782540c254eada9e75049eb02919afd7adc9940ace79aa20dcad26240770 +SIZE (KDE/release-service/20.04.3/kcachegrind-20.04.3.tar.xz) = 810252 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 541820) +++ head/devel/kde-dev-scripts/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712640 -SHA256 (KDE/applications/20.04.2/kde-dev-scripts-20.04.2.tar.xz) = 10925ff0d302f6c8fa8b419d521519324e00eb2b8c8e4b3616324ee3dee8a032 -SIZE (KDE/applications/20.04.2/kde-dev-scripts-20.04.2.tar.xz) = 378448 +TIMESTAMP = 1594146973 +SHA256 (KDE/release-service/20.04.3/kde-dev-scripts-20.04.3.tar.xz) = 0b321954ea79e829d81c9be0170babae87e5eab22c8d42b296746d5a0160fbae +SIZE (KDE/release-service/20.04.3/kde-dev-scripts-20.04.3.tar.xz) = 378452 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 541820) +++ head/devel/kde-dev-utils/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712641 -SHA256 (KDE/applications/20.04.2/kde-dev-utils-20.04.2.tar.xz) = 6ac75b7bb695b7ba5bba24ebb37e97c8e2374daca12cdcbdd5d605d55bd70933 -SIZE (KDE/applications/20.04.2/kde-dev-utils-20.04.2.tar.xz) = 64540 +TIMESTAMP = 1594146974 +SHA256 (KDE/release-service/20.04.3/kde-dev-utils-20.04.3.tar.xz) = 8f004e47bbd5ee032d711673b3320e59663087c636c9c51d031dc563b5391c83 +SIZE (KDE/release-service/20.04.3/kde-dev-utils-20.04.3.tar.xz) = 64652 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 541820) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712642 -SHA256 (KDE/applications/20.04.2/kdesdk-thumbnailers-20.04.2.tar.xz) = 1c633f05201c3414f9bdc201a13480f3c258d36ef2aa5b5885a5aa42ee393bd9 -SIZE (KDE/applications/20.04.2/kdesdk-thumbnailers-20.04.2.tar.xz) = 17464 +TIMESTAMP = 1594146974 +SHA256 (KDE/release-service/20.04.3/kdesdk-thumbnailers-20.04.3.tar.xz) = e526cbad484807e11e03d85e5fc706df118e8f3327846f396e8df024b770c566 +SIZE (KDE/release-service/20.04.3/kdesdk-thumbnailers-20.04.3.tar.xz) = 17420 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 541820) +++ head/devel/kio-extras/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712643 -SHA256 (KDE/applications/20.04.2/kio-extras-20.04.2.tar.xz) = fd81859ac88a53dddd4e421bd4b7d1b9c9073f18d381dc9a3370fc703bd3e629 -SIZE (KDE/applications/20.04.2/kio-extras-20.04.2.tar.xz) = 618236 +TIMESTAMP = 1594146975 +SHA256 (KDE/release-service/20.04.3/kio-extras-20.04.3.tar.xz) = ff0edabe83ee4958ce7559e935f6b7ae3f76aee43ee5774543368ca334b21090 +SIZE (KDE/release-service/20.04.3/kio-extras-20.04.3.tar.xz) = 618056 Index: head/devel/kio-extras/pkg-plist =================================================================== --- head/devel/kio-extras/pkg-plist (revision 541820) +++ head/devel/kio-extras/pkg-plist (revision 541821) @@ -1,817 +1,818 @@ share/qlogging-categories5/kio-extras.categories include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/cursorthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so %%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/kritathumbnail.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol share/kservices5/ar.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/cursorthumbnail.desktop share/kservices5/comicbookthumbnail.desktop share/kservices5/directorythumbnail.desktop share/kservices5/djvuthumbnail.desktop share/kservices5/ebookthumbnail.desktop %%EXR%%share/kservices5/exrthumbnail.desktop share/kservices5/filenamesearch.protocol share/kservices5/fish.protocol share/kservices5/gzip.protocol share/kservices5/imagethumbnail.desktop share/kservices5/info.protocol share/kservices5/jpegthumbnail.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol share/kservices5/sevenz.protocol %%SSH%%share/kservices5/sftp.protocol share/kservices5/svgthumbnail.desktop share/kservices5/tar.protocol share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol share/kservices5/zip.protocol share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/ast/LC_MESSAGES/kio5_fish.mo share/locale/ast/LC_MESSAGES/kio5_mtp.mo share/locale/ast/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_network.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_network.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_network.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_network.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_network.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_network.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_network.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_network.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_network.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_network.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_network.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo +share/locale/gl/LC_MESSAGES/kio5_network.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_network.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_network.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_network.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_network.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_network.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ml/LC_MESSAGES/kio5_archive.mo share/locale/ml/LC_MESSAGES/kio5_bookmarks.mo share/locale/ml/LC_MESSAGES/kio5_fish.mo share/locale/ml/LC_MESSAGES/kio5_info.mo share/locale/ml/LC_MESSAGES/kio5_man.mo share/locale/ml/LC_MESSAGES/kio5_nfs.mo share/locale/ml/LC_MESSAGES/kio5_sftp.mo share/locale/ml/LC_MESSAGES/kio5_smb.mo share/locale/ml/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_network.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_network.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_network.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_network.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_network.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_network.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_network.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_network.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_network.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_network.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 541820) +++ head/devel/lokalize/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712643 -SHA256 (KDE/applications/20.04.2/lokalize-20.04.2.tar.xz) = 5be017fd63f96053f49d91ca01c6bb3b760c959fc8df47a20cb1705a9b63db5c -SIZE (KDE/applications/20.04.2/lokalize-20.04.2.tar.xz) = 1719008 +TIMESTAMP = 1594146976 +SHA256 (KDE/release-service/20.04.3/lokalize-20.04.3.tar.xz) = fccba64af9faa5cbb5dfdb303009504993fe71282f0dbc9c748c5a28a327c379 +SIZE (KDE/release-service/20.04.3/lokalize-20.04.3.tar.xz) = 1718604 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 541820) +++ head/devel/poxml/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712644 -SHA256 (KDE/applications/20.04.2/poxml-20.04.2.tar.xz) = e5af330fad3f0ecadbaa2f19612101fa933b4134072175448b8b6b47b409e041 -SIZE (KDE/applications/20.04.2/poxml-20.04.2.tar.xz) = 43240 +TIMESTAMP = 1594146977 +SHA256 (KDE/release-service/20.04.3/poxml-20.04.3.tar.xz) = a070eb5c12e14df691648a9a3e482c021c484f59dfaac413eeacc002cdc1833a +SIZE (KDE/release-service/20.04.3/poxml-20.04.3.tar.xz) = 43300 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 541820) +++ head/devel/umbrello/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712645 -SHA256 (KDE/applications/20.04.2/umbrello-20.04.2.tar.xz) = dd9b0749757b3c4b5cf4c073ca9ecad3b11f90bf09200d794a90843339e13fed -SIZE (KDE/applications/20.04.2/umbrello-20.04.2.tar.xz) = 5546804 +TIMESTAMP = 1594146978 +SHA256 (KDE/release-service/20.04.3/umbrello-20.04.3.tar.xz) = c34a5f6ca945dd409921903abd2e0078b6a056a0d221d59674980ce424cf1e62 +SIZE (KDE/release-service/20.04.3/umbrello-20.04.3.tar.xz) = 5546160 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 541820) +++ head/editors/kate/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712646 -SHA256 (KDE/applications/20.04.2/kate-20.04.2.tar.xz) = 6b255987ba3d413ac34d668c75677a5b68f7cad2ce3d11ceb6e1d6977f46c478 -SIZE (KDE/applications/20.04.2/kate-20.04.2.tar.xz) = 5829952 +TIMESTAMP = 1594146979 +SHA256 (KDE/release-service/20.04.3/kate-20.04.3.tar.xz) = 38d92f2b95032cd20bd5b78ada2ee25fc9c06593047d063c28419df0839bc334 +SIZE (KDE/release-service/20.04.3/kate-20.04.3.tar.xz) = 5813840 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 541820) +++ head/games/blinken/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712647 -SHA256 (KDE/applications/20.04.2/blinken-20.04.2.tar.xz) = f25f09d1ea7711fda1884f2939a5b3a1f5a2090402548ab535ef2c3f9e45baf8 -SIZE (KDE/applications/20.04.2/blinken-20.04.2.tar.xz) = 2821680 +TIMESTAMP = 1594146980 +SHA256 (KDE/release-service/20.04.3/blinken-20.04.3.tar.xz) = d6901fe40768ba8319609bfd143b2d1c585b04a148aedcb4b358b041db7f1afb +SIZE (KDE/release-service/20.04.3/blinken-20.04.3.tar.xz) = 2822676 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 541820) +++ head/games/bomber/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712648 -SHA256 (KDE/applications/20.04.2/bomber-20.04.2.tar.xz) = 4f98eb4241a95a0e1225f716531e3be498da894ac9862c08c259002e01245cfe -SIZE (KDE/applications/20.04.2/bomber-20.04.2.tar.xz) = 820384 +TIMESTAMP = 1594146980 +SHA256 (KDE/release-service/20.04.3/bomber-20.04.3.tar.xz) = b292c11ebfb4311420ce6b9a4b132a437d061946e8eb08556fec89bb84c23428 +SIZE (KDE/release-service/20.04.3/bomber-20.04.3.tar.xz) = 820252 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 541820) +++ head/games/bovo/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712648 -SHA256 (KDE/applications/20.04.2/bovo-20.04.2.tar.xz) = 32d224ff985df6e949ad25be7a41e332afcaa228ffa45a0c5d24ca3c43d61fce -SIZE (KDE/applications/20.04.2/bovo-20.04.2.tar.xz) = 200268 +TIMESTAMP = 1594146981 +SHA256 (KDE/release-service/20.04.3/bovo-20.04.3.tar.xz) = 5365c0fd5a57814f224585e4331be129414d1f5d51d2b90bac8421df4ae5f300 +SIZE (KDE/release-service/20.04.3/bovo-20.04.3.tar.xz) = 200216 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 541820) +++ head/games/granatier/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712649 -SHA256 (KDE/applications/20.04.2/granatier-20.04.2.tar.xz) = ff6b45ca290d8a9ad66faad1d4792ccaec7f671c8dc6fb83a7f663d411e6e391 -SIZE (KDE/applications/20.04.2/granatier-20.04.2.tar.xz) = 1944564 +TIMESTAMP = 1594146982 +SHA256 (KDE/release-service/20.04.3/granatier-20.04.3.tar.xz) = 9d06047f613a03b32d603e90bd14ca2873be9da9b4b17b98a65242e9855a7aaf +SIZE (KDE/release-service/20.04.3/granatier-20.04.3.tar.xz) = 1944416 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 541820) +++ head/games/kanagram/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712650 -SHA256 (KDE/applications/20.04.2/kanagram-20.04.2.tar.xz) = 7804ee9977a0d4d70ab49bac3897c967ed0517a7109329409682c6a6853e11ca -SIZE (KDE/applications/20.04.2/kanagram-20.04.2.tar.xz) = 8025664 +TIMESTAMP = 1594146983 +SHA256 (KDE/release-service/20.04.3/kanagram-20.04.3.tar.xz) = 7fe8fde45d54b09118238f4a7a63aa2f6fc24ae14c49739ffe71cffc44bc5a95 +SIZE (KDE/release-service/20.04.3/kanagram-20.04.3.tar.xz) = 8024860 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 541820) +++ head/games/kapman/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712651 -SHA256 (KDE/applications/20.04.2/kapman-20.04.2.tar.xz) = 653d87db55d75aa4163433cd881dd54a2c53770624ed3e27821303cfbf5405c4 -SIZE (KDE/applications/20.04.2/kapman-20.04.2.tar.xz) = 2526184 +TIMESTAMP = 1594146984 +SHA256 (KDE/release-service/20.04.3/kapman-20.04.3.tar.xz) = e3c34e94a204e6d9a4ebb35c415b8c5707313fba746867f2984fd0e95926d529 +SIZE (KDE/release-service/20.04.3/kapman-20.04.3.tar.xz) = 2526392 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 541820) +++ head/games/katomic/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712652 -SHA256 (KDE/applications/20.04.2/katomic-20.04.2.tar.xz) = 294104cf6be97395edf620fd3e76accc6aee8604ae43f08c3d1233d81ae048db -SIZE (KDE/applications/20.04.2/katomic-20.04.2.tar.xz) = 1424152 +TIMESTAMP = 1594146985 +SHA256 (KDE/release-service/20.04.3/katomic-20.04.3.tar.xz) = 9ced288f46af528aa31931a0ab1a1b2d346d63ce6729e508163bf3370dbd261f +SIZE (KDE/release-service/20.04.3/katomic-20.04.3.tar.xz) = 1424232 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 541820) +++ head/games/kblackbox/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712652 -SHA256 (KDE/applications/20.04.2/kblackbox-20.04.2.tar.xz) = c39b9be82acf9a7c04eaef11cdec0716b39f4f7d6775fc3624d19bf54313f47f -SIZE (KDE/applications/20.04.2/kblackbox-20.04.2.tar.xz) = 446952 +TIMESTAMP = 1594146986 +SHA256 (KDE/release-service/20.04.3/kblackbox-20.04.3.tar.xz) = 8bf24ceaf33fabd3ec3030b42565dcbb2d8b282553a3222d741b0b43d70d3a38 +SIZE (KDE/release-service/20.04.3/kblackbox-20.04.3.tar.xz) = 446808 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 541820) +++ head/games/kblocks/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712653 -SHA256 (KDE/applications/20.04.2/kblocks-20.04.2.tar.xz) = b6bb7663c1959751999480df82fee4f1ba3d01cd641f71ecf453a125d8a9a7ac -SIZE (KDE/applications/20.04.2/kblocks-20.04.2.tar.xz) = 1906856 +TIMESTAMP = 1594146986 +SHA256 (KDE/release-service/20.04.3/kblocks-20.04.3.tar.xz) = 128cbd7751883cc46d3bc0fcf3c2fc40d8d87631ad54c90459727da209237609 +SIZE (KDE/release-service/20.04.3/kblocks-20.04.3.tar.xz) = 1906592 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 541820) +++ head/games/kbounce/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712654 -SHA256 (KDE/applications/20.04.2/kbounce-20.04.2.tar.xz) = c4ce3ebdc1e1739bf767f7db9c46d4a0a6b9f4456f7f1951a618e18ad31d5c3e -SIZE (KDE/applications/20.04.2/kbounce-20.04.2.tar.xz) = 3467060 +TIMESTAMP = 1594146987 +SHA256 (KDE/release-service/20.04.3/kbounce-20.04.3.tar.xz) = 21977895752b7a33484463cf3fe47ff6f4d5ad4bb8ee824b92b309c5c0ee3837 +SIZE (KDE/release-service/20.04.3/kbounce-20.04.3.tar.xz) = 3467888 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 541820) +++ head/games/kbreakout/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712655 -SHA256 (KDE/applications/20.04.2/kbreakout-20.04.2.tar.xz) = 97658ee464e84ce05913b498f503b6992f06cf30a7fce3813b741a9fd057ad2f -SIZE (KDE/applications/20.04.2/kbreakout-20.04.2.tar.xz) = 2281044 +TIMESTAMP = 1594146988 +SHA256 (KDE/release-service/20.04.3/kbreakout-20.04.3.tar.xz) = 4e9bd79060d826d99573e3db364005b32d70643b0fe0d7c5e427fb1c8a34896b +SIZE (KDE/release-service/20.04.3/kbreakout-20.04.3.tar.xz) = 2280280 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 541820) +++ head/games/kdiamond/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712656 -SHA256 (KDE/applications/20.04.2/kdiamond-20.04.2.tar.xz) = 12383a41ea3571e6d4448fe7d06c8dae3e2c3b9a4cb44b94b9919ef0ba643fba -SIZE (KDE/applications/20.04.2/kdiamond-20.04.2.tar.xz) = 4694188 +TIMESTAMP = 1594146989 +SHA256 (KDE/release-service/20.04.3/kdiamond-20.04.3.tar.xz) = f1bd1c5471224d4ab2269637bd89e11e5903bf4f15f1b2a3ae01c252adad7096 +SIZE (KDE/release-service/20.04.3/kdiamond-20.04.3.tar.xz) = 4694068 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 541820) +++ head/games/kfourinline/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712657 -SHA256 (KDE/applications/20.04.2/kfourinline-20.04.2.tar.xz) = 40cc3893b22bd13895d0462f8c5ada457147ac363fcc11c616a4b5625ad5769a -SIZE (KDE/applications/20.04.2/kfourinline-20.04.2.tar.xz) = 639740 +TIMESTAMP = 1594146990 +SHA256 (KDE/release-service/20.04.3/kfourinline-20.04.3.tar.xz) = c339009355dea086c28baa454aac1c15d601e15685ba8006100f50475518875f +SIZE (KDE/release-service/20.04.3/kfourinline-20.04.3.tar.xz) = 639864 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 541820) +++ head/games/kgoldrunner/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712658 -SHA256 (KDE/applications/20.04.2/kgoldrunner-20.04.2.tar.xz) = cb01dc0f98c5cee5386ee320e5a933016281a0acad16ed32be7c54e51fb9d107 -SIZE (KDE/applications/20.04.2/kgoldrunner-20.04.2.tar.xz) = 4429508 +TIMESTAMP = 1594146991 +SHA256 (KDE/release-service/20.04.3/kgoldrunner-20.04.3.tar.xz) = ab535067a8991a94bd7cd5a990a6120538206d241c8e8149c7b774cbdd1d0941 +SIZE (KDE/release-service/20.04.3/kgoldrunner-20.04.3.tar.xz) = 4428744 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 541820) +++ head/games/khangman/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712659 -SHA256 (KDE/applications/20.04.2/khangman-20.04.2.tar.xz) = 20e45e63d4b4cfc69678265d222f32a8dd351dcd4671d8140ffb7ca4746a960b -SIZE (KDE/applications/20.04.2/khangman-20.04.2.tar.xz) = 7112988 +TIMESTAMP = 1594146992 +SHA256 (KDE/release-service/20.04.3/khangman-20.04.3.tar.xz) = db827d20ce5f0522675d75c18fd4c804047cc2e5a2ca2f7a7421b5fc91952831 +SIZE (KDE/release-service/20.04.3/khangman-20.04.3.tar.xz) = 7110980 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 541820) +++ head/games/kigo/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712660 -SHA256 (KDE/applications/20.04.2/kigo-20.04.2.tar.xz) = 5d52be630c0ea7da5da2fd9294729e3437f90b0bffaa261e071dacfbd5114a4d -SIZE (KDE/applications/20.04.2/kigo-20.04.2.tar.xz) = 5227300 +TIMESTAMP = 1594146992 +SHA256 (KDE/release-service/20.04.3/kigo-20.04.3.tar.xz) = ccc4f9638bfd3e1bf7f25621e10907f08cd0354858f9a174ab8f5c51c77e8a77 +SIZE (KDE/release-service/20.04.3/kigo-20.04.3.tar.xz) = 5227308 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 541820) +++ head/games/killbots/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712660 -SHA256 (KDE/applications/20.04.2/killbots-20.04.2.tar.xz) = 997d5309e7dc95bbe69618d0894018b71a7436216310f95a56bea83872c8cef1 -SIZE (KDE/applications/20.04.2/killbots-20.04.2.tar.xz) = 1173688 +TIMESTAMP = 1594146993 +SHA256 (KDE/release-service/20.04.3/killbots-20.04.3.tar.xz) = 66c48ddeb49118ea8139422c0370256f88a4e3104dbe664bc25d2c63edfdf326 +SIZE (KDE/release-service/20.04.3/killbots-20.04.3.tar.xz) = 1173788 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 541820) +++ head/games/kiriki/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712661 -SHA256 (KDE/applications/20.04.2/kiriki-20.04.2.tar.xz) = 509de138a8747855c31fd7b2474acea095cf848e0fdaef639276ff277093080e -SIZE (KDE/applications/20.04.2/kiriki-20.04.2.tar.xz) = 373500 +TIMESTAMP = 1594146994 +SHA256 (KDE/release-service/20.04.3/kiriki-20.04.3.tar.xz) = 1df78a7b9e91f20841411fc2561d077dcd897211e5c20f1f526670c9f3b7a97d +SIZE (KDE/release-service/20.04.3/kiriki-20.04.3.tar.xz) = 373304 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 541820) +++ head/games/kjumpingcube/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712662 -SHA256 (KDE/applications/20.04.2/kjumpingcube-20.04.2.tar.xz) = af638e9576754b11a9e938283547a6b7832d5de4017061bba1d429219c6760be -SIZE (KDE/applications/20.04.2/kjumpingcube-20.04.2.tar.xz) = 289000 +TIMESTAMP = 1594146995 +SHA256 (KDE/release-service/20.04.3/kjumpingcube-20.04.3.tar.xz) = 1716e1de95e8610dc80d991c4518beedbdf6d4c40a07f71a1dba0971e0a6cb9b +SIZE (KDE/release-service/20.04.3/kjumpingcube-20.04.3.tar.xz) = 289004 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 541820) +++ head/games/klickety/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712663 -SHA256 (KDE/applications/20.04.2/klickety-20.04.2.tar.xz) = 1d2fa3c6ffa3d8a1e5883d16f9a94bc5b04842696c0aea5197bb293fbc893c30 -SIZE (KDE/applications/20.04.2/klickety-20.04.2.tar.xz) = 1390764 +TIMESTAMP = 1594146996 +SHA256 (KDE/release-service/20.04.3/klickety-20.04.3.tar.xz) = 703158b1c1cafc16368fa09c4c58ea6d10942b90af693a851f9b5ec84add691d +SIZE (KDE/release-service/20.04.3/klickety-20.04.3.tar.xz) = 1390524 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 541820) +++ head/games/klines/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712664 -SHA256 (KDE/applications/20.04.2/klines-20.04.2.tar.xz) = aa799787e0226a8ec0c5ddb0858045375fc6579f904a352ac05f2e42082b75e1 -SIZE (KDE/applications/20.04.2/klines-20.04.2.tar.xz) = 1782400 +TIMESTAMP = 1594146996 +SHA256 (KDE/release-service/20.04.3/klines-20.04.3.tar.xz) = 83bebb2dbb7da8e325a378da3903246ff562c56dcf9ea4991dedb5b253c81f7d +SIZE (KDE/release-service/20.04.3/klines-20.04.3.tar.xz) = 1782200 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 541820) +++ head/games/kmahjongg/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712664 -SHA256 (KDE/applications/20.04.2/kmahjongg-20.04.2.tar.xz) = 14981f2403c029365fa965cdf29f4608dd8d124871be409cb2eed340b47b0de9 -SIZE (KDE/applications/20.04.2/kmahjongg-20.04.2.tar.xz) = 3428040 +TIMESTAMP = 1594146997 +SHA256 (KDE/release-service/20.04.3/kmahjongg-20.04.3.tar.xz) = 1f4fce58163323c23aa37f849e556ee4ed7fe33fb36e21754116e1d0e2c33673 +SIZE (KDE/release-service/20.04.3/kmahjongg-20.04.3.tar.xz) = 3428000 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 541820) +++ head/games/kmines/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712665 -SHA256 (KDE/applications/20.04.2/kmines-20.04.2.tar.xz) = f926ad3a49cf711b900e2a8ed281b774f64189d1361e2bb0cb0497293d8a6272 -SIZE (KDE/applications/20.04.2/kmines-20.04.2.tar.xz) = 899980 +TIMESTAMP = 1594146998 +SHA256 (KDE/release-service/20.04.3/kmines-20.04.3.tar.xz) = 8a729ffd6406d7d6173fbd050e40a566b5ce4e7b960f3971fff82fef9c18c4d3 +SIZE (KDE/release-service/20.04.3/kmines-20.04.3.tar.xz) = 899972 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 541820) +++ head/games/knavalbattle/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712666 -SHA256 (KDE/applications/20.04.2/knavalbattle-20.04.2.tar.xz) = bd50ef54234f5e38c8bc70a01c6162ce888bcbdf3e207ed98c62a35518b54174 -SIZE (KDE/applications/20.04.2/knavalbattle-20.04.2.tar.xz) = 1282552 +TIMESTAMP = 1594146999 +SHA256 (KDE/release-service/20.04.3/knavalbattle-20.04.3.tar.xz) = 78feb74eb2e52d4738e5aa8969dc4db00307bb758623cbf34d7f245242f07279 +SIZE (KDE/release-service/20.04.3/knavalbattle-20.04.3.tar.xz) = 1282708 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 541820) +++ head/games/knetwalk/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712667 -SHA256 (KDE/applications/20.04.2/knetwalk-20.04.2.tar.xz) = cd8b20f1f2aeaaf26b3d07da2dc94fb212cdb452b37f711bc62850e3e23e76d6 -SIZE (KDE/applications/20.04.2/knetwalk-20.04.2.tar.xz) = 1259128 +TIMESTAMP = 1594147000 +SHA256 (KDE/release-service/20.04.3/knetwalk-20.04.3.tar.xz) = 6bc61fb70eb0cde3f312aa672f848447ed5eb5bbc2d48d65c6a010c12e154054 +SIZE (KDE/release-service/20.04.3/knetwalk-20.04.3.tar.xz) = 1259352 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 541820) +++ head/games/knights/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712668 -SHA256 (KDE/applications/20.04.2/knights-20.04.2.tar.xz) = 1f53ddc6f032c135bc2d2e936a396b03e13aeb1f33d3651e38a5b17d746d50c5 -SIZE (KDE/applications/20.04.2/knights-20.04.2.tar.xz) = 3523004 +TIMESTAMP = 1594147001 +SHA256 (KDE/release-service/20.04.3/knights-20.04.3.tar.xz) = b695e1f141dc3fd1a5deca6179bddb0f3d4aa9103c5cc539c01a2a789adade4f +SIZE (KDE/release-service/20.04.3/knights-20.04.3.tar.xz) = 3522832 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 541820) +++ head/games/kolf/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712668 -SHA256 (KDE/applications/20.04.2/kolf-20.04.2.tar.xz) = 69309aff21098caaa9263e96e624a0de46b3ab748ff33e507c613e73c19ce573 -SIZE (KDE/applications/20.04.2/kolf-20.04.2.tar.xz) = 1020792 +TIMESTAMP = 1594147002 +SHA256 (KDE/release-service/20.04.3/kolf-20.04.3.tar.xz) = dc2fd28fbfaa21d75ad6482513adddb9bd04ac0432d2d72419f85d65140ee186 +SIZE (KDE/release-service/20.04.3/kolf-20.04.3.tar.xz) = 1021084 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 541820) +++ head/games/kollision/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712669 -SHA256 (KDE/applications/20.04.2/kollision-20.04.2.tar.xz) = 5dc31b03e19cfb1e743f3b7ed6017c58c5df55a00fbd8cb28701e999573e1cd5 -SIZE (KDE/applications/20.04.2/kollision-20.04.2.tar.xz) = 280928 +TIMESTAMP = 1594147003 +SHA256 (KDE/release-service/20.04.3/kollision-20.04.3.tar.xz) = 49365efc2cfc4c9406cbedf84ad8a135df79536cba166cd77402955803a56207 +SIZE (KDE/release-service/20.04.3/kollision-20.04.3.tar.xz) = 280940 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 541820) +++ head/games/konquest/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712670 -SHA256 (KDE/applications/20.04.2/konquest-20.04.2.tar.xz) = 0142d6a57a84268e1de1d20123705858c7fb3823dd2b501676f1fa235f1922b7 -SIZE (KDE/applications/20.04.2/konquest-20.04.2.tar.xz) = 660312 +TIMESTAMP = 1594147004 +SHA256 (KDE/release-service/20.04.3/konquest-20.04.3.tar.xz) = 004b3d8d38acecb0d5e78d037a47d137f0517d74768da461ce51fbd2a549578d +SIZE (KDE/release-service/20.04.3/konquest-20.04.3.tar.xz) = 660212 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 541820) +++ head/games/kpat/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712671 -SHA256 (KDE/applications/20.04.2/kpat-20.04.2.tar.xz) = bad46abf7aec96399488b513b5aadc80bb198c8d3cfbd63db5141b1b37357481 -SIZE (KDE/applications/20.04.2/kpat-20.04.2.tar.xz) = 3578676 +TIMESTAMP = 1594147005 +SHA256 (KDE/release-service/20.04.3/kpat-20.04.3.tar.xz) = 2a207c9efa1a62c99f8b33cf44782c563ee032b706ef63548239a4c303ec9a66 +SIZE (KDE/release-service/20.04.3/kpat-20.04.3.tar.xz) = 3579116 Index: head/games/kpat/pkg-plist =================================================================== --- head/games/kpat/pkg-plist (revision 541820) +++ head/games/kpat/pkg-plist (revision 541821) @@ -1,142 +1,143 @@ bin/kpat etc/xdg/kcardtheme.knsrc share/qlogging-categories5/kpat.categories etc/xdg/kpat.knsrc lib/libkcardgame.so +man/ca/man6/kpat.6.gz man/de/man6/kpat.6.gz man/es/man6/kpat.6.gz man/et/man6/kpat.6.gz man/it/man6/kpat.6.gz man/man6/kpat.6.gz man/nl/man6/kpat.6.gz man/pt/man6/kpat.6.gz man/pt_BR/man6/kpat.6.gz man/ru/man6/kpat.6.gz man/sv/man6/kpat.6.gz man/uk/man6/kpat.6.gz share/applications/org.kde.kpat.desktop share/config.kcfg/kpat.kcfg share/icons/hicolor/128x128/apps/kpat.png share/icons/hicolor/16x16/apps/kpat.png share/icons/hicolor/22x22/apps/kpat.png share/icons/hicolor/24x24/apps/kpat.png share/icons/hicolor/256x256/apps/kpat.png share/icons/hicolor/32x32/apps/kpat.png share/icons/hicolor/48x48/apps/kpat.png share/icons/hicolor/64x64/apps/kpat.png %%DATADIR%%/previews/1.png %%DATADIR%%/previews/10.png %%DATADIR%%/previews/11.png %%DATADIR%%/previews/12.png %%DATADIR%%/previews/17.png %%DATADIR%%/previews/18.png %%DATADIR%%/previews/2.png %%DATADIR%%/previews/3.png %%DATADIR%%/previews/5.png %%DATADIR%%/previews/7.png %%DATADIR%%/previews/8.png %%DATADIR%%/previews/9.png %%DATADIR%%/sounds/card-down.ogg %%DATADIR%%/sounds/card-pickup.ogg %%DATADIR%%/themes/ancientegypt.desktop %%DATADIR%%/themes/ancientegypt.png %%DATADIR%%/themes/ancientegypt.svgz %%DATADIR%%/themes/cleangreen.desktop %%DATADIR%%/themes/cleangreen.png %%DATADIR%%/themes/cleangreen.svgz %%DATADIR%%/themes/greenblaze.desktop %%DATADIR%%/themes/greenblaze.png %%DATADIR%%/themes/greenblaze.svgz %%DATADIR%%/themes/oldertheme.desktop %%DATADIR%%/themes/oldertheme.png %%DATADIR%%/themes/oldertheme.svgz share/kxmlgui5/kpat/kpatui.rc share/locale/ar/LC_MESSAGES/kpat.mo share/locale/bg/LC_MESSAGES/kpat.mo share/locale/bs/LC_MESSAGES/kpat.mo share/locale/bs/LC_MESSAGES/kpat_mimetypes.mo share/locale/ca/LC_MESSAGES/kpat.mo share/locale/ca/LC_MESSAGES/kpat_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/kpat.mo share/locale/ca@valencia/LC_MESSAGES/kpat_mimetypes.mo share/locale/cs/LC_MESSAGES/kpat.mo share/locale/cs/LC_MESSAGES/kpat_mimetypes.mo share/locale/da/LC_MESSAGES/kpat.mo share/locale/da/LC_MESSAGES/kpat_mimetypes.mo share/locale/de/LC_MESSAGES/kpat.mo share/locale/de/LC_MESSAGES/kpat_mimetypes.mo share/locale/el/LC_MESSAGES/kpat.mo share/locale/el/LC_MESSAGES/kpat_mimetypes.mo share/locale/en_GB/LC_MESSAGES/kpat.mo share/locale/en_GB/LC_MESSAGES/kpat_mimetypes.mo share/locale/eo/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat_mimetypes.mo share/locale/et/LC_MESSAGES/kpat.mo share/locale/et/LC_MESSAGES/kpat_mimetypes.mo share/locale/eu/LC_MESSAGES/kpat.mo share/locale/fa/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat_mimetypes.mo share/locale/fr/LC_MESSAGES/kpat.mo share/locale/fr/LC_MESSAGES/kpat_mimetypes.mo share/locale/ga/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat_mimetypes.mo share/locale/he/LC_MESSAGES/kpat.mo share/locale/hi/LC_MESSAGES/kpat.mo share/locale/hr/LC_MESSAGES/kpat.mo share/locale/hu/LC_MESSAGES/kpat.mo share/locale/id/LC_MESSAGES/kpat.mo share/locale/id/LC_MESSAGES/kpat_mimetypes.mo share/locale/is/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat_mimetypes.mo share/locale/ja/LC_MESSAGES/kpat.mo share/locale/ja/LC_MESSAGES/kpat_mimetypes.mo share/locale/kk/LC_MESSAGES/kpat.mo share/locale/km/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat_mimetypes.mo share/locale/lt/LC_MESSAGES/kpat.mo share/locale/lt/LC_MESSAGES/kpat_mimetypes.mo share/locale/lv/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat_mimetypes.mo share/locale/mr/LC_MESSAGES/kpat.mo share/locale/nb/LC_MESSAGES/kpat.mo share/locale/nds/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat_mimetypes.mo share/locale/nn/LC_MESSAGES/kpat.mo share/locale/nn/LC_MESSAGES/kpat_mimetypes.mo share/locale/pa/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat_mimetypes.mo share/locale/pt/LC_MESSAGES/kpat.mo share/locale/pt/LC_MESSAGES/kpat_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo share/locale/pt_BR/LC_MESSAGES/kpat_mimetypes.mo share/locale/ro/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat_mimetypes.mo share/locale/sk/LC_MESSAGES/kpat.mo share/locale/sk/LC_MESSAGES/kpat_mimetypes.mo share/locale/sl/LC_MESSAGES/kpat.mo share/locale/sl/LC_MESSAGES/kpat_mimetypes.mo share/locale/sr/LC_MESSAGES/kpat.mo share/locale/sr/LC_MESSAGES/kpat_mimetypes.mo share/locale/sv/LC_MESSAGES/kpat.mo share/locale/sv/LC_MESSAGES/kpat_mimetypes.mo share/locale/tr/LC_MESSAGES/kpat.mo share/locale/tr/LC_MESSAGES/kpat_mimetypes.mo share/locale/ug/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat_mimetypes.mo share/locale/wa/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo share/locale/zh_TW/LC_MESSAGES/kpat_mimetypes.mo share/metainfo/org.kde.kpat.appdata.xml share/mime/packages/kpatience.xml Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 541820) +++ head/games/kreversi/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712672 -SHA256 (KDE/applications/20.04.2/kreversi-20.04.2.tar.xz) = 0b21ac95f24421e82fce7ad5e9551d1af9ec8d68cd2523a755b223e68cf6a720 -SIZE (KDE/applications/20.04.2/kreversi-20.04.2.tar.xz) = 947024 +TIMESTAMP = 1594147005 +SHA256 (KDE/release-service/20.04.3/kreversi-20.04.3.tar.xz) = b2d9220f5919361ff81473c8b597585cc4c004b16ee459691e26feeb2e0c3114 +SIZE (KDE/release-service/20.04.3/kreversi-20.04.3.tar.xz) = 946696 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 541820) +++ head/games/kshisen/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712673 -SHA256 (KDE/applications/20.04.2/kshisen-20.04.2.tar.xz) = ec21e1ceb57fb3f8d69fbf2350313f8d9e80b66e2537dcfce2ed39a23dcca4d2 -SIZE (KDE/applications/20.04.2/kshisen-20.04.2.tar.xz) = 821976 +TIMESTAMP = 1594147006 +SHA256 (KDE/release-service/20.04.3/kshisen-20.04.3.tar.xz) = ee91821b13dc13d54a0cdf64582eff820faf934df3654135c55bd3210b98bd52 +SIZE (KDE/release-service/20.04.3/kshisen-20.04.3.tar.xz) = 821832 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 541820) +++ head/games/ksirk/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712673 -SHA256 (KDE/applications/20.04.2/ksirk-20.04.2.tar.xz) = 494bfff41a67d01b0792be013bc52c2c3c857aca132be36e7da820c86322bb25 -SIZE (KDE/applications/20.04.2/ksirk-20.04.2.tar.xz) = 6989044 +TIMESTAMP = 1594147007 +SHA256 (KDE/release-service/20.04.3/ksirk-20.04.3.tar.xz) = c3c86db84b2603a0cd11e7b0da5e3c66b81c26983ace113b836ec3579dce736a +SIZE (KDE/release-service/20.04.3/ksirk-20.04.3.tar.xz) = 6991228 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 541820) +++ head/games/ksnakeduel/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712674 -SHA256 (KDE/applications/20.04.2/ksnakeduel-20.04.2.tar.xz) = 8a2d397200538845945772f9fcfd4be343a0ea4a0ff8193283aa876fa5fc094f -SIZE (KDE/applications/20.04.2/ksnakeduel-20.04.2.tar.xz) = 605764 +TIMESTAMP = 1594147008 +SHA256 (KDE/release-service/20.04.3/ksnakeduel-20.04.3.tar.xz) = 99a033313a3093489d39e7d537d064287aeebbfea05accfe8a189f0296664bf2 +SIZE (KDE/release-service/20.04.3/ksnakeduel-20.04.3.tar.xz) = 605648 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 541820) +++ head/games/kspaceduel/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712675 -SHA256 (KDE/applications/20.04.2/kspaceduel-20.04.2.tar.xz) = 0c6da130b4574588122ec7999a54af328178e362ccb03e81315e9b992c764b85 -SIZE (KDE/applications/20.04.2/kspaceduel-20.04.2.tar.xz) = 612404 +TIMESTAMP = 1594147009 +SHA256 (KDE/release-service/20.04.3/kspaceduel-20.04.3.tar.xz) = dda32d2a89645129c7ee83aca7b21bc01d5120e0d58e8f39516c0837be531e38 +SIZE (KDE/release-service/20.04.3/kspaceduel-20.04.3.tar.xz) = 612344 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 541820) +++ head/games/ksquares/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712676 -SHA256 (KDE/applications/20.04.2/ksquares-20.04.2.tar.xz) = 8a9ffd3679d851ded462dc540735461d661c3ea06923675f52bbd4d2b5e986e6 -SIZE (KDE/applications/20.04.2/ksquares-20.04.2.tar.xz) = 261128 +TIMESTAMP = 1594147010 +SHA256 (KDE/release-service/20.04.3/ksquares-20.04.3.tar.xz) = eb72d929cd59b076d20483ee03548d72df3dc894b631947ce3440aff0ecad730 +SIZE (KDE/release-service/20.04.3/ksquares-20.04.3.tar.xz) = 261132 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 541820) +++ head/games/ksudoku/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712677 -SHA256 (KDE/applications/20.04.2/ksudoku-20.04.2.tar.xz) = 03c3a7d5f251aaec7ac0c9948186f9092c372d8dd504651a52e018b0e14630c8 -SIZE (KDE/applications/20.04.2/ksudoku-20.04.2.tar.xz) = 1655696 +TIMESTAMP = 1594147011 +SHA256 (KDE/release-service/20.04.3/ksudoku-20.04.3.tar.xz) = 2df6e5cf78eee919624aa71716ef35baa9215e44662cdd7b315cfbc328c6ac19 +SIZE (KDE/release-service/20.04.3/ksudoku-20.04.3.tar.xz) = 1655708 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 541820) +++ head/games/ktuberling/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712678 -SHA256 (KDE/applications/20.04.2/ktuberling-20.04.2.tar.xz) = 86046f6b830370695ea9759e9eaa8ed148df270b8ba9803f926a8510012bdc9d -SIZE (KDE/applications/20.04.2/ktuberling-20.04.2.tar.xz) = 70724068 +TIMESTAMP = 1594147012 +SHA256 (KDE/release-service/20.04.3/ktuberling-20.04.3.tar.xz) = 0fb7ef29c5bf02de56243e608a050fce992df56586d305a157ed3ac70f002a44 +SIZE (KDE/release-service/20.04.3/ktuberling-20.04.3.tar.xz) = 70706016 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 541820) +++ head/games/kubrick/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712679 -SHA256 (KDE/applications/20.04.2/kubrick-20.04.2.tar.xz) = 503ed1095347a7e5b96906052a32adf3a5079b66c8db409dec6d9ba073edb11f -SIZE (KDE/applications/20.04.2/kubrick-20.04.2.tar.xz) = 317852 +TIMESTAMP = 1594147013 +SHA256 (KDE/release-service/20.04.3/kubrick-20.04.3.tar.xz) = 983310938ad0437902d886f433b0693a3a08faaca0f5553a3aa24e89e3215fb9 +SIZE (KDE/release-service/20.04.3/kubrick-20.04.3.tar.xz) = 317644 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 541820) +++ head/games/libkdegames/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712680 -SHA256 (KDE/applications/20.04.2/libkdegames-20.04.2.tar.xz) = 5608e83971dc6989769c0f76e53b1e87a6be4ed97fbf4d55e5bf3daac546c662 -SIZE (KDE/applications/20.04.2/libkdegames-20.04.2.tar.xz) = 6386556 +TIMESTAMP = 1594147014 +SHA256 (KDE/release-service/20.04.3/libkdegames-20.04.3.tar.xz) = fda965e2ff166abe89cf008a5160262f061a6c3aeda4a71a834b5ed66ea6d0be +SIZE (KDE/release-service/20.04.3/libkdegames-20.04.3.tar.xz) = 6384092 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 541820) +++ head/games/libkmahjongg/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712680 -SHA256 (KDE/applications/20.04.2/libkmahjongg-20.04.2.tar.xz) = 9466733c3e0ff8dfcd4eee8bc0467b978ab47e39ded1fe19f7ab9ac263909550 -SIZE (KDE/applications/20.04.2/libkmahjongg-20.04.2.tar.xz) = 1684800 +TIMESTAMP = 1594147015 +SHA256 (KDE/release-service/20.04.3/libkmahjongg-20.04.3.tar.xz) = 24fcff9d91c5143c7275c5c97c2be32e85f5c788749df3acc841fd28bee450a0 +SIZE (KDE/release-service/20.04.3/libkmahjongg-20.04.3.tar.xz) = 1684816 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 541820) +++ head/games/lskat/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712681 -SHA256 (KDE/applications/20.04.2/lskat-20.04.2.tar.xz) = ac4796edfc43968c8d3a1722307636ea3104ebcbb7589e9712f09abacbef96d1 -SIZE (KDE/applications/20.04.2/lskat-20.04.2.tar.xz) = 1219660 +TIMESTAMP = 1594147016 +SHA256 (KDE/release-service/20.04.3/lskat-20.04.3.tar.xz) = b7e33cc8097ee4bf4e5182a2a5db1e142c65b119424079f5e7f179720092815b +SIZE (KDE/release-service/20.04.3/lskat-20.04.3.tar.xz) = 1219892 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 541820) +++ head/games/palapeli/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712682 -SHA256 (KDE/applications/20.04.2/palapeli-20.04.2.tar.xz) = 03d708dada23feea5afb74e14b5a1395eb68c6a50f88dcf3b67186594cc4a87b -SIZE (KDE/applications/20.04.2/palapeli-20.04.2.tar.xz) = 2072004 +TIMESTAMP = 1594147017 +SHA256 (KDE/release-service/20.04.3/palapeli-20.04.3.tar.xz) = 8ae05cce4a1ccb5226c9895195c47825054363a127905dacd5b25fc2a4df3828 +SIZE (KDE/release-service/20.04.3/palapeli-20.04.3.tar.xz) = 2071816 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 541820) +++ head/games/picmi/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712683 -SHA256 (KDE/applications/20.04.2/picmi-20.04.2.tar.xz) = c8aaf3d0c93a5bba37a044de9c8a158e6d498b8ae77eab253883051f95fdc7ed -SIZE (KDE/applications/20.04.2/picmi-20.04.2.tar.xz) = 1360832 +TIMESTAMP = 1594147018 +SHA256 (KDE/release-service/20.04.3/picmi-20.04.3.tar.xz) = 57406f820d58132602b3e6524bad2d7aba3466f7c1a78a623077e7df5faf6838 +SIZE (KDE/release-service/20.04.3/picmi-20.04.3.tar.xz) = 1360560 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 541820) +++ head/graphics/gwenview/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712684 -SHA256 (KDE/applications/20.04.2/gwenview-20.04.2.tar.xz) = 49c3a14bc2b5cc14d027b3500cf1386b8c57b65b9a1edef001c4222aa616587e -SIZE (KDE/applications/20.04.2/gwenview-20.04.2.tar.xz) = 5741168 +TIMESTAMP = 1594147019 +SHA256 (KDE/release-service/20.04.3/gwenview-20.04.3.tar.xz) = d176021d6784e33cb0aaa6fa2517e81f9eac237079d2a06d6b55b8f4b04e8bd9 +SIZE (KDE/release-service/20.04.3/gwenview-20.04.3.tar.xz) = 5629044 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 541820) +++ head/graphics/kamera/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712684 -SHA256 (KDE/applications/20.04.2/kamera-20.04.2.tar.xz) = 1ed494bfa17ba98fcc417c650adcd4ce4ce9ee95b6c55adb63641e3384a42e56 -SIZE (KDE/applications/20.04.2/kamera-20.04.2.tar.xz) = 103824 +TIMESTAMP = 1594147020 +SHA256 (KDE/release-service/20.04.3/kamera-20.04.3.tar.xz) = dcac50db634fccb3e602abb575322342d50c56832a61731546cf1fec552d5b3e +SIZE (KDE/release-service/20.04.3/kamera-20.04.3.tar.xz) = 103800 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 541820) +++ head/graphics/kcolorchooser/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712685 -SHA256 (KDE/applications/20.04.2/kcolorchooser-20.04.2.tar.xz) = 155a01e032fbb5c3bcd537ed872fcf09bc6f001b5d01c867e6ae4f10b07967de -SIZE (KDE/applications/20.04.2/kcolorchooser-20.04.2.tar.xz) = 21828 +TIMESTAMP = 1594147021 +SHA256 (KDE/release-service/20.04.3/kcolorchooser-20.04.3.tar.xz) = 276cee46f92eeb5b47ec09366498b117c657fb2e618fc9fe34c797d4384549fd +SIZE (KDE/release-service/20.04.3/kcolorchooser-20.04.3.tar.xz) = 21848 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 541820) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712686 -SHA256 (KDE/applications/20.04.2/kdegraphics-mobipocket-20.04.2.tar.xz) = 3627ff68b46cabbb45b62fb7feb18a55b4295844979fc16f1552ac0eba097b56 -SIZE (KDE/applications/20.04.2/kdegraphics-mobipocket-20.04.2.tar.xz) = 16528 +TIMESTAMP = 1594147023 +SHA256 (KDE/release-service/20.04.3/kdegraphics-mobipocket-20.04.3.tar.xz) = 24ce0c1565b8bc922ea08c3d6bb625ff4bba2e656545e09e410a0ff3bc84c80f +SIZE (KDE/release-service/20.04.3/kdegraphics-mobipocket-20.04.3.tar.xz) = 16536 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 541820) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712687 -SHA256 (KDE/applications/20.04.2/svgpart-20.04.2.tar.xz) = b419c66b02979a3f48bb86ce04ea8265311e28169c843406b867200904d3b058 -SIZE (KDE/applications/20.04.2/svgpart-20.04.2.tar.xz) = 21192 +TIMESTAMP = 1594147024 +SHA256 (KDE/release-service/20.04.3/svgpart-20.04.3.tar.xz) = 2ffb67858ac5c01f5bb5d4728526786c5b6b6a8b70d688123c52efa084fae1b4 +SIZE (KDE/release-service/20.04.3/svgpart-20.04.3.tar.xz) = 21248 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 541820) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712688 -SHA256 (KDE/applications/20.04.2/kdegraphics-thumbnailers-20.04.2.tar.xz) = e20017679559395dd33fdc744bd1e40416349be91c8ed1b12e4c0c398bfbcecf -SIZE (KDE/applications/20.04.2/kdegraphics-thumbnailers-20.04.2.tar.xz) = 46500 +TIMESTAMP = 1594147025 +SHA256 (KDE/release-service/20.04.3/kdegraphics-thumbnailers-20.04.3.tar.xz) = b72bdd67738391a10672cd20667555168382285a764bd9e712e1485e7860441f +SIZE (KDE/release-service/20.04.3/kdegraphics-thumbnailers-20.04.3.tar.xz) = 46492 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 541820) +++ head/graphics/kimagemapeditor/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712689 -SHA256 (KDE/applications/20.04.2/kimagemapeditor-20.04.2.tar.xz) = d9cd8a04c3d099f3a941965ebe2931e19d1b7c143ef182259175c837b37b5107 -SIZE (KDE/applications/20.04.2/kimagemapeditor-20.04.2.tar.xz) = 1071284 +TIMESTAMP = 1594147026 +SHA256 (KDE/release-service/20.04.3/kimagemapeditor-20.04.3.tar.xz) = d86f8a9e0a1aba71236f7af844076758774ab1c10b4b2fa1d244c9b5d24adf33 +SIZE (KDE/release-service/20.04.3/kimagemapeditor-20.04.3.tar.xz) = 1071332 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 541820) +++ head/graphics/kipi-plugins/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591718918 -SHA256 (KDE/applications/20.04.2/kipi-plugins-20.04.2.tar.xz) = 73e8b7d8ca28dc630a7112065eda8757a7ac47d5417b86b75c309c3382f06748 -SIZE (KDE/applications/20.04.2/kipi-plugins-20.04.2.tar.xz) = 1643080 +TIMESTAMP = 1594147028 +SHA256 (KDE/release-service/20.04.3/kipi-plugins-20.04.3.tar.xz) = e128ba8a2194bb0ce6a5eac97d56479003f08c1d740a56a6c8d976df1a71632a +SIZE (KDE/release-service/20.04.3/kipi-plugins-20.04.3.tar.xz) = 1642920 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 541820) +++ head/graphics/kolourpaint/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712690 -SHA256 (KDE/applications/20.04.2/kolourpaint-20.04.2.tar.xz) = 51c4f709a9059581b9d79e3cd9d2f3752e213de4e68855334090bb9dfc41a60d -SIZE (KDE/applications/20.04.2/kolourpaint-20.04.2.tar.xz) = 5652284 +TIMESTAMP = 1594147029 +SHA256 (KDE/release-service/20.04.3/kolourpaint-20.04.3.tar.xz) = 55ec6d42fcf10b15b80b6fdabacdf189d1cda283a19a1c04b6a4a58abb56bee8 +SIZE (KDE/release-service/20.04.3/kolourpaint-20.04.3.tar.xz) = 5651568 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 541820) +++ head/graphics/kqtquickcharts/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591722510 -SHA256 (KDE/applications/20.04.2/kqtquickcharts-20.04.2.tar.xz) = 0c24f1f268d4e5e2342b49b50c6edc9faaa21146f6f8f508a5599dd000dceaf5 -SIZE (KDE/applications/20.04.2/kqtquickcharts-20.04.2.tar.xz) = 25624 +TIMESTAMP = 1594147029 +SHA256 (KDE/release-service/20.04.3/kqtquickcharts-20.04.3.tar.xz) = 69ff44ceb85779f7d4f52e092a8a5d18231ea0704d67d34d15ef94acf0d668c7 +SIZE (KDE/release-service/20.04.3/kqtquickcharts-20.04.3.tar.xz) = 25624 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 541820) +++ head/graphics/libkdcraw/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712690 -SHA256 (KDE/applications/20.04.2/libkdcraw-20.04.2.tar.xz) = 1e5727789ab0abcdad43c46327d044a2185bbbd684f13794af9a590255aead8f -SIZE (KDE/applications/20.04.2/libkdcraw-20.04.2.tar.xz) = 41912 +TIMESTAMP = 1594147030 +SHA256 (KDE/release-service/20.04.3/libkdcraw-20.04.3.tar.xz) = e37e9210a250955d1fe63d2d96571d0630572633e567eb047af9f24db2b86cb5 +SIZE (KDE/release-service/20.04.3/libkdcraw-20.04.3.tar.xz) = 41924 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 541820) +++ head/graphics/libkexiv2/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712691 -SHA256 (KDE/applications/20.04.2/libkexiv2-20.04.2.tar.xz) = 81ea2e2c818bb9d7d52025aecf1a2a348e68f822b78285cd887dd46e44a640f2 -SIZE (KDE/applications/20.04.2/libkexiv2-20.04.2.tar.xz) = 64536 +TIMESTAMP = 1594147031 +SHA256 (KDE/release-service/20.04.3/libkexiv2-20.04.3.tar.xz) = 12fa569aca07269e880bd976a6cc37b4f585fe2aac8837d437bc29999d95f6be +SIZE (KDE/release-service/20.04.3/libkexiv2-20.04.3.tar.xz) = 64548 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 541820) +++ head/graphics/libkipi/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712692 -SHA256 (KDE/applications/20.04.2/libkipi-20.04.2.tar.xz) = a1dabe2910b2a8cf74c6efa7b5164eea3bb9e9ab459939905e8c9fec7f991147 -SIZE (KDE/applications/20.04.2/libkipi-20.04.2.tar.xz) = 103572 +TIMESTAMP = 1594147032 +SHA256 (KDE/release-service/20.04.3/libkipi-20.04.3.tar.xz) = 4a72f0d1423a6a6f7017bf0598c99261575feb4d9af73520074f6f0b7f9e4c25 +SIZE (KDE/release-service/20.04.3/libkipi-20.04.3.tar.xz) = 103552 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 541820) +++ head/graphics/libksane/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712693 -SHA256 (KDE/applications/20.04.2/libksane-20.04.2.tar.xz) = d159f65b2d6f040e02dc6e867fa3e0e31d32d6dda789ff2bfec72d365b5b8744 -SIZE (KDE/applications/20.04.2/libksane-20.04.2.tar.xz) = 143664 +TIMESTAMP = 1594147033 +SHA256 (KDE/release-service/20.04.3/libksane-20.04.3.tar.xz) = 34827bcc5b9277292dd4434f2bf7610a28d54c86565f0410d4470c61f374c46e +SIZE (KDE/release-service/20.04.3/libksane-20.04.3.tar.xz) = 143728 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 541820) +++ head/graphics/okular/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712694 -SHA256 (KDE/applications/20.04.2/okular-20.04.2.tar.xz) = b783aaac1661d1d8ec5c5e26fdec7035a6b0241a21d18caac1587ecfde44c49b -SIZE (KDE/applications/20.04.2/okular-20.04.2.tar.xz) = 7237876 +TIMESTAMP = 1594147034 +SHA256 (KDE/release-service/20.04.3/okular-20.04.3.tar.xz) = 60865a5d09f41d30572b72224fb61baf9dde18cf6e246565d852e672e7bc4cfe +SIZE (KDE/release-service/20.04.3/okular-20.04.3.tar.xz) = 7236056 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 541820) +++ head/graphics/spectacle/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712694 -SHA256 (KDE/applications/20.04.2/spectacle-20.04.2.tar.xz) = 39f16ca9c30de73d11dfc0da902c712bf260a1cd69c87bc950db896db8188866 -SIZE (KDE/applications/20.04.2/spectacle-20.04.2.tar.xz) = 662260 +TIMESTAMP = 1594147035 +SHA256 (KDE/release-service/20.04.3/spectacle-20.04.3.tar.xz) = 71e852aceaac1dc76cd9aa4aa8284ced1c149d7374d9e06f996f4259a72ccbd6 +SIZE (KDE/release-service/20.04.3/spectacle-20.04.3.tar.xz) = 662016 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 541820) +++ head/japanese/kiten/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712695 -SHA256 (KDE/applications/20.04.2/kiten-20.04.2.tar.xz) = c5d002ba2ee4a11913457808da67f9c7ee5dbcf1731fad11842a4aa338862c82 -SIZE (KDE/applications/20.04.2/kiten-20.04.2.tar.xz) = 11286976 +TIMESTAMP = 1594147036 +SHA256 (KDE/release-service/20.04.3/kiten-20.04.3.tar.xz) = 3b0bdd2b711ee67bbc194b301da3ed99d4ee75bb6ff18ab50c0a1b4c1c4ef162 +SIZE (KDE/release-service/20.04.3/kiten-20.04.3.tar.xz) = 11286096 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 541820) +++ head/lang/kross-interpreters/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712716 -SHA256 (KDE/applications/20.04.2/kross-interpreters-20.04.2.tar.xz) = cea45091d1f3e65a745f8d9d38059420ff2bbdfcb584f195dd26192022c396a0 -SIZE (KDE/applications/20.04.2/kross-interpreters-20.04.2.tar.xz) = 151292 +TIMESTAMP = 1594147057 +SHA256 (KDE/release-service/20.04.3/kross-interpreters-20.04.3.tar.xz) = 7e5d1f771477831f42dc209c0333977af17a143ec8c7f60acbab9f5390818457 +SIZE (KDE/release-service/20.04.3/kross-interpreters-20.04.3.tar.xz) = 151288 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 541820) +++ head/lang/kturtle/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712717 -SHA256 (KDE/applications/20.04.2/kturtle-20.04.2.tar.xz) = 94881fec0a3b045aa222136b4ee996bdfbbf62b208d4344a644febc95046bd09 -SIZE (KDE/applications/20.04.2/kturtle-20.04.2.tar.xz) = 1833776 +TIMESTAMP = 1594147058 +SHA256 (KDE/release-service/20.04.3/kturtle-20.04.3.tar.xz) = e04034812c62e22be0ee7eb91d89a9e0e0c73bb5cba8e914373f407c99e8c0cb +SIZE (KDE/release-service/20.04.3/kturtle-20.04.3.tar.xz) = 1833488 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 541820) +++ head/math/analitza/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712718 -SHA256 (KDE/applications/20.04.2/analitza-20.04.2.tar.xz) = 4232afcbb7956ef3815a4cfefdeb703ae29027133982781a8ad5654ee80e2196 -SIZE (KDE/applications/20.04.2/analitza-20.04.2.tar.xz) = 332632 +TIMESTAMP = 1594147059 +SHA256 (KDE/release-service/20.04.3/analitza-20.04.3.tar.xz) = f9d1873c6190dc1eaeb6fad97d4197256342e0b729f7e8199e15bfb495f854b7 +SIZE (KDE/release-service/20.04.3/analitza-20.04.3.tar.xz) = 333208 Index: head/math/analitza/pkg-plist =================================================================== --- head/math/analitza/pkg-plist (revision 541820) +++ head/math/analitza/pkg-plist (revision 541821) @@ -1,106 +1,107 @@ include/Analitza5/analitza/abstractexpressionvisitor.h include/Analitza5/analitza/abstractlexer.h include/Analitza5/analitza/analitzaexport.h include/Analitza5/analitza/analitzautils.h include/Analitza5/analitza/analyzer.h include/Analitza5/analitza/apply.h include/Analitza5/analitza/builtinmethods.h include/Analitza5/analitza/container.h include/Analitza5/analitza/customobject.h include/Analitza5/analitza/expression.h include/Analitza5/analitza/expressionstream.h include/Analitza5/analitza/expressiontype.h include/Analitza5/analitza/importqobjectmetatype.h include/Analitza5/analitza/list.h include/Analitza5/analitza/matrix.h include/Analitza5/analitza/object.h include/Analitza5/analitza/operations.h include/Analitza5/analitza/operator.h include/Analitza5/analitza/value.h include/Analitza5/analitza/variable.h include/Analitza5/analitza/variables.h include/Analitza5/analitza/vector.h include/Analitza5/analitza_version.h include/Analitza5/analitzagui/algebrahighlighter.h include/Analitza5/analitzagui/analitzaguiexport.h include/Analitza5/analitzagui/analitzawidgets_export.h include/Analitza5/analitzagui/expressionedit.h include/Analitza5/analitzagui/operatorsmodel.h include/Analitza5/analitzagui/plotsview2d.h include/Analitza5/analitzagui/plotsview3d_es.h include/Analitza5/analitzagui/variablesmodel.h include/Analitza5/analitzaplot/analitzaplotexport.h include/Analitza5/analitzaplot/functiongraph.h include/Analitza5/analitzaplot/planecurve.h include/Analitza5/analitzaplot/plotitem.h include/Analitza5/analitzaplot/plotsdictionarymodel.h include/Analitza5/analitzaplot/plotsfactory.h include/Analitza5/analitzaplot/plotsmodel.h include/Analitza5/analitzaplot/plotter2d.h include/Analitza5/analitzaplot/plotter3d_es.h include/Analitza5/analitzaplot/plottingenums.h include/Analitza5/analitzaplot/spacecurve.h include/Analitza5/analitzaplot/surface.h lib/cmake/Analitza5/Analitza5Config.cmake lib/cmake/Analitza5/Analitza5ConfigVersion.cmake lib/cmake/Analitza5/Analitza5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Analitza5/Analitza5Targets.cmake lib/libAnalitza.so lib/libAnalitza.so.%%SHLIB_SHVER%% lib/libAnalitza.so.%%SHLIB_VER%% lib/libAnalitzaGui.so lib/libAnalitzaGui.so.%%SHLIB_SHVER%% lib/libAnalitzaGui.so.%%SHLIB_VER%% lib/libAnalitzaPlot.so lib/libAnalitzaPlot.so.%%SHLIB_SHVER%% lib/libAnalitzaPlot.so.%%SHLIB_VER%% lib/libAnalitzaWidgets.so lib/libAnalitzaWidgets.so.%%SHLIB_SHVER%% lib/libAnalitzaWidgets.so.%%SHLIB_VER%% %%QT_QMLDIR%%/org/kde/analitza/Graph2D.qml %%QT_QMLDIR%%/org/kde/analitza/Graph3D.qml %%QT_QMLDIR%%/org/kde/analitza/libanalitzadeclarativeplugin.so %%QT_QMLDIR%%/org/kde/analitza/qmldir share/libanalitza/plots/3Ds.plots share/libanalitza/plots/basic_curves.plots share/libanalitza/plots/conics.plots share/libanalitza/plots/polar.plots share/locale/ar/LC_MESSAGES/analitza_qt.qm share/locale/bs/LC_MESSAGES/analitza_qt.qm share/locale/ca/LC_MESSAGES/analitza_qt.qm share/locale/ca@valencia/LC_MESSAGES/analitza_qt.qm share/locale/cs/LC_MESSAGES/analitza_qt.qm share/locale/da/LC_MESSAGES/analitza_qt.qm share/locale/de/LC_MESSAGES/analitza_qt.qm 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/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 share/locale/lt/LC_MESSAGES/analitza_qt.qm share/locale/lv/LC_MESSAGES/analitza_qt.qm share/locale/ml/LC_MESSAGES/analitza_qt.qm share/locale/mr/LC_MESSAGES/analitza_qt.qm share/locale/nb/LC_MESSAGES/analitza_qt.qm share/locale/nds/LC_MESSAGES/analitza_qt.qm share/locale/nl/LC_MESSAGES/analitza_qt.qm share/locale/nn/LC_MESSAGES/analitza_qt.qm share/locale/pl/LC_MESSAGES/analitza_qt.qm share/locale/pt/LC_MESSAGES/analitza_qt.qm share/locale/pt_BR/LC_MESSAGES/analitza_qt.qm share/locale/ru/LC_MESSAGES/analitza_qt.qm share/locale/sk/LC_MESSAGES/analitza_qt.qm share/locale/sl/LC_MESSAGES/analitza_qt.qm share/locale/sv/LC_MESSAGES/analitza_qt.qm share/locale/tr/LC_MESSAGES/analitza_qt.qm share/locale/ug/LC_MESSAGES/analitza_qt.qm share/locale/uk/LC_MESSAGES/analitza_qt.qm share/locale/zh_CN/LC_MESSAGES/analitza_qt.qm share/locale/zh_TW/LC_MESSAGES/analitza_qt.qm Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 541820) +++ head/math/cantor/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712719 -SHA256 (KDE/applications/20.04.2/cantor-20.04.2.tar.xz) = 1cc909a968b16f942ef48a4e74baac99aadc21cbf26cc0f885729aabae16ceea -SIZE (KDE/applications/20.04.2/cantor-20.04.2.tar.xz) = 9028088 +TIMESTAMP = 1594147060 +SHA256 (KDE/release-service/20.04.3/cantor-20.04.3.tar.xz) = ff589ccb48016fd784de9883fe19ee0c2c450e3993e9cc5f7dc499448db0c6a4 +SIZE (KDE/release-service/20.04.3/cantor-20.04.3.tar.xz) = 9029068 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 541820) +++ head/math/kalgebra/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712719 -SHA256 (KDE/applications/20.04.2/kalgebra-20.04.2.tar.xz) = 2da9af32d70c09cd9d114735959d9d2d1fce5f3344938c68490960846479491c -SIZE (KDE/applications/20.04.2/kalgebra-20.04.2.tar.xz) = 1158340 +TIMESTAMP = 1594147061 +SHA256 (KDE/release-service/20.04.3/kalgebra-20.04.3.tar.xz) = 988ae02433e961a84da35498aa6ff88fbcc36f8f12d55457116935740d3f1475 +SIZE (KDE/release-service/20.04.3/kalgebra-20.04.3.tar.xz) = 1158436 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 541820) +++ head/math/kbruch/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712720 -SHA256 (KDE/applications/20.04.2/kbruch-20.04.2.tar.xz) = ca07474acfc4a330c3420f6e37be4584074969884531dc918d31f0b07afa4183 -SIZE (KDE/applications/20.04.2/kbruch-20.04.2.tar.xz) = 5606300 +TIMESTAMP = 1594147062 +SHA256 (KDE/release-service/20.04.3/kbruch-20.04.3.tar.xz) = 7381df5deb97580a0d60881d591b3d18715c8ad5692a580aebe82a836f1bb8df +SIZE (KDE/release-service/20.04.3/kbruch-20.04.3.tar.xz) = 5606472 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 541820) +++ head/math/kcalc/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712721 -SHA256 (KDE/applications/20.04.2/kcalc-20.04.2.tar.xz) = 3f68a36c94cf309fb9c4a2aafc7bc2fa6c0d61c8fc967d60155d10d4028d61a0 -SIZE (KDE/applications/20.04.2/kcalc-20.04.2.tar.xz) = 374404 +TIMESTAMP = 1594147063 +SHA256 (KDE/release-service/20.04.3/kcalc-20.04.3.tar.xz) = 1ec38e3bf0c17df25a3367d4f3d5f7ef32b9a6fb5f081c20ad0091a968a2cf4a +SIZE (KDE/release-service/20.04.3/kcalc-20.04.3.tar.xz) = 373484 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 541820) +++ head/math/kig/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712722 -SHA256 (KDE/applications/20.04.2/kig-20.04.2.tar.xz) = afe7f08e5a1a06bda1a2773e6889907b4799db9c11e3b98974060f7c785ff047 -SIZE (KDE/applications/20.04.2/kig-20.04.2.tar.xz) = 3482912 +TIMESTAMP = 1594147065 +SHA256 (KDE/release-service/20.04.3/kig-20.04.3.tar.xz) = ccbc8f10e79f420d8a97aa00616fc29ed771721bfe22eb74b160464ac6cc3023 +SIZE (KDE/release-service/20.04.3/kig-20.04.3.tar.xz) = 3482876 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 541820) +++ head/math/kmplot/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712723 -SHA256 (KDE/applications/20.04.2/kmplot-20.04.2.tar.xz) = 0ee433d52e849bd64411dcf6a81dbbf680dd63b888c9de968ca60d51597f3be0 -SIZE (KDE/applications/20.04.2/kmplot-20.04.2.tar.xz) = 3056336 +TIMESTAMP = 1594147067 +SHA256 (KDE/release-service/20.04.3/kmplot-20.04.3.tar.xz) = 57389abae04c204d0c2462709b70a919e0050b20867bcb23f3ab72788051e501 +SIZE (KDE/release-service/20.04.3/kmplot-20.04.3.tar.xz) = 3054968 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 541820) +++ head/math/rocs/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712724 -SHA256 (KDE/applications/20.04.2/rocs-20.04.2.tar.xz) = 2162c9d925c4d9968176cc5c7da57c21505139c1464e4ecbb992ea5e840fb5db -SIZE (KDE/applications/20.04.2/rocs-20.04.2.tar.xz) = 1507436 +TIMESTAMP = 1594147068 +SHA256 (KDE/release-service/20.04.3/rocs-20.04.3.tar.xz) = 1620ff8360568ab4201d526ea4489bd672f6715b6d200251d63ed139dcc58a94 +SIZE (KDE/release-service/20.04.3/rocs-20.04.3.tar.xz) = 1505280 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 541820) +++ head/misc/artikulate/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712724 -SHA256 (KDE/applications/20.04.2/artikulate-20.04.2.tar.xz) = 9eb06fe614859b40219f4d5b868e642d276f9bc7c9e850762e2a50531b7e2a41 -SIZE (KDE/applications/20.04.2/artikulate-20.04.2.tar.xz) = 1079440 +TIMESTAMP = 1594147069 +SHA256 (KDE/release-service/20.04.3/artikulate-20.04.3.tar.xz) = 394e93df2b370ba1e6621b2bcf871be42efde6fa2189de29d4c8198e387767ea +SIZE (KDE/release-service/20.04.3/artikulate-20.04.3.tar.xz) = 1079308 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 541820) +++ head/misc/kdeedu-data/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712725 -SHA256 (KDE/applications/20.04.2/kdeedu-data-20.04.2.tar.xz) = 29d1d091e68c8f29ab1a59b7a94de0cce4bf9c049d315ffe2f305dfddd8c1561 -SIZE (KDE/applications/20.04.2/kdeedu-data-20.04.2.tar.xz) = 328796 +TIMESTAMP = 1594147069 +SHA256 (KDE/release-service/20.04.3/kdeedu-data-20.04.3.tar.xz) = e717f82a1b4729f0a6df65221e9c2b01df17acf3d4eb8c2340cea23b6b65d969 +SIZE (KDE/release-service/20.04.3/kdeedu-data-20.04.3.tar.xz) = 328836 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 541820) +++ head/misc/kgeography/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591847928 -SHA256 (KDE/applications/20.04.2/kgeography-20.04.2.tar.xz) = 2f3aed6d6f787f4ad773098a717fd8ae4739844d0847150ea0d56e5027c291d0 -SIZE (KDE/applications/20.04.2/kgeography-20.04.2.tar.xz) = 10870332 +TIMESTAMP = 1594147070 +SHA256 (KDE/release-service/20.04.3/kgeography-20.04.3.tar.xz) = 69b4b06cfb1f6abb5c12bb0bf9334f178af2018288ee507678efe594e0392887 +SIZE (KDE/release-service/20.04.3/kgeography-20.04.3.tar.xz) = 10871688 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 541820) +++ head/misc/klettres/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712727 -SHA256 (KDE/applications/20.04.2/klettres-20.04.2.tar.xz) = 486cdd21446f2d31142607de6f6d24523561121d403a0f2f2d33f084cb937904 -SIZE (KDE/applications/20.04.2/klettres-20.04.2.tar.xz) = 46842972 +TIMESTAMP = 1594147071 +SHA256 (KDE/release-service/20.04.3/klettres-20.04.3.tar.xz) = ed943bce624a599f7759487d0ff3b16c340f2beadbad25dab30b6607dbd2695e +SIZE (KDE/release-service/20.04.3/klettres-20.04.3.tar.xz) = 46833040 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 541820) +++ head/misc/ktouch/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712728 -SHA256 (KDE/applications/20.04.2/ktouch-20.04.2.tar.xz) = d00de2b920339990a1e6a647a6de04720a5786650c77458290a8eff4d43dd52b -SIZE (KDE/applications/20.04.2/ktouch-20.04.2.tar.xz) = 4937240 +TIMESTAMP = 1594147072 +SHA256 (KDE/release-service/20.04.3/ktouch-20.04.3.tar.xz) = 7f1c456ae758a6e7eb58e83120289fa8eb5c56c3c98cd9c9f974cea5dd156ea8 +SIZE (KDE/release-service/20.04.3/ktouch-20.04.3.tar.xz) = 4936908 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 541820) +++ head/misc/kwordquiz/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712729 -SHA256 (KDE/applications/20.04.2/kwordquiz-20.04.2.tar.xz) = 0399810f7b279899a5fa00b7110baec85651036253292207654a0240af84baed -SIZE (KDE/applications/20.04.2/kwordquiz-20.04.2.tar.xz) = 4176948 +TIMESTAMP = 1594147073 +SHA256 (KDE/release-service/20.04.3/kwordquiz-20.04.3.tar.xz) = 464684309e098c4e8663d39cd98f53a640a93e1d8ac169a2a0ac3cc98d7f8e12 +SIZE (KDE/release-service/20.04.3/kwordquiz-20.04.3.tar.xz) = 4177044 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 541820) +++ head/misc/libkeduvocdocument/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712730 -SHA256 (KDE/applications/20.04.2/libkeduvocdocument-20.04.2.tar.xz) = 2bf9e70ffa1865ea09ad3a9fe5e899c9dd43103d35e914db974e6e72f742aae9 -SIZE (KDE/applications/20.04.2/libkeduvocdocument-20.04.2.tar.xz) = 206864 +TIMESTAMP = 1594147074 +SHA256 (KDE/release-service/20.04.3/libkeduvocdocument-20.04.3.tar.xz) = a53e17a84420fca8f9572d8439da2c63d1241a607952454003a4020104a25558 +SIZE (KDE/release-service/20.04.3/libkeduvocdocument-20.04.3.tar.xz) = 206876 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 541820) +++ head/misc/parley/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712730 -SHA256 (KDE/applications/20.04.2/parley-20.04.2.tar.xz) = 67d0daf172acbcd3aa6b2969b2204720f5312526fe00a1d4c0b3d433226d3fe2 -SIZE (KDE/applications/20.04.2/parley-20.04.2.tar.xz) = 8838228 +TIMESTAMP = 1594147074 +SHA256 (KDE/release-service/20.04.3/parley-20.04.3.tar.xz) = b5e74fbd458824d26c0ea7cb8ed5510e3f6e849c9dbda4bc7804b9b95a64da03 +SIZE (KDE/release-service/20.04.3/parley-20.04.3.tar.xz) = 8838592 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 541820) +++ head/multimedia/dragon/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712731 -SHA256 (KDE/applications/20.04.2/dragon-20.04.2.tar.xz) = d89d07aa1abd73ad5d304cf3969ee1278cd4e0a0e040e2135a0aaf6bd88569cc -SIZE (KDE/applications/20.04.2/dragon-20.04.2.tar.xz) = 1351692 +TIMESTAMP = 1594147075 +SHA256 (KDE/release-service/20.04.3/dragon-20.04.3.tar.xz) = 2b0d6414f2cea9f2a0b2ebddeffa7e5342db96fac34b2a00439fca5784f6131f +SIZE (KDE/release-service/20.04.3/dragon-20.04.3.tar.xz) = 1351632 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 541820) +++ head/multimedia/kamoso/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712732 -SHA256 (KDE/applications/20.04.2/kamoso-20.04.2.tar.xz) = bb828a92806dff12f0a5aea61a1af20c141304014a17ba8dc5d5a6b37aab45a5 -SIZE (KDE/applications/20.04.2/kamoso-20.04.2.tar.xz) = 202680 +TIMESTAMP = 1594147075 +SHA256 (KDE/release-service/20.04.3/kamoso-20.04.3.tar.xz) = 9b6410f75bd47901cdd787ea5a7a7bc93da16837f955f27de9e609d9e7b4b896 +SIZE (KDE/release-service/20.04.3/kamoso-20.04.3.tar.xz) = 203356 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 541820) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712733 -SHA256 (KDE/applications/20.04.2/ffmpegthumbs-20.04.2.tar.xz) = 24d5fd77abc5481318dd9b301badc9175dcd1ceb15801b4576ab9b4223019aff -SIZE (KDE/applications/20.04.2/ffmpegthumbs-20.04.2.tar.xz) = 27564 +TIMESTAMP = 1594147076 +SHA256 (KDE/release-service/20.04.3/ffmpegthumbs-20.04.3.tar.xz) = 089305a75d32cf8bf1b9279623b524912af78aa538379dcccf998ca1ab165164 +SIZE (KDE/release-service/20.04.3/ffmpegthumbs-20.04.3.tar.xz) = 27528 Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 541820) +++ head/multimedia/kdenlive/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591847926 -SHA256 (KDE/applications/20.04.2/kdenlive-20.04.2.tar.xz) = 17539ba44397aeff19cda6c767741212f3e7e4ecb852b3d35787c1aca3d53ca6 -SIZE (KDE/applications/20.04.2/kdenlive-20.04.2.tar.xz) = 11289748 +TIMESTAMP = 1594147077 +SHA256 (KDE/release-service/20.04.3/kdenlive-20.04.3.tar.xz) = 29e5fa37f4680683cc6e244cee4d0b3a0e3e3290f15c0e0b6015ae4784d7315e +SIZE (KDE/release-service/20.04.3/kdenlive-20.04.3.tar.xz) = 11291332 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 541820) +++ head/net/akonadi-calendar/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712767 -SHA256 (KDE/applications/20.04.2/akonadi-calendar-20.04.2.tar.xz) = 68559234d651d9902249e76b14c799bb0401950952837da1fb1abc6a588d883b -SIZE (KDE/applications/20.04.2/akonadi-calendar-20.04.2.tar.xz) = 331544 +TIMESTAMP = 1594147109 +SHA256 (KDE/release-service/20.04.3/akonadi-calendar-20.04.3.tar.xz) = ff8732b0d09b87ce0760b7df02ee390d3c0c064780076ed4c6ed05c52ca634bb +SIZE (KDE/release-service/20.04.3/akonadi-calendar-20.04.3.tar.xz) = 330960 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 541820) +++ head/net/akonadi-contacts/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712768 -SHA256 (KDE/applications/20.04.2/akonadi-contacts-20.04.2.tar.xz) = 9bffeec514cb798e6764ef70c6eb05c524fe84ee6298b3c341c32a8a5a4cdd19 -SIZE (KDE/applications/20.04.2/akonadi-contacts-20.04.2.tar.xz) = 393796 +TIMESTAMP = 1594147110 +SHA256 (KDE/release-service/20.04.3/akonadi-contacts-20.04.3.tar.xz) = 5bcd7acc70631e844ed77e127ff895efb573b62ef79062a6065e24b8826af39d +SIZE (KDE/release-service/20.04.3/akonadi-contacts-20.04.3.tar.xz) = 393708 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 541820) +++ head/net/akonadi-mime/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712769 -SHA256 (KDE/applications/20.04.2/akonadi-mime-20.04.2.tar.xz) = cc13e303579875d4b970bdb90130bc25a989f68ba8959ddc2334c29c46daf322 -SIZE (KDE/applications/20.04.2/akonadi-mime-20.04.2.tar.xz) = 132228 +TIMESTAMP = 1594147111 +SHA256 (KDE/release-service/20.04.3/akonadi-mime-20.04.3.tar.xz) = 92e9bab71f87c0de8e3437dd4779054332826fe2522c36a7c038c789b207f7ac +SIZE (KDE/release-service/20.04.3/akonadi-mime-20.04.3.tar.xz) = 132240 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 541820) +++ head/net/akonadi-notes/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712770 -SHA256 (KDE/applications/20.04.2/akonadi-notes-20.04.2.tar.xz) = 5060f1c0200a4d69d3789aa623626500ba2b41d663dac0e96c56b53e26d475ea -SIZE (KDE/applications/20.04.2/akonadi-notes-20.04.2.tar.xz) = 24520 +TIMESTAMP = 1594147111 +SHA256 (KDE/release-service/20.04.3/akonadi-notes-20.04.3.tar.xz) = e1b4b6d2347038774589a9a8a935e4697d248008dfd2b5b496e6555974c96a55 +SIZE (KDE/release-service/20.04.3/akonadi-notes-20.04.3.tar.xz) = 24608 Index: head/net/akonadi-notes/pkg-plist =================================================================== --- head/net/akonadi-notes/pkg-plist (revision 541820) +++ head/net/akonadi-notes/pkg-plist (revision 541821) @@ -1,55 +1,56 @@ include/KF5/Akonadi/Notes/NoteUtils include/KF5/akonadi-notes_version.h include/KF5/akonadi/notes/NoteUtils include/KF5/akonadi/notes/akonadi-notes_export.h include/KF5/akonadi/notes/noteutils.h lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfig.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfigVersion.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets.cmake lib/libKF5AkonadiNotes.so lib/libKF5AkonadiNotes.so.5 lib/libKF5AkonadiNotes.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiNotes.pri share/locale/ar/LC_MESSAGES/akonadinotes5.mo share/locale/bs/LC_MESSAGES/akonadinotes5.mo share/locale/ca/LC_MESSAGES/akonadinotes5.mo share/locale/ca@valencia/LC_MESSAGES/akonadinotes5.mo share/locale/cs/LC_MESSAGES/akonadinotes5.mo share/locale/da/LC_MESSAGES/akonadinotes5.mo share/locale/de/LC_MESSAGES/akonadinotes5.mo share/locale/el/LC_MESSAGES/akonadinotes5.mo share/locale/en_GB/LC_MESSAGES/akonadinotes5.mo share/locale/es/LC_MESSAGES/akonadinotes5.mo share/locale/et/LC_MESSAGES/akonadinotes5.mo share/locale/fi/LC_MESSAGES/akonadinotes5.mo share/locale/fr/LC_MESSAGES/akonadinotes5.mo share/locale/ga/LC_MESSAGES/akonadinotes5.mo share/locale/gl/LC_MESSAGES/akonadinotes5.mo share/locale/he/LC_MESSAGES/akonadinotes5.mo share/locale/hu/LC_MESSAGES/akonadinotes5.mo share/locale/ia/LC_MESSAGES/akonadinotes5.mo share/locale/it/LC_MESSAGES/akonadinotes5.mo share/locale/ja/LC_MESSAGES/akonadinotes5.mo share/locale/kk/LC_MESSAGES/akonadinotes5.mo share/locale/km/LC_MESSAGES/akonadinotes5.mo share/locale/ko/LC_MESSAGES/akonadinotes5.mo share/locale/lt/LC_MESSAGES/akonadinotes5.mo share/locale/mr/LC_MESSAGES/akonadinotes5.mo share/locale/nb/LC_MESSAGES/akonadinotes5.mo share/locale/nds/LC_MESSAGES/akonadinotes5.mo share/locale/nl/LC_MESSAGES/akonadinotes5.mo +share/locale/nn/LC_MESSAGES/akonadinotes5.mo share/locale/pl/LC_MESSAGES/akonadinotes5.mo share/locale/pt/LC_MESSAGES/akonadinotes5.mo share/locale/pt_BR/LC_MESSAGES/akonadinotes5.mo share/locale/ro/LC_MESSAGES/akonadinotes5.mo share/locale/ru/LC_MESSAGES/akonadinotes5.mo share/locale/sk/LC_MESSAGES/akonadinotes5.mo share/locale/sl/LC_MESSAGES/akonadinotes5.mo share/locale/sr/LC_MESSAGES/akonadinotes5.mo share/locale/sv/LC_MESSAGES/akonadinotes5.mo share/locale/tr/LC_MESSAGES/akonadinotes5.mo share/locale/ug/LC_MESSAGES/akonadinotes5.mo share/locale/uk/LC_MESSAGES/akonadinotes5.mo share/locale/zh_CN/LC_MESSAGES/akonadinotes5.mo share/locale/zh_TW/LC_MESSAGES/akonadinotes5.mo Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 541820) +++ head/net/akonadi-search/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712770 -SHA256 (KDE/applications/20.04.2/akonadi-search-20.04.2.tar.xz) = 936beec7ac4a30b7d47ffffc1c3a491cacac190e8dd6d9fd856ebb22cca385d4 -SIZE (KDE/applications/20.04.2/akonadi-search-20.04.2.tar.xz) = 83320 +TIMESTAMP = 1594147112 +SHA256 (KDE/release-service/20.04.3/akonadi-search-20.04.3.tar.xz) = 21ca09d39d6e550ca01e80f1a112557f00387e014763b1f47824d53d41cb5bdf +SIZE (KDE/release-service/20.04.3/akonadi-search-20.04.3.tar.xz) = 83260 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 541820) +++ head/net/calendarsupport/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712771 -SHA256 (KDE/applications/20.04.2/calendarsupport-20.04.2.tar.xz) = a0f29370c61b60d62739a9104e418a99bd4ba4e5f622a810bfaa479370f30994 -SIZE (KDE/applications/20.04.2/calendarsupport-20.04.2.tar.xz) = 651552 +TIMESTAMP = 1594147113 +SHA256 (KDE/release-service/20.04.3/calendarsupport-20.04.3.tar.xz) = 40b069e1561fac49f46dd0504af0ac459010ac98f30748b8f15a50ca1fd35b5b +SIZE (KDE/release-service/20.04.3/calendarsupport-20.04.3.tar.xz) = 651616 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 541820) +++ head/net/eventviews/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712772 -SHA256 (KDE/applications/20.04.2/eventviews-20.04.2.tar.xz) = 44306f7c20aef2c168d7ed6ca8e3919e5be03dee2fec9e26c6461ca9b6d8c70f -SIZE (KDE/applications/20.04.2/eventviews-20.04.2.tar.xz) = 443864 +TIMESTAMP = 1594147114 +SHA256 (KDE/release-service/20.04.3/eventviews-20.04.3.tar.xz) = f10d43f57e62d68b6d0b41e9e3442baee8b68664e085f6e4347ac6adc1af32ff +SIZE (KDE/release-service/20.04.3/eventviews-20.04.3.tar.xz) = 444392 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 541820) +++ head/net/incidenceeditor/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712773 -SHA256 (KDE/applications/20.04.2/incidenceeditor-20.04.2.tar.xz) = 4efd249e05430bed934af58f134fe00290eb3d426ea5ab2a4e3226c8f37fac92 -SIZE (KDE/applications/20.04.2/incidenceeditor-20.04.2.tar.xz) = 550048 +TIMESTAMP = 1594147114 +SHA256 (KDE/release-service/20.04.3/incidenceeditor-20.04.3.tar.xz) = b3c70c926acab7a0585bf2bf7575ebe4d04c439fc49af073d0cb599f3b9e57c2 +SIZE (KDE/release-service/20.04.3/incidenceeditor-20.04.3.tar.xz) = 550072 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 541820) +++ head/net/kalarmcal/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712774 -SHA256 (KDE/applications/20.04.2/kalarmcal-20.04.2.tar.xz) = 0bdedb73c06f43eab166ed01270c845e7919e185d30e86f33fb4aec507bcf61f -SIZE (KDE/applications/20.04.2/kalarmcal-20.04.2.tar.xz) = 574456 +TIMESTAMP = 1594147115 +SHA256 (KDE/release-service/20.04.3/kalarmcal-20.04.3.tar.xz) = 19c9aab451f95f7689d8b18059e84f189b11cf15bb7f60fe55402b944512692e +SIZE (KDE/release-service/20.04.3/kalarmcal-20.04.3.tar.xz) = 574436 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 541820) +++ head/net/kblog/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712774 -SHA256 (KDE/applications/20.04.2/kblog-20.04.2.tar.xz) = 345fa87ddeffd237d62d16c2fbb4974883e3592e368bb087393dbf1af7c11af1 -SIZE (KDE/applications/20.04.2/kblog-20.04.2.tar.xz) = 72860 +TIMESTAMP = 1594147116 +SHA256 (KDE/release-service/20.04.3/kblog-20.04.3.tar.xz) = 5932a8ba3ec33f13aec201252abb6d0712740f52af03747e9eb0f6c0764cb9b4 +SIZE (KDE/release-service/20.04.3/kblog-20.04.3.tar.xz) = 72888 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 541820) +++ head/net/kcalutils/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712775 -SHA256 (KDE/applications/20.04.2/kcalutils-20.04.2.tar.xz) = c5ebbb49f7caf16f613bf0c41191caaf04757b648ce7fa3f93bc08882e9d4315 -SIZE (KDE/applications/20.04.2/kcalutils-20.04.2.tar.xz) = 320976 +TIMESTAMP = 1594147117 +SHA256 (KDE/release-service/20.04.3/kcalutils-20.04.3.tar.xz) = 6604e0377c8955be7963853691aeaf689c00e2f78caab6b3472ffb4c822e07a3 +SIZE (KDE/release-service/20.04.3/kcalutils-20.04.3.tar.xz) = 319228 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 541820) +++ head/net/kdav/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712776 -SHA256 (KDE/applications/20.04.2/kdav-20.04.2.tar.xz) = 06511f4573a0f82c836e34323083c736705a37da7259ad45319aff653b9ce75e -SIZE (KDE/applications/20.04.2/kdav-20.04.2.tar.xz) = 58300 +TIMESTAMP = 1594147117 +SHA256 (KDE/release-service/20.04.3/kdav-20.04.3.tar.xz) = b645d5d17c967fd09c3d7abdfc262740a95870dd66bd3e5f4c0382da097d8510 +SIZE (KDE/release-service/20.04.3/kdav-20.04.3.tar.xz) = 58292 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 541820) +++ head/net/kdenetwork-filesharing/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712777 -SHA256 (KDE/applications/20.04.2/kdenetwork-filesharing-20.04.2.tar.xz) = ff43db16a065211510ccfe39731eb5076073dade92550539d59a5769e0c784a6 -SIZE (KDE/applications/20.04.2/kdenetwork-filesharing-20.04.2.tar.xz) = 320524 +TIMESTAMP = 1594147118 +SHA256 (KDE/release-service/20.04.3/kdenetwork-filesharing-20.04.3.tar.xz) = 8cdbe70cd4263e8be6fdc0de987cb9255efae9b747018bc5098c0882a3d69c4d +SIZE (KDE/release-service/20.04.3/kdenetwork-filesharing-20.04.3.tar.xz) = 320332 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 541820) +++ head/net/kget/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712778 -SHA256 (KDE/applications/20.04.2/kget-20.04.2.tar.xz) = a4ec53eaac60c40b57573a8826503c78c76ea4c87cc71d996e105294846b80ca -SIZE (KDE/applications/20.04.2/kget-20.04.2.tar.xz) = 5238908 +TIMESTAMP = 1594147119 +SHA256 (KDE/release-service/20.04.3/kget-20.04.3.tar.xz) = 930b7ed50d19e41bfead8e6d71d8ec4024d688907489c17fb9274a73e4c7c0c2 +SIZE (KDE/release-service/20.04.3/kget-20.04.3.tar.xz) = 5238644 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 541820) +++ head/net/kidentitymanagement/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712779 -SHA256 (KDE/applications/20.04.2/kidentitymanagement-20.04.2.tar.xz) = 33dbb5fef72182da7fb70207c14ee9012e62e3902247064b0f23145bdbd86c04 -SIZE (KDE/applications/20.04.2/kidentitymanagement-20.04.2.tar.xz) = 149572 +TIMESTAMP = 1594147120 +SHA256 (KDE/release-service/20.04.3/kidentitymanagement-20.04.3.tar.xz) = 09e63cdb07bb38ba8c82d796212b1bd9d218dbe8adde215bff9c689c93b90917 +SIZE (KDE/release-service/20.04.3/kidentitymanagement-20.04.3.tar.xz) = 149608 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 541820) +++ head/net/kimap/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712780 -SHA256 (KDE/applications/20.04.2/kimap-20.04.2.tar.xz) = 02073ffe32a2c671813eba7d72f7516613dc3eb933a0db9c4a69cbf0879a6b9c -SIZE (KDE/applications/20.04.2/kimap-20.04.2.tar.xz) = 119744 +TIMESTAMP = 1594147120 +SHA256 (KDE/release-service/20.04.3/kimap-20.04.3.tar.xz) = 870d22a4f07080453ade2e1224acb563232211fe48e1beabe8c58d27730b4bfa +SIZE (KDE/release-service/20.04.3/kimap-20.04.3.tar.xz) = 119724 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 541820) +++ head/net/kitinerary/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712780 -SHA256 (KDE/applications/20.04.2/kitinerary-20.04.2.tar.xz) = 72b118a6e04a0645a0caf2c9166e41ff8978eec95980304bd5f5d9de2068f6bf -SIZE (KDE/applications/20.04.2/kitinerary-20.04.2.tar.xz) = 1282012 +TIMESTAMP = 1594147121 +SHA256 (KDE/release-service/20.04.3/kitinerary-20.04.3.tar.xz) = 8c7dab2e28891af268d22884ecbb9cd7031c4b34352ed3b576dbb6dcb5977c7e +SIZE (KDE/release-service/20.04.3/kitinerary-20.04.3.tar.xz) = 1280676 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 541820) +++ head/net/kldap/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712781 -SHA256 (KDE/applications/20.04.2/kldap-20.04.2.tar.xz) = 622faaf235f55def8b1a895f35a7846a67ca8b5c9b616afa75dc4bba1ec2d0bc -SIZE (KDE/applications/20.04.2/kldap-20.04.2.tar.xz) = 149168 +TIMESTAMP = 1594147122 +SHA256 (KDE/release-service/20.04.3/kldap-20.04.3.tar.xz) = ab32ef61da11f1401f9d648f6831a946dd6964ffd4f35f6c84ad9ca19dd422f1 +SIZE (KDE/release-service/20.04.3/kldap-20.04.3.tar.xz) = 149012 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 541820) +++ head/net/kmailtransport/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712782 -SHA256 (KDE/applications/20.04.2/kmailtransport-20.04.2.tar.xz) = 51cc5c8f12299b0263c0e9f78795d75b4b4eaa0b5cb1793ac4bf3854bda89deb -SIZE (KDE/applications/20.04.2/kmailtransport-20.04.2.tar.xz) = 166336 +TIMESTAMP = 1594147123 +SHA256 (KDE/release-service/20.04.3/kmailtransport-20.04.3.tar.xz) = 45685bf61f24c9c7070a9f5b982d48005a7bf0ef04f391df2959772b17857cc2 +SIZE (KDE/release-service/20.04.3/kmailtransport-20.04.3.tar.xz) = 166368 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 541820) +++ head/net/kmbox/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712783 -SHA256 (KDE/applications/20.04.2/kmbox-20.04.2.tar.xz) = c3c55a3d9f8d203545a0a1c28ef81e487f24eb30e72e476fe5e42eeb0817c481 -SIZE (KDE/applications/20.04.2/kmbox-20.04.2.tar.xz) = 24684 +TIMESTAMP = 1594147124 +SHA256 (KDE/release-service/20.04.3/kmbox-20.04.3.tar.xz) = 50b2a8ba98cf24117ba66ddb9b51d1db575998b36ad1aa15fec0135446cc7561 +SIZE (KDE/release-service/20.04.3/kmbox-20.04.3.tar.xz) = 24692 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 541820) +++ head/net/kmime/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712784 -SHA256 (KDE/applications/20.04.2/kmime-20.04.2.tar.xz) = 5ac4c9fe779b2652c2afb07b5771fd3c498599dec2d5cbc66756106a05cca9c5 -SIZE (KDE/applications/20.04.2/kmime-20.04.2.tar.xz) = 148596 +TIMESTAMP = 1594147124 +SHA256 (KDE/release-service/20.04.3/kmime-20.04.3.tar.xz) = a416e16f61a2dd4274b1abc54af71ffe73b01c93137bc1fa462642bb947d150c +SIZE (KDE/release-service/20.04.3/kmime-20.04.3.tar.xz) = 148540 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 541820) +++ head/net/kontactinterface/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712784 -SHA256 (KDE/applications/20.04.2/kontactinterface-20.04.2.tar.xz) = 96429c896b9b084d96e9703bd5961a8288e1745744ee27cd31440d81edff08cc -SIZE (KDE/applications/20.04.2/kontactinterface-20.04.2.tar.xz) = 33056 +TIMESTAMP = 1594147126 +SHA256 (KDE/release-service/20.04.3/kontactinterface-20.04.3.tar.xz) = 9c0587df91b9de55218d7313c445c68d13b22aeb09dc142caf8d8036574e3b09 +SIZE (KDE/release-service/20.04.3/kontactinterface-20.04.3.tar.xz) = 33076 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 541820) +++ head/net/kpimtextedit/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712785 -SHA256 (KDE/applications/20.04.2/kpimtextedit-20.04.2.tar.xz) = 02e15815d4bd9320b097abac2da7a153bbc73b056bf136df05ed9d44edd927de -SIZE (KDE/applications/20.04.2/kpimtextedit-20.04.2.tar.xz) = 182096 +TIMESTAMP = 1594147128 +SHA256 (KDE/release-service/20.04.3/kpimtextedit-20.04.3.tar.xz) = f6cc5cf0ca2e598ba0c98590f16a8fabf87e1592ad62e6832c787cf2c3616cb8 +SIZE (KDE/release-service/20.04.3/kpimtextedit-20.04.3.tar.xz) = 183228 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 541820) +++ head/net/krdc/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712786 -SHA256 (KDE/applications/20.04.2/krdc-20.04.2.tar.xz) = a15fce663d7b7e9cd862d5ee75f05f2b2dddc86c02d4a6027e21542b7964f6b1 -SIZE (KDE/applications/20.04.2/krdc-20.04.2.tar.xz) = 1425020 +TIMESTAMP = 1594147129 +SHA256 (KDE/release-service/20.04.3/krdc-20.04.3.tar.xz) = 4e8f60b4abd05d45e59a773a63cc185529e9fbabb295524a59c835af547d4bc8 +SIZE (KDE/release-service/20.04.3/krdc-20.04.3.tar.xz) = 1424740 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 541820) +++ head/net/krfb/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712787 -SHA256 (KDE/applications/20.04.2/krfb-20.04.2.tar.xz) = 81fe260039c7c86a455e2f6e7389ce497070ea176706136739e7c3a23f325b44 -SIZE (KDE/applications/20.04.2/krfb-20.04.2.tar.xz) = 1276828 +TIMESTAMP = 1594147130 +SHA256 (KDE/release-service/20.04.3/krfb-20.04.3.tar.xz) = 44532435ef824ff09d877d6984dbdfdcc5fd941f9e2abed65829dba89afeee0d +SIZE (KDE/release-service/20.04.3/krfb-20.04.3.tar.xz) = 1276740 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 541820) +++ head/net/ksmtp/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712788 -SHA256 (KDE/applications/20.04.2/ksmtp-20.04.2.tar.xz) = b759236021688236257ecfef16d443030414332c3d1a8f133f482c7d57399162 -SIZE (KDE/applications/20.04.2/ksmtp-20.04.2.tar.xz) = 41556 +TIMESTAMP = 1594147131 +SHA256 (KDE/release-service/20.04.3/ksmtp-20.04.3.tar.xz) = 107d135e9337dfec6f16095c75dd0cf81bdc86cee6eeb6d212954a08a9c2e3ce +SIZE (KDE/release-service/20.04.3/ksmtp-20.04.3.tar.xz) = 41520 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 541820) +++ head/net/ktnef/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712789 -SHA256 (KDE/applications/20.04.2/ktnef-20.04.2.tar.xz) = 799a24e826069cd2ecbc752c75605df9ab2d71c9a504c6c8ea64df25631a0248 -SIZE (KDE/applications/20.04.2/ktnef-20.04.2.tar.xz) = 299820 +TIMESTAMP = 1594147132 +SHA256 (KDE/release-service/20.04.3/ktnef-20.04.3.tar.xz) = 31f5f15ab27112f99ab7b2575a4f90bf612b99a3816544e6919ad4c5a2dc7145 +SIZE (KDE/release-service/20.04.3/ktnef-20.04.3.tar.xz) = 299796 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 541820) +++ head/net/libgravatar/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712789 -SHA256 (KDE/applications/20.04.2/libgravatar-20.04.2.tar.xz) = 58c87e5a158604f0c37c31f328ebb0fd1e83995ab888ca55483ced0a0d42737d -SIZE (KDE/applications/20.04.2/libgravatar-20.04.2.tar.xz) = 31452 +TIMESTAMP = 1594147132 +SHA256 (KDE/release-service/20.04.3/libgravatar-20.04.3.tar.xz) = 0a5eadd5c8492eb17225e0ff2d221f69231e72ca9b8a78080301639662a18acf +SIZE (KDE/release-service/20.04.3/libgravatar-20.04.3.tar.xz) = 31640 Index: head/net/libgravatar/pkg-plist =================================================================== --- head/net/libgravatar/pkg-plist (revision 541820) +++ head/net/libgravatar/pkg-plist (revision 541821) @@ -1,55 +1,56 @@ share/qlogging-categories5/libgravatar.categories share/qlogging-categories5/libgravatar.renamecategories include/KF5/Gravatar/GravatarCache include/KF5/Gravatar/GravatarConfigWidget include/KF5/Gravatar/GravatarConfigureSettingsDialog include/KF5/Gravatar/GravatarConfigureSettingsWidget include/KF5/Gravatar/GravatarDownloadPixmapWidget include/KF5/Gravatar/GravatarResolvUrlJob include/KF5/gravatar/gravatar_export.h include/KF5/gravatar/gravatarcache.h include/KF5/gravatar/gravatarconfiguresettingsdialog.h include/KF5/gravatar/gravatarconfiguresettingswidget.h include/KF5/gravatar/gravatarconfigwidget.h include/KF5/gravatar/gravatardownloadpixmapwidget.h include/KF5/gravatar/gravatarresolvurljob.h include/KF5/gravatar/gravatarsettings.h include/KF5/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake lib/libKF5Gravatar.so lib/libKF5Gravatar.so.5 lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo share/locale/ia/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/lt/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo +share/locale/nn/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 541820) +++ head/net/libkgapi/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712790 -SHA256 (KDE/applications/20.04.2/libkgapi-20.04.2.tar.xz) = ecb87422fbf0ed711da9cf947fffca6dd09572a5cf01400bafd3f38e05141470 -SIZE (KDE/applications/20.04.2/libkgapi-20.04.2.tar.xz) = 239920 +TIMESTAMP = 1594147133 +SHA256 (KDE/release-service/20.04.3/libkgapi-20.04.3.tar.xz) = 9b689d8c4a1df0b792604cf5951b30d8343e984d890f4a3fb946a449723e520d +SIZE (KDE/release-service/20.04.3/libkgapi-20.04.3.tar.xz) = 239764 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 541820) +++ head/net/libksieve/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712791 -SHA256 (KDE/applications/20.04.2/libksieve-20.04.2.tar.xz) = bbfed5095af2eacf9b270699879547202be9e21a0f5ff8d3bf8ed082a49a1959 -SIZE (KDE/applications/20.04.2/libksieve-20.04.2.tar.xz) = 555456 +TIMESTAMP = 1594147134 +SHA256 (KDE/release-service/20.04.3/libksieve-20.04.3.tar.xz) = 8aacc0c41ac2b7bf48c8479c8fba581a325828b907053eba6b9b5ff4c63d0529 +SIZE (KDE/release-service/20.04.3/libksieve-20.04.3.tar.xz) = 555012 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 541820) +++ head/net/mailcommon/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712792 -SHA256 (KDE/applications/20.04.2/mailcommon-20.04.2.tar.xz) = 544c1a3efff3660bb6ea375a0509dd88d6e46cb6c3c6159592e2c3e6c96bc0d0 -SIZE (KDE/applications/20.04.2/mailcommon-20.04.2.tar.xz) = 707424 +TIMESTAMP = 1594147135 +SHA256 (KDE/release-service/20.04.3/mailcommon-20.04.3.tar.xz) = 80b6285c8152a64362f5f406b4a766b0937ff29acf87133b0326b6e7ce66809f +SIZE (KDE/release-service/20.04.3/mailcommon-20.04.3.tar.xz) = 707292 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 541820) +++ head/net/mailimporter/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712793 -SHA256 (KDE/applications/20.04.2/mailimporter-20.04.2.tar.xz) = 55452e6b1da0873a9163956cebf7291142770b36db57ec6323b2019e0bcc514f -SIZE (KDE/applications/20.04.2/mailimporter-20.04.2.tar.xz) = 540364 +TIMESTAMP = 1594147135 +SHA256 (KDE/release-service/20.04.3/mailimporter-20.04.3.tar.xz) = 13a95ee3d89d658222dcdc905311c72b1ba04e6b8aac863dee767a4d72d3d54e +SIZE (KDE/release-service/20.04.3/mailimporter-20.04.3.tar.xz) = 540412 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 541820) +++ head/net/messagelib/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712794 -SHA256 (KDE/applications/20.04.2/messagelib-20.04.2.tar.xz) = 8d3401f9d5fd65fe6dcff67459eb7aaea996d770a4889b2f4b2b542eeed3ce5e -SIZE (KDE/applications/20.04.2/messagelib-20.04.2.tar.xz) = 10516720 +TIMESTAMP = 1594147136 +SHA256 (KDE/release-service/20.04.3/messagelib-20.04.3.tar.xz) = aa2c254f50ed4664b67df5857bba063d1400fe280f3a58658cfa59d3155b2adf +SIZE (KDE/release-service/20.04.3/messagelib-20.04.3.tar.xz) = 10511452 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 541820) +++ head/net/pimcommon/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712795 -SHA256 (KDE/applications/20.04.2/pimcommon-20.04.2.tar.xz) = cc9aff8c38a9ea921645bab06409297fe2d930bfa9880dc12af626ce239bda3f -SIZE (KDE/applications/20.04.2/pimcommon-20.04.2.tar.xz) = 294416 +TIMESTAMP = 1594147137 +SHA256 (KDE/release-service/20.04.3/pimcommon-20.04.3.tar.xz) = a5d295f7174cafeb27bc1aed03a715525b132f9dca734a183dd705a2c7ffa40b +SIZE (KDE/release-service/20.04.3/pimcommon-20.04.3.tar.xz) = 294328 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 541820) +++ head/net/zeroconf-ioslave/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712795 -SHA256 (KDE/applications/20.04.2/zeroconf-ioslave-20.04.2.tar.xz) = aa065515d5a3469fb2458d71b7379d6058ca12170d52893c449635c9a4cac0ef -SIZE (KDE/applications/20.04.2/zeroconf-ioslave-20.04.2.tar.xz) = 42516 +TIMESTAMP = 1594147138 +SHA256 (KDE/release-service/20.04.3/zeroconf-ioslave-20.04.3.tar.xz) = 3b2ac8833499a53a78547ae34be4a29a6cb79d54601a8c638b225f1c2059d9f0 +SIZE (KDE/release-service/20.04.3/zeroconf-ioslave-20.04.3.tar.xz) = 42564 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 541820) +++ head/net-im/kaccounts-integration/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712735 -SHA256 (KDE/applications/20.04.2/kaccounts-integration-20.04.2.tar.xz) = d97e2e0fe7d6327e89bafe6fce290291c7a9bc4ce1ddf4606a4e29430d3241be -SIZE (KDE/applications/20.04.2/kaccounts-integration-20.04.2.tar.xz) = 65944 +TIMESTAMP = 1594147078 +SHA256 (KDE/release-service/20.04.3/kaccounts-integration-20.04.3.tar.xz) = 57661418d6fe58f9c3d308ba8804e5bc83312bba0967e13bf144b1a7dba9b36d +SIZE (KDE/release-service/20.04.3/kaccounts-integration-20.04.3.tar.xz) = 65632 Index: head/net-im/kaccounts-integration/pkg-plist =================================================================== --- head/net-im/kaccounts-integration/pkg-plist (revision 541820) +++ head/net-im/kaccounts-integration/pkg-plist (revision 541821) @@ -1,83 +1,83 @@ include/KAccounts/AccountServiceToggleJob include/KAccounts/AccountsModel include/KAccounts/ChangeAccountDisplayNameJob include/KAccounts/Core include/KAccounts/CreateAccountJob include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/ProvidersModel include/KAccounts/RemoveAccountJob include/KAccounts/ServicesModel include/KAccounts/accountservicetogglejob.h include/KAccounts/accountsmodel.h include/KAccounts/changeaccountdisplaynamejob.h include/KAccounts/core.h include/KAccounts/createaccountjob.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h include/KAccounts/providersmodel.h include/KAccounts/removeaccountjob.h include/KAccounts/servicesmodel.h lib/cmake/KAccounts/FindAccountsFileDir.cmake lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so -lib/libkaccounts.so.1 +lib/libkaccounts.so.2 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kcms/kcm_kaccounts.so %%QT_PLUGINDIR%%/kf5/kded/kded_accounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir share/kpackage/kcms/kcm_kaccounts/contents/ui/AccountDetails.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/Accounts.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/MessageBoxSheet.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RemoveAccountDialog.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RenameAccountDialog.qml share/locale/hu/LC_MESSAGES/kaccounts-integration.mo share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml share/kpackage/kcms/kcm_kaccounts/metadata.desktop share/kpackage/kcms/kcm_kaccounts/metadata.json share/kservices5/kcm_kaccounts.desktop share/locale/ar/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 541820) +++ head/net-im/kaccounts-providers/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712735 -SHA256 (KDE/applications/20.04.2/kaccounts-providers-20.04.2.tar.xz) = 55f424dba565ea71aa653e0361afe8c91cb562f53da21b367c2e975ea0287197 -SIZE (KDE/applications/20.04.2/kaccounts-providers-20.04.2.tar.xz) = 35884 +TIMESTAMP = 1594147078 +SHA256 (KDE/release-service/20.04.3/kaccounts-providers-20.04.3.tar.xz) = ffeeac1283c453a4bbd4249cbe314eb7f9800a9cbedce192fdb1f12f30670e3e +SIZE (KDE/release-service/20.04.3/kaccounts-providers-20.04.3.tar.xz) = 35820 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 541820) +++ head/net-im/kopete/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712737 -SHA256 (KDE/applications/20.04.2/kopete-20.04.2.tar.xz) = cfdf0381c789059515dd3390e4d9d86effe3dad485270d6da8a225e833a6753b -SIZE (KDE/applications/20.04.2/kopete-20.04.2.tar.xz) = 9372040 +TIMESTAMP = 1594147079 +SHA256 (KDE/release-service/20.04.3/kopete-20.04.3.tar.xz) = b37a120e3239ee4e53aedf5756c63f62a737c0774021ec27b120b054e57f886b +SIZE (KDE/release-service/20.04.3/kopete-20.04.3.tar.xz) = 9371772 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 541820) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712737 -SHA256 (KDE/applications/20.04.2/ktp-accounts-kcm-20.04.2.tar.xz) = 821e5094938fd83f5e3076192c139d48242230d9b4705233dc86fb58e56729fb -SIZE (KDE/applications/20.04.2/ktp-accounts-kcm-20.04.2.tar.xz) = 262132 +TIMESTAMP = 1594147080 +SHA256 (KDE/release-service/20.04.3/ktp-accounts-kcm-20.04.3.tar.xz) = d45588dbd1441ccb0576e7f76489217351bad5fd25d4636ae9da6f81654f5f4b +SIZE (KDE/release-service/20.04.3/ktp-accounts-kcm-20.04.3.tar.xz) = 261984 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 541820) +++ head/net-im/ktp-approver/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712738 -SHA256 (KDE/applications/20.04.2/ktp-approver-20.04.2.tar.xz) = fad2bc7ecb15db06872ee0da14e4ce597d5cfd4db8fffa401cc431816944a0d5 -SIZE (KDE/applications/20.04.2/ktp-approver-20.04.2.tar.xz) = 37280 +TIMESTAMP = 1594147081 +SHA256 (KDE/release-service/20.04.3/ktp-approver-20.04.3.tar.xz) = 9c91d44476151f39ef02e2eeede7dee7f24689643a07d51d44ca8d98577d24a2 +SIZE (KDE/release-service/20.04.3/ktp-approver-20.04.3.tar.xz) = 37256 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 541820) +++ head/net-im/ktp-auth-handler/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712739 -SHA256 (KDE/applications/20.04.2/ktp-auth-handler-20.04.2.tar.xz) = 558e89acd42454dba46e1666d119a829effc1beb5244353c40d3985c3c1575e2 -SIZE (KDE/applications/20.04.2/ktp-auth-handler-20.04.2.tar.xz) = 46312 +TIMESTAMP = 1594147081 +SHA256 (KDE/release-service/20.04.3/ktp-auth-handler-20.04.3.tar.xz) = 6c73960c44ff42e8c0b6be54b308fc992ab8177f90954ebd960ea6d610e14568 +SIZE (KDE/release-service/20.04.3/ktp-auth-handler-20.04.3.tar.xz) = 46332 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 541820) +++ head/net-im/ktp-call-ui/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712760 -SHA256 (KDE/applications/20.04.2/ktp-call-ui-20.04.2.tar.xz) = bda0d68caf50133b8a0960aefafbeb9027594a9ce4b207d0b3ca8a53155784dc -SIZE (KDE/applications/20.04.2/ktp-call-ui-20.04.2.tar.xz) = 97136 +TIMESTAMP = 1594147102 +SHA256 (KDE/release-service/20.04.3/ktp-call-ui-20.04.3.tar.xz) = b997c6252c35f7e295f2389ac76c5dc12227e8a6bbfd1b42d72b622d488bcf98 +SIZE (KDE/release-service/20.04.3/ktp-call-ui-20.04.3.tar.xz) = 97164 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 541820) +++ head/net-im/ktp-common-internals/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712761 -SHA256 (KDE/applications/20.04.2/ktp-common-internals-20.04.2.tar.xz) = 4baae5a9a560af63d2ac5fa53b7911ac371d284a08c4e060f1610a5d58fae81d -SIZE (KDE/applications/20.04.2/ktp-common-internals-20.04.2.tar.xz) = 449420 +TIMESTAMP = 1594147103 +SHA256 (KDE/release-service/20.04.3/ktp-common-internals-20.04.3.tar.xz) = 0e7a1c61869d297831615c719e5c79f2b00a6572479d2c2eaca642de6d376efd +SIZE (KDE/release-service/20.04.3/ktp-common-internals-20.04.3.tar.xz) = 449392 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 541820) +++ head/net-im/ktp-contact-list/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712761 -SHA256 (KDE/applications/20.04.2/ktp-contact-list-20.04.2.tar.xz) = 7c17540576fee164b3a7d8a39753986c43eba9daad1049025028195104a68c92 -SIZE (KDE/applications/20.04.2/ktp-contact-list-20.04.2.tar.xz) = 148760 +TIMESTAMP = 1594147104 +SHA256 (KDE/release-service/20.04.3/ktp-contact-list-20.04.3.tar.xz) = c909e21fb168c14c61d1d617b6854ff505eaf4693479d8d0bba746fde0ee11af +SIZE (KDE/release-service/20.04.3/ktp-contact-list-20.04.3.tar.xz) = 148888 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 541820) +++ head/net-im/ktp-contact-runner/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712762 -SHA256 (KDE/applications/20.04.2/ktp-contact-runner-20.04.2.tar.xz) = e84bdb98cd717357a51aba12280558026bcfed61dc22f75bb1c695d4e67f39bc -SIZE (KDE/applications/20.04.2/ktp-contact-runner-20.04.2.tar.xz) = 42936 +TIMESTAMP = 1594147105 +SHA256 (KDE/release-service/20.04.3/ktp-contact-runner-20.04.3.tar.xz) = cb3313ca916a7e3fff78529ccc4a499763766957d22f65dee9663cd950c2b4a6 +SIZE (KDE/release-service/20.04.3/ktp-contact-runner-20.04.3.tar.xz) = 42936 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 541820) +++ head/net-im/ktp-desktop-applets/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712763 -SHA256 (KDE/applications/20.04.2/ktp-desktop-applets-20.04.2.tar.xz) = c5ff082457216fed095a54c12d4ab28e54e1fd3b017638ec218be94ffe024072 -SIZE (KDE/applications/20.04.2/ktp-desktop-applets-20.04.2.tar.xz) = 43704 +TIMESTAMP = 1594147105 +SHA256 (KDE/release-service/20.04.3/ktp-desktop-applets-20.04.3.tar.xz) = 40f1125d4d91e2586d06d45b59d12ac19ee93aaae8c3d4df75db196f7e91e875 +SIZE (KDE/release-service/20.04.3/ktp-desktop-applets-20.04.3.tar.xz) = 43652 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 541820) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712764 -SHA256 (KDE/applications/20.04.2/ktp-filetransfer-handler-20.04.2.tar.xz) = b23f62a331cbaa8de69cbafb464cbc2331eb373317b9c464f1810475e5477d69 -SIZE (KDE/applications/20.04.2/ktp-filetransfer-handler-20.04.2.tar.xz) = 46096 +TIMESTAMP = 1594147106 +SHA256 (KDE/release-service/20.04.3/ktp-filetransfer-handler-20.04.3.tar.xz) = 74df7140bac0b87e3ff39e8ab692bb4c65a10612f328c8d60a84433ae865de52 +SIZE (KDE/release-service/20.04.3/ktp-filetransfer-handler-20.04.3.tar.xz) = 46140 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 541820) +++ head/net-im/ktp-kded-module/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712765 -SHA256 (KDE/applications/20.04.2/ktp-kded-module-20.04.2.tar.xz) = bb96d4fe57c12ba752c529916aed5cf15dcaebe77275f0ed061af654f56d80d7 -SIZE (KDE/applications/20.04.2/ktp-kded-module-20.04.2.tar.xz) = 97300 +TIMESTAMP = 1594147107 +SHA256 (KDE/release-service/20.04.3/ktp-kded-module-20.04.3.tar.xz) = 972a4a5d7108351a07be670654b4e78dfe9fb7657336c563040e1e831134aad2 +SIZE (KDE/release-service/20.04.3/ktp-kded-module-20.04.3.tar.xz) = 97800 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 541820) +++ head/net-im/ktp-send-file/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712766 -SHA256 (KDE/applications/20.04.2/ktp-send-file-20.04.2.tar.xz) = ffe3cb454c50a73ccb4b65f8ee0ae79859aedf5378983848e3d1af5380ab5ffb -SIZE (KDE/applications/20.04.2/ktp-send-file-20.04.2.tar.xz) = 27852 +TIMESTAMP = 1594147108 +SHA256 (KDE/release-service/20.04.3/ktp-send-file-20.04.3.tar.xz) = fa67edd7ec516ed727d5df0d30ccf6b990cee40f8062a9966a8643d6f26c8344 +SIZE (KDE/release-service/20.04.3/ktp-send-file-20.04.3.tar.xz) = 27884 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 541820) +++ head/net-im/ktp-text-ui/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712766 -SHA256 (KDE/applications/20.04.2/ktp-text-ui-20.04.2.tar.xz) = 013330478b8fe9d8fde81cc252cc6d79a9e2a3baee66fedc78449f9b9331416c -SIZE (KDE/applications/20.04.2/ktp-text-ui-20.04.2.tar.xz) = 469768 +TIMESTAMP = 1594147108 +SHA256 (KDE/release-service/20.04.3/ktp-text-ui-20.04.3.tar.xz) = be6253246134aa6513b0ff36d25a833d469e6850da1f5c8c05666a555bbfd9b2 +SIZE (KDE/release-service/20.04.3/ktp-text-ui-20.04.3.tar.xz) = 469772 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 541820) +++ head/print/print-manager/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712796 -SHA256 (KDE/applications/20.04.2/print-manager-20.04.2.tar.xz) = dd1df3fbd48773418d6032fba687f1f7c07b241696428c9424238c9e86e50973 -SIZE (KDE/applications/20.04.2/print-manager-20.04.2.tar.xz) = 255696 +TIMESTAMP = 1594147138 +SHA256 (KDE/release-service/20.04.3/print-manager-20.04.3.tar.xz) = 9d877925cafdf7dfa0dcce5694f849b13ca8bb7c4552a800eebd26a3fc42d376 +SIZE (KDE/release-service/20.04.3/print-manager-20.04.3.tar.xz) = 255532 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 541820) +++ head/science/kalzium/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712797 -SHA256 (KDE/applications/20.04.2/kalzium-20.04.2.tar.xz) = c0d276f2f37f4c8e83d26b4e6e3dd8dfe0e420ecdeed055b4fb62bdb2433b4b4 -SIZE (KDE/applications/20.04.2/kalzium-20.04.2.tar.xz) = 24597040 +TIMESTAMP = 1594147139 +SHA256 (KDE/release-service/20.04.3/kalzium-20.04.3.tar.xz) = b884fc8c13c3618a73e3ecfd265660e7045245059a951aff32c12ee5981902ca +SIZE (KDE/release-service/20.04.3/kalzium-20.04.3.tar.xz) = 24550796 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 541820) +++ head/science/step/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591847927 -SHA256 (KDE/applications/20.04.2/step-20.04.2.tar.xz) = 47fff69c57ff78db636bdad0226f02fec6496a01386af9c5a4091f274f339880 -SIZE (KDE/applications/20.04.2/step-20.04.2.tar.xz) = 927196 +TIMESTAMP = 1594147140 +SHA256 (KDE/release-service/20.04.3/step-20.04.3.tar.xz) = 89d7e29b6e5f888886022701cbfd628c322daa3da43dda4c3fd90d1a137aa29d +SIZE (KDE/release-service/20.04.3/step-20.04.3.tar.xz) = 929364 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 541820) +++ head/security/kgpg/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712799 -SHA256 (KDE/applications/20.04.2/kgpg-20.04.2.tar.xz) = bff77a7c456037cc6e2673caa2e21102e4bdfe120b088116874181c6ee8f9770 -SIZE (KDE/applications/20.04.2/kgpg-20.04.2.tar.xz) = 2791288 +TIMESTAMP = 1594147141 +SHA256 (KDE/release-service/20.04.3/kgpg-20.04.3.tar.xz) = bcd3211ab8112f070215e8e6451021859fefc57b813bdad1b421a1f129e17cbb +SIZE (KDE/release-service/20.04.3/kgpg-20.04.3.tar.xz) = 2790416 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 541820) +++ head/security/kleopatra/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712800 -SHA256 (KDE/applications/20.04.2/kleopatra-20.04.2.tar.xz) = b5adbae9de6e40570b5dc0d4a9a74ce10f1fac6dea25cc5287c62fbae5fe2cd8 -SIZE (KDE/applications/20.04.2/kleopatra-20.04.2.tar.xz) = 1935748 +TIMESTAMP = 1594147142 +SHA256 (KDE/release-service/20.04.3/kleopatra-20.04.3.tar.xz) = 59c6eb6b626b502f6b194ac4bbde8ed95e613d6b6fd54818c0206dd84575a34d +SIZE (KDE/release-service/20.04.3/kleopatra-20.04.3.tar.xz) = 1935784 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 541820) +++ head/security/kpkpass/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712801 -SHA256 (KDE/applications/20.04.2/kpkpass-20.04.2.tar.xz) = 128d6ff4481d22373f15eccd227efcec6f3198487bf63204e02a2c26c9bdeefe -SIZE (KDE/applications/20.04.2/kpkpass-20.04.2.tar.xz) = 23340 +TIMESTAMP = 1594147143 +SHA256 (KDE/release-service/20.04.3/kpkpass-20.04.3.tar.xz) = 1f8b9bd587c278773fb016bc9fb774b03f82bcdf3c95fdca8bfc070f9a3ff322 +SIZE (KDE/release-service/20.04.3/kpkpass-20.04.3.tar.xz) = 23356 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 541820) +++ head/security/kwalletmanager/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712801 -SHA256 (KDE/applications/20.04.2/kwalletmanager-20.04.2.tar.xz) = 0f4d29c5b8d2e8fe05506eecf36761fdb36546e385d99bb2fbc596bc7bee8295 -SIZE (KDE/applications/20.04.2/kwalletmanager-20.04.2.tar.xz) = 789352 +TIMESTAMP = 1594147143 +SHA256 (KDE/release-service/20.04.3/kwalletmanager-20.04.3.tar.xz) = 3821d17f5238bd51b9d19ef5974e063aa6426f35afcd0cffa89af109c770151e +SIZE (KDE/release-service/20.04.3/kwalletmanager-20.04.3.tar.xz) = 769080 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 541820) +++ head/security/libkleo/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712802 -SHA256 (KDE/applications/20.04.2/libkleo-20.04.2.tar.xz) = 0b343fc6bae604e596ff36d47d28aac7c85a72c4461cd5c80682eae27d109eef -SIZE (KDE/applications/20.04.2/libkleo-20.04.2.tar.xz) = 351772 +TIMESTAMP = 1594147144 +SHA256 (KDE/release-service/20.04.3/libkleo-20.04.3.tar.xz) = ef2a37a1c8793e4c89dcf49bc330044a617b4b04472679b179992b188e412c50 +SIZE (KDE/release-service/20.04.3/libkleo-20.04.3.tar.xz) = 351096 Index: head/sysutils/baloo-widgets/Makefile =================================================================== --- head/sysutils/baloo-widgets/Makefile (revision 541820) +++ head/sysutils/baloo-widgets/Makefile (revision 541821) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= baloo-widgets DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= baloo completion config coreaddons ecm emoticons filemetadata \ i18n init itemmodels jobwidgets kdelibs4support kio service \ widgetsaddons USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS # Override shared library version -KDE_APPLICATIONS_SHLIB_VER=20.4.2 +KDE_APPLICATIONS_SHLIB_VER=20.4.3 .include Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 541820) +++ head/sysutils/baloo-widgets/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712803 -SHA256 (KDE/applications/20.04.2/baloo-widgets-20.04.2.tar.xz) = da8cbd3568bda1b93ecad5fb2e13ff5be244765f2a580d9055aeb09c103fd552 -SIZE (KDE/applications/20.04.2/baloo-widgets-20.04.2.tar.xz) = 261536 +TIMESTAMP = 1594147145 +SHA256 (KDE/release-service/20.04.3/baloo-widgets-20.04.3.tar.xz) = 29394f9d47407074a5ec0f85ceade5dcc8c03f0d9a83c1e339310f19f7711ae3 +SIZE (KDE/release-service/20.04.3/baloo-widgets-20.04.3.tar.xz) = 261440 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 541820) +++ head/sysutils/filelight/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712804 -SHA256 (KDE/applications/20.04.2/filelight-20.04.2.tar.xz) = f74cfafdf2ddaf01e549de3b66fb9c31ee03c2e05e3237fe51119956dc217049 -SIZE (KDE/applications/20.04.2/filelight-20.04.2.tar.xz) = 661752 +TIMESTAMP = 1594147146 +SHA256 (KDE/release-service/20.04.3/filelight-20.04.3.tar.xz) = d0939d0a04424978c06b675ac784c6a1ecbccbb67a31f5af661c6716bf38f0a4 +SIZE (KDE/release-service/20.04.3/filelight-20.04.3.tar.xz) = 661668 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 541820) +++ head/sysutils/k3b/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712805 -SHA256 (KDE/applications/20.04.2/k3b-20.04.2.tar.xz) = 782ce2410a220ab96ffd666eee836c59e9f68c5e2fd0a45bd22e9b0f0f4a9597 -SIZE (KDE/applications/20.04.2/k3b-20.04.2.tar.xz) = 10512196 +TIMESTAMP = 1594147146 +SHA256 (KDE/release-service/20.04.3/k3b-20.04.3.tar.xz) = 562dc91be0a992ef0f139310bfd941202e4ae273e11b754d02a8cf6f85f20420 +SIZE (KDE/release-service/20.04.3/k3b-20.04.3.tar.xz) = 10509884 Index: head/sysutils/k3b/pkg-plist =================================================================== --- head/sysutils/k3b/pkg-plist (revision 541820) +++ head/sysutils/k3b/pkg-plist (revision 541821) @@ -1,576 +1,542 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 lib/libexec/k3bhelper %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo -share/locale/ar/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo -share/locale/ca/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo -share/locale/ca@valencia/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo -share/locale/cs/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo -share/locale/da/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo -share/locale/de/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo -share/locale/el/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo -share/locale/en_GB/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo -share/locale/es/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo -share/locale/et/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo -share/locale/eu/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo -share/locale/fi/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo -share/locale/fr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo -share/locale/gl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo -share/locale/ia/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo -share/locale/id/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo -share/locale/it/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo -share/locale/ja/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo -share/locale/ko/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo -share/locale/lt/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo -share/locale/nl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo -share/locale/nn/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo -share/locale/pl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo -share/locale/pt/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo -share/locale/pt_BR/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo -share/locale/ru/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo -share/locale/sk/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo -share/locale/sl/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo -share/locale/sr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo -share/locale/sv/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo -share/locale/tr/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo -share/locale/uk/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo -share/locale/zh_CN/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo -share/locale/zh_TW/LC_MESSAGES/x-k3b_xml_mimetypes.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 541820) +++ head/sysutils/kbackup/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712806 -SHA256 (KDE/applications/20.04.2/kbackup-20.04.2.tar.xz) = 747a40abe5a66a3324d9ee249a79a29f1a74c40804bae2330cd6df80c90da56b -SIZE (KDE/applications/20.04.2/kbackup-20.04.2.tar.xz) = 362176 +TIMESTAMP = 1594147147 +SHA256 (KDE/release-service/20.04.3/kbackup-20.04.3.tar.xz) = 0360f5b5d512a48975e09e5c1d2f035b7c2e1ead00b9b9f76059b76eb4499f92 +SIZE (KDE/release-service/20.04.3/kbackup-20.04.3.tar.xz) = 360740 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 541820) +++ head/sysutils/kbackup/pkg-plist (revision 541821) @@ -1,70 +1,41 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo -share/locale/ca/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo -share/locale/ca@valencia/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/cs/LC_MESSAGES/kbackup.mo -share/locale/cs/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/da/LC_MESSAGES/kbackup.mo -share/locale/da/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/de/LC_MESSAGES/kbackup.mo -share/locale/de/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/el/LC_MESSAGES/kbackup.mo -share/locale/el/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo -share/locale/en_GB/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/es/LC_MESSAGES/kbackup.mo -share/locale/es/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/et/LC_MESSAGES/kbackup.mo -share/locale/et/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/eu/LC_MESSAGES/kbackup.mo -share/locale/eu/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/fi/LC_MESSAGES/kbackup.mo -share/locale/fi/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/fr/LC_MESSAGES/kbackup.mo -share/locale/fr/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/gl/LC_MESSAGES/kbackup.mo -share/locale/gl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ia/LC_MESSAGES/kbackup.mo -share/locale/ia/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/it/LC_MESSAGES/kbackup.mo -share/locale/it/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ja/LC_MESSAGES/kbackup.mo -share/locale/ja/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ko/LC_MESSAGES/kbackup.mo -share/locale/ko/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/lt/LC_MESSAGES/kbackup.mo -share/locale/lt/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/nl/LC_MESSAGES/kbackup.mo -share/locale/nl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/nn/LC_MESSAGES/kbackup.mo -share/locale/nn/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pl/LC_MESSAGES/kbackup.mo -share/locale/pl/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pt/LC_MESSAGES/kbackup.mo -share/locale/pt/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo -share/locale/pt_BR/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/ru/LC_MESSAGES/kbackup.mo -share/locale/ru/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/sk/LC_MESSAGES/kbackup.mo -share/locale/sk/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/sv/LC_MESSAGES/kbackup.mo -share/locale/sv/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/uk/LC_MESSAGES/kbackup.mo -share/locale/uk/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo -share/locale/zh_CN/LC_MESSAGES/kbackup_xml_mimetypes.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo -share/locale/zh_TW/LC_MESSAGES/kbackup_xml_mimetypes.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 541820) +++ head/sysutils/kcron/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712806 -SHA256 (KDE/applications/20.04.2/kcron-20.04.2.tar.xz) = 6a171c08a1679229cb5757460612af8a3368252b13ab0a0f5bb8ebebe3ee2b8f -SIZE (KDE/applications/20.04.2/kcron-20.04.2.tar.xz) = 892188 +TIMESTAMP = 1594147148 +SHA256 (KDE/release-service/20.04.3/kcron-20.04.3.tar.xz) = b1d7d36e5b9efe4fd5c5fedf0b9e267fd2aaf6423e6a18bb64112a0c8257e4fa +SIZE (KDE/release-service/20.04.3/kcron-20.04.3.tar.xz) = 893920 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 541820) +++ head/sysutils/kdebugsettings/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712808 -SHA256 (KDE/applications/20.04.2/kdebugsettings-20.04.2.tar.xz) = c538fe7dc42de743b9a93065c3ff714a0aa8ea5a5e9771968ec2d94150091dc8 -SIZE (KDE/applications/20.04.2/kdebugsettings-20.04.2.tar.xz) = 65464 +TIMESTAMP = 1594147149 +SHA256 (KDE/release-service/20.04.3/kdebugsettings-20.04.3.tar.xz) = 5f42891c0990216780fbe005521e423d922007c7ddeac97a05c3c99b6fe30344 +SIZE (KDE/release-service/20.04.3/kdebugsettings-20.04.3.tar.xz) = 65472 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 541820) +++ head/sysutils/kdf/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712808 -SHA256 (KDE/applications/20.04.2/kdf-20.04.2.tar.xz) = 906e72ecc4ed186c9461fdcde5bbd654547907572265875aa58e1bdcc3df0643 -SIZE (KDE/applications/20.04.2/kdf-20.04.2.tar.xz) = 462444 +TIMESTAMP = 1594147149 +SHA256 (KDE/release-service/20.04.3/kdf-20.04.3.tar.xz) = f52e34c36cd924ae6f8fa1291d548abbf5e0bcf0c82d69a583f01dfe128332a8 +SIZE (KDE/release-service/20.04.3/kdf-20.04.3.tar.xz) = 462264 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 541820) +++ head/sysutils/kdialog/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712809 -SHA256 (KDE/applications/20.04.2/kdialog-20.04.2.tar.xz) = 7771d597ad67cef6f0d94fbdc195e3260ed030ccbf5f2d7a2044645856e83201 -SIZE (KDE/applications/20.04.2/kdialog-20.04.2.tar.xz) = 103988 +TIMESTAMP = 1594147150 +SHA256 (KDE/release-service/20.04.3/kdialog-20.04.3.tar.xz) = 75b8214980f5043d23b0226827f049815147e1206ffd64c1fe9e091e63c27a62 +SIZE (KDE/release-service/20.04.3/kdialog-20.04.3.tar.xz) = 103796 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 541820) +++ head/sysutils/kfloppy/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712810 -SHA256 (KDE/applications/20.04.2/kfloppy-20.04.2.tar.xz) = b4488a2f35184a98cdab69467c2678b53775248ff5ebae92ccee17f313d13626 -SIZE (KDE/applications/20.04.2/kfloppy-20.04.2.tar.xz) = 199064 +TIMESTAMP = 1594147151 +SHA256 (KDE/release-service/20.04.3/kfloppy-20.04.3.tar.xz) = 4e0d392471eddd23847129b5538846edd1a834f02119d312aed3698e6bfd9e1c +SIZE (KDE/release-service/20.04.3/kfloppy-20.04.3.tar.xz) = 198988 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 541820) +++ head/sysutils/khelpcenter/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712811 -SHA256 (KDE/applications/20.04.2/khelpcenter-20.04.2.tar.xz) = 2ae182f831bf637bdd886b10e3ada0fb5c6f53d9a2cc2551fca03a1004e69723 -SIZE (KDE/applications/20.04.2/khelpcenter-20.04.2.tar.xz) = 3847336 +TIMESTAMP = 1594147151 +SHA256 (KDE/release-service/20.04.3/khelpcenter-20.04.3.tar.xz) = 3930c321388f27925a63add5f11fe65eb34b7301fb22d78f16f5f3de8467a9ed +SIZE (KDE/release-service/20.04.3/khelpcenter-20.04.3.tar.xz) = 3845608 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 541820) +++ head/sysutils/ksystemlog/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712812 -SHA256 (KDE/applications/20.04.2/ksystemlog-20.04.2.tar.xz) = 097796719fa8b503cffb0a036e2f8d4152acaf3c8ad8b4ae721b528a2fa6dceb -SIZE (KDE/applications/20.04.2/ksystemlog-20.04.2.tar.xz) = 1929584 +TIMESTAMP = 1594147152 +SHA256 (KDE/release-service/20.04.3/ksystemlog-20.04.3.tar.xz) = 03a6f81d1b4aa8557f7da6777ef909a02fbd811b3a39df81312dc0a70bbb8f77 +SIZE (KDE/release-service/20.04.3/ksystemlog-20.04.3.tar.xz) = 1931340 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 541820) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712812 -SHA256 (KDE/applications/20.04.2/signon-kwallet-extension-20.04.2.tar.xz) = 36187382e0fa6179b030f47ff6db3b764ddce76f3c5929180ec26f91e8ec6fec -SIZE (KDE/applications/20.04.2/signon-kwallet-extension-20.04.2.tar.xz) = 10696 +TIMESTAMP = 1594147153 +SHA256 (KDE/release-service/20.04.3/signon-kwallet-extension-20.04.3.tar.xz) = a391ceff9c86f2e3d8a74a26ffb4143d0adffc8669a51a019d39f16a8e207c1c +SIZE (KDE/release-service/20.04.3/signon-kwallet-extension-20.04.3.tar.xz) = 10700 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 541820) +++ head/sysutils/sweeper/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712813 -SHA256 (KDE/applications/20.04.2/sweeper-20.04.2.tar.xz) = 7b012ecc88193529d25af62eba0500215bf04a74ca67374703190c0adcb8b3de -SIZE (KDE/applications/20.04.2/sweeper-20.04.2.tar.xz) = 368588 +TIMESTAMP = 1594147154 +SHA256 (KDE/release-service/20.04.3/sweeper-20.04.3.tar.xz) = 16b247b9e3f3d3497f31f9dcb91ff06725a07f0f56a934fdf1ecf1af1ab1b426 +SIZE (KDE/release-service/20.04.3/sweeper-20.04.3.tar.xz) = 368556 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 541820) +++ head/textproc/kompare/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712814 -SHA256 (KDE/applications/20.04.2/kompare-20.04.2.tar.xz) = 0b7f4c5d58e2ca22ecbdcc0a71c0e1f1e7eac415eabe513ea073f1f84790a279 -SIZE (KDE/applications/20.04.2/kompare-20.04.2.tar.xz) = 802300 +TIMESTAMP = 1594147155 +SHA256 (KDE/release-service/20.04.3/kompare-20.04.3.tar.xz) = 6c49547c3adbe96c184bae6eda47963ce42ede2808e5588ec3f8ea924853a941 +SIZE (KDE/release-service/20.04.3/kompare-20.04.3.tar.xz) = 802396 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 541820) +++ head/textproc/libkomparediff2/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712815 -SHA256 (KDE/applications/20.04.2/libkomparediff2-20.04.2.tar.xz) = 35d6c0b5bccfedb4a8d407c4db30fa279e109341a42852b3cccd47ec377c842f -SIZE (KDE/applications/20.04.2/libkomparediff2-20.04.2.tar.xz) = 170676 +TIMESTAMP = 1594147156 +SHA256 (KDE/release-service/20.04.3/libkomparediff2-20.04.3.tar.xz) = e27a5fd3dd80a9c7c052ec3c824acc529073464788d1c6950d4d2c407b74c0b0 +SIZE (KDE/release-service/20.04.3/libkomparediff2-20.04.3.tar.xz) = 170664 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 541820) +++ head/x11/konsole/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712820 -SHA256 (KDE/applications/20.04.2/konsole-20.04.2.tar.xz) = 12c40a313b8025326a9da23c426152c0e7b5514d4d86253990ce50e434a1b016 -SIZE (KDE/applications/20.04.2/konsole-20.04.2.tar.xz) = 1165856 +TIMESTAMP = 1594147160 +SHA256 (KDE/release-service/20.04.3/konsole-20.04.3.tar.xz) = 7874b6117d31eecd9fc475536c9bfc73c78d66d57b128cffb0bb931881564f15 +SIZE (KDE/release-service/20.04.3/konsole-20.04.3.tar.xz) = 1174128 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 541820) +++ head/x11/yakuake/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591722709 -SHA256 (KDE/applications/20.04.2/yakuake-20.04.2.tar.xz) = 10034c4ceb927783d4480a7a3a9caf467e348513a3b361846102c067c35071a8 -SIZE (KDE/applications/20.04.2/yakuake-20.04.2.tar.xz) = 374448 +TIMESTAMP = 1594147161 +SHA256 (KDE/release-service/20.04.3/yakuake-20.04.3.tar.xz) = 62466165becc848d05461f7b12b67615a517d2919b6fccd8441dfeed9a0a04fa +SIZE (KDE/release-service/20.04.3/yakuake-20.04.3.tar.xz) = 374280 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 541820) +++ head/x11-clocks/kteatime/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712816 -SHA256 (KDE/applications/20.04.2/kteatime-20.04.2.tar.xz) = 6960881156ea5394f5fd33c085fb92c3ec55ed0a0c58b23b20737cf583d26a18 -SIZE (KDE/applications/20.04.2/kteatime-20.04.2.tar.xz) = 287152 +TIMESTAMP = 1594147157 +SHA256 (KDE/release-service/20.04.3/kteatime-20.04.3.tar.xz) = 2ddc0df953a66376e5b0c11544a6a2ec9f173e4481a44a290aada20402c7d686 +SIZE (KDE/release-service/20.04.3/kteatime-20.04.3.tar.xz) = 286976 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 541820) +++ head/x11-clocks/ktimer/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712816 -SHA256 (KDE/applications/20.04.2/ktimer-20.04.2.tar.xz) = 310582dc9500b4ebe7acfcaac7e151413b36cf86150714cc7ff2aff7ade4f4b4 -SIZE (KDE/applications/20.04.2/ktimer-20.04.2.tar.xz) = 377852 +TIMESTAMP = 1594147157 +SHA256 (KDE/release-service/20.04.3/ktimer-20.04.3.tar.xz) = e9881d68ed4fbbff5900d615f81145cd73e70a08092a83b87d71705ee5904395 +SIZE (KDE/release-service/20.04.3/ktimer-20.04.3.tar.xz) = 377888 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 541820) +++ head/x11-fm/dolphin/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591847925 -SHA256 (KDE/applications/20.04.2/dolphin-20.04.2.tar.xz) = 37e4c1510227112365418cacccabc6d535fb0880e182a2341bfe00d585d14fb2 -SIZE (KDE/applications/20.04.2/dolphin-20.04.2.tar.xz) = 4799692 +TIMESTAMP = 1594147158 +SHA256 (KDE/release-service/20.04.3/dolphin-20.04.3.tar.xz) = 5e493e898e02005780b59474f506904742625b50e4669c113906d4f30daa863e +SIZE (KDE/release-service/20.04.3/dolphin-20.04.3.tar.xz) = 4798732 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 541820) +++ head/x11-fm/konqueror/distinfo (revision 541821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591712818 -SHA256 (KDE/applications/20.04.2/konqueror-20.04.2.tar.xz) = eaa477d900852df599c2bf7fd850363e9d8021c81f735a7e73c185d52c6eaba4 -SIZE (KDE/applications/20.04.2/konqueror-20.04.2.tar.xz) = 7376012 +TIMESTAMP = 1594147159 +SHA256 (KDE/release-service/20.04.3/konqueror-20.04.3.tar.xz) = d2f81f697e88eb4fe962aaa43942ef35e7a03df10f811a46ae6805a27e637e35 +SIZE (KDE/release-service/20.04.3/konqueror-20.04.3.tar.xz) = 7374364