Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 501126) +++ head/Mk/Uses/kde.mk (revision 501127) @@ -1,851 +1,851 @@ # $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.15.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.57.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 19.04.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.11.0 +KDE_APPLICATIONS_VERSION?= 19.04.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.11.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 . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${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 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 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 # 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= ${QT_PLUGINDIR}/designer/kf5widgets.so 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_LIB= libkdeinit5_kded5.so 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-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/security/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_LIB= liboxygenstyle5.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/kcalcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/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/pimsettingexporter # ====================== 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 501126) +++ head/accessibility/kmag/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094757 -SHA256 (KDE/applications/19.04.0/kmag-19.04.0.tar.xz) = c6725654846e83b383ff6c624683e4132538f2e812d8131cadefd6926316520e -SIZE (KDE/applications/19.04.0/kmag-19.04.0.tar.xz) = 740072 +TIMESTAMP = 1557201948 +SHA256 (KDE/applications/19.04.1/kmag-19.04.1.tar.xz) = aa5ec91dcffc1a2f1037332aeacb096ab55388624c844c7fa311ca38a5e40874 +SIZE (KDE/applications/19.04.1/kmag-19.04.1.tar.xz) = 739276 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 501126) +++ head/accessibility/kmousetool/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094757 -SHA256 (KDE/applications/19.04.0/kmousetool-19.04.0.tar.xz) = 89e383a395ec5f1c7d25cc5fb45ecb73a3a0931919a2be533634d77c01cb3fa9 -SIZE (KDE/applications/19.04.0/kmousetool-19.04.0.tar.xz) = 112692 +TIMESTAMP = 1557201948 +SHA256 (KDE/applications/19.04.1/kmousetool-19.04.1.tar.xz) = fd0fcebda4d7303a9c6f1117c08e091d96bfddf92a64e1cde2dc6b555daa0624 +SIZE (KDE/applications/19.04.1/kmousetool-19.04.1.tar.xz) = 112340 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 501126) +++ head/accessibility/kmouth/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094758 -SHA256 (KDE/applications/19.04.0/kmouth-19.04.0.tar.xz) = 32666760ed76dd2dc816df52c990cb3b8487346ac37bf065e4b109fb6661ebc3 -SIZE (KDE/applications/19.04.0/kmouth-19.04.0.tar.xz) = 2056060 +TIMESTAMP = 1557201949 +SHA256 (KDE/applications/19.04.1/kmouth-19.04.1.tar.xz) = 9a8d0f9b1f09f1363d38b2a942ffe515521ffc410f869ed1a875ff1059ef8068 +SIZE (KDE/applications/19.04.1/kmouth-19.04.1.tar.xz) = 2056700 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 501126) +++ head/archivers/ark/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094758 -SHA256 (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 35e8e516a8554e086264d9a9a4fa66c2b47fa227eb9e512a1d0d24172cd07a84 -SIZE (KDE/applications/19.04.0/ark-19.04.0.tar.xz) = 2582636 +TIMESTAMP = 1557201949 +SHA256 (KDE/applications/19.04.1/ark-19.04.1.tar.xz) = 6d348b2b9566ce0b8a1ba1b56d0a8c5d434d4748c479c5a853fdcdecfec753e6 +SIZE (KDE/applications/19.04.1/ark-19.04.1.tar.xz) = 2578928 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 501126) +++ head/archivers/ark/pkg-plist (revision 501127) @@ -1,95 +1,95 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.19.4.0 +lib/libkerfuffle.so.19.4.1 %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/mime/packages/kerfuffle.xml Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 501126) +++ head/astro/libkgeomap/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094758 -SHA256 (KDE/applications/19.04.0/libkgeomap-19.04.0.tar.xz) = 12cf73da1d406b8f6efe88c1d1bc56ecf3260bbe41759c4dec061df627e990e9 -SIZE (KDE/applications/19.04.0/libkgeomap-19.04.0.tar.xz) = 151096 +TIMESTAMP = 1557201949 +SHA256 (KDE/applications/19.04.1/libkgeomap-19.04.1.tar.xz) = 519345f30e46fc95816d145177347547c9c9eb440eab017c5ee928fa0ef8cf5a +SIZE (KDE/applications/19.04.1/libkgeomap-19.04.1.tar.xz) = 150712 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 501126) +++ head/astro/marble/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094759 -SHA256 (KDE/applications/19.04.0/marble-19.04.0.tar.xz) = 7405c76970d6ec500e5dc99ea2926cc11571e69f29c2e79f025f0f3ec4048960 -SIZE (KDE/applications/19.04.0/marble-19.04.0.tar.xz) = 52316628 +TIMESTAMP = 1557201950 +SHA256 (KDE/applications/19.04.1/marble-19.04.1.tar.xz) = acd9c15c4758684f6eff6c2318fc4dd88fd68dd41336de9458cad4d5f6832c61 +SIZE (KDE/applications/19.04.1/marble-19.04.1.tar.xz) = 52186700 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 501126) +++ head/audio/audiocd-kio/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094759 -SHA256 (KDE/applications/19.04.0/audiocd-kio-19.04.0.tar.xz) = 0f347be9c873eb75144d2b8f3f2e28d2e52be4c1a0f59a19be99edd867f17371 -SIZE (KDE/applications/19.04.0/audiocd-kio-19.04.0.tar.xz) = 353764 +TIMESTAMP = 1557201950 +SHA256 (KDE/applications/19.04.1/audiocd-kio-19.04.1.tar.xz) = fad61ea586db7a4ce202fbb16854f69a20e8e16518dd60c27112447a904edb98 +SIZE (KDE/applications/19.04.1/audiocd-kio-19.04.1.tar.xz) = 354308 Index: head/audio/audiocd-kio/pkg-plist =================================================================== --- head/audio/audiocd-kio/pkg-plist (revision 501126) +++ head/audio/audiocd-kio/pkg-plist (revision 501127) @@ -1,281 +1,282 @@ etc/xdg/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/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/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_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_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/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_lame.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_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.appdata.xml share/solid/actions/solid_audiocd.desktop Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 501126) +++ head/audio/juk/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094760 -SHA256 (KDE/applications/19.04.0/juk-19.04.0.tar.xz) = 952366e14526701109e83c1979c2a7b3dfdf3c054ecb86c9b5a6cf9825196f60 -SIZE (KDE/applications/19.04.0/juk-19.04.0.tar.xz) = 1872380 +TIMESTAMP = 1557201950 +SHA256 (KDE/applications/19.04.1/juk-19.04.1.tar.xz) = f141c0e33eccd931438a1b1fe37810951ab177b3fe853d6dd387f28f59382e51 +SIZE (KDE/applications/19.04.1/juk-19.04.1.tar.xz) = 1868240 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 501126) +++ head/audio/kmix/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094770 -SHA256 (KDE/applications/19.04.0/kmix-19.04.0.tar.xz) = f372d50ccdb496a3bb7a3f68c84c921c12d3d535a792400e701ed7c640e45f2a -SIZE (KDE/applications/19.04.0/kmix-19.04.0.tar.xz) = 1071276 +TIMESTAMP = 1557201961 +SHA256 (KDE/applications/19.04.1/kmix-19.04.1.tar.xz) = ca02ed8db5e4a3a58622b10668efb4c4a828de584b9f57116fee802e136352ea +SIZE (KDE/applications/19.04.1/kmix-19.04.1.tar.xz) = 1070212 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 501126) +++ head/audio/kwave/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094770 -SHA256 (KDE/applications/19.04.0/kwave-19.04.0.tar.xz) = 510b99740c87ade2e644b8b62ece9ac46721e636aeb83f253939d4d191d03a52 -SIZE (KDE/applications/19.04.0/kwave-19.04.0.tar.xz) = 6212184 +TIMESTAMP = 1557201961 +SHA256 (KDE/applications/19.04.1/kwave-19.04.1.tar.xz) = 1fd7e256a5d9b77ef691642891b2423357ef4aea7f40ae64304ec922e5930fd6 +SIZE (KDE/applications/19.04.1/kwave-19.04.1.tar.xz) = 6206876 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 501126) +++ head/audio/libkcddb/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094771 -SHA256 (KDE/applications/19.04.0/libkcddb-19.04.0.tar.xz) = d15cef6fe986daba5ea051fda7146c784d993e83ca495faf58fad586ca370c32 -SIZE (KDE/applications/19.04.0/libkcddb-19.04.0.tar.xz) = 426552 +TIMESTAMP = 1557201961 +SHA256 (KDE/applications/19.04.1/libkcddb-19.04.1.tar.xz) = 6773266408c0a68c128b08aca2df594249c210ff9b8fb3553b2bb82c591a2f51 +SIZE (KDE/applications/19.04.1/libkcddb-19.04.1.tar.xz) = 423600 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 501126) +++ head/audio/libkcompactdisc/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094771 -SHA256 (KDE/applications/19.04.0/libkcompactdisc-19.04.0.tar.xz) = 7236af70872c7b20070d9c096a8d4da45cdf62874d6d1314b183edf8b0d701d6 -SIZE (KDE/applications/19.04.0/libkcompactdisc-19.04.0.tar.xz) = 88608 +TIMESTAMP = 1557201962 +SHA256 (KDE/applications/19.04.1/libkcompactdisc-19.04.1.tar.xz) = 146d842741c24a379a0e134b8c0cbef916f5bd94fb8c6102703e5c764bf9b0ee +SIZE (KDE/applications/19.04.1/libkcompactdisc-19.04.1.tar.xz) = 89132 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 501126) +++ head/databases/akonadi/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094782 -SHA256 (KDE/applications/19.04.0/akonadi-19.04.0.tar.xz) = c0a2c4259b51293d21487cfe2295df6e8dcfb7ab50eb1a698f531dc7d3253e9a -SIZE (KDE/applications/19.04.0/akonadi-19.04.0.tar.xz) = 1574736 +TIMESTAMP = 1557201972 +SHA256 (KDE/applications/19.04.1/akonadi-19.04.1.tar.xz) = b157c4199e3b913c4f684f56ed9d76bef67b3c120c319c88ae24bded6fc927bc +SIZE (KDE/applications/19.04.1/akonadi-19.04.1.tar.xz) = 1572528 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 501126) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094782 -SHA256 (KDE/applications/19.04.0/akonadi-calendar-tools-19.04.0.tar.xz) = f9869574d880c53bfb87319348d75d8169ffb38bfdeb3b6066f25074409321ef -SIZE (KDE/applications/19.04.0/akonadi-calendar-tools-19.04.0.tar.xz) = 223700 +TIMESTAMP = 1557201972 +SHA256 (KDE/applications/19.04.1/akonadi-calendar-tools-19.04.1.tar.xz) = 6a8eb905d0e5a1602ce59d5cf28322d844dc178c4daf98db1cf9e0c95eeb3531 +SIZE (KDE/applications/19.04.1/akonadi-calendar-tools-19.04.1.tar.xz) = 223668 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 501126) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094782 -SHA256 (KDE/applications/19.04.0/akonadi-import-wizard-19.04.0.tar.xz) = 541b858278d56a5d41858bfa644656d4f04bf6e5a52ce8014d207d64812d6d22 -SIZE (KDE/applications/19.04.0/akonadi-import-wizard-19.04.0.tar.xz) = 439360 +TIMESTAMP = 1557201973 +SHA256 (KDE/applications/19.04.1/akonadi-import-wizard-19.04.1.tar.xz) = 2699ca57ea6a04228875dd795255fd32a1120e2e5c4834290aea3270c43403e7 +SIZE (KDE/applications/19.04.1/akonadi-import-wizard-19.04.1.tar.xz) = 439316 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 501126) +++ head/deskutils/akonadiconsole/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094783 -SHA256 (KDE/applications/19.04.0/akonadiconsole-19.04.0.tar.xz) = 5118720b6e0ecdf689c7b7f005f732386d0b7a6258cc11fb44fcaac5cc9518a8 -SIZE (KDE/applications/19.04.0/akonadiconsole-19.04.0.tar.xz) = 193828 +TIMESTAMP = 1557201973 +SHA256 (KDE/applications/19.04.1/akonadiconsole-19.04.1.tar.xz) = 33846348b0308eaf4ca81e8d577ce0eb6c17d49632e034607506413e86531262 +SIZE (KDE/applications/19.04.1/akonadiconsole-19.04.1.tar.xz) = 193540 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 501126) +++ head/deskutils/akregator/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094783 -SHA256 (KDE/applications/19.04.0/akregator-19.04.0.tar.xz) = 5104b0b66ac3917c7cb78f4a6cca952f7e4360cfcd0aa7ce1575d0551470fcee -SIZE (KDE/applications/19.04.0/akregator-19.04.0.tar.xz) = 2190328 +TIMESTAMP = 1557201973 +SHA256 (KDE/applications/19.04.1/akregator-19.04.1.tar.xz) = b2e731a3eac0a68865a90b71f17307c3aea8db304bf6663b551bc95907a490f1 +SIZE (KDE/applications/19.04.1/akregator-19.04.1.tar.xz) = 2189328 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 501126) +++ head/deskutils/grantlee-editor/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094784 -SHA256 (KDE/applications/19.04.0/grantlee-editor-19.04.0.tar.xz) = ac888f2f2ccd4b289deac1d2df4415124e14bf183db1ff1088e88fa782f9f342 -SIZE (KDE/applications/19.04.0/grantlee-editor-19.04.0.tar.xz) = 111048 +TIMESTAMP = 1557201974 +SHA256 (KDE/applications/19.04.1/grantlee-editor-19.04.1.tar.xz) = b07f3c3179010b1d9a9170bc6e2b85517c3dfbd277336316882f4503823e076a +SIZE (KDE/applications/19.04.1/grantlee-editor-19.04.1.tar.xz) = 110788 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 501126) +++ head/deskutils/grantleetheme/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094784 -SHA256 (KDE/applications/19.04.0/grantleetheme-19.04.0.tar.xz) = 6896a7e1db662bea03b6bdd9f92214b5fa50dfbebbbaa7b3156ddb87ccd55a3e -SIZE (KDE/applications/19.04.0/grantleetheme-19.04.0.tar.xz) = 51728 +TIMESTAMP = 1557201974 +SHA256 (KDE/applications/19.04.1/grantleetheme-19.04.1.tar.xz) = fdcf77c996123daea0559cc2ac4251b330e2c4388104ee95f814af770fc33d8b +SIZE (KDE/applications/19.04.1/grantleetheme-19.04.1.tar.xz) = 51760 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 501126) +++ head/deskutils/kaddressbook/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094784 -SHA256 (KDE/applications/19.04.0/kaddressbook-19.04.0.tar.xz) = 821708c0a33063de050682c7768faeb51a467de9c4314901761449c09a8a3265 -SIZE (KDE/applications/19.04.0/kaddressbook-19.04.0.tar.xz) = 472556 +TIMESTAMP = 1557201974 +SHA256 (KDE/applications/19.04.1/kaddressbook-19.04.1.tar.xz) = 15e84e6785e20e4f48020c093555e6c28930fcd946aa3421c56956564eba84fd +SIZE (KDE/applications/19.04.1/kaddressbook-19.04.1.tar.xz) = 473132 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 501126) +++ head/deskutils/kalarm/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094785 -SHA256 (KDE/applications/19.04.0/kalarm-19.04.0.tar.xz) = ed8f656e4aebb78d78f068ccde605489090ed0467452629784472b685fae331a -SIZE (KDE/applications/19.04.0/kalarm-19.04.0.tar.xz) = 1812640 +TIMESTAMP = 1557201974 +SHA256 (KDE/applications/19.04.1/kalarm-19.04.1.tar.xz) = e8a58584e765c1d98beb4b6bcac0ab835dcb1f1c1bab8cf1c01fa01a2a56bbfd +SIZE (KDE/applications/19.04.1/kalarm-19.04.1.tar.xz) = 1817636 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 501126) +++ head/deskutils/kcharselect/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094785 -SHA256 (KDE/applications/19.04.0/kcharselect-19.04.0.tar.xz) = 788e6e97bb53216b4777fb19602d823a8e62f9ea25082f545e970a561fb3a78f -SIZE (KDE/applications/19.04.0/kcharselect-19.04.0.tar.xz) = 334436 +TIMESTAMP = 1557201975 +SHA256 (KDE/applications/19.04.1/kcharselect-19.04.1.tar.xz) = c54570a6f968b2ccbe42c0a8dbaecb1f263fbd392f67b2d735ade492553ff9ec +SIZE (KDE/applications/19.04.1/kcharselect-19.04.1.tar.xz) = 334180 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 501126) +++ head/deskutils/kdepim-addons/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094786 -SHA256 (KDE/applications/19.04.0/kdepim-addons-19.04.0.tar.xz) = 778e946e74f36d368f484226ccc6f9cbd548d1cb2b0c3536e87d9374c64ddd88 -SIZE (KDE/applications/19.04.0/kdepim-addons-19.04.0.tar.xz) = 2081952 +TIMESTAMP = 1557201975 +SHA256 (KDE/applications/19.04.1/kdepim-addons-19.04.1.tar.xz) = d4e36a6d0043ad0ed5e3c427559bfaa29523578f99b613c82c3aaef16b2a7882 +SIZE (KDE/applications/19.04.1/kdepim-addons-19.04.1.tar.xz) = 2076816 Index: head/deskutils/kdepim-addons/pkg-plist =================================================================== --- head/deskutils/kdepim-addons/pkg-plist (revision 501126) +++ head/deskutils/kdepim-addons/pkg-plist (revision 501127) @@ -1,975 +1,977 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kdepim-addons.categories etc/xdg/kdepim-addons.renamecategories etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookimportexportlibprivate.so.5 lib/libkaddressbookimportexportlibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/contacteditor/addresslocationeditorplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/contacteditor/grantleetheme/default/addresseslocation.css share/contacteditor/grantleetheme/default/addresseslocation.html share/kconf_update/webengineurlinterceptoradblock.upd share/kmail2/pics/kmwizard.png share/kmail2/pics/kmwizard.svg share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/mailreader.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/mailreader.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/mailreader.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/mailreader.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/mailreader.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/mailreader.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/mailreader.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/mailreader.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/mailreader.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/mailreader.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/mailreader.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/mailreader.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/mailreader.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/mailreader.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/mailreader.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/mailreader.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/mailreader.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/mailreader.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/mailreader.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/mailreader.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/mailreader.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/mailreader.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo +share/locale/ko/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/mailreader.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/mailreader.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/mailreader.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/mailreader.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/mailreader.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/mailreader.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/mailreader.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/mailreader.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/mailreader.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/mailreader.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/mailreader.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/mailreader.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/mailreader.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/mailreader.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/mailreader.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/mailreader.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/mailreader.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/mailreader.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/mailreader.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/mailreader.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/mailreader.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/mailreader.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_contacteditor.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/mailreader.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 501126) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094786 -SHA256 (KDE/applications/19.04.0/kdepim-apps-libs-19.04.0.tar.xz) = f335f736d854b56bab89814db44761c7e49b35e5266dddee78d22c6465e305c1 -SIZE (KDE/applications/19.04.0/kdepim-apps-libs-19.04.0.tar.xz) = 85556 +TIMESTAMP = 1557201975 +SHA256 (KDE/applications/19.04.1/kdepim-apps-libs-19.04.1.tar.xz) = c3530a810a1eddfa06a27f24b723f971e7e2e144bbb2dac7ff30e7dec948a15d +SIZE (KDE/applications/19.04.1/kdepim-apps-libs-19.04.1.tar.xz) = 85564 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 501126) +++ head/deskutils/kdepim-runtime/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094786 -SHA256 (KDE/applications/19.04.0/kdepim-runtime-19.04.0.tar.xz) = 944e956d260ba5a735b3c94c6c075f207a9c38bf977ed19507b4dd0f3eaa4993 -SIZE (KDE/applications/19.04.0/kdepim-runtime-19.04.0.tar.xz) = 1769100 +TIMESTAMP = 1557201976 +SHA256 (KDE/applications/19.04.1/kdepim-runtime-19.04.1.tar.xz) = 1587eca5a206768917443bd5274c03d8cbb2cbc6dcbe60449110c326b1aa0744 +SIZE (KDE/applications/19.04.1/kdepim-runtime-19.04.1.tar.xz) = 1762968 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 501126) +++ head/deskutils/keditbookmarks/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094787 -SHA256 (KDE/applications/19.04.0/keditbookmarks-19.04.0.tar.xz) = 23770a42aa72eb275b2b5a21f8e2f0959eec112ab048c6d89999ee156cd2ef65 -SIZE (KDE/applications/19.04.0/keditbookmarks-19.04.0.tar.xz) = 184748 +TIMESTAMP = 1557201976 +SHA256 (KDE/applications/19.04.1/keditbookmarks-19.04.1.tar.xz) = 05788d55020f330b52bd8641e47990c90c7585871489993888ce0f40fa1686db +SIZE (KDE/applications/19.04.1/keditbookmarks-19.04.1.tar.xz) = 184780 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 501126) +++ head/deskutils/kfind/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094787 -SHA256 (KDE/applications/19.04.0/kfind-19.04.0.tar.xz) = 7eec5b096738bb28264bf870bdd85e24f97c62677be2d2a061f6c426ecfc3a47 -SIZE (KDE/applications/19.04.0/kfind-19.04.0.tar.xz) = 267804 +TIMESTAMP = 1557201976 +SHA256 (KDE/applications/19.04.1/kfind-19.04.1.tar.xz) = 496dd642473bfaa881387d2fb3a3507a9bf8c84b8a6874525221b561a50ef9fd +SIZE (KDE/applications/19.04.1/kfind-19.04.1.tar.xz) = 266556 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 501126) +++ head/deskutils/kmail/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094787 -SHA256 (KDE/applications/19.04.0/kmail-19.04.0.tar.xz) = c191057769513d51d6604e0f51e441e54770ac07a982175a5be29b7797d6f486 -SIZE (KDE/applications/19.04.0/kmail-19.04.0.tar.xz) = 4729284 +TIMESTAMP = 1557201977 +SHA256 (KDE/applications/19.04.1/kmail-19.04.1.tar.xz) = 62fcd78318d35848e5ae461f7ebd3b6f202c57c51008c71d7e2a1d1c3d58f2c5 +SIZE (KDE/applications/19.04.1/kmail-19.04.1.tar.xz) = 4724416 Index: head/deskutils/kmail/pkg-plist =================================================================== --- head/deskutils/kmail/pkg-plist (revision 501126) +++ head/deskutils/kmail/pkg-plist (revision 501127) @@ -1,365 +1,366 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/ktnef etc/xdg/kmail.categories etc/xdg/kmail.renamecategories etc/xdg/ktnefapps.categories etc/xdg/ktnefapps.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kservicetypes5/dbusmail.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 501126) +++ head/deskutils/kmail-account-wizard/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094788 -SHA256 (KDE/applications/19.04.0/kmail-account-wizard-19.04.0.tar.xz) = 640d63ceca23644e2f358c7117eb54daa0fffc669628398f7930fe273d7944a9 -SIZE (KDE/applications/19.04.0/kmail-account-wizard-19.04.0.tar.xz) = 156172 +TIMESTAMP = 1557201977 +SHA256 (KDE/applications/19.04.1/kmail-account-wizard-19.04.1.tar.xz) = c6714c425daa3d79dfb47b5d18cff26b10b1b087e4472f627738494f06d04ab8 +SIZE (KDE/applications/19.04.1/kmail-account-wizard-19.04.1.tar.xz) = 156044 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 501126) +++ head/deskutils/knotes/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094788 -SHA256 (KDE/applications/19.04.0/knotes-19.04.0.tar.xz) = e2f98d029105d18c5c14b774782287e281e2367eebeb84d52727a5156abe4092 -SIZE (KDE/applications/19.04.0/knotes-19.04.0.tar.xz) = 320232 +TIMESTAMP = 1557201977 +SHA256 (KDE/applications/19.04.1/knotes-19.04.1.tar.xz) = b5cc805c657622e8cc4ab0ea07f30ea0258e767a87e525bc02fbc7d6ee9d7ec9 +SIZE (KDE/applications/19.04.1/knotes-19.04.1.tar.xz) = 319644 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 501126) +++ head/deskutils/kontact/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094788 -SHA256 (KDE/applications/19.04.0/kontact-19.04.0.tar.xz) = 710d72ba01afa2aea89efca61f6c25245c0db04dc675b8871f7109a42a945cca -SIZE (KDE/applications/19.04.0/kontact-19.04.0.tar.xz) = 792972 +TIMESTAMP = 1557201978 +SHA256 (KDE/applications/19.04.1/kontact-19.04.1.tar.xz) = d60cc3165460a3e395778e4709ff55cbfbb80cc3536edb43d5d2335c70bd4714 +SIZE (KDE/applications/19.04.1/kontact-19.04.1.tar.xz) = 792608 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 501126) +++ head/deskutils/korganizer/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094789 -SHA256 (KDE/applications/19.04.0/korganizer-19.04.0.tar.xz) = 3e8c69db9f504e3ec80307d1552af21440621c0e480abf874a5a73482800bcaf -SIZE (KDE/applications/19.04.0/korganizer-19.04.0.tar.xz) = 2233956 +TIMESTAMP = 1557201978 +SHA256 (KDE/applications/19.04.1/korganizer-19.04.1.tar.xz) = cb5c06d13f9f6eb4191ef6b86dab72ecde92fe6d9c8b6d9a4396645c94f83b67 +SIZE (KDE/applications/19.04.1/korganizer-19.04.1.tar.xz) = 2221676 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 501126) +++ head/deskutils/kruler/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094789 -SHA256 (KDE/applications/19.04.0/kruler-19.04.0.tar.xz) = 7d29eac1d7f4e39f7d754ebb9d68aba70ab3dc12e8241007de750572ce761d73 -SIZE (KDE/applications/19.04.0/kruler-19.04.0.tar.xz) = 249356 +TIMESTAMP = 1557201978 +SHA256 (KDE/applications/19.04.1/kruler-19.04.1.tar.xz) = fdbff79128c8f4cb51f39dbb6f173726404d25c743aa68313651bb7a51addb53 +SIZE (KDE/applications/19.04.1/kruler-19.04.1.tar.xz) = 249100 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 501126) +++ head/deskutils/libkdepim/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094790 -SHA256 (KDE/applications/19.04.0/libkdepim-19.04.0.tar.xz) = 099c7bd90e540c6996f333393afa4831c94b6fbe65f7800bde712ebae4ba8a8e -SIZE (KDE/applications/19.04.0/libkdepim-19.04.0.tar.xz) = 337264 +TIMESTAMP = 1557201978 +SHA256 (KDE/applications/19.04.1/libkdepim-19.04.1.tar.xz) = 28217ce30663955168d39eaa4e0c7efb47a437f59df77971f3e98efea99adc45 +SIZE (KDE/applications/19.04.1/libkdepim-19.04.1.tar.xz) = 335840 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 501126) +++ head/deskutils/mbox-importer/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094790 -SHA256 (KDE/applications/19.04.0/mbox-importer-19.04.0.tar.xz) = 0fba78f2feee2ec7c11e64511195546b9c34695c091632494c1d77c2555eb888 -SIZE (KDE/applications/19.04.0/mbox-importer-19.04.0.tar.xz) = 33604 +TIMESTAMP = 1557201979 +SHA256 (KDE/applications/19.04.1/mbox-importer-19.04.1.tar.xz) = 3fcd5c6b3824dea9ff4145dde6bf7b472675e3927ce91258d89cbfe4d0ebb77a +SIZE (KDE/applications/19.04.1/mbox-importer-19.04.1.tar.xz) = 33720 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 501126) +++ head/deskutils/pim-data-exporter/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094790 -SHA256 (KDE/applications/19.04.0/pim-data-exporter-19.04.0.tar.xz) = ae1c3bbfffebb85533b0bbf4b0f8b54c06e29fcdf7284295c89ab43d196a6ac3 -SIZE (KDE/applications/19.04.0/pim-data-exporter-19.04.0.tar.xz) = 271220 +TIMESTAMP = 1557201979 +SHA256 (KDE/applications/19.04.1/pim-data-exporter-19.04.1.tar.xz) = 0fa9e20ef67f64d5a9c967f4ea32a476438b23ab8405774035cd4584e6100ebd +SIZE (KDE/applications/19.04.1/pim-data-exporter-19.04.1.tar.xz) = 269864 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 501126) +++ head/deskutils/pim-sieve-editor/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094791 -SHA256 (KDE/applications/19.04.0/pim-sieve-editor-19.04.0.tar.xz) = 0843df57695ca4dc359d048a7e3bf2b6bb66bd10d861714d316baa8ecb387dd1 -SIZE (KDE/applications/19.04.0/pim-sieve-editor-19.04.0.tar.xz) = 451312 +TIMESTAMP = 1557201979 +SHA256 (KDE/applications/19.04.1/pim-sieve-editor-19.04.1.tar.xz) = 3a8ce54140233fa7ae618fc05ae9d882cab6e56835e9fdb29e2242885ce50e10 +SIZE (KDE/applications/19.04.1/pim-sieve-editor-19.04.1.tar.xz) = 451596 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 501126) +++ head/devel/cervisia/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094791 -SHA256 (KDE/applications/19.04.0/cervisia-19.04.0.tar.xz) = 011d9b38a82508ae73328dc56723af11fa8403c0dcf5b7d7703118d79f2ad8f4 -SIZE (KDE/applications/19.04.0/cervisia-19.04.0.tar.xz) = 1896124 +TIMESTAMP = 1557201980 +SHA256 (KDE/applications/19.04.1/cervisia-19.04.1.tar.xz) = fe72361330b055922e4ae66edb2e6958897b7c443ab3066ab7bbef1b8fd9d41b +SIZE (KDE/applications/19.04.1/cervisia-19.04.1.tar.xz) = 1894516 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 501126) +++ head/devel/dolphin-plugins/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094791 -SHA256 (KDE/applications/19.04.0/dolphin-plugins-19.04.0.tar.xz) = c2898e0a64d5a9eab2a4bd661694b75805adfd0a925f1a21f894892264f96469 -SIZE (KDE/applications/19.04.0/dolphin-plugins-19.04.0.tar.xz) = 192060 +TIMESTAMP = 1557201980 +SHA256 (KDE/applications/19.04.1/dolphin-plugins-19.04.1.tar.xz) = dc528e93d3f7809b8480da5134ead3886205a172a85b25ffdd5720ec67892105 +SIZE (KDE/applications/19.04.1/dolphin-plugins-19.04.1.tar.xz) = 192444 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 501126) +++ head/devel/kapptemplate/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094792 -SHA256 (KDE/applications/19.04.0/kapptemplate-19.04.0.tar.xz) = 7983c4576c6168731958790851d732f8bd4f4313d2cd00a8bf4dd37a4b6a4bb4 -SIZE (KDE/applications/19.04.0/kapptemplate-19.04.0.tar.xz) = 317548 +TIMESTAMP = 1557201980 +SHA256 (KDE/applications/19.04.1/kapptemplate-19.04.1.tar.xz) = 5985705081aa94d282d173277e5717eede6f923eef4ed2d99182c46fbd1c9fd3 +SIZE (KDE/applications/19.04.1/kapptemplate-19.04.1.tar.xz) = 317448 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 501126) +++ head/devel/kcachegrind/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094792 -SHA256 (KDE/applications/19.04.0/kcachegrind-19.04.0.tar.xz) = 7021ac1b133e86692dad92ff8de6a0467c2b488d7e5c2977ee4880c166e088ca -SIZE (KDE/applications/19.04.0/kcachegrind-19.04.0.tar.xz) = 808596 +TIMESTAMP = 1557201980 +SHA256 (KDE/applications/19.04.1/kcachegrind-19.04.1.tar.xz) = 4b862becaa415601dc33391814637d8f089f2e2732192111ec029beb89991ac2 +SIZE (KDE/applications/19.04.1/kcachegrind-19.04.1.tar.xz) = 812720 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 501126) +++ head/devel/kde-dev-scripts/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094792 -SHA256 (KDE/applications/19.04.0/kde-dev-scripts-19.04.0.tar.xz) = 23b777143c9402bf089cd2f84c5ac363183b74dcf81be8c08d74d5d099e898e5 -SIZE (KDE/applications/19.04.0/kde-dev-scripts-19.04.0.tar.xz) = 378052 +TIMESTAMP = 1557201981 +SHA256 (KDE/applications/19.04.1/kde-dev-scripts-19.04.1.tar.xz) = aa039d08b0e151703b6be0571d254d3656589d0b8422214110c460bd1f2aa6c2 +SIZE (KDE/applications/19.04.1/kde-dev-scripts-19.04.1.tar.xz) = 377700 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 501126) +++ head/devel/kde-dev-utils/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094793 -SHA256 (KDE/applications/19.04.0/kde-dev-utils-19.04.0.tar.xz) = ec2df1ab8b73f19ffc8ec7abeba0577b42d15bc372a19b456a2a04ebb4691031 -SIZE (KDE/applications/19.04.0/kde-dev-utils-19.04.0.tar.xz) = 61648 +TIMESTAMP = 1557201981 +SHA256 (KDE/applications/19.04.1/kde-dev-utils-19.04.1.tar.xz) = 9bca818e44f80ece758c0430aebcaf56252bbdffed6c8f65d04ccb4d019f2d9b +SIZE (KDE/applications/19.04.1/kde-dev-utils-19.04.1.tar.xz) = 61736 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 501126) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094793 -SHA256 (KDE/applications/19.04.0/kdesdk-thumbnailers-19.04.0.tar.xz) = 195f539bec6e19de83e07dce117f7cd656f77199c2863a6a5738112d53843243 -SIZE (KDE/applications/19.04.0/kdesdk-thumbnailers-19.04.0.tar.xz) = 17252 +TIMESTAMP = 1557201981 +SHA256 (KDE/applications/19.04.1/kdesdk-thumbnailers-19.04.1.tar.xz) = 554d291605ac8827a2a4f6513a2230d9f9b0b8fcd6a37b0acd41c4db81fa3442 +SIZE (KDE/applications/19.04.1/kdesdk-thumbnailers-19.04.1.tar.xz) = 17200 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 501126) +++ head/devel/kio-extras/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094794 -SHA256 (KDE/applications/19.04.0/kio-extras-19.04.0.tar.xz) = 0f3f2eaf40512cf4a61b09b94ca365d7d05c7b1a75f4e8afd047143a8e962d85 -SIZE (KDE/applications/19.04.0/kio-extras-19.04.0.tar.xz) = 569440 +TIMESTAMP = 1557201982 +SHA256 (KDE/applications/19.04.1/kio-extras-19.04.1.tar.xz) = ddf389a50142211566124ba902bb9f6b2988b1b94fefed7620a6ec421e3ff0bd +SIZE (KDE/applications/19.04.1/kio-extras-19.04.1.tar.xz) = 570944 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 501126) +++ head/devel/lokalize/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094794 -SHA256 (KDE/applications/19.04.0/lokalize-19.04.0.tar.xz) = e2e8cd6f9bb0e59ffd4b88e5513b757df3b63892ce90e7000c872e896ef74266 -SIZE (KDE/applications/19.04.0/lokalize-19.04.0.tar.xz) = 1680008 +TIMESTAMP = 1557201982 +SHA256 (KDE/applications/19.04.1/lokalize-19.04.1.tar.xz) = 1e68faa5af9079e691e5d207b0397c0250fb6e1209b370e9762bfa949c35dce1 +SIZE (KDE/applications/19.04.1/lokalize-19.04.1.tar.xz) = 1676620 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 501126) +++ head/devel/poxml/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094794 -SHA256 (KDE/applications/19.04.0/poxml-19.04.0.tar.xz) = c0a24557cc7e243790c5273fb2a4ff585a3e89cc994772a52979015d2e57a985 -SIZE (KDE/applications/19.04.0/poxml-19.04.0.tar.xz) = 43172 +TIMESTAMP = 1557201982 +SHA256 (KDE/applications/19.04.1/poxml-19.04.1.tar.xz) = d8439996821ded53dea321f84619f3754cc677b5fa08b5fd37aabb09b8dac2f9 +SIZE (KDE/applications/19.04.1/poxml-19.04.1.tar.xz) = 43280 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 501126) +++ head/devel/umbrello/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094795 -SHA256 (KDE/applications/19.04.0/umbrello-19.04.0.tar.xz) = 7c37363a92bd91f2a515438068ba6f1c8747269ddaf2eda5a7998539ece4468d -SIZE (KDE/applications/19.04.0/umbrello-19.04.0.tar.xz) = 3680256 +TIMESTAMP = 1557201983 +SHA256 (KDE/applications/19.04.1/umbrello-19.04.1.tar.xz) = 42f9ba60320558439a1d5c68cc4d730c6b17e0b2b8a57b4686031bbecb3ab3c2 +SIZE (KDE/applications/19.04.1/umbrello-19.04.1.tar.xz) = 3678268 Index: head/devel/umbrello/pkg-plist =================================================================== --- head/devel/umbrello/pkg-plist (revision 501126) +++ head/devel/umbrello/pkg-plist (revision 501127) @@ -1,159 +1,160 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo +share/locale/ko/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 501126) +++ head/editors/kate/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094795 -SHA256 (KDE/applications/19.04.0/kate-19.04.0.tar.xz) = 64c3c312a69d45624e3619309b86de796f67d30a864433a5c24aeb4e299bacc9 -SIZE (KDE/applications/19.04.0/kate-19.04.0.tar.xz) = 5792940 +TIMESTAMP = 1557201983 +SHA256 (KDE/applications/19.04.1/kate-19.04.1.tar.xz) = af55513f00af1712a39631352e393dbd2f63ec6bd471831b44853a16d4bfbe8f +SIZE (KDE/applications/19.04.1/kate-19.04.1.tar.xz) = 5799496 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 501126) +++ head/games/blinken/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094795 -SHA256 (KDE/applications/19.04.0/blinken-19.04.0.tar.xz) = 5d470c7f0d232ea01c99fbe1ed08e103291e80c3cfe74e245aba1c2009573eed -SIZE (KDE/applications/19.04.0/blinken-19.04.0.tar.xz) = 2819928 +TIMESTAMP = 1557201983 +SHA256 (KDE/applications/19.04.1/blinken-19.04.1.tar.xz) = 87fbf14568692885e7a496a8dae0c4f53a2837d1a824f9c7cf1038a7e8c861ca +SIZE (KDE/applications/19.04.1/blinken-19.04.1.tar.xz) = 2819912 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 501126) +++ head/games/bomber/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094796 -SHA256 (KDE/applications/19.04.0/bomber-19.04.0.tar.xz) = 4f82f3f42aff36de837f7c9ddc5986f6c73cb50de122b46320dba0a0b03f9a7d -SIZE (KDE/applications/19.04.0/bomber-19.04.0.tar.xz) = 819520 +TIMESTAMP = 1557201984 +SHA256 (KDE/applications/19.04.1/bomber-19.04.1.tar.xz) = 1359ebcaab26acd2dfa738160f9dd7a86e5bfa3d3b2f8a86c656ee187ad6c3fe +SIZE (KDE/applications/19.04.1/bomber-19.04.1.tar.xz) = 818676 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 501126) +++ head/games/bovo/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094796 -SHA256 (KDE/applications/19.04.0/bovo-19.04.0.tar.xz) = 2cfccb09087a32d8a75f6dd763168e2ef5928f55b58505a542bc36fdac8e141e -SIZE (KDE/applications/19.04.0/bovo-19.04.0.tar.xz) = 199636 +TIMESTAMP = 1557201984 +SHA256 (KDE/applications/19.04.1/bovo-19.04.1.tar.xz) = 46b5286349ba7765b81edf92f834c3e8e5c0ecd65466deb5fa593477e76f0763 +SIZE (KDE/applications/19.04.1/bovo-19.04.1.tar.xz) = 199296 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 501126) +++ head/games/granatier/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094796 -SHA256 (KDE/applications/19.04.0/granatier-19.04.0.tar.xz) = d83e91a5056e4caf1e522921025cb79355c0c2d53b7f0e98444d37291d80d63a -SIZE (KDE/applications/19.04.0/granatier-19.04.0.tar.xz) = 1942988 +TIMESTAMP = 1557201984 +SHA256 (KDE/applications/19.04.1/granatier-19.04.1.tar.xz) = 372dd577805457425bb9c35b5f434089aa2bb7c1e6f54908b2be60d4dda2cb22 +SIZE (KDE/applications/19.04.1/granatier-19.04.1.tar.xz) = 1940824 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 501126) +++ head/games/kanagram/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094797 -SHA256 (KDE/applications/19.04.0/kanagram-19.04.0.tar.xz) = dda3ce8211957e016521597a923de92d261e32c31ebf84faa697bd26cf16647c -SIZE (KDE/applications/19.04.0/kanagram-19.04.0.tar.xz) = 8030456 +TIMESTAMP = 1557201985 +SHA256 (KDE/applications/19.04.1/kanagram-19.04.1.tar.xz) = 70b0f7b20f2ebd951e3a10097990f9232cd1e3e6c11441d93513d435a7cb7f38 +SIZE (KDE/applications/19.04.1/kanagram-19.04.1.tar.xz) = 8031916 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 501126) +++ head/games/kapman/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094797 -SHA256 (KDE/applications/19.04.0/kapman-19.04.0.tar.xz) = f77dd3210bcdfb2d424f7a919848e25a4b4ae994d74b59111f352e41c2086324 -SIZE (KDE/applications/19.04.0/kapman-19.04.0.tar.xz) = 2525660 +TIMESTAMP = 1557201985 +SHA256 (KDE/applications/19.04.1/kapman-19.04.1.tar.xz) = 7714a0cbd8e24f3ce46679d1f16d690c8bc62a988f0b3175095e0f0c23ce1400 +SIZE (KDE/applications/19.04.1/kapman-19.04.1.tar.xz) = 2525640 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 501126) +++ head/games/katomic/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094798 -SHA256 (KDE/applications/19.04.0/katomic-19.04.0.tar.xz) = ea6e6642e16f985653caf2cd9dd61248e7038fb0246e9af4d4daec20401537a2 -SIZE (KDE/applications/19.04.0/katomic-19.04.0.tar.xz) = 1422836 +TIMESTAMP = 1557201985 +SHA256 (KDE/applications/19.04.1/katomic-19.04.1.tar.xz) = 2addfb86ec0043ab81046d64862e8fbeb3b4dd3b8d18f618ac8c39d995a05ce5 +SIZE (KDE/applications/19.04.1/katomic-19.04.1.tar.xz) = 1421152 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 501126) +++ head/games/kblackbox/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094798 -SHA256 (KDE/applications/19.04.0/kblackbox-19.04.0.tar.xz) = 9363167664b6b4e54325f9691333df912eefa1e19d387c9a2780626914b813f9 -SIZE (KDE/applications/19.04.0/kblackbox-19.04.0.tar.xz) = 444344 +TIMESTAMP = 1557201985 +SHA256 (KDE/applications/19.04.1/kblackbox-19.04.1.tar.xz) = 9b5d57d0058c2458b7e24bd885d164cc1523d0c45827082e55af6ce669992431 +SIZE (KDE/applications/19.04.1/kblackbox-19.04.1.tar.xz) = 444424 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 501126) +++ head/games/kblocks/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094798 -SHA256 (KDE/applications/19.04.0/kblocks-19.04.0.tar.xz) = c70a60f3a2e4c8f7756a1f9b1e025f8f91ec83c4f54feedf0ba05eea36b0037e -SIZE (KDE/applications/19.04.0/kblocks-19.04.0.tar.xz) = 1920744 +TIMESTAMP = 1557201986 +SHA256 (KDE/applications/19.04.1/kblocks-19.04.1.tar.xz) = 0ae62f1aa9aeaa58f6e5fd62d6281159ef8a2bbee28d84b9d7a2ab207ec95390 +SIZE (KDE/applications/19.04.1/kblocks-19.04.1.tar.xz) = 1921740 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 501126) +++ head/games/kbounce/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094799 -SHA256 (KDE/applications/19.04.0/kbounce-19.04.0.tar.xz) = cd28d777db8ff1dc1437fb6456c2fdfe8b9005c0cea3ce05337fbf425803834f -SIZE (KDE/applications/19.04.0/kbounce-19.04.0.tar.xz) = 3467584 +TIMESTAMP = 1557201986 +SHA256 (KDE/applications/19.04.1/kbounce-19.04.1.tar.xz) = 729662f29e1b5b17b775bfa6895088cf3a7ee4ce3d4f2bc3db4f69ab0f07ca12 +SIZE (KDE/applications/19.04.1/kbounce-19.04.1.tar.xz) = 3467528 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 501126) +++ head/games/kbreakout/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094799 -SHA256 (KDE/applications/19.04.0/kbreakout-19.04.0.tar.xz) = c4aa847def701be288e53ceb27c8c63c34aa527f8e64c91fb007d053b1119db8 -SIZE (KDE/applications/19.04.0/kbreakout-19.04.0.tar.xz) = 2276364 +TIMESTAMP = 1557201986 +SHA256 (KDE/applications/19.04.1/kbreakout-19.04.1.tar.xz) = 9f40bb1c2d2e29a1098e371ffd0e97595d8e23cc7af2111fd143b67fac1393ad +SIZE (KDE/applications/19.04.1/kbreakout-19.04.1.tar.xz) = 2273460 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 501126) +++ head/games/kdiamond/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094810 -SHA256 (KDE/applications/19.04.0/kdiamond-19.04.0.tar.xz) = 121ef36611bf7fe9a7d1d4700622a4cc8a349fe262b7c568026a4da55dfd4b26 -SIZE (KDE/applications/19.04.0/kdiamond-19.04.0.tar.xz) = 4719696 +TIMESTAMP = 1557201997 +SHA256 (KDE/applications/19.04.1/kdiamond-19.04.1.tar.xz) = a7588f21e7151c1053787f75a17c1062a9c0b43611b824632ed1b8689f4996f3 +SIZE (KDE/applications/19.04.1/kdiamond-19.04.1.tar.xz) = 4719984 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 501126) +++ head/games/kfourinline/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094810 -SHA256 (KDE/applications/19.04.0/kfourinline-19.04.0.tar.xz) = 458bc34c169df064c8d974d6f27e18e3cc5f3e9fb069358817d00a590f2e200a -SIZE (KDE/applications/19.04.0/kfourinline-19.04.0.tar.xz) = 636688 +TIMESTAMP = 1557201997 +SHA256 (KDE/applications/19.04.1/kfourinline-19.04.1.tar.xz) = 9ba39703ccf64b76a0b9a2705d65b7c6c2067db795cfed298f0e3a2eac48b973 +SIZE (KDE/applications/19.04.1/kfourinline-19.04.1.tar.xz) = 636740 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 501126) +++ head/games/kgoldrunner/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094810 -SHA256 (KDE/applications/19.04.0/kgoldrunner-19.04.0.tar.xz) = 3d2eb37695328065ee5cf4c4ba4ee707ce514b4c7aab84c93cd3bef8d329b8ba -SIZE (KDE/applications/19.04.0/kgoldrunner-19.04.0.tar.xz) = 4415300 +TIMESTAMP = 1557201998 +SHA256 (KDE/applications/19.04.1/kgoldrunner-19.04.1.tar.xz) = 11db3aecf77b7097b7d3d626dba4a3b4bcd3d5ab02a1e04cf7f6932b0b73a760 +SIZE (KDE/applications/19.04.1/kgoldrunner-19.04.1.tar.xz) = 4419644 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 501126) +++ head/games/khangman/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094811 -SHA256 (KDE/applications/19.04.0/khangman-19.04.0.tar.xz) = 2a7120f7a54848dc017efdb86c22a964626029d9ca300d8e1488d385f10dc61c -SIZE (KDE/applications/19.04.0/khangman-19.04.0.tar.xz) = 7124812 +TIMESTAMP = 1557201998 +SHA256 (KDE/applications/19.04.1/khangman-19.04.1.tar.xz) = 5d35620bc048ecabd21b20cadfa8df07e72f195bdc5b9ad2c7e86e17d27afe27 +SIZE (KDE/applications/19.04.1/khangman-19.04.1.tar.xz) = 7126484 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 501126) +++ head/games/kigo/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094811 -SHA256 (KDE/applications/19.04.0/kigo-19.04.0.tar.xz) = 30f12515ec4d22d39c6c90690545e1975a3ba9917180503ef42cba40ffbd874c -SIZE (KDE/applications/19.04.0/kigo-19.04.0.tar.xz) = 5224380 +TIMESTAMP = 1557201998 +SHA256 (KDE/applications/19.04.1/kigo-19.04.1.tar.xz) = 5b5cae565a79309dc23b26acf2f596d36fd62950af58405094e4fa9a38e5e4ad +SIZE (KDE/applications/19.04.1/kigo-19.04.1.tar.xz) = 5224196 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 501126) +++ head/games/killbots/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094811 -SHA256 (KDE/applications/19.04.0/killbots-19.04.0.tar.xz) = 0cc928a1956b72bc207feed237598b445b5a7d7d26a266ec88080c1510870359 -SIZE (KDE/applications/19.04.0/killbots-19.04.0.tar.xz) = 1167108 +TIMESTAMP = 1557201998 +SHA256 (KDE/applications/19.04.1/killbots-19.04.1.tar.xz) = 8829dba8a3af320b03e21cd356e53fef0e70c10831ffeb6a70b722dde9877938 +SIZE (KDE/applications/19.04.1/killbots-19.04.1.tar.xz) = 1168904 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 501126) +++ head/games/kiriki/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094812 -SHA256 (KDE/applications/19.04.0/kiriki-19.04.0.tar.xz) = feb7b4fce0e6b1749bddd254a46a5d34bf5584a3d60aef460816380141ad630e -SIZE (KDE/applications/19.04.0/kiriki-19.04.0.tar.xz) = 371864 +TIMESTAMP = 1557201999 +SHA256 (KDE/applications/19.04.1/kiriki-19.04.1.tar.xz) = 131c6b5bd8f2b014a28bd5cb9985111f63991974b672dcfbc0266d32f069954b +SIZE (KDE/applications/19.04.1/kiriki-19.04.1.tar.xz) = 371708 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 501126) +++ head/games/kjumpingcube/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094812 -SHA256 (KDE/applications/19.04.0/kjumpingcube-19.04.0.tar.xz) = 28fabf01d0a2481c54018d00985254acb107579c5afa93bbec7b3795c2a3f143 -SIZE (KDE/applications/19.04.0/kjumpingcube-19.04.0.tar.xz) = 286896 +TIMESTAMP = 1557201999 +SHA256 (KDE/applications/19.04.1/kjumpingcube-19.04.1.tar.xz) = 13d6a138e09c9088ce38fe9a124bd600386dc097b929f6f85416bc1da0012ab1 +SIZE (KDE/applications/19.04.1/kjumpingcube-19.04.1.tar.xz) = 286204 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 501126) +++ head/games/klickety/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094812 -SHA256 (KDE/applications/19.04.0/klickety-19.04.0.tar.xz) = 2ad160e3ea0a6f11c828f3b4bcea8f75db4121dda6d6e498fa1fc095e82e80e5 -SIZE (KDE/applications/19.04.0/klickety-19.04.0.tar.xz) = 1388736 +TIMESTAMP = 1557201999 +SHA256 (KDE/applications/19.04.1/klickety-19.04.1.tar.xz) = d4ae4d002f008200a6ce920f2aff6841d9ad58b22c392d7eefac7867b32340af +SIZE (KDE/applications/19.04.1/klickety-19.04.1.tar.xz) = 1388332 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 501126) +++ head/games/klines/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094813 -SHA256 (KDE/applications/19.04.0/klines-19.04.0.tar.xz) = 139c0a4da7186e6e57228fcbe8666aa40e52ae01f328fea4d53ed8611ed54a96 -SIZE (KDE/applications/19.04.0/klines-19.04.0.tar.xz) = 1781660 +TIMESTAMP = 1557202000 +SHA256 (KDE/applications/19.04.1/klines-19.04.1.tar.xz) = 2ca4ad74fefa87bbf3a38ea90b55025ab8554bfdc47d7e4323e0906e9e1c8962 +SIZE (KDE/applications/19.04.1/klines-19.04.1.tar.xz) = 1779684 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 501126) +++ head/games/kmahjongg/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094813 -SHA256 (KDE/applications/19.04.0/kmahjongg-19.04.0.tar.xz) = 519bf6bb0bc098f74467d3ec9b49c82d22241dfd518d004163565e86dbc21a36 -SIZE (KDE/applications/19.04.0/kmahjongg-19.04.0.tar.xz) = 4065108 +TIMESTAMP = 1557202000 +SHA256 (KDE/applications/19.04.1/kmahjongg-19.04.1.tar.xz) = 75dbcfb5747530a3b69574fdc87b532067516415f962e7943feef97549237c99 +SIZE (KDE/applications/19.04.1/kmahjongg-19.04.1.tar.xz) = 4063280 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 501126) +++ head/games/kmines/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094814 -SHA256 (KDE/applications/19.04.0/kmines-19.04.0.tar.xz) = 56452ab18c74f2863efc99200a5facd53827382c06fc8534d095bffaca497566 -SIZE (KDE/applications/19.04.0/kmines-19.04.0.tar.xz) = 904216 +TIMESTAMP = 1557202000 +SHA256 (KDE/applications/19.04.1/kmines-19.04.1.tar.xz) = 98a3860113a51e215a42791e3eb845978cda51fb5001b8e8bb41fe9182765d12 +SIZE (KDE/applications/19.04.1/kmines-19.04.1.tar.xz) = 903768 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 501126) +++ head/games/knavalbattle/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094814 -SHA256 (KDE/applications/19.04.0/knavalbattle-19.04.0.tar.xz) = 1e6fbd202092230017c268cd825438debf766e3cc810244b63dc8690b5a69585 -SIZE (KDE/applications/19.04.0/knavalbattle-19.04.0.tar.xz) = 1280608 +TIMESTAMP = 1557202001 +SHA256 (KDE/applications/19.04.1/knavalbattle-19.04.1.tar.xz) = f7b5ad956e4b1c06b04fec2d6f39331e81f2c44c716c2e666ef75b9d786982bc +SIZE (KDE/applications/19.04.1/knavalbattle-19.04.1.tar.xz) = 1280608 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 501126) +++ head/games/knetwalk/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094814 -SHA256 (KDE/applications/19.04.0/knetwalk-19.04.0.tar.xz) = 84b03a6b7c3ff6634402b016089a54ed0116ace221fdfb04ad3d2a8997f68b4b -SIZE (KDE/applications/19.04.0/knetwalk-19.04.0.tar.xz) = 1037856 +TIMESTAMP = 1557202001 +SHA256 (KDE/applications/19.04.1/knetwalk-19.04.1.tar.xz) = e762415b6891c4098febc090bc80e5698cd3fb9ac2b8f4988aaf096816e3b62b +SIZE (KDE/applications/19.04.1/knetwalk-19.04.1.tar.xz) = 1038300 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 501126) +++ head/games/knights/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094815 -SHA256 (KDE/applications/19.04.0/knights-19.04.0.tar.xz) = 53eb3214550fc104755ffe076c970cf5499c9553b543d83df42a3b5f5d8d309a -SIZE (KDE/applications/19.04.0/knights-19.04.0.tar.xz) = 3509000 +TIMESTAMP = 1557202001 +SHA256 (KDE/applications/19.04.1/knights-19.04.1.tar.xz) = d722fad8e835ea402337ffe1e6b8d1a5bda5a0e1c36ee3a89a6782b666a8534e +SIZE (KDE/applications/19.04.1/knights-19.04.1.tar.xz) = 3507300 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 501126) +++ head/games/kolf/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094815 -SHA256 (KDE/applications/19.04.0/kolf-19.04.0.tar.xz) = 431b31dc6290214be5f5df1d3c6a8eb4a910b4f72135840d4ec3fa6945319c81 -SIZE (KDE/applications/19.04.0/kolf-19.04.0.tar.xz) = 1023072 +TIMESTAMP = 1557202001 +SHA256 (KDE/applications/19.04.1/kolf-19.04.1.tar.xz) = 92a56f5e5602a898537f87e12968e47cfe6f76d10daac6240e9f60e6751d06d7 +SIZE (KDE/applications/19.04.1/kolf-19.04.1.tar.xz) = 1022824 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 501126) +++ head/games/kollision/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094815 -SHA256 (KDE/applications/19.04.0/kollision-19.04.0.tar.xz) = f218ef5691235155911b4d03cd301ee6caa0bde6eb324cd55117e722002b0927 -SIZE (KDE/applications/19.04.0/kollision-19.04.0.tar.xz) = 280852 +TIMESTAMP = 1557202002 +SHA256 (KDE/applications/19.04.1/kollision-19.04.1.tar.xz) = 2c243790feb8d7a7760fcadff6b06b21aea930218d0915664b420dccdc1c7de9 +SIZE (KDE/applications/19.04.1/kollision-19.04.1.tar.xz) = 280600 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 501126) +++ head/games/konquest/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094816 -SHA256 (KDE/applications/19.04.0/konquest-19.04.0.tar.xz) = 5361a865fefc0dac19e166d282188b732cfbe4389afe095c38c8d30b56f7ff6f -SIZE (KDE/applications/19.04.0/konquest-19.04.0.tar.xz) = 658504 +TIMESTAMP = 1557202002 +SHA256 (KDE/applications/19.04.1/konquest-19.04.1.tar.xz) = cac10983efbc026d5c8cd3330c94865b43b1a229ff9bb76077ab25d734133aab +SIZE (KDE/applications/19.04.1/konquest-19.04.1.tar.xz) = 658136 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 501126) +++ head/games/kpat/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094816 -SHA256 (KDE/applications/19.04.0/kpat-19.04.0.tar.xz) = bcd295a3df422b5cfa8258bb3cd0be7e4405f44604681d98589f2982c44414a1 -SIZE (KDE/applications/19.04.0/kpat-19.04.0.tar.xz) = 3574476 +TIMESTAMP = 1557202002 +SHA256 (KDE/applications/19.04.1/kpat-19.04.1.tar.xz) = 2c0b29e5d372d55d77ceced098b8262b11a431518e818eec052d867c21ad6896 +SIZE (KDE/applications/19.04.1/kpat-19.04.1.tar.xz) = 3575064 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 501126) +++ head/games/kreversi/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094816 -SHA256 (KDE/applications/19.04.0/kreversi-19.04.0.tar.xz) = a715d068eaf381a26e1f432f2d6b3f3ffffb388282b484cd8ad0833acf429d82 -SIZE (KDE/applications/19.04.0/kreversi-19.04.0.tar.xz) = 943104 +TIMESTAMP = 1557202003 +SHA256 (KDE/applications/19.04.1/kreversi-19.04.1.tar.xz) = c8bce72bff0bd8b452335c158900d41a419ce3e62afd996f67a4b77abf38cdc9 +SIZE (KDE/applications/19.04.1/kreversi-19.04.1.tar.xz) = 942636 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 501126) +++ head/games/kshisen/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094817 -SHA256 (KDE/applications/19.04.0/kshisen-19.04.0.tar.xz) = c7d2799105c71d5d0077383c9b24a52ae85705c39977c8dc167a2594651c17eb -SIZE (KDE/applications/19.04.0/kshisen-19.04.0.tar.xz) = 821292 +TIMESTAMP = 1557202003 +SHA256 (KDE/applications/19.04.1/kshisen-19.04.1.tar.xz) = a9e0e7324bb1bcad6c9427c0563236e557de85ad9724a52cfc917b43726b1aa6 +SIZE (KDE/applications/19.04.1/kshisen-19.04.1.tar.xz) = 822288 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 501126) +++ head/games/ksirk/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094817 -SHA256 (KDE/applications/19.04.0/ksirk-19.04.0.tar.xz) = 3dcd578050807aa37652e5e589ddff7a5aec46c82309db85aab588bd3060d5a0 -SIZE (KDE/applications/19.04.0/ksirk-19.04.0.tar.xz) = 6989220 +TIMESTAMP = 1557202003 +SHA256 (KDE/applications/19.04.1/ksirk-19.04.1.tar.xz) = 170cc0f9dea3f35e15de5d1090e8e3fa2b2ed16fa1722dfeaef47339667f322e +SIZE (KDE/applications/19.04.1/ksirk-19.04.1.tar.xz) = 6994692 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 501126) +++ head/games/ksnakeduel/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094817 -SHA256 (KDE/applications/19.04.0/ksnakeduel-19.04.0.tar.xz) = e9ca727c7e7cef21e9bedbb1504b2023baac9ab5ba0b624dc91e1bf716eb8335 -SIZE (KDE/applications/19.04.0/ksnakeduel-19.04.0.tar.xz) = 605036 +TIMESTAMP = 1557202004 +SHA256 (KDE/applications/19.04.1/ksnakeduel-19.04.1.tar.xz) = 89de9e20e71ac8225e94d406cd3d25f057df35c96d4a3b7d418ffe5e6b0ef046 +SIZE (KDE/applications/19.04.1/ksnakeduel-19.04.1.tar.xz) = 604480 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 501126) +++ head/games/kspaceduel/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094818 -SHA256 (KDE/applications/19.04.0/kspaceduel-19.04.0.tar.xz) = 486b8d84f3070b7795456ec5847d7b5a9bb3c2b5d3e1c4bcdfedff18b8d735a7 -SIZE (KDE/applications/19.04.0/kspaceduel-19.04.0.tar.xz) = 610640 +TIMESTAMP = 1557202004 +SHA256 (KDE/applications/19.04.1/kspaceduel-19.04.1.tar.xz) = 388eaf152c996bd7326f0a4cd18fafb2600659513750d0aadd98b780eb6ec8b7 +SIZE (KDE/applications/19.04.1/kspaceduel-19.04.1.tar.xz) = 610168 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 501126) +++ head/games/ksquares/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094818 -SHA256 (KDE/applications/19.04.0/ksquares-19.04.0.tar.xz) = c5a7dc34619f1ee4d621c3371b65bdcd46cf3433c183b4bc85c8a7586b6e85b4 -SIZE (KDE/applications/19.04.0/ksquares-19.04.0.tar.xz) = 259712 +TIMESTAMP = 1557202004 +SHA256 (KDE/applications/19.04.1/ksquares-19.04.1.tar.xz) = 3c9b0cb0921d1c29c6c451a22b318151010a3321350292d0d5fc26cc16618773 +SIZE (KDE/applications/19.04.1/ksquares-19.04.1.tar.xz) = 259264 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 501126) +++ head/games/ksudoku/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094828 -SHA256 (KDE/applications/19.04.0/ksudoku-19.04.0.tar.xz) = 4f5cff274741326bff02108fef4996f289c56ff026fd6e2921e4a2bf492a14cb -SIZE (KDE/applications/19.04.0/ksudoku-19.04.0.tar.xz) = 1646724 +TIMESTAMP = 1557202014 +SHA256 (KDE/applications/19.04.1/ksudoku-19.04.1.tar.xz) = 4f95ccd1b162c7fb7cad2b04e08e3a29cfc98ad27b87e6e76e389418d09c0f7b +SIZE (KDE/applications/19.04.1/ksudoku-19.04.1.tar.xz) = 1645944 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 501126) +++ head/games/ktuberling/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094829 -SHA256 (KDE/applications/19.04.0/ktuberling-19.04.0.tar.xz) = 984c29562bd20f93117e7d79aa120dd906e6d4490ae5d2b52ad03f7bbfb85ace -SIZE (KDE/applications/19.04.0/ktuberling-19.04.0.tar.xz) = 32630400 +TIMESTAMP = 1557202015 +SHA256 (KDE/applications/19.04.1/ktuberling-19.04.1.tar.xz) = f8146ecbe3a1005871a589054b996d059e5ff08b9d7fdeaa06591ae0ab05b8cb +SIZE (KDE/applications/19.04.1/ktuberling-19.04.1.tar.xz) = 32635960 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 501126) +++ head/games/kubrick/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094839 -SHA256 (KDE/applications/19.04.0/kubrick-19.04.0.tar.xz) = 72adc4e07df6062dd444c4bb9571429acf9c2ee68e273bc42c7925b1c06aad5e -SIZE (KDE/applications/19.04.0/kubrick-19.04.0.tar.xz) = 311376 +TIMESTAMP = 1557202025 +SHA256 (KDE/applications/19.04.1/kubrick-19.04.1.tar.xz) = 636080a8cac2f689f5af8de9aacef9e90029eafaaf7f1867b8a53a8a558e94c7 +SIZE (KDE/applications/19.04.1/kubrick-19.04.1.tar.xz) = 310176 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 501126) +++ head/games/libkdegames/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094840 -SHA256 (KDE/applications/19.04.0/libkdegames-19.04.0.tar.xz) = 2965e4a313609f6408becb13e54e26bfe14b37b58e7737e051129896f6e8bcd3 -SIZE (KDE/applications/19.04.0/libkdegames-19.04.0.tar.xz) = 6382296 +TIMESTAMP = 1557202025 +SHA256 (KDE/applications/19.04.1/libkdegames-19.04.1.tar.xz) = a16baa2818ab6f553d9c2635b252530538812787c50f9fbc0d18781943150e5c +SIZE (KDE/applications/19.04.1/libkdegames-19.04.1.tar.xz) = 6384628 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 501126) +++ head/games/libkmahjongg/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094840 -SHA256 (KDE/applications/19.04.0/libkmahjongg-19.04.0.tar.xz) = 1ab4461ba92de0cc56bd349a859d5c647f816b20923692237e7f3098ba9dd76e -SIZE (KDE/applications/19.04.0/libkmahjongg-19.04.0.tar.xz) = 1683724 +TIMESTAMP = 1557202026 +SHA256 (KDE/applications/19.04.1/libkmahjongg-19.04.1.tar.xz) = 7a1df5a03e1da1b801ca4530be3b9008b92cb4872ce8ec0038f2686ac325efbb +SIZE (KDE/applications/19.04.1/libkmahjongg-19.04.1.tar.xz) = 1684064 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 501126) +++ head/games/lskat/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094840 -SHA256 (KDE/applications/19.04.0/lskat-19.04.0.tar.xz) = c3358e62eb8a0c428c32f1ac759f5ead15d4ab552b1ae5b273e6927d14bb0ad1 -SIZE (KDE/applications/19.04.0/lskat-19.04.0.tar.xz) = 1218076 +TIMESTAMP = 1557202026 +SHA256 (KDE/applications/19.04.1/lskat-19.04.1.tar.xz) = f83f9df9e4786a8d6d8d197defb8ac7f40b8bed8e88578673b2660c14c7a4edf +SIZE (KDE/applications/19.04.1/lskat-19.04.1.tar.xz) = 1216740 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 501126) +++ head/games/palapeli/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094841 -SHA256 (KDE/applications/19.04.0/palapeli-19.04.0.tar.xz) = 21f8b6b109d6cc61acbb0ee01aa31982bb6e27e8894e4f00407f52904d177a2b -SIZE (KDE/applications/19.04.0/palapeli-19.04.0.tar.xz) = 2065264 +TIMESTAMP = 1557202026 +SHA256 (KDE/applications/19.04.1/palapeli-19.04.1.tar.xz) = dc661c88dcf6e3a17b9a2a403cac1ba9bd8f7144ff2c01ff3c286564159f796b +SIZE (KDE/applications/19.04.1/palapeli-19.04.1.tar.xz) = 2063640 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 501126) +++ head/games/picmi/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094841 -SHA256 (KDE/applications/19.04.0/picmi-19.04.0.tar.xz) = edb10bc29d6817dffeb51762c5fa793ee8de3b3a70c2c6616012f5a043799d86 -SIZE (KDE/applications/19.04.0/picmi-19.04.0.tar.xz) = 1356056 +TIMESTAMP = 1557202027 +SHA256 (KDE/applications/19.04.1/picmi-19.04.1.tar.xz) = 10abab6e48f48e1e1308fbd2a687bb4c5051c6ae2a670b737d6974432fdef30c +SIZE (KDE/applications/19.04.1/picmi-19.04.1.tar.xz) = 1355096 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 501126) +++ head/graphics/gwenview/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094842 -SHA256 (KDE/applications/19.04.0/gwenview-19.04.0.tar.xz) = c7d422bddf031fa9d5a23459c65ea6dbb5919e964cc194178a864ee98912b46d -SIZE (KDE/applications/19.04.0/gwenview-19.04.0.tar.xz) = 5717548 +TIMESTAMP = 1557202027 +SHA256 (KDE/applications/19.04.1/gwenview-19.04.1.tar.xz) = 636498100284be86194d328c40ed70166cc96a5fc7665090e4a1ca9538b2f13c +SIZE (KDE/applications/19.04.1/gwenview-19.04.1.tar.xz) = 5714236 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 501126) +++ head/graphics/kamera/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094842 -SHA256 (KDE/applications/19.04.0/kamera-19.04.0.tar.xz) = b6b5891e886f543140d1ea6775ec1f1f4575e698d34af04fd65acbafa7e42392 -SIZE (KDE/applications/19.04.0/kamera-19.04.0.tar.xz) = 98912 +TIMESTAMP = 1557202027 +SHA256 (KDE/applications/19.04.1/kamera-19.04.1.tar.xz) = 3d5f97ac4b454c1512762f4039003d5745372aafa4fda4f293bda885ee70984f +SIZE (KDE/applications/19.04.1/kamera-19.04.1.tar.xz) = 98428 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 501126) +++ head/graphics/kcolorchooser/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094842 -SHA256 (KDE/applications/19.04.0/kcolorchooser-19.04.0.tar.xz) = 8f338ba51349cb056f25266d884ca318d3fd3933288ec96f9f17df6c842bc839 -SIZE (KDE/applications/19.04.0/kcolorchooser-19.04.0.tar.xz) = 18892 +TIMESTAMP = 1557202028 +SHA256 (KDE/applications/19.04.1/kcolorchooser-19.04.1.tar.xz) = bfc2cdafd709d8829e19367151f59725152af2f4a80c583df671a9df1378e57a +SIZE (KDE/applications/19.04.1/kcolorchooser-19.04.1.tar.xz) = 19476 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 501126) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094843 -SHA256 (KDE/applications/19.04.0/kdegraphics-mobipocket-19.04.0.tar.xz) = 37db302ed0d70766cf75e052f27150553b875428b68c886fe4d16452edd18939 -SIZE (KDE/applications/19.04.0/kdegraphics-mobipocket-19.04.0.tar.xz) = 13452 +TIMESTAMP = 1557202028 +SHA256 (KDE/applications/19.04.1/kdegraphics-mobipocket-19.04.1.tar.xz) = 345be42b0fb4f2040ce1430c872c0d20b0abaa266159a19beac1b067b2723821 +SIZE (KDE/applications/19.04.1/kdegraphics-mobipocket-19.04.1.tar.xz) = 13480 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 501126) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094843 -SHA256 (KDE/applications/19.04.0/svgpart-19.04.0.tar.xz) = 6dbec1dcb6853c06f7cb10677a2c99678b398b4a658eb4206a146f24b0fa158a -SIZE (KDE/applications/19.04.0/svgpart-19.04.0.tar.xz) = 20888 +TIMESTAMP = 1557202028 +SHA256 (KDE/applications/19.04.1/svgpart-19.04.1.tar.xz) = 3e30eb3b0f95073639697c73f1cc1d4689e53921cc87fe23cd0ec04ef6835624 +SIZE (KDE/applications/19.04.1/svgpart-19.04.1.tar.xz) = 20844 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 501126) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094843 -SHA256 (KDE/applications/19.04.0/kdegraphics-thumbnailers-19.04.0.tar.xz) = 7af5fb986c493649a1eec9ba881f8b9c06c5d7459f0acc59e7ee7d185bc7ee70 -SIZE (KDE/applications/19.04.0/kdegraphics-thumbnailers-19.04.0.tar.xz) = 43096 +TIMESTAMP = 1557202029 +SHA256 (KDE/applications/19.04.1/kdegraphics-thumbnailers-19.04.1.tar.xz) = e82515177c1c465c1d499095ff51d71caf286505a0fd3b9bfd2f1cdc1744706e +SIZE (KDE/applications/19.04.1/kdegraphics-thumbnailers-19.04.1.tar.xz) = 42768 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 501126) +++ head/graphics/kimagemapeditor/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094844 -SHA256 (KDE/applications/19.04.0/kimagemapeditor-19.04.0.tar.xz) = 8d3ff906926fe8f82b21cf19d784dbddfcda15de9513feaa9defa6e4ff3b1869 -SIZE (KDE/applications/19.04.0/kimagemapeditor-19.04.0.tar.xz) = 1071080 +TIMESTAMP = 1557202029 +SHA256 (KDE/applications/19.04.1/kimagemapeditor-19.04.1.tar.xz) = d85d2f3d043a29e56f4234ce24dd75545e06c2812d5fe45cafde4c3dbe280533 +SIZE (KDE/applications/19.04.1/kimagemapeditor-19.04.1.tar.xz) = 1070384 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 501126) +++ head/graphics/kolourpaint/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094844 -SHA256 (KDE/applications/19.04.0/kolourpaint-19.04.0.tar.xz) = d6cd087ba34a1a8fec9349dea06c1b71a70f6e8455adb41d4820a376eb2ed141 -SIZE (KDE/applications/19.04.0/kolourpaint-19.04.0.tar.xz) = 5656056 +TIMESTAMP = 1557202029 +SHA256 (KDE/applications/19.04.1/kolourpaint-19.04.1.tar.xz) = a2f78f1a2f99fa8176980ecd224ccfd8848ff8357e3434b463d4f83bcc7b5e46 +SIZE (KDE/applications/19.04.1/kolourpaint-19.04.1.tar.xz) = 5653060 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 501126) +++ head/graphics/libkdcraw/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094845 -SHA256 (KDE/applications/19.04.0/libkdcraw-19.04.0.tar.xz) = 30df02047c0f1b97a7c90c8eb5f7a3c5d322f13e0158395d3f9798ff21ed529e -SIZE (KDE/applications/19.04.0/libkdcraw-19.04.0.tar.xz) = 42088 +TIMESTAMP = 1557202029 +SHA256 (KDE/applications/19.04.1/libkdcraw-19.04.1.tar.xz) = 54576a803929a0adb3d25e239395b541c0820fecd633f09ea40677882c82e42c +SIZE (KDE/applications/19.04.1/libkdcraw-19.04.1.tar.xz) = 42120 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 501126) +++ head/graphics/libkexiv2/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094845 -SHA256 (KDE/applications/19.04.0/libkexiv2-19.04.0.tar.xz) = 9fcafa932631429af1693642415d2f202ad29338b63949b5e8661135eb69dc19 -SIZE (KDE/applications/19.04.0/libkexiv2-19.04.0.tar.xz) = 64444 +TIMESTAMP = 1557202030 +SHA256 (KDE/applications/19.04.1/libkexiv2-19.04.1.tar.xz) = 138e1bf75cbbf16c46b6ba35f25e700ad93fa8a2134d0ad4c344174c7701cbae +SIZE (KDE/applications/19.04.1/libkexiv2-19.04.1.tar.xz) = 64556 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 501126) +++ head/graphics/libkipi/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094845 -SHA256 (KDE/applications/19.04.0/libkipi-19.04.0.tar.xz) = 6fc176e72e829dafe19e17a1d97b032f464d837621989751efe38cdd03d7d285 -SIZE (KDE/applications/19.04.0/libkipi-19.04.0.tar.xz) = 103432 +TIMESTAMP = 1557202030 +SHA256 (KDE/applications/19.04.1/libkipi-19.04.1.tar.xz) = 1f1a8b881f61c9fc151a2f0b98c6ba07baa0fe1ca8a0f77d7502e81c08a84020 +SIZE (KDE/applications/19.04.1/libkipi-19.04.1.tar.xz) = 103404 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 501126) +++ head/graphics/libksane/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094846 -SHA256 (KDE/applications/19.04.0/libksane-19.04.0.tar.xz) = 15a4f14ddb26e7e0ed54926c54941b29eebba1fabb2e75ad9f5cd48b9b673f58 -SIZE (KDE/applications/19.04.0/libksane-19.04.0.tar.xz) = 137996 +TIMESTAMP = 1557202030 +SHA256 (KDE/applications/19.04.1/libksane-19.04.1.tar.xz) = c89039afa641640cbc65b01ae735ee9b70bd3283095d6b034665ddb048d33417 +SIZE (KDE/applications/19.04.1/libksane-19.04.1.tar.xz) = 137800 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 501126) +++ head/graphics/okular/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094846 -SHA256 (KDE/applications/19.04.0/okular-19.04.0.tar.xz) = 1947b394dfd8da9c7cc4234e308e2476ffa44dc58542d246eafc8397d8991b6e -SIZE (KDE/applications/19.04.0/okular-19.04.0.tar.xz) = 6694808 +TIMESTAMP = 1557202031 +SHA256 (KDE/applications/19.04.1/okular-19.04.1.tar.xz) = 7145b1eea61c56a5b413e960e5b24038c7af5d3cb583a524deca344dae3a0e0e +SIZE (KDE/applications/19.04.1/okular-19.04.1.tar.xz) = 6683752 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 501126) +++ head/graphics/spectacle/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094846 -SHA256 (KDE/applications/19.04.0/spectacle-19.04.0.tar.xz) = 2c4d891d5850e13d912ad0885086170f45178ed5fb4d0ccfef7b22a9a76c35a8 -SIZE (KDE/applications/19.04.0/spectacle-19.04.0.tar.xz) = 836680 +TIMESTAMP = 1557202031 +SHA256 (KDE/applications/19.04.1/spectacle-19.04.1.tar.xz) = 6f420fc6a660e25a08449cfb6d2795e07a37f8dca25f1862d857121b43f9262c +SIZE (KDE/applications/19.04.1/spectacle-19.04.1.tar.xz) = 955076 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 501126) +++ head/japanese/kiten/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094847 -SHA256 (KDE/applications/19.04.0/kiten-19.04.0.tar.xz) = 53f5e4ef48b18989084858ab5c96b7dedf357cecf4dba3b2d2a967b4b4b8a742 -SIZE (KDE/applications/19.04.0/kiten-19.04.0.tar.xz) = 11282960 +TIMESTAMP = 1557202031 +SHA256 (KDE/applications/19.04.1/kiten-19.04.1.tar.xz) = be904abd0386a9ac6d622178f37e55d5a05f5eaa31c6a5cd661959ee4b03d2d4 +SIZE (KDE/applications/19.04.1/kiten-19.04.1.tar.xz) = 11286704 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 501126) +++ head/lang/kross-interpreters/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094847 -SHA256 (KDE/applications/19.04.0/kross-interpreters-19.04.0.tar.xz) = e910e76e58603077177b7835bed2b9562b266e2fc0ab78c8b2642edc752ccd27 -SIZE (KDE/applications/19.04.0/kross-interpreters-19.04.0.tar.xz) = 150440 +TIMESTAMP = 1557202031 +SHA256 (KDE/applications/19.04.1/kross-interpreters-19.04.1.tar.xz) = d745f844ebe6ecefbf0d234e1e972cc7d7933a9ef75999839a709ba008ec55fe +SIZE (KDE/applications/19.04.1/kross-interpreters-19.04.1.tar.xz) = 150300 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 501126) +++ head/lang/kturtle/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094848 -SHA256 (KDE/applications/19.04.0/kturtle-19.04.0.tar.xz) = 89e836a2737c98caf1ceb16b7ac648262d6a6770ac5bb5b0d9fbfed4abeeda7d -SIZE (KDE/applications/19.04.0/kturtle-19.04.0.tar.xz) = 1828332 +TIMESTAMP = 1557202032 +SHA256 (KDE/applications/19.04.1/kturtle-19.04.1.tar.xz) = f932a56d8f380cc422215e580d8c4d51eabd189f2b4ca3b4205e617d52e6e10d +SIZE (KDE/applications/19.04.1/kturtle-19.04.1.tar.xz) = 1827552 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 501126) +++ head/math/analitza/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094848 -SHA256 (KDE/applications/19.04.0/analitza-19.04.0.tar.xz) = ac8bf7d66f8a2fc7198238f23d82efd1021943ffe8bd5915808e31b800a802f6 -SIZE (KDE/applications/19.04.0/analitza-19.04.0.tar.xz) = 332380 +TIMESTAMP = 1557202032 +SHA256 (KDE/applications/19.04.1/analitza-19.04.1.tar.xz) = b96da492805a48faff72e93e1b8b211c468b041fe217489eb097d554773d3381 +SIZE (KDE/applications/19.04.1/analitza-19.04.1.tar.xz) = 330996 Index: head/math/cantor/Makefile =================================================================== --- head/math/cantor/Makefile (revision 501126) +++ head/math/cantor/Makefile (revision 501127) @@ -1,64 +1,63 @@ # $FreeBSD$ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet texteditor textwidgets \ widgetsaddons xmlgui USE_QT= core dbus gui network printsupport widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake ${REINPLACE_CMD} -e '/find_library(PYTHONLIBS3_LIBRARY/s,python3.5m,python3.5m python3.6m,' \ -e '/pkg_check_modules/s,python3,python-${PYTHON_VER},' \ ${WRKSRC}/cmake/FindPythonLibs3.cmake .include Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 501126) +++ head/math/cantor/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094848 -SHA256 (KDE/applications/19.04.0/cantor-19.04.0.tar.xz) = ef0381a65cd2f3a3bb68a7211140077fc1a9bf31ed5302fa368fd874c8441bf4 -SIZE (KDE/applications/19.04.0/cantor-19.04.0.tar.xz) = 2523240 +TIMESTAMP = 1557202032 +SHA256 (KDE/applications/19.04.1/cantor-19.04.1.tar.xz) = 95ce049f38182f9c0f7fb749c0940c24a51cc88053d218148ac82e925d9dfbb1 +SIZE (KDE/applications/19.04.1/cantor-19.04.1.tar.xz) = 2521404 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 501126) +++ head/math/kalgebra/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094859 -SHA256 (KDE/applications/19.04.0/kalgebra-19.04.0.tar.xz) = a46c4fc2b0891183d0a3b859182eef8d49206b81cbf6d2c6ed6d5448f2663a4a -SIZE (KDE/applications/19.04.0/kalgebra-19.04.0.tar.xz) = 1155132 +TIMESTAMP = 1557202043 +SHA256 (KDE/applications/19.04.1/kalgebra-19.04.1.tar.xz) = 689d65f1a62623fc67d5de0a551aef03b241d85b105f31e91bd873d3b818c74f +SIZE (KDE/applications/19.04.1/kalgebra-19.04.1.tar.xz) = 1155364 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 501126) +++ head/math/kbruch/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094859 -SHA256 (KDE/applications/19.04.0/kbruch-19.04.0.tar.xz) = 7762c233529b75859ab264bcfd9847acc06889b0ff96183a1af63effd40f3f38 -SIZE (KDE/applications/19.04.0/kbruch-19.04.0.tar.xz) = 5603648 +TIMESTAMP = 1557202043 +SHA256 (KDE/applications/19.04.1/kbruch-19.04.1.tar.xz) = ab9033b6b8758803a87f046d05c9f6a5d247d1929bad147628cb6c2e5ba65b00 +SIZE (KDE/applications/19.04.1/kbruch-19.04.1.tar.xz) = 5600204 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 501126) +++ head/math/kcalc/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094859 -SHA256 (KDE/applications/19.04.0/kcalc-19.04.0.tar.xz) = 0384ebf83c62e74a2412f71f648bad112f91ef3ec6aa64fe55e63fd88a156593 -SIZE (KDE/applications/19.04.0/kcalc-19.04.0.tar.xz) = 366360 +TIMESTAMP = 1557202043 +SHA256 (KDE/applications/19.04.1/kcalc-19.04.1.tar.xz) = 46d992a9e746231b57398b9bcdbe3933f6601e3cee7e3932ccc2e312779a4c91 +SIZE (KDE/applications/19.04.1/kcalc-19.04.1.tar.xz) = 366552 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 501126) +++ head/math/kig/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094860 -SHA256 (KDE/applications/19.04.0/kig-19.04.0.tar.xz) = 781243a23a94d7a9882bd69ddfcd74a5b9df0ce28cd45488e62dcf54e3633234 -SIZE (KDE/applications/19.04.0/kig-19.04.0.tar.xz) = 3499596 +TIMESTAMP = 1557202044 +SHA256 (KDE/applications/19.04.1/kig-19.04.1.tar.xz) = 37684e2d1893c2f3a412add1edd73047d3ae8ff501b035943a9793b94d468a79 +SIZE (KDE/applications/19.04.1/kig-19.04.1.tar.xz) = 3497708 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 501126) +++ head/math/kmplot/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094860 -SHA256 (KDE/applications/19.04.0/kmplot-19.04.0.tar.xz) = fb981354dd6fea18e83003df957f65a9580d458b377adde88a838d4db9a97ee6 -SIZE (KDE/applications/19.04.0/kmplot-19.04.0.tar.xz) = 3064708 +TIMESTAMP = 1557202044 +SHA256 (KDE/applications/19.04.1/kmplot-19.04.1.tar.xz) = c2e0855182d1ab0977b96669999976fb84c2f4b2645fcee0cb35b839bc1da206 +SIZE (KDE/applications/19.04.1/kmplot-19.04.1.tar.xz) = 3062236 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 501126) +++ head/math/rocs/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094861 -SHA256 (KDE/applications/19.04.0/rocs-19.04.0.tar.xz) = 65557205a86ddc682c9f9378731b1cf0dacd170742a5bdf110eeeef8ae4b26c8 -SIZE (KDE/applications/19.04.0/rocs-19.04.0.tar.xz) = 1516968 +TIMESTAMP = 1557202044 +SHA256 (KDE/applications/19.04.1/rocs-19.04.1.tar.xz) = 5c0740d68ed26f7291e114faa811a2ae104ee682181f5ebed381865dd7d8db61 +SIZE (KDE/applications/19.04.1/rocs-19.04.1.tar.xz) = 1512680 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 501126) +++ head/misc/artikulate/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094861 -SHA256 (KDE/applications/19.04.0/artikulate-19.04.0.tar.xz) = 527ebdb2db6eab3e05810c5e56d53611d80bd23508563457b459e4e32a68ef08 -SIZE (KDE/applications/19.04.0/artikulate-19.04.0.tar.xz) = 3986252 +TIMESTAMP = 1557202045 +SHA256 (KDE/applications/19.04.1/artikulate-19.04.1.tar.xz) = 11a54ef7abf001bd3debcaf46bc60764af55a2dbda6320c3c220461374f74432 +SIZE (KDE/applications/19.04.1/artikulate-19.04.1.tar.xz) = 3983688 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 501126) +++ head/misc/kdeedu-data/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094861 -SHA256 (KDE/applications/19.04.0/kdeedu-data-19.04.0.tar.xz) = ddba1b8f78b1614ac8b43b605a9021d611765dea6152e0997c84d4f9b17d9be6 -SIZE (KDE/applications/19.04.0/kdeedu-data-19.04.0.tar.xz) = 327692 +TIMESTAMP = 1557202045 +SHA256 (KDE/applications/19.04.1/kdeedu-data-19.04.1.tar.xz) = 751ec4df18d4ec3e7498a279bb891d6eb9a835fd786c8dd77ee883c9b55a0c30 +SIZE (KDE/applications/19.04.1/kdeedu-data-19.04.1.tar.xz) = 327060 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 501126) +++ head/misc/kgeography/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094862 -SHA256 (KDE/applications/19.04.0/kgeography-19.04.0.tar.xz) = ee126fc91ba164e0c095e7cef231a1389a4e1423256773c4e7d4b7306077eb41 -SIZE (KDE/applications/19.04.0/kgeography-19.04.0.tar.xz) = 10830808 +TIMESTAMP = 1557202045 +SHA256 (KDE/applications/19.04.1/kgeography-19.04.1.tar.xz) = 44e7297243a2f5ebd6c8e18e3380b7c66b3d085f64952937abf1683ddcb9d502 +SIZE (KDE/applications/19.04.1/kgeography-19.04.1.tar.xz) = 10825336 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 501126) +++ head/misc/klettres/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094862 -SHA256 (KDE/applications/19.04.0/klettres-19.04.0.tar.xz) = c8a5596638ea7bbe7e26c246c5904840bf544e632e5649430bb32159aedefd60 -SIZE (KDE/applications/19.04.0/klettres-19.04.0.tar.xz) = 21492840 +TIMESTAMP = 1557202046 +SHA256 (KDE/applications/19.04.1/klettres-19.04.1.tar.xz) = d0db0773513fa35d1224e90cf5b09ac75b7b8f559d1080ee6026ba74df0f0847 +SIZE (KDE/applications/19.04.1/klettres-19.04.1.tar.xz) = 21491720 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 501126) +++ head/misc/ktouch/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094863 -SHA256 (KDE/applications/19.04.0/ktouch-19.04.0.tar.xz) = 707fca9ee9d0d217683e2bb562f5f8f984ddbd0ed7274b022a43bdc176898390 -SIZE (KDE/applications/19.04.0/ktouch-19.04.0.tar.xz) = 5139320 +TIMESTAMP = 1557202046 +SHA256 (KDE/applications/19.04.1/ktouch-19.04.1.tar.xz) = 09aa2ef862fffcdfc580b4aefff96a0591d99f470055365a90a41b25a3c6dcf2 +SIZE (KDE/applications/19.04.1/ktouch-19.04.1.tar.xz) = 5138132 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 501126) +++ head/misc/kwordquiz/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094863 -SHA256 (KDE/applications/19.04.0/kwordquiz-19.04.0.tar.xz) = a6433b5a2497398ed790965ef5469b53e406882f93b5a05e574d05cb193ef866 -SIZE (KDE/applications/19.04.0/kwordquiz-19.04.0.tar.xz) = 4169036 +TIMESTAMP = 1557202046 +SHA256 (KDE/applications/19.04.1/kwordquiz-19.04.1.tar.xz) = 970381004a7382f4f24dad61eda8a386e138735d78c2609c92603e14acbe0158 +SIZE (KDE/applications/19.04.1/kwordquiz-19.04.1.tar.xz) = 4166792 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 501126) +++ head/misc/libkeduvocdocument/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094863 -SHA256 (KDE/applications/19.04.0/libkeduvocdocument-19.04.0.tar.xz) = bb0300ca6a89c7174714b005032380b81e6e7bfdf3a3bab82b6f42fc0693045e -SIZE (KDE/applications/19.04.0/libkeduvocdocument-19.04.0.tar.xz) = 207160 +TIMESTAMP = 1557202047 +SHA256 (KDE/applications/19.04.1/libkeduvocdocument-19.04.1.tar.xz) = c0b5e23a677cea13a2e15989a5b2240ddab2948b00be67e6306cf916e7ca2e59 +SIZE (KDE/applications/19.04.1/libkeduvocdocument-19.04.1.tar.xz) = 207204 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 501126) +++ head/misc/parley/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094873 -SHA256 (KDE/applications/19.04.0/parley-19.04.0.tar.xz) = 243f7f1a89bb603c059b0610a9bb7f51627540d439b4026d736062b693879ed2 -SIZE (KDE/applications/19.04.0/parley-19.04.0.tar.xz) = 8823984 +TIMESTAMP = 1557202057 +SHA256 (KDE/applications/19.04.1/parley-19.04.1.tar.xz) = c52746417d32e31f66c1165fd08ab87696d5ef4b5a020a175fe00e60474bc73f +SIZE (KDE/applications/19.04.1/parley-19.04.1.tar.xz) = 8819920 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 501126) +++ head/multimedia/dragon/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094874 -SHA256 (KDE/applications/19.04.0/dragon-19.04.0.tar.xz) = 42bde9f6a4f3dfe7a6b2bfa35502474c2866e2649695302d602a97f00842fcf2 -SIZE (KDE/applications/19.04.0/dragon-19.04.0.tar.xz) = 1352052 +TIMESTAMP = 1557202057 +SHA256 (KDE/applications/19.04.1/dragon-19.04.1.tar.xz) = f8acfc09aeec180850345f8881f963c19a3956cd7e07e42463bbe95ff2227ab8 +SIZE (KDE/applications/19.04.1/dragon-19.04.1.tar.xz) = 1350280 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 501126) +++ head/multimedia/kamoso/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094884 -SHA256 (KDE/applications/19.04.0/kamoso-19.04.0.tar.xz) = 200c805ba80a89026edcd02d4cd6d058eff1d537eb3da28807cb2162cc014765 -SIZE (KDE/applications/19.04.0/kamoso-19.04.0.tar.xz) = 199728 +TIMESTAMP = 1557202067 +SHA256 (KDE/applications/19.04.1/kamoso-19.04.1.tar.xz) = 72f31d26319aed86daf200db7cc0bbe1e6ad77d891b644001ffd4c992a68e796 +SIZE (KDE/applications/19.04.1/kamoso-19.04.1.tar.xz) = 200476 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 501126) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094885 -SHA256 (KDE/applications/19.04.0/ffmpegthumbs-19.04.0.tar.xz) = 6b96cea0c142651cb586eb40d88792329f8da9a777d9a457ba76d0e94ddf4995 -SIZE (KDE/applications/19.04.0/ffmpegthumbs-19.04.0.tar.xz) = 24676 +TIMESTAMP = 1557202068 +SHA256 (KDE/applications/19.04.1/ffmpegthumbs-19.04.1.tar.xz) = 76f912f09c01698ed020bce2109f7cb893a9ca3ca7c014b118c0f97b4b4982ae +SIZE (KDE/applications/19.04.1/ffmpegthumbs-19.04.1.tar.xz) = 24864 Index: head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 501126) +++ head/multimedia/kdemultimedia-ffmpegthumbs/pkg-plist (revision 501127) @@ -1,23 +1,24 @@ %%QT_PLUGINDIR%%/ffmpegthumbs.so share/config.kcfg/ffmpegthumbnailersettings5.kcfg share/locale/ca/LC_MESSAGES/ffmpegthumbs.mo share/locale/ca@valencia/LC_MESSAGES/ffmpegthumbs.mo share/locale/cs/LC_MESSAGES/ffmpegthumbs.mo share/locale/en_GB/LC_MESSAGES/ffmpegthumbs.mo share/locale/es/LC_MESSAGES/ffmpegthumbs.mo share/locale/fi/LC_MESSAGES/ffmpegthumbs.mo share/locale/fr/LC_MESSAGES/ffmpegthumbs.mo share/locale/gl/LC_MESSAGES/ffmpegthumbs.mo share/locale/it/LC_MESSAGES/ffmpegthumbs.mo share/locale/ja/LC_MESSAGES/ffmpegthumbs.mo +share/locale/ko/LC_MESSAGES/ffmpegthumbs.mo share/locale/nl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pl/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt/LC_MESSAGES/ffmpegthumbs.mo share/locale/pt_BR/LC_MESSAGES/ffmpegthumbs.mo share/locale/sk/LC_MESSAGES/ffmpegthumbs.mo share/locale/sv/LC_MESSAGES/ffmpegthumbs.mo share/locale/uk/LC_MESSAGES/ffmpegthumbs.mo share/locale/ru/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_CN/LC_MESSAGES/ffmpegthumbs.mo share/locale/zh_TW/LC_MESSAGES/ffmpegthumbs.mo share/kservices5/ffmpegthumbs.desktop Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 501126) +++ head/net/akonadi-calendar/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094921 -SHA256 (KDE/applications/19.04.0/akonadi-calendar-19.04.0.tar.xz) = 5a2897a1e96897159a3e2980f407c4c225434efd45167ad699a14aaa2ec445fd -SIZE (KDE/applications/19.04.0/akonadi-calendar-19.04.0.tar.xz) = 333400 +TIMESTAMP = 1557202093 +SHA256 (KDE/applications/19.04.1/akonadi-calendar-19.04.1.tar.xz) = 6ef352dc20998416b8d379b085edfcfba5bcf6a5f448e11a4e51aca6b3241e48 +SIZE (KDE/applications/19.04.1/akonadi-calendar-19.04.1.tar.xz) = 332412 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 501126) +++ head/net/akonadi-contacts/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094921 -SHA256 (KDE/applications/19.04.0/akonadi-contacts-19.04.0.tar.xz) = 65dd20c467daf8d6107a1856c7f112eb937438b5884fe62a09a1763214a7442a -SIZE (KDE/applications/19.04.0/akonadi-contacts-19.04.0.tar.xz) = 391824 +TIMESTAMP = 1557202093 +SHA256 (KDE/applications/19.04.1/akonadi-contacts-19.04.1.tar.xz) = 4c58a73db7924250e47fb030657dc768fe44405806ec2d94ee00a264b414febc +SIZE (KDE/applications/19.04.1/akonadi-contacts-19.04.1.tar.xz) = 391992 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 501126) +++ head/net/akonadi-mime/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094922 -SHA256 (KDE/applications/19.04.0/akonadi-mime-19.04.0.tar.xz) = b06ca4140b10548b9aecd188bd9b72405af2f4097c80e9b4e9aa3e863750b6da -SIZE (KDE/applications/19.04.0/akonadi-mime-19.04.0.tar.xz) = 136640 +TIMESTAMP = 1557202093 +SHA256 (KDE/applications/19.04.1/akonadi-mime-19.04.1.tar.xz) = 4572aa7c953cc641a98ae3c2685dcdf259d621dcbbab1ccb7d11e2748c67b1a8 +SIZE (KDE/applications/19.04.1/akonadi-mime-19.04.1.tar.xz) = 136764 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 501126) +++ head/net/akonadi-notes/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094922 -SHA256 (KDE/applications/19.04.0/akonadi-notes-19.04.0.tar.xz) = a9aa05ca2b5f846fed51e4c32907eedc6893a40ab3b9d4832e11bab118664e5f -SIZE (KDE/applications/19.04.0/akonadi-notes-19.04.0.tar.xz) = 24600 +TIMESTAMP = 1557202094 +SHA256 (KDE/applications/19.04.1/akonadi-notes-19.04.1.tar.xz) = e503101e8806485ecf6ef22d1bafd8c299676ca75a388499e5418b8641604277 +SIZE (KDE/applications/19.04.1/akonadi-notes-19.04.1.tar.xz) = 24796 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 501126) +++ head/net/akonadi-search/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094922 -SHA256 (KDE/applications/19.04.0/akonadi-search-19.04.0.tar.xz) = 6046a540ace526cbb8c0909762ad333426266afbf58a59ecc71cb923298e84bb -SIZE (KDE/applications/19.04.0/akonadi-search-19.04.0.tar.xz) = 82752 +TIMESTAMP = 1557202094 +SHA256 (KDE/applications/19.04.1/akonadi-search-19.04.1.tar.xz) = 8438876407e9fd8fa08afe6942ab8dd3677202bc2ff1eba4fd7a49dd926f26d6 +SIZE (KDE/applications/19.04.1/akonadi-search-19.04.1.tar.xz) = 82260 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 501126) +++ head/net/calendarsupport/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094923 -SHA256 (KDE/applications/19.04.0/calendarsupport-19.04.0.tar.xz) = d767f077a9d41a9c6d266c4b5fe7bedd6f4eb7b71824e7544cf3a1df11ce362f -SIZE (KDE/applications/19.04.0/calendarsupport-19.04.0.tar.xz) = 646888 +TIMESTAMP = 1557202094 +SHA256 (KDE/applications/19.04.1/calendarsupport-19.04.1.tar.xz) = 9b44e868a24494c3ce595dc71e8981f97a8ce75dc4646e1417ebde973ee5f535 +SIZE (KDE/applications/19.04.1/calendarsupport-19.04.1.tar.xz) = 646916 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 501126) +++ head/net/eventviews/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094923 -SHA256 (KDE/applications/19.04.0/eventviews-19.04.0.tar.xz) = ed34f228012ad2d45b0f07da469633118f35c28b1ddc7157149f4a5ab999500c -SIZE (KDE/applications/19.04.0/eventviews-19.04.0.tar.xz) = 443360 +TIMESTAMP = 1557202095 +SHA256 (KDE/applications/19.04.1/eventviews-19.04.1.tar.xz) = 1fae8263d17a802393e5b1ece80879b66303f4d5bc8cc040cf142d6d5e8cc763 +SIZE (KDE/applications/19.04.1/eventviews-19.04.1.tar.xz) = 443440 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 501126) +++ head/net/incidenceeditor/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094923 -SHA256 (KDE/applications/19.04.0/incidenceeditor-19.04.0.tar.xz) = c34fd55acd2f92705e43628fd0c9c4a550c73d45f30beba71dc75698143cbd5f -SIZE (KDE/applications/19.04.0/incidenceeditor-19.04.0.tar.xz) = 550168 +TIMESTAMP = 1557202095 +SHA256 (KDE/applications/19.04.1/incidenceeditor-19.04.1.tar.xz) = f0f5191e4246068fb941fde10df87b76b5ca1d6f491d864e4b7e4acacebcae58 +SIZE (KDE/applications/19.04.1/incidenceeditor-19.04.1.tar.xz) = 550532 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 501126) +++ head/net/kalarmcal/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094924 -SHA256 (KDE/applications/19.04.0/kalarmcal-19.04.0.tar.xz) = ec0790d2b04bcd3a37a221bdbf4a10f94ff7dd8ac0228e773ce9fac14bbebf6e -SIZE (KDE/applications/19.04.0/kalarmcal-19.04.0.tar.xz) = 572976 +TIMESTAMP = 1557202095 +SHA256 (KDE/applications/19.04.1/kalarmcal-19.04.1.tar.xz) = 69a265ad7e82034974a47c795b81ee8768873dcb76018dc794a9905365111646 +SIZE (KDE/applications/19.04.1/kalarmcal-19.04.1.tar.xz) = 572876 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 501126) +++ head/net/kblog/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094924 -SHA256 (KDE/applications/19.04.0/kblog-19.04.0.tar.xz) = 719c6ce92c006231869dcad84b14e3db7c8b71eff60e234a94353e2ef580d577 -SIZE (KDE/applications/19.04.0/kblog-19.04.0.tar.xz) = 72716 +TIMESTAMP = 1557202096 +SHA256 (KDE/applications/19.04.1/kblog-19.04.1.tar.xz) = 6c162cd25a67c4fddbdc1063942fdfad1bbb239c714f205ae4f89585c2f65e93 +SIZE (KDE/applications/19.04.1/kblog-19.04.1.tar.xz) = 72692 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 501126) +++ head/net/kcalcore/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094925 -SHA256 (KDE/applications/19.04.0/kcalcore-19.04.0.tar.xz) = 0cdcfebabb9af96650b71ba6361a4557df35144f0b1041f004bff7510c6334b2 -SIZE (KDE/applications/19.04.0/kcalcore-19.04.0.tar.xz) = 252960 +TIMESTAMP = 1557202096 +SHA256 (KDE/applications/19.04.1/kcalcore-19.04.1.tar.xz) = d14bf2f8270c0072e415cf8fe87c0fb8eefad1b95a8713e184bba3e3ae6002f9 +SIZE (KDE/applications/19.04.1/kcalcore-19.04.1.tar.xz) = 252384 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 501126) +++ head/net/kcalutils/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094925 -SHA256 (KDE/applications/19.04.0/kcalutils-19.04.0.tar.xz) = 2841291555bf5ab85390e56b1c6c231bb6f1f5c9cbd12a634491781c3cfd83c8 -SIZE (KDE/applications/19.04.0/kcalutils-19.04.0.tar.xz) = 329204 +TIMESTAMP = 1557202096 +SHA256 (KDE/applications/19.04.1/kcalutils-19.04.1.tar.xz) = 8856a1e812f81848f1e2adc179182349acfac9e189b55f29afeb020c148909ec +SIZE (KDE/applications/19.04.1/kcalutils-19.04.1.tar.xz) = 327880 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 501126) +++ head/net/kcontacts/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094926 -SHA256 (KDE/applications/19.04.0/kcontacts-19.04.0.tar.xz) = 81ad5b3eada7c91b4b7ed09a0a17a146e87b3075925caa3d23b82c2a6f67f5b4 -SIZE (KDE/applications/19.04.0/kcontacts-19.04.0.tar.xz) = 603552 +TIMESTAMP = 1557202096 +SHA256 (KDE/applications/19.04.1/kcontacts-19.04.1.tar.xz) = 1773a5ddcec46dbf72cef2bbcc8c3143a0ba18ce6fa462ba642011b36b9cc088 +SIZE (KDE/applications/19.04.1/kcontacts-19.04.1.tar.xz) = 603564 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 501126) +++ head/net/kdav/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094926 -SHA256 (KDE/applications/19.04.0/kdav-19.04.0.tar.xz) = dce315916a993dbff7f7748538da91944b20df3cb6fc042e0d145d53904ff5d9 -SIZE (KDE/applications/19.04.0/kdav-19.04.0.tar.xz) = 49840 +TIMESTAMP = 1557202097 +SHA256 (KDE/applications/19.04.1/kdav-19.04.1.tar.xz) = 356e59f904f075521df60499b7f84d7868dbb78968b04fd15be6d359c154e737 +SIZE (KDE/applications/19.04.1/kdav-19.04.1.tar.xz) = 49984 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 501126) +++ head/net/kdenetwork-filesharing/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094927 -SHA256 (KDE/applications/19.04.0/kdenetwork-filesharing-19.04.0.tar.xz) = a88277659bc1dd5ddfea9dd63c3764a1f31d06235aa07c528c12a63a7605c943 -SIZE (KDE/applications/19.04.0/kdenetwork-filesharing-19.04.0.tar.xz) = 312716 +TIMESTAMP = 1557202097 +SHA256 (KDE/applications/19.04.1/kdenetwork-filesharing-19.04.1.tar.xz) = 5f3ae681f58a9877c7133778ff44c7be2a96cf26afbff10465984dae033251bd +SIZE (KDE/applications/19.04.1/kdenetwork-filesharing-19.04.1.tar.xz) = 312356 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 501126) +++ head/net/kget/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094927 -SHA256 (KDE/applications/19.04.0/kget-19.04.0.tar.xz) = e1ec10f36f8b451c2cfc02108e00c6ab3e1115719342b9fa1f1f5829746fbeb9 -SIZE (KDE/applications/19.04.0/kget-19.04.0.tar.xz) = 5237756 +TIMESTAMP = 1557202097 +SHA256 (KDE/applications/19.04.1/kget-19.04.1.tar.xz) = a7dff0134d0ce6643fbde1ddfb73ce7d3300b927373a0907aec510f29d0d1629 +SIZE (KDE/applications/19.04.1/kget-19.04.1.tar.xz) = 5236072 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 501126) +++ head/net/kidentitymanagement/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094927 -SHA256 (KDE/applications/19.04.0/kidentitymanagement-19.04.0.tar.xz) = 1ddce9330947fdfd970f07b60d6e9ff012e21a673262796ccb29e56e277b55a3 -SIZE (KDE/applications/19.04.0/kidentitymanagement-19.04.0.tar.xz) = 149368 +TIMESTAMP = 1557202098 +SHA256 (KDE/applications/19.04.1/kidentitymanagement-19.04.1.tar.xz) = 5216d26aef0c483f3dff51564e8b1526821b25279d7c5e9c21c87a5d5e20822a +SIZE (KDE/applications/19.04.1/kidentitymanagement-19.04.1.tar.xz) = 149376 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 501126) +++ head/net/kimap/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094928 -SHA256 (KDE/applications/19.04.0/kimap-19.04.0.tar.xz) = cda62c81c47011ad2adbf78222eab4528a62116487531ce1aa98f6100706d2fd -SIZE (KDE/applications/19.04.0/kimap-19.04.0.tar.xz) = 119576 +TIMESTAMP = 1557202098 +SHA256 (KDE/applications/19.04.1/kimap-19.04.1.tar.xz) = ff933fba7ce8412fd64439e5f4c5a7be3a06fd39c79f520acfc648923819aa1f +SIZE (KDE/applications/19.04.1/kimap-19.04.1.tar.xz) = 119448 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 501126) +++ head/net/kitinerary/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094928 -SHA256 (KDE/applications/19.04.0/kitinerary-19.04.0.tar.xz) = b56c93b7114cad54313471e6ab4cebde461a2b39859b47e9b8f7f146d3471889 -SIZE (KDE/applications/19.04.0/kitinerary-19.04.0.tar.xz) = 687944 +TIMESTAMP = 1557202098 +SHA256 (KDE/applications/19.04.1/kitinerary-19.04.1.tar.xz) = 4053e16e847f0e234ffba2bb0533e947eae7b315304677a784279d03f13c0318 +SIZE (KDE/applications/19.04.1/kitinerary-19.04.1.tar.xz) = 690608 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 501126) +++ head/net/kldap/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094929 -SHA256 (KDE/applications/19.04.0/kldap-19.04.0.tar.xz) = 2cddadf995a10b854b28e34c18db14c32ad985c18af466edde6a1b2a9a2d8a23 -SIZE (KDE/applications/19.04.0/kldap-19.04.0.tar.xz) = 155512 +TIMESTAMP = 1557202099 +SHA256 (KDE/applications/19.04.1/kldap-19.04.1.tar.xz) = 638e62d39fbe935b1df3c03f9617acbe5ade4ad617245bc590ca07b7fd0b723b +SIZE (KDE/applications/19.04.1/kldap-19.04.1.tar.xz) = 155868 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 501126) +++ head/net/kmailtransport/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094929 -SHA256 (KDE/applications/19.04.0/kmailtransport-19.04.0.tar.xz) = 35104e661fd501bd5848006dfd907f8cd1dfe88609ed4f9fbc4ce599a2f20c8f -SIZE (KDE/applications/19.04.0/kmailtransport-19.04.0.tar.xz) = 166152 +TIMESTAMP = 1557202099 +SHA256 (KDE/applications/19.04.1/kmailtransport-19.04.1.tar.xz) = b8c0cf5cb8f7ad93bb3d1b2adab68fbc2470bc14160650fb45d1c4d40e8549fa +SIZE (KDE/applications/19.04.1/kmailtransport-19.04.1.tar.xz) = 166128 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 501126) +++ head/net/kmbox/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094929 -SHA256 (KDE/applications/19.04.0/kmbox-19.04.0.tar.xz) = cd37b698e4ad12317a6d1f7df786345f5df7112ea3d21c2c23545e48a67e8544 -SIZE (KDE/applications/19.04.0/kmbox-19.04.0.tar.xz) = 24836 +TIMESTAMP = 1557202099 +SHA256 (KDE/applications/19.04.1/kmbox-19.04.1.tar.xz) = 701eda3a4831ed0daf9bd14a93ff845f42e4f93c6ca16d83ebda958c27021fc0 +SIZE (KDE/applications/19.04.1/kmbox-19.04.1.tar.xz) = 24756 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 501126) +++ head/net/kmime/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094930 -SHA256 (KDE/applications/19.04.0/kmime-19.04.0.tar.xz) = 2081adec0e6972e513206bee69c0e165904670b7bcf34c52e7da07323537d513 -SIZE (KDE/applications/19.04.0/kmime-19.04.0.tar.xz) = 147188 +TIMESTAMP = 1557202099 +SHA256 (KDE/applications/19.04.1/kmime-19.04.1.tar.xz) = 25ee2e49ea62d32fcd09a710f971c6fcdc5434c6fdf711e93c19fc4baa325775 +SIZE (KDE/applications/19.04.1/kmime-19.04.1.tar.xz) = 146620 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 501126) +++ head/net/kontactinterface/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094930 -SHA256 (KDE/applications/19.04.0/kontactinterface-19.04.0.tar.xz) = 268005d61e97dab34f200b0e7a461afddb32a88ccc7c553b6c967865a6915392 -SIZE (KDE/applications/19.04.0/kontactinterface-19.04.0.tar.xz) = 32992 +TIMESTAMP = 1557202100 +SHA256 (KDE/applications/19.04.1/kontactinterface-19.04.1.tar.xz) = 034dcf0b2740273037a40ce2c1dd0d4eb17aac1eba608eca81f7e905a336cbc2 +SIZE (KDE/applications/19.04.1/kontactinterface-19.04.1.tar.xz) = 33088 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 501126) +++ head/net/kpimtextedit/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094930 -SHA256 (KDE/applications/19.04.0/kpimtextedit-19.04.0.tar.xz) = b4c640ee8ae5c4356bc26819763721580ca87477eb39258c1eaacdffbfc5311a -SIZE (KDE/applications/19.04.0/kpimtextedit-19.04.0.tar.xz) = 151888 +TIMESTAMP = 1557202100 +SHA256 (KDE/applications/19.04.1/kpimtextedit-19.04.1.tar.xz) = 2fb2dc59a016dd70424c0fbad45ca1d750c2578f539e79d89bcace85bafd24d1 +SIZE (KDE/applications/19.04.1/kpimtextedit-19.04.1.tar.xz) = 152216 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 501126) +++ head/net/krdc/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094931 -SHA256 (KDE/applications/19.04.0/krdc-19.04.0.tar.xz) = 2a1ac548992eaaff82cafe386eef0a611b96f06ce3887a363b25d6ca17c6eacc -SIZE (KDE/applications/19.04.0/krdc-19.04.0.tar.xz) = 1423676 +TIMESTAMP = 1557202100 +SHA256 (KDE/applications/19.04.1/krdc-19.04.1.tar.xz) = 8238b6969352d896751d28baeef770705feb5a0866e7b950e9eb0b377c098b19 +SIZE (KDE/applications/19.04.1/krdc-19.04.1.tar.xz) = 1421736 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 501126) +++ head/net/krfb/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094931 -SHA256 (KDE/applications/19.04.0/krfb-19.04.0.tar.xz) = 321b1b296dfbd69e64048fbf991aec1a9d8c251e9f0084a396081f62287c6b40 -SIZE (KDE/applications/19.04.0/krfb-19.04.0.tar.xz) = 1257592 +TIMESTAMP = 1557202101 +SHA256 (KDE/applications/19.04.1/krfb-19.04.1.tar.xz) = 73dee235940cb0512cd218d88f90e6d2d62f232a6553f327b07e54c114c8480b +SIZE (KDE/applications/19.04.1/krfb-19.04.1.tar.xz) = 1256120 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 501126) +++ head/net/ksmtp/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094932 -SHA256 (KDE/applications/19.04.0/ksmtp-19.04.0.tar.xz) = c92b8b6b9de60bca7b9bb7befdd519041625188a955e55b63860d9de4b3e0bab -SIZE (KDE/applications/19.04.0/ksmtp-19.04.0.tar.xz) = 40328 +TIMESTAMP = 1557202101 +SHA256 (KDE/applications/19.04.1/ksmtp-19.04.1.tar.xz) = 965f5f1c44cd64f9899ff5919372fe449e0f8b63e492f566017c9b8d5eb324bb +SIZE (KDE/applications/19.04.1/ksmtp-19.04.1.tar.xz) = 40456 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 501126) +++ head/net/ktnef/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094932 -SHA256 (KDE/applications/19.04.0/ktnef-19.04.0.tar.xz) = bc3e826bc831ffac5b3b92cef14fca3f4b077d30652ce2ebdcffa07dafd58c56 -SIZE (KDE/applications/19.04.0/ktnef-19.04.0.tar.xz) = 299788 +TIMESTAMP = 1557202101 +SHA256 (KDE/applications/19.04.1/ktnef-19.04.1.tar.xz) = 6f9449307d83a7bf0dc30022c36e3d854a06b370af18e44ca6e2eab684b97c93 +SIZE (KDE/applications/19.04.1/ktnef-19.04.1.tar.xz) = 299752 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 501126) +++ head/net/libgravatar/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094932 -SHA256 (KDE/applications/19.04.0/libgravatar-19.04.0.tar.xz) = ee62597fffa534b45f89056028d1d9ff871c7da7093d11a128a6decfb5312d12 -SIZE (KDE/applications/19.04.0/libgravatar-19.04.0.tar.xz) = 30952 +TIMESTAMP = 1557202101 +SHA256 (KDE/applications/19.04.1/libgravatar-19.04.1.tar.xz) = 7d4af799effc13af4f4b056d21b188bd67cd503d1528a7ff37e19d228619b522 +SIZE (KDE/applications/19.04.1/libgravatar-19.04.1.tar.xz) = 31084 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 501126) +++ head/net/libkgapi/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094933 -SHA256 (KDE/applications/19.04.0/libkgapi-19.04.0.tar.xz) = 014084b04ee76939a318f711259bbb540037b45fe57a25b200ed4095b74970dc -SIZE (KDE/applications/19.04.0/libkgapi-19.04.0.tar.xz) = 225060 +TIMESTAMP = 1557202102 +SHA256 (KDE/applications/19.04.1/libkgapi-19.04.1.tar.xz) = a9d499fe1f5371112ceb94b3b03f8e2b1a1faa4ee69722b4c1c9ba28e8f9052e +SIZE (KDE/applications/19.04.1/libkgapi-19.04.1.tar.xz) = 225136 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 501126) +++ head/net/libksieve/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094933 -SHA256 (KDE/applications/19.04.0/libksieve-19.04.0.tar.xz) = 451d71d6c6e8cdfe0ef540cbcca94dae57260563e1e435b41f7070ecb86f6312 -SIZE (KDE/applications/19.04.0/libksieve-19.04.0.tar.xz) = 550664 +TIMESTAMP = 1557202102 +SHA256 (KDE/applications/19.04.1/libksieve-19.04.1.tar.xz) = 23cca1dfc1d79242f24dd95e8817a9672629276bced3a9ee56067570ef69ccff +SIZE (KDE/applications/19.04.1/libksieve-19.04.1.tar.xz) = 548560 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 501126) +++ head/net/mailcommon/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094933 -SHA256 (KDE/applications/19.04.0/mailcommon-19.04.0.tar.xz) = cd599079d290f540c83919182eab7e2d236a939a3405d1f882385822fc5d3682 -SIZE (KDE/applications/19.04.0/mailcommon-19.04.0.tar.xz) = 693264 +TIMESTAMP = 1557202102 +SHA256 (KDE/applications/19.04.1/mailcommon-19.04.1.tar.xz) = 37b06e85e74d6ef1801485b8d99529fde5ca11bb446c231a6f5406e99f9c4d0f +SIZE (KDE/applications/19.04.1/mailcommon-19.04.1.tar.xz) = 690812 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 501126) +++ head/net/mailimporter/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094934 -SHA256 (KDE/applications/19.04.0/mailimporter-19.04.0.tar.xz) = d5649d24aca659fbb00284a70aef868e31a56a9c688a0457945ec0d31c7a22ed -SIZE (KDE/applications/19.04.0/mailimporter-19.04.0.tar.xz) = 540576 +TIMESTAMP = 1557202103 +SHA256 (KDE/applications/19.04.1/mailimporter-19.04.1.tar.xz) = e77c5c43f20f821664a3a559b929eb2f97ba5105e000875b1642516a6f298696 +SIZE (KDE/applications/19.04.1/mailimporter-19.04.1.tar.xz) = 540136 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 501126) +++ head/net/messagelib/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094934 -SHA256 (KDE/applications/19.04.0/messagelib-19.04.0.tar.xz) = 1fb76bcd7aa9792095519c585dbb93552726e3cfe514446eb52edf5ed1517a1a -SIZE (KDE/applications/19.04.0/messagelib-19.04.0.tar.xz) = 10439780 +TIMESTAMP = 1557202103 +SHA256 (KDE/applications/19.04.1/messagelib-19.04.1.tar.xz) = 7e4d0e2f2d6dfcb235408af0e4af235ab10dc8a8c4f1e169a672f03b37b180ad +SIZE (KDE/applications/19.04.1/messagelib-19.04.1.tar.xz) = 10451112 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 501126) +++ head/net/pimcommon/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094935 -SHA256 (KDE/applications/19.04.0/pimcommon-19.04.0.tar.xz) = b25d10571e55ab11b758ad6b1040ef2d148b4b5b913f41665c355df25bceb12e -SIZE (KDE/applications/19.04.0/pimcommon-19.04.0.tar.xz) = 295500 +TIMESTAMP = 1557202103 +SHA256 (KDE/applications/19.04.1/pimcommon-19.04.1.tar.xz) = bc4612711775ea4665c0827c7935397503b5cf82f906bcf22a64b3ab1eaaaa72 +SIZE (KDE/applications/19.04.1/pimcommon-19.04.1.tar.xz) = 295656 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 501126) +++ head/net/zeroconf-ioslave/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094935 -SHA256 (KDE/applications/19.04.0/zeroconf-ioslave-19.04.0.tar.xz) = e1f7465f200d1c7c53c56a8ebf9a463022a27d6c244d0d1768ff58763e5b53dc -SIZE (KDE/applications/19.04.0/zeroconf-ioslave-19.04.0.tar.xz) = 38732 +TIMESTAMP = 1557202104 +SHA256 (KDE/applications/19.04.1/zeroconf-ioslave-19.04.1.tar.xz) = e59c8a4b6ff93ead29b322fb40c94a3584d5c463077d58575720fcba2c511d87 +SIZE (KDE/applications/19.04.1/zeroconf-ioslave-19.04.1.tar.xz) = 38704 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 501126) +++ head/net-im/kaccounts-integration/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094895 -SHA256 (KDE/applications/19.04.0/kaccounts-integration-19.04.0.tar.xz) = d7b257f6b7278361690b2c1d948c92bdb8b14f741ce96ef35f37c8eea3feb687 -SIZE (KDE/applications/19.04.0/kaccounts-integration-19.04.0.tar.xz) = 71012 +TIMESTAMP = 1557202078 +SHA256 (KDE/applications/19.04.1/kaccounts-integration-19.04.1.tar.xz) = 0e37dc9b7b1520ea16afc7209da3cbaab1d43c3909896eba2f0422fb23f15433 +SIZE (KDE/applications/19.04.1/kaccounts-integration-19.04.1.tar.xz) = 71040 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 501126) +++ head/net-im/kaccounts-providers/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094896 -SHA256 (KDE/applications/19.04.0/kaccounts-providers-19.04.0.tar.xz) = 4eb74ef042c30ea44f5391f8798d9ceca44d46bf46480355160af61bcb6236d7 -SIZE (KDE/applications/19.04.0/kaccounts-providers-19.04.0.tar.xz) = 31612 +TIMESTAMP = 1557202079 +SHA256 (KDE/applications/19.04.1/kaccounts-providers-19.04.1.tar.xz) = 006ccdc20738b8f77155e849b83987b9c9eeb50acf4e88d2fb948060c5f51011 +SIZE (KDE/applications/19.04.1/kaccounts-providers-19.04.1.tar.xz) = 31556 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 501126) +++ head/net-im/kopete/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094906 -SHA256 (KDE/applications/19.04.0/kopete-19.04.0.tar.xz) = 88068ceb8735e1b7ecaac9a9e4c36d40629b53d514c987823c987cfac6dc99df -SIZE (KDE/applications/19.04.0/kopete-19.04.0.tar.xz) = 9377564 +TIMESTAMP = 1557202089 +SHA256 (KDE/applications/19.04.1/kopete-19.04.1.tar.xz) = 27586d90bd47abe6d8d6eddd7e41dbb6e3b3736984186cd24f84eee216e98b85 +SIZE (KDE/applications/19.04.1/kopete-19.04.1.tar.xz) = 9363440 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 501126) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094906 -SHA256 (KDE/applications/19.04.0/ktp-accounts-kcm-19.04.0.tar.xz) = e7c11f4310dd4cb119336fb569cc9799dbdd3d7f4b87af9e265f8fc4439ec7f8 -SIZE (KDE/applications/19.04.0/ktp-accounts-kcm-19.04.0.tar.xz) = 261536 +TIMESTAMP = 1557202089 +SHA256 (KDE/applications/19.04.1/ktp-accounts-kcm-19.04.1.tar.xz) = c4ecda8ca35438e45b48b9b86415bea1a44eeb2b2cd9af11ab1739f7ceeff045 +SIZE (KDE/applications/19.04.1/ktp-accounts-kcm-19.04.1.tar.xz) = 260624 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 501126) +++ head/net-im/ktp-approver/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094907 -SHA256 (KDE/applications/19.04.0/ktp-approver-19.04.0.tar.xz) = ec273b9eabcedd47c97fa60c68a3037115b9b06a91892d32871e8ded4c04cdfe -SIZE (KDE/applications/19.04.0/ktp-approver-19.04.0.tar.xz) = 36852 +TIMESTAMP = 1557202090 +SHA256 (KDE/applications/19.04.1/ktp-approver-19.04.1.tar.xz) = e12421c0e79692532497dbd6db6b09faba010d99c57db1893eae3e59f7df47cd +SIZE (KDE/applications/19.04.1/ktp-approver-19.04.1.tar.xz) = 36708 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 501126) +++ head/net-im/ktp-auth-handler/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094907 -SHA256 (KDE/applications/19.04.0/ktp-auth-handler-19.04.0.tar.xz) = db459ed02c5ed37ce41ec9728d931ca1ab987c43d1b48f501d38b40e1e4f19e9 -SIZE (KDE/applications/19.04.0/ktp-auth-handler-19.04.0.tar.xz) = 46012 +TIMESTAMP = 1557202090 +SHA256 (KDE/applications/19.04.1/ktp-auth-handler-19.04.1.tar.xz) = 8d06e90a7e73b034c6087079b510e0ac1c27728c885e9aa2e8baef463a892d65 +SIZE (KDE/applications/19.04.1/ktp-auth-handler-19.04.1.tar.xz) = 45992 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 501126) +++ head/net-im/ktp-call-ui/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094918 -SHA256 (KDE/applications/19.04.0/ktp-call-ui-19.04.0.tar.xz) = b63ef1f0bcaed631f9106a355dd60e48edb6e7e39bb6bd0603b504fc33949427 -SIZE (KDE/applications/19.04.0/ktp-call-ui-19.04.0.tar.xz) = 96268 +TIMESTAMP = 1557202090 +SHA256 (KDE/applications/19.04.1/ktp-call-ui-19.04.1.tar.xz) = ad2efd84dc45cf55366dbc182d9301816129335ec4dc021dbbcc097c52656a0f +SIZE (KDE/applications/19.04.1/ktp-call-ui-19.04.1.tar.xz) = 95888 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 501126) +++ head/net-im/ktp-common-internals/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094918 -SHA256 (KDE/applications/19.04.0/ktp-common-internals-19.04.0.tar.xz) = 12e3e0733eef78a649fa1e55f2f3d228b581fb1a0ba401e154dd57d4eb286eaa -SIZE (KDE/applications/19.04.0/ktp-common-internals-19.04.0.tar.xz) = 441516 +TIMESTAMP = 1557202091 +SHA256 (KDE/applications/19.04.1/ktp-common-internals-19.04.1.tar.xz) = 041e5971071a060cef24abe68f699b5fcc657ba15a1e77feb227312fb1c13fd1 +SIZE (KDE/applications/19.04.1/ktp-common-internals-19.04.1.tar.xz) = 442292 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 501126) +++ head/net-im/ktp-contact-list/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094918 -SHA256 (KDE/applications/19.04.0/ktp-contact-list-19.04.0.tar.xz) = 745a1b403e3e1bfd0604521709f44634ab15a053b45f5c390d9a8e80fa405668 -SIZE (KDE/applications/19.04.0/ktp-contact-list-19.04.0.tar.xz) = 146476 +TIMESTAMP = 1557202091 +SHA256 (KDE/applications/19.04.1/ktp-contact-list-19.04.1.tar.xz) = 7d8f7d841142d75036dc9dc4e31aefe8ff8906de6205b0e348b48e57da1400d9 +SIZE (KDE/applications/19.04.1/ktp-contact-list-19.04.1.tar.xz) = 145248 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 501126) +++ head/net-im/ktp-contact-runner/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094919 -SHA256 (KDE/applications/19.04.0/ktp-contact-runner-19.04.0.tar.xz) = 12d9e3cf2a230e590c9e3e17462b8e061641a70840492971434b131c15594773 -SIZE (KDE/applications/19.04.0/ktp-contact-runner-19.04.0.tar.xz) = 42136 +TIMESTAMP = 1557202091 +SHA256 (KDE/applications/19.04.1/ktp-contact-runner-19.04.1.tar.xz) = 68580e429fe0c9472a924af4f71df2da74684c5c11374464c110b9faca28c66f +SIZE (KDE/applications/19.04.1/ktp-contact-runner-19.04.1.tar.xz) = 41960 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 501126) +++ head/net-im/ktp-desktop-applets/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094919 -SHA256 (KDE/applications/19.04.0/ktp-desktop-applets-19.04.0.tar.xz) = ba5d0422156e0ea38db1abeb317310266fd96b2b259a40df4233880d15037d8c -SIZE (KDE/applications/19.04.0/ktp-desktop-applets-19.04.0.tar.xz) = 42636 +TIMESTAMP = 1557202091 +SHA256 (KDE/applications/19.04.1/ktp-desktop-applets-19.04.1.tar.xz) = 1114d5bcbc5a20c2d4822b1e2ad07d5d493ceace0a75b77575e978c30dc5fa75 +SIZE (KDE/applications/19.04.1/ktp-desktop-applets-19.04.1.tar.xz) = 42928 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 501126) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094919 -SHA256 (KDE/applications/19.04.0/ktp-filetransfer-handler-19.04.0.tar.xz) = 3088b79a79b35fc52f38ae2941e9f1ca8a80a1eed1c3bcdfd489b2e069febcfd -SIZE (KDE/applications/19.04.0/ktp-filetransfer-handler-19.04.0.tar.xz) = 45716 +TIMESTAMP = 1557202092 +SHA256 (KDE/applications/19.04.1/ktp-filetransfer-handler-19.04.1.tar.xz) = 3e53fc28f4a1a8dd0dd2cb63b0a287061176a5c6e1db6480d50ebc70e2d8f189 +SIZE (KDE/applications/19.04.1/ktp-filetransfer-handler-19.04.1.tar.xz) = 45580 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 501126) +++ head/net-im/ktp-kded-module/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094920 -SHA256 (KDE/applications/19.04.0/ktp-kded-module-19.04.0.tar.xz) = 3409e3ec270f0ba2f558b6e6a84e9948936c128cc536fc6c16c4dd5bd8a3c94b -SIZE (KDE/applications/19.04.0/ktp-kded-module-19.04.0.tar.xz) = 94648 +TIMESTAMP = 1557202092 +SHA256 (KDE/applications/19.04.1/ktp-kded-module-19.04.1.tar.xz) = fe5fc292618b28d11dddec435e86a89899c52b074b7c729aefe951b0b7697a66 +SIZE (KDE/applications/19.04.1/ktp-kded-module-19.04.1.tar.xz) = 94668 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 501126) +++ head/net-im/ktp-send-file/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094920 -SHA256 (KDE/applications/19.04.0/ktp-send-file-19.04.0.tar.xz) = f0be593d3101cbc5027e7dcc23a767d2e3e753d140afe97d5790db20eea07226 -SIZE (KDE/applications/19.04.0/ktp-send-file-19.04.0.tar.xz) = 28524 +TIMESTAMP = 1557202092 +SHA256 (KDE/applications/19.04.1/ktp-send-file-19.04.1.tar.xz) = 8d3100de23666e3cb449663db376ed20e38647758371d37d721385af2b0d8d7a +SIZE (KDE/applications/19.04.1/ktp-send-file-19.04.1.tar.xz) = 28548 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 501126) +++ head/net-im/ktp-text-ui/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094920 -SHA256 (KDE/applications/19.04.0/ktp-text-ui-19.04.0.tar.xz) = 78ac51d23e54d6044b70083db8d2c6972643a207a7f475cde15292e08b6b6469 -SIZE (KDE/applications/19.04.0/ktp-text-ui-19.04.0.tar.xz) = 466100 +TIMESTAMP = 1557202093 +SHA256 (KDE/applications/19.04.1/ktp-text-ui-19.04.1.tar.xz) = dfc51070d1a25edde7c0f33d4eb83185738a70e6feb40a8b385403e833cca0b5 +SIZE (KDE/applications/19.04.1/ktp-text-ui-19.04.1.tar.xz) = 465360 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 501126) +++ head/print/print-manager/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094935 -SHA256 (KDE/applications/19.04.0/print-manager-19.04.0.tar.xz) = f9dfe61ba341013ae59892cd6715b7c00ee6777ca4d2e81deeda1cf2d283f6ba -SIZE (KDE/applications/19.04.0/print-manager-19.04.0.tar.xz) = 239680 +TIMESTAMP = 1557202104 +SHA256 (KDE/applications/19.04.1/print-manager-19.04.1.tar.xz) = 33d553bb048959ecfc5e404f3a1e118b0ed78305d96b3a6042ffd576a164e9fa +SIZE (KDE/applications/19.04.1/print-manager-19.04.1.tar.xz) = 239284 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 501126) +++ head/science/kalzium/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094946 -SHA256 (KDE/applications/19.04.0/kalzium-19.04.0.tar.xz) = 16fe2873dfad5de78b9a07a4c528e8ac747a54eced9feaa65f1c9fccc23b0d03 -SIZE (KDE/applications/19.04.0/kalzium-19.04.0.tar.xz) = 26551896 +TIMESTAMP = 1557202114 +SHA256 (KDE/applications/19.04.1/kalzium-19.04.1.tar.xz) = 80798b3dca98cdd5ae24bbe7f077ecbe8def6bb96ad02a66ff69cb5312a459f5 +SIZE (KDE/applications/19.04.1/kalzium-19.04.1.tar.xz) = 26541920 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 501126) +++ head/science/step/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094946 -SHA256 (KDE/applications/19.04.0/step-19.04.0.tar.xz) = c37cbd4a7179d796dd4458dbdd98e48d59c5f0278f19026a4f5cc2b50e140319 -SIZE (KDE/applications/19.04.0/step-19.04.0.tar.xz) = 860532 +TIMESTAMP = 1557202114 +SHA256 (KDE/applications/19.04.1/step-19.04.1.tar.xz) = 4fafff95339473e6449e9a45e273fe15758daf743e8697ff73f16129eb1dca05 +SIZE (KDE/applications/19.04.1/step-19.04.1.tar.xz) = 859804 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 501126) +++ head/security/kgpg/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094946 -SHA256 (KDE/applications/19.04.0/kgpg-19.04.0.tar.xz) = 2fb47d9d08cfca94dce1c4d19bce5d2955c3cd3ceec6265a8b537de612a53128 -SIZE (KDE/applications/19.04.0/kgpg-19.04.0.tar.xz) = 2866612 +TIMESTAMP = 1557202115 +SHA256 (KDE/applications/19.04.1/kgpg-19.04.1.tar.xz) = 2c9c64491592db79397be3769413fae657ca991dd45d02690bbe533c1cba0ceb +SIZE (KDE/applications/19.04.1/kgpg-19.04.1.tar.xz) = 2864804 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 501126) +++ head/security/kleopatra/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094947 -SHA256 (KDE/applications/19.04.0/kleopatra-19.04.0.tar.xz) = 8ad7ec0b99efabdbc270559098dfca64e39ddd30a64b13915c04988a9c8b8b70 -SIZE (KDE/applications/19.04.0/kleopatra-19.04.0.tar.xz) = 1929920 +TIMESTAMP = 1557202115 +SHA256 (KDE/applications/19.04.1/kleopatra-19.04.1.tar.xz) = bc8895a506164df0fa0f7fc317fe8b961cb75d8c67f04474e1c12e25be358c67 +SIZE (KDE/applications/19.04.1/kleopatra-19.04.1.tar.xz) = 1928428 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 501126) +++ head/security/kpkpass/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094947 -SHA256 (KDE/applications/19.04.0/kpkpass-19.04.0.tar.xz) = 0121e03af506451a39b34a2f0ca063228454a40f71d9706dea3cee644a4c8f28 -SIZE (KDE/applications/19.04.0/kpkpass-19.04.0.tar.xz) = 23348 +TIMESTAMP = 1557202115 +SHA256 (KDE/applications/19.04.1/kpkpass-19.04.1.tar.xz) = fb3554b04d00b326d5f5e14af9c0272c020092d3329808a6177fb0714f6a1cb7 +SIZE (KDE/applications/19.04.1/kpkpass-19.04.1.tar.xz) = 23300 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 501126) +++ head/security/kwalletmanager/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094948 -SHA256 (KDE/applications/19.04.0/kwalletmanager-19.04.0.tar.xz) = 5cc25daaa8511694b01ba4b0a7ca39f8f2eef9fce10e99411ae287013fc27734 -SIZE (KDE/applications/19.04.0/kwalletmanager-19.04.0.tar.xz) = 786244 +TIMESTAMP = 1557202116 +SHA256 (KDE/applications/19.04.1/kwalletmanager-19.04.1.tar.xz) = 793a3a335e53b6af36272398d7933ff0cc77918860799db2b5688ee249ce215d +SIZE (KDE/applications/19.04.1/kwalletmanager-19.04.1.tar.xz) = 786000 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 501126) +++ head/security/libkleo/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094948 -SHA256 (KDE/applications/19.04.0/libkleo-19.04.0.tar.xz) = fbd97ae860c0361fca8bfa8a80a2d19e96779eb8d436a9a32c10cfe9767d8981 -SIZE (KDE/applications/19.04.0/libkleo-19.04.0.tar.xz) = 333600 +TIMESTAMP = 1557202116 +SHA256 (KDE/applications/19.04.1/libkleo-19.04.1.tar.xz) = a75084129e44028ff3f7742cdcb1800df94845d8c6ace38389da317144fa0529 +SIZE (KDE/applications/19.04.1/libkleo-19.04.1.tar.xz) = 334356 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 501126) +++ head/sysutils/baloo-widgets/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094948 -SHA256 (KDE/applications/19.04.0/baloo-widgets-19.04.0.tar.xz) = ab3d83bb1f2007620273d1a3eb580d821e0655aaf7e3efd2dc81087a24d1c275 -SIZE (KDE/applications/19.04.0/baloo-widgets-19.04.0.tar.xz) = 248800 +TIMESTAMP = 1557202116 +SHA256 (KDE/applications/19.04.1/baloo-widgets-19.04.1.tar.xz) = 7f7f0b3ba1bbdb3a47cdfa85830295b4b91fa5ac6c87b41d1cf29c354d8a4cf6 +SIZE (KDE/applications/19.04.1/baloo-widgets-19.04.1.tar.xz) = 248640 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 501126) +++ head/sysutils/baloo-widgets/pkg-plist (revision 501127) @@ -1,65 +1,65 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.19.4.0 +lib/libKF5BalooWidgets.so.19.4.1 %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 501126) +++ head/sysutils/filelight/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094949 -SHA256 (KDE/applications/19.04.0/filelight-19.04.0.tar.xz) = 22eaa8f0e9e69652240554687b2cecb55449e67caac6055c2d868f3089d835ad -SIZE (KDE/applications/19.04.0/filelight-19.04.0.tar.xz) = 661148 +TIMESTAMP = 1557202117 +SHA256 (KDE/applications/19.04.1/filelight-19.04.1.tar.xz) = 7595efbff5cbbe59b3fc4f6af69b9557107bc8661f38951577947503ac7883bd +SIZE (KDE/applications/19.04.1/filelight-19.04.1.tar.xz) = 659384 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 501126) +++ head/sysutils/k3b/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094949 -SHA256 (KDE/applications/19.04.0/k3b-19.04.0.tar.xz) = ab0293d0dab2048dcacd4fc54ee2e12d2f55adcecde7cd02e4c31ffd5917ee39 -SIZE (KDE/applications/19.04.0/k3b-19.04.0.tar.xz) = 10516264 +TIMESTAMP = 1557202117 +SHA256 (KDE/applications/19.04.1/k3b-19.04.1.tar.xz) = 8de611bec14deee5b5c2b340fa4b32d22a7df93a72b657979118b510396f0942 +SIZE (KDE/applications/19.04.1/k3b-19.04.1.tar.xz) = 10510084 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 501126) +++ head/sysutils/kbackup/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094950 -SHA256 (KDE/applications/19.04.0/kbackup-19.04.0.tar.xz) = 84b8f7b05a1812deb128a85aa2d6f1010fb7b2f8cb51aa3771077ef20fd4b4ce -SIZE (KDE/applications/19.04.0/kbackup-19.04.0.tar.xz) = 355268 +TIMESTAMP = 1557202117 +SHA256 (KDE/applications/19.04.1/kbackup-19.04.1.tar.xz) = 29bed4258ec218edf05702808d0cfbff757016b7f3a80eb99e18610ab398036f +SIZE (KDE/applications/19.04.1/kbackup-19.04.1.tar.xz) = 357464 Index: head/sysutils/kbackup/pkg-plist =================================================================== --- head/sysutils/kbackup/pkg-plist (revision 501126) +++ head/sysutils/kbackup/pkg-plist (revision 501127) @@ -1,38 +1,39 @@ bin/kbackup share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo +share/locale/ko/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 501126) +++ head/sysutils/kcron/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094950 -SHA256 (KDE/applications/19.04.0/kcron-19.04.0.tar.xz) = 58a84503da74d7c0e26ab14c95f92f57f0a9f0c5e1ce0fa4be30276728c8be35 -SIZE (KDE/applications/19.04.0/kcron-19.04.0.tar.xz) = 926820 +TIMESTAMP = 1557202117 +SHA256 (KDE/applications/19.04.1/kcron-19.04.1.tar.xz) = a58e8c99072e10a0b0a6acfecbbadef822c6f2818202bbaccdbee6b2a5b7e951 +SIZE (KDE/applications/19.04.1/kcron-19.04.1.tar.xz) = 926912 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 501126) +++ head/sysutils/kdebugsettings/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094950 -SHA256 (KDE/applications/19.04.0/kdebugsettings-19.04.0.tar.xz) = 7c06b1c5b1f14c3a67d34fda52494a8d47495b3473ecd9fe03e97cb1c88012c5 -SIZE (KDE/applications/19.04.0/kdebugsettings-19.04.0.tar.xz) = 55320 +TIMESTAMP = 1557202118 +SHA256 (KDE/applications/19.04.1/kdebugsettings-19.04.1.tar.xz) = f04334f954d48fbd5a7bf41327563081966fb31950c131a943cf0a1a86281aa2 +SIZE (KDE/applications/19.04.1/kdebugsettings-19.04.1.tar.xz) = 54988 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 501126) +++ head/sysutils/kdf/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094951 -SHA256 (KDE/applications/19.04.0/kdf-19.04.0.tar.xz) = f1204fddefe5492c860a77ff2c343f9b885625b321a37673763d73510dd469fd -SIZE (KDE/applications/19.04.0/kdf-19.04.0.tar.xz) = 541444 +TIMESTAMP = 1557202118 +SHA256 (KDE/applications/19.04.1/kdf-19.04.1.tar.xz) = 835881e8f829c3c64ca529019f599ce89b95139d502673d5e6fb560a98eedce5 +SIZE (KDE/applications/19.04.1/kdf-19.04.1.tar.xz) = 541292 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 501126) +++ head/sysutils/kdialog/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094951 -SHA256 (KDE/applications/19.04.0/kdialog-19.04.0.tar.xz) = 2cdd5a65046cfc09246bd1fbc8be818db486e35437f00e20e372d58988f04ace -SIZE (KDE/applications/19.04.0/kdialog-19.04.0.tar.xz) = 98652 +TIMESTAMP = 1557202118 +SHA256 (KDE/applications/19.04.1/kdialog-19.04.1.tar.xz) = 48e77dc4827af2445f8ac583bef319b7fd274f9b84a19635bf673801e96b259a +SIZE (KDE/applications/19.04.1/kdialog-19.04.1.tar.xz) = 98088 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 501126) +++ head/sysutils/kfloppy/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094951 -SHA256 (KDE/applications/19.04.0/kfloppy-19.04.0.tar.xz) = fafa66fddf5fe938b5666ef94ea4a1f41487cb3cc815fa6bc65332ee7574f7e1 -SIZE (KDE/applications/19.04.0/kfloppy-19.04.0.tar.xz) = 199396 +TIMESTAMP = 1557202119 +SHA256 (KDE/applications/19.04.1/kfloppy-19.04.1.tar.xz) = bde5c16c679a34aa6c74844caeea5e1746629ac7d35dfac0493e9d8f7d78aa75 +SIZE (KDE/applications/19.04.1/kfloppy-19.04.1.tar.xz) = 198828 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 501126) +++ head/sysutils/khelpcenter/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094962 -SHA256 (KDE/applications/19.04.0/khelpcenter-19.04.0.tar.xz) = 5fc4f9553e8575055edf259baa3d0b0c663db5caf67dc392db9e519d6b85699f -SIZE (KDE/applications/19.04.0/khelpcenter-19.04.0.tar.xz) = 3841472 +TIMESTAMP = 1557202129 +SHA256 (KDE/applications/19.04.1/khelpcenter-19.04.1.tar.xz) = 3436502f6fae659b930aa63e5ace088e0982804386cf1b24b042328796549114 +SIZE (KDE/applications/19.04.1/khelpcenter-19.04.1.tar.xz) = 3846828 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 501126) +++ head/sysutils/ksystemlog/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094962 -SHA256 (KDE/applications/19.04.0/ksystemlog-19.04.0.tar.xz) = 6a9f389b04fac92b0e2955e86e4a45aa73494f6dd24c9a6704826b469414fb5d -SIZE (KDE/applications/19.04.0/ksystemlog-19.04.0.tar.xz) = 1924560 +TIMESTAMP = 1557202129 +SHA256 (KDE/applications/19.04.1/ksystemlog-19.04.1.tar.xz) = c8e6cb81803b8754d394d9365d3a6533706c742c822a5ef9d46bdc2def356db4 +SIZE (KDE/applications/19.04.1/ksystemlog-19.04.1.tar.xz) = 1923744 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 501126) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094963 -SHA256 (KDE/applications/19.04.0/signon-kwallet-extension-19.04.0.tar.xz) = eb93120d2acfbac4b823bc301b3724d250dc7e7041eef347c1337c7df84c0c40 -SIZE (KDE/applications/19.04.0/signon-kwallet-extension-19.04.0.tar.xz) = 10632 +TIMESTAMP = 1557202130 +SHA256 (KDE/applications/19.04.1/signon-kwallet-extension-19.04.1.tar.xz) = 658bbae2534896e13a7aced654f38164130ee3c748349d044000d0d7dcaa1c38 +SIZE (KDE/applications/19.04.1/signon-kwallet-extension-19.04.1.tar.xz) = 10628 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 501126) +++ head/sysutils/sweeper/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094963 -SHA256 (KDE/applications/19.04.0/sweeper-19.04.0.tar.xz) = 7ed57321ba601725291e1cfa6cdfe2060ad0405d42124dc8d8d44d137b852f72 -SIZE (KDE/applications/19.04.0/sweeper-19.04.0.tar.xz) = 368272 +TIMESTAMP = 1557202130 +SHA256 (KDE/applications/19.04.1/sweeper-19.04.1.tar.xz) = 70ccd7a1d8d81ee2a54df724a1ad908157672bb20e80c81aff8db946241b6637 +SIZE (KDE/applications/19.04.1/sweeper-19.04.1.tar.xz) = 368076 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 501126) +++ head/textproc/kompare/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094963 -SHA256 (KDE/applications/19.04.0/kompare-19.04.0.tar.xz) = 49453b90e21d3b2acd766aac244f579e2dc446ec8abf854ceb2faf34fc3e647f -SIZE (KDE/applications/19.04.0/kompare-19.04.0.tar.xz) = 802100 +TIMESTAMP = 1557202130 +SHA256 (KDE/applications/19.04.1/kompare-19.04.1.tar.xz) = ca270cde7c77fb44b40779ee22d556f14b9e0720e865ad6e3cf5cebbba4d7261 +SIZE (KDE/applications/19.04.1/kompare-19.04.1.tar.xz) = 801480 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 501126) +++ head/textproc/libkomparediff2/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094964 -SHA256 (KDE/applications/19.04.0/libkomparediff2-19.04.0.tar.xz) = ffb3370aa869831f86dc009353abd72a5f0c7a7d1c570d5fecf9747131247464 -SIZE (KDE/applications/19.04.0/libkomparediff2-19.04.0.tar.xz) = 173568 +TIMESTAMP = 1557202131 +SHA256 (KDE/applications/19.04.1/libkomparediff2-19.04.1.tar.xz) = 2ab1a9cb25996bd6fb80bf556ba4b91a07385e62688249e9415b1ead8b3ad1b3 +SIZE (KDE/applications/19.04.1/libkomparediff2-19.04.1.tar.xz) = 172896 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 501126) +++ head/x11/konsole/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094966 -SHA256 (KDE/applications/19.04.0/konsole-19.04.0.tar.xz) = 62d53840f6cac4686feafa7f75d641bb56867b7dfc12e6ce95afa7e796e37cef -SIZE (KDE/applications/19.04.0/konsole-19.04.0.tar.xz) = 1121996 +TIMESTAMP = 1557202132 +SHA256 (KDE/applications/19.04.1/konsole-19.04.1.tar.xz) = 711c67c5d43eb2c02be177e9d1157c142ab99ac5b808f951ab9a70e2397119d8 +SIZE (KDE/applications/19.04.1/konsole-19.04.1.tar.xz) = 1118272 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 501126) +++ head/x11-clocks/kteatime/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094964 -SHA256 (KDE/applications/19.04.0/kteatime-19.04.0.tar.xz) = 8672fa70912e9bf4488d5258258a14babbf65ee160dc537ab665ff2136a0c490 -SIZE (KDE/applications/19.04.0/kteatime-19.04.0.tar.xz) = 298480 +TIMESTAMP = 1557202131 +SHA256 (KDE/applications/19.04.1/kteatime-19.04.1.tar.xz) = 68a23aa6a8bc575586966388315f403e464b43e1b2f4b669689f3161db1669f0 +SIZE (KDE/applications/19.04.1/kteatime-19.04.1.tar.xz) = 298308 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 501126) +++ head/x11-clocks/ktimer/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094965 -SHA256 (KDE/applications/19.04.0/ktimer-19.04.0.tar.xz) = d772292fa447aec07ff763d7bdfc351fbf2fd7d09160a574ec36ff2905ea5b79 -SIZE (KDE/applications/19.04.0/ktimer-19.04.0.tar.xz) = 377084 +TIMESTAMP = 1557202131 +SHA256 (KDE/applications/19.04.1/ktimer-19.04.1.tar.xz) = 7ec4ebbdb8fc388763d832f8601bc7a32848836edc235f4c877bfb6d1726d809 +SIZE (KDE/applications/19.04.1/ktimer-19.04.1.tar.xz) = 377108 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 501126) +++ head/x11-fm/dolphin/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094965 -SHA256 (KDE/applications/19.04.0/dolphin-19.04.0.tar.xz) = f3f45b9048c283252067eebfad8c6e1efc6bc64d43fcba78b933850ea4762375 -SIZE (KDE/applications/19.04.0/dolphin-19.04.0.tar.xz) = 4826048 +TIMESTAMP = 1557202131 +SHA256 (KDE/applications/19.04.1/dolphin-19.04.1.tar.xz) = 72cab4d9f49ac05d3e0e8e1ff67cf29c0cacbe2c3a43506eca4c849ea878370a +SIZE (KDE/applications/19.04.1/dolphin-19.04.1.tar.xz) = 5128964 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 501126) +++ head/x11-fm/konqueror/distinfo (revision 501127) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555094965 -SHA256 (KDE/applications/19.04.0/konqueror-19.04.0.tar.xz) = 8da6fdd7de037bed79b6341e670a7491d371d084c59fdbefb4ffae0d2da82e4c -SIZE (KDE/applications/19.04.0/konqueror-19.04.0.tar.xz) = 7757952 +TIMESTAMP = 1557202132 +SHA256 (KDE/applications/19.04.1/konqueror-19.04.1.tar.xz) = b5f3c5a005b71886bfa2318bf13f14e6bab8fb84e1db54192409769bc3bf0e92 +SIZE (KDE/applications/19.04.1/konqueror-19.04.1.tar.xz) = 7750944