diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 791cec3601a3..7705fc71ec12 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,920 +1,920 @@ # 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-applications: 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. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # 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.27.8 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.109.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 23.08.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.24.0 +KDE_APPLICATIONS_VERSION?= 23.08.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.24.1 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 23.8.0 +KDE_APPLICATIONS_SHLIB_G_VER?= 23.8.1 KDE_APPLICATIONS_BRANCH?= stable # 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 # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . 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} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # 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}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === 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}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # 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 ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface 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 ktextaddons _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.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-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake 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 kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma5-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper 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}/plasma/kcms/systemsettings/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= libkworkspace5.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-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PORT= deskutils/plasma5-xdg-desktop-portal-kde # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF5TextAutoCorrection.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.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-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.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 diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index e793ea3ba6f8..7a6b70ec95cf 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203633 -SHA256 (KDE/release-service/23.08.0/kmag-23.08.0.tar.xz) = 37d23f9c785ae47ee35e99de1d62c85252657574a85588c69568e7aad44f926b -SIZE (KDE/release-service/23.08.0/kmag-23.08.0.tar.xz) = 724264 +TIMESTAMP = 1694551311 +SHA256 (KDE/release-service/23.08.1/kmag-23.08.1.tar.xz) = fa9f9795c7f1572c723d5bd03d97402dff5f8350d7464cbaf48df8969b3d5b41 +SIZE (KDE/release-service/23.08.1/kmag-23.08.1.tar.xz) = 724248 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index ca8e6c481371..e01779b344c6 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203635 -SHA256 (KDE/release-service/23.08.0/kmousetool-23.08.0.tar.xz) = c16b08c64edc352b4d32227a3a63a1ddec5282bca95f7b8ea17143265ac232da -SIZE (KDE/release-service/23.08.0/kmousetool-23.08.0.tar.xz) = 129808 +TIMESTAMP = 1694551310 +SHA256 (KDE/release-service/23.08.1/kmousetool-23.08.1.tar.xz) = 9798360a43fa90075cdcdb88383d487bd75fcaf00b7c0617aff40e22cab4ccd3 +SIZE (KDE/release-service/23.08.1/kmousetool-23.08.1.tar.xz) = 129796 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 91b17550ea76..9184789e1982 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203636 -SHA256 (KDE/release-service/23.08.0/kmouth-23.08.0.tar.xz) = 3d37c50281b6bb675d7f64d172af465944681df4618d33fe11a9a71b6c92330c -SIZE (KDE/release-service/23.08.0/kmouth-23.08.0.tar.xz) = 2087612 +TIMESTAMP = 1694551313 +SHA256 (KDE/release-service/23.08.1/kmouth-23.08.1.tar.xz) = ed0b3c8e06f8dc7e6dae5ea7804d5b366d006d2c96291b870f2634e31cdb888e +SIZE (KDE/release-service/23.08.1/kmouth-23.08.1.tar.xz) = 2087616 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 75f20898e246..846f204022f1 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203434 -SHA256 (KDE/release-service/23.08.0/ark-23.08.0.tar.xz) = 41fcf916a973beade18f043bbbd49bcf8329ae64fcf161e907e30d643f442526 -SIZE (KDE/release-service/23.08.0/ark-23.08.0.tar.xz) = 3016056 +TIMESTAMP = 1694551283 +SHA256 (KDE/release-service/23.08.1/ark-23.08.1.tar.xz) = 7ed454a9905342ca5de2ff8435546b05c7dd2c3bb2fd1484b294981ad74f7d1d +SIZE (KDE/release-service/23.08.1/ark-23.08.1.tar.xz) = 3016220 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 68347f304bb7..55cd03b6d991 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203602 -SHA256 (KDE/release-service/23.08.0/kosmindoormap-23.08.0.tar.xz) = 4dcd66f6004258c33cdb172f411790eadbedc265a54b70d7eabc91a5573e30f1 -SIZE (KDE/release-service/23.08.0/kosmindoormap-23.08.0.tar.xz) = 376708 +TIMESTAMP = 1694551302 +SHA256 (KDE/release-service/23.08.1/kosmindoormap-23.08.1.tar.xz) = 2d36d8470c2c3bee1d5c28ef0181f87e8e1cc8c8b56a85680496ec60ce6739b9 +SIZE (KDE/release-service/23.08.1/kosmindoormap-23.08.1.tar.xz) = 379200 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 4c4cbdb97fb6..aabd7188d36b 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203600 -SHA256 (KDE/release-service/23.08.0/marble-23.08.0.tar.xz) = a11bf99d09ce87acf3f7c997df5e77a5125582f009cf034df6785fd81af55bb6 -SIZE (KDE/release-service/23.08.0/marble-23.08.0.tar.xz) = 53784656 +TIMESTAMP = 1694551307 +SHA256 (KDE/release-service/23.08.1/marble-23.08.1.tar.xz) = 84354049f71a5c532495321772d28190b91c083e814415e7aed7ed1c7f417195 +SIZE (KDE/release-service/23.08.1/marble-23.08.1.tar.xz) = 53784940 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 273464aae1f5..b771e4e73ddc 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203442 -SHA256 (KDE/release-service/23.08.0/audiocd-kio-23.08.0.tar.xz) = a22f676eca7f92fc5e3b0a4115b3348a1b6d7a53cb7e602431ea34dc8cb76cce -SIZE (KDE/release-service/23.08.0/audiocd-kio-23.08.0.tar.xz) = 563404 +TIMESTAMP = 1694551175 +SHA256 (KDE/release-service/23.08.1/audiocd-kio-23.08.1.tar.xz) = 2505212cd30e77508a7b7c042828af17e37a8a1aa3ebe9a92ed0e826ca0c6ed1 +SIZE (KDE/release-service/23.08.1/audiocd-kio-23.08.1.tar.xz) = 563432 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 8bd46caf0ebf..b7dd569f3d99 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203437 -SHA256 (KDE/release-service/23.08.0/elisa-23.08.0.tar.xz) = 64b2799c2a7a2ece4f95bc702da47d4639fd0d61ca89159567fb0ece1c646da6 -SIZE (KDE/release-service/23.08.0/elisa-23.08.0.tar.xz) = 1813244 +TIMESTAMP = 1694551173 +SHA256 (KDE/release-service/23.08.1/elisa-23.08.1.tar.xz) = d9dbd1ee17a980ec6e801d4beeded375dfc7f74d439434be86a89a844dbe3930 +SIZE (KDE/release-service/23.08.1/elisa-23.08.1.tar.xz) = 1813268 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 98d7b375bdc1..2effc0315711 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203443 -SHA256 (KDE/release-service/23.08.0/juk-23.08.0.tar.xz) = 81314b54a7afcd40cb198e01d98674904b329d4accae2ac1b296c81d44beb711 -SIZE (KDE/release-service/23.08.0/juk-23.08.0.tar.xz) = 2079980 +TIMESTAMP = 1694551178 +SHA256 (KDE/release-service/23.08.1/juk-23.08.1.tar.xz) = 6476d970732db31eadacba0d55e19ed96883eb0df925c1c9d8950ef6eba1a7c3 +SIZE (KDE/release-service/23.08.1/juk-23.08.1.tar.xz) = 2080196 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index ba644eccb101..07dbb00691fb 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203440 -SHA256 (KDE/release-service/23.08.0/kmix-23.08.0.tar.xz) = 13dd62562fbf3ebf45b6ce420c8a3b86e22bcb15e58d8625766d0f0a5ae77204 -SIZE (KDE/release-service/23.08.0/kmix-23.08.0.tar.xz) = 1208440 +TIMESTAMP = 1694551172 +SHA256 (KDE/release-service/23.08.1/kmix-23.08.1.tar.xz) = 2201c26c9ef8115b3b9c61775557cf3cdc70218b57e1cf9366f30014e4c1703a +SIZE (KDE/release-service/23.08.1/kmix-23.08.1.tar.xz) = 1208508 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 856c34937b7a..2a8d7b5e759d 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203435 -SHA256 (KDE/release-service/23.08.0/kwave-23.08.0.tar.xz) = c403dba9b19540037b2a5e158dcb030f3115789c36564affde6c289f30434728 -SIZE (KDE/release-service/23.08.0/kwave-23.08.0.tar.xz) = 6965080 +TIMESTAMP = 1694551176 +SHA256 (KDE/release-service/23.08.1/kwave-23.08.1.tar.xz) = 66e9960acfa1c3be12546b454dcf6c12e66cdd15af7a40cb9fd9103c7e8e3ed3 +SIZE (KDE/release-service/23.08.1/kwave-23.08.1.tar.xz) = 6965216 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 940f78e330b2..22e8224ee723 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203438 -SHA256 (KDE/release-service/23.08.0/libkcddb-23.08.0.tar.xz) = 643f23d2f950db22fd4ee98b6a92d9d63c7906ea3f68bdbfd1a8f8ea70f1715e -SIZE (KDE/release-service/23.08.0/libkcddb-23.08.0.tar.xz) = 451272 +TIMESTAMP = 1694551180 +SHA256 (KDE/release-service/23.08.1/libkcddb-23.08.1.tar.xz) = efe6fbcbe3708da8f4b3b8817398b162db90f409e3340e24bd1c997691fe3451 +SIZE (KDE/release-service/23.08.1/libkcddb-23.08.1.tar.xz) = 451308 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 9cb522e63ad6..9681dc7e207e 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203439 -SHA256 (KDE/release-service/23.08.0/libkcompactdisc-23.08.0.tar.xz) = eeda55f8c9f8a8fff2802ac9bda7207ec424ee45fd20e4f6b1a77528023bc754 -SIZE (KDE/release-service/23.08.0/libkcompactdisc-23.08.0.tar.xz) = 99384 +TIMESTAMP = 1694551177 +SHA256 (KDE/release-service/23.08.1/libkcompactdisc-23.08.1.tar.xz) = c5f7042780a9956db0cbf0361e6923e9582a62d50e3b429a282ea70e2e1a1ff7 +SIZE (KDE/release-service/23.08.1/libkcompactdisc-23.08.1.tar.xz) = 99416 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 40e68251fc7f..399c2f7a1b48 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203447 -SHA256 (KDE/release-service/23.08.0/akonadi-23.08.0.tar.xz) = 0298f8231337a393eb93408c9e98577b07ef25307be7ddc9759c775c257761e3 -SIZE (KDE/release-service/23.08.0/akonadi-23.08.0.tar.xz) = 1662332 +TIMESTAMP = 1694551554 +SHA256 (KDE/release-service/23.08.1/akonadi-23.08.1.tar.xz) = 8a944a53f1c7b4dbab3e0b11bf4d15471853b4ec27342d5bf6994e4809539638 +SIZE (KDE/release-service/23.08.1/akonadi-23.08.1.tar.xz) = 1662188 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 1207e748ec00..4289af30a458 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203583 -SHA256 (KDE/release-service/23.08.0/akonadi-calendar-tools-23.08.0.tar.xz) = a473bd326a0b4d8a371f0c4a52d689b3f0b1ce74750a0b22317c19d3995db20a -SIZE (KDE/release-service/23.08.0/akonadi-calendar-tools-23.08.0.tar.xz) = 254668 +TIMESTAMP = 1694551351 +SHA256 (KDE/release-service/23.08.1/akonadi-calendar-tools-23.08.1.tar.xz) = ae4d16b964fa4d3019e5e59e6dd0ef8596d1f7775dadbbf08fb901426db818b2 +SIZE (KDE/release-service/23.08.1/akonadi-calendar-tools-23.08.1.tar.xz) = 254736 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 97557ae23007..9eda794ee56b 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203552 -SHA256 (KDE/release-service/23.08.0/akonadi-import-wizard-23.08.0.tar.xz) = 55373b559d233d46820270ceafb3c351821a2940e708ab7ce49154b78b603a07 -SIZE (KDE/release-service/23.08.0/akonadi-import-wizard-23.08.0.tar.xz) = 515080 +TIMESTAMP = 1694551330 +SHA256 (KDE/release-service/23.08.1/akonadi-import-wizard-23.08.1.tar.xz) = 666883a63856f2457f4465884e3b477d3ac0c53109615aa64fc7512d3bb209de +SIZE (KDE/release-service/23.08.1/akonadi-import-wizard-23.08.1.tar.xz) = 515100 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 99c436f9a9a6..21ff38377cd8 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203575 -SHA256 (KDE/release-service/23.08.0/akonadiconsole-23.08.0.tar.xz) = de50e05a7f76401421c42af7396eeb78d5d3bf7d78ab9d11a26f17cbe5d0c0a9 -SIZE (KDE/release-service/23.08.0/akonadiconsole-23.08.0.tar.xz) = 281412 +TIMESTAMP = 1694551328 +SHA256 (KDE/release-service/23.08.1/akonadiconsole-23.08.1.tar.xz) = 8d7c35da5383adf67f6320c8593e11a6fd045d6794253c53353344590ce2a589 +SIZE (KDE/release-service/23.08.1/akonadiconsole-23.08.1.tar.xz) = 281416 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 69db1c2fcf9f..ebd081760dc7 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203582 -SHA256 (KDE/release-service/23.08.0/akregator-23.08.0.tar.xz) = 284b959993a11cb6c6fae8323a6fa0147322b382c533f08236c43fdf5063de50 -SIZE (KDE/release-service/23.08.0/akregator-23.08.0.tar.xz) = 2320736 +TIMESTAMP = 1694551350 +SHA256 (KDE/release-service/23.08.1/akregator-23.08.1.tar.xz) = a6bd7a3ad6dfd0aa261d41dec136c4581678b3f638ffdaf5e826fba4a148a0fe +SIZE (KDE/release-service/23.08.1/akregator-23.08.1.tar.xz) = 2320956 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index afb2824b7be9..854f88a88b23 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203592 -SHA256 (KDE/release-service/23.08.0/grantlee-editor-23.08.0.tar.xz) = eb08c3ee3afcf6b4118639571d73b510960b42842e1659b69e2c541faca06d5d -SIZE (KDE/release-service/23.08.0/grantlee-editor-23.08.0.tar.xz) = 117548 +TIMESTAMP = 1694551334 +SHA256 (KDE/release-service/23.08.1/grantlee-editor-23.08.1.tar.xz) = 86a59467a2f09d9ffada094672478f914066c8e9804cef1ac626e417c6af3cec +SIZE (KDE/release-service/23.08.1/grantlee-editor-23.08.1.tar.xz) = 117588 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 0adefc837f19..13ed4bf55727 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203578 -SHA256 (KDE/release-service/23.08.0/grantleetheme-23.08.0.tar.xz) = fa944bab73881da5dcfc2f55c25766d5511f3a5b6d4eddeedca2c587bf5300d7 -SIZE (KDE/release-service/23.08.0/grantleetheme-23.08.0.tar.xz) = 63184 +TIMESTAMP = 1694551348 +SHA256 (KDE/release-service/23.08.1/grantleetheme-23.08.1.tar.xz) = 51801f601c7d860929ba331781e92d2788d1ecfaaa426c364cd02ff1de737dbc +SIZE (KDE/release-service/23.08.1/grantleetheme-23.08.1.tar.xz) = 63176 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index c7d18de4e7c0..318e7259bbe2 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203553 -SHA256 (KDE/release-service/23.08.0/itinerary-23.08.0.tar.xz) = c598f620f4a9fc2107664537cf86bc85c6ec564c40ce30ac4fce342f4eab0779 -SIZE (KDE/release-service/23.08.0/itinerary-23.08.0.tar.xz) = 633136 +TIMESTAMP = 1694551335 +SHA256 (KDE/release-service/23.08.1/itinerary-23.08.1.tar.xz) = cc3b1067b405f104ab3ea6d423cf6d9c6b48632a3d5f7a764c474e0be34bb7ba +SIZE (KDE/release-service/23.08.1/itinerary-23.08.1.tar.xz) = 636952 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index d2f69db5c76e..2e2cde8742ab 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203580 -SHA256 (KDE/release-service/23.08.0/kaddressbook-23.08.0.tar.xz) = 21978688b6f4b220323649b8d806f121e49dd56c168746f55e8656df25ff83ab -SIZE (KDE/release-service/23.08.0/kaddressbook-23.08.0.tar.xz) = 3456912 +TIMESTAMP = 1694551346 +SHA256 (KDE/release-service/23.08.1/kaddressbook-23.08.1.tar.xz) = 47506d3ac568098ffcd75b55209e74b9e9956899f9ac0c275e977e76a32f662d +SIZE (KDE/release-service/23.08.1/kaddressbook-23.08.1.tar.xz) = 3456980 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 64be8127b0e3..af46bc95d077 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203587 -SHA256 (KDE/release-service/23.08.0/kalarm-23.08.0.tar.xz) = deaaa46d7116160491aa33d19174ff1102faf1c40d8991d3db07ebf18ab4f071 -SIZE (KDE/release-service/23.08.0/kalarm-23.08.0.tar.xz) = 2595624 +TIMESTAMP = 1694551345 +SHA256 (KDE/release-service/23.08.1/kalarm-23.08.1.tar.xz) = f2e379f497226eed50dd3aa46753ecbafe7fbb3f282fb3ec4841677299978e5c +SIZE (KDE/release-service/23.08.1/kalarm-23.08.1.tar.xz) = 2595616 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index ce29e2f0fac8..51bccc597e1b 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203573 -SHA256 (KDE/release-service/23.08.0/kcharselect-23.08.0.tar.xz) = c565517e53511869c998ca6aff7a9d4f602e9c47358f460bf89f0396c1f18a2c -SIZE (KDE/release-service/23.08.0/kcharselect-23.08.0.tar.xz) = 383324 +TIMESTAMP = 1694551354 +SHA256 (KDE/release-service/23.08.1/kcharselect-23.08.1.tar.xz) = 031373ec7ef49814ac110175eeeb4148a660399c808724f4e71f63500e007ef1 +SIZE (KDE/release-service/23.08.1/kcharselect-23.08.1.tar.xz) = 383332 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 7f66e872b022..4cb27345c59a 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203564 -SHA256 (KDE/release-service/23.08.0/kdeconnect-kde-23.08.0.tar.xz) = 8b41c674f99929efa1c5b85c30bd3fa07d242d32c9065dd6d422a5802601d5e9 -SIZE (KDE/release-service/23.08.0/kdeconnect-kde-23.08.0.tar.xz) = 654520 +TIMESTAMP = 1694551355 +SHA256 (KDE/release-service/23.08.1/kdeconnect-kde-23.08.1.tar.xz) = d35ab7f06f0caeae7915d0e914574b398a5d6f81071ca4864b0d7824a5798ec1 +SIZE (KDE/release-service/23.08.1/kdeconnect-kde-23.08.1.tar.xz) = 654664 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 39c457d144ad..ff75bb34a576 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203577 -SHA256 (KDE/release-service/23.08.0/kdepim-addons-23.08.0.tar.xz) = 615fbecfb12c57c54b8d853a0be68f337b9c3e380f257fe468d442bddfaf2ea1 -SIZE (KDE/release-service/23.08.0/kdepim-addons-23.08.0.tar.xz) = 2642192 +TIMESTAMP = 1694551358 +SHA256 (KDE/release-service/23.08.1/kdepim-addons-23.08.1.tar.xz) = a93f036f84f38ede32ec30ef066a69d49dab9b377bedfb17d510d293bd743bae +SIZE (KDE/release-service/23.08.1/kdepim-addons-23.08.1.tar.xz) = 2642584 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 9c2fbdb2d540..3843cb18ccb6 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203568 -SHA256 (KDE/release-service/23.08.0/kdepim-runtime-23.08.0.tar.xz) = 91e2b4ee4552e442da994d14cdd35bc6bca8a4487751d9815852d7fdf1d2229a -SIZE (KDE/release-service/23.08.0/kdepim-runtime-23.08.0.tar.xz) = 1863316 +TIMESTAMP = 1694551352 +SHA256 (KDE/release-service/23.08.1/kdepim-runtime-23.08.1.tar.xz) = 8b1e85b469159234abfd1da99717a697d4f1d7c92557a2c237264a93b7af4cd9 +SIZE (KDE/release-service/23.08.1/kdepim-runtime-23.08.1.tar.xz) = 1863648 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index b335613efa33..389b7f47f4ad 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1831 +1,1830 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/pim5/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/contactsconfig.so -%%QT_PLUGINDIR%%/pim5/akonadi/config/googleconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim5/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_ldap.so %%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_akonadiplugin.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/applications/org.kde.akonadi_contacts_resource.desktop share/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_ews_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop share/applications/org.kde.akonadi_openxchange_resource.desktop share/applications/org.kde.akonadi_vcard_resource.desktop share/applications/org.kde.akonadi_vcarddir_resource.desktop share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/mailbox-org.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ews.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_contacts.mo share/locale/eo/LC_MESSAGES/accountwizard_ews.mo share/locale/eo/LC_MESSAGES/accountwizard_ical.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_kolab.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/accountwizard_vcard.mo share/locale/eo/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eo/LC_MESSAGES/akonadi_google_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/gid-migrator.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/libfolderarchivesettings.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/eu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eu/LC_MESSAGES/accountwizard_maildir.mo share/locale/eu/LC_MESSAGES/accountwizard_pop3.mo share/locale/eu/LC_MESSAGES/accountwizard_vcard.mo share/locale/eu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/eu/LC_MESSAGES/akonadi-filestore.mo share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eu/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eu/LC_MESSAGES/gid-migrator.mo share/locale/eu/LC_MESSAGES/kio_akonadi.mo share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hsb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ka/LC_MESSAGES/accountwizard_contacts.mo share/locale/ka/LC_MESSAGES/accountwizard_ews.mo share/locale/ka/LC_MESSAGES/accountwizard_ical.mo share/locale/ka/LC_MESSAGES/accountwizard_imap.mo share/locale/ka/LC_MESSAGES/accountwizard_kolab.mo share/locale/ka/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ka/LC_MESSAGES/accountwizard_maildir.mo share/locale/ka/LC_MESSAGES/accountwizard_pop3.mo share/locale/ka/LC_MESSAGES/accountwizard_vcard.mo share/locale/ka/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ka/LC_MESSAGES/akonadi-filestore.mo share/locale/ka/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ka/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ka/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ka/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ka/LC_MESSAGES/akonadi_google_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ka/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ka/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ka/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ka/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ka/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ka/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ka/LC_MESSAGES/gid-migrator.mo share/locale/ka/LC_MESSAGES/kio_akonadi.mo share/locale/ka/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/mai/LC_MESSAGES/accountwizard_imap.mo share/locale/mai/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mai/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mai/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/se/LC_MESSAGES/accountwizard_imap.mo share/locale/se/LC_MESSAGES/accountwizard_kolab.mo share/locale/se/LC_MESSAGES/accountwizard_mailbox.mo share/locale/se/LC_MESSAGES/accountwizard_maildir.mo share/locale/se/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavian/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_ews.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_ical.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_imap.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr@latin/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr@latin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@latin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@latin/LC_MESSAGES/gid-migrator.mo share/locale/sr@latin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@latin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/th/LC_MESSAGES/accountwizard_imap.mo share/locale/th/LC_MESSAGES/accountwizard_mailbox.mo share/locale/th/LC_MESSAGES/accountwizard_maildir.mo share/locale/th/LC_MESSAGES/accountwizard_pop3.mo share/locale/th/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/th/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/th/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ews.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 5dcaabc2d350..86c4f848e768 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203560 -SHA256 (KDE/release-service/23.08.0/keditbookmarks-23.08.0.tar.xz) = c649ce47c28cc24f5a683b9a692ad1c67158c35c0f7b4cc17ddb0e77714071bb -SIZE (KDE/release-service/23.08.0/keditbookmarks-23.08.0.tar.xz) = 239556 +TIMESTAMP = 1694551357 +SHA256 (KDE/release-service/23.08.1/keditbookmarks-23.08.1.tar.xz) = 8d25d9505816a156840233b7463f534f193c9f7b283f4887a11b4c58ef7ba264 +SIZE (KDE/release-service/23.08.1/keditbookmarks-23.08.1.tar.xz) = 239616 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 1a0df739a466..f46e6e829fc3 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203572 -SHA256 (KDE/release-service/23.08.0/kfind-23.08.0.tar.xz) = b1c88999d50e059ded2cf5adb85882a5be7ba0595130905b19d989111fa85e73 -SIZE (KDE/release-service/23.08.0/kfind-23.08.0.tar.xz) = 343632 +TIMESTAMP = 1694551325 +SHA256 (KDE/release-service/23.08.1/kfind-23.08.1.tar.xz) = 55d00c5897a78fadcf34e53149380987e1e631e62bd116af766dd8ece656926c +SIZE (KDE/release-service/23.08.1/kfind-23.08.1.tar.xz) = 343600 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index a8ff90579343..74d1df19aa26 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203567 -SHA256 (KDE/release-service/23.08.0/kmail-account-wizard-23.08.0.tar.xz) = ab09f8dba8e2a428649d0966e7e164c73d5ba28cc90f7420bea954503bc2c093 -SIZE (KDE/release-service/23.08.0/kmail-account-wizard-23.08.0.tar.xz) = 184712 +TIMESTAMP = 1694551324 +SHA256 (KDE/release-service/23.08.1/kmail-account-wizard-23.08.1.tar.xz) = 206c43a656f3a18a2a3e8537f367fc578809232d3565eb89ae4fad4b45a7e490 +SIZE (KDE/release-service/23.08.1/kmail-account-wizard-23.08.1.tar.xz) = 184736 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index a16e0501ec1f..352316a87d61 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203556 -SHA256 (KDE/release-service/23.08.0/kmail-23.08.0.tar.xz) = a538cd16dcbd343e16318d1834cde2f1b84135ca2be86a9063408b0573fa5714 -SIZE (KDE/release-service/23.08.0/kmail-23.08.0.tar.xz) = 7651024 +TIMESTAMP = 1694551337 +SHA256 (KDE/release-service/23.08.1/kmail-23.08.1.tar.xz) = 2a4f25d048306aa3e039935fe50dce1d537132a5e43481c8ac05bd7c304fb48a +SIZE (KDE/release-service/23.08.1/kmail-23.08.1.tar.xz) = 7651168 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index cfa50528d9ae..d9ec9163e94d 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203588 -SHA256 (KDE/release-service/23.08.0/knotes-23.08.0.tar.xz) = 18b3bc8eb64f431e2dc87f5d5db571a629fb127f21e54a65fd322bc40ef9bb0e -SIZE (KDE/release-service/23.08.0/knotes-23.08.0.tar.xz) = 377480 +TIMESTAMP = 1694551347 +SHA256 (KDE/release-service/23.08.1/knotes-23.08.1.tar.xz) = fc8ff695b48600184d3f2c4ed4256d35d4f9bfd2d73f7c078999990c5897b153 +SIZE (KDE/release-service/23.08.1/knotes-23.08.1.tar.xz) = 377440 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 13ddcfa1d430..f3e175a84244 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203570 -SHA256 (KDE/release-service/23.08.0/kontact-23.08.0.tar.xz) = 99d9e7844d391a8ec013dc341efbb94ecab156972a1fc91b003db2798dabcd84 -SIZE (KDE/release-service/23.08.0/kontact-23.08.0.tar.xz) = 874812 +TIMESTAMP = 1694551327 +SHA256 (KDE/release-service/23.08.1/kontact-23.08.1.tar.xz) = 549795f933b6d1460eeead35b691d557644a2a06c7b87690de11f4961dd77016 +SIZE (KDE/release-service/23.08.1/kontact-23.08.1.tar.xz) = 874860 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index aaef7954302a..8a26de69e886 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203585 -SHA256 (KDE/release-service/23.08.0/korganizer-23.08.0.tar.xz) = 8892adc212180c45897d563cfe5c1914d773776577a022b2f475d903901c41a0 -SIZE (KDE/release-service/23.08.0/korganizer-23.08.0.tar.xz) = 2539904 +TIMESTAMP = 1694551340 +SHA256 (KDE/release-service/23.08.1/korganizer-23.08.1.tar.xz) = 25cad4a99496ec1b07405fcd906925f57024b8f9146311826dccda650b03cb7c +SIZE (KDE/release-service/23.08.1/korganizer-23.08.1.tar.xz) = 2539940 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index f570376eda64..6a2e9a60eaf8 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203562 -SHA256 (KDE/release-service/23.08.0/kruler-23.08.0.tar.xz) = 0a5ac79e1bac5f378560ff722b94fd10bb86858f5fbaad5b4c8fd5b2b58b1e04 -SIZE (KDE/release-service/23.08.0/kruler-23.08.0.tar.xz) = 287020 +TIMESTAMP = 1694551331 +SHA256 (KDE/release-service/23.08.1/kruler-23.08.1.tar.xz) = 658241a7de02dad3cb3226e143a7d1a8b2c0f5eecc461569150aee856d7e898b +SIZE (KDE/release-service/23.08.1/kruler-23.08.1.tar.xz) = 287056 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index fe59a4b7c457..01f78b7613d4 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203557 -SHA256 (KDE/release-service/23.08.0/libkdepim-23.08.0.tar.xz) = 2038f8477d40837a8c1e6da06c2aaec6914647481db192620295638a32680cee -SIZE (KDE/release-service/23.08.0/libkdepim-23.08.0.tar.xz) = 285408 +TIMESTAMP = 1694551332 +SHA256 (KDE/release-service/23.08.1/libkdepim-23.08.1.tar.xz) = e4808e74427ece2b1fa4aeaf5d70ba3b895d47c53ed6018a71e3725437d813a2 +SIZE (KDE/release-service/23.08.1/libkdepim-23.08.1.tar.xz) = 285444 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index e8b47ae0aee2..cabadf1634df 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203589 -SHA256 (KDE/release-service/23.08.0/mbox-importer-23.08.0.tar.xz) = 92ee173f5d1a1b0fc8c731529d2d869c7fc8703b0a5d6ef3192ed70c6a2109e3 -SIZE (KDE/release-service/23.08.0/mbox-importer-23.08.0.tar.xz) = 30068 +TIMESTAMP = 1694551341 +SHA256 (KDE/release-service/23.08.1/mbox-importer-23.08.1.tar.xz) = 3b16e252dec022ddc2dbb6f4b2966bf3b77a4b4aba1a4bc94596e2b0977bf9ec +SIZE (KDE/release-service/23.08.1/mbox-importer-23.08.1.tar.xz) = 30044 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 8ab5d11acc61..27c5f3ae2c61 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203559 -SHA256 (KDE/release-service/23.08.0/merkuro-23.08.0.tar.xz) = 2aea56404f2b2a88151a81bef4ea2c187a2435cc0828ab5fc7806f914a973977 -SIZE (KDE/release-service/23.08.0/merkuro-23.08.0.tar.xz) = 973492 +TIMESTAMP = 1694551336 +SHA256 (KDE/release-service/23.08.1/merkuro-23.08.1.tar.xz) = 8b96c51c0db07acd9f229fea6e85889f2e9ef22f6b0b911751c40d37ca0bfb19 +SIZE (KDE/release-service/23.08.1/merkuro-23.08.1.tar.xz) = 976060 diff --git a/deskutils/merkuro/pkg-plist b/deskutils/merkuro/pkg-plist index 79b293618d07..6d3e4ac23f13 100644 --- a/deskutils/merkuro/pkg-plist +++ b/deskutils/merkuro/pkg-plist @@ -1,171 +1,172 @@ bin/merkuro-calendar bin/merkuro-contact bin/merkuro-mail %%QT_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/IdentityConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/MobileCollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/TagManagerPage.qml %%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so %%QT_QMLDIR%%/org/kde/akonadi/qmldir %%QT_QMLDIR%%/org/kde/merkuro/calendar/BottomToolBar.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/PriorityComboBox.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/ReminderDelegate.qml %%QT_QMLDIR%%/org/kde/merkuro/calendar/libmerkuro_calendar_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/calendar/qmldir %%QT_QMLDIR%%/org/kde/merkuro/components/BaseApplication.qml %%QT_QMLDIR%%/org/kde/merkuro/components/ColoredCheckbox.qml %%QT_QMLDIR%%/org/kde/merkuro/components/EditMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/FileMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/HelpMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/KActionFromAction.qml %%QT_QMLDIR%%/org/kde/merkuro/components/KQuickCommandBarPage.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeEditMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeFileMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeHelpMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeMenuItemFromAction.qml %%QT_QMLDIR%%/org/kde/merkuro/components/NativeWindowMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/SettingsMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/ViewMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/WindowMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/components/libmerkuro_components_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/components/qmldir %%QT_QMLDIR%%/org/kde/merkuro/contact/AddressBookCollectionHandler.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/ContactChooserPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/ContactView.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/GlobalMenuBar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/MenuBar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/Sidebar.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/libmerkuro_contact_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactListItem.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/DeleteContactAction.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/Header.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/AddressBookEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/BusinessEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/EmailEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/InstantMessengerEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PersonalInfoEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhoneEditorCard.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/private/contact_editor/PhotoEditor.qml %%QT_QMLDIR%%/org/kde/merkuro/contact/qmldir %%QT_QMLDIR%%/org/kde/merkuro/mail/ConversationViewer.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/FolderView.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/MailComposer.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/MailSidebar.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/MailViewer.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/libmerkuro_mail_plugin.so %%QT_QMLDIR%%/org/kde/merkuro/mail/mailboxselector/MailBoxList.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailboxselector/MailBoxListPage.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/HtmlPart.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/ICalPart.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/MailPart.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/MailPartModel.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/MailPartView.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/mailpartview/TextPart.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/private/AttachmentDelegate.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/private/MailDelegate.qml %%QT_QMLDIR%%/org/kde/merkuro/mail/qmldir share/applications/org.kde.merkuro.calendar.desktop share/applications/org.kde.merkuro.contact.desktop share/applications/org.kde.merkuro.mail.desktop share/icons/hicolor/128x128/apps/org.kde.merkuro.calendar.png share/icons/hicolor/128x128/apps/org.kde.merkuro.contact.png share/icons/hicolor/128x128/apps/org.kde.merkuro.mail.png share/icons/hicolor/256x256/apps/org.kde.merkuro.calendar.png share/icons/hicolor/256x256/apps/org.kde.merkuro.contact.png share/icons/hicolor/256x256/apps/org.kde.merkuro.mail.png share/icons/hicolor/48x48/apps/org.kde.merkuro.calendar.png share/icons/hicolor/48x48/apps/org.kde.merkuro.contact.png share/icons/hicolor/48x48/apps/org.kde.merkuro.mail.png share/locale/ar/LC_MESSAGES/merkuro.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/az/LC_MESSAGES/merkuro.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca/LC_MESSAGES/merkuro.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ca@valencia/LC_MESSAGES/merkuro.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/cs/LC_MESSAGES/merkuro.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/de/LC_MESSAGES/merkuro.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/el/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/merkuro.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/es/LC_MESSAGES/merkuro.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/eu/LC_MESSAGES/merkuro.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fi/LC_MESSAGES/merkuro.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/fr/LC_MESSAGES/merkuro.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/hu/LC_MESSAGES/merkuro.mo share/locale/ia/LC_MESSAGES/merkuro.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/id/LC_MESSAGES/merkuro.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/it/LC_MESSAGES/merkuro.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ja/LC_MESSAGES/merkuro.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ka/LC_MESSAGES/merkuro.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ko/LC_MESSAGES/merkuro.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lt/LC_MESSAGES/merkuro.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/lv/LC_MESSAGES/merkuro.mo share/locale/nl/LC_MESSAGES/merkuro.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pl/LC_MESSAGES/merkuro.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt/LC_MESSAGES/merkuro.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/pt_BR/LC_MESSAGES/merkuro.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ru/LC_MESSAGES/merkuro.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sk/LC_MESSAGES/merkuro.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sl/LC_MESSAGES/merkuro.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/sv/LC_MESSAGES/merkuro.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/ta/LC_MESSAGES/merkuro.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/tr/LC_MESSAGES/merkuro.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/uk/LC_MESSAGES/merkuro.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_CN/LC_MESSAGES/merkuro.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/locale/zh_TW/LC_MESSAGES/merkuro.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.merkuro.contact.mo share/metainfo/org.kde.merkuro.calendar.metainfo.xml share/metainfo/org.kde.merkuro.contact.appdata.xml share/metainfo/org.kde.merkuro.contact.metainfo.xml share/metainfo/org.kde.merkuro.mail.metainfo.xml share/plasma/plasmoids/org.kde.merkuro.contact/contents/config/main.xml share/plasma/plasmoids/org.kde.merkuro.contact/contents/resources/fallbackBackground.png share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/ContactListItem.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/ContactPage.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/ContactsPage.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/Header.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/QrCodePage.qml share/plasma/plasmoids/org.kde.merkuro.contact/contents/ui/main.qml share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json.license share/qlogging-categories5/akonadi.quick.categories share/qlogging-categories5/merkuro.categories share/qlogging-categories5/merkuro.contact.categories diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 015d7848c6c0..0fe69542d8be 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203565 -SHA256 (KDE/release-service/23.08.0/pim-data-exporter-23.08.0.tar.xz) = ae522a0deb7ae1ef7a24948409fd4e4e9e4cb0427a9703097c7d37356dcc360f -SIZE (KDE/release-service/23.08.0/pim-data-exporter-23.08.0.tar.xz) = 427720 +TIMESTAMP = 1694551344 +SHA256 (KDE/release-service/23.08.1/pim-data-exporter-23.08.1.tar.xz) = e759b51b292a58684feac85a45db41ae3f1c8c399518c817e5a27c94935a8a24 +SIZE (KDE/release-service/23.08.1/pim-data-exporter-23.08.1.tar.xz) = 427728 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index fc7fd0e93523..00e906f96b33 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203550 -SHA256 (KDE/release-service/23.08.0/pim-sieve-editor-23.08.0.tar.xz) = 5519d96c0b94c0884caec900d5dc6d82e60f89ef19ec191fbad2048a4a02e5c4 -SIZE (KDE/release-service/23.08.0/pim-sieve-editor-23.08.0.tar.xz) = 466132 +TIMESTAMP = 1694551339 +SHA256 (KDE/release-service/23.08.1/pim-sieve-editor-23.08.1.tar.xz) = 4984fd6a1c4484e42eac973ea014470987534d1402e669d1b7e46d0965d17f55 +SIZE (KDE/release-service/23.08.1/pim-sieve-editor-23.08.1.tar.xz) = 466176 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 82a5f2a024ff..ae9e13ed2e0d 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203591 -SHA256 (KDE/release-service/23.08.0/zanshin-23.08.0.tar.xz) = ddd0e10c4db9b5409d5f0326ed179544e4b7ab83bcbb8e6a71d91a7e8fa88407 -SIZE (KDE/release-service/23.08.0/zanshin-23.08.0.tar.xz) = 360748 +TIMESTAMP = 1694551342 +SHA256 (KDE/release-service/23.08.1/zanshin-23.08.1.tar.xz) = 8ad348deeccbc0ea3f250d5986093c840647a2c915451030b76e701624dff859 +SIZE (KDE/release-service/23.08.1/zanshin-23.08.1.tar.xz) = 360768 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 8b31f2fbc276..def2f7197194 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203396 -SHA256 (KDE/release-service/23.08.0/cervisia-23.08.0.tar.xz) = c8c0fb109b176b7085e0db85f55ae0a2440f9358e477c9f22eaee769e94c3b62 -SIZE (KDE/release-service/23.08.0/cervisia-23.08.0.tar.xz) = 1945680 +TIMESTAMP = 1694551547 +SHA256 (KDE/release-service/23.08.1/cervisia-23.08.1.tar.xz) = 9d00461a980ce27398a7703bf996fdafe4f6b65355209041a9e5de3be6c2e856 +SIZE (KDE/release-service/23.08.1/cervisia-23.08.1.tar.xz) = 1945644 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 1c52aba57d59..37ad3ebf63af 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203387 -SHA256 (KDE/release-service/23.08.0/dolphin-plugins-23.08.0.tar.xz) = c443084976ac84b2e29e1ada97f526da9cb924220f2b3fddb0558bdfb1243fde -SIZE (KDE/release-service/23.08.0/dolphin-plugins-23.08.0.tar.xz) = 273412 +TIMESTAMP = 1694551529 +SHA256 (KDE/release-service/23.08.1/dolphin-plugins-23.08.1.tar.xz) = 992f429f3b80d6eeb0304a2f38b475868bf86e7929cedcbf5728fe79853a0b55 +SIZE (KDE/release-service/23.08.1/dolphin-plugins-23.08.1.tar.xz) = 273396 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 38043721a00e..32dd876c1b71 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203379 -SHA256 (KDE/release-service/23.08.0/kapptemplate-23.08.0.tar.xz) = 93a9564589fe03a6b3bdfca6718918ef04a4ee15d7ea1bf58716ac90135c53e4 -SIZE (KDE/release-service/23.08.0/kapptemplate-23.08.0.tar.xz) = 339424 +TIMESTAMP = 1694551550 +SHA256 (KDE/release-service/23.08.1/kapptemplate-23.08.1.tar.xz) = 8dbc9556cf0d7e5c01b86e97cd6b720804e97bc43189ae96220ccc06fbfb191a +SIZE (KDE/release-service/23.08.1/kapptemplate-23.08.1.tar.xz) = 339400 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 0e220d8f50ea..65d89debe097 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203378 -SHA256 (KDE/release-service/23.08.0/kcachegrind-23.08.0.tar.xz) = 7c577d3d2e7115c1461ca50f1b128996719222a19d4d102376420dcc2b510781 -SIZE (KDE/release-service/23.08.0/kcachegrind-23.08.0.tar.xz) = 921784 +TIMESTAMP = 1694551531 +SHA256 (KDE/release-service/23.08.1/kcachegrind-23.08.1.tar.xz) = 69ee24c45f9d975f0192b4353daadf278587a3c52537681d4ef6c684326e9d9a +SIZE (KDE/release-service/23.08.1/kcachegrind-23.08.1.tar.xz) = 921768 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index b67b1f34cd2b..f47a06f746f2 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203393 -SHA256 (KDE/release-service/23.08.0/kde-dev-scripts-23.08.0.tar.xz) = a0cf79f158b6d63a761f1956349d376e9eed9b2e1f7d27d13baf53d3af0cb155 -SIZE (KDE/release-service/23.08.0/kde-dev-scripts-23.08.0.tar.xz) = 373888 +TIMESTAMP = 1694551521 +SHA256 (KDE/release-service/23.08.1/kde-dev-scripts-23.08.1.tar.xz) = eb86c83dab4d33604d1e777f3a671aa21f7c91104eb0289dadfc316cfb55c4d8 +SIZE (KDE/release-service/23.08.1/kde-dev-scripts-23.08.1.tar.xz) = 373928 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 79262e0bdd4d..902d977a26f7 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203394 -SHA256 (KDE/release-service/23.08.0/kde-dev-utils-23.08.0.tar.xz) = 11e4dacf2610ac1c9d2a49bb590be446498f6548f52db3d29d6484bcf8670374 -SIZE (KDE/release-service/23.08.0/kde-dev-utils-23.08.0.tar.xz) = 73760 +TIMESTAMP = 1694551528 +SHA256 (KDE/release-service/23.08.1/kde-dev-utils-23.08.1.tar.xz) = dd7df0af9a83677126f6ca37d0dd8853c76fe5d5fe79bec1e8e43b2295fc7d2a +SIZE (KDE/release-service/23.08.1/kde-dev-utils-23.08.1.tar.xz) = 73756 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index e93a31b632e7..3d575a160a5f 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203376 -SHA256 (KDE/release-service/23.08.0/kdesdk-kio-23.08.0.tar.xz) = 08d166f850b5481929f4d78523e4e4047ce34e9f6b2cbb5403e61a5cd7fc959f -SIZE (KDE/release-service/23.08.0/kdesdk-kio-23.08.0.tar.xz) = 40484 +TIMESTAMP = 1694551552 +SHA256 (KDE/release-service/23.08.1/kdesdk-kio-23.08.1.tar.xz) = 8cfe282e9d204ed948d6deed8bfe6b60af21671b6b7a148d912f22ae98b9a042 +SIZE (KDE/release-service/23.08.1/kdesdk-kio-23.08.1.tar.xz) = 40488 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 3f49d35b3821..932a51915b50 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203375 -SHA256 (KDE/release-service/23.08.0/kdesdk-thumbnailers-23.08.0.tar.xz) = 3561efd2f45f02c3b39fdae231cfafb18419f7bf6698336ac9e162b5432eada9 -SIZE (KDE/release-service/23.08.0/kdesdk-thumbnailers-23.08.0.tar.xz) = 27368 +TIMESTAMP = 1694551535 +SHA256 (KDE/release-service/23.08.1/kdesdk-thumbnailers-23.08.1.tar.xz) = 5765d9696af8910c75b225ea12fb4b0c8f308d1335e4452c8ed0b6c29b6381df +SIZE (KDE/release-service/23.08.1/kdesdk-thumbnailers-23.08.1.tar.xz) = 27372 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index aefd910c4184..27bde9d58508 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203393 -SHA256 (KDE/release-service/23.08.0/kdev-php-23.08.0.tar.xz) = 6f7a737c6feabed8970375cd9264c503c17ee648c3f9ca10b071d8beee679d37 -SIZE (KDE/release-service/23.08.0/kdev-php-23.08.0.tar.xz) = 1088072 +TIMESTAMP = 1694551532 +SHA256 (KDE/release-service/23.08.1/kdev-php-23.08.1.tar.xz) = 0ef93f01591317d37de1ff9e6e4ae800975b4840bbfe56bd7f0630612eb432a7 +SIZE (KDE/release-service/23.08.1/kdev-php-23.08.1.tar.xz) = 1088180 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 727e24bf1025..20047d6b399e 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203384 -SHA256 (KDE/release-service/23.08.0/kdev-python-23.08.0.tar.xz) = bd5a1f804336ca61d8e62e316ac1089af4d0b7e81aa92662b426ac8996e01fe8 -SIZE (KDE/release-service/23.08.0/kdev-python-23.08.0.tar.xz) = 1096764 +TIMESTAMP = 1694551543 +SHA256 (KDE/release-service/23.08.1/kdev-python-23.08.1.tar.xz) = a4d3bc8c86a1d67d709c31a7aad8436b2c958f13f8ad290264044c7cd78b45de +SIZE (KDE/release-service/23.08.1/kdev-python-23.08.1.tar.xz) = 1096868 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 27c849c89bc3..bac37b65fb9d 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,67 +1,67 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 \ kde:5 llvm:build,run,noexport pkgconfig qt:5 shared-mime-info \ shebangfix tar:xz xorg USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets kcmutils \ kdeclarative kio libksysguard newstuff notifications \ notifyconfig package parts plasma-framework purpose runner \ service solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network printsupport \ script sql widgets xml \ buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm:build, testlib:build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm:build USE_QT+= testlib CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW \ -DClang_DIR=${LLVM_PREFIX}/lib/cmake/clang # Versioning values, to reduce plist churn SO_VER= 512 -SO_VER_LONG= 5.12.230800 +SO_VER_LONG= 5.12.230801 PLIST_SUB+= SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} OPTIONS_DEFINE= WEBENGINE OPTIONS_DEFAULT= WEBENGINE WEBENGINE_DESC= Use WebEngine as help reader WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_USE_OFF= QT=webkit WEBENGINE_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index cfb520c8b954..8e0a9bd0a764 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203386 -SHA256 (KDE/release-service/23.08.0/kdevelop-23.08.0.tar.xz) = 307c99359ba435a530ec7ff86d9e80aaff5650c6c0b8ea126d392b46147aee6a -SIZE (KDE/release-service/23.08.0/kdevelop-23.08.0.tar.xz) = 8705396 +TIMESTAMP = 1694551537 +SHA256 (KDE/release-service/23.08.1/kdevelop-23.08.1.tar.xz) = 2edbd5e912df8b6d4034d468e14138d9b9c9ae5d8c6ea74d48e0c7c983616227 +SIZE (KDE/release-service/23.08.1/kdevelop-23.08.1.tar.xz) = 8704892 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index f22f625f7ac0..e507e1bf0d44 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203390 -SHA256 (KDE/release-service/23.08.0/kio-extras-23.08.0.tar.xz) = 5a1cebeef8ced99f22093be40a6081cbc57a750bd813598cb659b4d4c8264809 -SIZE (KDE/release-service/23.08.0/kio-extras-23.08.0.tar.xz) = 1429620 +TIMESTAMP = 1694551526 +SHA256 (KDE/release-service/23.08.1/kio-extras-23.08.1.tar.xz) = 1c5b559f54ca3736988ba0fae2dcfc4227a195aa442da254dd6cc2e738cd61d9 +SIZE (KDE/release-service/23.08.1/kio-extras-23.08.1.tar.xz) = 1429576 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 455940ac5931..c51760100b25 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203381 -SHA256 (KDE/release-service/23.08.0/kirigami-gallery-23.08.0.tar.xz) = 3d8431591c7e63913051af41c81939dce9b0d2b41ea513eb6c4fd3bed58f861a -SIZE (KDE/release-service/23.08.0/kirigami-gallery-23.08.0.tar.xz) = 350948 +TIMESTAMP = 1694551523 +SHA256 (KDE/release-service/23.08.1/kirigami-gallery-23.08.1.tar.xz) = 0118c95f4e44e44e0fe93be71fe6902ac2d2af6a44a500dad0b2ea8dfe6173d3 +SIZE (KDE/release-service/23.08.1/kirigami-gallery-23.08.1.tar.xz) = 350948 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 77c2a8a78b01..5224ac8e61cb 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203391 -SHA256 (KDE/release-service/23.08.0/kpublictransport-23.08.0.tar.xz) = cf395c2a28f2df5454875523c061d3e661ca6cab5d00df1400b85f9ae467f253 -SIZE (KDE/release-service/23.08.0/kpublictransport-23.08.0.tar.xz) = 569164 +TIMESTAMP = 1694551545 +SHA256 (KDE/release-service/23.08.1/kpublictransport-23.08.1.tar.xz) = 9850302c89284d826c6ac6449842773beb8d6158bca0b3edeb8f9d5b21c10994 +SIZE (KDE/release-service/23.08.1/kpublictransport-23.08.1.tar.xz) = 569260 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 110bcae88f8d..f03f7db4fb9d 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203389 -SHA256 (KDE/release-service/23.08.0/lokalize-23.08.0.tar.xz) = 4a733c5b28cdfbd5fb5f8dfa58bfdd42a4ad75fb1c46e1c2c3a6713687a2b08b -SIZE (KDE/release-service/23.08.0/lokalize-23.08.0.tar.xz) = 2140612 +TIMESTAMP = 1694551534 +SHA256 (KDE/release-service/23.08.1/lokalize-23.08.1.tar.xz) = c57c352d7724f83d69c1f0f8d38289cf0277bd3c6c0cb442e3b9c5bf4dfc4612 +SIZE (KDE/release-service/23.08.1/lokalize-23.08.1.tar.xz) = 2141012 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index d91801e8ab0e..3fc1f64deaf9 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203380 -SHA256 (KDE/release-service/23.08.0/poxml-23.08.0.tar.xz) = 1745079fc047306a3c79f3fa7a9b6c063ad542cce5dc0a5acf4d9709fe021683 -SIZE (KDE/release-service/23.08.0/poxml-23.08.0.tar.xz) = 44300 +TIMESTAMP = 1694551538 +SHA256 (KDE/release-service/23.08.1/poxml-23.08.1.tar.xz) = ab4db9542a9738f0393151e40fb0e9b35bd7f04c9b72dc25029f121ab1a61ce2 +SIZE (KDE/release-service/23.08.1/poxml-23.08.1.tar.xz) = 44308 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index b3c0f43254f0..7ef465b5ea98 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203383 -SHA256 (KDE/release-service/23.08.0/umbrello-23.08.0.tar.xz) = cbb9717ca99576646b63252f725e194f9291d8a3b2f9acbcdcc58e1729f84a2e -SIZE (KDE/release-service/23.08.0/umbrello-23.08.0.tar.xz) = 5773972 +TIMESTAMP = 1694551525 +SHA256 (KDE/release-service/23.08.1/umbrello-23.08.1.tar.xz) = 2de7bfaccb341332b2deec7429fe389575d8dd6081af267ce449015808cf4b85 +SIZE (KDE/release-service/23.08.1/umbrello-23.08.1.tar.xz) = 5774212 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 1ba57dd11869..e709a2cc70f3 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203417 -SHA256 (KDE/release-service/23.08.0/kate-23.08.0.tar.xz) = 3e930d2cfe5cd1a7237ddcd29a42d060e871c05788fd562c3b3af5600c8d68b1 -SIZE (KDE/release-service/23.08.0/kate-23.08.0.tar.xz) = 8032140 +TIMESTAMP = 1694551406 +SHA256 (KDE/release-service/23.08.1/kate-23.08.1.tar.xz) = ef7e73eff86421e77a3502f353e1f30f50303b3e0313fd76b4c52f014cbc4f7d +SIZE (KDE/release-service/23.08.1/kate-23.08.1.tar.xz) = 8032048 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 2947262163bb..d0182c79fc49 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203451 -SHA256 (KDE/release-service/23.08.0/blinken-23.08.0.tar.xz) = 648ce632d42590ccae026920c5758c847dc434bba94380a3730c8b1ef6f29ef2 -SIZE (KDE/release-service/23.08.0/blinken-23.08.0.tar.xz) = 2724436 +TIMESTAMP = 1694551225 +SHA256 (KDE/release-service/23.08.1/blinken-23.08.1.tar.xz) = ae406ba79edb2beeb5db744135b25a7f484bc0c44c5b5a6a9fd2a1bcd984abf6 +SIZE (KDE/release-service/23.08.1/blinken-23.08.1.tar.xz) = 2725392 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index f7d9492f160b..1c77c17b16db 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203504 -SHA256 (KDE/release-service/23.08.0/bomber-23.08.0.tar.xz) = 82693d6f8bf3888f0c5255cbeaf7e8eadc2820a4bef0329c2c3d65492ab1c0a6 -SIZE (KDE/release-service/23.08.0/bomber-23.08.0.tar.xz) = 839080 +TIMESTAMP = 1694551211 +SHA256 (KDE/release-service/23.08.1/bomber-23.08.1.tar.xz) = ffeb4ca938acb39ca8525e6dc37bf5d81b38788da5fd100e099bb972a45e3112 +SIZE (KDE/release-service/23.08.1/bomber-23.08.1.tar.xz) = 839104 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 4c0123eefb44..9e4f2aada46f 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203475 -SHA256 (KDE/release-service/23.08.0/bovo-23.08.0.tar.xz) = 68c47cad1e908dcbffc68ecb14f57fab37d11fc81cc3ca0dbe953487c7c7f405 -SIZE (KDE/release-service/23.08.0/bovo-23.08.0.tar.xz) = 215428 +TIMESTAMP = 1694551200 +SHA256 (KDE/release-service/23.08.1/bovo-23.08.1.tar.xz) = 8c54e013416a23ba14c1a9fc78a1e1a311916f2ba6397d2621aa358cb593c052 +SIZE (KDE/release-service/23.08.1/bovo-23.08.1.tar.xz) = 215464 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index d006a061c64f..a6326cf46db1 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203457 -SHA256 (KDE/release-service/23.08.0/granatier-23.08.0.tar.xz) = 99cb6347669303541da9bcd2232c1951834a0154172e245aa5b1b205b61cdb43 -SIZE (KDE/release-service/23.08.0/granatier-23.08.0.tar.xz) = 2112804 +TIMESTAMP = 1694551231 +SHA256 (KDE/release-service/23.08.1/granatier-23.08.1.tar.xz) = 6a97e6f2dec6c772e8d36a08cd7f641681d4e94694df5b958a3e3d9c87123006 +SIZE (KDE/release-service/23.08.1/granatier-23.08.1.tar.xz) = 2112672 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 184f32f72ea8..ba169fe23da3 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203489 -SHA256 (KDE/release-service/23.08.0/kanagram-23.08.0.tar.xz) = 36d139cd98c6ae1b17580440c76048764e93806bfd5595ce52d9a55ecb93caa3 -SIZE (KDE/release-service/23.08.0/kanagram-23.08.0.tar.xz) = 8066004 +TIMESTAMP = 1694551242 +SHA256 (KDE/release-service/23.08.1/kanagram-23.08.1.tar.xz) = 1c5e905c9a30092742c2616cf88de8ba059683a12810c2b083c254316175197f +SIZE (KDE/release-service/23.08.1/kanagram-23.08.1.tar.xz) = 8066116 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 159ac85ddd61..51fe6a6c1575 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203494 -SHA256 (KDE/release-service/23.08.0/kapman-23.08.0.tar.xz) = 90bffde2811548faa9d3ba37aaf171780889025aeae23716edc84b2a0e17ec08 -SIZE (KDE/release-service/23.08.0/kapman-23.08.0.tar.xz) = 2481564 +TIMESTAMP = 1694551191 +SHA256 (KDE/release-service/23.08.1/kapman-23.08.1.tar.xz) = 6916b8aa2755de9e8c850fd029f0cdc273be1196fba430af06cf42bce27ee33d +SIZE (KDE/release-service/23.08.1/kapman-23.08.1.tar.xz) = 2481596 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 11629a893b1f..d1dbe112f402 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203507 -SHA256 (KDE/release-service/23.08.0/katomic-23.08.0.tar.xz) = 88f6028ac8a5b3ca82f207402f0bc91ff4fee547d54383612db570a5b4f6392b -SIZE (KDE/release-service/23.08.0/katomic-23.08.0.tar.xz) = 1451788 +TIMESTAMP = 1694551203 +SHA256 (KDE/release-service/23.08.1/katomic-23.08.1.tar.xz) = 173998675c396022c6b48adfbb01bf3dcaf2afadc07e842ca1006f5f560677c6 +SIZE (KDE/release-service/23.08.1/katomic-23.08.1.tar.xz) = 1451768 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 13ba4c42488f..65ad7e78f265 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203472 -SHA256 (KDE/release-service/23.08.0/kblackbox-23.08.0.tar.xz) = 7e33a8a2356459510ff07c7fd29953ad69f0f69153f000227b6533e221fbbeab -SIZE (KDE/release-service/23.08.0/kblackbox-23.08.0.tar.xz) = 550772 +TIMESTAMP = 1694551190 +SHA256 (KDE/release-service/23.08.1/kblackbox-23.08.1.tar.xz) = 8b0bcca9cd92af97969f4b3ce4ef666dcc66622d3e96c6b06acb0830a6e4b47a +SIZE (KDE/release-service/23.08.1/kblackbox-23.08.1.tar.xz) = 550764 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index a8fda68eafd3..671575092866 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203470 -SHA256 (KDE/release-service/23.08.0/kblocks-23.08.0.tar.xz) = 14871763a56f8d0406ff807035d68d0c7fef11f11ba99575bfa8002e452425bb -SIZE (KDE/release-service/23.08.0/kblocks-23.08.0.tar.xz) = 2108048 +TIMESTAMP = 1694551197 +SHA256 (KDE/release-service/23.08.1/kblocks-23.08.1.tar.xz) = 3f1a77682fad213b6748605043aaeea6b80c17a4faaf3600ccba02783ef3e14c +SIZE (KDE/release-service/23.08.1/kblocks-23.08.1.tar.xz) = 2108132 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index fa614c32e477..a67db9a941fe 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203497 -SHA256 (KDE/release-service/23.08.0/kbounce-23.08.0.tar.xz) = 5d2670d06dd51c72f8c6cf0757cb352bdfdd062ff9f2b8315258ee26faf49c8e -SIZE (KDE/release-service/23.08.0/kbounce-23.08.0.tar.xz) = 3544188 +TIMESTAMP = 1694551184 +SHA256 (KDE/release-service/23.08.1/kbounce-23.08.1.tar.xz) = c0fa948d2c97a748ebab3935f948425b062617f71fe312b69feec6d642c6c080 +SIZE (KDE/release-service/23.08.1/kbounce-23.08.1.tar.xz) = 3544668 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 8be7a23022bc..1baa6938eda1 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203459 -SHA256 (KDE/release-service/23.08.0/kbreakout-23.08.0.tar.xz) = 9d2c406eb5544cf2285d6ef1b1033610e680d15925270626d75cb9ae9c548dd7 -SIZE (KDE/release-service/23.08.0/kbreakout-23.08.0.tar.xz) = 2559468 +TIMESTAMP = 1694551230 +SHA256 (KDE/release-service/23.08.1/kbreakout-23.08.1.tar.xz) = 88d6c11a770d7606bce589427a07217f8f8f233d5b025d99b78f3805c7f0fb11 +SIZE (KDE/release-service/23.08.1/kbreakout-23.08.1.tar.xz) = 2559840 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 14f498faff7f..9e60ae2c1a8e 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203462 -SHA256 (KDE/release-service/23.08.0/kdiamond-23.08.0.tar.xz) = c0127bdb74e3b1599ddd812c518b2ac50d51802a2b29ace99df99fff86e3445f -SIZE (KDE/release-service/23.08.0/kdiamond-23.08.0.tar.xz) = 4708904 +TIMESTAMP = 1694551185 +SHA256 (KDE/release-service/23.08.1/kdiamond-23.08.1.tar.xz) = 298759850e3c380fa8294a6511f60dcde26e520f4399eae1fd1c60d6c933d97e +SIZE (KDE/release-service/23.08.1/kdiamond-23.08.1.tar.xz) = 4708908 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index cb85ca08dd91..ab6f92a3ad53 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203511 -SHA256 (KDE/release-service/23.08.0/kfourinline-23.08.0.tar.xz) = 10566dc67bb423d6041f934739518ffaf9f0f6b180774f04a533aba8b21fbd9f -SIZE (KDE/release-service/23.08.0/kfourinline-23.08.0.tar.xz) = 739188 +TIMESTAMP = 1694551217 +SHA256 (KDE/release-service/23.08.1/kfourinline-23.08.1.tar.xz) = 2d0b6fd42404832228dfe111bf755b09ccbb8f7a6d9c4cbf91828c362ff8439d +SIZE (KDE/release-service/23.08.1/kfourinline-23.08.1.tar.xz) = 739144 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index fd728fa06259..f0410a592397 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203515 -SHA256 (KDE/release-service/23.08.0/kgoldrunner-23.08.0.tar.xz) = cd93fa9c283236d5c6e49abca5524cc1af6bcdf6a6830030d5b1c7f02c80c5ea -SIZE (KDE/release-service/23.08.0/kgoldrunner-23.08.0.tar.xz) = 4905292 +TIMESTAMP = 1694551219 +SHA256 (KDE/release-service/23.08.1/kgoldrunner-23.08.1.tar.xz) = 056a88ff2016a6da86da5e07066a2219ab95054ee115ac409db5ca1433c660ff +SIZE (KDE/release-service/23.08.1/kgoldrunner-23.08.1.tar.xz) = 4905364 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 9e34af27f846..46e724365bac 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203468 -SHA256 (KDE/release-service/23.08.0/khangman-23.08.0.tar.xz) = 54b79842b9a5ccacdf918dedef909a0c9f43823d37d57ebba21dfc6082ab5af6 -SIZE (KDE/release-service/23.08.0/khangman-23.08.0.tar.xz) = 7440664 +TIMESTAMP = 1694551245 +SHA256 (KDE/release-service/23.08.1/khangman-23.08.1.tar.xz) = 7837de608444a9ebd102bcf39e902dd23235e283ed0038c7c80da12fc428d28b +SIZE (KDE/release-service/23.08.1/khangman-23.08.1.tar.xz) = 7446712 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index d14819d99f8c..a6ba86d7cfdf 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203477 -SHA256 (KDE/release-service/23.08.0/kigo-23.08.0.tar.xz) = 1cfcf1edd0be025e52bea64f199e1d4e6e61873712b4fc57d84a0cea696090ce -SIZE (KDE/release-service/23.08.0/kigo-23.08.0.tar.xz) = 5266032 +TIMESTAMP = 1694551199 +SHA256 (KDE/release-service/23.08.1/kigo-23.08.1.tar.xz) = bc45bde70f5acfbe881ad854f5f06689cb78b2e626944486e28250362b7f206a +SIZE (KDE/release-service/23.08.1/kigo-23.08.1.tar.xz) = 5265988 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 3506bdf93414..e5a8e0b6339f 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203480 -SHA256 (KDE/release-service/23.08.0/killbots-23.08.0.tar.xz) = dfb01a5a16520c186103f3b8a4ece0a795c5c230ab18ca7b5a213ffbc3ca1946 -SIZE (KDE/release-service/23.08.0/killbots-23.08.0.tar.xz) = 1202996 +TIMESTAMP = 1694551234 +SHA256 (KDE/release-service/23.08.1/killbots-23.08.1.tar.xz) = 5eda7d7b748296b243a906ddaea5f534ba3c26eef3143e9fbb5d6b40990c74d9 +SIZE (KDE/release-service/23.08.1/killbots-23.08.1.tar.xz) = 1203028 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 1aa468abe7d7..1762563fb9de 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203490 -SHA256 (KDE/release-service/23.08.0/kiriki-23.08.0.tar.xz) = fa4b03d2c81daa9c215f1e1fba3133d20368b627809bf5ecabbb76a487e1160c -SIZE (KDE/release-service/23.08.0/kiriki-23.08.0.tar.xz) = 370388 +TIMESTAMP = 1694551182 +SHA256 (KDE/release-service/23.08.1/kiriki-23.08.1.tar.xz) = 6a2a49d072f378f255ca184beaa0bf07bb7dbb30b4664855aef2d6abe3f2823f +SIZE (KDE/release-service/23.08.1/kiriki-23.08.1.tar.xz) = 370408 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 6ac1e27cc418..3dd39449e5e2 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203449 -SHA256 (KDE/release-service/23.08.0/kjumpingcube-23.08.0.tar.xz) = 29a196d0d92ba618e2574e7590c1d4f38a1f5ca60a61ea00608ea45807cf3f3f -SIZE (KDE/release-service/23.08.0/kjumpingcube-23.08.0.tar.xz) = 336976 +TIMESTAMP = 1694551194 +SHA256 (KDE/release-service/23.08.1/kjumpingcube-23.08.1.tar.xz) = cc1074faf0e30f3776940cb665a9c7a6145b47104487408ba551da61f96c6f5d +SIZE (KDE/release-service/23.08.1/kjumpingcube-23.08.1.tar.xz) = 336988 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index bc80a4b3867d..cc4e54c4a0fb 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203500 -SHA256 (KDE/release-service/23.08.0/klickety-23.08.0.tar.xz) = ff231cca66f367094327e08938a7d4ae30551006a77aa0180c1828223f701785 -SIZE (KDE/release-service/23.08.0/klickety-23.08.0.tar.xz) = 1500664 +TIMESTAMP = 1694551227 +SHA256 (KDE/release-service/23.08.1/klickety-23.08.1.tar.xz) = df0790b944e742c254d27b202e2fb02db10b21268c903e00aafcc385894dfea3 +SIZE (KDE/release-service/23.08.1/klickety-23.08.1.tar.xz) = 1500812 diff --git a/games/klines/distinfo b/games/klines/distinfo index 3936830ca2de..4aaf19caaab5 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203455 -SHA256 (KDE/release-service/23.08.0/klines-23.08.0.tar.xz) = b8e13d1319e27151331432a790b3b3e98b61f77ded8629e3e12803f14ecc812a -SIZE (KDE/release-service/23.08.0/klines-23.08.0.tar.xz) = 1738720 +TIMESTAMP = 1694551213 +SHA256 (KDE/release-service/23.08.1/klines-23.08.1.tar.xz) = 600d95304e0298bb6bb3c6283aa6afc7865f7324ba2c27760cf22a8d2c62f3d2 +SIZE (KDE/release-service/23.08.1/klines-23.08.1.tar.xz) = 1738640 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 5e42b7a5c354..9bb3db66e225 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203473 -SHA256 (KDE/release-service/23.08.0/kmahjongg-23.08.0.tar.xz) = f94ec032d247384f4183f72156863dfd7b323352719ff7412beb6d1e59af40c4 -SIZE (KDE/release-service/23.08.0/kmahjongg-23.08.0.tar.xz) = 4096172 +TIMESTAMP = 1694551193 +SHA256 (KDE/release-service/23.08.1/kmahjongg-23.08.1.tar.xz) = 10c5030a4161ffd0db663a9e0e308e0d8202079afa5ac8d07e63d570554d46e3 +SIZE (KDE/release-service/23.08.1/kmahjongg-23.08.1.tar.xz) = 4096328 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index ef9ac6c95148..e7216a9cc067 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203460 -SHA256 (KDE/release-service/23.08.0/kmines-23.08.0.tar.xz) = f33b68ddba89e77eea361d40d4eaa648479c1b1b438ee5e1116d744b3be89983 -SIZE (KDE/release-service/23.08.0/kmines-23.08.0.tar.xz) = 1009348 +TIMESTAMP = 1694551244 +SHA256 (KDE/release-service/23.08.1/kmines-23.08.1.tar.xz) = 28f1acd485abf8759cfbf53df7cf4017abf53e56465c718f26103ec9af727ef5 +SIZE (KDE/release-service/23.08.1/kmines-23.08.1.tar.xz) = 1009420 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 509bdec385d3..357cf0225e35 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203502 -SHA256 (KDE/release-service/23.08.0/knavalbattle-23.08.0.tar.xz) = 193f5cb1f1ce1cb01686aa572ca6d08f7da19c7b711ff5290dfff5ca16b9df6d -SIZE (KDE/release-service/23.08.0/knavalbattle-23.08.0.tar.xz) = 1400708 +TIMESTAMP = 1694551247 +SHA256 (KDE/release-service/23.08.1/knavalbattle-23.08.1.tar.xz) = 4c07665c2342d49811924cb3fc8a979695e95145315503976d90919c865cc257 +SIZE (KDE/release-service/23.08.1/knavalbattle-23.08.1.tar.xz) = 1400724 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 597ff7896281..ff6ffc2d1f94 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203469 -SHA256 (KDE/release-service/23.08.0/knetwalk-23.08.0.tar.xz) = f47aee2077062bb402e579dccc7151488d25844731c02cf027ce5b48b0210772 -SIZE (KDE/release-service/23.08.0/knetwalk-23.08.0.tar.xz) = 1105012 +TIMESTAMP = 1694551248 +SHA256 (KDE/release-service/23.08.1/knetwalk-23.08.1.tar.xz) = 9c9244fc4354b8cdf989a6937714402a4f3a8289ca2252780bbba9140fbc7848 +SIZE (KDE/release-service/23.08.1/knetwalk-23.08.1.tar.xz) = 1105180 diff --git a/games/knights/distinfo b/games/knights/distinfo index f043abdb64b9..a207dd78db3c 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203499 -SHA256 (KDE/release-service/23.08.0/knights-23.08.0.tar.xz) = a64610b28b2b2f87f0f9b02aba6fe3d3be62de6f81139a1ff126e6d8b6d654e2 -SIZE (KDE/release-service/23.08.0/knights-23.08.0.tar.xz) = 3329664 +TIMESTAMP = 1694551210 +SHA256 (KDE/release-service/23.08.1/knights-23.08.1.tar.xz) = 90bae88eec9cc8f86033799b0e81f117ed10d5db5e52f5da3c7dd8ec4ce472ec +SIZE (KDE/release-service/23.08.1/knights-23.08.1.tar.xz) = 3329776 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 8335aa0435fb..43d9787ee721 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203491 -SHA256 (KDE/release-service/23.08.0/kolf-23.08.0.tar.xz) = 8987c71c02e8d9c843e03922c7a1cc1b4608cad221cf35cedeac34faa8d9dfcc -SIZE (KDE/release-service/23.08.0/kolf-23.08.0.tar.xz) = 1069708 +TIMESTAMP = 1694551188 +SHA256 (KDE/release-service/23.08.1/kolf-23.08.1.tar.xz) = b7d3da7f1cd129d552315e3ccbba9734868aeeb97eace31d8f39f41c1a2572e1 +SIZE (KDE/release-service/23.08.1/kolf-23.08.1.tar.xz) = 1071052 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 5df5e53e004d..736603e8aa00 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203456 -SHA256 (KDE/release-service/23.08.0/kollision-23.08.0.tar.xz) = 2b25b9c31123edf2ef04ed3c1c3d4b83a80429697183bd601e90233201f40e49 -SIZE (KDE/release-service/23.08.0/kollision-23.08.0.tar.xz) = 307364 +TIMESTAMP = 1694551232 +SHA256 (KDE/release-service/23.08.1/kollision-23.08.1.tar.xz) = 4e56ed8a5dc4bff46b1de1e2453ed7b2ceb9f15fbc5a5f9c1fea00b69d2d61da +SIZE (KDE/release-service/23.08.1/kollision-23.08.1.tar.xz) = 307396 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 5a041070f6fe..5444afd4f285 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203506 -SHA256 (KDE/release-service/23.08.0/konquest-23.08.0.tar.xz) = 975abedd1f031f777b2221d116414a76d06251d97ae8503d0cce14fb9ad71324 -SIZE (KDE/release-service/23.08.0/konquest-23.08.0.tar.xz) = 875372 +TIMESTAMP = 1694551221 +SHA256 (KDE/release-service/23.08.1/konquest-23.08.1.tar.xz) = bb160a75949c6e431b946689222d6f961476b07024acff8bf32f0a567142c81a +SIZE (KDE/release-service/23.08.1/konquest-23.08.1.tar.xz) = 875360 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 71faa8a40acb..d6ac4ea73bc1 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203493 -SHA256 (KDE/release-service/23.08.0/kpat-23.08.0.tar.xz) = 97f1637d2b1e46c1b14f998006b0a2cf2dc33d264d4250297e06d2f9dbf3f4e0 -SIZE (KDE/release-service/23.08.0/kpat-23.08.0.tar.xz) = 3751932 +TIMESTAMP = 1694551196 +SHA256 (KDE/release-service/23.08.1/kpat-23.08.1.tar.xz) = b0c267c3b5744d882efc8089ca98bf74a9558e0834bbfe7e2a06855086120cf2 +SIZE (KDE/release-service/23.08.1/kpat-23.08.1.tar.xz) = 3752124 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index c5347ba21026..7fbfb7d78310 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203495 -SHA256 (KDE/release-service/23.08.0/kreversi-23.08.0.tar.xz) = da9c02a001707c99772f8722ca687ccf66e04a6d52a2286e677a6e77223991ac -SIZE (KDE/release-service/23.08.0/kreversi-23.08.0.tar.xz) = 1077308 +TIMESTAMP = 1694551228 +SHA256 (KDE/release-service/23.08.1/kreversi-23.08.1.tar.xz) = e3c6d2f5a41600d3ea606922e848f4cb9a754d173b93e25f1b235039af39b3d2 +SIZE (KDE/release-service/23.08.1/kreversi-23.08.1.tar.xz) = 1077412 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 95b012e634bc..8eac8ed2de61 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203510 -SHA256 (KDE/release-service/23.08.0/kshisen-23.08.0.tar.xz) = b67072105559ece54a388d455a1cd12f50e0a2cdec64378abbd5e88fc7248cdc -SIZE (KDE/release-service/23.08.0/kshisen-23.08.0.tar.xz) = 1007828 +TIMESTAMP = 1694551202 +SHA256 (KDE/release-service/23.08.1/kshisen-23.08.1.tar.xz) = 254e748486e5506ef7ecbb459b0a88515817eec32c4e5d50b4021e6447e353e7 +SIZE (KDE/release-service/23.08.1/kshisen-23.08.1.tar.xz) = 1007856 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index cc99cb93fc50..c47b9ecbce4e 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203466 -SHA256 (KDE/release-service/23.08.0/ksirk-23.08.0.tar.xz) = d1a1074836c851568ccf451da16af48e5fad46e66e35daf71e6829a6d7922b77 -SIZE (KDE/release-service/23.08.0/ksirk-23.08.0.tar.xz) = 7047952 +TIMESTAMP = 1694551222 +SHA256 (KDE/release-service/23.08.1/ksirk-23.08.1.tar.xz) = 2d5eb6bb2e7f960bd70405114d0b7b959119390b92c015204ac4540edb620c45 +SIZE (KDE/release-service/23.08.1/ksirk-23.08.1.tar.xz) = 7047988 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 10fb5bb99ad4..734d653f5bb0 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203448 -SHA256 (KDE/release-service/23.08.0/ksnakeduel-23.08.0.tar.xz) = 1231483d5d4b7185ec15ecd9af8e0491c4d973d96789042bfd642e4ff0a517e2 -SIZE (KDE/release-service/23.08.0/ksnakeduel-23.08.0.tar.xz) = 602224 +TIMESTAMP = 1694551207 +SHA256 (KDE/release-service/23.08.1/ksnakeduel-23.08.1.tar.xz) = 9e0fc65b41d5d70610027e5aa0f0d051acc746c07ecb2b697b758d2940413bc1 +SIZE (KDE/release-service/23.08.1/ksnakeduel-23.08.1.tar.xz) = 602136 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index e6a4d0dfc81f..8794c1e53663 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203463 -SHA256 (KDE/release-service/23.08.0/kspaceduel-23.08.0.tar.xz) = dc77fb65a37fd887494b49fd2f709c8d49193371ad1277e6e39beaf53bd2d105 -SIZE (KDE/release-service/23.08.0/kspaceduel-23.08.0.tar.xz) = 660348 +TIMESTAMP = 1694551181 +SHA256 (KDE/release-service/23.08.1/kspaceduel-23.08.1.tar.xz) = f93fb5c85389540ee5b457aaa0ac9e638b9426b22c4d75e1f1dc174506daf77d +SIZE (KDE/release-service/23.08.1/kspaceduel-23.08.1.tar.xz) = 660372 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 28bc438cdcbe..ba3824840ab2 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203464 -SHA256 (KDE/release-service/23.08.0/ksquares-23.08.0.tar.xz) = 2054a60ed6fec6932da9ebe21b3fc1dc368536f4d55ac2c5c221e9b73f1acffa -SIZE (KDE/release-service/23.08.0/ksquares-23.08.0.tar.xz) = 312648 +TIMESTAMP = 1694551187 +SHA256 (KDE/release-service/23.08.1/ksquares-23.08.1.tar.xz) = 2b210117a2b70dfe70d225d038ff93d32ec095d5810a0f9b61f393e9b21f8a37 +SIZE (KDE/release-service/23.08.1/ksquares-23.08.1.tar.xz) = 312692 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index fc970a7fe3ee..276935cc9c02 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203503 -SHA256 (KDE/release-service/23.08.0/ksudoku-23.08.0.tar.xz) = 35f19136a43a54a3a6669b11cd700751a0c3623933bad42513063cbfb9cce233 -SIZE (KDE/release-service/23.08.0/ksudoku-23.08.0.tar.xz) = 1702216 +TIMESTAMP = 1694551208 +SHA256 (KDE/release-service/23.08.1/ksudoku-23.08.1.tar.xz) = 0b84416b71558ba8e09eb1ecce9d09564f8644e658ecd12ff322cd425b0fb7d3 +SIZE (KDE/release-service/23.08.1/ksudoku-23.08.1.tar.xz) = 1701872 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 9fe26addba91..140af6b7dc74 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203487 -SHA256 (KDE/release-service/23.08.0/ktuberling-23.08.0.tar.xz) = c7ff8f0eacc0487c3991ba615852acdfca37a6c76b620dedede052b52f2387f1 -SIZE (KDE/release-service/23.08.0/ktuberling-23.08.0.tar.xz) = 71401960 +TIMESTAMP = 1694551241 +SHA256 (KDE/release-service/23.08.1/ktuberling-23.08.1.tar.xz) = ba32176dc8da61b523190a48b189633af9b241a388841e395524e64b1c1306ad +SIZE (KDE/release-service/23.08.1/ktuberling-23.08.1.tar.xz) = 71416148 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 0dc1079c2a66..e9062e5eccec 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203452 -SHA256 (KDE/release-service/23.08.0/kubrick-23.08.0.tar.xz) = 1b5f0a7b5a637140e93e9981deac53938c5e5bf08ec211320255c65b073d1078 -SIZE (KDE/release-service/23.08.0/kubrick-23.08.0.tar.xz) = 348740 +TIMESTAMP = 1694551226 +SHA256 (KDE/release-service/23.08.1/kubrick-23.08.1.tar.xz) = 309e3c0c428188170a6c84b2d0d911e7ba1c6fbd182a4b1277bc09ab4bd8257a +SIZE (KDE/release-service/23.08.1/kubrick-23.08.1.tar.xz) = 348748 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 5f06133108a9..4b840098f66c 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203513 -SHA256 (KDE/release-service/23.08.0/libkdegames-23.08.0.tar.xz) = 8799c705256b8d8735070058ecc6dea72c54e2500f179d9654ec2a86e41bcb8a -SIZE (KDE/release-service/23.08.0/libkdegames-23.08.0.tar.xz) = 5987644 +TIMESTAMP = 1694551218 +SHA256 (KDE/release-service/23.08.1/libkdegames-23.08.1.tar.xz) = 0ea260a762bf9dcc27f793fea1628c7653383ab5b5e41e50cf2ae4a62aa7db97 +SIZE (KDE/release-service/23.08.1/libkdegames-23.08.1.tar.xz) = 5984948 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 3e122b015e65..e944eca92ca2 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203479 -SHA256 (KDE/release-service/23.08.0/libkmahjongg-23.08.0.tar.xz) = 08c18da4df11b48df69294eb50327543574f518b4b06be3e05ab365cfae3b8e4 -SIZE (KDE/release-service/23.08.0/libkmahjongg-23.08.0.tar.xz) = 1688240 +TIMESTAMP = 1694551223 +SHA256 (KDE/release-service/23.08.1/libkmahjongg-23.08.1.tar.xz) = 3c72e5b3e6f3bc7d5933d14a51c24577080935509ff924717193a072cdf1a9e5 +SIZE (KDE/release-service/23.08.1/libkmahjongg-23.08.1.tar.xz) = 1687552 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index f5f62c67e40c..39fcad833f62 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203474 -SHA256 (KDE/release-service/23.08.0/lskat-23.08.0.tar.xz) = 856e61d1e50a1d00076eea29b622483e590eb422fc15cd7ae03b31f629f85d87 -SIZE (KDE/release-service/23.08.0/lskat-23.08.0.tar.xz) = 1249224 +TIMESTAMP = 1694551215 +SHA256 (KDE/release-service/23.08.1/lskat-23.08.1.tar.xz) = 2c0af51c3f2fd5dbc5838ea600ee7edf6be0c20f5d8a429ffae4cecd6e2fd993 +SIZE (KDE/release-service/23.08.1/lskat-23.08.1.tar.xz) = 1248956 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index c3a06a30255a..d55a313483d5 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203453 -SHA256 (KDE/release-service/23.08.0/palapeli-23.08.0.tar.xz) = 340ca8d5730743ece11fa18f98722bb64206a90c7d3f7a445bc7ff2d24eb9da5 -SIZE (KDE/release-service/23.08.0/palapeli-23.08.0.tar.xz) = 2112488 +TIMESTAMP = 1694551205 +SHA256 (KDE/release-service/23.08.1/palapeli-23.08.1.tar.xz) = 77fbbacc552908fb88ffc216529399ed4f008fb718eb5557c6158088cde5197a +SIZE (KDE/release-service/23.08.1/palapeli-23.08.1.tar.xz) = 2112508 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index e7636d06c371..091de38bded4 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203508 -SHA256 (KDE/release-service/23.08.0/picmi-23.08.0.tar.xz) = 3eade1d234f2964ff1b9161707dd3d1cd474dce0d9ea43d38f9afb12ffd9d9fc -SIZE (KDE/release-service/23.08.0/picmi-23.08.0.tar.xz) = 1540376 +TIMESTAMP = 1694551249 +SHA256 (KDE/release-service/23.08.1/picmi-23.08.1.tar.xz) = 5ae77c8f7181f63c799d334ca6a899dafb9b5581ea689e0f60606c8f21685ad0 +SIZE (KDE/release-service/23.08.1/picmi-23.08.1.tar.xz) = 1540372 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index e782e084b504..adcd7072ac28 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203546 -SHA256 (KDE/release-service/23.08.0/gwenview-23.08.0.tar.xz) = 027fde3f87cd8aba6ba4214031afbf7797dc23b5831293ed6a85cc1df2188aa7 -SIZE (KDE/release-service/23.08.0/gwenview-23.08.0.tar.xz) = 6900940 +TIMESTAMP = 1694551259 +SHA256 (KDE/release-service/23.08.1/gwenview-23.08.1.tar.xz) = 977f0b9354ffdf198934bb46d117942413262f17a3ce0411fbfd187021dcb276 +SIZE (KDE/release-service/23.08.1/gwenview-23.08.1.tar.xz) = 6901908 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index b620c35f75ae..37fac618b9e7 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203524 -SHA256 (KDE/release-service/23.08.0/kamera-23.08.0.tar.xz) = 38abc2952e578c3eaee0c0a81fc19f4de35b2fe2a7fb14b7620aa1202b6499c4 -SIZE (KDE/release-service/23.08.0/kamera-23.08.0.tar.xz) = 130276 +TIMESTAMP = 1694551274 +SHA256 (KDE/release-service/23.08.1/kamera-23.08.1.tar.xz) = f850288b926cba59b228268bc54a49a0a613bc59d7a2f87c668f269da649a333 +SIZE (KDE/release-service/23.08.1/kamera-23.08.1.tar.xz) = 130264 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 04ecd94cd2de..f4cc7ac4c656 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203533 -SHA256 (KDE/release-service/23.08.0/kcolorchooser-23.08.0.tar.xz) = d781bec84bed93e687d604287de351484392c049a83c55970c153dde51f37d97 -SIZE (KDE/release-service/23.08.0/kcolorchooser-23.08.0.tar.xz) = 33712 +TIMESTAMP = 1694551269 +SHA256 (KDE/release-service/23.08.1/kcolorchooser-23.08.1.tar.xz) = b99ab77c936e334b6a06542f05986518cfa5c1e261373b9916061170345ab4f7 +SIZE (KDE/release-service/23.08.1/kcolorchooser-23.08.1.tar.xz) = 33684 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 96a5acfa5430..55750eebe742 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203530 -SHA256 (KDE/release-service/23.08.0/kdegraphics-mobipocket-23.08.0.tar.xz) = 15adc68f91b7eb873ccc3db09a1ae8e1a2c5d498455162b2c52cca97be7979fb -SIZE (KDE/release-service/23.08.0/kdegraphics-mobipocket-23.08.0.tar.xz) = 13000 +TIMESTAMP = 1694551276 +SHA256 (KDE/release-service/23.08.1/kdegraphics-mobipocket-23.08.1.tar.xz) = e4c357da8738358e65e194833eeee3cee1abc361d7dabdf60e64f7e23fe4b638 +SIZE (KDE/release-service/23.08.1/kdegraphics-mobipocket-23.08.1.tar.xz) = 13004 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 78da991f4208..aa19ae9c2a49 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203539 -SHA256 (KDE/release-service/23.08.0/svgpart-23.08.0.tar.xz) = 556a3b115a9339a3bbde582145afd92f4b220f68c24032eb323f3711e1d15e52 -SIZE (KDE/release-service/23.08.0/svgpart-23.08.0.tar.xz) = 28704 +TIMESTAMP = 1694551266 +SHA256 (KDE/release-service/23.08.1/svgpart-23.08.1.tar.xz) = dc9dde3e8471c432c51359c7b08ff005d109f905a75021c43ddbd425c6e050b7 +SIZE (KDE/release-service/23.08.1/svgpart-23.08.1.tar.xz) = 28716 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 4b63a72aa119..4d8b8e392472 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203520 -SHA256 (KDE/release-service/23.08.0/kdegraphics-thumbnailers-23.08.0.tar.xz) = a0882999353e283bd8ebada4b04bcd919997e906c12a1110d64d1b29e0345433 -SIZE (KDE/release-service/23.08.0/kdegraphics-thumbnailers-23.08.0.tar.xz) = 49412 +TIMESTAMP = 1694551264 +SHA256 (KDE/release-service/23.08.1/kdegraphics-thumbnailers-23.08.1.tar.xz) = f97068053ef2201d1d9606cb7090581697859c996cf25c6975984fef3a114a09 +SIZE (KDE/release-service/23.08.1/kdegraphics-thumbnailers-23.08.1.tar.xz) = 49412 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 8b8445df1a24..07d286778c7e 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203532 -SHA256 (KDE/release-service/23.08.0/kimagemapeditor-23.08.0.tar.xz) = 98a15260b415067e11d0940184b230ba60b19cf38d2cd6d754d1c2c7d8ba47d2 -SIZE (KDE/release-service/23.08.0/kimagemapeditor-23.08.0.tar.xz) = 1104368 +TIMESTAMP = 1694551267 +SHA256 (KDE/release-service/23.08.1/kimagemapeditor-23.08.1.tar.xz) = 81bcf244982fa62d4692fbc964c4c7171acdeec93ba721cfa635ac6b37f852f4 +SIZE (KDE/release-service/23.08.1/kimagemapeditor-23.08.1.tar.xz) = 1104460 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index b98dfec72c68..8258c9a21694 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203528 -SHA256 (KDE/release-service/23.08.0/kipi-plugins-23.08.0.tar.xz) = 174475355efb437fc79e7c393ae58eed4cf9fa76abeac5138ce5a14658a93a6d -SIZE (KDE/release-service/23.08.0/kipi-plugins-23.08.0.tar.xz) = 1563992 +TIMESTAMP = 1694551262 +SHA256 (KDE/release-service/23.08.1/kipi-plugins-23.08.1.tar.xz) = 226a3f8be82cc4ba7db16013498fd14f9602cf4419dbc33131eca856ba24f459 +SIZE (KDE/release-service/23.08.1/kipi-plugins-23.08.1.tar.xz) = 1563840 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 2fcd30cd6e6a..e0d28596a3ad 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203535 -SHA256 (KDE/release-service/23.08.0/kolourpaint-23.08.0.tar.xz) = 1bc953c210e4be7bb3477169f55cd3e897d3b19ae5a8b277400dde6a87a9a3b4 -SIZE (KDE/release-service/23.08.0/kolourpaint-23.08.0.tar.xz) = 5785332 +TIMESTAMP = 1694551277 +SHA256 (KDE/release-service/23.08.1/kolourpaint-23.08.1.tar.xz) = 88b8f27e55a74cd4f53851e4739b9c4fcd14b84794de096eefcd17d0e0b2cd20 +SIZE (KDE/release-service/23.08.1/kolourpaint-23.08.1.tar.xz) = 5785676 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 3671490ea78e..6967ccd1fbf6 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203540 -SHA256 (KDE/release-service/23.08.0/kontrast-23.08.0.tar.xz) = aa4b3beac42660e94d4fe59da3f6f88d1b2fd585590246017b578cb1d0141705 -SIZE (KDE/release-service/23.08.0/kontrast-23.08.0.tar.xz) = 209816 +TIMESTAMP = 1694551255 +SHA256 (KDE/release-service/23.08.1/kontrast-23.08.1.tar.xz) = 31d94facb068e48dc8c9361e3d011fbd04b7de7e40cd33136d5c3621c74d52ec +SIZE (KDE/release-service/23.08.1/kontrast-23.08.1.tar.xz) = 209688 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 1056bf82a6f0..c486edd27154 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203543 -SHA256 (KDE/release-service/23.08.0/kqtquickcharts-23.08.0.tar.xz) = d451bae3ab93b1ec8f552069fb7ecd0cebe982e9d818efb10d3c1ff65e173275 -SIZE (KDE/release-service/23.08.0/kqtquickcharts-23.08.0.tar.xz) = 30868 +TIMESTAMP = 1694551254 +SHA256 (KDE/release-service/23.08.1/kqtquickcharts-23.08.1.tar.xz) = c9f2448dd465393ffb374dc3abff150d42e8f6b7b00aa18367c7f29d5802877d +SIZE (KDE/release-service/23.08.1/kqtquickcharts-23.08.1.tar.xz) = 30876 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 0c68473b13dd..c553340047b4 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203529 -SHA256 (KDE/release-service/23.08.0/ksanecore-23.08.0.tar.xz) = 56bf27ca19b89eb73ed8c648e2ce1db1f822562009729946a589640f1231bdda -SIZE (KDE/release-service/23.08.0/ksanecore-23.08.0.tar.xz) = 49296 +TIMESTAMP = 1694551273 +SHA256 (KDE/release-service/23.08.1/ksanecore-23.08.1.tar.xz) = 644d3e14ea0da79ca8697af8b7ba85ebbda6516f40ab837b4e42f93059e4b7db +SIZE (KDE/release-service/23.08.1/ksanecore-23.08.1.tar.xz) = 49300 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index dd9db8997ba3..2397f0efd41f 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203542 -SHA256 (KDE/release-service/23.08.0/libkdcraw-23.08.0.tar.xz) = a3cbb6df25a28003cddb47496c0831c7af2940dc4761a118db1b6c407100d847 -SIZE (KDE/release-service/23.08.0/libkdcraw-23.08.0.tar.xz) = 37524 +TIMESTAMP = 1694551261 +SHA256 (KDE/release-service/23.08.1/libkdcraw-23.08.1.tar.xz) = d9450b1d8858455770495253cc67e9d26e66bd08024e393a911eb96c5de66267 +SIZE (KDE/release-service/23.08.1/libkdcraw-23.08.1.tar.xz) = 37512 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 8933a19bd9de..f63244c6e649 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203523 -SHA256 (KDE/release-service/23.08.0/libkexiv2-23.08.0.tar.xz) = 5e476b9b3dd6dfed5b93194cea838359f20dc3ff1517cfa43ba602fbdd3f6b66 -SIZE (KDE/release-service/23.08.0/libkexiv2-23.08.0.tar.xz) = 60680 +TIMESTAMP = 1694551280 +SHA256 (KDE/release-service/23.08.1/libkexiv2-23.08.1.tar.xz) = 123a3298897116605c436b4abe885cdfac77f375639d4881f8048ec0c636b736 +SIZE (KDE/release-service/23.08.1/libkexiv2-23.08.1.tar.xz) = 60684 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 45699ba20873..a3f0d229afa0 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203522 -SHA256 (KDE/release-service/23.08.0/libkipi-23.08.0.tar.xz) = 928ae3fe323231cbb78666fb9def552b8b8d77917f4adaa1f019401d3974e02f -SIZE (KDE/release-service/23.08.0/libkipi-23.08.0.tar.xz) = 88608 +TIMESTAMP = 1694551278 +SHA256 (KDE/release-service/23.08.1/libkipi-23.08.1.tar.xz) = 91587bfe4fa3620989c116b77609fe1d60bc403fb2e1f2f0934cfe223c8a8d74 +SIZE (KDE/release-service/23.08.1/libkipi-23.08.1.tar.xz) = 88584 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 5e755b5a9786..122fa1fc9463 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203527 -SHA256 (KDE/release-service/23.08.0/libksane-23.08.0.tar.xz) = 3155c8ce0f167734e130440be3f29c8c24409854b18b10e1e41c631fc9626ae0 -SIZE (KDE/release-service/23.08.0/libksane-23.08.0.tar.xz) = 154732 +TIMESTAMP = 1694551270 +SHA256 (KDE/release-service/23.08.1/libksane-23.08.1.tar.xz) = eabdcac6f2231fba63e13e59e2be7e5b7b0e5973c42e1c36220472a593bb8e36 +SIZE (KDE/release-service/23.08.1/libksane-23.08.1.tar.xz) = 154748 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 58f4d2c5d149..b7d86e79b628 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203537 -SHA256 (KDE/release-service/23.08.0/okular-23.08.0.tar.xz) = 9b46c544f975085298ee7978d552d3078c903a12611a6dbd038fc2b525996838 -SIZE (KDE/release-service/23.08.0/okular-23.08.0.tar.xz) = 8513356 +TIMESTAMP = 1694551251 +SHA256 (KDE/release-service/23.08.1/okular-23.08.1.tar.xz) = 43b3732d701692324967e767ecf69f6b4d957765b5aba24a4dfa6efc8a494817 +SIZE (KDE/release-service/23.08.1/okular-23.08.1.tar.xz) = 8513160 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index b5fed2f63866..13cc7577b915 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203547 -SHA256 (KDE/release-service/23.08.0/skanlite-23.08.0.tar.xz) = 4634bac9efaab27449bbd966c64ce5391152503b3e48fdd051bafb59d446d488 -SIZE (KDE/release-service/23.08.0/skanlite-23.08.0.tar.xz) = 2449840 +TIMESTAMP = 1694551257 +SHA256 (KDE/release-service/23.08.1/skanlite-23.08.1.tar.xz) = b3885d178e2c5ed1fdf3ea2f4e0f5f6e2233d526784a60dab0007e0ea2da2c73 +SIZE (KDE/release-service/23.08.1/skanlite-23.08.1.tar.xz) = 2449860 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 982fa38ff880..bb4ad959464f 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203549 -SHA256 (KDE/release-service/23.08.0/skanpage-23.08.0.tar.xz) = 01ae2e721384150b67c0c042189de1781d06aa4bb86bbd309d519feb41b8f2f1 -SIZE (KDE/release-service/23.08.0/skanpage-23.08.0.tar.xz) = 1312184 +TIMESTAMP = 1694551252 +SHA256 (KDE/release-service/23.08.1/skanpage-23.08.1.tar.xz) = 6a764075ad7ab10492fc0abdc97e7516dba799e06e63dfafacdbdd1b3751512a +SIZE (KDE/release-service/23.08.1/skanpage-23.08.1.tar.xz) = 1312500 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 2c2543a47f25..ff3a7c1ba52d 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203525 -SHA256 (KDE/release-service/23.08.0/spectacle-23.08.0.tar.xz) = 383b1e7a38d7f70cce66452a6e47678718a3201e0e0a104323aeb8c97de2c1ee -SIZE (KDE/release-service/23.08.0/spectacle-23.08.0.tar.xz) = 1351400 +TIMESTAMP = 1694551272 +SHA256 (KDE/release-service/23.08.1/spectacle-23.08.1.tar.xz) = 5160e28c60e168c0dd43acaf1dc4580a13d1055b9d9a492d1b3606ac25f4f70f +SIZE (KDE/release-service/23.08.1/spectacle-23.08.1.tar.xz) = 1351376 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index f7e53a7cf343..ee52a747e39a 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203344 -SHA256 (KDE/release-service/23.08.0/konversation-23.08.0.tar.xz) = 1d1897c9ee9997da524f41813d1174b59d87bbb5efbae24a1c65227aaf4b54fe -SIZE (KDE/release-service/23.08.0/konversation-23.08.0.tar.xz) = 4477176 +TIMESTAMP = 1694551308 +SHA256 (KDE/release-service/23.08.1/konversation-23.08.1.tar.xz) = 30db5eb68721e98bbe8d106a0540737bdfa0f36337c3548d99d3aa23e97f1d5a +SIZE (KDE/release-service/23.08.1/konversation-23.08.1.tar.xz) = 4477200 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index da22e46bc48f..fa23746e6e72 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203445 -SHA256 (KDE/release-service/23.08.0/kiten-23.08.0.tar.xz) = 2ac340aa6f5db6d367afbfaefc0d159768bed36a9016892f17c2f0c8164c1dba -SIZE (KDE/release-service/23.08.0/kiten-23.08.0.tar.xz) = 11333840 +TIMESTAMP = 1694551284 +SHA256 (KDE/release-service/23.08.1/kiten-23.08.1.tar.xz) = 3eb1a8bc4ee6af1ca7addd16bfc53c293c3a7fe6b65c1e8d7fb8cd1b5c610c58 +SIZE (KDE/release-service/23.08.1/kiten-23.08.1.tar.xz) = 11334264 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index cf9c8c9377d5..8e1ec5d32f80 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203373 -SHA256 (KDE/release-service/23.08.0/kross-interpreters-23.08.0.tar.xz) = f0a0d4df0a0504a29b8a3c6d83edf5c2a547e8df5092e7740a13ed42a941b425 -SIZE (KDE/release-service/23.08.0/kross-interpreters-23.08.0.tar.xz) = 151764 +TIMESTAMP = 1694551281 +SHA256 (KDE/release-service/23.08.1/kross-interpreters-23.08.1.tar.xz) = 754675c9679720b7815e009fcc358227f0d1aeb979d36a2fe2232b1ea55a7dda +SIZE (KDE/release-service/23.08.1/kross-interpreters-23.08.1.tar.xz) = 151756 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 79a1a4069831..b1f1f2fd9754 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203372 -SHA256 (KDE/release-service/23.08.0/kturtle-23.08.0.tar.xz) = 9b56a1e8688174325b52aea5915a36c49f48fca0aa867deb3fdb767e95719318 -SIZE (KDE/release-service/23.08.0/kturtle-23.08.0.tar.xz) = 2243288 +TIMESTAMP = 1694551282 +SHA256 (KDE/release-service/23.08.1/kturtle-23.08.1.tar.xz) = a48cdff31d802fb07087fa759278b12080fa7387d03c73c08eb624035c837944 +SIZE (KDE/release-service/23.08.1/kturtle-23.08.1.tar.xz) = 2243724 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 32c55e4895cb..657253ea5aa6 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203330 -SHA256 (KDE/release-service/23.08.0/analitza-23.08.0.tar.xz) = dbc46f560342bce65d0e9cd96693527d72fb9b1c7e9a4805b19007afe7636201 -SIZE (KDE/release-service/23.08.0/analitza-23.08.0.tar.xz) = 353040 +TIMESTAMP = 1694551291 +SHA256 (KDE/release-service/23.08.1/analitza-23.08.1.tar.xz) = 4958521396d5942a237c268824f423c31ac8670797e78822885a2dd17cfd393b +SIZE (KDE/release-service/23.08.1/analitza-23.08.1.tar.xz) = 353068 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index ebf1233447b2..0c47bcd5e2c8 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203339 -SHA256 (KDE/release-service/23.08.0/cantor-23.08.0.tar.xz) = e5d359cf385d1733b8a7fa6eb3310ebf487925c4c0e77871d040da602282df13 -SIZE (KDE/release-service/23.08.0/cantor-23.08.0.tar.xz) = 9280464 +TIMESTAMP = 1694551293 +SHA256 (KDE/release-service/23.08.1/cantor-23.08.1.tar.xz) = f92de55a7ffe84f8e09e56a194e5cf6a2b1696893aa1d5892c47e1b6a8b23814 +SIZE (KDE/release-service/23.08.1/cantor-23.08.1.tar.xz) = 9280804 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 1b364ec16c0b..66bf6ba34dd8 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203336 -SHA256 (KDE/release-service/23.08.0/kalgebra-23.08.0.tar.xz) = 39cd5d151f612c3dfc83135f931f51ceafab97bb75f075d7930eb02ab3853f67 -SIZE (KDE/release-service/23.08.0/kalgebra-23.08.0.tar.xz) = 1037012 +TIMESTAMP = 1694551301 +SHA256 (KDE/release-service/23.08.1/kalgebra-23.08.1.tar.xz) = 1670db3ab69549573325cba1ec5596cfaeea72588c58ef63dbd79c1bbd99dedc +SIZE (KDE/release-service/23.08.1/kalgebra-23.08.1.tar.xz) = 1037100 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index d92db977b28e..f10b70c58444 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203329 -SHA256 (KDE/release-service/23.08.0/kalk-23.08.0.tar.xz) = 0f5939fc9b69205b30b4e9e7eccb34d3f8de3616e088d7c68e2a087d7c785196 -SIZE (KDE/release-service/23.08.0/kalk-23.08.0.tar.xz) = 84168 +TIMESTAMP = 1694551300 +SHA256 (KDE/release-service/23.08.1/kalk-23.08.1.tar.xz) = d6d2ed9e7407bc445cd3a2871dbe84310cbb38822ca62fe332c37118661b6565 +SIZE (KDE/release-service/23.08.1/kalk-23.08.1.tar.xz) = 84200 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 306a2cd6c112..b8d98325905b 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203333 -SHA256 (KDE/release-service/23.08.0/kbruch-23.08.0.tar.xz) = 4d6d747c838d10e298d6bf0b73a44ffb78852483686f809ead65e198fc5ff546 -SIZE (KDE/release-service/23.08.0/kbruch-23.08.0.tar.xz) = 5655728 +TIMESTAMP = 1694551298 +SHA256 (KDE/release-service/23.08.1/kbruch-23.08.1.tar.xz) = a3ffb6eb4f8ffa3172636c13e8776679d95121ef76065487ebbda66a1b7bc3cb +SIZE (KDE/release-service/23.08.1/kbruch-23.08.1.tar.xz) = 5655664 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 49805bc77b19..b65732868c49 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203328 -SHA256 (KDE/release-service/23.08.0/kcalc-23.08.0.tar.xz) = ded207841f1dbb8a8373d94c7a014de17b893c06553fe9de9a871154c53eece0 -SIZE (KDE/release-service/23.08.0/kcalc-23.08.0.tar.xz) = 437644 +TIMESTAMP = 1694551294 +SHA256 (KDE/release-service/23.08.1/kcalc-23.08.1.tar.xz) = c4c546988559fb631d67fb69c3b0f3eff635eedc6b43d4c4651124759b65c5db +SIZE (KDE/release-service/23.08.1/kcalc-23.08.1.tar.xz) = 439112 diff --git a/math/kig/distinfo b/math/kig/distinfo index a69227a706c3..a0671ef6ba8b 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203331 -SHA256 (KDE/release-service/23.08.0/kig-23.08.0.tar.xz) = 26d06dd2749286d18f11365d1b5b29f93cad66f54202c6d5ba46fcaeba73c5bd -SIZE (KDE/release-service/23.08.0/kig-23.08.0.tar.xz) = 3297816 +TIMESTAMP = 1694551299 +SHA256 (KDE/release-service/23.08.1/kig-23.08.1.tar.xz) = efb3cad1de12c5c5fd7e70761b8304fe8193b7eeec62f32ecac0719f0ef9f613 +SIZE (KDE/release-service/23.08.1/kig-23.08.1.tar.xz) = 3297804 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 2c26a23591b8..a67047bde31f 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203334 -SHA256 (KDE/release-service/23.08.0/kmplot-23.08.0.tar.xz) = ce9f80ca7cd744397acf3f1f8b1da129c785a74ce43fd5e5d2f213951007c045 -SIZE (KDE/release-service/23.08.0/kmplot-23.08.0.tar.xz) = 3099568 +TIMESTAMP = 1694551297 +SHA256 (KDE/release-service/23.08.1/kmplot-23.08.1.tar.xz) = 588ced24250dafd37ef4b336f04cb5afaae94958fc5402f4068d64a6b4d31590 +SIZE (KDE/release-service/23.08.1/kmplot-23.08.1.tar.xz) = 3099580 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index eec82590c0b2..9290fd14adc1 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203337 -SHA256 (KDE/release-service/23.08.0/rocs-23.08.0.tar.xz) = b8cf105131cfc6f19e06cb1fa4fcd42b510f304f7cd2f2afc28b7fbcd4de0a96 -SIZE (KDE/release-service/23.08.0/rocs-23.08.0.tar.xz) = 1569804 +TIMESTAMP = 1694551295 +SHA256 (KDE/release-service/23.08.1/rocs-23.08.1.tar.xz) = 814a3c5173e2da949bd30f4b65e6a0ba370ecf06a60a869478d598ee79547e82 +SIZE (KDE/release-service/23.08.1/rocs-23.08.1.tar.xz) = 1569928 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 2cfbfb72bb8c..e9bb5b1b45ca 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203628 -SHA256 (KDE/release-service/23.08.0/artikulate-23.08.0.tar.xz) = 095de677000668a624f96d82451941131dac5140bbb5b4ea68d52d02cfeb9ee7 -SIZE (KDE/release-service/23.08.0/artikulate-23.08.0.tar.xz) = 1093492 +TIMESTAMP = 1694551477 +SHA256 (KDE/release-service/23.08.1/artikulate-23.08.1.tar.xz) = 03d386be68103b9ad3ab2e83aa9fc5eed05bd81e581d36dfed257bab64ab3c17 +SIZE (KDE/release-service/23.08.1/artikulate-23.08.1.tar.xz) = 1093472 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 4f594c0c5039..1691008daff2 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203632 -SHA256 (KDE/release-service/23.08.0/kdeedu-data-23.08.0.tar.xz) = 8d007c378f8546f34e8b02a75a9491e3aae6b6dbcdcf12030adb6e150b83428c -SIZE (KDE/release-service/23.08.0/kdeedu-data-23.08.0.tar.xz) = 333544 +TIMESTAMP = 1694551479 +SHA256 (KDE/release-service/23.08.1/kdeedu-data-23.08.1.tar.xz) = 059e486afb4c4c9a0668d54bdc9982aad6e12fc33f7ef6898cc18c9f950c5b45 +SIZE (KDE/release-service/23.08.1/kdeedu-data-23.08.1.tar.xz) = 333504 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 0b75980a5fed..e4b99ce4bce6 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203631 -SHA256 (KDE/release-service/23.08.0/kgeography-23.08.0.tar.xz) = 915b1061a0aaa0d3607bbc87336b45e69500e6defcf6d781f5511646eb38e9e7 -SIZE (KDE/release-service/23.08.0/kgeography-23.08.0.tar.xz) = 12551760 +TIMESTAMP = 1694551475 +SHA256 (KDE/release-service/23.08.1/kgeography-23.08.1.tar.xz) = 9af36d9ea29bc68b683f2a68ee7f40b34a2b97d8a60230cf78417ed351b33d82 +SIZE (KDE/release-service/23.08.1/kgeography-23.08.1.tar.xz) = 12551128 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 1ff19ddfc285..fba6409d8bad 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203626 -SHA256 (KDE/release-service/23.08.0/klettres-23.08.0.tar.xz) = 8dca964ea71ccd11c6a611fc919e98a9e265d9c2b394cb105d64d398e8ad16f3 -SIZE (KDE/release-service/23.08.0/klettres-23.08.0.tar.xz) = 47837740 +TIMESTAMP = 1694551467 +SHA256 (KDE/release-service/23.08.1/klettres-23.08.1.tar.xz) = 735bda32895aaaa70d2822af0c7fcda5ccd325ada598d8b155c0270082135ccc +SIZE (KDE/release-service/23.08.1/klettres-23.08.1.tar.xz) = 47837572 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index c7146b6bb0c5..b214a7816cd0 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203613 -SHA256 (KDE/release-service/23.08.0/ktouch-23.08.0.tar.xz) = d87ae4bb2885af2ca549e5a993b93a2f45074df3ae30efb09361ba421204a578 -SIZE (KDE/release-service/23.08.0/ktouch-23.08.0.tar.xz) = 5037288 +TIMESTAMP = 1694551472 +SHA256 (KDE/release-service/23.08.1/ktouch-23.08.1.tar.xz) = 6ecdcd334e98416a4127ebe3153900e7f5274efa2b9c5474a19d3ac834934486 +SIZE (KDE/release-service/23.08.1/ktouch-23.08.1.tar.xz) = 5039456 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 2ab6cb29506d..b427e872ae8c 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203619 -SHA256 (KDE/release-service/23.08.0/kwordquiz-23.08.0.tar.xz) = 4fa4a103a3486826e1e29eda35f7365f896d29a25ac646dac88097eb3b82f4d8 -SIZE (KDE/release-service/23.08.0/kwordquiz-23.08.0.tar.xz) = 4080880 +TIMESTAMP = 1694551481 +SHA256 (KDE/release-service/23.08.1/kwordquiz-23.08.1.tar.xz) = 2234dcd616199e0783e6df643baa8f3aee0013c75f973962fe2bd4c95511f3e9 +SIZE (KDE/release-service/23.08.1/kwordquiz-23.08.1.tar.xz) = 4076444 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 4b7ad2b6ac4c..bba190e8201f 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203615 -SHA256 (KDE/release-service/23.08.0/libkeduvocdocument-23.08.0.tar.xz) = d637876608d6290b32f3e7d2004cabdf810057bc22c396ac93f3610b1a537245 -SIZE (KDE/release-service/23.08.0/libkeduvocdocument-23.08.0.tar.xz) = 229168 +TIMESTAMP = 1694551479 +SHA256 (KDE/release-service/23.08.1/libkeduvocdocument-23.08.1.tar.xz) = d2bbc1fb4aa48488927d788a0e7873cb43d686b37ca7fb5136816430c1853662 +SIZE (KDE/release-service/23.08.1/libkeduvocdocument-23.08.1.tar.xz) = 229176 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 2ecfbe47ec03..483c92d4736b 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203617 -SHA256 (KDE/release-service/23.08.0/parley-23.08.0.tar.xz) = 1c213b58e73eaece3605e08e9799d0fb08745aa36926f2783d26d80b62ad84a7 -SIZE (KDE/release-service/23.08.0/parley-23.08.0.tar.xz) = 8598268 +TIMESTAMP = 1694551473 +SHA256 (KDE/release-service/23.08.1/parley-23.08.1.tar.xz) = 1957ca220dc639aca051bdc33f1e5e8b8b1c7d309871e72276d29a7aadf8e06d +SIZE (KDE/release-service/23.08.1/parley-23.08.1.tar.xz) = 8600532 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 444dd745eec5..7581cd7d88a9 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203346 -SHA256 (KDE/release-service/23.08.0/dragon-23.08.0.tar.xz) = 1758e39c991adfa1961a25d292d16020c80fd227db29f6f3b257274241e4b9a0 -SIZE (KDE/release-service/23.08.0/dragon-23.08.0.tar.xz) = 1669284 +TIMESTAMP = 1694551404 +SHA256 (KDE/release-service/23.08.1/dragon-23.08.1.tar.xz) = ccc1bfc327f341b7b2b32e25166f8161595b247a1f18139853742b26339eb5a4 +SIZE (KDE/release-service/23.08.1/dragon-23.08.1.tar.xz) = 1669248 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 424aa1aa8534..a32116c7d4d2 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203347 -SHA256 (KDE/release-service/23.08.0/kamoso-23.08.0.tar.xz) = b29c853357d0fd7383e454fe7eb4b2293b5aa4824926193e660019dff57ffbc7 -SIZE (KDE/release-service/23.08.0/kamoso-23.08.0.tar.xz) = 231992 +TIMESTAMP = 1694551402 +SHA256 (KDE/release-service/23.08.1/kamoso-23.08.1.tar.xz) = b37a1eb1a5249efdbb97c200b0d167bc1d0e3b09c6bed40ffdfb723a546c8da3 +SIZE (KDE/release-service/23.08.1/kamoso-23.08.1.tar.xz) = 231880 diff --git a/multimedia/kasts/Makefile b/multimedia/kasts/Makefile index 79ec8ff37dee..1766af2d06a3 100644 --- a/multimedia/kasts/Makefile +++ b/multimedia/kasts/Makefile @@ -1,28 +1,28 @@ PORTNAME= kasts DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE podcast app WWW= https://apps.kde.org/kasts/ LICENSE= GPLv2+ BUILD_DEPENDS= kirigami-addons>=0.6.1:x11-toolkits/kirigami-addons LIB_DEPENDS= libqt5keychain.so:security/qtkeychain@qt5 \ libtag.so:audio/taglib \ libvlc.so:multimedia/vlc RUN_DEPENDS= kirigami-addons>=0.6.1:x11-toolkits/kirigami-addons USES= cmake desktop-file-utils gettext-runtime gnome gstreamer kde:5 \ pkgconfig qt:5 tar:xz xorg USE_GNOME= glib20 USE_GSTREAMER1= yes USE_KDE= config coreaddons i18n kirigami2 syndication threadweaver \ ecm:build USE_QT= core dbus declarative gui multimedia network quickcontrols2 \ sql svg widgets xml \ - buildtools:build qmake:build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 479a94b260a4..a9978f4a4603 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203350 -SHA256 (KDE/release-service/23.08.0/kasts-23.08.0.tar.xz) = 56427ad9853a6a309245c5425d54b14dea785c6d3364d459e55d484e0bca5e69 -SIZE (KDE/release-service/23.08.0/kasts-23.08.0.tar.xz) = 563912 +TIMESTAMP = 1694551403 +SHA256 (KDE/release-service/23.08.1/kasts-23.08.1.tar.xz) = 4876e1ec72818198f7e1cfa5d104c6e3991f4440fae20dc6f2a11e4a078b81e3 +SIZE (KDE/release-service/23.08.1/kasts-23.08.1.tar.xz) = 564412 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index b441938b10ce..b0d5f74ffd45 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203351 -SHA256 (KDE/release-service/23.08.0/ffmpegthumbs-23.08.0.tar.xz) = d0e25a90109416636d50a015e2d91c3745bb7cfe1fc2d80f124f05914be5beed -SIZE (KDE/release-service/23.08.0/ffmpegthumbs-23.08.0.tar.xz) = 32996 +TIMESTAMP = 1694551400 +SHA256 (KDE/release-service/23.08.1/ffmpegthumbs-23.08.1.tar.xz) = 913a086c994f261f1e7c8d5f484fc8623fd747064d0e03d7df600eb301f1a2cc +SIZE (KDE/release-service/23.08.1/ffmpegthumbs-23.08.1.tar.xz) = 33004 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index f618878b75f1..10adbcfae145 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203349 -SHA256 (KDE/release-service/23.08.0/kdenlive-23.08.0.tar.xz) = 5f63f6cc1d7f7578014ef0fdb3f20e85254f05d7066911329ce568b967e4d207 -SIZE (KDE/release-service/23.08.0/kdenlive-23.08.0.tar.xz) = 12690208 +TIMESTAMP = 1694612872 +SHA256 (KDE/release-service/23.08.1/kdenlive-23.08.1.tar.xz) = 4bd61786ccdc7c28ea4bede4476c30e2bc1270c85068c8112043b0e78b390eb2 +SIZE (KDE/release-service/23.08.1/kdenlive-23.08.1.tar.xz) = 12690404 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 7de2e8169be8..f3a07cbd7a05 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203365 -SHA256 (KDE/release-service/23.08.0/kaccounts-integration-23.08.0.tar.xz) = 6f9cddca5dd029c2e97e2ddd3e286865c50fb14210f1225393f27ed3a4bcc9af -SIZE (KDE/release-service/23.08.0/kaccounts-integration-23.08.0.tar.xz) = 88496 +TIMESTAMP = 1694551375 +SHA256 (KDE/release-service/23.08.1/kaccounts-integration-23.08.1.tar.xz) = 6874eb3e3cf5ef0a06abe83931a9b61818ec96ed3492001a357268b3d81a30ff +SIZE (KDE/release-service/23.08.1/kaccounts-integration-23.08.1.tar.xz) = 88496 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index d5c967f0f0bd..6da1c8433e51 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203358 -SHA256 (KDE/release-service/23.08.0/kaccounts-providers-23.08.0.tar.xz) = 50ff9336acb5db4809485fcda0629dd549dec5744767995ae62e1b54c2075b22 -SIZE (KDE/release-service/23.08.0/kaccounts-providers-23.08.0.tar.xz) = 66144 +TIMESTAMP = 1694551376 +SHA256 (KDE/release-service/23.08.1/kaccounts-providers-23.08.1.tar.xz) = 578522c47514e2af4c5c2fd4f548ad559cc832bd4239106af93c4894e3e1de11 +SIZE (KDE/release-service/23.08.1/kaccounts-providers-23.08.1.tar.xz) = 66168 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 9419f8339623..3ca2fb51309f 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203361 -SHA256 (KDE/release-service/23.08.0/kopete-23.08.0.tar.xz) = 09399e7645ffbc4b7fa25f96af1d9870eb9d16dab21ece64e4d61fbc467e5e8f -SIZE (KDE/release-service/23.08.0/kopete-23.08.0.tar.xz) = 10144064 +TIMESTAMP = 1694551377 +SHA256 (KDE/release-service/23.08.1/kopete-23.08.1.tar.xz) = c650536b8e2d3062233617c76bae05e9005c4671a1b0388106acac0539d29cab +SIZE (KDE/release-service/23.08.1/kopete-23.08.1.tar.xz) = 10145104 diff --git a/net-im/ktp-call-ui/Makefile b/net-im/ktp-call-ui/Makefile index e0381da9ffbb..ea4f39cf20b5 100644 --- a/net-im/ktp-call-ui/Makefile +++ b/net-im/ktp-call-ui/Makefile @@ -1,40 +1,40 @@ PORTNAME= ktp-call-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Voice/Video Call UI for Telepathy WWW= https://community.kde.org/KTp LICENSE= GPLv2+ LGPL21+ LICENSE_COMB= multi LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_LGPL21+ = ${WRKSRC}/COPYING.LIB DEPRECATED= Will not be part of KDE Gear 23.08 in August EXPIRATION_DATE= 2023-09-30 KDE_APPLICATIONS_VERSION= 23.04.3 LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals \ libQt5GStreamer-1.0.so:multimedia/gstreamer1-qt \ libboost_thread.so:devel/boost-libs \ libfarstream-0.2.so:net-im/farstream \ libtelepathy-farstream.so:net-im/telepathy-farstream \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-qt5-farstream.so:net-im/telepathy-qt USES= cmake compiler:c++11-lang gettext gnome gstreamer kde:5 pkgconfig \ python qt:5 tar:xz USE_GNOME= glib20 USE_KDE= auth codecs config configwidgets coreaddons iconthemes \ i18n kcmutils kdeclarative notifications package service \ wallet widgetsaddons xmlgui \ ecm:build -USE_QT= core dbus declarative gui network widgets xml \ +USE_QT= core dbus declarative gui network phonon4 widgets xml \ buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index e70ca68b45fd..4a8ec8661f53 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203364 -SHA256 (KDE/release-service/23.08.0/neochat-23.08.0.tar.xz) = 4ead1a9fa308e53173229a744075c59580ed3364bd206a08c07d9db163758bfb -SIZE (KDE/release-service/23.08.0/neochat-23.08.0.tar.xz) = 777516 +TIMESTAMP = 1694551381 +SHA256 (KDE/release-service/23.08.1/neochat-23.08.1.tar.xz) = c73646a5e0405bb82f36926af8371f724b7156cef147b4ac9ae1f1db642ea31c +SIZE (KDE/release-service/23.08.1/neochat-23.08.1.tar.xz) = 780308 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index dabae0e28f65..fe4593ea73ef 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203370 -SHA256 (KDE/release-service/23.08.0/tokodon-23.08.0.tar.xz) = 50c8c6c34d7fdb41312fe132cdeb2a507e55274a879e432f68b1de92b6e98bb7 -SIZE (KDE/release-service/23.08.0/tokodon-23.08.0.tar.xz) = 316552 +TIMESTAMP = 1694551388 +SHA256 (KDE/release-service/23.08.1/tokodon-23.08.1.tar.xz) = 3b66af0bb4c8263236aeb60162695975a8e7d19a60ef88d5a17fecf25963c77e +SIZE (KDE/release-service/23.08.1/tokodon-23.08.1.tar.xz) = 324268 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index de62d1c1d612..f0a907c44531 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203432 -SHA256 (KDE/release-service/23.08.0/ktorrent-23.08.0.tar.xz) = 190858bd7a3c562a0404e756654b7b947b4541b685f17729bd61ce9423351711 -SIZE (KDE/release-service/23.08.0/ktorrent-23.08.0.tar.xz) = 2154144 +TIMESTAMP = 1694551323 +SHA256 (KDE/release-service/23.08.1/ktorrent-23.08.1.tar.xz) = e16214736b82781fb55396f0384e5e7e4362c470ac31a709944d29da968c54c4 +SIZE (KDE/release-service/23.08.1/ktorrent-23.08.1.tar.xz) = 2154312 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index a194a6f03a5e..13fc10ed9b90 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203430 -SHA256 (KDE/release-service/23.08.0/libktorrent-23.08.0.tar.xz) = 0fc0ca8c2d22e07712f9b1c9653d53e9635165f041a2a76f30bcbfd8f23726f6 -SIZE (KDE/release-service/23.08.0/libktorrent-23.08.0.tar.xz) = 604156 +TIMESTAMP = 1694551321 +SHA256 (KDE/release-service/23.08.1/libktorrent-23.08.1.tar.xz) = cb6253f76beeb7130eb65f94a5eb2c3d49d87b97bff38580a889c5b34b6bd0e0 +SIZE (KDE/release-service/23.08.1/libktorrent-23.08.1.tar.xz) = 604120 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 1458d7937378..20156f1876bd 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203669 -SHA256 (KDE/release-service/23.08.0/akonadi-calendar-23.08.0.tar.xz) = 6e6a0a2cd7651fc46b7b23c864bc6a5411964648893a403b0f1114285a2efaa8 -SIZE (KDE/release-service/23.08.0/akonadi-calendar-23.08.0.tar.xz) = 472396 +TIMESTAMP = 1694551443 +SHA256 (KDE/release-service/23.08.1/akonadi-calendar-23.08.1.tar.xz) = 2b6804813e833da507901bbca3195d22b2f28e91e255d916f6144a81fe207ccd +SIZE (KDE/release-service/23.08.1/akonadi-calendar-23.08.1.tar.xz) = 472784 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index c9c55158e0e7..f3103a672c1d 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203673 -SHA256 (KDE/release-service/23.08.0/akonadi-contacts-23.08.0.tar.xz) = 77923b46bde908fa22927ac21eedbeea9948191485d3e2e4a7044bdc5b812707 -SIZE (KDE/release-service/23.08.0/akonadi-contacts-23.08.0.tar.xz) = 421860 +TIMESTAMP = 1694551458 +SHA256 (KDE/release-service/23.08.1/akonadi-contacts-23.08.1.tar.xz) = dd8e84bf6dbbd4f5b619ca94988796ba466dbd17754f6f390db037b1820d8a96 +SIZE (KDE/release-service/23.08.1/akonadi-contacts-23.08.1.tar.xz) = 421776 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 4ab776ccd440..e0015070d5eb 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203685 -SHA256 (KDE/release-service/23.08.0/akonadi-mime-23.08.0.tar.xz) = 8aef15168ee4fa31de2a217842373d3581fc7fb790f15abe17eb6628f0f37351 -SIZE (KDE/release-service/23.08.0/akonadi-mime-23.08.0.tar.xz) = 166808 +TIMESTAMP = 1694551409 +SHA256 (KDE/release-service/23.08.1/akonadi-mime-23.08.1.tar.xz) = cab4a99c8140041a936ea7db5d55edace2c7e169633cdd7f088a80f29c7a4e31 +SIZE (KDE/release-service/23.08.1/akonadi-mime-23.08.1.tar.xz) = 166808 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index c0e78ad11820..ccfe5a9a67e3 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203639 -SHA256 (KDE/release-service/23.08.0/akonadi-notes-23.08.0.tar.xz) = ac580c77102c91e3b4a56e1f726ee46b4948d71d8b6fa3dbb10411589bbf683d -SIZE (KDE/release-service/23.08.0/akonadi-notes-23.08.0.tar.xz) = 28568 +TIMESTAMP = 1694551426 +SHA256 (KDE/release-service/23.08.1/akonadi-notes-23.08.1.tar.xz) = e6649f052b8c8a9ecbae888db6bb26ff0927f19b627fb77bd33e560cacaeeed2 +SIZE (KDE/release-service/23.08.1/akonadi-notes-23.08.1.tar.xz) = 28584 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index e3dd8d0244fa..fbef39bb2fb2 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203648 -SHA256 (KDE/release-service/23.08.0/akonadi-search-23.08.0.tar.xz) = a9d07c25e7cad492dcf303592acabf3d3cdf414bea7d7916ccea832454316bef -SIZE (KDE/release-service/23.08.0/akonadi-search-23.08.0.tar.xz) = 107520 +TIMESTAMP = 1694551447 +SHA256 (KDE/release-service/23.08.1/akonadi-search-23.08.1.tar.xz) = 243e67e0cd960d0b559aca15b33bdeeab35c0b2796d84aa6f5969c3a946d82ab +SIZE (KDE/release-service/23.08.1/akonadi-search-23.08.1.tar.xz) = 107536 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 015150a5a92b..4b66345b401c 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203672 -SHA256 (KDE/release-service/23.08.0/alligator-23.08.0.tar.xz) = 2dcc2ec4960d81da4ab195a5d1c4be8c3d21c3f3ab75697e0d8262b5e3208d04 -SIZE (KDE/release-service/23.08.0/alligator-23.08.0.tar.xz) = 190056 +TIMESTAMP = 1694551450 +SHA256 (KDE/release-service/23.08.1/alligator-23.08.1.tar.xz) = 922c5730953f6237348e6509c90a220bf9d40bc7f508ba55c82d384fe88bc310 +SIZE (KDE/release-service/23.08.1/alligator-23.08.1.tar.xz) = 190012 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 87cb693d1107..890186368f06 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203679 -SHA256 (KDE/release-service/23.08.0/calendarsupport-23.08.0.tar.xz) = b9752c407b4280fc26f477eb16f26fe24d10c59865725931f807bdb403ae1233 -SIZE (KDE/release-service/23.08.0/calendarsupport-23.08.0.tar.xz) = 987564 +TIMESTAMP = 1694551461 +SHA256 (KDE/release-service/23.08.1/calendarsupport-23.08.1.tar.xz) = 7b4f33cbc91e604d256b1eb3615f56c7c49ccfc8f386fd75b141efb7dbfcaf6f +SIZE (KDE/release-service/23.08.1/calendarsupport-23.08.1.tar.xz) = 987644 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index cb37289a5e65..13254eb467c8 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203677 -SHA256 (KDE/release-service/23.08.0/eventviews-23.08.0.tar.xz) = 6285105047d11955292aeb7a25ee9e36bc5cbe25811ae62b9802a39a36a3113e -SIZE (KDE/release-service/23.08.0/eventviews-23.08.0.tar.xz) = 459644 +TIMESTAMP = 1694551449 +SHA256 (KDE/release-service/23.08.1/eventviews-23.08.1.tar.xz) = 8b42516364906e2dc708ed3d5cc6841ba1b5d2f7e7b67a5fdd4992d9fc45afa0 +SIZE (KDE/release-service/23.08.1/eventviews-23.08.1.tar.xz) = 459836 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 75ac799e4a5d..322cb14b9db0 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203644 -SHA256 (KDE/release-service/23.08.0/incidenceeditor-23.08.0.tar.xz) = f6ba29f4cddd2e536e0c00ecaba5752d452406c175f3bc08068e67fa70313bdc -SIZE (KDE/release-service/23.08.0/incidenceeditor-23.08.0.tar.xz) = 568128 +TIMESTAMP = 1694551419 +SHA256 (KDE/release-service/23.08.1/incidenceeditor-23.08.1.tar.xz) = 5ef8c77c67a66eb0766e9dd2e4dcb7a93d532a7082c7aa9dc8c2cae2601bbc89 +SIZE (KDE/release-service/23.08.1/incidenceeditor-23.08.1.tar.xz) = 568200 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 2d8ba1b1b16b..b3c4ec85b388 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203652 -SHA256 (KDE/release-service/23.08.0/kcalutils-23.08.0.tar.xz) = fe49f59c44383d3fa0df69fa444d5283749beec7a59f0db1dac1e20b480317f3 -SIZE (KDE/release-service/23.08.0/kcalutils-23.08.0.tar.xz) = 351776 +TIMESTAMP = 1694551408 +SHA256 (KDE/release-service/23.08.1/kcalutils-23.08.1.tar.xz) = 15df3615318b159b81292237bb50ca7ce7bf4cce2966640d4f754dfabdda1156 +SIZE (KDE/release-service/23.08.1/kcalutils-23.08.1.tar.xz) = 352440 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 132a3f9ba9f0..cf56ebb6e07e 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203683 -SHA256 (KDE/release-service/23.08.0/kdenetwork-filesharing-23.08.0.tar.xz) = ced72981e38deccef00c800a214ece53ea689c11554308c9a13b9af536d9392a -SIZE (KDE/release-service/23.08.0/kdenetwork-filesharing-23.08.0.tar.xz) = 480252 +TIMESTAMP = 1694551442 +SHA256 (KDE/release-service/23.08.1/kdenetwork-filesharing-23.08.1.tar.xz) = b348abb77e89f677bae2bf0b163eb5d63410064021ba99f20d01243a94f5cc96 +SIZE (KDE/release-service/23.08.1/kdenetwork-filesharing-23.08.1.tar.xz) = 480540 diff --git a/net/kget/distinfo b/net/kget/distinfo index 7fb0ef79786a..5c7e79d03475 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203655 -SHA256 (KDE/release-service/23.08.0/kget-23.08.0.tar.xz) = 168ce8fea7e0e66d21eb128c98f81377316e6cff1627e67692e2cb0f2f2bbef0 -SIZE (KDE/release-service/23.08.0/kget-23.08.0.tar.xz) = 5563968 +TIMESTAMP = 1694551434 +SHA256 (KDE/release-service/23.08.1/kget-23.08.1.tar.xz) = 499ed2aede9b871c44a38bac2828899f393666de8b9fd46fc04c7265c82aa7f5 +SIZE (KDE/release-service/23.08.1/kget-23.08.1.tar.xz) = 5564032 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 455cf8e33972..134890fbc71f 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203686 -SHA256 (KDE/release-service/23.08.0/kidentitymanagement-23.08.0.tar.xz) = 26e22b9cc1a3c68e1b057dca885912debc9083dc629169451d47f128985d1682 -SIZE (KDE/release-service/23.08.0/kidentitymanagement-23.08.0.tar.xz) = 163968 +TIMESTAMP = 1694551416 +SHA256 (KDE/release-service/23.08.1/kidentitymanagement-23.08.1.tar.xz) = bcf4775fbc7a2b812c8ca19e1794e9a4e1ea07b3950ebd99a735c46154f1dc84 +SIZE (KDE/release-service/23.08.1/kidentitymanagement-23.08.1.tar.xz) = 163952 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index e07d5f0ab261..4292c1b1e9a7 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203658 -SHA256 (KDE/release-service/23.08.0/kimap-23.08.0.tar.xz) = 8782cac26498155a311b409a4d5fcdc2b662d86ed8494a4d1b23db6ccdebc266 -SIZE (KDE/release-service/23.08.0/kimap-23.08.0.tar.xz) = 131060 +TIMESTAMP = 1694551429 +SHA256 (KDE/release-service/23.08.1/kimap-23.08.1.tar.xz) = d3c618d7cf390804e8580539776eed5c79b87dbefd1825e0ab7cb3c00e81b9d1 +SIZE (KDE/release-service/23.08.1/kimap-23.08.1.tar.xz) = 131000 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 0ef60faccd2a..2c5c224d4dd5 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203653 -SHA256 (KDE/release-service/23.08.0/kio-gdrive-23.08.0.tar.xz) = 9f55404c371cd59e513582b041b8ec3df52663a12723e94303d967efe1e1cfb2 -SIZE (KDE/release-service/23.08.0/kio-gdrive-23.08.0.tar.xz) = 79416 +TIMESTAMP = 1694551413 +SHA256 (KDE/release-service/23.08.1/kio-gdrive-23.08.1.tar.xz) = bff509d859b21cf0041c5eb0e47619be3ea08d16ed3437252b2ecc35aabe48c4 +SIZE (KDE/release-service/23.08.1/kio-gdrive-23.08.1.tar.xz) = 79424 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 2256c61b1499..449ba76c72fb 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203661 -SHA256 (KDE/release-service/23.08.0/kio-zeroconf-23.08.0.tar.xz) = e227ce17a782802b9f8d14a638829c4381fece8eacb084c1fda84a940d9d40a4 -SIZE (KDE/release-service/23.08.0/kio-zeroconf-23.08.0.tar.xz) = 44364 +TIMESTAMP = 1694551431 +SHA256 (KDE/release-service/23.08.1/kio-zeroconf-23.08.1.tar.xz) = 7a318709c4c811a3926b7976f9fb287b18321f3184d44aaca24f2fc966ff7183 +SIZE (KDE/release-service/23.08.1/kio-zeroconf-23.08.1.tar.xz) = 44384 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 6509473c3223..c2c0de422d7f 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203668 -SHA256 (KDE/release-service/23.08.0/kitinerary-23.08.0.tar.xz) = 392c8c2a1719da9bb5b32b03bdf90fe9e5405a1735bb17dfbb0beeec4985fed4 -SIZE (KDE/release-service/23.08.0/kitinerary-23.08.0.tar.xz) = 1923304 +TIMESTAMP = 1694551452 +SHA256 (KDE/release-service/23.08.1/kitinerary-23.08.1.tar.xz) = 2842985dd99ae4ee3df5f478f6e0c11ffc149be709b33134fa8a799b4758c7f3 +SIZE (KDE/release-service/23.08.1/kitinerary-23.08.1.tar.xz) = 1924012 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 5da02b91f6db..9d9fd9d3be3f 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203671 -SHA256 (KDE/release-service/23.08.0/kldap-23.08.0.tar.xz) = 65085e92b197ebf3d1eb0baf6f7b5f3763b68fdbf6ae6c85167ab78c1a3d8590 -SIZE (KDE/release-service/23.08.0/kldap-23.08.0.tar.xz) = 182884 +TIMESTAMP = 1694551425 +SHA256 (KDE/release-service/23.08.1/kldap-23.08.1.tar.xz) = 28afc03580e04a59bcb31623387f4091b9ff70a13525bf7284e384b76c107e3c +SIZE (KDE/release-service/23.08.1/kldap-23.08.1.tar.xz) = 182868 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 85b42201d2f7..7d241a3a21d3 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203676 -SHA256 (KDE/release-service/23.08.0/kmailtransport-23.08.0.tar.xz) = ef0ede439bc25acbd085917e4ac8573535a9b5d51a8b449fa53a5677e5c2ca45 -SIZE (KDE/release-service/23.08.0/kmailtransport-23.08.0.tar.xz) = 174628 +TIMESTAMP = 1694551412 +SHA256 (KDE/release-service/23.08.1/kmailtransport-23.08.1.tar.xz) = a0b03a775abfd1fd985acc3d8febbb0c20832aa5dcfb811bdb05a398b8d438a9 +SIZE (KDE/release-service/23.08.1/kmailtransport-23.08.1.tar.xz) = 174676 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 1054f554d9c5..2cbc68f68047 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203666 -SHA256 (KDE/release-service/23.08.0/kmbox-23.08.0.tar.xz) = 441bbb3c13cb535a216feb411ffe5925f4ca668a679c3cc1c4260c2bf406baec -SIZE (KDE/release-service/23.08.0/kmbox-23.08.0.tar.xz) = 29032 +TIMESTAMP = 1694551421 +SHA256 (KDE/release-service/23.08.1/kmbox-23.08.1.tar.xz) = 652eb21a9cc5f4de381bc3034a4d1fd244788e11ec6c0558a60c6ec0f1647cc3 +SIZE (KDE/release-service/23.08.1/kmbox-23.08.1.tar.xz) = 29032 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 1e1cb326f964..5b0bfbf591df 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203645 -SHA256 (KDE/release-service/23.08.0/kmime-23.08.0.tar.xz) = e472d4e0eb4d2fd43cad17265a38ee9cdb2dd0450b3f6a596b240209709aff7c -SIZE (KDE/release-service/23.08.0/kmime-23.08.0.tar.xz) = 162680 +TIMESTAMP = 1694551440 +SHA256 (KDE/release-service/23.08.1/kmime-23.08.1.tar.xz) = a6dca327e3bd0fd6c86ccbe688cc46fcab2220bc80fcbaee995d14d2e6dcbb7f +SIZE (KDE/release-service/23.08.1/kmime-23.08.1.tar.xz) = 162692 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index d5a57506f8ab..6e5371458470 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203646 -SHA256 (KDE/release-service/23.08.0/kontactinterface-23.08.0.tar.xz) = e3768f63b090098061445e58379283002fec1e7a8ca0e1c5c3ad7e0888609ee0 -SIZE (KDE/release-service/23.08.0/kontactinterface-23.08.0.tar.xz) = 40104 +TIMESTAMP = 1694551433 +SHA256 (KDE/release-service/23.08.1/kontactinterface-23.08.1.tar.xz) = 227f3a56a84a37c93df8aaacf9ecdf998455a93cb3de42c9e56f90cde7503a72 +SIZE (KDE/release-service/23.08.1/kontactinterface-23.08.1.tar.xz) = 40108 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 6ead2a5c5fe4..4fe093cfcb3e 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203680 -SHA256 (KDE/release-service/23.08.0/kpimtextedit-23.08.0.tar.xz) = 63367a4a173536a91b7186813aea5b6b42bf88724483e983a5b6c60e9a48b897 -SIZE (KDE/release-service/23.08.0/kpimtextedit-23.08.0.tar.xz) = 302288 +TIMESTAMP = 1694551414 +SHA256 (KDE/release-service/23.08.1/kpimtextedit-23.08.1.tar.xz) = 9396519482bf0fa1179f24e17f14b65ca89f841581cc6b46acd47a38f9f2912d +SIZE (KDE/release-service/23.08.1/kpimtextedit-23.08.1.tar.xz) = 302272 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index b607699c6ac1..b7aa45736e71 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203656 -SHA256 (KDE/release-service/23.08.0/krdc-23.08.0.tar.xz) = 5d8f2be1ed4f51e58b49ae62c4bfc0ac26246b8a8529c2ac6b32ce84081228c6 -SIZE (KDE/release-service/23.08.0/krdc-23.08.0.tar.xz) = 1628984 +TIMESTAMP = 1694551436 +SHA256 (KDE/release-service/23.08.1/krdc-23.08.1.tar.xz) = 9fa3917f57ebafdd6586f74765b4796d4f139158ce793d3c80656f590f052225 +SIZE (KDE/release-service/23.08.1/krdc-23.08.1.tar.xz) = 1628956 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 37c056235b77..48dedf1d47d3 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203659 -SHA256 (KDE/release-service/23.08.0/krfb-23.08.0.tar.xz) = c0440fe9109578767b1513f44e165601a64a660f7b546dbcff7477b07cf9b848 -SIZE (KDE/release-service/23.08.0/krfb-23.08.0.tar.xz) = 1319564 +TIMESTAMP = 1694551428 +SHA256 (KDE/release-service/23.08.1/krfb-23.08.1.tar.xz) = 601894ff73a4c7e16782ed5d55a0c40475afcd9dd32194ffe6046ce1a96c0ecd +SIZE (KDE/release-service/23.08.1/krfb-23.08.1.tar.xz) = 1319528 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 04d76e2aa50c..fbbcb5967390 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203662 -SHA256 (KDE/release-service/23.08.0/ksmtp-23.08.0.tar.xz) = b9aa0c661799ced80c8c6bc10c83882698861f3b68f8b5eb222124b8f20fd44d -SIZE (KDE/release-service/23.08.0/ksmtp-23.08.0.tar.xz) = 50204 +TIMESTAMP = 1694551423 +SHA256 (KDE/release-service/23.08.1/ksmtp-23.08.1.tar.xz) = ec85f6fde14694d78116a1de5c6a028ce4d0f0e9e2c674f74bd9108229f9835c +SIZE (KDE/release-service/23.08.1/ksmtp-23.08.1.tar.xz) = 50200 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 610d10797181..55b4f69a25ac 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203641 -SHA256 (KDE/release-service/23.08.0/ktnef-23.08.0.tar.xz) = 8186e45771df597c3a69f7ec384420aea27ef5bb451cf6bd48c3bcf257c3cb03 -SIZE (KDE/release-service/23.08.0/ktnef-23.08.0.tar.xz) = 309500 +TIMESTAMP = 1694551460 +SHA256 (KDE/release-service/23.08.1/ktnef-23.08.1.tar.xz) = 4aab9901aa0656b3b9ec24ada3229148d5a01ba5434ae860b46c20cac007e548 +SIZE (KDE/release-service/23.08.1/ktnef-23.08.1.tar.xz) = 309488 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index febb08f79c00..aee4716d702c 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203638 -SHA256 (KDE/release-service/23.08.0/libgravatar-23.08.0.tar.xz) = 4388480392a31b3dbb1d09b428eec0c76865609c3d2fd6c476b97dae9ea414ed -SIZE (KDE/release-service/23.08.0/libgravatar-23.08.0.tar.xz) = 36204 +TIMESTAMP = 1694551456 +SHA256 (KDE/release-service/23.08.1/libgravatar-23.08.1.tar.xz) = 3dc8ac5ee293e679dcdf575ae1cd6632b442b86ad1e1fd3ae17e4f90e7e10817 +SIZE (KDE/release-service/23.08.1/libgravatar-23.08.1.tar.xz) = 36176 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 01030f53cce7..2ae696311342 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203649 -SHA256 (KDE/release-service/23.08.0/libkgapi-23.08.0.tar.xz) = 979a8cb81d2a8e838f6975e6c30e6a6cfdc7c4bff12c15769ec74d639e70df66 -SIZE (KDE/release-service/23.08.0/libkgapi-23.08.0.tar.xz) = 334976 +TIMESTAMP = 1694551411 +SHA256 (KDE/release-service/23.08.1/libkgapi-23.08.1.tar.xz) = 3a6676dc8e37fc580327f21e7d21c980416cafb709818fc271194a9ad0666a3c +SIZE (KDE/release-service/23.08.1/libkgapi-23.08.1.tar.xz) = 335008 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index c46bacb298b2..e29a90ac82da 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203674 -SHA256 (KDE/release-service/23.08.0/libksieve-23.08.0.tar.xz) = 49f2dc1002590d6fb59fd06bc1ea5a5c36635b113a9f9470f71a5a46d328e27b -SIZE (KDE/release-service/23.08.0/libksieve-23.08.0.tar.xz) = 555416 +TIMESTAMP = 1694551445 +SHA256 (KDE/release-service/23.08.1/libksieve-23.08.1.tar.xz) = e8a24a9aef6998f72d93a9a25586e6f1d25fd8d096341d4c32ab3476aba29a56 +SIZE (KDE/release-service/23.08.1/libksieve-23.08.1.tar.xz) = 557628 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index c8042ae67f29..da3cdc9265b7 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203682 -SHA256 (KDE/release-service/23.08.0/mailcommon-23.08.0.tar.xz) = a42dcd0b5d5542d971b85d2ae683d902463d8fc4521d6e10b80738c93ac5a976 -SIZE (KDE/release-service/23.08.0/mailcommon-23.08.0.tar.xz) = 758160 +TIMESTAMP = 1694551437 +SHA256 (KDE/release-service/23.08.1/mailcommon-23.08.1.tar.xz) = 3ac3ea02143fe8deeffa0639131917b3f61a6070e0e90b2ace535eb54e6c8834 +SIZE (KDE/release-service/23.08.1/mailcommon-23.08.1.tar.xz) = 758196 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 54a6ae84f737..b896e7c0118b 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203650 -SHA256 (KDE/release-service/23.08.0/mailimporter-23.08.0.tar.xz) = 151c800013aab48f9d5fad68ed6454ef5b0dc2020612dc9681aec3e7f18aa302 -SIZE (KDE/release-service/23.08.0/mailimporter-23.08.0.tar.xz) = 591432 +TIMESTAMP = 1694551439 +SHA256 (KDE/release-service/23.08.1/mailimporter-23.08.1.tar.xz) = b679723bc75b1dc4fe0848b8444ddc3c3410c0a4d5e765643755470530f1308d +SIZE (KDE/release-service/23.08.1/mailimporter-23.08.1.tar.xz) = 591452 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index df1b6dbb67d7..bd50433c91d9 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203665 -SHA256 (KDE/release-service/23.08.0/messagelib-23.08.0.tar.xz) = 5e1af42ebc944b1bb21c9574331ef39a755f27d51b5a127b31a55a104dd51fb7 -SIZE (KDE/release-service/23.08.0/messagelib-23.08.0.tar.xz) = 11324968 +TIMESTAMP = 1694551454 +SHA256 (KDE/release-service/23.08.1/messagelib-23.08.1.tar.xz) = 6f22799474a2abad7eaaee7c614acdd6cb2b51473a9362e62d0bf50a1b713797 +SIZE (KDE/release-service/23.08.1/messagelib-23.08.1.tar.xz) = 11353712 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 7df3be6a4bdc..cd54d0718cad 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,1041 +1,1043 @@ include/KPim5/MessageComposer/MessageComposer/AbstractEncryptJob include/KPim5/MessageComposer/MessageComposer/AkonadiSender include/KPim5/MessageComposer/MessageComposer/AliasesExpandJob include/KPim5/MessageComposer/MessageComposer/AttachmentClipBoardJob include/KPim5/MessageComposer/MessageComposer/AttachmentControllerBase include/KPim5/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob include/KPim5/MessageComposer/MessageComposer/AttachmentJob include/KPim5/MessageComposer/MessageComposer/AttachmentModel include/KPim5/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob include/KPim5/MessageComposer/MessageComposer/AutocryptHeadersJob include/KPim5/MessageComposer/MessageComposer/Composer include/KPim5/MessageComposer/MessageComposer/ComposerAttachmentInterface include/KPim5/MessageComposer/MessageComposer/ComposerLineEdit include/KPim5/MessageComposer/MessageComposer/ComposerViewBase include/KPim5/MessageComposer/MessageComposer/ComposerViewInterface include/KPim5/MessageComposer/MessageComposer/ContactPreference include/KPim5/MessageComposer/MessageComposer/ContentJobBase include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariableMenu include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariablesJob include/KPim5/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil include/KPim5/MessageComposer/MessageComposer/DraftStatus include/KPim5/MessageComposer/MessageComposer/EditorWatcher include/KPim5/MessageComposer/MessageComposer/EncryptJob include/KPim5/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog include/KPim5/MessageComposer/MessageComposer/FollowupReminder include/KPim5/MessageComposer/MessageComposer/FollowupReminderCreateJob include/KPim5/MessageComposer/MessageComposer/GlobalPart include/KPim5/MessageComposer/MessageComposer/ImageScalingWidget include/KPim5/MessageComposer/MessageComposer/InfoPart include/KPim5/MessageComposer/MessageComposer/InsertTextFileJob include/KPim5/MessageComposer/MessageComposer/ItipJob include/KPim5/MessageComposer/MessageComposer/ItipPart include/KPim5/MessageComposer/MessageComposer/JobBase include/KPim5/MessageComposer/MessageComposer/KeyResolver include/KPim5/MessageComposer/MessageComposer/Kleo_Util include/KPim5/MessageComposer/MessageComposer/MDNAdviceDialog include/KPim5/MessageComposer/MessageComposer/MDNAdviceHelper include/KPim5/MessageComposer/MessageComposer/MDNWarningWidgetJob include/KPim5/MessageComposer/MessageComposer/MainTextJob include/KPim5/MessageComposer/MessageComposer/MessageComposerSettings include/KPim5/MessageComposer/MessageComposer/MessageFactoryNG include/KPim5/MessageComposer/MessageComposer/MessageHelper include/KPim5/MessageComposer/MessageComposer/MessagePart include/KPim5/MessageComposer/MessageComposer/MessageSender include/KPim5/MessageComposer/MessageComposer/MultipartJob include/KPim5/MessageComposer/MessageComposer/PluginActionType include/KPim5/MessageComposer/MessageComposer/PluginComposerInterface include/KPim5/MessageComposer/MessageComposer/PluginEditor include/KPim5/MessageComposer/MessageComposer/PluginEditorBase include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager include/KPim5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams include/KPim5/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertText include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertTextInterface include/KPim5/MessageComposer/MessageComposer/PluginEditorConvertTextManager include/KPim5/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData include/KPim5/MessageComposer/MessageComposer/PluginEditorConverterInitialData include/KPim5/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KPim5/MessageComposer/MessageComposer/PluginEditorGrammarManager include/KPim5/MessageComposer/MessageComposer/PluginEditorInit include/KPim5/MessageComposer/MessageComposer/PluginEditorInitInterface include/KPim5/MessageComposer/MessageComposer/PluginEditorInitManager include/KPim5/MessageComposer/MessageComposer/PluginEditorInterface include/KPim5/MessageComposer/MessageComposer/PluginEditorManager include/KPim5/MessageComposer/MessageComposer/ProtectedHeadersJob include/KPim5/MessageComposer/MessageComposer/Recipient include/KPim5/MessageComposer/MessageComposer/RecipientLine include/KPim5/MessageComposer/MessageComposer/RecipientsEditor include/KPim5/MessageComposer/MessageComposer/RichTextComposerNg include/KPim5/MessageComposer/MessageComposer/RichTextComposerSignatures include/KPim5/MessageComposer/MessageComposer/SaveContactPreferenceJob include/KPim5/MessageComposer/MessageComposer/SendLaterCreateJob include/KPim5/MessageComposer/MessageComposer/SendLaterDialog include/KPim5/MessageComposer/MessageComposer/SendLaterInfo include/KPim5/MessageComposer/MessageComposer/SendLaterJob include/KPim5/MessageComposer/MessageComposer/SendLaterRemoveJob include/KPim5/MessageComposer/MessageComposer/SendLaterUtil include/KPim5/MessageComposer/MessageComposer/SignEncryptJob include/KPim5/MessageComposer/MessageComposer/SignJob include/KPim5/MessageComposer/MessageComposer/SignatureController include/KPim5/MessageComposer/MessageComposer/SinglepartJob include/KPim5/MessageComposer/MessageComposer/SkeletonMessageJob include/KPim5/MessageComposer/MessageComposer/StatusBarLabelToggledState include/KPim5/MessageComposer/MessageComposer/TextPart include/KPim5/MessageComposer/MessageComposer/TransparentJob include/KPim5/MessageComposer/MessageComposer/Util include/KPim5/MessageComposer/config-messagecomposer.h include/KPim5/MessageComposer/messagecomposer/abstractencryptjob.h include/KPim5/MessageComposer/messagecomposer/akonadisender.h include/KPim5/MessageComposer/messagecomposer/aliasesexpandjob.h include/KPim5/MessageComposer/messagecomposer/attachmentclipboardjob.h include/KPim5/MessageComposer/messagecomposer/attachmentcontrollerbase.h include/KPim5/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h include/KPim5/MessageComposer/messagecomposer/attachmentjob.h include/KPim5/MessageComposer/messagecomposer/attachmentmodel.h include/KPim5/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h include/KPim5/MessageComposer/messagecomposer/autocryptheadersjob.h include/KPim5/MessageComposer/messagecomposer/composer.h include/KPim5/MessageComposer/messagecomposer/composerattachmentinterface.h include/KPim5/MessageComposer/messagecomposer/composerlineedit.h include/KPim5/MessageComposer/messagecomposer/composerviewbase.h include/KPim5/MessageComposer/messagecomposer/composerviewinterface.h include/KPim5/MessageComposer/messagecomposer/contactpreference.h include/KPim5/MessageComposer/messagecomposer/contentjobbase.h include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablemenu.h include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablesjob.h include/KPim5/MessageComposer/messagecomposer/convertsnippetvariablesutil.h include/KPim5/MessageComposer/messagecomposer/draftstatus.h include/KPim5/MessageComposer/messagecomposer/editorwatcher.h include/KPim5/MessageComposer/messagecomposer/encryptjob.h include/KPim5/MessageComposer/messagecomposer/followupreminder.h include/KPim5/MessageComposer/messagecomposer/followupremindercreatejob.h include/KPim5/MessageComposer/messagecomposer/followupreminderselectdatedialog.h include/KPim5/MessageComposer/messagecomposer/globalpart.h include/KPim5/MessageComposer/messagecomposer/imagescalingwidget.h include/KPim5/MessageComposer/messagecomposer/infopart.h include/KPim5/MessageComposer/messagecomposer/inserttextfilejob.h include/KPim5/MessageComposer/messagecomposer/itipjob.h include/KPim5/MessageComposer/messagecomposer/itippart.h include/KPim5/MessageComposer/messagecomposer/jobbase.h include/KPim5/MessageComposer/messagecomposer/keyresolver.h include/KPim5/MessageComposer/messagecomposer/kleo_util.h include/KPim5/MessageComposer/messagecomposer/maintextjob.h include/KPim5/MessageComposer/messagecomposer/mdnadvicedialog.h include/KPim5/MessageComposer/messagecomposer/mdnadvicehelper.h include/KPim5/MessageComposer/messagecomposer/mdnwarningwidgetjob.h include/KPim5/MessageComposer/messagecomposer/messagecomposer_debug.h include/KPim5/MessageComposer/messagecomposer/messagecomposer_export.h include/KPim5/MessageComposer/messagecomposer/messagecomposersettings.h include/KPim5/MessageComposer/messagecomposer/messagecomposersettings_base.h include/KPim5/MessageComposer/messagecomposer/messagefactoryng.h include/KPim5/MessageComposer/messagecomposer/messagehelper.h include/KPim5/MessageComposer/messagecomposer/messagepart.h include/KPim5/MessageComposer/messagecomposer/messagesender.h include/KPim5/MessageComposer/messagecomposer/multipartjob.h include/KPim5/MessageComposer/messagecomposer/pluginactiontype.h include/KPim5/MessageComposer/messagecomposer/plugincomposerinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditor.h include/KPim5/MessageComposer/messagecomposer/plugineditorbase.h include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h include/KPim5/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h include/KPim5/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h include/KPim5/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KPim5/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h include/KPim5/MessageComposer/messagecomposer/plugineditorconverttext.h include/KPim5/MessageComposer/messagecomposer/plugineditorconverttextinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditorconverttextmanager.h include/KPim5/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditorgrammarmanager.h include/KPim5/MessageComposer/messagecomposer/plugineditorinit.h include/KPim5/MessageComposer/messagecomposer/plugineditorinitinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditorinitmanager.h include/KPim5/MessageComposer/messagecomposer/plugineditorinterface.h include/KPim5/MessageComposer/messagecomposer/plugineditormanager.h include/KPim5/MessageComposer/messagecomposer/protectedheadersjob.h include/KPim5/MessageComposer/messagecomposer/recipient.h include/KPim5/MessageComposer/messagecomposer/recipientline.h include/KPim5/MessageComposer/messagecomposer/recipientseditor.h include/KPim5/MessageComposer/messagecomposer/richtextcomposerng.h include/KPim5/MessageComposer/messagecomposer/richtextcomposersignatures.h include/KPim5/MessageComposer/messagecomposer/savecontactpreferencejob.h include/KPim5/MessageComposer/messagecomposer/sendlatercreatejob.h include/KPim5/MessageComposer/messagecomposer/sendlaterdialog.h include/KPim5/MessageComposer/messagecomposer/sendlaterinfo.h include/KPim5/MessageComposer/messagecomposer/sendlaterjob.h include/KPim5/MessageComposer/messagecomposer/sendlaterremovejob.h include/KPim5/MessageComposer/messagecomposer/sendlaterutil.h include/KPim5/MessageComposer/messagecomposer/signaturecontroller.h include/KPim5/MessageComposer/messagecomposer/signencryptjob.h include/KPim5/MessageComposer/messagecomposer/signjob.h include/KPim5/MessageComposer/messagecomposer/singlepartjob.h include/KPim5/MessageComposer/messagecomposer/skeletonmessagejob.h include/KPim5/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h include/KPim5/MessageComposer/messagecomposer/textpart.h include/KPim5/MessageComposer/messagecomposer/transparentjob.h include/KPim5/MessageComposer/messagecomposer/util.h include/KPim5/MessageComposer/messagecomposer_version.h include/KPim5/MessageCore/MessageCore/AttachmentCompressJob include/KPim5/MessageCore/MessageCore/AttachmentFromUrlBaseJob include/KPim5/MessageCore/MessageCore/AttachmentFromUrlUtils include/KPim5/MessageCore/MessageCore/AttachmentLoadJob include/KPim5/MessageCore/MessageCore/AttachmentPart include/KPim5/MessageCore/MessageCore/AttachmentPropertiesDialog include/KPim5/MessageCore/MessageCore/AttachmentUpdateJob include/KPim5/MessageCore/MessageCore/AutocryptRecipient include/KPim5/MessageCore/MessageCore/AutocryptStorage include/KPim5/MessageCore/MessageCore/AutocryptUtils include/KPim5/MessageCore/MessageCore/ColorUtil include/KPim5/MessageCore/MessageCore/ImageCollector include/KPim5/MessageCore/MessageCore/MailingList include/KPim5/MessageCore/MessageCore/MessageCoreSettings include/KPim5/MessageCore/MessageCore/NodeHelper include/KPim5/MessageCore/MessageCore/StringUtil include/KPim5/MessageCore/MessageCore/Util include/KPim5/MessageCore/messagecore/attachmentcompressjob.h include/KPim5/MessageCore/messagecore/attachmentfromurlbasejob.h include/KPim5/MessageCore/messagecore/attachmentfromurlutils.h include/KPim5/MessageCore/messagecore/attachmentloadjob.h include/KPim5/MessageCore/messagecore/attachmentpart.h include/KPim5/MessageCore/messagecore/attachmentpropertiesdialog.h include/KPim5/MessageCore/messagecore/attachmentupdatejob.h include/KPim5/MessageCore/messagecore/autocryptrecipient.h include/KPim5/MessageCore/messagecore/autocryptstorage.h include/KPim5/MessageCore/messagecore/autocryptutils.h include/KPim5/MessageCore/messagecore/colorutil.h include/KPim5/MessageCore/messagecore/globalsettings_messagecore.h include/KPim5/MessageCore/messagecore/imagecollector.h include/KPim5/MessageCore/messagecore/mailinglist.h include/KPim5/MessageCore/messagecore/messagecore_export.h include/KPim5/MessageCore/messagecore/messagecoresettings.h include/KPim5/MessageCore/messagecore/nodehelper.h include/KPim5/MessageCore/messagecore/stringutil.h include/KPim5/MessageCore/messagecore/util.h include/KPim5/MessageCore/messagecore_version.h include/KPim5/MessageList/MessageList/AggregationComboBox include/KPim5/MessageList/MessageList/AggregationConfigButton include/KPim5/MessageList/MessageList/Enums include/KPim5/MessageList/MessageList/MessageListUtil include/KPim5/MessageList/MessageList/Pane include/KPim5/MessageList/MessageList/QuickSearchLine include/KPim5/MessageList/MessageList/StorageModel include/KPim5/MessageList/MessageList/StorageModelBase include/KPim5/MessageList/MessageList/ThemeComboBox include/KPim5/MessageList/MessageList/ThemeConfigButton include/KPim5/MessageList/MessageList/View include/KPim5/MessageList/MessageList/WidgetBase include/KPim5/MessageList/messagelist/aggregationcombobox.h include/KPim5/MessageList/messagelist/aggregationconfigbutton.h include/KPim5/MessageList/messagelist/enums.h include/KPim5/MessageList/messagelist/messagelist_export.h include/KPim5/MessageList/messagelist/messagelistsettings.h include/KPim5/MessageList/messagelist/messagelistutil.h include/KPim5/MessageList/messagelist/pane.h include/KPim5/MessageList/messagelist/quicksearchline.h include/KPim5/MessageList/messagelist/storagemodel.h include/KPim5/MessageList/messagelist/storagemodelbase.h include/KPim5/MessageList/messagelist/themecombobox.h include/KPim5/MessageList/messagelist/themeconfigbutton.h include/KPim5/MessageList/messagelist/view.h include/KPim5/MessageList/messagelist/widgetbase.h include/KPim5/MessageList/messagelist_version.h include/KPim5/MessageViewer/MessageViewer/AttachmentStrategy include/KPim5/MessageViewer/MessageViewer/BodyPartURLHandler include/KPim5/MessageViewer/MessageViewer/BufferedHtmlWriter include/KPim5/MessageViewer/MessageViewer/CSSHelper include/KPim5/MessageViewer/MessageViewer/CSSHelperBase include/KPim5/MessageViewer/MessageViewer/ConfigureWidget include/KPim5/MessageViewer/MessageViewer/DKIMCheckPolicy include/KPim5/MessageViewer/MessageViewer/DKIMCheckSignatureJob include/KPim5/MessageViewer/MessageViewer/DKIMHeaderParser include/KPim5/MessageViewer/MessageViewer/DKIMInfo include/KPim5/MessageViewer/MessageViewer/DKIMKeyRecord include/KPim5/MessageViewer/MessageViewer/DKIMManageRulesDialog include/KPim5/MessageViewer/MessageViewer/DKIMManageRulesWidget include/KPim5/MessageViewer/MessageViewer/DKIMManager include/KPim5/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer include/KPim5/MessageViewer/MessageViewer/DKIMManagerKey include/KPim5/MessageViewer/MessageViewer/DKIMManagerKeyDialog include/KPim5/MessageViewer/MessageViewer/DKIMManagerKeyWidget include/KPim5/MessageViewer/MessageViewer/DKIMManagerRules include/KPim5/MessageViewer/MessageViewer/DKIMRule include/KPim5/MessageViewer/MessageViewer/DKIMViewerMenu include/KPim5/MessageViewer/MessageViewer/DKIMWidgetInfo include/KPim5/MessageViewer/MessageViewer/FileHtmlWriter include/KPim5/MessageViewer/MessageViewer/GrantleeHeaderStyle include/KPim5/MessageViewer/MessageViewer/GrantleeHeaderTestStyle include/KPim5/MessageViewer/MessageViewer/HeaderStrategy include/KPim5/MessageViewer/MessageViewer/HeaderStyle include/KPim5/MessageViewer/MessageViewer/HeaderStyleInterface include/KPim5/MessageViewer/MessageViewer/HeaderStyleMenuManager include/KPim5/MessageViewer/MessageViewer/HeaderStylePlugin include/KPim5/MessageViewer/MessageViewer/HeaderStylePluginManager include/KPim5/MessageViewer/MessageViewer/HeaderStyle_Util include/KPim5/MessageViewer/MessageViewer/HtmlBlock include/KPim5/MessageViewer/MessageViewer/HtmlWriter include/KPim5/MessageViewer/MessageViewer/IconNameCache include/KPim5/MessageViewer/MessageViewer/InvitationSettings include/KPim5/MessageViewer/MessageViewer/KXFace include/KPim5/MessageViewer/MessageViewer/MDNWarningWidget include/KPim5/MessageViewer/MessageViewer/MailWebEnginePage include/KPim5/MessageViewer/MessageViewer/MailWebEngineView include/KPim5/MessageViewer/MessageViewer/MarkMessageReadHandler include/KPim5/MessageViewer/MessageViewer/MessagePartRenderPlugin include/KPim5/MessageViewer/MessageViewer/MessagePartRendererBase include/KPim5/MessageViewer/MessageViewer/MessagePartRendererManager include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager include/KPim5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KPim5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KPim5/MessageViewer/MessageViewer/MessageViewerSettings include/KPim5/MessageViewer/MessageViewer/MessageViewerUtil include/KPim5/MessageViewer/MessageViewer/MimeType include/KPim5/MessageViewer/MessageViewer/ObjectTreeEmptySource include/KPim5/MessageViewer/MessageViewer/OpenUrlWithManager include/KPim5/MessageViewer/MessageViewer/OpenWithUrlInfo include/KPim5/MessageViewer/MessageViewer/PlainHeaderStyle include/KPim5/MessageViewer/MessageViewer/PrintingSettings include/KPim5/MessageViewer/MessageViewer/RemoteContentConfigureDialog include/KPim5/MessageViewer/MessageViewer/RemoteContentMenu include/KPim5/MessageViewer/MessageViewer/RichHeaderStrategy include/KPim5/MessageViewer/MessageViewer/ScamCheckShortUrl include/KPim5/MessageViewer/MessageViewer/ScamCheckShortUrlManager include/KPim5/MessageViewer/MessageViewer/ScamDetectionInfo include/KPim5/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager include/KPim5/MessageViewer/MessageViewer/ScamExpandUrlJob include/KPim5/MessageViewer/MessageViewer/SpamHeaderAnalyzer include/KPim5/MessageViewer/MessageViewer/Stl_Util include/KPim5/MessageViewer/MessageViewer/URLHandler include/KPim5/MessageViewer/MessageViewer/Viewer include/KPim5/MessageViewer/MessageViewer/ViewerPlugin include/KPim5/MessageViewer/MessageViewer/ViewerPluginInterface include/KPim5/MessageViewer/MessageViewer/ViewerPluginManager include/KPim5/MessageViewer/MessageViewer/ViewerPluginToolManager include/KPim5/MessageViewer/messageviewer/attachmentstrategy.h include/KPim5/MessageViewer/messageviewer/bodyparturlhandler.h include/KPim5/MessageViewer/messageviewer/bufferedhtmlwriter.h include/KPim5/MessageViewer/messageviewer/configurewidget.h include/KPim5/MessageViewer/messageviewer/csshelper.h include/KPim5/MessageViewer/messageviewer/csshelperbase.h include/KPim5/MessageViewer/messageviewer/dkimcheckpolicy.h include/KPim5/MessageViewer/messageviewer/dkimchecksignaturejob.h include/KPim5/MessageViewer/messageviewer/dkimheaderparser.h include/KPim5/MessageViewer/messageviewer/dkiminfo.h include/KPim5/MessageViewer/messageviewer/dkimkeyrecord.h include/KPim5/MessageViewer/messageviewer/dkimmanager.h include/KPim5/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h include/KPim5/MessageViewer/messageviewer/dkimmanagerkey.h include/KPim5/MessageViewer/messageviewer/dkimmanagerkeydialog.h include/KPim5/MessageViewer/messageviewer/dkimmanagerkeywidget.h include/KPim5/MessageViewer/messageviewer/dkimmanagerrules.h include/KPim5/MessageViewer/messageviewer/dkimmanagerulesdialog.h include/KPim5/MessageViewer/messageviewer/dkimmanageruleswidget.h include/KPim5/MessageViewer/messageviewer/dkimrule.h include/KPim5/MessageViewer/messageviewer/dkimviewermenu.h include/KPim5/MessageViewer/messageviewer/dkimwidgetinfo.h include/KPim5/MessageViewer/messageviewer/filehtmlwriter.h include/KPim5/MessageViewer/messageviewer/globalsettings_messageviewer.h include/KPim5/MessageViewer/messageviewer/grantleeheaderstyle.h include/KPim5/MessageViewer/messageviewer/grantleeheaderteststyle.h include/KPim5/MessageViewer/messageviewer/headerstrategy.h include/KPim5/MessageViewer/messageviewer/headerstyle.h include/KPim5/MessageViewer/messageviewer/headerstyle_util.h include/KPim5/MessageViewer/messageviewer/headerstyleinterface.h include/KPim5/MessageViewer/messageviewer/headerstylemenumanager.h include/KPim5/MessageViewer/messageviewer/headerstyleplugin.h include/KPim5/MessageViewer/messageviewer/headerstylepluginmanager.h include/KPim5/MessageViewer/messageviewer/htmlblock.h include/KPim5/MessageViewer/messageviewer/htmlwriter.h include/KPim5/MessageViewer/messageviewer/iconnamecache.h include/KPim5/MessageViewer/messageviewer/invitationsettings.h include/KPim5/MessageViewer/messageviewer/kxface.h include/KPim5/MessageViewer/messageviewer/mailwebenginepage.h include/KPim5/MessageViewer/messageviewer/mailwebengineview.h include/KPim5/MessageViewer/messageviewer/markmessagereadhandler.h include/KPim5/MessageViewer/messageviewer/mdnwarningwidget.h include/KPim5/MessageViewer/messageviewer/messagepartrendererbase.h include/KPim5/MessageViewer/messageviewer/messagepartrenderermanager.h include/KPim5/MessageViewer/messageviewer/messagepartrenderplugin.h include/KPim5/MessageViewer/messageviewer/messageviewer_debug.h include/KPim5/MessageViewer/messageviewer/messageviewer_export.h include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h include/KPim5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KPim5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KPim5/MessageViewer/messageviewer/messageviewersettings.h include/KPim5/MessageViewer/messageviewer/messageviewerutil.h include/KPim5/MessageViewer/messageviewer/mimetype.h include/KPim5/MessageViewer/messageviewer/objecttreeemptysource.h include/KPim5/MessageViewer/messageviewer/openurlwithmanager.h include/KPim5/MessageViewer/messageviewer/openwithurlinfo.h include/KPim5/MessageViewer/messageviewer/plainheaderstyle.h include/KPim5/MessageViewer/messageviewer/printingsettings.h include/KPim5/MessageViewer/messageviewer/remotecontentconfiguredialog.h include/KPim5/MessageViewer/messageviewer/remotecontentmenu.h include/KPim5/MessageViewer/messageviewer/richheaderstrategy.h include/KPim5/MessageViewer/messageviewer/scamcheckshorturl.h include/KPim5/MessageViewer/messageviewer/scamcheckshorturlmanager.h include/KPim5/MessageViewer/messageviewer/scamdetectioninfo.h include/KPim5/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h include/KPim5/MessageViewer/messageviewer/scamexpandurljob.h include/KPim5/MessageViewer/messageviewer/spamheaderanalyzer.h include/KPim5/MessageViewer/messageviewer/stl_util.h include/KPim5/MessageViewer/messageviewer/urlhandler.h include/KPim5/MessageViewer/messageviewer/viewer.h include/KPim5/MessageViewer/messageviewer/viewerplugin.h include/KPim5/MessageViewer/messageviewer/viewerplugininterface.h include/KPim5/MessageViewer/messageviewer/viewerpluginmanager.h include/KPim5/MessageViewer/messageviewer/viewerplugintoolmanager.h include/KPim5/MessageViewer/messageviewer_version.h include/KPim5/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs include/KPim5/MimeTreeParser/MimeTreeParser/BodyPart include/KPim5/MimeTreeParser/MimeTreeParser/BodyPartFormatter include/KPim5/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory include/KPim5/MimeTreeParser/MimeTreeParser/Enums include/KPim5/MimeTreeParser/MimeTreeParser/MessagePart include/KPim5/MimeTreeParser/MimeTreeParser/NodeHelper include/KPim5/MimeTreeParser/MimeTreeParser/ObjectTreeParser include/KPim5/MimeTreeParser/MimeTreeParser/ObjectTreeSource include/KPim5/MimeTreeParser/MimeTreeParser/PartMetaData include/KPim5/MimeTreeParser/MimeTreeParser/PartNodeBodyPart include/KPim5/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource include/KPim5/MimeTreeParser/MimeTreeParser/Util include/KPim5/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h include/KPim5/MimeTreeParser/mimetreeparser/bodypart.h include/KPim5/MimeTreeParser/mimetreeparser/bodypartformatter.h include/KPim5/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h include/KPim5/MimeTreeParser/mimetreeparser/enums.h include/KPim5/MimeTreeParser/mimetreeparser/messagepart.h include/KPim5/MimeTreeParser/mimetreeparser/mimetreeparser_export.h include/KPim5/MimeTreeParser/mimetreeparser/nodehelper.h include/KPim5/MimeTreeParser/mimetreeparser/objecttreeparser.h include/KPim5/MimeTreeParser/mimetreeparser/objecttreesource.h include/KPim5/MimeTreeParser/mimetreeparser/partmetadata.h include/KPim5/MimeTreeParser/mimetreeparser/partnodebodypart.h include/KPim5/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h include/KPim5/MimeTreeParser/mimetreeparser/util.h include/KPim5/MimeTreeParser/mimetreeparser_version.h include/KPim5/TemplateParser/TemplateParser/CustomTemplates include/KPim5/TemplateParser/TemplateParser/CustomTemplatesMenu include/KPim5/TemplateParser/TemplateParser/DefaultTemplates include/KPim5/TemplateParser/TemplateParser/TemplateConvertCommandJob include/KPim5/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase include/KPim5/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult include/KPim5/TemplateParser/TemplateParser/TemplateParserJob include/KPim5/TemplateParser/TemplateParser/TemplatesCommandMenu include/KPim5/TemplateParser/TemplateParser/TemplatesConfiguration include/KPim5/TemplateParser/TemplateParser/TemplatesInsertCommandAction include/KPim5/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton include/KPim5/TemplateParser/TemplateParser/TemplatesTextEdit include/KPim5/TemplateParser/TemplateParser/TemplatesUtil include/KPim5/TemplateParser/templateparser/customtemplates.h include/KPim5/TemplateParser/templateparser/customtemplates_kfg.h include/KPim5/TemplateParser/templateparser/customtemplatesmenu.h include/KPim5/TemplateParser/templateparser/defaulttemplates.h include/KPim5/TemplateParser/templateparser/globalsettings_templateparser.h include/KPim5/TemplateParser/templateparser/templateconvertcommandjob.h include/KPim5/TemplateParser/templateparser/templateparser_export.h include/KPim5/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h include/KPim5/TemplateParser/templateparser/templateparserextracthtmlinforesult.h include/KPim5/TemplateParser/templateparser/templateparserjob.h include/KPim5/TemplateParser/templateparser/templatescommandmenu.h include/KPim5/TemplateParser/templateparser/templatesconfiguration.h include/KPim5/TemplateParser/templateparser/templatesconfiguration_kfg.h include/KPim5/TemplateParser/templateparser/templatesinsertcommandaction.h include/KPim5/TemplateParser/templateparser/templatesinsertcommandpushbutton.h include/KPim5/TemplateParser/templateparser/templatestextedit.h include/KPim5/TemplateParser/templateparser/templatesutil.h include/KPim5/TemplateParser/templateparser/ui_templatesconfiguration_base.h include/KPim5/TemplateParser/templateparser_version.h include/KPim5/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor include/KPim5/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob include/KPim5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil include/KPim5/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KPim5/WebEngineViewer/WebEngineViewer/DeveloperToolDialog include/KPim5/WebEngineViewer/WebEngineViewer/FindBarBase include/KPim5/WebEngineViewer/WebEngineViewer/FindBarWebEngineView include/KPim5/WebEngineViewer/WebEngineViewer/HashCacheManager include/KPim5/WebEngineViewer/WebEngineViewer/InterceptorManager include/KPim5/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor include/KPim5/WebEngineViewer/WebEngineViewer/LocalDataBaseManager include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KPim5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KPim5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor include/KPim5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KPim5/WebEngineViewer/WebEngineViewer/SearchFullHashJob include/KPim5/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget include/KPim5/WebEngineViewer/WebEngineViewer/TrackingWarningWidget include/KPim5/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineAccessKey include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineExportHtmlPageJob include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineManageScript include/KPim5/WebEngineViewer/WebEngineViewer/WebEnginePage include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineScript include/KPim5/WebEngineViewer/WebEngineViewer/WebEngineView include/KPim5/WebEngineViewer/WebEngineViewer/WebHitTest include/KPim5/WebEngineViewer/WebEngineViewer/WebHitTestResult include/KPim5/WebEngineViewer/WebEngineViewer/ZoomActionMenu include/KPim5/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h include/KPim5/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h include/KPim5/WebEngineViewer/webengineviewer/checkphishingurlcache.h include/KPim5/WebEngineViewer/webengineviewer/checkphishingurljob.h include/KPim5/WebEngineViewer/webengineviewer/checkphishingurlutil.h include/KPim5/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h include/KPim5/WebEngineViewer/webengineviewer/developertooldialog.h include/KPim5/WebEngineViewer/webengineviewer/findbarbase.h include/KPim5/WebEngineViewer/webengineviewer/findbarwebengineview.h include/KPim5/WebEngineViewer/webengineviewer/hashcachemanager.h include/KPim5/WebEngineViewer/webengineviewer/interceptormanager.h include/KPim5/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h include/KPim5/WebEngineViewer/webengineviewer/localdatabasemanager.h include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KPim5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h include/KPim5/WebEngineViewer/webengineviewer/networkurlinterceptor.h include/KPim5/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h include/KPim5/WebEngineViewer/webengineviewer/searchfullhashjob.h include/KPim5/WebEngineViewer/webengineviewer/submittedformwarningwidget.h include/KPim5/WebEngineViewer/webengineviewer/trackingwarningwidget.h include/KPim5/WebEngineViewer/webengineviewer/updatedatabaseinfo.h include/KPim5/WebEngineViewer/webengineviewer/webengineaccesskey.h include/KPim5/WebEngineViewer/webengineviewer/webengineexporthtmlpagejob.h include/KPim5/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h include/KPim5/WebEngineViewer/webengineviewer/webenginemanagescript.h include/KPim5/WebEngineViewer/webengineviewer/webenginepage.h include/KPim5/WebEngineViewer/webengineviewer/webenginescript.h include/KPim5/WebEngineViewer/webengineviewer/webengineview.h include/KPim5/WebEngineViewer/webengineviewer/webengineviewer_export.h include/KPim5/WebEngineViewer/webengineviewer/webhittest.h include/KPim5/WebEngineViewer/webengineviewer/webhittestresult.h include/KPim5/WebEngineViewer/webengineviewer/zoomactionmenu.h include/KPim5/WebEngineViewer/webengineviewer_version.h lib/cmake/KPim5MessageComposer/KPim5MessageComposerConfig.cmake lib/cmake/KPim5MessageComposer/KPim5MessageComposerConfigVersion.cmake lib/cmake/KPim5MessageComposer/KPim5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5MessageComposer/KPim5MessageComposerTargets.cmake lib/cmake/KPim5MessageCore/KPim5MessageCoreConfig.cmake lib/cmake/KPim5MessageCore/KPim5MessageCoreConfigVersion.cmake lib/cmake/KPim5MessageCore/KPim5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5MessageCore/KPim5MessageCoreTargets.cmake lib/cmake/KPim5MessageList/KPim5MessageListConfig.cmake lib/cmake/KPim5MessageList/KPim5MessageListConfigVersion.cmake lib/cmake/KPim5MessageList/KPim5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5MessageList/KPim5MessageListTargets.cmake lib/cmake/KPim5MessageViewer/KPim5MessageViewerConfig.cmake lib/cmake/KPim5MessageViewer/KPim5MessageViewerConfigVersion.cmake lib/cmake/KPim5MessageViewer/KPim5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5MessageViewer/KPim5MessageViewerTargets.cmake lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserConfig.cmake lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserConfigVersion.cmake lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5MimeTreeParser/KPim5MimeTreeParserTargets.cmake lib/cmake/KPim5TemplateParser/KPim5TemplateParserConfig.cmake lib/cmake/KPim5TemplateParser/KPim5TemplateParserConfigVersion.cmake lib/cmake/KPim5TemplateParser/KPim5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5TemplateParser/KPim5TemplateParserTargets.cmake lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerConfig.cmake lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerConfigVersion.cmake lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5WebEngineViewer/KPim5WebEngineViewerTargets.cmake lib/libKPim5MessageComposer.so lib/libKPim5MessageComposer.so.5 lib/libKPim5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5MessageCore.so lib/libKPim5MessageCore.so.5 lib/libKPim5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5MessageList.so lib/libKPim5MessageList.so.5 lib/libKPim5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5MessageViewer.so lib/libKPim5MessageViewer.so.5 lib/libKPim5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5MimeTreeParser.so lib/libKPim5MimeTreeParser.so.5 lib/libKPim5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5TemplateParser.so lib/libKPim5TemplateParser.so.5 lib/libKPim5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPim5WebEngineViewer.so lib/libKPim5WebEngineViewer.so.5 lib/libKPim5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/pim5/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/af/LC_MESSAGES/libmessagelist.mo share/locale/af/LC_MESSAGES/libmessageviewer.mo share/locale/af/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/be/LC_MESSAGES/libmessagelist.mo share/locale/be/LC_MESSAGES/libmessageviewer.mo share/locale/be/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libmessagecomposer.mo share/locale/bg/LC_MESSAGES/libmessagecore.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libtemplateparser.mo share/locale/bg/LC_MESSAGES/libwebengineviewer.mo share/locale/bn/LC_MESSAGES/libmessagelist.mo share/locale/bn/LC_MESSAGES/libmessageviewer.mo share/locale/bn/LC_MESSAGES/libmimetreeparser.mo share/locale/br/LC_MESSAGES/libmessagelist.mo share/locale/br/LC_MESSAGES/libmessageviewer.mo share/locale/br/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/cy/LC_MESSAGES/libmessagelist.mo share/locale/cy/LC_MESSAGES/libmessageviewer.mo share/locale/cy/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/eo/LC_MESSAGES/libwebengineviewer.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagecomposer.mo +share/locale/eu/LC_MESSAGES/libmessagecore.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo +share/locale/eu/LC_MESSAGES/libtemplateparser.mo share/locale/eu/LC_MESSAGES/libwebengineviewer.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/fy/LC_MESSAGES/libmessagelist.mo share/locale/fy/LC_MESSAGES/libmessageviewer.mo share/locale/fy/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hsb/LC_MESSAGES/libmessagecomposer.mo share/locale/hsb/LC_MESSAGES/libmessagelist.mo share/locale/hsb/LC_MESSAGES/libmessageviewer.mo share/locale/hsb/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/hu/LC_MESSAGES/libwebengineviewer.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libwebengineviewer.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/ka/LC_MESSAGES/libmessagecomposer.mo share/locale/ka/LC_MESSAGES/libmessagecore.mo share/locale/ka/LC_MESSAGES/libmessagelist.mo share/locale/ka/LC_MESSAGES/libmessageviewer.mo share/locale/ka/LC_MESSAGES/libmimetreeparser.mo share/locale/ka/LC_MESSAGES/libtemplateparser.mo share/locale/ka/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lt/LC_MESSAGES/libwebengineviewer.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mai/LC_MESSAGES/libmessagelist.mo share/locale/mai/LC_MESSAGES/libmessageviewer.mo share/locale/mai/LC_MESSAGES/libmimetreeparser.mo share/locale/mai/LC_MESSAGES/libtemplateparser.mo share/locale/mk/LC_MESSAGES/libmessagelist.mo share/locale/mk/LC_MESSAGES/libmessageviewer.mo share/locale/mk/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/ms/LC_MESSAGES/libmessagelist.mo share/locale/ms/LC_MESSAGES/libmessageviewer.mo share/locale/ms/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/ne/LC_MESSAGES/libmessagelist.mo share/locale/ne/LC_MESSAGES/libmessageviewer.mo share/locale/ne/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/se/LC_MESSAGES/libmessagelist.mo share/locale/se/LC_MESSAGES/libmessageviewer.mo share/locale/se/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagecore.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessagelist.mo share/locale/sr@ijekavian/LC_MESSAGES/libmessageviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@ijekavian/LC_MESSAGES/libtemplateparser.mo share/locale/sr@ijekavian/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagelist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessageviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libtemplateparser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libwebengineviewer.mo share/locale/sr@latin/LC_MESSAGES/libmessagecomposer.mo share/locale/sr@latin/LC_MESSAGES/libmessagecore.mo share/locale/sr@latin/LC_MESSAGES/libmessagelist.mo share/locale/sr@latin/LC_MESSAGES/libmessageviewer.mo share/locale/sr@latin/LC_MESSAGES/libmimetreeparser.mo share/locale/sr@latin/LC_MESSAGES/libtemplateparser.mo share/locale/sr@latin/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/ta/LC_MESSAGES/libmessagecomposer.mo share/locale/ta/LC_MESSAGES/libmessagecore.mo share/locale/ta/LC_MESSAGES/libmessagelist.mo share/locale/ta/LC_MESSAGES/libmessageviewer.mo share/locale/ta/LC_MESSAGES/libmimetreeparser.mo share/locale/ta/LC_MESSAGES/libtemplateparser.mo share/locale/ta/LC_MESSAGES/libwebengineviewer.mo share/locale/tg/LC_MESSAGES/libmessagelist.mo share/locale/tg/LC_MESSAGES/libmessageviewer.mo share/locale/tg/LC_MESSAGES/libmimetreeparser.mo share/locale/th/LC_MESSAGES/libmessagecore.mo share/locale/th/LC_MESSAGES/libmessagelist.mo share/locale/th/LC_MESSAGES/libmessageviewer.mo share/locale/th/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/uz/LC_MESSAGES/libmessagelist.mo share/locale/uz/LC_MESSAGES/libmessageviewer.mo share/locale/uz/LC_MESSAGES/libmimetreeparser.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessagelist.mo share/locale/uz@cyrillic/LC_MESSAGES/libmessageviewer.mo share/locale/uz@cyrillic/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/xh/LC_MESSAGES/libmessagelist.mo share/locale/xh/LC_MESSAGES/libmessageviewer.mo share/locale/xh/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml share/qlogging-categories5/messagelib.categories share/qlogging-categories5/messagelib.renamecategories diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 13b3a2a36704..a8af1a099d54 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203642 -SHA256 (KDE/release-service/23.08.0/pimcommon-23.08.0.tar.xz) = bb81856d1bc1bb3e2fd00198f2429e6d0ace04b294b1167a61b386a294f424e0 -SIZE (KDE/release-service/23.08.0/pimcommon-23.08.0.tar.xz) = 348956 +TIMESTAMP = 1694551418 +SHA256 (KDE/release-service/23.08.1/pimcommon-23.08.1.tar.xz) = 67993cf689bd477a9887e09b4bd8dc7742f5156695c20ff59e1835aa01a059dc +SIZE (KDE/release-service/23.08.1/pimcommon-23.08.1.tar.xz) = 348892 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index bda34aaa0601..cb91fcce272b 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203426 -SHA256 (KDE/release-service/23.08.0/print-manager-23.08.0.tar.xz) = 9ba1b2c4c4f3cc52b61dfa9f63c352f612300ae3e4457e86b69f87871f5fe426 -SIZE (KDE/release-service/23.08.0/print-manager-23.08.0.tar.xz) = 289352 +TIMESTAMP = 1694551560 +SHA256 (KDE/release-service/23.08.1/print-manager-23.08.1.tar.xz) = 0f65a3ef35755a4c1bd15c5fb2dccc2ffbc4f8c91594b072649856f50fe31720 +SIZE (KDE/release-service/23.08.1/print-manager-23.08.1.tar.xz) = 289360 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 001f848028ca..e75f9c13f320 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203424 -SHA256 (KDE/release-service/23.08.0/kalzium-23.08.0.tar.xz) = 1e9d23675c93ad559b57e6f98c8b9f47366459d66a1e792860836f4dd84c466e -SIZE (KDE/release-service/23.08.0/kalzium-23.08.0.tar.xz) = 24641428 +TIMESTAMP = 1694551373 +SHA256 (KDE/release-service/23.08.1/kalzium-23.08.1.tar.xz) = 892b9e1c98622b4a40a0648f6c5f5df1adf42b2d6c4ffc27bd1a07e51537f4de +SIZE (KDE/release-service/23.08.1/kalzium-23.08.1.tar.xz) = 24642560 diff --git a/science/step/distinfo b/science/step/distinfo index 4d5cd61e8177..f6f06351c5b7 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203425 -SHA256 (KDE/release-service/23.08.0/step-23.08.0.tar.xz) = 1b7b7fe5abd843092884fd5c60afbd244fe87c8d9640a2ab0711fe9f0e2d0b8d -SIZE (KDE/release-service/23.08.0/step-23.08.0.tar.xz) = 994896 +TIMESTAMP = 1694551360 +SHA256 (KDE/release-service/23.08.1/step-23.08.1.tar.xz) = 4e683a78ee2289678787491826b1824c2c067563c2519255919474025050ee80 +SIZE (KDE/release-service/23.08.1/step-23.08.1.tar.xz) = 994752 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 026db1e319e2..e790af39c1d2 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203609 -SHA256 (KDE/release-service/23.08.0/keysmith-23.08.0.tar.xz) = 0159d96968ea97708d0cca2665aaf1468fa37bd05d4d90266407552458ca40f5 -SIZE (KDE/release-service/23.08.0/keysmith-23.08.0.tar.xz) = 163324 +TIMESTAMP = 1694551315 +SHA256 (KDE/release-service/23.08.1/keysmith-23.08.1.tar.xz) = 52c3dff6be4987531cc851bd33fae1e0822de301b65566d1cf700690396d4c13 +SIZE (KDE/release-service/23.08.1/keysmith-23.08.1.tar.xz) = 163440 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 840fcfc51091..8eee42409de5 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203611 -SHA256 (KDE/release-service/23.08.0/kgpg-23.08.0.tar.xz) = 6a84438a671a67797963ff125b9dee87917cdfda127ab8521cdb84bb8fd91893 -SIZE (KDE/release-service/23.08.0/kgpg-23.08.0.tar.xz) = 3045856 +TIMESTAMP = 1694551314 +SHA256 (KDE/release-service/23.08.1/kgpg-23.08.1.tar.xz) = 4d2dd855a45871ca792802d6e733a0e4b06824fd51946f50996d56f41701e1e1 +SIZE (KDE/release-service/23.08.1/kgpg-23.08.1.tar.xz) = 3045816 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index ec779e7855d5..3627ab295090 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203605 -SHA256 (KDE/release-service/23.08.0/kleopatra-23.08.0.tar.xz) = b88f20217bd5f1855dda84c5304c015b5cc860a748f9deff28c488c50236255f -SIZE (KDE/release-service/23.08.0/kleopatra-23.08.0.tar.xz) = 2678288 +TIMESTAMP = 1694551319 +SHA256 (KDE/release-service/23.08.1/kleopatra-23.08.1.tar.xz) = ca5386fb338713b660370d7114c9f0c4120fc922f0c94887aeeb29df582583f7 +SIZE (KDE/release-service/23.08.1/kleopatra-23.08.1.tar.xz) = 2683012 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index cd30904f83bc..fe11dd49b3fc 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203603 -SHA256 (KDE/release-service/23.08.0/kpkpass-23.08.0.tar.xz) = 9713707e416e3351ec6344e0a428074c1927f5a53b335966b1c95b4cf07f460b -SIZE (KDE/release-service/23.08.0/kpkpass-23.08.0.tar.xz) = 29368 +TIMESTAMP = 1694551320 +SHA256 (KDE/release-service/23.08.1/kpkpass-23.08.1.tar.xz) = 5b93bf199b3bff03f99e44c97c755d8cae747daa053c3728080803f51d386b81 +SIZE (KDE/release-service/23.08.1/kpkpass-23.08.1.tar.xz) = 29368 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index a122552fc852..23a40aa9c9ac 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203607 -SHA256 (KDE/release-service/23.08.0/kwalletmanager-23.08.0.tar.xz) = d8e1f2137b541d4aa88e57d30ee77223f47c0e9fa63a308941287bb81012c341 -SIZE (KDE/release-service/23.08.0/kwalletmanager-23.08.0.tar.xz) = 851296 +TIMESTAMP = 1694551316 +SHA256 (KDE/release-service/23.08.1/kwalletmanager-23.08.1.tar.xz) = 30cad3be391b3a7e38b6ee9cdc1ff3dc932814ea8beb303199c9358721048de4 +SIZE (KDE/release-service/23.08.1/kwalletmanager-23.08.1.tar.xz) = 851324 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index a812d8854660..a1414f511d2d 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203609 -SHA256 (KDE/release-service/23.08.0/libkleo-23.08.0.tar.xz) = ccaf8b7ea9c16100ea5602be77b4661a582fddb6f14ede4c32ef23582cac0701 -SIZE (KDE/release-service/23.08.0/libkleo-23.08.0.tar.xz) = 548592 +TIMESTAMP = 1694551318 +SHA256 (KDE/release-service/23.08.1/libkleo-23.08.1.tar.xz) = a129f7ad71d6ba295a7f36771a28c7665d23b3887da238f7e3240b49214dab1d +SIZE (KDE/release-service/23.08.1/libkleo-23.08.1.tar.xz) = 549468 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index ea3e05581258..e70a303d41ef 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203411 -SHA256 (KDE/release-service/23.08.0/baloo-widgets-23.08.0.tar.xz) = f47b6ddcded425137007c882c684dbe835057147a0ffa1b56d6865917601d65c -SIZE (KDE/release-service/23.08.0/baloo-widgets-23.08.0.tar.xz) = 276828 +TIMESTAMP = 1694551507 +SHA256 (KDE/release-service/23.08.1/baloo-widgets-23.08.1.tar.xz) = 39806d8df0c49b7ea772f735c7ae44769a145f9f4f698908b98868f02617b057 +SIZE (KDE/release-service/23.08.1/baloo-widgets-23.08.1.tar.xz) = 276816 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 6265b0883c86..a9578fee157a 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203414 -SHA256 (KDE/release-service/23.08.0/filelight-23.08.0.tar.xz) = 2c16cff975b8d292061524c28700c641da7ce129e9937c984af5ef288bb776e2 -SIZE (KDE/release-service/23.08.0/filelight-23.08.0.tar.xz) = 698508 +TIMESTAMP = 1694551494 +SHA256 (KDE/release-service/23.08.1/filelight-23.08.1.tar.xz) = 92599e5b11cce1493d16ca1b1602aa7ed8aaf94fede2ca4c133174e85e0aac2c +SIZE (KDE/release-service/23.08.1/filelight-23.08.1.tar.xz) = 698468 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 119dab3b0157..cf55ad97f49d 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203410 -SHA256 (KDE/release-service/23.08.0/k3b-23.08.0.tar.xz) = e643feca11d5e6e43b05e00359aee5e01920e25b04ff0e5a126b98395ca77cff -SIZE (KDE/release-service/23.08.0/k3b-23.08.0.tar.xz) = 10966060 +TIMESTAMP = 1694551488 +SHA256 (KDE/release-service/23.08.1/k3b-23.08.1.tar.xz) = 25547379656d98e3d25df9d582c6c99b1ef3772d7ddd655e80cb078dfa90600f +SIZE (KDE/release-service/23.08.1/k3b-23.08.1.tar.xz) = 10966764 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 72a0b36962c4..5a1aac9e74aa 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203397 -SHA256 (KDE/release-service/23.08.0/kbackup-23.08.0.tar.xz) = cafa01cd57951ab91907f1ec1bd45adbdf2bb3727585cdfb231a23a845ce2145 -SIZE (KDE/release-service/23.08.0/kbackup-23.08.0.tar.xz) = 397612 +TIMESTAMP = 1694551486 +SHA256 (KDE/release-service/23.08.1/kbackup-23.08.1.tar.xz) = 8d3a35bcb6944473d0a0b553e9868c8a9bc07b5004080924c02bc64db1b966b1 +SIZE (KDE/release-service/23.08.1/kbackup-23.08.1.tar.xz) = 397640 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 17e25a431de3..e6860112c2b7 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203404 -SHA256 (KDE/release-service/23.08.0/kcron-23.08.0.tar.xz) = 90ea69d9e9abe0d0d742db310f6e59f1db1f61301efb8be7b74d455b8f7a3ff9 -SIZE (KDE/release-service/23.08.0/kcron-23.08.0.tar.xz) = 941700 +TIMESTAMP = 1694551492 +SHA256 (KDE/release-service/23.08.1/kcron-23.08.1.tar.xz) = 56cdd58db91e514611110eeadcac95c9c54a17959470a96e8189d6a6f61049e8 +SIZE (KDE/release-service/23.08.1/kcron-23.08.1.tar.xz) = 941692 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index d731051e267f..c8dd928da0fb 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203403 -SHA256 (KDE/release-service/23.08.0/kdebugsettings-23.08.0.tar.xz) = 8d588a379025fe4165760d8ac959a89cecf0141bdee8424d715ecb52ac4310a9 -SIZE (KDE/release-service/23.08.0/kdebugsettings-23.08.0.tar.xz) = 107516 +TIMESTAMP = 1694551516 +SHA256 (KDE/release-service/23.08.1/kdebugsettings-23.08.1.tar.xz) = 245bf21de95fcd9ea2c31eec9ea610b7d8a97059d5d00a42500c2192a3f04bd5 +SIZE (KDE/release-service/23.08.1/kdebugsettings-23.08.1.tar.xz) = 107520 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 4309be3ef10b..ba8c2c73f284 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203408 -SHA256 (KDE/release-service/23.08.0/kdf-23.08.0.tar.xz) = b8656734c2d21e00ab865c5c1b0cbee84c4539d731db8dafc0de21bd8e72aff4 -SIZE (KDE/release-service/23.08.0/kdf-23.08.0.tar.xz) = 492464 +TIMESTAMP = 1694551521 +SHA256 (KDE/release-service/23.08.1/kdf-23.08.1.tar.xz) = 7ccbfd53c37b77afd8ed23ab488653091298f4419c2aef4001768dbdac819379 +SIZE (KDE/release-service/23.08.1/kdf-23.08.1.tar.xz) = 493888 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 8f756f07c672..f22314d34552 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203415 -SHA256 (KDE/release-service/23.08.0/kdialog-23.08.0.tar.xz) = 1650943f3c21a6213e4db347ca5b29d8278b2842d9a0f6108f629c1d408b95c0 -SIZE (KDE/release-service/23.08.0/kdialog-23.08.0.tar.xz) = 143048 +TIMESTAMP = 1694551519 +SHA256 (KDE/release-service/23.08.1/kdialog-23.08.1.tar.xz) = 6e68e68da3217700626cfe52728ecfe8a72f2b8d2be717774262c8b7608c8ef7 +SIZE (KDE/release-service/23.08.1/kdialog-23.08.1.tar.xz) = 143044 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 64d0d5f34775..9e94158cf79e 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203401 -SHA256 (KDE/release-service/23.08.0/khelpcenter-23.08.0.tar.xz) = 96715e06fc2f491fa447965bbd319cf5ca1f546dba7a5edce14a34d619243ebc -SIZE (KDE/release-service/23.08.0/khelpcenter-23.08.0.tar.xz) = 4368772 +TIMESTAMP = 1694551498 +SHA256 (KDE/release-service/23.08.1/khelpcenter-23.08.1.tar.xz) = c94ae472ac2ac0961d0d756a6dcb718e33a644ef993aed2c175a0cdbf8e24813 +SIZE (KDE/release-service/23.08.1/khelpcenter-23.08.1.tar.xz) = 4368844 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 81309fb735f2..452a3c67dd61 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203407 -SHA256 (KDE/release-service/23.08.0/kpmcore-23.08.0.tar.xz) = 8d327ac4761a00f75a6f18e57f4d2f30ab464067141df3ef193b9c841c679387 -SIZE (KDE/release-service/23.08.0/kpmcore-23.08.0.tar.xz) = 623392 +TIMESTAMP = 1694551501 +SHA256 (KDE/release-service/23.08.1/kpmcore-23.08.1.tar.xz) = 9d398da4b6b9b6be94cbdabd0255daa3697019ebba8d45eabadab44c076d75db +SIZE (KDE/release-service/23.08.1/kpmcore-23.08.1.tar.xz) = 623408 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 9501cb5be3c8..0d95bb118948 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203400 -SHA256 (KDE/release-service/23.08.0/ksystemlog-23.08.0.tar.xz) = 7d48f37adaf61c148527400ca0fbd45206e298e2716075b4b1871e712fb30c4d -SIZE (KDE/release-service/23.08.0/ksystemlog-23.08.0.tar.xz) = 2004636 +TIMESTAMP = 1694551503 +SHA256 (KDE/release-service/23.08.1/ksystemlog-23.08.1.tar.xz) = 8a630ee06063a0f20c230622b4f9517d14e9e4fd9641b549d48496e63684cc72 +SIZE (KDE/release-service/23.08.1/ksystemlog-23.08.1.tar.xz) = 2004536 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index cd723ecaeeef..3b6c6bcc0256 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203398 -SHA256 (KDE/release-service/23.08.0/signon-kwallet-extension-23.08.0.tar.xz) = a1b879765bdab9fbbb97b7d3e8dacfbd9f90b81d4238966c430862516c4dd743 -SIZE (KDE/release-service/23.08.0/signon-kwallet-extension-23.08.0.tar.xz) = 11228 +TIMESTAMP = 1694551517 +SHA256 (KDE/release-service/23.08.1/signon-kwallet-extension-23.08.1.tar.xz) = a284401ddb2b24e17ffb3bdaa98aae6d04824aee0616f740e32fecb53af42f2d +SIZE (KDE/release-service/23.08.1/signon-kwallet-extension-23.08.1.tar.xz) = 11228 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f1d6177daa2f..2b24dcae0aa6 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203413 -SHA256 (KDE/release-service/23.08.0/sweeper-23.08.0.tar.xz) = 6ac709de3ab720b3faeea6af5bae681bee2760fc9a1821b869e700f7131173bc -SIZE (KDE/release-service/23.08.0/sweeper-23.08.0.tar.xz) = 398432 +TIMESTAMP = 1694551513 +SHA256 (KDE/release-service/23.08.1/sweeper-23.08.1.tar.xz) = a0ed245936e70deb72a779e9c333f2c888d691fb7ed4c07b17f6751594c3b32d +SIZE (KDE/release-service/23.08.1/sweeper-23.08.1.tar.xz) = 398376 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 5697717fc47b..840a08a06ce9 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203518 -SHA256 (KDE/release-service/23.08.0/kompare-23.08.0.tar.xz) = e1cb78eb6054c92e3febd7e32ef54724114ce97a6df91e9197bef671d55870ba -SIZE (KDE/release-service/23.08.0/kompare-23.08.0.tar.xz) = 983708 +TIMESTAMP = 1694551290 +SHA256 (KDE/release-service/23.08.1/kompare-23.08.1.tar.xz) = 1458c3fdfb017e2c96588624944d2515e2109402ede447ac70381e6b96d08cd9 +SIZE (KDE/release-service/23.08.1/kompare-23.08.1.tar.xz) = 983736 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 1365ab7d5733..8e5083c9b1d6 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203517 -SHA256 (KDE/release-service/23.08.0/libkomparediff2-23.08.0.tar.xz) = 54c8f30382aa85db97525ac11ad73aff59fbc273eb6161959041fda39e84e5e1 -SIZE (KDE/release-service/23.08.0/libkomparediff2-23.08.0.tar.xz) = 187972 +TIMESTAMP = 1694551289 +SHA256 (KDE/release-service/23.08.1/libkomparediff2-23.08.1.tar.xz) = e2d5597bf1c82c897a106e37cbc56572915f14abc9c0a7da76da62e6a61b4f08 +SIZE (KDE/release-service/23.08.1/libkomparediff2-23.08.1.tar.xz) = 187944 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 7ef7c13f2413..d23169d15ce5 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203516 -SHA256 (KDE/release-service/23.08.0/markdownpart-23.08.0.tar.xz) = d6970f5c19a083e357d80e09c65fec009ba81988f79bdd7a38cf4249ed7eb235 -SIZE (KDE/release-service/23.08.0/markdownpart-23.08.0.tar.xz) = 31508 +TIMESTAMP = 1694551288 +SHA256 (KDE/release-service/23.08.1/markdownpart-23.08.1.tar.xz) = 4a6595b2fac97e38e101d713f35f08aa6daec9e3f46b782bc337176ac5a01158 +SIZE (KDE/release-service/23.08.1/markdownpart-23.08.1.tar.xz) = 31492 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 44f9d42749e1..237065c986b5 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203519 -SHA256 (KDE/release-service/23.08.0/falkon-23.08.0.tar.xz) = 62a586e8f8c25402400a38d002e8cf70b6f45377dada02bf54cb87a847b1e571 -SIZE (KDE/release-service/23.08.0/falkon-23.08.0.tar.xz) = 2571348 +TIMESTAMP = 1694551558 +SHA256 (KDE/release-service/23.08.1/falkon-23.08.1.tar.xz) = ae10856181cf75ee51be94d8c961b9757c5b78dde0cef797f7ce60011704e569 +SIZE (KDE/release-service/23.08.1/falkon-23.08.1.tar.xz) = 2572008 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 4408cd8a6b2d..9a3cc3287bcf 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203429 -SHA256 (KDE/release-service/23.08.0/kteatime-23.08.0.tar.xz) = 41b6428adae522a8c54cf6906205dde90c241ef3f5b193dda889ce2d81a7895b -SIZE (KDE/release-service/23.08.0/kteatime-23.08.0.tar.xz) = 312424 +TIMESTAMP = 1694551557 +SHA256 (KDE/release-service/23.08.1/kteatime-23.08.1.tar.xz) = 4d4f0e313e4aae37670cf40df615aba05d448adfa33eb9418dc5094341012a5f +SIZE (KDE/release-service/23.08.1/kteatime-23.08.1.tar.xz) = 313996 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index f5a9508e04b7..211db0c34638 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203428 -SHA256 (KDE/release-service/23.08.0/ktimer-23.08.0.tar.xz) = 4c6fba281f6e517b4eb9b88d90acc2279e43624173e096dbdab9aa91bb83b419 -SIZE (KDE/release-service/23.08.0/ktimer-23.08.0.tar.xz) = 404624 +TIMESTAMP = 1694551556 +SHA256 (KDE/release-service/23.08.1/ktimer-23.08.1.tar.xz) = a78c2167ee48affd1cb984dab6c39cca4bd561131bf6d06287e70a46a46584b1 +SIZE (KDE/release-service/23.08.1/ktimer-23.08.1.tar.xz) = 404624 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 153675274af0..e9d6b41637ca 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203340 -SHA256 (KDE/release-service/23.08.0/dolphin-23.08.0.tar.xz) = 4ab0f3ee83c0c62f7346031780d46a57d4002f6585c2de3fadfa6708e4ff59de -SIZE (KDE/release-service/23.08.0/dolphin-23.08.0.tar.xz) = 5759420 +TIMESTAMP = 1694551483 +SHA256 (KDE/release-service/23.08.1/dolphin-23.08.1.tar.xz) = 05ce21772ee91482f72151c1ef9ddcb62ccff5fc3cd297117215082ba1ec15e6 +SIZE (KDE/release-service/23.08.1/dolphin-23.08.1.tar.xz) = 5759636 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index c8ba95249cfa..f32183f50594 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203343 -SHA256 (KDE/release-service/23.08.0/konqueror-23.08.0.tar.xz) = a31f9096745ea9169260bac0b818304e54999063ff0718798710a60e9eaaf9f5 -SIZE (KDE/release-service/23.08.0/konqueror-23.08.0.tar.xz) = 10066736 +TIMESTAMP = 1694551484 +SHA256 (KDE/release-service/23.08.1/konqueror-23.08.1.tar.xz) = ce290a231cc0428681347acab9b6512cc6e8ed2a01b4c552e8eb4b2f89f0706d +SIZE (KDE/release-service/23.08.1/konqueror-23.08.1.tar.xz) = 10067692 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 39b46312e9b3..8472070f6a42 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203420 -SHA256 (KDE/release-service/23.08.0/konsole-23.08.0.tar.xz) = 31d26bd9454dcb93eb81222e83e91f1027164d578e9379bf81515d59f473fa9c -SIZE (KDE/release-service/23.08.0/konsole-23.08.0.tar.xz) = 1827212 +TIMESTAMP = 1694551285 +SHA256 (KDE/release-service/23.08.1/konsole-23.08.1.tar.xz) = 1ea81c62e150243ba178463418e6caf01bcca5bded37992b8a1bd87dffca1f4c +SIZE (KDE/release-service/23.08.1/konsole-23.08.1.tar.xz) = 1827052 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index d71247cfb1c2..5fbb17d89d1c 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1693203418 -SHA256 (KDE/release-service/23.08.0/yakuake-23.08.0.tar.xz) = 05836c72d7cc4d27f2069b45137d250fdbd73c108013af53e74de62c39cbe2e0 -SIZE (KDE/release-service/23.08.0/yakuake-23.08.0.tar.xz) = 428848 +TIMESTAMP = 1694551286 +SHA256 (KDE/release-service/23.08.1/yakuake-23.08.1.tar.xz) = e919626f1267a72a52c6ba9b2b356677a861766711e8c0be894b1bbd833eb54a +SIZE (KDE/release-service/23.08.1/yakuake-23.08.1.tar.xz) = 428832