Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 522540) +++ head/Mk/Uses/kde.mk (revision 522541) @@ -1,856 +1,856 @@ # $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.17.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.65.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.12.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.13.0 +KDE_APPLICATIONS_VERSION?= 19.12.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.13.1 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} . 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 . 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 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-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}/lib/kconf_update_bin/gtkbreeze5.5 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= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so 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_LIB= libkdeinit5_kmenuedit.so 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= libKPimKDAV.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 522540) +++ head/accessibility/kmag/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623432 -SHA256 (KDE/applications/19.12.0/kmag-19.12.0.tar.xz) = 2525151461f2f02a40f105ff65d35eb4cb117a3117fba0accd93a5ae046f08bb -SIZE (KDE/applications/19.12.0/kmag-19.12.0.tar.xz) = 674396 +TIMESTAMP = 1578373823 +SHA256 (KDE/applications/19.12.1/kmag-19.12.1.tar.xz) = 59e5a59407894976574acf78e7248fd0609ce6ee222c60388a99e5576ac2061f +SIZE (KDE/applications/19.12.1/kmag-19.12.1.tar.xz) = 673956 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 522540) +++ head/accessibility/kmousetool/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623431 -SHA256 (KDE/applications/19.12.0/kmousetool-19.12.0.tar.xz) = 3f4cba2a20b6002b0e88c235ad4660532facf6cfc881829ab9897385c50b8126 -SIZE (KDE/applications/19.12.0/kmousetool-19.12.0.tar.xz) = 114216 +TIMESTAMP = 1578373823 +SHA256 (KDE/applications/19.12.1/kmousetool-19.12.1.tar.xz) = d056fd05ffb900f65670e3a77dc8a0c08fbc02d86f4fba1b34dd8f6b5f60c3e5 +SIZE (KDE/applications/19.12.1/kmousetool-19.12.1.tar.xz) = 113820 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 522540) +++ head/accessibility/kmouth/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623433 -SHA256 (KDE/applications/19.12.0/kmouth-19.12.0.tar.xz) = 697946b0a5f3c5beb60b44c9b091b200a6f4f946707f57b9e0be6784b6b5c3f3 -SIZE (KDE/applications/19.12.0/kmouth-19.12.0.tar.xz) = 1964876 +TIMESTAMP = 1578373824 +SHA256 (KDE/applications/19.12.1/kmouth-19.12.1.tar.xz) = da46e472a05920225c3ae0caba21279dc817b7c8e77ae981b1ad6cf2083a49ad +SIZE (KDE/applications/19.12.1/kmouth-19.12.1.tar.xz) = 1966216 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 522540) +++ head/archivers/ark/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623413 -SHA256 (KDE/applications/19.12.0/ark-19.12.0.tar.xz) = 0f0c8a306f392573bd912a21c298734af4b73a7faec0b5fe7548d5a3ae1b4b54 -SIZE (KDE/applications/19.12.0/ark-19.12.0.tar.xz) = 2588820 +TIMESTAMP = 1578373825 +SHA256 (KDE/applications/19.12.1/ark-19.12.1.tar.xz) = 37b9dfc0b6005ebd0f2757ecce940568839e8a5d73b3bcbc1931ce4eccbb9d0c +SIZE (KDE/applications/19.12.1/ark-19.12.1.tar.xz) = 2586724 Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 522540) +++ head/astro/libkgeomap/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623430 -SHA256 (KDE/applications/19.12.0/libkgeomap-19.12.0.tar.xz) = 28567e98d72ab20f8d07c8e46acd954566f318f9287d1f6740fc01adfe324286 -SIZE (KDE/applications/19.12.0/libkgeomap-19.12.0.tar.xz) = 151052 +TIMESTAMP = 1578373825 +SHA256 (KDE/applications/19.12.1/libkgeomap-19.12.1.tar.xz) = 68c9c5b91e77a4b4a07ca646d58e8e890975825f8f851d850c95dacb7a1d90d2 +SIZE (KDE/applications/19.12.1/libkgeomap-19.12.1.tar.xz) = 150780 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 522540) +++ head/astro/marble/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623429 -SHA256 (KDE/applications/19.12.0/marble-19.12.0.tar.xz) = b3703714ceb49cf0b7b7db75c021509d0bb65748d2391bc8104089d801e85c54 -SIZE (KDE/applications/19.12.0/marble-19.12.0.tar.xz) = 52194536 +TIMESTAMP = 1578508938 +SHA256 (KDE/applications/19.12.1/marble-19.12.1.tar.xz) = 46ec0dcab4773ccfb843ae52881ae833b038a00b7690977a2e721099264dc8dd +SIZE (KDE/applications/19.12.1/marble-19.12.1.tar.xz) = 52200188 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 522540) +++ head/audio/audiocd-kio/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623340 -SHA256 (KDE/applications/19.12.0/audiocd-kio-19.12.0.tar.xz) = 65f0fdd0e5ffc359cd70236a0c2b432a1c728617ec513898052e06f8112d39ff -SIZE (KDE/applications/19.12.0/audiocd-kio-19.12.0.tar.xz) = 357096 +TIMESTAMP = 1578373827 +SHA256 (KDE/applications/19.12.1/audiocd-kio-19.12.1.tar.xz) = 3b4433bbbdd56bbafcf0418eaebb655b8fd4e03a4c29489112394393f3dc3815 +SIZE (KDE/applications/19.12.1/audiocd-kio-19.12.1.tar.xz) = 357524 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 522540) +++ head/audio/audiocd-kio/pkg-plist (revision 522541) @@ -1,289 +1,290 @@ share/qlogging-categories5/kio_audiocd.categories include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/kservices5/audiocd.protocol share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo +share/locale/id/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/elisa/distinfo =================================================================== --- head/audio/elisa/distinfo (revision 522540) +++ head/audio/elisa/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576232743 -SHA256 (KDE/applications/19.12.0/elisa-19.12.0.tar.xz) = 0c4a4ab6535839d8fb7f76febafa571876bb9f2378093d7370b58d341dae42a5 -SIZE (KDE/applications/19.12.0/elisa-19.12.0.tar.xz) = 1386020 +TIMESTAMP = 1578373828 +SHA256 (KDE/applications/19.12.1/elisa-19.12.1.tar.xz) = 4929da2ebe68a3dc0d22a809a7b2a84493aa6f072e16515bd557ddaac51fd8fa +SIZE (KDE/applications/19.12.1/elisa-19.12.1.tar.xz) = 1385248 Index: head/audio/elisa/pkg-plist =================================================================== --- head/audio/elisa/pkg-plist (revision 522540) +++ head/audio/elisa/pkg-plist (revision 522541) @@ -1,79 +1,46 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 -%%QT_PLUGINDIR%%/kcms/kcm_elisa_local_file.so %%QT_QMLDIR%%/org/kde/elisa/libelisaqmlplugin.so %%QT_QMLDIR%%/org/kde/elisa/qmldir share/applications/org.kde.elisa.desktop share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg -share/kpackage/kcms/kcm_elisa_local_file/contents.rcc -share/kpackage/kcms/kcm_elisa_local_file/metadata.json -share/kservices5/kcm_elisa_local_file.desktop share/locale/ar/LC_MESSAGES/elisa.mo -share/locale/ar/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo -share/locale/ca/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo -share/locale/ca@valencia/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/cs/LC_MESSAGES/elisa.mo -share/locale/cs/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/da/LC_MESSAGES/elisa.mo -share/locale/da/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/de/LC_MESSAGES/elisa.mo -share/locale/de/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/el/LC_MESSAGES/elisa.mo -share/locale/el/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/en_GB/LC_MESSAGES/elisa.mo -share/locale/en_GB/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/es/LC_MESSAGES/elisa.mo -share/locale/es/LC_MESSAGES/kcm_elisa_local_file.mo +share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo -share/locale/fi/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/fr/LC_MESSAGES/elisa.mo -share/locale/fr/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/gl/LC_MESSAGES/elisa.mo -share/locale/gl/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/hu/LC_MESSAGES/elisa.mo -share/locale/hu/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/id/LC_MESSAGES/elisa.mo -share/locale/id/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/it/LC_MESSAGES/elisa.mo -share/locale/it/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/ja/LC_MESSAGES/elisa.mo -share/locale/ja/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/ko/LC_MESSAGES/elisa.mo -share/locale/ko/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/lt/LC_MESSAGES/elisa.mo -share/locale/lt/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/nl/LC_MESSAGES/elisa.mo -share/locale/nl/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/nn/LC_MESSAGES/elisa.mo -share/locale/nn/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/pl/LC_MESSAGES/elisa.mo -share/locale/pl/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/pt/LC_MESSAGES/elisa.mo -share/locale/pt/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo -share/locale/pt_BR/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/ru/LC_MESSAGES/elisa.mo -share/locale/ru/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/sk/LC_MESSAGES/elisa.mo -share/locale/sk/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/sv/LC_MESSAGES/elisa.mo -share/locale/sv/LC_MESSAGES/kcm_elisa_local_file.mo -share/locale/tr/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/uk/LC_MESSAGES/elisa.mo -share/locale/uk/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo -share/locale/zh_CN/LC_MESSAGES/kcm_elisa_local_file.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo -share/locale/zh_TW/LC_MESSAGES/kcm_elisa_local_file.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories5/elisa.categories Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 522540) +++ head/audio/juk/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623343 -SHA256 (KDE/applications/19.12.0/juk-19.12.0.tar.xz) = 3d32fd9ba7d8f5a5815b278463dc54e165a669e1a9ccd655fe2ca139acc36a20 -SIZE (KDE/applications/19.12.0/juk-19.12.0.tar.xz) = 1865796 +TIMESTAMP = 1578373829 +SHA256 (KDE/applications/19.12.1/juk-19.12.1.tar.xz) = de1d9f3581f791ea050700b467dce4b38d9ec2dc20884b495826e479d3245edf +SIZE (KDE/applications/19.12.1/juk-19.12.1.tar.xz) = 1866084 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 522540) +++ head/audio/kmix/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623338 -SHA256 (KDE/applications/19.12.0/kmix-19.12.0.tar.xz) = 18b5b6d142dfb38f72115aad6579b4700b87958b3391094d19975c2d5ecf4edb -SIZE (KDE/applications/19.12.0/kmix-19.12.0.tar.xz) = 1007416 +TIMESTAMP = 1578373829 +SHA256 (KDE/applications/19.12.1/kmix-19.12.1.tar.xz) = 97fff89e4a102351d01265a9659c5664b030b9b4f27fa021b997fe7ab8801ad6 +SIZE (KDE/applications/19.12.1/kmix-19.12.1.tar.xz) = 1008224 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 522540) +++ head/audio/kwave/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623341 -SHA256 (KDE/applications/19.12.0/kwave-19.12.0.tar.xz) = 08237b018ef0676ba8c5aa0cb833285e2b7e0406d86e67caacd81088f9dc1ccf -SIZE (KDE/applications/19.12.0/kwave-19.12.0.tar.xz) = 6188904 +TIMESTAMP = 1578373830 +SHA256 (KDE/applications/19.12.1/kwave-19.12.1.tar.xz) = e6c336644c00a457b37820fc87668dd9b8a448d8abf84cda267b6e5cd01e0645 +SIZE (KDE/applications/19.12.1/kwave-19.12.1.tar.xz) = 6191832 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 522540) +++ head/audio/libkcddb/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623344 -SHA256 (KDE/applications/19.12.0/libkcddb-19.12.0.tar.xz) = b60cbc09aeb2f3794b68261a50e393887fbbb897ad0cd578edd57f0e6f01f4c5 -SIZE (KDE/applications/19.12.0/libkcddb-19.12.0.tar.xz) = 425072 +TIMESTAMP = 1578373831 +SHA256 (KDE/applications/19.12.1/libkcddb-19.12.1.tar.xz) = 50c139aaa14a5f27b3818cec7ec6ede4b764d461b6547651b61e4edd295afe6f +SIZE (KDE/applications/19.12.1/libkcddb-19.12.1.tar.xz) = 424108 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 522540) +++ head/audio/libkcompactdisc/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623342 -SHA256 (KDE/applications/19.12.0/libkcompactdisc-19.12.0.tar.xz) = a6c1c801e61e9cf933c132266857a540584e24a35367430587c7df13e5d7d49b -SIZE (KDE/applications/19.12.0/libkcompactdisc-19.12.0.tar.xz) = 89284 +TIMESTAMP = 1578373831 +SHA256 (KDE/applications/19.12.1/libkcompactdisc-19.12.1.tar.xz) = 95b14098b24a86094b01b357e36ae135fb6c85c838e8735c843d27b101cc2bd9 +SIZE (KDE/applications/19.12.1/libkcompactdisc-19.12.1.tar.xz) = 89216 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 522540) +++ head/databases/akonadi/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623565 -SHA256 (KDE/applications/19.12.0/akonadi-19.12.0.tar.xz) = 086efe59459c3c214dc58fd612110a8b66116905abd856d35a172f20b4c56db2 -SIZE (KDE/applications/19.12.0/akonadi-19.12.0.tar.xz) = 1582164 +TIMESTAMP = 1578373832 +SHA256 (KDE/applications/19.12.1/akonadi-19.12.1.tar.xz) = 991680be1b57a5335690341ab2a681fc7d8e77a4951673021f0662f3005856a3 +SIZE (KDE/applications/19.12.1/akonadi-19.12.1.tar.xz) = 1579612 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 522540) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623460 -SHA256 (KDE/applications/19.12.0/akonadi-calendar-tools-19.12.0.tar.xz) = 4829cb9ec152a89b2a8c66e5bc285f40a849cb69381e97f8712275e24a79f8a7 -SIZE (KDE/applications/19.12.0/akonadi-calendar-tools-19.12.0.tar.xz) = 223424 +TIMESTAMP = 1578373833 +SHA256 (KDE/applications/19.12.1/akonadi-calendar-tools-19.12.1.tar.xz) = 0650e12b2155b08cf70cc4620f9ea3868bad66affc4668775cd050539eacbec9 +SIZE (KDE/applications/19.12.1/akonadi-calendar-tools-19.12.1.tar.xz) = 223748 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 522540) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623445 -SHA256 (KDE/applications/19.12.0/akonadi-import-wizard-19.12.0.tar.xz) = 9f5a5195fef1f8b7631477dbc5c07acb61e2b981dac900f45728248e114d4a13 -SIZE (KDE/applications/19.12.0/akonadi-import-wizard-19.12.0.tar.xz) = 439116 +TIMESTAMP = 1578373833 +SHA256 (KDE/applications/19.12.1/akonadi-import-wizard-19.12.1.tar.xz) = a58d29407eebd9ce895d38b121cb034f92c81b85afd1b8da9c70cc3d7dc29b3d +SIZE (KDE/applications/19.12.1/akonadi-import-wizard-19.12.1.tar.xz) = 439264 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 522540) +++ head/deskutils/akonadiconsole/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623443 -SHA256 (KDE/applications/19.12.0/akonadiconsole-19.12.0.tar.xz) = 8fc9e49c465ead5d03dc9e16908e5d70d1bf01749da295ff830c5083e691adc7 -SIZE (KDE/applications/19.12.0/akonadiconsole-19.12.0.tar.xz) = 193624 +TIMESTAMP = 1578373834 +SHA256 (KDE/applications/19.12.1/akonadiconsole-19.12.1.tar.xz) = e6a755875b9ef9db4f022888b77bd011a5edf2c21667074b971d15818659dd5b +SIZE (KDE/applications/19.12.1/akonadiconsole-19.12.1.tar.xz) = 194176 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 522540) +++ head/deskutils/akregator/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623459 -SHA256 (KDE/applications/19.12.0/akregator-19.12.0.tar.xz) = 48adb2afc9005f3b028753bf389e892283de269d93c43e2e62eef7d760033d16 -SIZE (KDE/applications/19.12.0/akregator-19.12.0.tar.xz) = 2193148 +TIMESTAMP = 1578373835 +SHA256 (KDE/applications/19.12.1/akregator-19.12.1.tar.xz) = e6f00777059e5b9fe2458a7e4248a59652f08d836518bf0395aaf2ed77ef4d52 +SIZE (KDE/applications/19.12.1/akregator-19.12.1.tar.xz) = 2194456 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 522540) +++ head/deskutils/grantlee-editor/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623448 -SHA256 (KDE/applications/19.12.0/grantlee-editor-19.12.0.tar.xz) = 21e1d51cbe7deda7c6db6eef3eae4331c55992be514b2809f200a5df39578be9 -SIZE (KDE/applications/19.12.0/grantlee-editor-19.12.0.tar.xz) = 111380 +TIMESTAMP = 1578373835 +SHA256 (KDE/applications/19.12.1/grantlee-editor-19.12.1.tar.xz) = 63a2571369aff6cc648b064bcbc32227eede19475cad8937cfc454984423ea0c +SIZE (KDE/applications/19.12.1/grantlee-editor-19.12.1.tar.xz) = 111644 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 522540) +++ head/deskutils/grantleetheme/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623458 -SHA256 (KDE/applications/19.12.0/grantleetheme-19.12.0.tar.xz) = 47709809795211d69c1878617d00b3cbdb151473003b43b370920194c4702197 -SIZE (KDE/applications/19.12.0/grantleetheme-19.12.0.tar.xz) = 55136 +TIMESTAMP = 1578373836 +SHA256 (KDE/applications/19.12.1/grantleetheme-19.12.1.tar.xz) = f23aaf86ff8c630a2f3498b3eebcd6533b01ee806dcf4130df7dd55e3b890ddd +SIZE (KDE/applications/19.12.1/grantleetheme-19.12.1.tar.xz) = 55232 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 522540) +++ head/deskutils/kaddressbook/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623456 -SHA256 (KDE/applications/19.12.0/kaddressbook-19.12.0.tar.xz) = d1239fe30291ffbdd220c9d2cd53def293148f3c77061e0927ecd10630a6c83e -SIZE (KDE/applications/19.12.0/kaddressbook-19.12.0.tar.xz) = 2379408 +TIMESTAMP = 1578373837 +SHA256 (KDE/applications/19.12.1/kaddressbook-19.12.1.tar.xz) = 32e19973015151ac32fe7ae1f0a17e82e2834ce69ba052f31e8d197930f0be5c +SIZE (KDE/applications/19.12.1/kaddressbook-19.12.1.tar.xz) = 2399260 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 522540) +++ head/deskutils/kalarm/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623455 -SHA256 (KDE/applications/19.12.0/kalarm-19.12.0.tar.xz) = b6c0d645272b37da0757f98cbb3fc347a968d72b006ad1bbb8ed97c35aa52bfc -SIZE (KDE/applications/19.12.0/kalarm-19.12.0.tar.xz) = 1838864 +TIMESTAMP = 1578373837 +SHA256 (KDE/applications/19.12.1/kalarm-19.12.1.tar.xz) = 06a8d9544d1107ac3f2e8c4c2e9604055706dcb6b7f3b0267f0d4cb45f1caf35 +SIZE (KDE/applications/19.12.1/kalarm-19.12.1.tar.xz) = 1836264 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 522540) +++ head/deskutils/kcharselect/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623462 -SHA256 (KDE/applications/19.12.0/kcharselect-19.12.0.tar.xz) = 211a407478fb5df425d4716b9764f09458266a8d7d9507fba37bb91507a30864 -SIZE (KDE/applications/19.12.0/kcharselect-19.12.0.tar.xz) = 335508 +TIMESTAMP = 1578373838 +SHA256 (KDE/applications/19.12.1/kcharselect-19.12.1.tar.xz) = 5f23458974d6fa66c49d434937e7a7a31cc94e46616db866b35316025bb84b0c +SIZE (KDE/applications/19.12.1/kcharselect-19.12.1.tar.xz) = 335132 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 522540) +++ head/deskutils/kdepim-addons/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623466 -SHA256 (KDE/applications/19.12.0/kdepim-addons-19.12.0.tar.xz) = 88d2a087d826cd78e65b03d280d9b0d65c0632afeda7ea12b6f25e4b1da1a45b -SIZE (KDE/applications/19.12.0/kdepim-addons-19.12.0.tar.xz) = 2105188 +TIMESTAMP = 1578373839 +SHA256 (KDE/applications/19.12.1/kdepim-addons-19.12.1.tar.xz) = 091e3fd007ad54cd1dcd4e2d51c4ac883a2d9e365ca78592aa91a37835c4dcf5 +SIZE (KDE/applications/19.12.1/kdepim-addons-19.12.1.tar.xz) = 2108956 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 522540) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623463 -SHA256 (KDE/applications/19.12.0/kdepim-apps-libs-19.12.0.tar.xz) = ad881d0df4d06293f5f3c1c6e7c62ccb960571eea0af87d18b73a4e367d6becb -SIZE (KDE/applications/19.12.0/kdepim-apps-libs-19.12.0.tar.xz) = 83080 +TIMESTAMP = 1578373839 +SHA256 (KDE/applications/19.12.1/kdepim-apps-libs-19.12.1.tar.xz) = 4ff633c98cd128f2409cb78c193dd72f1078ae29eba8db3e304248a019e17e43 +SIZE (KDE/applications/19.12.1/kdepim-apps-libs-19.12.1.tar.xz) = 82524 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 522540) +++ head/deskutils/kdepim-runtime/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623461 -SHA256 (KDE/applications/19.12.0/kdepim-runtime-19.12.0.tar.xz) = ec99e1376caa42443b2c2d32f16e78df9eb4b9716338aac366de72eb94c0eec8 -SIZE (KDE/applications/19.12.0/kdepim-runtime-19.12.0.tar.xz) = 1731636 +TIMESTAMP = 1578373840 +SHA256 (KDE/applications/19.12.1/kdepim-runtime-19.12.1.tar.xz) = 31b1fe9778723079048d0fe1750028fd3f5f5b467ee10dcfa7fab37202a6ca39 +SIZE (KDE/applications/19.12.1/kdepim-runtime-19.12.1.tar.xz) = 1739128 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 522540) +++ head/deskutils/keditbookmarks/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623465 -SHA256 (KDE/applications/19.12.0/keditbookmarks-19.12.0.tar.xz) = adb7d291f5daa0e85f6421abf71265c3bb1b2a887efe5f831d9adb6552e4f133 -SIZE (KDE/applications/19.12.0/keditbookmarks-19.12.0.tar.xz) = 187376 +TIMESTAMP = 1578373841 +SHA256 (KDE/applications/19.12.1/keditbookmarks-19.12.1.tar.xz) = 11a950d53bc6e0b50d62a3ced2b74eaaa85c595b845ca8f2dcfa65e69d407fb0 +SIZE (KDE/applications/19.12.1/keditbookmarks-19.12.1.tar.xz) = 187688 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 522540) +++ head/deskutils/kfind/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623441 -SHA256 (KDE/applications/19.12.0/kfind-19.12.0.tar.xz) = 826048d289cb035faebbb64e31d058ec5c7ae56ec52d8c5a5afae7503586b01c -SIZE (KDE/applications/19.12.0/kfind-19.12.0.tar.xz) = 270092 +TIMESTAMP = 1578373841 +SHA256 (KDE/applications/19.12.1/kfind-19.12.1.tar.xz) = e9f5defa7796bbb54208b28af1fa76333a38e743d7febb8dd14739cf00d376eb +SIZE (KDE/applications/19.12.1/kfind-19.12.1.tar.xz) = 270840 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 522540) +++ head/deskutils/kmail/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623449 -SHA256 (KDE/applications/19.12.0/kmail-19.12.0.tar.xz) = 21534c77bbf096e85be10d95bfdd8868c628d72638e03e6cdf3e4a416f6d7066 -SIZE (KDE/applications/19.12.0/kmail-19.12.0.tar.xz) = 4712840 +TIMESTAMP = 1578373842 +SHA256 (KDE/applications/19.12.1/kmail-19.12.1.tar.xz) = a8fa4a604f8f88b91beebf0f3f9bb0ac7c040671bd75ab4478d8087a21cde40c +SIZE (KDE/applications/19.12.1/kmail-19.12.1.tar.xz) = 4711040 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 522540) +++ head/deskutils/kmail-account-wizard/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623440 -SHA256 (KDE/applications/19.12.0/kmail-account-wizard-19.12.0.tar.xz) = 8ee7ce3eb552d03a6c625909bc8733f6244123b3d4e28524025f1879ed630509 -SIZE (KDE/applications/19.12.0/kmail-account-wizard-19.12.0.tar.xz) = 158164 +TIMESTAMP = 1578373843 +SHA256 (KDE/applications/19.12.1/kmail-account-wizard-19.12.1.tar.xz) = e7cbda3946b19d01f5c3a722d2c104b7be072ab411f80437a25b8200d73e7cfa +SIZE (KDE/applications/19.12.1/kmail-account-wizard-19.12.1.tar.xz) = 158220 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 522540) +++ head/deskutils/knotes/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623457 -SHA256 (KDE/applications/19.12.0/knotes-19.12.0.tar.xz) = 2c81b91b18d39c2654319e005c68ffb78599c0bca85b99de45de64fdbdacf5e3 -SIZE (KDE/applications/19.12.0/knotes-19.12.0.tar.xz) = 320516 +TIMESTAMP = 1578373843 +SHA256 (KDE/applications/19.12.1/knotes-19.12.1.tar.xz) = e89f22ee1a918553be5241e167bd038797391502cb98c5f260c96b25017dd235 +SIZE (KDE/applications/19.12.1/knotes-19.12.1.tar.xz) = 320672 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 522540) +++ head/deskutils/kontact/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623442 -SHA256 (KDE/applications/19.12.0/kontact-19.12.0.tar.xz) = 6a48ec8e058c9bfa983804b94e3cf4e0e83d8fe38890d3ad248ba1cb7c37c269 -SIZE (KDE/applications/19.12.0/kontact-19.12.0.tar.xz) = 794248 +TIMESTAMP = 1578373844 +SHA256 (KDE/applications/19.12.1/kontact-19.12.1.tar.xz) = e9f7911154953d58be962bd392baf7d9c310e9e665adb0c875ed5a50dcfe5e01 +SIZE (KDE/applications/19.12.1/kontact-19.12.1.tar.xz) = 795456 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 522540) +++ head/deskutils/korganizer/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623451 -SHA256 (KDE/applications/19.12.0/korganizer-19.12.0.tar.xz) = 96e712b92860a826c9487337ef73a3118847b41f875e5a324c5242b97470c539 -SIZE (KDE/applications/19.12.0/korganizer-19.12.0.tar.xz) = 2227452 +TIMESTAMP = 1578373845 +SHA256 (KDE/applications/19.12.1/korganizer-19.12.1.tar.xz) = 8bd84dfdca4f4738152c19d336b8c516f0c79fd888f0361005bc5d6359eeb117 +SIZE (KDE/applications/19.12.1/korganizer-19.12.1.tar.xz) = 2228744 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 522540) +++ head/deskutils/kruler/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623446 -SHA256 (KDE/applications/19.12.0/kruler-19.12.0.tar.xz) = 1aaac8346a3c7ec15114ef046f4ba0e2342332117cdad9e244bf6cd2277bef04 -SIZE (KDE/applications/19.12.0/kruler-19.12.0.tar.xz) = 250480 +TIMESTAMP = 1578373845 +SHA256 (KDE/applications/19.12.1/kruler-19.12.1.tar.xz) = 0ecbc70561c0d973866c4bd27333a5ddc904b748fb3a64f66b6b06040b30d34a +SIZE (KDE/applications/19.12.1/kruler-19.12.1.tar.xz) = 251136 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 522540) +++ head/deskutils/libkdepim/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623447 -SHA256 (KDE/applications/19.12.0/libkdepim-19.12.0.tar.xz) = 6aa6f6cdb464efb498104387bf1d6f2b762b87d3b0bd7c22014d1adf85c5f5f1 -SIZE (KDE/applications/19.12.0/libkdepim-19.12.0.tar.xz) = 333096 +TIMESTAMP = 1578373846 +SHA256 (KDE/applications/19.12.1/libkdepim-19.12.1.tar.xz) = 1d626a959a0f9fcb24c4e01c553126d40314c789db9bc80d6b52f2bb75e233cd +SIZE (KDE/applications/19.12.1/libkdepim-19.12.1.tar.xz) = 333720 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 522540) +++ head/deskutils/mbox-importer/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623452 -SHA256 (KDE/applications/19.12.0/mbox-importer-19.12.0.tar.xz) = 2ae7f6de31514596dc7bb2e89fc5898a5e9436d017a8dd04d6e771c029006792 -SIZE (KDE/applications/19.12.0/mbox-importer-19.12.0.tar.xz) = 33344 +TIMESTAMP = 1578373847 +SHA256 (KDE/applications/19.12.1/mbox-importer-19.12.1.tar.xz) = 04dd6220192095d0f7befb368b9d96a321acac7af43b3575faf25ae89d17b5f4 +SIZE (KDE/applications/19.12.1/mbox-importer-19.12.1.tar.xz) = 33328 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 522540) +++ head/deskutils/pim-data-exporter/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623454 -SHA256 (KDE/applications/19.12.0/pim-data-exporter-19.12.0.tar.xz) = fec9be3f2566ed944453cc73011c54dc9e7d536f10ba72283a8b9f30ae4096ed -SIZE (KDE/applications/19.12.0/pim-data-exporter-19.12.0.tar.xz) = 205292 +TIMESTAMP = 1578373847 +SHA256 (KDE/applications/19.12.1/pim-data-exporter-19.12.1.tar.xz) = 3f650c1c221826079d7c739e4070e295a7a1b1156f75e8e3100b06f878efed12 +SIZE (KDE/applications/19.12.1/pim-data-exporter-19.12.1.tar.xz) = 205616 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 522540) +++ head/deskutils/pim-sieve-editor/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623450 -SHA256 (KDE/applications/19.12.0/pim-sieve-editor-19.12.0.tar.xz) = 3569188704b8a1d6beb041cacca6fca4c6a1ee2f58c8f0c0b41033b4c21065a7 -SIZE (KDE/applications/19.12.0/pim-sieve-editor-19.12.0.tar.xz) = 451060 +TIMESTAMP = 1578373848 +SHA256 (KDE/applications/19.12.1/pim-sieve-editor-19.12.1.tar.xz) = 3fdca7147c581dce4a014dc2d30bd7e6616c0559654cf9fee68e9292fd6ef037 +SIZE (KDE/applications/19.12.1/pim-sieve-editor-19.12.1.tar.xz) = 450896 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 522540) +++ head/devel/cervisia/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623563 -SHA256 (KDE/applications/19.12.0/cervisia-19.12.0.tar.xz) = 8b49e4b23e46e2c97b6a653177d53129c2a1897fde3079cf1335ea6450e29ebf -SIZE (KDE/applications/19.12.0/cervisia-19.12.0.tar.xz) = 1896844 +TIMESTAMP = 1578373849 +SHA256 (KDE/applications/19.12.1/cervisia-19.12.1.tar.xz) = 2a7d32ac0c1460c135397cedec177db8eb99117b53ec2c9652763b0e90184188 +SIZE (KDE/applications/19.12.1/cervisia-19.12.1.tar.xz) = 1896352 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 522540) +++ head/devel/dolphin-plugins/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623557 -SHA256 (KDE/applications/19.12.0/dolphin-plugins-19.12.0.tar.xz) = 502421ebd7b41c9fed32266da3b5c22df37ab721ee5aee5b0018fe3498f01fa8 -SIZE (KDE/applications/19.12.0/dolphin-plugins-19.12.0.tar.xz) = 195968 +TIMESTAMP = 1578373849 +SHA256 (KDE/applications/19.12.1/dolphin-plugins-19.12.1.tar.xz) = 9392571a7004c08aac02dcc6453f58b6d0de4716b7cd61776f78d9b1783c60e0 +SIZE (KDE/applications/19.12.1/dolphin-plugins-19.12.1.tar.xz) = 194676 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 522540) +++ head/devel/kapptemplate/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623564 -SHA256 (KDE/applications/19.12.0/kapptemplate-19.12.0.tar.xz) = 751865151ac09652a27af82239e7ce8c45da5e8dab2b43e06d2f58999f8ecfdf -SIZE (KDE/applications/19.12.0/kapptemplate-19.12.0.tar.xz) = 316660 +TIMESTAMP = 1578373850 +SHA256 (KDE/applications/19.12.1/kapptemplate-19.12.1.tar.xz) = b2fc583125aae1968c0342063a6cfcea2dbeff21e0ef505a021b689ed3a34085 +SIZE (KDE/applications/19.12.1/kapptemplate-19.12.1.tar.xz) = 316820 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 522540) +++ head/devel/kcachegrind/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623559 -SHA256 (KDE/applications/19.12.0/kcachegrind-19.12.0.tar.xz) = aa5b621084abc738203ccdbba16b996e35795940f5332a425a0f2bf85ff36ccf -SIZE (KDE/applications/19.12.0/kcachegrind-19.12.0.tar.xz) = 809760 +TIMESTAMP = 1578373851 +SHA256 (KDE/applications/19.12.1/kcachegrind-19.12.1.tar.xz) = 210e04441519c47d103871e52d98351abc41a04b9385c577a7839eec31a2f400 +SIZE (KDE/applications/19.12.1/kcachegrind-19.12.1.tar.xz) = 810148 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 522540) +++ head/devel/kde-dev-scripts/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623553 -SHA256 (KDE/applications/19.12.0/kde-dev-scripts-19.12.0.tar.xz) = bfbe4c11b8f2f60e4509924eb27cf57213e8b6923dc60f107ea072573167298e -SIZE (KDE/applications/19.12.0/kde-dev-scripts-19.12.0.tar.xz) = 378528 +TIMESTAMP = 1578373851 +SHA256 (KDE/applications/19.12.1/kde-dev-scripts-19.12.1.tar.xz) = c2965dee649abea0791774ae264230dbe673af07eb0bd85bf3e8c7c6a739cea5 +SIZE (KDE/applications/19.12.1/kde-dev-scripts-19.12.1.tar.xz) = 378876 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 522540) +++ head/devel/kde-dev-utils/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623556 -SHA256 (KDE/applications/19.12.0/kde-dev-utils-19.12.0.tar.xz) = fd6fa9f8bc8188fa682f3cf9c19627f1737bde2e60c4b9d207c552a624701f7a -SIZE (KDE/applications/19.12.0/kde-dev-utils-19.12.0.tar.xz) = 64272 +TIMESTAMP = 1578373852 +SHA256 (KDE/applications/19.12.1/kde-dev-utils-19.12.1.tar.xz) = 94f983c9b49ed3bc59b20849b23e7c26b64b7b303fbd86147c4bc823f87cda7d +SIZE (KDE/applications/19.12.1/kde-dev-utils-19.12.1.tar.xz) = 64420 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 522540) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623561 -SHA256 (KDE/applications/19.12.0/kdesdk-thumbnailers-19.12.0.tar.xz) = 7f6a86fcce183393abd8ab873d0bc8d86e2f65629bee52346efafeae9b6a8805 -SIZE (KDE/applications/19.12.0/kdesdk-thumbnailers-19.12.0.tar.xz) = 17464 +TIMESTAMP = 1578373852 +SHA256 (KDE/applications/19.12.1/kdesdk-thumbnailers-19.12.1.tar.xz) = 77f64ddb075407f781cf2d658af760840f9427cc171e8ec15805f47105da0e56 +SIZE (KDE/applications/19.12.1/kdesdk-thumbnailers-19.12.1.tar.xz) = 17548 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 522540) +++ head/devel/kio-extras/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623555 -SHA256 (KDE/applications/19.12.0/kio-extras-19.12.0.tar.xz) = 7943c14a5a095a8d8d3ee868be085ddc59d6a0ec172637c3551e148fadc9ac6c -SIZE (KDE/applications/19.12.0/kio-extras-19.12.0.tar.xz) = 579188 +TIMESTAMP = 1578373853 +SHA256 (KDE/applications/19.12.1/kio-extras-19.12.1.tar.xz) = 79b3735510c3c8da9b3e019ee5a54b115f85bb8d89f1c04dbbf16dde3007e7b6 +SIZE (KDE/applications/19.12.1/kio-extras-19.12.1.tar.xz) = 579404 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 522540) +++ head/devel/lokalize/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623560 -SHA256 (KDE/applications/19.12.0/lokalize-19.12.0.tar.xz) = 8999f5e3aae5c6decfbc772f747b57cca26c1770480056cef03004a4a65df4f4 -SIZE (KDE/applications/19.12.0/lokalize-19.12.0.tar.xz) = 1701644 +TIMESTAMP = 1578373854 +SHA256 (KDE/applications/19.12.1/lokalize-19.12.1.tar.xz) = ee29cff9a513d68cde72e6ace0f893de77be5cb3fe56b4b6e0d1fa5b808b424c +SIZE (KDE/applications/19.12.1/lokalize-19.12.1.tar.xz) = 1701260 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 522540) +++ head/devel/poxml/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623562 -SHA256 (KDE/applications/19.12.0/poxml-19.12.0.tar.xz) = 6a4506b4f936e9dc869fc416c4dbcbe9d3ec0d0d3d6126efa4ae2f9eec1bf616 -SIZE (KDE/applications/19.12.0/poxml-19.12.0.tar.xz) = 43240 +TIMESTAMP = 1578373855 +SHA256 (KDE/applications/19.12.1/poxml-19.12.1.tar.xz) = f02aa4d1f7de8fb38921fe73076b3e905185979d9b75ff6345efaca8aad0ebb9 +SIZE (KDE/applications/19.12.1/poxml-19.12.1.tar.xz) = 43364 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 522540) +++ head/devel/umbrello/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623554 -SHA256 (KDE/applications/19.12.0/umbrello-19.12.0.tar.xz) = 9b9bb640a2d2a26f285584a86908e58e73c5906b1643e254bbc157935150e31f -SIZE (KDE/applications/19.12.0/umbrello-19.12.0.tar.xz) = 3797988 +TIMESTAMP = 1578373856 +SHA256 (KDE/applications/19.12.1/umbrello-19.12.1.tar.xz) = 077a1b5a3dfe15d37f03ee97ca5b40a1b8e7e0f2305df2f16a966861cc79e0d6 +SIZE (KDE/applications/19.12.1/umbrello-19.12.1.tar.xz) = 3798332 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 522540) +++ head/editors/kate/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623490 -SHA256 (KDE/applications/19.12.0/kate-19.12.0.tar.xz) = 7e3d9a83508a77adb5262b58411004ade37599d36f6207b20af7ba3ff81ba153 -SIZE (KDE/applications/19.12.0/kate-19.12.0.tar.xz) = 5695096 +TIMESTAMP = 1578373856 +SHA256 (KDE/applications/19.12.1/kate-19.12.1.tar.xz) = 9d2401907e5b163d5af0af5b4d28383896ef709bcde7f6ee2234e1a3adc28a47 +SIZE (KDE/applications/19.12.1/kate-19.12.1.tar.xz) = 5697944 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 522540) +++ head/editors/kate/pkg-plist (revision 522541) @@ -1,1244 +1,1246 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svgz share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 522540) +++ head/games/blinken/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623377 -SHA256 (KDE/applications/19.12.0/blinken-19.12.0.tar.xz) = c67e0ae1a1b9315a530b9af49d81245c76658c4a8bb4ca6eeb89df30e3d811fc -SIZE (KDE/applications/19.12.0/blinken-19.12.0.tar.xz) = 2820412 +TIMESTAMP = 1578373857 +SHA256 (KDE/applications/19.12.1/blinken-19.12.1.tar.xz) = 4a1f7c782dc236d963bc1de11b7dcbc79012d47e3e6cc5ce692ca91ecb788388 +SIZE (KDE/applications/19.12.1/blinken-19.12.1.tar.xz) = 2820888 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 522540) +++ head/games/bomber/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623367 -SHA256 (KDE/applications/19.12.0/bomber-19.12.0.tar.xz) = f6dd3229c1f4c46463a85cdb6450129bc0d752e57e0781907aeebd6fd1515832 -SIZE (KDE/applications/19.12.0/bomber-19.12.0.tar.xz) = 820508 +TIMESTAMP = 1578373858 +SHA256 (KDE/applications/19.12.1/bomber-19.12.1.tar.xz) = f0007dae42d6586ab6c9da5775c835fb515cbf180698a1453a90efd2ba8f2795 +SIZE (KDE/applications/19.12.1/bomber-19.12.1.tar.xz) = 821688 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 522540) +++ head/games/bovo/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623359 -SHA256 (KDE/applications/19.12.0/bovo-19.12.0.tar.xz) = b16593a49244ec323e6b14fe1d10d6b4a579e3d615844b89e9cc8629d0d281ed -SIZE (KDE/applications/19.12.0/bovo-19.12.0.tar.xz) = 200168 +TIMESTAMP = 1578373858 +SHA256 (KDE/applications/19.12.1/bovo-19.12.1.tar.xz) = 54cee2f71e9736057187c8121313b9c73f6cadd0fa463ea2a29cf0e86969d5ae +SIZE (KDE/applications/19.12.1/bovo-19.12.1.tar.xz) = 200264 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 522540) +++ head/games/granatier/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623383 -SHA256 (KDE/applications/19.12.0/granatier-19.12.0.tar.xz) = 8fdcaf2de2c17a4f96828771af9a9038218469b07e8a46f3930e93a3ab6efcb1 -SIZE (KDE/applications/19.12.0/granatier-19.12.0.tar.xz) = 1943484 +TIMESTAMP = 1578373859 +SHA256 (KDE/applications/19.12.1/granatier-19.12.1.tar.xz) = 98051d292dd5a3ba3f873e8bc2bed6cdae291c9516b9cb21a64703b3135baa7f +SIZE (KDE/applications/19.12.1/granatier-19.12.1.tar.xz) = 1942664 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 522540) +++ head/games/kanagram/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623388 -SHA256 (KDE/applications/19.12.0/kanagram-19.12.0.tar.xz) = d567affb16023e83e1d794ccfaf93e7dd341edf9aaace75a967467d5ced79dc1 -SIZE (KDE/applications/19.12.0/kanagram-19.12.0.tar.xz) = 8028824 +TIMESTAMP = 1578373860 +SHA256 (KDE/applications/19.12.1/kanagram-19.12.1.tar.xz) = 2127eada150ee3f023948b637890aa93d602874fd6c037c4bd031886a12a2fdc +SIZE (KDE/applications/19.12.1/kanagram-19.12.1.tar.xz) = 8033552 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 522540) +++ head/games/kapman/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623353 -SHA256 (KDE/applications/19.12.0/kapman-19.12.0.tar.xz) = 17b3cec9969bb0ef1211fb95d10df0bcb95f4ef54cac6820e9bb487f349bfd32 -SIZE (KDE/applications/19.12.0/kapman-19.12.0.tar.xz) = 2526380 +TIMESTAMP = 1578373860 +SHA256 (KDE/applications/19.12.1/kapman-19.12.1.tar.xz) = cd5bef40c51bc6ef635adab501acd2a40c2291c989c4ba3ef6e34a1cbebe4c49 +SIZE (KDE/applications/19.12.1/kapman-19.12.1.tar.xz) = 2527020 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 522540) +++ head/games/katomic/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623362 -SHA256 (KDE/applications/19.12.0/katomic-19.12.0.tar.xz) = a20ef505566461259d34ebbd856db050c69a8bc38c767a8ae549da25179dcdb4 -SIZE (KDE/applications/19.12.0/katomic-19.12.0.tar.xz) = 1423304 +TIMESTAMP = 1578373861 +SHA256 (KDE/applications/19.12.1/katomic-19.12.1.tar.xz) = bc51424757434e905b5b611a6fa634147e533e375922c03f896a093fa61e57a3 +SIZE (KDE/applications/19.12.1/katomic-19.12.1.tar.xz) = 1423324 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 522540) +++ head/games/kblackbox/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623352 -SHA256 (KDE/applications/19.12.0/kblackbox-19.12.0.tar.xz) = bbb59729ac892bcea566c854e29c08c15af72c9b88bc4478fa31ad70dfc1a0f4 -SIZE (KDE/applications/19.12.0/kblackbox-19.12.0.tar.xz) = 447576 +TIMESTAMP = 1578373862 +SHA256 (KDE/applications/19.12.1/kblackbox-19.12.1.tar.xz) = 57901d6bf56228691b6c6436ca2f60e62542854e80f9c4fda7a60362a216e1ed +SIZE (KDE/applications/19.12.1/kblackbox-19.12.1.tar.xz) = 447776 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 522540) +++ head/games/kblocks/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623357 -SHA256 (KDE/applications/19.12.0/kblocks-19.12.0.tar.xz) = f03846d9fe6fac74706b2f044d328c00a49a5a82c842690bce0d04d196565f4f -SIZE (KDE/applications/19.12.0/kblocks-19.12.0.tar.xz) = 1907700 +TIMESTAMP = 1578373862 +SHA256 (KDE/applications/19.12.1/kblocks-19.12.1.tar.xz) = 1077477910d1dfff60f1abad7b1cf937daf1f3e3a5e8b18407b7e2809b2fc3d9 +SIZE (KDE/applications/19.12.1/kblocks-19.12.1.tar.xz) = 1908028 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 522540) +++ head/games/kbounce/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623347 -SHA256 (KDE/applications/19.12.0/kbounce-19.12.0.tar.xz) = 8cbb46e45859eb6b6770e7398da33f0d247ee71bcc9e7f5a7511d81740d5a521 -SIZE (KDE/applications/19.12.0/kbounce-19.12.0.tar.xz) = 3468908 +TIMESTAMP = 1578373863 +SHA256 (KDE/applications/19.12.1/kbounce-19.12.1.tar.xz) = e9e1df6f2f57e102d95707b82b0aa582f9f1a6c3e395660b5faa33ef953e7fb3 +SIZE (KDE/applications/19.12.1/kbounce-19.12.1.tar.xz) = 3467728 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 522540) +++ head/games/kbreakout/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623381 -SHA256 (KDE/applications/19.12.0/kbreakout-19.12.0.tar.xz) = e78d11e49b5dc9a61cc063060fd0fc252c100ba86319890d68d42e9c99ec5af4 -SIZE (KDE/applications/19.12.0/kbreakout-19.12.0.tar.xz) = 2280612 +TIMESTAMP = 1578373864 +SHA256 (KDE/applications/19.12.1/kbreakout-19.12.1.tar.xz) = 17475a5aa80f494876fb3b91d32df4c447417e79f4dd60d46f594cfab03f489f +SIZE (KDE/applications/19.12.1/kbreakout-19.12.1.tar.xz) = 2279624 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 522540) +++ head/games/kdiamond/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623348 -SHA256 (KDE/applications/19.12.0/kdiamond-19.12.0.tar.xz) = bf51e52679ad35083e0d6ad838451365d89bb9e83743cc2c1f40313fc6d473a3 -SIZE (KDE/applications/19.12.0/kdiamond-19.12.0.tar.xz) = 4694340 +TIMESTAMP = 1578373864 +SHA256 (KDE/applications/19.12.1/kdiamond-19.12.1.tar.xz) = 4f7770138d16bb7b91920b7f3c7024a89ef35dc330a2ac929a2fa5d4ee12b982 +SIZE (KDE/applications/19.12.1/kdiamond-19.12.1.tar.xz) = 4694472 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 522540) +++ head/games/kfourinline/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623370 -SHA256 (KDE/applications/19.12.0/kfourinline-19.12.0.tar.xz) = 6d520b46e92e2685104437ceb1c80cd5ca62fa84e2bfbb2eb6363986d19881e2 -SIZE (KDE/applications/19.12.0/kfourinline-19.12.0.tar.xz) = 638496 +TIMESTAMP = 1578373865 +SHA256 (KDE/applications/19.12.1/kfourinline-19.12.1.tar.xz) = 76e31b59f1b31ddb755def377324d5fa5b5a4835f1f537a30632a028bf671a3e +SIZE (KDE/applications/19.12.1/kfourinline-19.12.1.tar.xz) = 638532 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 522540) +++ head/games/kgoldrunner/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623373 -SHA256 (KDE/applications/19.12.0/kgoldrunner-19.12.0.tar.xz) = cfa075397de2c850b9bab964278da8aebb2cbebbe9ab69c83e0f93ee6d4b4209 -SIZE (KDE/applications/19.12.0/kgoldrunner-19.12.0.tar.xz) = 4431120 +TIMESTAMP = 1578373866 +SHA256 (KDE/applications/19.12.1/kgoldrunner-19.12.1.tar.xz) = 1f2044656732ab7a72117139576201ca1701666d525c93b726473d4cd9aed29c +SIZE (KDE/applications/19.12.1/kgoldrunner-19.12.1.tar.xz) = 4430896 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 522540) +++ head/games/khangman/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623390 -SHA256 (KDE/applications/19.12.0/khangman-19.12.0.tar.xz) = 05f343e7e9ed13a43b4c190c0fc764f5e9126226f968f89f404bf705bed97e3b -SIZE (KDE/applications/19.12.0/khangman-19.12.0.tar.xz) = 7118956 +TIMESTAMP = 1578373866 +SHA256 (KDE/applications/19.12.1/khangman-19.12.1.tar.xz) = 42fa9d9a9a72fe4b14127b12d5b662d66c00c1899eeefba6102be95136333def +SIZE (KDE/applications/19.12.1/khangman-19.12.1.tar.xz) = 7113736 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 522540) +++ head/games/kigo/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623358 -SHA256 (KDE/applications/19.12.0/kigo-19.12.0.tar.xz) = 04e778a0ced1fb88594f31128cfc6847c5fac5523597a32905c286bcd626c3ba -SIZE (KDE/applications/19.12.0/kigo-19.12.0.tar.xz) = 5227572 +TIMESTAMP = 1578373867 +SHA256 (KDE/applications/19.12.1/kigo-19.12.1.tar.xz) = 235df9bca39b02dac6648b408d71f7b0978604f8389ea7ef5aa8e0be87fbcf9d +SIZE (KDE/applications/19.12.1/kigo-19.12.1.tar.xz) = 5227076 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 522540) +++ head/games/killbots/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623385 -SHA256 (KDE/applications/19.12.0/killbots-19.12.0.tar.xz) = ccd9525b6f451c3d658ac2af70ef615ee99c72b9770a8a09cfb99a8653a1356d -SIZE (KDE/applications/19.12.0/killbots-19.12.0.tar.xz) = 1175136 +TIMESTAMP = 1578373868 +SHA256 (KDE/applications/19.12.1/killbots-19.12.1.tar.xz) = 3d524028e7df412e4306daf4e7b1aca803d26b65985fa429c98db10cffff010f +SIZE (KDE/applications/19.12.1/killbots-19.12.1.tar.xz) = 1175168 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 522540) +++ head/games/kiriki/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623346 -SHA256 (KDE/applications/19.12.0/kiriki-19.12.0.tar.xz) = fba8d5d1fbc22ae9ff955e6c7325d1fa9b2e5cc1f2e85249a958831a765017bf -SIZE (KDE/applications/19.12.0/kiriki-19.12.0.tar.xz) = 373632 +TIMESTAMP = 1578373868 +SHA256 (KDE/applications/19.12.1/kiriki-19.12.1.tar.xz) = f3079b53ed45ec46def7a95b336d441dba18151cc77c88ef8ce2d02fcf1d6375 +SIZE (KDE/applications/19.12.1/kiriki-19.12.1.tar.xz) = 373564 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 522540) +++ head/games/kjumpingcube/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623355 -SHA256 (KDE/applications/19.12.0/kjumpingcube-19.12.0.tar.xz) = a15351f43c24c4f3ed201f22dc8fc6349e51bcb011406175c68baf7aed49d50c -SIZE (KDE/applications/19.12.0/kjumpingcube-19.12.0.tar.xz) = 289272 +TIMESTAMP = 1578373869 +SHA256 (KDE/applications/19.12.1/kjumpingcube-19.12.1.tar.xz) = 3e4abd57d14dccc9b39669eebdab578fc865464b8a4309c3ab8103002edc2ff0 +SIZE (KDE/applications/19.12.1/kjumpingcube-19.12.1.tar.xz) = 289164 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 522540) +++ head/games/klickety/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623379 -SHA256 (KDE/applications/19.12.0/klickety-19.12.0.tar.xz) = 79a5db378dd513fcb11fc5dea0e9ef204b0e9d8619ca8e3602cecb81b4f75fcb -SIZE (KDE/applications/19.12.0/klickety-19.12.0.tar.xz) = 1390044 +TIMESTAMP = 1578373870 +SHA256 (KDE/applications/19.12.1/klickety-19.12.1.tar.xz) = 66cba17839023b6fe563a461da8f52a3c8a2bd4949195da2d63d780547f2e159 +SIZE (KDE/applications/19.12.1/klickety-19.12.1.tar.xz) = 1390440 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 522540) +++ head/games/klines/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623368 -SHA256 (KDE/applications/19.12.0/klines-19.12.0.tar.xz) = a3076dba4498d6d66f22310ef1af5cc717670aac2f759e2cf436a47dd91abb2e -SIZE (KDE/applications/19.12.0/klines-19.12.0.tar.xz) = 1782432 +TIMESTAMP = 1578373870 +SHA256 (KDE/applications/19.12.1/klines-19.12.1.tar.xz) = 111c4e607c4ba434a8ff593e45ba669c78e6c1fbf9e4d77d0fc5d611e733604e +SIZE (KDE/applications/19.12.1/klines-19.12.1.tar.xz) = 1782308 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 522540) +++ head/games/kmahjongg/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623354 -SHA256 (KDE/applications/19.12.0/kmahjongg-19.12.0.tar.xz) = 448d5a58c72feece0aef126dcd2ba08fc1b54f4395c493485276aceb0bad1052 -SIZE (KDE/applications/19.12.0/kmahjongg-19.12.0.tar.xz) = 3424940 +TIMESTAMP = 1578373871 +SHA256 (KDE/applications/19.12.1/kmahjongg-19.12.1.tar.xz) = e157f2e603c03128fb99ac4d0b4bc3ab2002a60960c780a3907e35bb8aee9bd3 +SIZE (KDE/applications/19.12.1/kmahjongg-19.12.1.tar.xz) = 3426076 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 522540) +++ head/games/kmines/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623389 -SHA256 (KDE/applications/19.12.0/kmines-19.12.0.tar.xz) = 84ec9dd6920ac34206df283ce0c90db50775e2cff562a18f583c1447c76696ed -SIZE (KDE/applications/19.12.0/kmines-19.12.0.tar.xz) = 899840 +TIMESTAMP = 1578373872 +SHA256 (KDE/applications/19.12.1/kmines-19.12.1.tar.xz) = 8f921aa4bda7397c0fa6265ba07a6ce68190174864d0ee16ee575be806b49539 +SIZE (KDE/applications/19.12.1/kmines-19.12.1.tar.xz) = 898180 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 522540) +++ head/games/knavalbattle/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623391 -SHA256 (KDE/applications/19.12.0/knavalbattle-19.12.0.tar.xz) = 0d9ff193ad927faf21312e845e83d07692575f600b1a22e6b8d65c751b5625de -SIZE (KDE/applications/19.12.0/knavalbattle-19.12.0.tar.xz) = 1281504 +TIMESTAMP = 1578373872 +SHA256 (KDE/applications/19.12.1/knavalbattle-19.12.1.tar.xz) = 1cc2c7fec2e2edc634cb1f83cf7e433522b0bc7d76c04cbcde66bb486a832856 +SIZE (KDE/applications/19.12.1/knavalbattle-19.12.1.tar.xz) = 1280848 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 522540) +++ head/games/knetwalk/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623392 -SHA256 (KDE/applications/19.12.0/knetwalk-19.12.0.tar.xz) = 5a757fe22827956e9957bb193e1bd5099f7b8b3ad9f1729845945b304d83ed2d -SIZE (KDE/applications/19.12.0/knetwalk-19.12.0.tar.xz) = 1040756 +TIMESTAMP = 1578373873 +SHA256 (KDE/applications/19.12.1/knetwalk-19.12.1.tar.xz) = 95725a45c56956a2b8e8e2db36b6baedfc0271af0d6e3541d6143342e6f41ca5 +SIZE (KDE/applications/19.12.1/knetwalk-19.12.1.tar.xz) = 1041176 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 522540) +++ head/games/knights/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623366 -SHA256 (KDE/applications/19.12.0/knights-19.12.0.tar.xz) = 135b8975ee10791552d6906ca562652a014187aa6eeb0c6e84391b4dd04aa0c6 -SIZE (KDE/applications/19.12.0/knights-19.12.0.tar.xz) = 3516612 +TIMESTAMP = 1578373874 +SHA256 (KDE/applications/19.12.1/knights-19.12.1.tar.xz) = 60ce0d76eb13c95ba81b0f2dfe5bd3e80ed2226319e4ef97150c3240f428d355 +SIZE (KDE/applications/19.12.1/knights-19.12.1.tar.xz) = 3516696 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 522540) +++ head/games/kolf/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623351 -SHA256 (KDE/applications/19.12.0/kolf-19.12.0.tar.xz) = 0b63c8aceec8a9200a44b74bf76eb4d360c41c3ed311ed0a1837002a15bb596d -SIZE (KDE/applications/19.12.0/kolf-19.12.0.tar.xz) = 1024888 +TIMESTAMP = 1578373874 +SHA256 (KDE/applications/19.12.1/kolf-19.12.1.tar.xz) = 78c5e74d61f8c19b31d4d08781d12a87bc6101d0105081e0c15f4506e36ef6f5 +SIZE (KDE/applications/19.12.1/kolf-19.12.1.tar.xz) = 1023372 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 522540) +++ head/games/kollision/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623384 -SHA256 (KDE/applications/19.12.0/kollision-19.12.0.tar.xz) = 0a646f4f4079501e66ab8094e7448fd9d6df48eaec8c83754b0a51b83463e41c -SIZE (KDE/applications/19.12.0/kollision-19.12.0.tar.xz) = 280988 +TIMESTAMP = 1578373875 +SHA256 (KDE/applications/19.12.1/kollision-19.12.1.tar.xz) = a48515f63c0dbcc890aa9c01e344ea5bcb123e587459879796acc39a16243c09 +SIZE (KDE/applications/19.12.1/kollision-19.12.1.tar.xz) = 281220 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 522540) +++ head/games/konquest/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623374 -SHA256 (KDE/applications/19.12.0/konquest-19.12.0.tar.xz) = 05f0cfb9a87833323a104048d43f70986db554d892a4328967b1975c7ae005df -SIZE (KDE/applications/19.12.0/konquest-19.12.0.tar.xz) = 659640 +TIMESTAMP = 1578373876 +SHA256 (KDE/applications/19.12.1/konquest-19.12.1.tar.xz) = 178e42f76115f8e8b47494ea7732fb76a692debe714590c06d84f7071930b65a +SIZE (KDE/applications/19.12.1/konquest-19.12.1.tar.xz) = 658620 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 522540) +++ head/games/kpat/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623356 -SHA256 (KDE/applications/19.12.0/kpat-19.12.0.tar.xz) = ba279766e7059c27b889577428847a58b96709635126a0fb6cd4e9b2375883c0 -SIZE (KDE/applications/19.12.0/kpat-19.12.0.tar.xz) = 3577680 +TIMESTAMP = 1578373876 +SHA256 (KDE/applications/19.12.1/kpat-19.12.1.tar.xz) = cb72a256a2a6a34bd8ee05e09b28f0eedee6643f24f793c5f67a9465040c30c3 +SIZE (KDE/applications/19.12.1/kpat-19.12.1.tar.xz) = 3577416 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 522540) +++ head/games/kreversi/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623380 -SHA256 (KDE/applications/19.12.0/kreversi-19.12.0.tar.xz) = 855dae16b754eaea763c5d28d8fa56d72ad82459d2b7e7fc951d43084ff98ffa -SIZE (KDE/applications/19.12.0/kreversi-19.12.0.tar.xz) = 946104 +TIMESTAMP = 1578373877 +SHA256 (KDE/applications/19.12.1/kreversi-19.12.1.tar.xz) = b81e6544ba23b0869329d734618b3bc4408b585d550985338e6d90bf2d3a17f3 +SIZE (KDE/applications/19.12.1/kreversi-19.12.1.tar.xz) = 945576 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 522540) +++ head/games/kshisen/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623361 -SHA256 (KDE/applications/19.12.0/kshisen-19.12.0.tar.xz) = a650a45d0d614edd9a99b070b5edd642b6a6e2cc528fb74eb076b3a617bcfaab -SIZE (KDE/applications/19.12.0/kshisen-19.12.0.tar.xz) = 823312 +TIMESTAMP = 1578373878 +SHA256 (KDE/applications/19.12.1/kshisen-19.12.1.tar.xz) = a361dfc41595640287dd5b800921859ff17a45f7360e5e2fc6f520cc0e421afa +SIZE (KDE/applications/19.12.1/kshisen-19.12.1.tar.xz) = 823404 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 522540) +++ head/games/ksirk/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623375 -SHA256 (KDE/applications/19.12.0/ksirk-19.12.0.tar.xz) = 796d01962a1de332ba4cb6b513c29455b1f006035e30cd939f27e46a383d5804 -SIZE (KDE/applications/19.12.0/ksirk-19.12.0.tar.xz) = 6997032 +TIMESTAMP = 1578373878 +SHA256 (KDE/applications/19.12.1/ksirk-19.12.1.tar.xz) = 4f71e4ef3b4d2041edd48537f4b475cb505fc54e45b39b81a08c82d4eec7cc8e +SIZE (KDE/applications/19.12.1/ksirk-19.12.1.tar.xz) = 6999100 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 522540) +++ head/games/ksnakeduel/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623364 -SHA256 (KDE/applications/19.12.0/ksnakeduel-19.12.0.tar.xz) = c6dea596aeaf0c71df6e7819dae474a5451272d2c7edc28d7b2ad284be15dcdc -SIZE (KDE/applications/19.12.0/ksnakeduel-19.12.0.tar.xz) = 605824 +TIMESTAMP = 1578373879 +SHA256 (KDE/applications/19.12.1/ksnakeduel-19.12.1.tar.xz) = 73e9c55cce88a6e5d00683c73382ee82db64bfe788c14c3a4eda8decf382188f +SIZE (KDE/applications/19.12.1/ksnakeduel-19.12.1.tar.xz) = 605248 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 522540) +++ head/games/kspaceduel/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623345 -SHA256 (KDE/applications/19.12.0/kspaceduel-19.12.0.tar.xz) = c4dc62fdf6b30510c419860a85c80451f6da8cc485c2e4139b493f495c7b022a -SIZE (KDE/applications/19.12.0/kspaceduel-19.12.0.tar.xz) = 612188 +TIMESTAMP = 1578373880 +SHA256 (KDE/applications/19.12.1/kspaceduel-19.12.1.tar.xz) = 0bc1f1c12bcfc9e5c778918fb9fa644f5c7ec5c3e687c015d45a7c5c31a27834 +SIZE (KDE/applications/19.12.1/kspaceduel-19.12.1.tar.xz) = 611600 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 522540) +++ head/games/ksquares/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623350 -SHA256 (KDE/applications/19.12.0/ksquares-19.12.0.tar.xz) = d1d755d4be82d7eda1f8cbcc75ef29715f9e0b970013049a597a570bc6650c6e -SIZE (KDE/applications/19.12.0/ksquares-19.12.0.tar.xz) = 260788 +TIMESTAMP = 1578373880 +SHA256 (KDE/applications/19.12.1/ksquares-19.12.1.tar.xz) = 955225b9fadbda464bdaf1b59c95c3d12310f84484a296968737e9fb87b37b46 +SIZE (KDE/applications/19.12.1/ksquares-19.12.1.tar.xz) = 261364 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 522540) +++ head/games/ksudoku/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623365 -SHA256 (KDE/applications/19.12.0/ksudoku-19.12.0.tar.xz) = b3d4fe449e76763b9d04b3d15c960e67f55b5b0f9aae607abae52529e06a4182 -SIZE (KDE/applications/19.12.0/ksudoku-19.12.0.tar.xz) = 1650052 +TIMESTAMP = 1578373881 +SHA256 (KDE/applications/19.12.1/ksudoku-19.12.1.tar.xz) = 4dd72a5b0bb0c951508bbe2c60ce280efcd0414899e025a2ca4d92336576ec2a +SIZE (KDE/applications/19.12.1/ksudoku-19.12.1.tar.xz) = 1649256 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 522540) +++ head/games/ktuberling/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623386 -SHA256 (KDE/applications/19.12.0/ktuberling-19.12.0.tar.xz) = 36e3b55734f53c519508f37997386e3509e39f3ca84825672406f24ef236f46e -SIZE (KDE/applications/19.12.0/ktuberling-19.12.0.tar.xz) = 70729804 +TIMESTAMP = 1578373882 +SHA256 (KDE/applications/19.12.1/ktuberling-19.12.1.tar.xz) = 4c0d594ef72bd2dda5d42daf0f8b430319cbea6d28ba5c9725895b1221cdaace +SIZE (KDE/applications/19.12.1/ktuberling-19.12.1.tar.xz) = 70754024 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 522540) +++ head/games/kubrick/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623378 -SHA256 (KDE/applications/19.12.0/kubrick-19.12.0.tar.xz) = 18b00b3c2ea3f000462b475faaefe4de694a2f45f178e4f576c900436a507d0f -SIZE (KDE/applications/19.12.0/kubrick-19.12.0.tar.xz) = 317156 +TIMESTAMP = 1578373883 +SHA256 (KDE/applications/19.12.1/kubrick-19.12.1.tar.xz) = 485e7e4a30b01cb2661c640214bdc71a3e0a8b61a9071c64ffbbe75e2270af3c +SIZE (KDE/applications/19.12.1/kubrick-19.12.1.tar.xz) = 317568 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 522540) +++ head/games/libkdegames/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623372 -SHA256 (KDE/applications/19.12.0/libkdegames-19.12.0.tar.xz) = 4498e462f248e44bbd7fe28e5c8a47d43cdd058e813c47e8fe228b8d2439ad1f -SIZE (KDE/applications/19.12.0/libkdegames-19.12.0.tar.xz) = 6384612 +TIMESTAMP = 1578373883 +SHA256 (KDE/applications/19.12.1/libkdegames-19.12.1.tar.xz) = 317513544e08d03b2381bdb4c0bcd24c844dd8af7ccc4896569dd05933061d9c +SIZE (KDE/applications/19.12.1/libkdegames-19.12.1.tar.xz) = 6374340 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 522540) +++ head/games/libkmahjongg/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623376 -SHA256 (KDE/applications/19.12.0/libkmahjongg-19.12.0.tar.xz) = 56e94db922f2b0613721e6ce52ba6dc1825d4a212613b1ff78daed6b9ca95989 -SIZE (KDE/applications/19.12.0/libkmahjongg-19.12.0.tar.xz) = 1685412 +TIMESTAMP = 1578373884 +SHA256 (KDE/applications/19.12.1/libkmahjongg-19.12.1.tar.xz) = e6a107a32c01c654a2372fda984724b4acd59dbc2902f3f9c7a7d9e14587639c +SIZE (KDE/applications/19.12.1/libkmahjongg-19.12.1.tar.xz) = 1683948 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 522540) +++ head/games/lskat/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623369 -SHA256 (KDE/applications/19.12.0/lskat-19.12.0.tar.xz) = e15ac235b483851bd1cdd913217e4c9aefe6ebf67f0240b906c4b65c48aff52e -SIZE (KDE/applications/19.12.0/lskat-19.12.0.tar.xz) = 1219244 +TIMESTAMP = 1578373885 +SHA256 (KDE/applications/19.12.1/lskat-19.12.1.tar.xz) = 0aa36c4cc554b708f7334b32362831537ea52db81b8480b80ffac5c27a041e8f +SIZE (KDE/applications/19.12.1/lskat-19.12.1.tar.xz) = 1219228 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 522540) +++ head/games/palapeli/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623363 -SHA256 (KDE/applications/19.12.0/palapeli-19.12.0.tar.xz) = 3df4202ae3fecd1dc425797b8017169d52dcf0fcb9fd3f2ba34876aa36f99054 -SIZE (KDE/applications/19.12.0/palapeli-19.12.0.tar.xz) = 2069068 +TIMESTAMP = 1578373885 +SHA256 (KDE/applications/19.12.1/palapeli-19.12.1.tar.xz) = ea4d9dd576066a610444680f3e8686f242bc8be9222020423acab52ec98a185f +SIZE (KDE/applications/19.12.1/palapeli-19.12.1.tar.xz) = 2070948 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 522540) +++ head/games/picmi/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623393 -SHA256 (KDE/applications/19.12.0/picmi-19.12.0.tar.xz) = c007015f876d85afd0077b25f268a743e49b13c7004a8a54fd97e99fab93ef18 -SIZE (KDE/applications/19.12.0/picmi-19.12.0.tar.xz) = 1358488 +TIMESTAMP = 1578373886 +SHA256 (KDE/applications/19.12.1/picmi-19.12.1.tar.xz) = 5428ef9add8dd9479f319b8c08fbfefca9ee34fbf503bee1c55b04ecf82ae9f9 +SIZE (KDE/applications/19.12.1/picmi-19.12.1.tar.xz) = 1358152 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 522540) +++ head/graphics/gwenview/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623395 -SHA256 (KDE/applications/19.12.0/gwenview-19.12.0.tar.xz) = 5510c8068ea91c4e0d1f0028e36533a65f26d7967bbd774fcd81de43d7a3047a -SIZE (KDE/applications/19.12.0/gwenview-19.12.0.tar.xz) = 5735360 +TIMESTAMP = 1578373887 +SHA256 (KDE/applications/19.12.1/gwenview-19.12.1.tar.xz) = ed36590a0193fbe22f08c1a026e58f86a3067f516b3a894f29b72aa229967c84 +SIZE (KDE/applications/19.12.1/gwenview-19.12.1.tar.xz) = 5736512 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 522540) +++ head/graphics/kamera/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623405 -SHA256 (KDE/applications/19.12.0/kamera-19.12.0.tar.xz) = 8337999dc5f9b6e8b51ee51a80a6a6ad9f3cf6932ca059b99c6027a64def923b -SIZE (KDE/applications/19.12.0/kamera-19.12.0.tar.xz) = 103492 +TIMESTAMP = 1578373888 +SHA256 (KDE/applications/19.12.1/kamera-19.12.1.tar.xz) = 831d7b3d7ffdc73b03116b564fb1a23c651d468cae97c1c31791f6df1a8890ac +SIZE (KDE/applications/19.12.1/kamera-19.12.1.tar.xz) = 103856 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 522540) +++ head/graphics/kcolorchooser/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623402 -SHA256 (KDE/applications/19.12.0/kcolorchooser-19.12.0.tar.xz) = fe49f5eeffe806a044c09194d44c335d337ca233e91402f206072cf12e102446 -SIZE (KDE/applications/19.12.0/kcolorchooser-19.12.0.tar.xz) = 21480 +TIMESTAMP = 1578373889 +SHA256 (KDE/applications/19.12.1/kcolorchooser-19.12.1.tar.xz) = 713d1151f45382d8a889187ebb02f8e73ffbf28ac8abea0e03626888711d2c22 +SIZE (KDE/applications/19.12.1/kcolorchooser-19.12.1.tar.xz) = 21524 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 522540) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623406 -SHA256 (KDE/applications/19.12.0/kdegraphics-mobipocket-19.12.0.tar.xz) = c0f59133d66084b3341e02cfe91341cfb5722166b24a43e6e7b4f8a11badbf82 -SIZE (KDE/applications/19.12.0/kdegraphics-mobipocket-19.12.0.tar.xz) = 15840 +TIMESTAMP = 1578373889 +SHA256 (KDE/applications/19.12.1/kdegraphics-mobipocket-19.12.1.tar.xz) = 546d11af89e97831cc09868051142d4180e9621cc537c2941272b42a85e71c6a +SIZE (KDE/applications/19.12.1/kdegraphics-mobipocket-19.12.1.tar.xz) = 15976 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 522540) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623400 -SHA256 (KDE/applications/19.12.0/svgpart-19.12.0.tar.xz) = 08696a77c7e31d86cd398e6d1616340b5a0d34d91760bb6aeea6a7bd08a665ce -SIZE (KDE/applications/19.12.0/svgpart-19.12.0.tar.xz) = 21256 +TIMESTAMP = 1578373890 +SHA256 (KDE/applications/19.12.1/svgpart-19.12.1.tar.xz) = 6083457999121ead13b6c267211a78ea04c925d6f9f7447b31677c0b49f6898b +SIZE (KDE/applications/19.12.1/svgpart-19.12.1.tar.xz) = 21272 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 522540) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623399 -SHA256 (KDE/applications/19.12.0/kdegraphics-thumbnailers-19.12.0.tar.xz) = 98e36eee62e7ec64dc4a1c90a519ae7696e83291a6c8e9e8f8d0eff1230dfec9 -SIZE (KDE/applications/19.12.0/kdegraphics-thumbnailers-19.12.0.tar.xz) = 46188 +TIMESTAMP = 1578373891 +SHA256 (KDE/applications/19.12.1/kdegraphics-thumbnailers-19.12.1.tar.xz) = a91335c11637a351d3ea8798f5519ac5596d655aec92266e46ed2a1bab46a299 +SIZE (KDE/applications/19.12.1/kdegraphics-thumbnailers-19.12.1.tar.xz) = 46080 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 522540) +++ head/graphics/kimagemapeditor/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623401 -SHA256 (KDE/applications/19.12.0/kimagemapeditor-19.12.0.tar.xz) = 3fd6a0ec4136026a9a928d0a190f882b5678aead3671366859fa6963d7bf9fc1 -SIZE (KDE/applications/19.12.0/kimagemapeditor-19.12.0.tar.xz) = 1071484 +TIMESTAMP = 1578373891 +SHA256 (KDE/applications/19.12.1/kimagemapeditor-19.12.1.tar.xz) = 9869f3a060dc44f2fad0646fa9c0f1c2924d68c3cc3de5147170456f27a39e77 +SIZE (KDE/applications/19.12.1/kimagemapeditor-19.12.1.tar.xz) = 1070984 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 522540) +++ head/graphics/kipi-plugins/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623398 -SHA256 (KDE/applications/19.12.0/kipi-plugins-19.12.0.tar.xz) = aa7c490a938768f2b54109cef8b9546d972035d403b3faf34b9abe3705946a12 -SIZE (KDE/applications/19.12.0/kipi-plugins-19.12.0.tar.xz) = 1631208 +TIMESTAMP = 1578373892 +SHA256 (KDE/applications/19.12.1/kipi-plugins-19.12.1.tar.xz) = bcd27ab29b491f13116a156e403126d04ffbaa352b581eca7fb0904e13c5dabe +SIZE (KDE/applications/19.12.1/kipi-plugins-19.12.1.tar.xz) = 1632168 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 522540) +++ head/graphics/kolourpaint/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623407 -SHA256 (KDE/applications/19.12.0/kolourpaint-19.12.0.tar.xz) = bbe2ec76db67caf90060dd03af3f3801f8d95e60945f544c88402f26d79bbabb -SIZE (KDE/applications/19.12.0/kolourpaint-19.12.0.tar.xz) = 5653480 +TIMESTAMP = 1578373893 +SHA256 (KDE/applications/19.12.1/kolourpaint-19.12.1.tar.xz) = a2db2312ddf79024358309da8b70cb2b9979d208372ce5f0960f662b8aab2518 +SIZE (KDE/applications/19.12.1/kolourpaint-19.12.1.tar.xz) = 5651460 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 522540) +++ head/graphics/kqtquickcharts/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576127067 -SHA256 (KDE/applications/19.12.0/kqtquickcharts-19.12.0.tar.xz) = 134d96368bfdc5b24f12f352ea502257aa8edc007ffcf861525d117d15702234 -SIZE (KDE/applications/19.12.0/kqtquickcharts-19.12.0.tar.xz) = 25648 +TIMESTAMP = 1578373893 +SHA256 (KDE/applications/19.12.1/kqtquickcharts-19.12.1.tar.xz) = 641f5c993e627dd6d0778066016d20196b7502e34ab793fcf17dd6b226d08ae8 +SIZE (KDE/applications/19.12.1/kqtquickcharts-19.12.1.tar.xz) = 25624 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 522540) +++ head/graphics/libkdcraw/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623396 -SHA256 (KDE/applications/19.12.0/libkdcraw-19.12.0.tar.xz) = 42faf081dddeef145abba46774ed240e6f35cc693c16eee76ff931c7c28c851c -SIZE (KDE/applications/19.12.0/libkdcraw-19.12.0.tar.xz) = 42044 +TIMESTAMP = 1578373894 +SHA256 (KDE/applications/19.12.1/libkdcraw-19.12.1.tar.xz) = bbdd5b1b9b40780b5f2be567d9ba0ab163fe7dcc7121070b788106e0fe966c1e +SIZE (KDE/applications/19.12.1/libkdcraw-19.12.1.tar.xz) = 42120 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 522540) +++ head/graphics/libkexiv2/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623410 -SHA256 (KDE/applications/19.12.0/libkexiv2-19.12.0.tar.xz) = 3bd7c155c4b7d01f8b1af7ee0d11c9efed18399a239135a25b570ff8650239b7 -SIZE (KDE/applications/19.12.0/libkexiv2-19.12.0.tar.xz) = 64004 +TIMESTAMP = 1578373895 +SHA256 (KDE/applications/19.12.1/libkexiv2-19.12.1.tar.xz) = 53b9a4ecda0f76df1a5b9f7b8184b85e847838cf97e4ad3036a6c5bb719993e5 +SIZE (KDE/applications/19.12.1/libkexiv2-19.12.1.tar.xz) = 64552 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 522540) +++ head/graphics/libkipi/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623408 -SHA256 (KDE/applications/19.12.0/libkipi-19.12.0.tar.xz) = 2bc541e1e8150f9054a8c30b7d2d45ec6571eee7ef6b5113fc301811ab7e051b -SIZE (KDE/applications/19.12.0/libkipi-19.12.0.tar.xz) = 103372 +TIMESTAMP = 1578373895 +SHA256 (KDE/applications/19.12.1/libkipi-19.12.1.tar.xz) = 79f0a994b348467353425aea60dc4f4234c9a259cffcb55ac60d8c195bd0122c +SIZE (KDE/applications/19.12.1/libkipi-19.12.1.tar.xz) = 103284 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 522540) +++ head/graphics/libksane/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623403 -SHA256 (KDE/applications/19.12.0/libksane-19.12.0.tar.xz) = 5fdb8903ad4e711a13273002f9818d46e8c64add840f4fd232aad4616a5cdd6c -SIZE (KDE/applications/19.12.0/libksane-19.12.0.tar.xz) = 138940 +TIMESTAMP = 1578373896 +SHA256 (KDE/applications/19.12.1/libksane-19.12.1.tar.xz) = 5a5998996848e83c80589c8ed0b1a6c1fa48bb61686288d199d831ac810e1603 +SIZE (KDE/applications/19.12.1/libksane-19.12.1.tar.xz) = 138888 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 522540) +++ head/graphics/okular/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623394 -SHA256 (KDE/applications/19.12.0/okular-19.12.0.tar.xz) = a17a8b5e46ac2cee103a6d41d4ceca9d3b557f6b80355a15b447a282f2c96454 -SIZE (KDE/applications/19.12.0/okular-19.12.0.tar.xz) = 7200656 +TIMESTAMP = 1578373897 +SHA256 (KDE/applications/19.12.1/okular-19.12.1.tar.xz) = 485044127c6bbe0d4c71f1518da15050957c06b8fe36633462367d15d684d4bd +SIZE (KDE/applications/19.12.1/okular-19.12.1.tar.xz) = 7203952 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 522540) +++ head/graphics/spectacle/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623404 -SHA256 (KDE/applications/19.12.0/spectacle-19.12.0.tar.xz) = c848356f080be7759310d826c37ad898338c42ae828768959202453555f01797 -SIZE (KDE/applications/19.12.0/spectacle-19.12.0.tar.xz) = 651208 +TIMESTAMP = 1578373897 +SHA256 (KDE/applications/19.12.1/spectacle-19.12.1.tar.xz) = 140f388c531043eeefff8d639eb468d1ed33397925021c6809c0c8a799bb25c9 +SIZE (KDE/applications/19.12.1/spectacle-19.12.1.tar.xz) = 651628 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 522540) +++ head/japanese/kiten/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623414 -SHA256 (KDE/applications/19.12.0/kiten-19.12.0.tar.xz) = 69606c85c22d6c4b5e0de0d63fcd85c1d47aceed2b2356e2bc9f21b380dee1a9 -SIZE (KDE/applications/19.12.0/kiten-19.12.0.tar.xz) = 11289024 +TIMESTAMP = 1578373898 +SHA256 (KDE/applications/19.12.1/kiten-19.12.1.tar.xz) = abee050c05b54fae25562237b91a14156dabcb26ea142c714b5ec9e1907f54f3 +SIZE (KDE/applications/19.12.1/kiten-19.12.1.tar.xz) = 11288524 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 522540) +++ head/lang/kross-interpreters/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623411 -SHA256 (KDE/applications/19.12.0/kross-interpreters-19.12.0.tar.xz) = b2c5d5069f802023902517c9e880b34971223831f820411e24eab67c6fbceae3 -SIZE (KDE/applications/19.12.0/kross-interpreters-19.12.0.tar.xz) = 151652 +TIMESTAMP = 1578373899 +SHA256 (KDE/applications/19.12.1/kross-interpreters-19.12.1.tar.xz) = c5ec40971befd1d214d80c8c2ced3e30aaadfd2d4000ea782751f769783f8130 +SIZE (KDE/applications/19.12.1/kross-interpreters-19.12.1.tar.xz) = 151816 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 522540) +++ head/lang/kturtle/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623412 -SHA256 (KDE/applications/19.12.0/kturtle-19.12.0.tar.xz) = af1c5a534f5ac63920a041d234f4a942af18d4b62fc949e1cdf43e663ab2853f -SIZE (KDE/applications/19.12.0/kturtle-19.12.0.tar.xz) = 1829452 +TIMESTAMP = 1578373899 +SHA256 (KDE/applications/19.12.1/kturtle-19.12.1.tar.xz) = de10ea1ee142aea6fba8dee0d27d2e431aa806c6d7be4f5b5727cba8984e8d51 +SIZE (KDE/applications/19.12.1/kturtle-19.12.1.tar.xz) = 1828692 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 522540) +++ head/math/analitza/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623420 -SHA256 (KDE/applications/19.12.0/analitza-19.12.0.tar.xz) = b227607549e331d2c291ae078e0568fbc7ae4750ec5450a3b50160aa116f7cb2 -SIZE (KDE/applications/19.12.0/analitza-19.12.0.tar.xz) = 333132 +TIMESTAMP = 1578373900 +SHA256 (KDE/applications/19.12.1/analitza-19.12.1.tar.xz) = 0c6c4ee1b4546ab84eb9503220ca0aa09f80cdd7cea3b89201db1d5aac2c4ce5 +SIZE (KDE/applications/19.12.1/analitza-19.12.1.tar.xz) = 333156 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 522540) +++ head/math/cantor/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623421 -SHA256 (KDE/applications/19.12.0/cantor-19.12.0.tar.xz) = 58af0ddc0b8b731970998cdd67c926f37c5b7609019c5923f8d7724c3ac6e5c5 -SIZE (KDE/applications/19.12.0/cantor-19.12.0.tar.xz) = 9015328 +TIMESTAMP = 1578373901 +SHA256 (KDE/applications/19.12.1/cantor-19.12.1.tar.xz) = 509ebe0bc173124d28e29483effa07985eef24cdd989e5e4e1fc233632cdf568 +SIZE (KDE/applications/19.12.1/cantor-19.12.1.tar.xz) = 9011172 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 522540) +++ head/math/kalgebra/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623427 -SHA256 (KDE/applications/19.12.0/kalgebra-19.12.0.tar.xz) = 91a0f2a012010f1ca22eb5fdafa9b84e2a62a37399c040df59fdc0c8b466eaf9 -SIZE (KDE/applications/19.12.0/kalgebra-19.12.0.tar.xz) = 1158468 +TIMESTAMP = 1578373902 +SHA256 (KDE/applications/19.12.1/kalgebra-19.12.1.tar.xz) = 49d623186800eb8f6fbb91eb43fb14dff78e112624c9cda6b331d494d610b16a +SIZE (KDE/applications/19.12.1/kalgebra-19.12.1.tar.xz) = 1156408 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 522540) +++ head/math/kbruch/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623425 -SHA256 (KDE/applications/19.12.0/kbruch-19.12.0.tar.xz) = ce64ae5eb90fdd82e1180e58a3fbedc734a24e85ed073e94e4427b1353a860c2 -SIZE (KDE/applications/19.12.0/kbruch-19.12.0.tar.xz) = 5605596 +TIMESTAMP = 1578373902 +SHA256 (KDE/applications/19.12.1/kbruch-19.12.1.tar.xz) = 94f9951c0ee3b4aea6d649f971f2d946d462b916a76e4e76ddafa809ce7e5550 +SIZE (KDE/applications/19.12.1/kbruch-19.12.1.tar.xz) = 5605632 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 522540) +++ head/math/kcalc/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623422 -SHA256 (KDE/applications/19.12.0/kcalc-19.12.0.tar.xz) = 437e972c98c6409a8788a0fcdb6f8738e005f9b5f1dc312998325d2a36b33b22 -SIZE (KDE/applications/19.12.0/kcalc-19.12.0.tar.xz) = 375596 +TIMESTAMP = 1578373903 +SHA256 (KDE/applications/19.12.1/kcalc-19.12.1.tar.xz) = 51630cd5c6d7ebbf35fb91419acfe9b2d2719ebfcdc2fff8358dbfaa2cecda57 +SIZE (KDE/applications/19.12.1/kcalc-19.12.1.tar.xz) = 374860 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 522540) +++ head/math/kig/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623426 -SHA256 (KDE/applications/19.12.0/kig-19.12.0.tar.xz) = 68a9faa78287b30de302161286c597c9646f7b0fb1d66f915da5c67d9c30e45a -SIZE (KDE/applications/19.12.0/kig-19.12.0.tar.xz) = 3498676 +TIMESTAMP = 1578509038 +SHA256 (KDE/applications/19.12.1/kig-19.12.1.tar.xz) = 507d89cddc0e128ab398ce0f551af22af0ba1583a4419574296cfefb96d944ee +SIZE (KDE/applications/19.12.1/kig-19.12.1.tar.xz) = 3501216 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 522540) +++ head/math/kmplot/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623424 -SHA256 (KDE/applications/19.12.0/kmplot-19.12.0.tar.xz) = fe3312805a1b4e617eaa80ebd5a44f62e1e4a189cbcf534a9287031c8e15ff5c -SIZE (KDE/applications/19.12.0/kmplot-19.12.0.tar.xz) = 3056340 +TIMESTAMP = 1578373904 +SHA256 (KDE/applications/19.12.1/kmplot-19.12.1.tar.xz) = b82d9f9d4f3d3447e9125b42918819fe8effd5658d9a385da79e81e12f7466cf +SIZE (KDE/applications/19.12.1/kmplot-19.12.1.tar.xz) = 3054948 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 522540) +++ head/math/rocs/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623423 -SHA256 (KDE/applications/19.12.0/rocs-19.12.0.tar.xz) = 05c4c7436c55a7a4078ad96a699a26d55f9552eaecff3491447d1a1e6d6c92f9 -SIZE (KDE/applications/19.12.0/rocs-19.12.0.tar.xz) = 1523364 +TIMESTAMP = 1578373905 +SHA256 (KDE/applications/19.12.1/rocs-19.12.1.tar.xz) = cc9ff080b05bd6c48ee438c968917d8eb6f6eccb45ca70b45c5e53dce396bb45 +SIZE (KDE/applications/19.12.1/rocs-19.12.1.tar.xz) = 1523004 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 522540) +++ head/misc/artikulate/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623534 -SHA256 (KDE/applications/19.12.0/artikulate-19.12.0.tar.xz) = 2de2ae8635a15d1442ccd3f657db0dfd705a436e45f3383283e66904badfd1c1 -SIZE (KDE/applications/19.12.0/artikulate-19.12.0.tar.xz) = 4008004 +TIMESTAMP = 1578373906 +SHA256 (KDE/applications/19.12.1/artikulate-19.12.1.tar.xz) = 407f72193c7c4ec3f8ac7fa93889803f2ec6523aebb59bdf9a9210e9fac0ee7d +SIZE (KDE/applications/19.12.1/artikulate-19.12.1.tar.xz) = 4004664 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 522540) +++ head/misc/kdeedu-data/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623535 -SHA256 (KDE/applications/19.12.0/kdeedu-data-19.12.0.tar.xz) = ca1911b02f4a90a9e4911a5287733024e0d23d35cfe610f4b6b8bc387ecc2de3 -SIZE (KDE/applications/19.12.0/kdeedu-data-19.12.0.tar.xz) = 326172 +TIMESTAMP = 1578373906 +SHA256 (KDE/applications/19.12.1/kdeedu-data-19.12.1.tar.xz) = d140f048e1ca8bd777b4a431904b3313a86446a5fd04e1f9c4e1fb4641a09b15 +SIZE (KDE/applications/19.12.1/kdeedu-data-19.12.1.tar.xz) = 327120 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 522540) +++ head/misc/kgeography/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623533 -SHA256 (KDE/applications/19.12.0/kgeography-19.12.0.tar.xz) = 02b84721151cc605a04259b8701c9c9a5c64aa51b0b4500762696a31cccc1d6d -SIZE (KDE/applications/19.12.0/kgeography-19.12.0.tar.xz) = 10889136 +TIMESTAMP = 1578373907 +SHA256 (KDE/applications/19.12.1/kgeography-19.12.1.tar.xz) = 47f809fdb6da503c0b00f5d2052f9def3af0964ace45325e683227a1971c3a1b +SIZE (KDE/applications/19.12.1/kgeography-19.12.1.tar.xz) = 10913756 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 522540) +++ head/misc/klettres/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623530 -SHA256 (KDE/applications/19.12.0/klettres-19.12.0.tar.xz) = 5bdd0b68954fb43dce1a34248daf17b73ac5980e6fb798fb946bb0ec653c0261 -SIZE (KDE/applications/19.12.0/klettres-19.12.0.tar.xz) = 40139280 +TIMESTAMP = 1578373908 +SHA256 (KDE/applications/19.12.1/klettres-19.12.1.tar.xz) = 4f103d85918d40e0a3ffc451bf3862c45b37b8bd2453e6ee7d21d4c738967c36 +SIZE (KDE/applications/19.12.1/klettres-19.12.1.tar.xz) = 40136336 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 522540) +++ head/misc/ktouch/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623531 -SHA256 (KDE/applications/19.12.0/ktouch-19.12.0.tar.xz) = 721682cac4122054a31eedafa66afb9d98abd56c83d4b230a79c4c86a9adf15f -SIZE (KDE/applications/19.12.0/ktouch-19.12.0.tar.xz) = 4935588 +TIMESTAMP = 1578373908 +SHA256 (KDE/applications/19.12.1/ktouch-19.12.1.tar.xz) = 64b8a025f82b951c69c3be7aa7d3c23f14ccef9ed5e900776eb01462cff9a99f +SIZE (KDE/applications/19.12.1/ktouch-19.12.1.tar.xz) = 4932928 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 522540) +++ head/misc/kwordquiz/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623536 -SHA256 (KDE/applications/19.12.0/kwordquiz-19.12.0.tar.xz) = 9ae6281468c9745d16a0796477cad5155da422e144bc01e61e0434e0acfb7209 -SIZE (KDE/applications/19.12.0/kwordquiz-19.12.0.tar.xz) = 4170736 +TIMESTAMP = 1578373909 +SHA256 (KDE/applications/19.12.1/kwordquiz-19.12.1.tar.xz) = 8ee204de56fe2bf33e11d19b9c0c21d7e3dcf26bf550f9dffa79b22a3082659f +SIZE (KDE/applications/19.12.1/kwordquiz-19.12.1.tar.xz) = 4171084 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 522540) +++ head/misc/libkeduvocdocument/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623535 -SHA256 (KDE/applications/19.12.0/libkeduvocdocument-19.12.0.tar.xz) = 1dda2988d9b80a213e337f43dca88a77d93790e007c7d3f88db0f930a3a24f5d -SIZE (KDE/applications/19.12.0/libkeduvocdocument-19.12.0.tar.xz) = 211160 +TIMESTAMP = 1578373910 +SHA256 (KDE/applications/19.12.1/libkeduvocdocument-19.12.1.tar.xz) = a0e3921dab9d892d5efcddfbca548f230b508fc81ab4d7735c7610a710791816 +SIZE (KDE/applications/19.12.1/libkeduvocdocument-19.12.1.tar.xz) = 211248 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 522540) +++ head/misc/parley/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623531 -SHA256 (KDE/applications/19.12.0/parley-19.12.0.tar.xz) = a65f9ccc4ae3263af07c0ed009ac4a87388e2131a8aee8a98b4fe60a5b69745a -SIZE (KDE/applications/19.12.0/parley-19.12.0.tar.xz) = 8833052 +TIMESTAMP = 1578373910 +SHA256 (KDE/applications/19.12.1/parley-19.12.1.tar.xz) = 54b91178a9bd1ff9c1817bd0df69a3a4bb9e4f3488f052034dd45e729f1325b6 +SIZE (KDE/applications/19.12.1/parley-19.12.1.tar.xz) = 8833140 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 522540) +++ head/multimedia/dragon/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623489 -SHA256 (KDE/applications/19.12.0/dragon-19.12.0.tar.xz) = 1b1339778be914c05d6c231633cfb3d01fb8c4bab1a90a7327250e41b4e1016b -SIZE (KDE/applications/19.12.0/dragon-19.12.0.tar.xz) = 1352108 +TIMESTAMP = 1578373911 +SHA256 (KDE/applications/19.12.1/dragon-19.12.1.tar.xz) = a804ae2089c0e96700e91d90ba2100d9a42a81a128a3fdbb037ed94c31f380cd +SIZE (KDE/applications/19.12.1/dragon-19.12.1.tar.xz) = 1351124 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 522540) +++ head/multimedia/kamoso/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623488 -SHA256 (KDE/applications/19.12.0/kamoso-19.12.0.tar.xz) = 1e497f95b69534a23834e041dd8b5d218d0d50bd75038c4e336cf2949a421dbc -SIZE (KDE/applications/19.12.0/kamoso-19.12.0.tar.xz) = 203128 +TIMESTAMP = 1578373911 +SHA256 (KDE/applications/19.12.1/kamoso-19.12.1.tar.xz) = c1776bf7f8eafd9f4c501aabc0df30035a0f1d40951e525312aa257e67cf74a7 +SIZE (KDE/applications/19.12.1/kamoso-19.12.1.tar.xz) = 202588 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 522540) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623487 -SHA256 (KDE/applications/19.12.0/ffmpegthumbs-19.12.0.tar.xz) = e447be65d522dab4f48938f52c88f37574b0f1b41b68bc45282c5f9e0eaa6025 -SIZE (KDE/applications/19.12.0/ffmpegthumbs-19.12.0.tar.xz) = 27008 +TIMESTAMP = 1578373912 +SHA256 (KDE/applications/19.12.1/ffmpegthumbs-19.12.1.tar.xz) = 5f7853788c07d409bc2dd2fd7c9afab4cd847f3d2dc6db4dc30cfd78e762bdbd +SIZE (KDE/applications/19.12.1/ffmpegthumbs-19.12.1.tar.xz) = 27016 Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 522540) +++ head/multimedia/kdenlive/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576095071 -SHA256 (KDE/applications/19.12.0/kdenlive-19.12.0.tar.xz) = 4f3f434a89169a948c3ea402df8333ebaef2f24dc23247be0244538c856c7717 -SIZE (KDE/applications/19.12.0/kdenlive-19.12.0.tar.xz) = 11428756 +TIMESTAMP = 1578373913 +SHA256 (KDE/applications/19.12.1/kdenlive-19.12.1.tar.xz) = fccf34a4660ce8a78ceefe8a4b9dd93d104f6871976d991ceec769366627dc77 +SIZE (KDE/applications/19.12.1/kdenlive-19.12.1.tar.xz) = 11415280 Index: head/multimedia/kdenlive/pkg-plist =================================================================== --- head/multimedia/kdenlive/pkg-plist (revision 522540) +++ head/multimedia/kdenlive/pkg-plist (revision 522541) @@ -1,382 +1,383 @@ bin/kdenlive bin/kdenlive_render etc/xdg/kdenlive_keyboardschemes.knsrc etc/xdg/kdenlive_renderprofiles.knsrc etc/xdg/kdenlive_titles.knsrc etc/xdg/kdenlive_wipes.knsrc %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/COPYING %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/banner.png %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dust.xml +%%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/selectivecolor.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/unsharp.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/metadata.properties %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 522540) +++ head/net/akonadi-calendar/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623517 -SHA256 (KDE/applications/19.12.0/akonadi-calendar-19.12.0.tar.xz) = 84671189a5ad87259f15c54f673954f7496a6043a3efedaf2e2376b0af5ff6d5 -SIZE (KDE/applications/19.12.0/akonadi-calendar-19.12.0.tar.xz) = 331480 +TIMESTAMP = 1578373923 +SHA256 (KDE/applications/19.12.1/akonadi-calendar-19.12.1.tar.xz) = 4bec3252bd1a32874a22b28dcb82a2aed533b31e1955ca68803ddf076dbbd5be +SIZE (KDE/applications/19.12.1/akonadi-calendar-19.12.1.tar.xz) = 332620 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 522540) +++ head/net/akonadi-contacts/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623526 -SHA256 (KDE/applications/19.12.0/akonadi-contacts-19.12.0.tar.xz) = 2a7ee314df38fc22d119ee2411a8bb1f9631bd036242589695e32cbf1914f469 -SIZE (KDE/applications/19.12.0/akonadi-contacts-19.12.0.tar.xz) = 393264 +TIMESTAMP = 1578373924 +SHA256 (KDE/applications/19.12.1/akonadi-contacts-19.12.1.tar.xz) = 0fbca91b3251d57291629e441ecf5cdd9b71a56f74f05f6c55a428402d3b4c91 +SIZE (KDE/applications/19.12.1/akonadi-contacts-19.12.1.tar.xz) = 394300 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 522540) +++ head/net/akonadi-mime/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623492 -SHA256 (KDE/applications/19.12.0/akonadi-mime-19.12.0.tar.xz) = 7ef1264e80483172abf9253d8e597c3b53b2f5990a52eddf51f91328c1db2386 -SIZE (KDE/applications/19.12.0/akonadi-mime-19.12.0.tar.xz) = 132972 +TIMESTAMP = 1578373925 +SHA256 (KDE/applications/19.12.1/akonadi-mime-19.12.1.tar.xz) = 9ca3794a36e31a5dd759b741e91420f4910f05b0d726f6e803d365b8ab058f5b +SIZE (KDE/applications/19.12.1/akonadi-mime-19.12.1.tar.xz) = 132600 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 522540) +++ head/net/akonadi-notes/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623506 -SHA256 (KDE/applications/19.12.0/akonadi-notes-19.12.0.tar.xz) = 3c91f2f2b47a786a537aec6037e702756cf77fa8aa0378e9ab9ba59aa08e4e29 -SIZE (KDE/applications/19.12.0/akonadi-notes-19.12.0.tar.xz) = 24424 +TIMESTAMP = 1578373925 +SHA256 (KDE/applications/19.12.1/akonadi-notes-19.12.1.tar.xz) = cf8059cb14eca880c09fc83285576b4d03a8edf0799cebdf42d59084bb6904ca +SIZE (KDE/applications/19.12.1/akonadi-notes-19.12.1.tar.xz) = 24596 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 522540) +++ head/net/akonadi-search/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623520 -SHA256 (KDE/applications/19.12.0/akonadi-search-19.12.0.tar.xz) = d1a4d859b60d6154242cd463d7fed9e82cc4d74ada756f3fa171262b551f38c3 -SIZE (KDE/applications/19.12.0/akonadi-search-19.12.0.tar.xz) = 83116 +TIMESTAMP = 1578373926 +SHA256 (KDE/applications/19.12.1/akonadi-search-19.12.1.tar.xz) = 78a0feaa41d4b474a2e90c74230bc5196349e1c4e72ad46fe341a1cb6e51a5b8 +SIZE (KDE/applications/19.12.1/akonadi-search-19.12.1.tar.xz) = 83184 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 522540) +++ head/net/calendarsupport/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623529 -SHA256 (KDE/applications/19.12.0/calendarsupport-19.12.0.tar.xz) = d8871623d05f039dd14903a9902d158afd6682e0e1100a8d107600e9c3d18d68 -SIZE (KDE/applications/19.12.0/calendarsupport-19.12.0.tar.xz) = 646124 +TIMESTAMP = 1578373927 +SHA256 (KDE/applications/19.12.1/calendarsupport-19.12.1.tar.xz) = 6f5e3282ff385044061320b7ccb4bef80a1848fa890afcbd12e16bd2524a4189 +SIZE (KDE/applications/19.12.1/calendarsupport-19.12.1.tar.xz) = 646696 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 522540) +++ head/net/eventviews/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623521 -SHA256 (KDE/applications/19.12.0/eventviews-19.12.0.tar.xz) = 0583bbe70733596c7f6002d3a856154568d4c039feefaf064ad3cc6db78989b8 -SIZE (KDE/applications/19.12.0/eventviews-19.12.0.tar.xz) = 442640 +TIMESTAMP = 1578373927 +SHA256 (KDE/applications/19.12.1/eventviews-19.12.1.tar.xz) = 5eb73fb2c541a6b073ad231a28abe6affc0cad92f5fd4d36a4b58aba8a46193c +SIZE (KDE/applications/19.12.1/eventviews-19.12.1.tar.xz) = 443808 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 522540) +++ head/net/incidenceeditor/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623500 -SHA256 (KDE/applications/19.12.0/incidenceeditor-19.12.0.tar.xz) = 8b46ee070cb54426fbd7f4ecbfa10cd42018a68a5aae01c0d1f13c628144e715 -SIZE (KDE/applications/19.12.0/incidenceeditor-19.12.0.tar.xz) = 550320 +TIMESTAMP = 1578373928 +SHA256 (KDE/applications/19.12.1/incidenceeditor-19.12.1.tar.xz) = 1f1345db2e518bfe9405df5fa441ece3af1093cbc75066673d252a0760262484 +SIZE (KDE/applications/19.12.1/incidenceeditor-19.12.1.tar.xz) = 550660 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 522540) +++ head/net/kalarmcal/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623524 -SHA256 (KDE/applications/19.12.0/kalarmcal-19.12.0.tar.xz) = 7d3d8820968b2ff42d07ae4731242dac78590e44cbe0e951facb245997766910 -SIZE (KDE/applications/19.12.0/kalarmcal-19.12.0.tar.xz) = 574076 +TIMESTAMP = 1578373929 +SHA256 (KDE/applications/19.12.1/kalarmcal-19.12.1.tar.xz) = 18644d5cbc61b414675de66dd25d9a1dd30b0e93851f6223292f052d30a365e6 +SIZE (KDE/applications/19.12.1/kalarmcal-19.12.1.tar.xz) = 574488 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 522540) +++ head/net/kblog/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623518 -SHA256 (KDE/applications/19.12.0/kblog-19.12.0.tar.xz) = 21f43f0a67206a94de61fe73a1b31be6a59d70d1f3584270d3cdc414fe58669b -SIZE (KDE/applications/19.12.0/kblog-19.12.0.tar.xz) = 73120 +TIMESTAMP = 1578373929 +SHA256 (KDE/applications/19.12.1/kblog-19.12.1.tar.xz) = 6385ecfc024cf554a55e2840c3faf6b9e6ee81eb3536d5632899d32aecd54b9f +SIZE (KDE/applications/19.12.1/kblog-19.12.1.tar.xz) = 73080 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 522540) +++ head/net/kcalutils/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623491 -SHA256 (KDE/applications/19.12.0/kcalutils-19.12.0.tar.xz) = 2886fa1641992f01ef09f575879ba54f752518b4511ad5b1fb695cf484bcbdcb -SIZE (KDE/applications/19.12.0/kcalutils-19.12.0.tar.xz) = 322156 +TIMESTAMP = 1578373930 +SHA256 (KDE/applications/19.12.1/kcalutils-19.12.1.tar.xz) = 0298e92d84d9f4b612ea1a27abee1368bc624af2bc5bc4b5eb1053a27575ea04 +SIZE (KDE/applications/19.12.1/kcalutils-19.12.1.tar.xz) = 322252 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 522540) +++ head/net/kdav/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623493 -SHA256 (KDE/applications/19.12.0/kdav-19.12.0.tar.xz) = 2b3c518c1c74bcd6d73d433c50849cac4ff1e4bdf5e97b6f5a6eed39dad56bbe -SIZE (KDE/applications/19.12.0/kdav-19.12.0.tar.xz) = 54460 +TIMESTAMP = 1578373931 +SHA256 (KDE/applications/19.12.1/kdav-19.12.1.tar.xz) = 5059a295f3ecd9046da6f5ecadab596b3e47c75c5090650a1d6cd1f86a8b7498 +SIZE (KDE/applications/19.12.1/kdav-19.12.1.tar.xz) = 54336 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 522540) +++ head/net/kdenetwork-filesharing/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623515 -SHA256 (KDE/applications/19.12.0/kdenetwork-filesharing-19.12.0.tar.xz) = 81a97f937846d573e7d8da25acf867ee97ae418bba352599975cba47c73ca611 -SIZE (KDE/applications/19.12.0/kdenetwork-filesharing-19.12.0.tar.xz) = 317596 +TIMESTAMP = 1578373931 +SHA256 (KDE/applications/19.12.1/kdenetwork-filesharing-19.12.1.tar.xz) = 823e31424998e96084eeb909dfb7ee6a8e8e6d33b5d2a57ada7d583350967684 +SIZE (KDE/applications/19.12.1/kdenetwork-filesharing-19.12.1.tar.xz) = 317620 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 522540) +++ head/net/kget/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623510 -SHA256 (KDE/applications/19.12.0/kget-19.12.0.tar.xz) = 90c14c1a31db5004fdbdddddc764a41cce3fbc03026900e4d50d43af126e6e1f -SIZE (KDE/applications/19.12.0/kget-19.12.0.tar.xz) = 5238488 +TIMESTAMP = 1578373932 +SHA256 (KDE/applications/19.12.1/kget-19.12.1.tar.xz) = 33b043857b3d1c55d877d1c3af2bcc46feefe15019b7af40a9951c16e288658c +SIZE (KDE/applications/19.12.1/kget-19.12.1.tar.xz) = 5239972 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 522540) +++ head/net/kidentitymanagement/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623498 -SHA256 (KDE/applications/19.12.0/kidentitymanagement-19.12.0.tar.xz) = bff240fea3f22d6137c7eabbc4161401f6c67a6501c16233812482cdd204442a -SIZE (KDE/applications/19.12.0/kidentitymanagement-19.12.0.tar.xz) = 149464 +TIMESTAMP = 1578373933 +SHA256 (KDE/applications/19.12.1/kidentitymanagement-19.12.1.tar.xz) = 7df38592610e0ed74c55baf6670331d07b2df0c98484d5f8cf8f135b6d229702 +SIZE (KDE/applications/19.12.1/kidentitymanagement-19.12.1.tar.xz) = 149320 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 522540) +++ head/net/kimap/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623508 -SHA256 (KDE/applications/19.12.0/kimap-19.12.0.tar.xz) = 179f2de7a3eaed26d40911216c9061c148bd89910526ef049851c792c8156ac1 -SIZE (KDE/applications/19.12.0/kimap-19.12.0.tar.xz) = 119640 +TIMESTAMP = 1578373933 +SHA256 (KDE/applications/19.12.1/kimap-19.12.1.tar.xz) = 898e1f3b233b3631ffc74859d54bf402d36f0c5bae7f792e97d3fa5116d8bd0e +SIZE (KDE/applications/19.12.1/kimap-19.12.1.tar.xz) = 119540 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 522540) +++ head/net/kitinerary/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623522 -SHA256 (KDE/applications/19.12.0/kitinerary-19.12.0.tar.xz) = 3a3b3b23d163b0f50550bd710793ca486dc26c99376c5fadc02ceb8bdcd822a9 -SIZE (KDE/applications/19.12.0/kitinerary-19.12.0.tar.xz) = 1179884 +TIMESTAMP = 1578373934 +SHA256 (KDE/applications/19.12.1/kitinerary-19.12.1.tar.xz) = 6497469e9966c9c21c2810a1f21c2633b89e54dafb74d5689aa24382e3824926 +SIZE (KDE/applications/19.12.1/kitinerary-19.12.1.tar.xz) = 1179336 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 522540) +++ head/net/kldap/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623504 -SHA256 (KDE/applications/19.12.0/kldap-19.12.0.tar.xz) = 38cf118fcc628fdb4b57655cf4b30b39909111dc588e54592479121cf96ddcec -SIZE (KDE/applications/19.12.0/kldap-19.12.0.tar.xz) = 155216 +TIMESTAMP = 1578373935 +SHA256 (KDE/applications/19.12.1/kldap-19.12.1.tar.xz) = 5595f840c2b97e96f265ffd91fb007f4beb198aaf67a0dbfd941108acbcb9aa3 +SIZE (KDE/applications/19.12.1/kldap-19.12.1.tar.xz) = 155468 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 522540) +++ head/net/kmailtransport/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623496 -SHA256 (KDE/applications/19.12.0/kmailtransport-19.12.0.tar.xz) = ac5b2fde3c024a13fc70bfd5b58317c258804144c156312d4d3e91fd34e16c89 -SIZE (KDE/applications/19.12.0/kmailtransport-19.12.0.tar.xz) = 167080 +TIMESTAMP = 1578373935 +SHA256 (KDE/applications/19.12.1/kmailtransport-19.12.1.tar.xz) = 1a46563c441a7d09e6cc2bf98a628b724944193e0df88607d5d867f4fa65c1a4 +SIZE (KDE/applications/19.12.1/kmailtransport-19.12.1.tar.xz) = 166340 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 522540) +++ head/net/kmbox/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623501 -SHA256 (KDE/applications/19.12.0/kmbox-19.12.0.tar.xz) = ce7520c1149fd29044d36778d074687ee81a6a015dc9ebe70c58198dd0d90167 -SIZE (KDE/applications/19.12.0/kmbox-19.12.0.tar.xz) = 24628 +TIMESTAMP = 1578373936 +SHA256 (KDE/applications/19.12.1/kmbox-19.12.1.tar.xz) = 7442fd3a421a917a3f27e47259a7da7e08ff6191290a0e9e67c67005c82c606a +SIZE (KDE/applications/19.12.1/kmbox-19.12.1.tar.xz) = 24592 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 522540) +++ head/net/kmime/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623514 -SHA256 (KDE/applications/19.12.0/kmime-19.12.0.tar.xz) = eb65cef3e63dc00e84753139c4e024c7b26de1d25bf195b2e53d889b29a8512f -SIZE (KDE/applications/19.12.0/kmime-19.12.0.tar.xz) = 146732 +TIMESTAMP = 1578373937 +SHA256 (KDE/applications/19.12.1/kmime-19.12.1.tar.xz) = 4d6db5d59b239b884bf8811f3ea616520ab1f69224a809cef3f79023b2563085 +SIZE (KDE/applications/19.12.1/kmime-19.12.1.tar.xz) = 146976 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 522540) +++ head/net/kontactinterface/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623509 -SHA256 (KDE/applications/19.12.0/kontactinterface-19.12.0.tar.xz) = d7c43f12779d908066f025354088aad44d0462e8e8807a6b8d71870f10a46578 -SIZE (KDE/applications/19.12.0/kontactinterface-19.12.0.tar.xz) = 33180 +TIMESTAMP = 1578373937 +SHA256 (KDE/applications/19.12.1/kontactinterface-19.12.1.tar.xz) = a88b782b495d662920fd5f51c287c472c107c577af92431b4470787a78866b2c +SIZE (KDE/applications/19.12.1/kontactinterface-19.12.1.tar.xz) = 33352 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 522540) +++ head/net/kpimtextedit/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623497 -SHA256 (KDE/applications/19.12.0/kpimtextedit-19.12.0.tar.xz) = 6caffca187ca21929d8becb83da6a173fb6c1a21ad07817b070100579eac1bd1 -SIZE (KDE/applications/19.12.0/kpimtextedit-19.12.0.tar.xz) = 167364 +TIMESTAMP = 1578373938 +SHA256 (KDE/applications/19.12.1/kpimtextedit-19.12.1.tar.xz) = 253ded44f3ccb7de1a0a8879e45cc361c14dda2924619aeb04f4286c917f5475 +SIZE (KDE/applications/19.12.1/kpimtextedit-19.12.1.tar.xz) = 167340 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 522540) +++ head/net/krdc/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623511 -SHA256 (KDE/applications/19.12.0/krdc-19.12.0.tar.xz) = 52bff08687abe86b274af77855dce923945ac998d11b1b309c6b1854febdd40b -SIZE (KDE/applications/19.12.0/krdc-19.12.0.tar.xz) = 1425400 +TIMESTAMP = 1578373939 +SHA256 (KDE/applications/19.12.1/krdc-19.12.1.tar.xz) = b3d9b9c43bfe5801d807be08172ca4c773ff6fc2d846cf5b2456c3360ca21824 +SIZE (KDE/applications/19.12.1/krdc-19.12.1.tar.xz) = 1424920 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 522540) +++ head/net/krfb/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623507 -SHA256 (KDE/applications/19.12.0/krfb-19.12.0.tar.xz) = 87fd065c2ac517aba086f846ce6602ac8cb4ba88e3f90d283318af3667959046 -SIZE (KDE/applications/19.12.0/krfb-19.12.0.tar.xz) = 1278040 +TIMESTAMP = 1578373939 +SHA256 (KDE/applications/19.12.1/krfb-19.12.1.tar.xz) = 7f25790480ac3a8db8a8bd847d80937a0ab763f6c5c12fa2ce704c4b24810287 +SIZE (KDE/applications/19.12.1/krfb-19.12.1.tar.xz) = 1278880 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 522540) +++ head/net/ksmtp/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623502 -SHA256 (KDE/applications/19.12.0/ksmtp-19.12.0.tar.xz) = 157c6112dfd2aaafe991e17bfd115a74721526642d6e52241d83142f541269a2 -SIZE (KDE/applications/19.12.0/ksmtp-19.12.0.tar.xz) = 40740 +TIMESTAMP = 1578373940 +SHA256 (KDE/applications/19.12.1/ksmtp-19.12.1.tar.xz) = 6c7d6ce91d65d7430cb31fb4a1fd44a600a5a459b3956807ee3180b5822dbac0 +SIZE (KDE/applications/19.12.1/ksmtp-19.12.1.tar.xz) = 40856 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 522540) +++ head/net/ktnef/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623528 -SHA256 (KDE/applications/19.12.0/ktnef-19.12.0.tar.xz) = ae294f943788222d5abb264c1a7805222bdedf558e5f0466d1fd9926486e96df -SIZE (KDE/applications/19.12.0/ktnef-19.12.0.tar.xz) = 299776 +TIMESTAMP = 1578373941 +SHA256 (KDE/applications/19.12.1/ktnef-19.12.1.tar.xz) = 2fce576e517e6ae9001ade6f07a51fcfa899a6569bc4b8c3948827adfc0af20c +SIZE (KDE/applications/19.12.1/ktnef-19.12.1.tar.xz) = 299712 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 522540) +++ head/net/libgravatar/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623525 -SHA256 (KDE/applications/19.12.0/libgravatar-19.12.0.tar.xz) = d3577648d7116565b8dc88d94f55a83e9c6d78c040a2fb6ba4907893f0b77048 -SIZE (KDE/applications/19.12.0/libgravatar-19.12.0.tar.xz) = 30932 +TIMESTAMP = 1578373941 +SHA256 (KDE/applications/19.12.1/libgravatar-19.12.1.tar.xz) = 84525db5f24c04cfa2bb44376a3bd64368e9d9478a160cf862c695052f3fc254 +SIZE (KDE/applications/19.12.1/libgravatar-19.12.1.tar.xz) = 31136 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 522540) +++ head/net/libkgapi/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623495 -SHA256 (KDE/applications/19.12.0/libkgapi-19.12.0.tar.xz) = d2e59ba2fd6f0bd91f783199a9654bdca2539d15f0ec105796e096642ca4c517 -SIZE (KDE/applications/19.12.0/libkgapi-19.12.0.tar.xz) = 238596 +TIMESTAMP = 1578373942 +SHA256 (KDE/applications/19.12.1/libkgapi-19.12.1.tar.xz) = 8bfa16ab76b0042e2a0b827cf251b1155c0e693db39ffcb2805613d3393389cf +SIZE (KDE/applications/19.12.1/libkgapi-19.12.1.tar.xz) = 238208 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 522540) +++ head/net/libksieve/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623519 -SHA256 (KDE/applications/19.12.0/libksieve-19.12.0.tar.xz) = 4107ec2a1f51a97ba09126d0d10222bf4c957ec3eb03a276b82666d6ed2aa1d4 -SIZE (KDE/applications/19.12.0/libksieve-19.12.0.tar.xz) = 553512 +TIMESTAMP = 1578373943 +SHA256 (KDE/applications/19.12.1/libksieve-19.12.1.tar.xz) = 6c3d49e2ce4d8e6b7c1b4328aa6065a01c7711223dd4f3b9db3a542f9fc0a84c +SIZE (KDE/applications/19.12.1/libksieve-19.12.1.tar.xz) = 552024 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 522540) +++ head/net/mailcommon/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576095097 -SHA256 (KDE/applications/19.12.0/mailcommon-19.12.0.tar.xz) = b581de742afe391bdc3d0635d3c796c5906ddd352e8d5d763576098817045099 -SIZE (KDE/applications/19.12.0/mailcommon-19.12.0.tar.xz) = 701872 +TIMESTAMP = 1578373943 +SHA256 (KDE/applications/19.12.1/mailcommon-19.12.1.tar.xz) = 160135049bc2e4984f14022af793a9ac05bf488faa6f9eb7bd86a094de1c9bfe +SIZE (KDE/applications/19.12.1/mailcommon-19.12.1.tar.xz) = 701392 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 522540) +++ head/net/mailimporter/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623512 -SHA256 (KDE/applications/19.12.0/mailimporter-19.12.0.tar.xz) = d0758559daa25b666a9fe7b6bc4461762bc08013a6f06a4ae9b1028742195241 -SIZE (KDE/applications/19.12.0/mailimporter-19.12.0.tar.xz) = 540600 +TIMESTAMP = 1578373944 +SHA256 (KDE/applications/19.12.1/mailimporter-19.12.1.tar.xz) = c1a042560438d6f6195a1f64355515489b74a44c1d2f5f547ced6785439215f1 +SIZE (KDE/applications/19.12.1/mailimporter-19.12.1.tar.xz) = 540540 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 522540) +++ head/net/messagelib/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623523 -SHA256 (KDE/applications/19.12.0/messagelib-19.12.0.tar.xz) = 5dae93a5101add258cdd3cc90d1051454a3b756d9683891abe40b97bd32f8cd7 -SIZE (KDE/applications/19.12.0/messagelib-19.12.0.tar.xz) = 10466896 +TIMESTAMP = 1578373945 +SHA256 (KDE/applications/19.12.1/messagelib-19.12.1.tar.xz) = d2514ac31f78235340353701f735a15f69d99374a55566ec7702a3a5ddd23d05 +SIZE (KDE/applications/19.12.1/messagelib-19.12.1.tar.xz) = 10464964 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 522540) +++ head/net/pimcommon/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623499 -SHA256 (KDE/applications/19.12.0/pimcommon-19.12.0.tar.xz) = c6805618f431d4e8e7c3f1d49f7ad2d1bb84426a4fbfb4d8af7c27b70ef1eb4f -SIZE (KDE/applications/19.12.0/pimcommon-19.12.0.tar.xz) = 294760 +TIMESTAMP = 1578373945 +SHA256 (KDE/applications/19.12.1/pimcommon-19.12.1.tar.xz) = d3058407ec578a32df82eb83eb7631d2904e75d6d345ed61dac0f3744840ebf5 +SIZE (KDE/applications/19.12.1/pimcommon-19.12.1.tar.xz) = 294524 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 522540) +++ head/net/zeroconf-ioslave/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623503 -SHA256 (KDE/applications/19.12.0/zeroconf-ioslave-19.12.0.tar.xz) = 0dc179173337d7ec5f074956520e12ff969e16d18125a5bc700f4c153a0c9130 -SIZE (KDE/applications/19.12.0/zeroconf-ioslave-19.12.0.tar.xz) = 41840 +TIMESTAMP = 1578373946 +SHA256 (KDE/applications/19.12.1/zeroconf-ioslave-19.12.1.tar.xz) = 39641a186de9d0704a58063a8a37cfb3a405ff6bd9957c7d09efec3bec4dfc60 +SIZE (KDE/applications/19.12.1/zeroconf-ioslave-19.12.1.tar.xz) = 41824 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 522540) +++ head/net-im/kaccounts-integration/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623471 -SHA256 (KDE/applications/19.12.0/kaccounts-integration-19.12.0.tar.xz) = 638629989b6c1b033c0e2d02b32c3c31b1322402405e4577fb61fd2518547414 -SIZE (KDE/applications/19.12.0/kaccounts-integration-19.12.0.tar.xz) = 66496 +TIMESTAMP = 1578373913 +SHA256 (KDE/applications/19.12.1/kaccounts-integration-19.12.1.tar.xz) = 0dda504f51b86207180aceb00d86d42cb16c7ebe81c60ca1ed6bf8fa20699127 +SIZE (KDE/applications/19.12.1/kaccounts-integration-19.12.1.tar.xz) = 66588 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 522540) +++ head/net-im/kaccounts-providers/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623470 -SHA256 (KDE/applications/19.12.0/kaccounts-providers-19.12.0.tar.xz) = 6c8b6c4cadd73fbce110d2ab586ec0163134af8389871e5d4417c9005d33b1b4 -SIZE (KDE/applications/19.12.0/kaccounts-providers-19.12.0.tar.xz) = 32180 +TIMESTAMP = 1578373914 +SHA256 (KDE/applications/19.12.1/kaccounts-providers-19.12.1.tar.xz) = abcd1fa9f63248f3ce7f9c98d940b124ff5c70c1a3381a6cfad6ce7012b23c69 +SIZE (KDE/applications/19.12.1/kaccounts-providers-19.12.1.tar.xz) = 32204 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 522540) +++ head/net-im/kopete/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623473 -SHA256 (KDE/applications/19.12.0/kopete-19.12.0.tar.xz) = b5093b75cc6da0df874246fe36a1c220088bf353c924bbc9bb02ab97acc8daa5 -SIZE (KDE/applications/19.12.0/kopete-19.12.0.tar.xz) = 9386240 +TIMESTAMP = 1578373915 +SHA256 (KDE/applications/19.12.1/kopete-19.12.1.tar.xz) = eca3610cc9607c27620c7c23f9bb54bdd80d2fb295adaf6636506597fc0b848d +SIZE (KDE/applications/19.12.1/kopete-19.12.1.tar.xz) = 9364212 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 522540) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623469 -SHA256 (KDE/applications/19.12.0/ktp-accounts-kcm-19.12.0.tar.xz) = 2a46fbf876bba864de7a6926f3acc110b9476ff09bbae9918df9af856d2e1dc9 -SIZE (KDE/applications/19.12.0/ktp-accounts-kcm-19.12.0.tar.xz) = 263776 +TIMESTAMP = 1578373915 +SHA256 (KDE/applications/19.12.1/ktp-accounts-kcm-19.12.1.tar.xz) = 1ae81e4b7bae97d9d18c1fdc9e7083cc810b39d58dff5755dc9d78bd62551577 +SIZE (KDE/applications/19.12.1/ktp-accounts-kcm-19.12.1.tar.xz) = 263956 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 522540) +++ head/net-im/ktp-approver/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623479 -SHA256 (KDE/applications/19.12.0/ktp-approver-19.12.0.tar.xz) = fcf278806b2b72c4afca42847e0441d46b1e53a2058f621a7539b63f8a433edf -SIZE (KDE/applications/19.12.0/ktp-approver-19.12.0.tar.xz) = 37424 +TIMESTAMP = 1578373916 +SHA256 (KDE/applications/19.12.1/ktp-approver-19.12.1.tar.xz) = 502a63f13db44fc8a28f64e37c43839b8da22086bf858dc9c492476d9ba14b50 +SIZE (KDE/applications/19.12.1/ktp-approver-19.12.1.tar.xz) = 37232 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 522540) +++ head/net-im/ktp-auth-handler/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623482 -SHA256 (KDE/applications/19.12.0/ktp-auth-handler-19.12.0.tar.xz) = b4d6a24bd0ebb75b1b490ffa7efac76aea5a0fc5ad1783b43a95a1dc0b338919 -SIZE (KDE/applications/19.12.0/ktp-auth-handler-19.12.0.tar.xz) = 46420 +TIMESTAMP = 1578373917 +SHA256 (KDE/applications/19.12.1/ktp-auth-handler-19.12.1.tar.xz) = 109583d4800d293fe11eeaa553d72643f2a3709c0d078a6e842f2e4b228d93e0 +SIZE (KDE/applications/19.12.1/ktp-auth-handler-19.12.1.tar.xz) = 46508 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 522540) +++ head/net-im/ktp-call-ui/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623474 -SHA256 (KDE/applications/19.12.0/ktp-call-ui-19.12.0.tar.xz) = c3e1206aaedcbd341e04cf29eaaf8547b83f5d8e6320f90de9b4001e5dac671c -SIZE (KDE/applications/19.12.0/ktp-call-ui-19.12.0.tar.xz) = 97320 +TIMESTAMP = 1578373917 +SHA256 (KDE/applications/19.12.1/ktp-call-ui-19.12.1.tar.xz) = adb3025f8f878fd4a56ce125bd51c155f26b02661b9365b6321fb456153b0c55 +SIZE (KDE/applications/19.12.1/ktp-call-ui-19.12.1.tar.xz) = 97340 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 522540) +++ head/net-im/ktp-common-internals/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623481 -SHA256 (KDE/applications/19.12.0/ktp-common-internals-19.12.0.tar.xz) = 26b49336bca848f82254077f025f4e11f6742bcbe6d97a4503bcd5971631d245 -SIZE (KDE/applications/19.12.0/ktp-common-internals-19.12.0.tar.xz) = 444260 +TIMESTAMP = 1578373918 +SHA256 (KDE/applications/19.12.1/ktp-common-internals-19.12.1.tar.xz) = 4a1f189c1393164fba710e63b0e8f1aae6f22a5faacea0d86544e3e4a471603a +SIZE (KDE/applications/19.12.1/ktp-common-internals-19.12.1.tar.xz) = 446044 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 522540) +++ head/net-im/ktp-contact-list/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623476 -SHA256 (KDE/applications/19.12.0/ktp-contact-list-19.12.0.tar.xz) = 41fc7f6a1c850de557c31c07bf25d4dd81904f10bbf9faa03ec76d326574c09f -SIZE (KDE/applications/19.12.0/ktp-contact-list-19.12.0.tar.xz) = 149476 +TIMESTAMP = 1578373919 +SHA256 (KDE/applications/19.12.1/ktp-contact-list-19.12.1.tar.xz) = c293fa90899d496c4e29b9c9986a3864e06ef22dabbd4583123abbc232f4fe25 +SIZE (KDE/applications/19.12.1/ktp-contact-list-19.12.1.tar.xz) = 149680 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 522540) +++ head/net-im/ktp-contact-runner/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623477 -SHA256 (KDE/applications/19.12.0/ktp-contact-runner-19.12.0.tar.xz) = ad506d279651e81990e935af0a0ee27ec81d43406cb9df0ec39c8594871e2384 -SIZE (KDE/applications/19.12.0/ktp-contact-runner-19.12.0.tar.xz) = 43136 +TIMESTAMP = 1578373919 +SHA256 (KDE/applications/19.12.1/ktp-contact-runner-19.12.1.tar.xz) = a86d8a67f3d8f3d741c6c4548a58cbdff384e8bd5ed5cd1d82db65456240ac0f +SIZE (KDE/applications/19.12.1/ktp-contact-runner-19.12.1.tar.xz) = 43056 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 522540) +++ head/net-im/ktp-desktop-applets/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623485 -SHA256 (KDE/applications/19.12.0/ktp-desktop-applets-19.12.0.tar.xz) = 61da10da15f87cf1373e572640e014853f6e267cb1fc90c97c571a15ed4beb80 -SIZE (KDE/applications/19.12.0/ktp-desktop-applets-19.12.0.tar.xz) = 43588 +TIMESTAMP = 1578373920 +SHA256 (KDE/applications/19.12.1/ktp-desktop-applets-19.12.1.tar.xz) = 63f1a0df6a392f41a54fda8c4896754c2687ba34968cf5bbc0ac84a37c1a1741 +SIZE (KDE/applications/19.12.1/ktp-desktop-applets-19.12.1.tar.xz) = 43612 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 522540) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623475 -SHA256 (KDE/applications/19.12.0/ktp-filetransfer-handler-19.12.0.tar.xz) = 2c7621a66f7c76ec0f956815d62498fbb81db9156ac4ac9f863029f4d449f67d -SIZE (KDE/applications/19.12.0/ktp-filetransfer-handler-19.12.0.tar.xz) = 46260 +TIMESTAMP = 1578373921 +SHA256 (KDE/applications/19.12.1/ktp-filetransfer-handler-19.12.1.tar.xz) = 208aab8c78f4b7f38e331802a63fa10d00a65c115900c72c7a710b799ea56034 +SIZE (KDE/applications/19.12.1/ktp-filetransfer-handler-19.12.1.tar.xz) = 46140 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 522540) +++ head/net-im/ktp-kded-module/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623480 -SHA256 (KDE/applications/19.12.0/ktp-kded-module-19.12.0.tar.xz) = bb717714e0f775b2483c39724867f369e0b0138c5dd3a1ec72e495c303384b5d -SIZE (KDE/applications/19.12.0/ktp-kded-module-19.12.0.tar.xz) = 97400 +TIMESTAMP = 1578373921 +SHA256 (KDE/applications/19.12.1/ktp-kded-module-19.12.1.tar.xz) = 274f97c6874eeb2af14b937ed20430d2ac2e1a769890a70da8d477ac33ed6082 +SIZE (KDE/applications/19.12.1/ktp-kded-module-19.12.1.tar.xz) = 97656 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 522540) +++ head/net-im/ktp-send-file/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623478 -SHA256 (KDE/applications/19.12.0/ktp-send-file-19.12.0.tar.xz) = 6059a5c7acb744f5309d2e9d3bf2e4cb78e7df59b2baeaa7c4970584de6654df -SIZE (KDE/applications/19.12.0/ktp-send-file-19.12.0.tar.xz) = 29024 +TIMESTAMP = 1578373922 +SHA256 (KDE/applications/19.12.1/ktp-send-file-19.12.1.tar.xz) = 5652e40e02ac191ad6e8df276a5faf8805000760261d495f3f4424416da3b977 +SIZE (KDE/applications/19.12.1/ktp-send-file-19.12.1.tar.xz) = 29056 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 522540) +++ head/net-im/ktp-text-ui/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623483 -SHA256 (KDE/applications/19.12.0/ktp-text-ui-19.12.0.tar.xz) = 18d87f99a854b01b0dd602df65c969c52298b9b2843da1da24d5ab0766b5dcb2 -SIZE (KDE/applications/19.12.0/ktp-text-ui-19.12.0.tar.xz) = 471572 +TIMESTAMP = 1578373923 +SHA256 (KDE/applications/19.12.1/ktp-text-ui-19.12.1.tar.xz) = 226efc09343bb9218c461858747a1bc084ad8291fbbcc9f49eb888acfe2039c6 +SIZE (KDE/applications/19.12.1/ktp-text-ui-19.12.1.tar.xz) = 471268 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 522540) +++ head/print/print-manager/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623569 -SHA256 (KDE/applications/19.12.0/print-manager-19.12.0.tar.xz) = 166b9eef8eb94b0a9cbf257807c4432bef0489d7e2c401865a3fd028426797a5 -SIZE (KDE/applications/19.12.0/print-manager-19.12.0.tar.xz) = 250916 +TIMESTAMP = 1578373947 +SHA256 (KDE/applications/19.12.1/print-manager-19.12.1.tar.xz) = 76336be7da80a7494e2e5d5c9ab431047672a98630c7d61f916aa4b9edc35776 +SIZE (KDE/applications/19.12.1/print-manager-19.12.1.tar.xz) = 250772 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 522540) +++ head/science/kalzium/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623468 -SHA256 (KDE/applications/19.12.0/kalzium-19.12.0.tar.xz) = 0d2a2db4dac5e0ef70b296cf621b42e50322b57500fd8aa7a001a0436ad3de33 -SIZE (KDE/applications/19.12.0/kalzium-19.12.0.tar.xz) = 24587464 +TIMESTAMP = 1578373948 +SHA256 (KDE/applications/19.12.1/kalzium-19.12.1.tar.xz) = f50cc18d94ce9a1aaedcbee3a5dccc2cc6723ac8ec151a0ae0ff60009a7c6943 +SIZE (KDE/applications/19.12.1/kalzium-19.12.1.tar.xz) = 24596944 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 522540) +++ head/science/step/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623467 -SHA256 (KDE/applications/19.12.0/step-19.12.0.tar.xz) = 7d7fe7d4a47f212576b6db415c74ff0eb26d0c21302376ad42a0bd624efdd24d -SIZE (KDE/applications/19.12.0/step-19.12.0.tar.xz) = 905528 +TIMESTAMP = 1578373948 +SHA256 (KDE/applications/19.12.1/step-19.12.1.tar.xz) = f171c58b567bb29ed50109b341e53dc00116e814c90f51aa7a6e405326982907 +SIZE (KDE/applications/19.12.1/step-19.12.1.tar.xz) = 910284 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 522540) +++ head/science/step/pkg-plist (revision 522541) @@ -1,690 +1,799 @@ bin/step etc/xdg/step.knsrc share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo +share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo +share/locale/sv/LC_MESSAGES/step_example_files.mo +share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo +share/locale/zh_CN/LC_MESSAGES/step_example_files.mo +share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step +%%DATADIR%%/examples/it/brownian.step +%%DATADIR%%/examples/it/doublependulum.step +%%DATADIR%%/examples/it/eightpendula.step +%%DATADIR%%/examples/it/first.step +%%DATADIR%%/examples/it/fourpendula.step +%%DATADIR%%/examples/it/gas.step +%%DATADIR%%/examples/it/graph.step +%%DATADIR%%/examples/it/liquid.step +%%DATADIR%%/examples/it/lissajous.step +%%DATADIR%%/examples/it/motor.step +%%DATADIR%%/examples/it/motor1.step +%%DATADIR%%/examples/it/note.step +%%DATADIR%%/examples/it/resonance.step +%%DATADIR%%/examples/it/softbody.step +%%DATADIR%%/examples/it/solar.step +%%DATADIR%%/examples/it/springs.step +%%DATADIR%%/examples/it/wave.step +%%DATADIR%%/examples/sv/brownian.step +%%DATADIR%%/examples/sv/doublependulum.step +%%DATADIR%%/examples/sv/eightpendula.step +%%DATADIR%%/examples/sv/first.step +%%DATADIR%%/examples/sv/fourpendula.step +%%DATADIR%%/examples/sv/gas.step +%%DATADIR%%/examples/sv/graph.step +%%DATADIR%%/examples/sv/liquid.step +%%DATADIR%%/examples/sv/lissajous.step +%%DATADIR%%/examples/sv/motor.step +%%DATADIR%%/examples/sv/motor1.step +%%DATADIR%%/examples/sv/note.step +%%DATADIR%%/examples/sv/resonance.step +%%DATADIR%%/examples/sv/softbody.step +%%DATADIR%%/examples/sv/solar.step +%%DATADIR%%/examples/sv/springs.step +%%DATADIR%%/examples/sv/wave.step +%%DATADIR%%/examples/zh_CN/brownian.step +%%DATADIR%%/examples/zh_CN/doublependulum.step +%%DATADIR%%/examples/zh_CN/eightpendula.step +%%DATADIR%%/examples/zh_CN/first.step +%%DATADIR%%/examples/zh_CN/fourpendula.step +%%DATADIR%%/examples/zh_CN/gas.step +%%DATADIR%%/examples/zh_CN/graph.step +%%DATADIR%%/examples/zh_CN/liquid.step +%%DATADIR%%/examples/zh_CN/lissajous.step +%%DATADIR%%/examples/zh_CN/motor.step +%%DATADIR%%/examples/zh_CN/motor1.step +%%DATADIR%%/examples/zh_CN/note.step +%%DATADIR%%/examples/zh_CN/resonance.step +%%DATADIR%%/examples/zh_CN/softbody.step +%%DATADIR%%/examples/zh_CN/solar.step +%%DATADIR%%/examples/zh_CN/springs.step +%%DATADIR%%/examples/zh_CN/wave.step +%%DATADIR%%/objinfo/l10n/sv/anchor.html +%%DATADIR%%/objinfo/l10n/sv/box.html +%%DATADIR%%/objinfo/l10n/sv/chargedparticle.html +%%DATADIR%%/objinfo/l10n/sv/coulombforce.html +%%DATADIR%%/objinfo/l10n/sv/disk.html +%%DATADIR%%/objinfo/l10n/sv/gas.html +%%DATADIR%%/objinfo/l10n/sv/gasljforce.html +%%DATADIR%%/objinfo/l10n/sv/gasparticle.html +%%DATADIR%%/objinfo/l10n/sv/gravitationforce.html +%%DATADIR%%/objinfo/l10n/sv/linearmotor.html +%%DATADIR%%/objinfo/l10n/sv/meter.html +%%DATADIR%%/objinfo/l10n/sv/note.html +%%DATADIR%%/objinfo/l10n/sv/particle.html +%%DATADIR%%/objinfo/l10n/sv/pin.html +%%DATADIR%%/objinfo/l10n/sv/polygon.html +%%DATADIR%%/objinfo/l10n/sv/softbody.html +%%DATADIR%%/objinfo/l10n/sv/spring.html +%%DATADIR%%/objinfo/l10n/sv/weightforce.html +%%DATADIR%%/objinfo/l10n/sv/world.html +%%DATADIR%%/objinfo/l10n/zh_CN/anchor.html +%%DATADIR%%/objinfo/l10n/zh_CN/box.html +%%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html +%%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html +%%DATADIR%%/objinfo/l10n/zh_CN/disk.html +%%DATADIR%%/objinfo/l10n/zh_CN/gas.html +%%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html +%%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html +%%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html +%%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html +%%DATADIR%%/objinfo/l10n/zh_CN/meter.html +%%DATADIR%%/objinfo/l10n/zh_CN/note.html +%%DATADIR%%/objinfo/l10n/zh_CN/particle.html +%%DATADIR%%/objinfo/l10n/zh_CN/pin.html +%%DATADIR%%/objinfo/l10n/zh_CN/polygon.html +%%DATADIR%%/objinfo/l10n/zh_CN/softbody.html +%%DATADIR%%/objinfo/l10n/zh_CN/spring.html +%%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html +%%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/de/Anchor.html %%DATADIR%%/objinfo/l10n/de/Box.html %%DATADIR%%/objinfo/l10n/de/ChargedParticle.html %%DATADIR%%/objinfo/l10n/de/CoulombForce.html %%DATADIR%%/objinfo/l10n/de/Disk.html %%DATADIR%%/objinfo/l10n/de/Gas.html %%DATADIR%%/objinfo/l10n/de/GasLJForce.html %%DATADIR%%/objinfo/l10n/de/GasParticle.html %%DATADIR%%/objinfo/l10n/de/GravitationForce.html %%DATADIR%%/objinfo/l10n/de/LinearMotor.html %%DATADIR%%/objinfo/l10n/de/Meter.html %%DATADIR%%/objinfo/l10n/de/Note.html %%DATADIR%%/objinfo/l10n/de/Particle.html %%DATADIR%%/objinfo/l10n/de/Pin.html %%DATADIR%%/objinfo/l10n/de/Polygon.html %%DATADIR%%/objinfo/l10n/de/Spring.html %%DATADIR%%/objinfo/l10n/de/WeightForce.html %%DATADIR%%/objinfo/l10n/de/World.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/it/Box.html %%DATADIR%%/objinfo/l10n/it/ChargedParticle.html %%DATADIR%%/objinfo/l10n/it/Disk.html %%DATADIR%%/objinfo/l10n/it/Gas.html %%DATADIR%%/objinfo/l10n/it/GasParticle.html %%DATADIR%%/objinfo/l10n/it/Meter.html %%DATADIR%%/objinfo/l10n/it/Note.html %%DATADIR%%/objinfo/l10n/it/Particle.html %%DATADIR%%/objinfo/l10n/it/Polygon.html %%DATADIR%%/objinfo/l10n/it/Spring.html %%DATADIR%%/objinfo/l10n/it/World.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step +%%DATADIR%%/tutorials/it/tutorial1.step +%%DATADIR%%/tutorials/it/tutorial2.step +%%DATADIR%%/tutorials/it/tutorial3.step +%%DATADIR%%/tutorials/it/tutorial4.step +%%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step +%%DATADIR%%/tutorials/sv/tutorial1.step +%%DATADIR%%/tutorials/sv/tutorial2.step +%%DATADIR%%/tutorials/sv/tutorial3.step +%%DATADIR%%/tutorials/sv/tutorial4.step +%%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step +%%DATADIR%%/tutorials/zh_CN/tutorial1.step +%%DATADIR%%/tutorials/zh_CN/tutorial2.step +%%DATADIR%%/tutorials/zh_CN/tutorial3.step +%%DATADIR%%/tutorials/zh_CN/tutorial4.step +%%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 522540) +++ head/security/kgpg/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623435 -SHA256 (KDE/applications/19.12.0/kgpg-19.12.0.tar.xz) = cf6b61991804adbe260b12bfd9ca7d360c957f3e4b5d1fdb62e2f8aebd443151 -SIZE (KDE/applications/19.12.0/kgpg-19.12.0.tar.xz) = 2788980 +TIMESTAMP = 1578373949 +SHA256 (KDE/applications/19.12.1/kgpg-19.12.1.tar.xz) = e64dc85f303e45b8a7ef635525f6834c4fd2db36c5131fdb231fa11f7237fdb5 +SIZE (KDE/applications/19.12.1/kgpg-19.12.1.tar.xz) = 2789500 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 522540) +++ head/security/kleopatra/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623438 -SHA256 (KDE/applications/19.12.0/kleopatra-19.12.0.tar.xz) = 89b56e38c544055ad35a219bd13b12590a8e7fb319e0103a6f96075b356b8ae5 -SIZE (KDE/applications/19.12.0/kleopatra-19.12.0.tar.xz) = 1941060 +TIMESTAMP = 1578373950 +SHA256 (KDE/applications/19.12.1/kleopatra-19.12.1.tar.xz) = 94ee94031696dd5d79d7a0ca00a2e51b4569466689e8a76c129deae645af08f4 +SIZE (KDE/applications/19.12.1/kleopatra-19.12.1.tar.xz) = 1932580 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 522540) +++ head/security/kpkpass/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623439 -SHA256 (KDE/applications/19.12.0/kpkpass-19.12.0.tar.xz) = 81032fd3807195109450141cd007dbd24a84fc789a83f68885c0a7dcbe2d66b4 -SIZE (KDE/applications/19.12.0/kpkpass-19.12.0.tar.xz) = 23316 +TIMESTAMP = 1578373950 +SHA256 (KDE/applications/19.12.1/kpkpass-19.12.1.tar.xz) = b5a079dc1c102c52e29c1d0da3e5a1e51bf9e0a666bb82d6b783f1b55eaa7ada +SIZE (KDE/applications/19.12.1/kpkpass-19.12.1.tar.xz) = 23268 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 522540) +++ head/security/kwalletmanager/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623436 -SHA256 (KDE/applications/19.12.0/kwalletmanager-19.12.0.tar.xz) = 4ca98577b375b897a1939c2987551e0f332b659fe3d87ba8398fdd6b8d35c576 -SIZE (KDE/applications/19.12.0/kwalletmanager-19.12.0.tar.xz) = 788744 +TIMESTAMP = 1578373951 +SHA256 (KDE/applications/19.12.1/kwalletmanager-19.12.1.tar.xz) = b2370fbf559a3b8e8551daedada9c97d07041388dc74f8bd1286c64ab18b936b +SIZE (KDE/applications/19.12.1/kwalletmanager-19.12.1.tar.xz) = 788792 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 522540) +++ head/security/libkleo/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623437 -SHA256 (KDE/applications/19.12.0/libkleo-19.12.0.tar.xz) = 24ae030a390475386bbbe686ec92bc0c55579c3ae437347c5568e89a94796deb -SIZE (KDE/applications/19.12.0/libkleo-19.12.0.tar.xz) = 344220 +TIMESTAMP = 1578373952 +SHA256 (KDE/applications/19.12.1/libkleo-19.12.1.tar.xz) = 8e9b78fbeb861370ab81f98150ff9ea8afc960293ae8324fedd0b877302994a7 +SIZE (KDE/applications/19.12.1/libkleo-19.12.1.tar.xz) = 343720 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 522540) +++ head/sysutils/baloo-widgets/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623547 -SHA256 (KDE/applications/19.12.0/baloo-widgets-19.12.0.tar.xz) = c16c248c20b2f4fe344b90283070a316eaef7e03b3b4e5f3b9a102b89977672e -SIZE (KDE/applications/19.12.0/baloo-widgets-19.12.0.tar.xz) = 262956 +TIMESTAMP = 1578373952 +SHA256 (KDE/applications/19.12.1/baloo-widgets-19.12.1.tar.xz) = a9fb3a136267bb0089192f7bc523903bd304e528160d9f653ccd052b4a8c110c +SIZE (KDE/applications/19.12.1/baloo-widgets-19.12.1.tar.xz) = 262636 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 522540) +++ head/sysutils/filelight/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623544 -SHA256 (KDE/applications/19.12.0/filelight-19.12.0.tar.xz) = 59441fd262bbef2b313ad346565b2584034a202f09c876ef349eb16a9e69e2be -SIZE (KDE/applications/19.12.0/filelight-19.12.0.tar.xz) = 661692 +TIMESTAMP = 1578373953 +SHA256 (KDE/applications/19.12.1/filelight-19.12.1.tar.xz) = 29806a4149b3fb60f81372d56c184d0e2f861816639a0a21b85cd7af314f860b +SIZE (KDE/applications/19.12.1/filelight-19.12.1.tar.xz) = 661828 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 522540) +++ head/sysutils/k3b/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623541 -SHA256 (KDE/applications/19.12.0/k3b-19.12.0.tar.xz) = 766395c5b9a77e061dbd5a882d768e3bdf926dfbdd83d476fcfdb1060473f11e -SIZE (KDE/applications/19.12.0/k3b-19.12.0.tar.xz) = 10505540 +TIMESTAMP = 1578373954 +SHA256 (KDE/applications/19.12.1/k3b-19.12.1.tar.xz) = 59def9d9c9e14de52a14d58a22c15173d98086d9a156a3a463b9607dc7be602d +SIZE (KDE/applications/19.12.1/k3b-19.12.1.tar.xz) = 10501372 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 522540) +++ head/sysutils/kbackup/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623539 -SHA256 (KDE/applications/19.12.0/kbackup-19.12.0.tar.xz) = 051e8763db670215c95ad14ca931b9f7ea9b7bcd180ef6177d79a5b67a4bc4a6 -SIZE (KDE/applications/19.12.0/kbackup-19.12.0.tar.xz) = 358300 +TIMESTAMP = 1578373955 +SHA256 (KDE/applications/19.12.1/kbackup-19.12.1.tar.xz) = 1b30c142576d823043d4e78fa37592e8df79b5e13ea7a980d336b25c1093ecf8 +SIZE (KDE/applications/19.12.1/kbackup-19.12.1.tar.xz) = 358832 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 522540) +++ head/sysutils/kcron/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623543 -SHA256 (KDE/applications/19.12.0/kcron-19.12.0.tar.xz) = a07fd20e18f8468868fd59b30de13db4459baf2730600061b7d280c435fd05c8 -SIZE (KDE/applications/19.12.0/kcron-19.12.0.tar.xz) = 890916 +TIMESTAMP = 1578373955 +SHA256 (KDE/applications/19.12.1/kcron-19.12.1.tar.xz) = 8c7d5fa24349b9ff7c4927579876ef84895398d8cde6122804d7104a4f4d5963 +SIZE (KDE/applications/19.12.1/kcron-19.12.1.tar.xz) = 890828 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 522540) +++ head/sysutils/kdebugsettings/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623549 -SHA256 (KDE/applications/19.12.0/kdebugsettings-19.12.0.tar.xz) = f74cbf61c0c2256ece947155860f80d550c69f30ea3916d281b02b824a667814 -SIZE (KDE/applications/19.12.0/kdebugsettings-19.12.0.tar.xz) = 63196 +TIMESTAMP = 1578373956 +SHA256 (KDE/applications/19.12.1/kdebugsettings-19.12.1.tar.xz) = 2730430123e6198131acbabb5d02800981082f7249f0d9b9001b5313b2d45f35 +SIZE (KDE/applications/19.12.1/kdebugsettings-19.12.1.tar.xz) = 63088 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 522540) +++ head/sysutils/kdf/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623553 -SHA256 (KDE/applications/19.12.0/kdf-19.12.0.tar.xz) = e960f92d5ecd3e7fe6f5648b409ad5ad0e67659028a7e12f7643b368c040795f -SIZE (KDE/applications/19.12.0/kdf-19.12.0.tar.xz) = 462008 +TIMESTAMP = 1578373957 +SHA256 (KDE/applications/19.12.1/kdf-19.12.1.tar.xz) = bf5c96e5a78e0465e9b91617ffff0c37f04e896dc059d70962bbdd943c6c1c04 +SIZE (KDE/applications/19.12.1/kdf-19.12.1.tar.xz) = 462236 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 522540) +++ head/sysutils/kdialog/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623552 -SHA256 (KDE/applications/19.12.0/kdialog-19.12.0.tar.xz) = 29e65065b2e5ff4aa95cb3e2773cdfb40d7c202e078cf5bf84d91b6eb1f8552c -SIZE (KDE/applications/19.12.0/kdialog-19.12.0.tar.xz) = 103792 +TIMESTAMP = 1578373957 +SHA256 (KDE/applications/19.12.1/kdialog-19.12.1.tar.xz) = 2a13d1957089e4a0307681786b9b5467b5df777311afd4598dd1cb69b4e070f6 +SIZE (KDE/applications/19.12.1/kdialog-19.12.1.tar.xz) = 104168 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 522540) +++ head/sysutils/kfloppy/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623542 -SHA256 (KDE/applications/19.12.0/kfloppy-19.12.0.tar.xz) = db1206c7b9e22d911b8bfea325dc7b23a72648870f2c71183713098dca2cb322 -SIZE (KDE/applications/19.12.0/kfloppy-19.12.0.tar.xz) = 199308 +TIMESTAMP = 1578373958 +SHA256 (KDE/applications/19.12.1/kfloppy-19.12.1.tar.xz) = 77581323d16f8666fefca3372c91567dfe5233c0f92c79ead11b2253aee64e2c +SIZE (KDE/applications/19.12.1/kfloppy-19.12.1.tar.xz) = 199648 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 522540) +++ head/sysutils/khelpcenter/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623545 -SHA256 (KDE/applications/19.12.0/khelpcenter-19.12.0.tar.xz) = 13384d3b454d9551f40541262168377ef7168983fc80fbe098f6cc53e8cc34db -SIZE (KDE/applications/19.12.0/khelpcenter-19.12.0.tar.xz) = 3849120 +TIMESTAMP = 1578373959 +SHA256 (KDE/applications/19.12.1/khelpcenter-19.12.1.tar.xz) = cd38f6b719f4f6228e3a7f94fc63f16020e86382ca402179ae767f2f0b846466 +SIZE (KDE/applications/19.12.1/khelpcenter-19.12.1.tar.xz) = 3848708 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 522540) +++ head/sysutils/ksystemlog/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623546 -SHA256 (KDE/applications/19.12.0/ksystemlog-19.12.0.tar.xz) = 2703649b50162babac7db7438a7b363a8ca464a5d360ed93ba50876ec2a668e7 -SIZE (KDE/applications/19.12.0/ksystemlog-19.12.0.tar.xz) = 1927480 +TIMESTAMP = 1578373959 +SHA256 (KDE/applications/19.12.1/ksystemlog-19.12.1.tar.xz) = 497496ca7451cd34f193ba11fe3100479515a89a34f0437ca2f508a48e68e895 +SIZE (KDE/applications/19.12.1/ksystemlog-19.12.1.tar.xz) = 1928568 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 522540) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623551 -SHA256 (KDE/applications/19.12.0/signon-kwallet-extension-19.12.0.tar.xz) = 663659b125aafff56f7777cf55e1ba22256cc66a89b5a1d97658ce75ad777c96 -SIZE (KDE/applications/19.12.0/signon-kwallet-extension-19.12.0.tar.xz) = 10604 +TIMESTAMP = 1578373960 +SHA256 (KDE/applications/19.12.1/signon-kwallet-extension-19.12.1.tar.xz) = a98397cc15733b9c1010f022a8d6bcf7727c4065ba6ae662273ba97864836bbe +SIZE (KDE/applications/19.12.1/signon-kwallet-extension-19.12.1.tar.xz) = 10528 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 522540) +++ head/sysutils/sweeper/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623548 -SHA256 (KDE/applications/19.12.0/sweeper-19.12.0.tar.xz) = 95654845f861adba7015c40de378b30bb241ae18843882a5fc6f5f240282dc00 -SIZE (KDE/applications/19.12.0/sweeper-19.12.0.tar.xz) = 368636 +TIMESTAMP = 1578373961 +SHA256 (KDE/applications/19.12.1/sweeper-19.12.1.tar.xz) = 50b1464c08b738f4af4c78b4edc291ce93877a52831b810cd12c8ca6a4df0cf9 +SIZE (KDE/applications/19.12.1/sweeper-19.12.1.tar.xz) = 368204 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 522540) +++ head/textproc/kompare/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623418 -SHA256 (KDE/applications/19.12.0/kompare-19.12.0.tar.xz) = aa6b3d63d5a4042a44d4adae4b95a4c0b9f22c39d49729a91ce6bf4196c7e3ea -SIZE (KDE/applications/19.12.0/kompare-19.12.0.tar.xz) = 801436 +TIMESTAMP = 1578373961 +SHA256 (KDE/applications/19.12.1/kompare-19.12.1.tar.xz) = c2eede65a85d59067caf6161606c3de4f18ec6b5e824cb1da9e6b3a8f1b7a92d +SIZE (KDE/applications/19.12.1/kompare-19.12.1.tar.xz) = 801892 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 522540) +++ head/textproc/libkomparediff2/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623417 -SHA256 (KDE/applications/19.12.0/libkomparediff2-19.12.0.tar.xz) = 39335b1b31dcac243df5543d4eaa5e230a262e23cd045c9e645e05079672001e -SIZE (KDE/applications/19.12.0/libkomparediff2-19.12.0.tar.xz) = 173592 +TIMESTAMP = 1578373962 +SHA256 (KDE/applications/19.12.1/libkomparediff2-19.12.1.tar.xz) = 319d61742f7603a60d781151cd717291c5cb976ff0f2895df9d167526cfb0b4a +SIZE (KDE/applications/19.12.1/libkomparediff2-19.12.1.tar.xz) = 173484 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 522540) +++ head/x11/konsole/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623415 -SHA256 (KDE/applications/19.12.0/konsole-19.12.0.tar.xz) = e1b2cafb25dea65df97fb7b0c766bb6db311c329fa33dc8d3703afbe2322e9fc -SIZE (KDE/applications/19.12.0/konsole-19.12.0.tar.xz) = 1161060 +TIMESTAMP = 1578373965 +SHA256 (KDE/applications/19.12.1/konsole-19.12.1.tar.xz) = 39797ed81c5ace12fd90f4a6e65c25d33db8e4385ab2baad2bd6a3b2db0ef075 +SIZE (KDE/applications/19.12.1/konsole-19.12.1.tar.xz) = 1158932 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 522540) +++ head/x11/yakuake/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623416 -SHA256 (KDE/applications/19.12.0/yakuake-19.12.0.tar.xz) = 9310d7d9571711bd1bc97374208bf8da3e3c76bab7ebda1f9f74a57bc04599a1 -SIZE (KDE/applications/19.12.0/yakuake-19.12.0.tar.xz) = 372548 +TIMESTAMP = 1578373966 +SHA256 (KDE/applications/19.12.1/yakuake-19.12.1.tar.xz) = abff4f358f41f544b2e12c340a74d92482241b1b95906b14add7810384602e42 +SIZE (KDE/applications/19.12.1/yakuake-19.12.1.tar.xz) = 372496 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 522540) +++ head/x11-clocks/kteatime/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623568 -SHA256 (KDE/applications/19.12.0/kteatime-19.12.0.tar.xz) = 4480fd02a4d4f2abb1b1818c8bf29fd802e13c3c90fce1330130c041df8195e7 -SIZE (KDE/applications/19.12.0/kteatime-19.12.0.tar.xz) = 287156 +TIMESTAMP = 1578373963 +SHA256 (KDE/applications/19.12.1/kteatime-19.12.1.tar.xz) = 49a0531b64e93ceb29548a7f75da755e75afda001fce2e6ba906372456b5dc17 +SIZE (KDE/applications/19.12.1/kteatime-19.12.1.tar.xz) = 286916 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 522540) +++ head/x11-clocks/ktimer/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623566 -SHA256 (KDE/applications/19.12.0/ktimer-19.12.0.tar.xz) = c5075d46ae6eccaf34c02a19bcffc7b137b2589cbcc53aa8f1d539a3c4c3fa91 -SIZE (KDE/applications/19.12.0/ktimer-19.12.0.tar.xz) = 377360 +TIMESTAMP = 1578373963 +SHA256 (KDE/applications/19.12.1/ktimer-19.12.1.tar.xz) = 0c5fac1baddfa3144b8930f3d42b78a3eb8681d642a3c3339c903ad2cb30a2ba +SIZE (KDE/applications/19.12.1/ktimer-19.12.1.tar.xz) = 377424 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 522540) +++ head/x11-fm/dolphin/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1576095120 -SHA256 (KDE/applications/19.12.0/dolphin-19.12.0.tar.xz) = 5bc092d2910583f1303d7800b836713e4547ac95cac06feaed67e4c038ff42e7 -SIZE (KDE/applications/19.12.0/dolphin-19.12.0.tar.xz) = 4779296 +TIMESTAMP = 1578373964 +SHA256 (KDE/applications/19.12.1/dolphin-19.12.1.tar.xz) = 492b4ca71e33373c7000aad5c7daf6e04d7ad537e1fde8a73d2c3db15858e8c8 +SIZE (KDE/applications/19.12.1/dolphin-19.12.1.tar.xz) = 4778220 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 522540) +++ head/x11-fm/konqueror/distinfo (revision 522541) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575623538 -SHA256 (KDE/applications/19.12.0/konqueror-19.12.0.tar.xz) = cbd261016fd5f43e849a1c210870c5f64b0b311e6aae4513d1f92908fcae6b72 -SIZE (KDE/applications/19.12.0/konqueror-19.12.0.tar.xz) = 7378460 +TIMESTAMP = 1578373965 +SHA256 (KDE/applications/19.12.1/konqueror-19.12.1.tar.xz) = 20da57d7dd141e2c45345457ca90be26af28c2078224eb461dff9f9589889a09 +SIZE (KDE/applications/19.12.1/konqueror-19.12.1.tar.xz) = 7383336