diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 2eded7e4e263..6ca97fa91f10 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1063 +1,1063 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] 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 6 . 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 ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} . if ${CATEGORIES:Mkde-devel} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} PKGNAMESUFFIX?= -devel . else KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS5_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS5_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS5_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS5_SHLIB_G_VER} . endif # Current KDE desktop. KDE_PLASMA5_VERSION?= 5.27.10 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop KDE_PLASMA6_VERSION?= 5.92.0 KDE_PLASMA6_BRANCH?= unstable # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.114.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 5.248.0 KDE_FRAMEWORKS6_BRANCH?= unstable # Current KDE applications. -KDE_APPLICATIONS5_VERSION?= 23.08.4 -KDE_APPLICATIONS5_SHLIB_VER?= 5.24.4 +KDE_APPLICATIONS5_VERSION?= 23.08.5 +KDE_APPLICATIONS5_SHLIB_VER?= 5.24.5 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.4 +KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.5 KDE_APPLICATIONS5_BRANCH?= stable # Next KDE applications. KDE_APPLICATIONS6_VERSION?= 24.01.90 KDE_APPLICATIONS6_SHLIB_VER?= 5.24.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS6_SHLIB_G_VER?= 24.01.90 KDE_APPLICATIONS6_BRANCH?= unstable # 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 kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . 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?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- 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 khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . 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 . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . 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 KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/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 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_FRAMEWORKS5_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 # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # 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 oxygen-sounds 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 \ kirigami-addons # 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_PHONON_ALL= phonon phonon-backend _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} \ ${_USE_PHONON_ALL} # TODO: fix _USE_KDE6_ALL= ecm colorscheme \ svg \ plasma-wayland-protocols \ mediaplayer \ ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ plasma5support activities activities-stats kpipewire wayland globalacceld libplasma \ ${_USE_PHONON_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica5_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica5_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo5_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo5_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} kde-ecm_PORT= devel/kf${_KDE_VERSION}-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.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/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH5= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_KDE_VERSION}} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== 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= libKF${_KDE_VERSION}TextAutoCorrectionCore.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= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF${_KDE_VERSION}KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.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 kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.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 fcc3cb4fc3f0..3b2217621899 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959014 -SHA256 (KDE/release-service/23.08.4/kmag-23.08.4.tar.xz) = 2d5fea10505c48eb9f90edd12637e633db5fc9271db26669dce2270ae8b2b289 -SIZE (KDE/release-service/23.08.4/kmag-23.08.4.tar.xz) = 725948 +TIMESTAMP = 1707889461 +SHA256 (KDE/release-service/23.08.5/kmag-23.08.5.tar.xz) = 256f63781c7aebcd10a83953446a5c974deae78e21a84d6b6d8c22e6db494ec9 +SIZE (KDE/release-service/23.08.5/kmag-23.08.5.tar.xz) = 725968 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 46df30a0c5e1..fe5ef8283a6a 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959015 -SHA256 (KDE/release-service/23.08.4/kmousetool-23.08.4.tar.xz) = 25746906497328315ce5536cf77607085b5b322382a80fcb91728efeab1e278a -SIZE (KDE/release-service/23.08.4/kmousetool-23.08.4.tar.xz) = 131008 +TIMESTAMP = 1707889461 +SHA256 (KDE/release-service/23.08.5/kmousetool-23.08.5.tar.xz) = df3b9295de1df284fd4dcd154ca92d3187992d926b834ccbf3ab833541839507 +SIZE (KDE/release-service/23.08.5/kmousetool-23.08.5.tar.xz) = 130964 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 1d5cedead41c..916a7da514f7 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959016 -SHA256 (KDE/release-service/23.08.4/kmouth-23.08.4.tar.xz) = 32f5d265d28ec334a39042bdbe3918d2a8a13c4d8f73faccf577b051cff2c121 -SIZE (KDE/release-service/23.08.4/kmouth-23.08.4.tar.xz) = 2091512 +TIMESTAMP = 1707889462 +SHA256 (KDE/release-service/23.08.5/kmouth-23.08.5.tar.xz) = 96d499fa0983f0189fcddbea419a872878ed5a3ffc34742a12223577062e4a97 +SIZE (KDE/release-service/23.08.5/kmouth-23.08.5.tar.xz) = 2091588 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 5b877a2290ac..15b48046c182 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958895 -SHA256 (KDE/release-service/23.08.4/ark-23.08.4.tar.xz) = 222426ca788b3ba286c619ee6f9228e5f256d5e013d45ea7ef5d322fdb9eaa9e -SIZE (KDE/release-service/23.08.4/ark-23.08.4.tar.xz) = 3017820 +TIMESTAMP = 1707889364 +SHA256 (KDE/release-service/23.08.5/ark-23.08.5.tar.xz) = 6081c564e2d4e25113691483d2cf3843461a9db6c726e1e547fa9a9697aecfeb +SIZE (KDE/release-service/23.08.5/ark-23.08.5.tar.xz) = 3018696 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 0278e22d239c..3c1c9041c654 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959001 -SHA256 (KDE/release-service/23.08.4/kosmindoormap-23.08.4.tar.xz) = 2c7e08ba732d38b178d62840b751bba9ff5261519cb5a82257de3ea42a50fcf0 -SIZE (KDE/release-service/23.08.4/kosmindoormap-23.08.4.tar.xz) = 380016 +TIMESTAMP = 1707889450 +SHA256 (KDE/release-service/23.08.5/kosmindoormap-23.08.5.tar.xz) = 647bd4e37536502543494c8db8fcaa2f0a485c396920ee69e5238f367a48ab03 +SIZE (KDE/release-service/23.08.5/kosmindoormap-23.08.5.tar.xz) = 384948 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index d96628206868..31f60432645f 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,84 +1,85 @@ include/KOSM/Datatypes include/KOSM/Element include/KOSMIndoorMap/EquipmentModel include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/kosm_export.h include/kosm/stringpool.h include/kosmindoormap/equipmentmodel.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/de/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo +share/locale/eu/LC_MESSAGES/kosmindoormap.mo share/locale/fi/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/ja/LC_MESSAGES/kosmindoormap.mo share/locale/ka/LC_MESSAGES/kosmindoormap.mo share/locale/ko/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/ru/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/tr/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/locale/zh_TW/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 8b5e730e8164..a9934b4867a4 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959000 -SHA256 (KDE/release-service/23.08.4/marble-23.08.4.tar.xz) = cf2955b8cced2f09923c362346bc5d6b0aa318adda65105fe7c438c7becb7a8f -SIZE (KDE/release-service/23.08.4/marble-23.08.4.tar.xz) = 53784524 +TIMESTAMP = 1707889449 +SHA256 (KDE/release-service/23.08.5/marble-23.08.5.tar.xz) = 856cff312725f9644b05cc92d3e437712311d96927e6aa008a44df1c0f4a0b88 +SIZE (KDE/release-service/23.08.5/marble-23.08.5.tar.xz) = 53786140 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index f3533e7a0a82..cbcfd1ad8a50 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958902 -SHA256 (KDE/release-service/23.08.4/audiocd-kio-23.08.4.tar.xz) = ec9f1fd293f9ec6399043fd61989ed7eb12d35473427a6716c70d5c2ca232f04 -SIZE (KDE/release-service/23.08.4/audiocd-kio-23.08.4.tar.xz) = 564532 +TIMESTAMP = 1707889370 +SHA256 (KDE/release-service/23.08.5/audiocd-kio-23.08.5.tar.xz) = 55c8bce983456532b799ad785525fbf36e3381e90388d1016b4b31c7f14023c7 +SIZE (KDE/release-service/23.08.5/audiocd-kio-23.08.5.tar.xz) = 565064 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index dd204f487fb9..873c510adb6e 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958898 -SHA256 (KDE/release-service/23.08.4/elisa-23.08.4.tar.xz) = aac8bbd15c8ae7740ae46c48e968d8b950a8f8aaa9081736c0cf08e5c99d5143 -SIZE (KDE/release-service/23.08.4/elisa-23.08.4.tar.xz) = 1814588 +TIMESTAMP = 1707889367 +SHA256 (KDE/release-service/23.08.5/elisa-23.08.5.tar.xz) = 872cc4f1be3177c92906bf1b47d7f36729e3c4a741099c7a62d8b170eb02b4c2 +SIZE (KDE/release-service/23.08.5/elisa-23.08.5.tar.xz) = 1814776 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 137e8744afde..efc3f02909e7 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958903 -SHA256 (KDE/release-service/23.08.4/juk-23.08.4.tar.xz) = 595d2138756ab360929d3f9fc9faca0c2f65090511e86847105e8720512029ab -SIZE (KDE/release-service/23.08.4/juk-23.08.4.tar.xz) = 2081852 +TIMESTAMP = 1707889370 +SHA256 (KDE/release-service/23.08.5/juk-23.08.5.tar.xz) = c774267da46c80f36dd4bf5b247831cb34b16f9c11e7be114371697175a1ad71 +SIZE (KDE/release-service/23.08.5/juk-23.08.5.tar.xz) = 2088240 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 607ddce85e58..6333d0042b35 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958901 -SHA256 (KDE/release-service/23.08.4/kmix-23.08.4.tar.xz) = e1c0e511bb0bb8c722730d08ad41cc160016bf9401143744ac3d5f7623e35e44 -SIZE (KDE/release-service/23.08.4/kmix-23.08.4.tar.xz) = 1208572 +TIMESTAMP = 1707889369 +SHA256 (KDE/release-service/23.08.5/kmix-23.08.5.tar.xz) = 8671aca9dbe50c82885c2b346461488dc491645eb09728fa75c33492e42c8180 +SIZE (KDE/release-service/23.08.5/kmix-23.08.5.tar.xz) = 1208736 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 8705c66550ec..3409d7135195 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958897 -SHA256 (KDE/release-service/23.08.4/kwave-23.08.4.tar.xz) = 985002f793a1b6912dd9cc965ff71f27409f36c21cfed0b12a0487793fba2c72 -SIZE (KDE/release-service/23.08.4/kwave-23.08.4.tar.xz) = 6982484 +TIMESTAMP = 1707889366 +SHA256 (KDE/release-service/23.08.5/kwave-23.08.5.tar.xz) = c6183a93e9e545265035c589ec7d059772507e493546d9b25117a520d2cfc408 +SIZE (KDE/release-service/23.08.5/kwave-23.08.5.tar.xz) = 6983092 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index fb69f5b634a1..9b1d69a76aee 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958899 -SHA256 (KDE/release-service/23.08.4/libkcddb-23.08.4.tar.xz) = 29370b170cc763b789bafbe157fe83e2688fae2fdcf512404624864996950a8c -SIZE (KDE/release-service/23.08.4/libkcddb-23.08.4.tar.xz) = 451368 +TIMESTAMP = 1707889367 +SHA256 (KDE/release-service/23.08.5/libkcddb-23.08.5.tar.xz) = 43d29b785a7217ac27bc94ce1b1827eaaf0191a13c56162eb23b07bd3fccf9c5 +SIZE (KDE/release-service/23.08.5/libkcddb-23.08.5.tar.xz) = 451388 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 2ccbfe5376ba..4eed2a0776df 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958900 -SHA256 (KDE/release-service/23.08.4/libkcompactdisc-23.08.4.tar.xz) = f10fbbf1ed0b8df0f565293ebe2b58cb3a26923baca119ba554567754f92d698 -SIZE (KDE/release-service/23.08.4/libkcompactdisc-23.08.4.tar.xz) = 99392 +TIMESTAMP = 1707889368 +SHA256 (KDE/release-service/23.08.5/libkcompactdisc-23.08.5.tar.xz) = 6f524a40c8b0ceef8420d5abc37696864909b0d71ab106fde4a23ac3a24d96ff +SIZE (KDE/release-service/23.08.5/libkcompactdisc-23.08.5.tar.xz) = 99360 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 9c741952b146..0a04279adfac 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958905 -SHA256 (KDE/release-service/23.08.4/akonadi-23.08.4.tar.xz) = 63fb0372e935d4cc55af14f2b869f6042ed878813f98e6660204b3bb80ed4936 -SIZE (KDE/release-service/23.08.4/akonadi-23.08.4.tar.xz) = 1662596 +TIMESTAMP = 1707889372 +SHA256 (KDE/release-service/23.08.5/akonadi-23.08.5.tar.xz) = abdbdb28c1084a6ad119d7292175ad31efb4a7898a32cc32a35aa1485d9c4f38 +SIZE (KDE/release-service/23.08.5/akonadi-23.08.5.tar.xz) = 1662512 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index a232505b7317..b98f371bf5b9 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958993 -SHA256 (KDE/release-service/23.08.4/akonadi-calendar-tools-23.08.4.tar.xz) = 2cf7f153ef53c3b6e93720735b643354b6d98f12294d1ad5e10d99096524429f -SIZE (KDE/release-service/23.08.4/akonadi-calendar-tools-23.08.4.tar.xz) = 255892 +TIMESTAMP = 1707889444 +SHA256 (KDE/release-service/23.08.5/akonadi-calendar-tools-23.08.5.tar.xz) = 83bb42484096a86922dae11381bd19ffec71b4a5906ce806ec2a59ca425880aa +SIZE (KDE/release-service/23.08.5/akonadi-calendar-tools-23.08.5.tar.xz) = 255924 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index b99ccc3fc21c..4abd89eeb0a7 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958975 -SHA256 (KDE/release-service/23.08.4/akonadi-import-wizard-23.08.4.tar.xz) = e239536545f748a19eb9e12e1f295b337a4621e5ebf7c734d22bedc4a119f322 -SIZE (KDE/release-service/23.08.4/akonadi-import-wizard-23.08.4.tar.xz) = 515092 +TIMESTAMP = 1707889429 +SHA256 (KDE/release-service/23.08.5/akonadi-import-wizard-23.08.5.tar.xz) = 3cc996bc0436eaa61cac4730624ce5096efdbd0dd57d4e91689e81c5d6994da6 +SIZE (KDE/release-service/23.08.5/akonadi-import-wizard-23.08.5.tar.xz) = 515068 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index f7650ed18460..98a52e0f93eb 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958988 -SHA256 (KDE/release-service/23.08.4/akonadiconsole-23.08.4.tar.xz) = 1b4a1333f905ede4aef374a7b81f39d86dfb469c34908eaaf94cf87edacddbf6 -SIZE (KDE/release-service/23.08.4/akonadiconsole-23.08.4.tar.xz) = 282184 +TIMESTAMP = 1707889440 +SHA256 (KDE/release-service/23.08.5/akonadiconsole-23.08.5.tar.xz) = 61c84dfa88bb81380df1645ee65672646b96c7b2ac544540228ff2b609bb2a9c +SIZE (KDE/release-service/23.08.5/akonadiconsole-23.08.5.tar.xz) = 286164 diff --git a/deskutils/akonadiconsole/pkg-plist b/deskutils/akonadiconsole/pkg-plist index c960dbb480a1..0d1bd6fc358c 100644 --- a/deskutils/akonadiconsole/pkg-plist +++ b/deskutils/akonadiconsole/pkg-plist @@ -1,38 +1,39 @@ bin/akonadiconsole lib/libakonadiconsole.so.5 lib/libakonadiconsole.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.akonadiconsole.desktop share/icons/hicolor/128x128/apps/akonadiconsole.png share/icons/hicolor/16x16/apps/akonadiconsole.png share/icons/hicolor/22x22/apps/akonadiconsole.png share/icons/hicolor/256x256/apps/akonadiconsole.png share/icons/hicolor/32x32/apps/akonadiconsole.png share/icons/hicolor/48x48/apps/akonadiconsole.png share/icons/hicolor/64x64/apps/akonadiconsole.png share/locale/ca/LC_MESSAGES/akonadiconsole.mo share/locale/ca@valencia/LC_MESSAGES/akonadiconsole.mo share/locale/cs/LC_MESSAGES/akonadiconsole.mo share/locale/de/LC_MESSAGES/akonadiconsole.mo share/locale/en_GB/LC_MESSAGES/akonadiconsole.mo share/locale/es/LC_MESSAGES/akonadiconsole.mo share/locale/eu/LC_MESSAGES/akonadiconsole.mo share/locale/fi/LC_MESSAGES/akonadiconsole.mo share/locale/fr/LC_MESSAGES/akonadiconsole.mo +share/locale/hu/LC_MESSAGES/akonadiconsole.mo share/locale/ia/LC_MESSAGES/akonadiconsole.mo share/locale/it/LC_MESSAGES/akonadiconsole.mo share/locale/ja/LC_MESSAGES/akonadiconsole.mo share/locale/ka/LC_MESSAGES/akonadiconsole.mo share/locale/ko/LC_MESSAGES/akonadiconsole.mo share/locale/lt/LC_MESSAGES/akonadiconsole.mo share/locale/nl/LC_MESSAGES/akonadiconsole.mo share/locale/pl/LC_MESSAGES/akonadiconsole.mo share/locale/pt/LC_MESSAGES/akonadiconsole.mo share/locale/ru/LC_MESSAGES/akonadiconsole.mo share/locale/sk/LC_MESSAGES/akonadiconsole.mo share/locale/sl/LC_MESSAGES/akonadiconsole.mo share/locale/sv/LC_MESSAGES/akonadiconsole.mo share/locale/tr/LC_MESSAGES/akonadiconsole.mo share/locale/uk/LC_MESSAGES/akonadiconsole.mo share/locale/zh_CN/LC_MESSAGES/akonadiconsole.mo share/qlogging-categories5/akonadiconsole.categories share/qlogging-categories5/akonadiconsole.renamecategories diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 0e4d2a76ffdb..fa2a0a526658 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958992 -SHA256 (KDE/release-service/23.08.4/akregator-23.08.4.tar.xz) = 5bdefc5dc3376bf504f97bd7209187ba591dc8ec3ee8105f3fd0768238fb4fdf -SIZE (KDE/release-service/23.08.4/akregator-23.08.4.tar.xz) = 2323108 +TIMESTAMP = 1707889443 +SHA256 (KDE/release-service/23.08.5/akregator-23.08.5.tar.xz) = 52371f872a56d4fb98b54f80ee5659c59ba6ab6ca8ffa5e8fbd54c49f868028b +SIZE (KDE/release-service/23.08.5/akregator-23.08.5.tar.xz) = 2324604 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 61422e07da4e..0aed4f21a3da 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958999 -SHA256 (KDE/release-service/23.08.4/grantlee-editor-23.08.4.tar.xz) = cc13d0c20b3a18301be0ba5be047ee65d6bc858a2e7e3b10d42fbdb788fb9f29 -SIZE (KDE/release-service/23.08.4/grantlee-editor-23.08.4.tar.xz) = 117584 +TIMESTAMP = 1707889449 +SHA256 (KDE/release-service/23.08.5/grantlee-editor-23.08.5.tar.xz) = 32cdd5850eaf60f612a7c289afa3ce371847631a31082b8164cd9b57d7290a8c +SIZE (KDE/release-service/23.08.5/grantlee-editor-23.08.5.tar.xz) = 117568 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 1bffb887acc7..cf635cd4f24d 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958990 -SHA256 (KDE/release-service/23.08.4/grantleetheme-23.08.4.tar.xz) = d81c9454d86f568218f852dbe31e67d0e547ea6d3ead5b1fe5c7267f20a5c32d -SIZE (KDE/release-service/23.08.4/grantleetheme-23.08.4.tar.xz) = 63216 +TIMESTAMP = 1707889442 +SHA256 (KDE/release-service/23.08.5/grantleetheme-23.08.5.tar.xz) = 686381b3a0fb0d28e415f9fc9a66633d3c17e75fc2696bf486491bdb3ff242f5 +SIZE (KDE/release-service/23.08.5/grantleetheme-23.08.5.tar.xz) = 63212 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index d8e6a8b5522f..f2317c9e96c3 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958976 -SHA256 (KDE/release-service/23.08.4/itinerary-23.08.4.tar.xz) = 1cfa1cfc0592c18d68e7e66a121be06ab7eabe6cbde02838620b885c4615ab49 -SIZE (KDE/release-service/23.08.4/itinerary-23.08.4.tar.xz) = 640036 +TIMESTAMP = 1707889430 +SHA256 (KDE/release-service/23.08.5/itinerary-23.08.5.tar.xz) = 42e38c9b0e147eb5223212470055c7dd3283ae7052c8537b565435a2889927a7 +SIZE (KDE/release-service/23.08.5/itinerary-23.08.5.tar.xz) = 640096 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 12fc7be1f2b5..19f685712ec2 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958991 -SHA256 (KDE/release-service/23.08.4/kaddressbook-23.08.4.tar.xz) = 0d6c926fe4f6b139dbc0b84c4c87d3b5482c97d8f81b86756d1502d641504286 -SIZE (KDE/release-service/23.08.4/kaddressbook-23.08.4.tar.xz) = 3458660 +TIMESTAMP = 1707889442 +SHA256 (KDE/release-service/23.08.5/kaddressbook-23.08.5.tar.xz) = a8417ee3dd57bd33950b56b10c9048e74510ff29c42f3b4f8e4529ccf49a8b22 +SIZE (KDE/release-service/23.08.5/kaddressbook-23.08.5.tar.xz) = 3458708 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 1cc5e282c7a7..b300b3485497 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958995 -SHA256 (KDE/release-service/23.08.4/kalarm-23.08.4.tar.xz) = 21b20bc594a8d3e28959fa05102128011b9d1c9b288e568f2073c61293e8126e -SIZE (KDE/release-service/23.08.4/kalarm-23.08.4.tar.xz) = 2622400 +TIMESTAMP = 1707889445 +SHA256 (KDE/release-service/23.08.5/kalarm-23.08.5.tar.xz) = 09dff0fe2dc201377950a6dcc5e47989459b2ffa9a4e102e0c4df24241bd05bd +SIZE (KDE/release-service/23.08.5/kalarm-23.08.5.tar.xz) = 2630096 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 97f7652a0146..18b109b3e277 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958987 -SHA256 (KDE/release-service/23.08.4/kcharselect-23.08.4.tar.xz) = 53a093196b70a39b522e1d2120ee568a73146ff0e571dedcac9a9cce50aa8d95 -SIZE (KDE/release-service/23.08.4/kcharselect-23.08.4.tar.xz) = 384524 +TIMESTAMP = 1707889439 +SHA256 (KDE/release-service/23.08.5/kcharselect-23.08.5.tar.xz) = bf22326c021188261031219c95b507524e3c1f0875de2ca87cf2dc940de86386 +SIZE (KDE/release-service/23.08.5/kcharselect-23.08.5.tar.xz) = 384536 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 9460f51f5a37..a78c6fa5ad92 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958982 -SHA256 (KDE/release-service/23.08.4/kdeconnect-kde-23.08.4.tar.xz) = 0bd5a45a31da21d0e5939930059fad23b608efa727db6ff020166912db78f871 -SIZE (KDE/release-service/23.08.4/kdeconnect-kde-23.08.4.tar.xz) = 656748 +TIMESTAMP = 1707889435 +SHA256 (KDE/release-service/23.08.5/kdeconnect-kde-23.08.5.tar.xz) = 4b42cd66f824b9ba2ddd09c7147b2abe6107ac866104033a78c0c46909300d64 +SIZE (KDE/release-service/23.08.5/kdeconnect-kde-23.08.5.tar.xz) = 657504 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index e9a9be56f136..4a800f3c18c7 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958989 -SHA256 (KDE/release-service/23.08.4/kdepim-addons-23.08.4.tar.xz) = 3bef596058a18f1c73456e730095a21ab4550e37bd2f4030e6cfd8fb4efaabe3 -SIZE (KDE/release-service/23.08.4/kdepim-addons-23.08.4.tar.xz) = 2652624 +TIMESTAMP = 1707889441 +SHA256 (KDE/release-service/23.08.5/kdepim-addons-23.08.5.tar.xz) = 58d3e9af2666fe971b5230fed61114c555c9bddc35fd8397cb60ba8d37dd44b0 +SIZE (KDE/release-service/23.08.5/kdepim-addons-23.08.5.tar.xz) = 2652304 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 4435e26ef2ae..7c77ee3ce570 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958984 -SHA256 (KDE/release-service/23.08.4/kdepim-runtime-23.08.4.tar.xz) = c2c2211f8c1d0abc44523f72a414313517932c1efc236b9a81e6c4f28e7c1da1 -SIZE (KDE/release-service/23.08.4/kdepim-runtime-23.08.4.tar.xz) = 1869568 +TIMESTAMP = 1707889437 +SHA256 (KDE/release-service/23.08.5/kdepim-runtime-23.08.5.tar.xz) = fe1b07d62f167bc168fc3a3590db0a7f7383687803a7d0da8b0c0e1b3ac577f7 +SIZE (KDE/release-service/23.08.5/kdepim-runtime-23.08.5.tar.xz) = 1869936 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index c60d3a45d9fe..adc01ca0709d 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958980 -SHA256 (KDE/release-service/23.08.4/keditbookmarks-23.08.4.tar.xz) = 7a2284021bc268b58a723b77a94f9b5cf5e20029a6115ee5c4e66dac3c95bf93 -SIZE (KDE/release-service/23.08.4/keditbookmarks-23.08.4.tar.xz) = 239640 +TIMESTAMP = 1707889433 +SHA256 (KDE/release-service/23.08.5/keditbookmarks-23.08.5.tar.xz) = 6d6ae29e9b7fc550b17bd2e375abf2b5642b8e05af7755883ad56d9fa7a00ac1 +SIZE (KDE/release-service/23.08.5/keditbookmarks-23.08.5.tar.xz) = 239624 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index b1444ed52118..fb42e57ef5ae 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958986 -SHA256 (KDE/release-service/23.08.4/kfind-23.08.4.tar.xz) = 70524ccbaac7fd6ed1325d5941d611fbaa6eb90208916a35bad85ebb380d4edf -SIZE (KDE/release-service/23.08.4/kfind-23.08.4.tar.xz) = 344740 +TIMESTAMP = 1707889439 +SHA256 (KDE/release-service/23.08.5/kfind-23.08.5.tar.xz) = ba14e9ec9f79ff8b7a8a434e9b3d2545a6297e3fe53bafe82b3dbc061d8c2ec8 +SIZE (KDE/release-service/23.08.5/kfind-23.08.5.tar.xz) = 344828 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index ccb4ef9aa89b..131b62e6a593 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958984 -SHA256 (KDE/release-service/23.08.4/kmail-account-wizard-23.08.4.tar.xz) = ca20565754bfcdc0f3c00b23e0a12677cec131fbc45f28061839d3152f60c116 -SIZE (KDE/release-service/23.08.4/kmail-account-wizard-23.08.4.tar.xz) = 185668 +TIMESTAMP = 1707889436 +SHA256 (KDE/release-service/23.08.5/kmail-account-wizard-23.08.5.tar.xz) = 2789e52cbb4d6a081875c390cf49ad75904071373c635b509b262c8d9eff5dba +SIZE (KDE/release-service/23.08.5/kmail-account-wizard-23.08.5.tar.xz) = 185768 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 3788f1e2ad25..bc09d3810bf7 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958977 -SHA256 (KDE/release-service/23.08.4/kmail-23.08.4.tar.xz) = 5ba68338667535a6b6a40c8923cb818a52b9a15ba4ee344994af429b6f6ce582 -SIZE (KDE/release-service/23.08.4/kmail-23.08.4.tar.xz) = 7667812 +TIMESTAMP = 1707889431 +SHA256 (KDE/release-service/23.08.5/kmail-23.08.5.tar.xz) = 7138ac647b82208c2d93f142ca1bac2cd080c2bd9a81145d1dbd0471ba2ab755 +SIZE (KDE/release-service/23.08.5/kmail-23.08.5.tar.xz) = 7669124 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index b6d1afd3cca7..7f6ab8b31ca4 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958996 -SHA256 (KDE/release-service/23.08.4/knotes-23.08.4.tar.xz) = ed2e21768bb9c5c3d7a6e0fb5588762c02b4a0310bd60115925ee309aad4a9f6 -SIZE (KDE/release-service/23.08.4/knotes-23.08.4.tar.xz) = 377664 +TIMESTAMP = 1707889446 +SHA256 (KDE/release-service/23.08.5/knotes-23.08.5.tar.xz) = a63fba06f0a2897d95e40c7085658e3333a2c1e399369dcf715b36f1417002ae +SIZE (KDE/release-service/23.08.5/knotes-23.08.5.tar.xz) = 378896 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 886d6e0b6470..f1dde967a51e 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958985 -SHA256 (KDE/release-service/23.08.4/kontact-23.08.4.tar.xz) = f747ebca89c1657f8110b89106a7c98633a16c81349041cd006b481a72367389 -SIZE (KDE/release-service/23.08.4/kontact-23.08.4.tar.xz) = 876388 +TIMESTAMP = 1707889438 +SHA256 (KDE/release-service/23.08.5/kontact-23.08.5.tar.xz) = a6eb22b7b5de6541a45a487a94e8b5fb9a1fa84f9826baee86f378f0932f40dc +SIZE (KDE/release-service/23.08.5/kontact-23.08.5.tar.xz) = 876316 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 56a138651da5..56768bc18dee 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958994 -SHA256 (KDE/release-service/23.08.4/korganizer-23.08.4.tar.xz) = 53f779089895b16f29712df0e9cd09a0d926d06d6092b461614ab25276cb2b83 -SIZE (KDE/release-service/23.08.4/korganizer-23.08.4.tar.xz) = 2566568 +TIMESTAMP = 1707889445 +SHA256 (KDE/release-service/23.08.5/korganizer-23.08.5.tar.xz) = c4a6be6aa61301e8d72187feb94ce98d0dac44eeba338ca07cb6d4d395cdedc1 +SIZE (KDE/release-service/23.08.5/korganizer-23.08.5.tar.xz) = 2566660 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 3395fd2e50e0..90d6d93697df 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958981 -SHA256 (KDE/release-service/23.08.4/kruler-23.08.4.tar.xz) = b59ccf65d48abd38139d2d98e6984ab4ab8744163caf447926d2e61bb9bd0523 -SIZE (KDE/release-service/23.08.4/kruler-23.08.4.tar.xz) = 288464 +TIMESTAMP = 1707889434 +SHA256 (KDE/release-service/23.08.5/kruler-23.08.5.tar.xz) = 1a6babd1175943a4fbb5d57a2eb7094d94b2aa7f82e88d92e9b8456fd2cf343e +SIZE (KDE/release-service/23.08.5/kruler-23.08.5.tar.xz) = 288536 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 47b242e57e62..7c7445c1f23f 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958978 -SHA256 (KDE/release-service/23.08.4/libkdepim-23.08.4.tar.xz) = ff68425958e85bf0e028658be0e054f27d26b1f2a3ddf6b84258d3e18b0eea65 -SIZE (KDE/release-service/23.08.4/libkdepim-23.08.4.tar.xz) = 285312 +TIMESTAMP = 1707889432 +SHA256 (KDE/release-service/23.08.5/libkdepim-23.08.5.tar.xz) = 6e1e2e7416a3cb1d9fdc41257ba034c40a55bf1d870d15c71a22f29adfb5db9f +SIZE (KDE/release-service/23.08.5/libkdepim-23.08.5.tar.xz) = 285476 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 728df92ec5e5..d3ce4daf0c8c 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958997 -SHA256 (KDE/release-service/23.08.4/mbox-importer-23.08.4.tar.xz) = bfaee974d2d907d2e95a3b948a754702f950b7745881a206bb535d7e69b6d1de -SIZE (KDE/release-service/23.08.4/mbox-importer-23.08.4.tar.xz) = 30088 +TIMESTAMP = 1707889447 +SHA256 (KDE/release-service/23.08.5/mbox-importer-23.08.5.tar.xz) = 5fda29665fdaaf2bb704859f21cfa018a441243ec78ab6cc0c48e3717e3420ab +SIZE (KDE/release-service/23.08.5/mbox-importer-23.08.5.tar.xz) = 30112 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 4dea6cf342f0..5949cba692ae 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958979 -SHA256 (KDE/release-service/23.08.4/merkuro-23.08.4.tar.xz) = f2123c7a1bda410ab8c8168311bc7a6e72abc51ab2408bef7c4da991e35eaee5 -SIZE (KDE/release-service/23.08.4/merkuro-23.08.4.tar.xz) = 981940 +TIMESTAMP = 1707889432 +SHA256 (KDE/release-service/23.08.5/merkuro-23.08.5.tar.xz) = 9a5d0ed11985e0fbfdd58d538b8d0fa1c7fd34a5679baa427092ac0439874297 +SIZE (KDE/release-service/23.08.5/merkuro-23.08.5.tar.xz) = 981888 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index f530719f44c6..fb5488afed43 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958983 -SHA256 (KDE/release-service/23.08.4/pim-data-exporter-23.08.4.tar.xz) = 430f48750b05b1648d267539cad05584f35f16b93fb11f1f9fb688cbc5db1c5a -SIZE (KDE/release-service/23.08.4/pim-data-exporter-23.08.4.tar.xz) = 427752 +TIMESTAMP = 1707889435 +SHA256 (KDE/release-service/23.08.5/pim-data-exporter-23.08.5.tar.xz) = 6c06e27af8db8dc12c23d6539d27a5b9b02529a723b1860c02870954d5a7bf2b +SIZE (KDE/release-service/23.08.5/pim-data-exporter-23.08.5.tar.xz) = 427796 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 6ca70e90aa04..010672e9c73e 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958974 -SHA256 (KDE/release-service/23.08.4/pim-sieve-editor-23.08.4.tar.xz) = 0b7a66f6ffd88ed01ace44172fcd6fd5ff323588dbe231e065f8a24d84a074ae -SIZE (KDE/release-service/23.08.4/pim-sieve-editor-23.08.4.tar.xz) = 466140 +TIMESTAMP = 1707889429 +SHA256 (KDE/release-service/23.08.5/pim-sieve-editor-23.08.5.tar.xz) = 5ddaa148b36bc871dc4921ef1e38153533a4b89860e9c6ea11f4737a5032e5e4 +SIZE (KDE/release-service/23.08.5/pim-sieve-editor-23.08.5.tar.xz) = 466164 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 2782df3d0a22..6588e0e57f83 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958998 -SHA256 (KDE/release-service/23.08.4/zanshin-23.08.4.tar.xz) = a07680309f457c838221453f6a2f36f8581017de672f56a52eb7e7665e82b92b -SIZE (KDE/release-service/23.08.4/zanshin-23.08.4.tar.xz) = 363320 +TIMESTAMP = 1707889448 +SHA256 (KDE/release-service/23.08.5/zanshin-23.08.5.tar.xz) = c0f95e1c07d0d23bfac05474129740b8f0928c038d2b3144344b98316365f56e +SIZE (KDE/release-service/23.08.5/zanshin-23.08.5.tar.xz) = 365784 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index f48136023a0f..54fa57486f63 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958868 -SHA256 (KDE/release-service/23.08.4/cervisia-23.08.4.tar.xz) = 41be442b11e0a2eda27709c76a167f752620f5efe33ff1649a591483946c9ed6 -SIZE (KDE/release-service/23.08.4/cervisia-23.08.4.tar.xz) = 1947104 +TIMESTAMP = 1707889344 +SHA256 (KDE/release-service/23.08.5/cervisia-23.08.5.tar.xz) = 608946f590f2b6efb994c0809fecbcbab03574d318a3d5973de3d4839eb17f1f +SIZE (KDE/release-service/23.08.5/cervisia-23.08.5.tar.xz) = 1947044 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index a34f856186d8..4f5477082afd 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958862 -SHA256 (KDE/release-service/23.08.4/dolphin-plugins-23.08.4.tar.xz) = 9c411fdf09f506b9952017b41d7f46e0696ac2ae46da1489735e47d35fab33d4 -SIZE (KDE/release-service/23.08.4/dolphin-plugins-23.08.4.tar.xz) = 274180 +TIMESTAMP = 1707889339 +SHA256 (KDE/release-service/23.08.5/dolphin-plugins-23.08.5.tar.xz) = 2f448eea478dc178b2bb92071ad1a5fe85404879519be6534914fd865e6bc05d +SIZE (KDE/release-service/23.08.5/dolphin-plugins-23.08.5.tar.xz) = 274124 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index d0aae76daab6..e5f9b55731a6 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958855 -SHA256 (KDE/release-service/23.08.4/kapptemplate-23.08.4.tar.xz) = dd7f7dd7af53c663661f9d27bd6a47e0c35add4af86c175c983a7a29a443f9bc -SIZE (KDE/release-service/23.08.4/kapptemplate-23.08.4.tar.xz) = 340024 +TIMESTAMP = 1707889334 +SHA256 (KDE/release-service/23.08.5/kapptemplate-23.08.5.tar.xz) = 9b78d6997761b10ad19f6d8ec05379896ade2c64f63272d26b3b099a82485651 +SIZE (KDE/release-service/23.08.5/kapptemplate-23.08.5.tar.xz) = 339976 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 0cc1cdfe7076..31266c7f439a 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958854 -SHA256 (KDE/release-service/23.08.4/kcachegrind-23.08.4.tar.xz) = 7cf17ae3b87c2b4c575f2eceddae84b412f5f6dfcee8a0f15755e6eed3d22b04 -SIZE (KDE/release-service/23.08.4/kcachegrind-23.08.4.tar.xz) = 930720 +TIMESTAMP = 1707889333 +SHA256 (KDE/release-service/23.08.5/kcachegrind-23.08.5.tar.xz) = 056687b7adb0049db0503738cf95a7051f3b889b3313fa8b78dc7d03c3dbb7b6 +SIZE (KDE/release-service/23.08.5/kcachegrind-23.08.5.tar.xz) = 938564 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 343007b2bfef..9d227d063a75 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958866 -SHA256 (KDE/release-service/23.08.4/kde-dev-scripts-23.08.4.tar.xz) = abb64790aa08029f937bdeb5890eaf60a11432a497b572648fa79bf573f5dd14 -SIZE (KDE/release-service/23.08.4/kde-dev-scripts-23.08.4.tar.xz) = 373928 +TIMESTAMP = 1707889343 +SHA256 (KDE/release-service/23.08.5/kde-dev-scripts-23.08.5.tar.xz) = 0cb182454bd4627cb2eed796fea35bdb645f08744077c1098350f0fe347ac1f2 +SIZE (KDE/release-service/23.08.5/kde-dev-scripts-23.08.5.tar.xz) = 373940 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 8d599d39de69..6c43088f5742 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958867 -SHA256 (KDE/release-service/23.08.4/kde-dev-utils-23.08.4.tar.xz) = 91c639777a876aaa675914d693fcceaa7aac056ddcdf395bac72543a0690df19 -SIZE (KDE/release-service/23.08.4/kde-dev-utils-23.08.4.tar.xz) = 75168 +TIMESTAMP = 1707889343 +SHA256 (KDE/release-service/23.08.5/kde-dev-utils-23.08.5.tar.xz) = 26ddf53f81b3988d81a09e7a4541a80088fe261b16db8451c0a758e0ec6fee83 +SIZE (KDE/release-service/23.08.5/kde-dev-utils-23.08.5.tar.xz) = 75136 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 15d2ae936b29..3369bc2694ec 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958853 -SHA256 (KDE/release-service/23.08.4/kdesdk-kio-23.08.4.tar.xz) = 016050edd3f5aafe2f6e63acd7d7527f286e8a8af9d80b311a4505238e22e4ef -SIZE (KDE/release-service/23.08.4/kdesdk-kio-23.08.4.tar.xz) = 40500 +TIMESTAMP = 1707889332 +SHA256 (KDE/release-service/23.08.5/kdesdk-kio-23.08.5.tar.xz) = 7e37d9aee2e1e06bf7bd834108a893a48e3f5f28e6a1c1b8645e658251fdcf35 +SIZE (KDE/release-service/23.08.5/kdesdk-kio-23.08.5.tar.xz) = 40488 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 5447433b17a1..d22058f18181 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958852 -SHA256 (KDE/release-service/23.08.4/kdesdk-thumbnailers-23.08.4.tar.xz) = 6a78058b0f4409c7de90629ab876fe7b029d9ce08b4b6d2adab1b4408b776b45 -SIZE (KDE/release-service/23.08.4/kdesdk-thumbnailers-23.08.4.tar.xz) = 27380 +TIMESTAMP = 1707889332 +SHA256 (KDE/release-service/23.08.5/kdesdk-thumbnailers-23.08.5.tar.xz) = 259e444cf10b03b858967f729f643be7912f6f8c4d62eca250f2543d9c24e4fb +SIZE (KDE/release-service/23.08.5/kdesdk-thumbnailers-23.08.5.tar.xz) = 27376 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 37cd44b1efa1..776fb93b2ca7 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958866 -SHA256 (KDE/release-service/23.08.4/kdev-php-23.08.4.tar.xz) = 20c097ff322db3d69a57d45980161ed1d72020a95fc52feb46d3fc38ba340fd0 -SIZE (KDE/release-service/23.08.4/kdev-php-23.08.4.tar.xz) = 1088948 +TIMESTAMP = 1707889342 +SHA256 (KDE/release-service/23.08.5/kdev-php-23.08.5.tar.xz) = 2663298ffaa479791d3600e82046069867d8fbcc1aa449f86c075712747e2e77 +SIZE (KDE/release-service/23.08.5/kdev-php-23.08.5.tar.xz) = 1089020 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 1d6019012faa..2b2904c3aefc 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958860 -SHA256 (KDE/release-service/23.08.4/kdev-python-23.08.4.tar.xz) = a36ec94c241714c0c1f5787bafa2381c5d4ec20a3e3696bed70d13b1bd49b293 -SIZE (KDE/release-service/23.08.4/kdev-python-23.08.4.tar.xz) = 1098592 +TIMESTAMP = 1707889338 +SHA256 (KDE/release-service/23.08.5/kdev-python-23.08.5.tar.xz) = 7abf49e1bb30875599ab46731294edb3314583c0e17baf6b37472f7f6fde760a +SIZE (KDE/release-service/23.08.5/kdev-python-23.08.5.tar.xz) = 1098768 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index b26667d9806f..7253815fbf3c 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958861 -SHA256 (KDE/release-service/23.08.4/kdevelop-23.08.4.tar.xz) = 91d02b2bce8f29113054ccc548e6416d94065cf79919c54075bad19599357af0 -SIZE (KDE/release-service/23.08.4/kdevelop-23.08.4.tar.xz) = 8707260 +TIMESTAMP = 1707889339 +SHA256 (KDE/release-service/23.08.5/kdevelop-23.08.5.tar.xz) = d634f287f72c6e1097f2de1ea2f8bab41899952adcf879b0fe6daa14fecee1f8 +SIZE (KDE/release-service/23.08.5/kdevelop-23.08.5.tar.xz) = 8709732 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 40526b23f18e..9c65a2b5b366 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3297 +1,3297 @@ bin/kdev_dbus_socket_transformer bin/kdev_format_source bin/kdev_includepathsconverter bin/kdevelop bin/kdevelop! bin/kdevplatform_shell_environment.sh include/kdevelop/custom-definesandincludes/idefinesandincludesmanager.h include/kdevelop/kdevelop_version.h include/kdevelop/makebuilder/imakebuilder.h include/kdevelop/qmake/iqmakebuilder.h include/kdevplatform/config-kdevplatform.h include/kdevplatform/debugger/breakpoint/breakpoint.h include/kdevplatform/debugger/breakpoint/breakpointdetails.h include/kdevplatform/debugger/breakpoint/breakpointmodel.h include/kdevplatform/debugger/breakpoint/breakpointwidget.h include/kdevplatform/debugger/debuggerexport.h include/kdevplatform/debugger/framestack/framestackmodel.h include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h include/kdevplatform/debugger/interfaces/idebugsession.h include/kdevplatform/debugger/interfaces/iframestackmodel.h include/kdevplatform/debugger/interfaces/ivariablecontroller.h include/kdevplatform/debugger/util/pathmappings.h include/kdevplatform/debugger/util/treeitem.h include/kdevplatform/debugger/util/treemodel.h include/kdevplatform/debugger/util/treeview.h include/kdevplatform/debugger/variable/variablecollection.h include/kdevplatform/documentation/documentationexport.h include/kdevplatform/documentation/documentationfindwidget.h include/kdevplatform/documentation/standarddocumentationview.h include/kdevplatform/execute/iexecuteplugin.h include/kdevplatform/executescript/iexecutescriptplugin.h include/kdevplatform/interfaces/configpage.h include/kdevplatform/interfaces/context.h include/kdevplatform/interfaces/contextmenuextension.h include/kdevplatform/interfaces/iassistant.h include/kdevplatform/interfaces/ibuddydocumentfinder.h include/kdevplatform/interfaces/icompletionsettings.h include/kdevplatform/interfaces/icore.h include/kdevplatform/interfaces/idebugcontroller.h include/kdevplatform/interfaces/idocument.h include/kdevplatform/interfaces/idocumentation.h include/kdevplatform/interfaces/idocumentationcontroller.h include/kdevplatform/interfaces/idocumentationprovider.h include/kdevplatform/interfaces/idocumentationproviderprovider.h include/kdevplatform/interfaces/idocumentcontroller.h include/kdevplatform/interfaces/ilanguagecheck.h include/kdevplatform/interfaces/ilanguagecheckprovider.h include/kdevplatform/interfaces/ilanguagecontroller.h include/kdevplatform/interfaces/ilaunchconfiguration.h include/kdevplatform/interfaces/ilauncher.h include/kdevplatform/interfaces/ilaunchmode.h include/kdevplatform/interfaces/interfacesexport.h include/kdevplatform/interfaces/ipartcontroller.h include/kdevplatform/interfaces/iplugin.h include/kdevplatform/interfaces/iplugincontroller.h include/kdevplatform/interfaces/ipluginversion.h include/kdevplatform/interfaces/iproblem.h include/kdevplatform/interfaces/iproject.h include/kdevplatform/interfaces/iprojectcontroller.h include/kdevplatform/interfaces/iprojectprovider.h include/kdevplatform/interfaces/iruncontroller.h include/kdevplatform/interfaces/iruntime.h include/kdevplatform/interfaces/iruntimecontroller.h include/kdevplatform/interfaces/iselectioncontroller.h include/kdevplatform/interfaces/isession.h include/kdevplatform/interfaces/isessionlock.h include/kdevplatform/interfaces/isourceformatter.h include/kdevplatform/interfaces/isourceformattercontroller.h include/kdevplatform/interfaces/istatus.h include/kdevplatform/interfaces/itemplateprovider.h include/kdevplatform/interfaces/itestcontroller.h include/kdevplatform/interfaces/itestsuite.h include/kdevplatform/interfaces/itoolviewactionlistener.h include/kdevplatform/interfaces/iuicontroller.h include/kdevplatform/interfaces/launchconfigurationpage.h include/kdevplatform/interfaces/launchconfigurationtype.h include/kdevplatform/kdevplatform_version.h include/kdevplatform/language/assistant/renameaction.h include/kdevplatform/language/assistant/renameassistant.h include/kdevplatform/language/assistant/staticassistant.h include/kdevplatform/language/assistant/staticassistantsmanager.h include/kdevplatform/language/backgroundparser/backgroundparser.h include/kdevplatform/language/backgroundparser/documentchangetracker.h include/kdevplatform/language/backgroundparser/parsejob.h include/kdevplatform/language/backgroundparser/parseprojectjob.h include/kdevplatform/language/backgroundparser/urlparselock.h include/kdevplatform/language/checks/controlflowgraph.h include/kdevplatform/language/checks/controlflownode.h include/kdevplatform/language/checks/dataaccess.h include/kdevplatform/language/checks/dataaccessrepository.h include/kdevplatform/language/classmodel/allclassesfolder.h include/kdevplatform/language/classmodel/classmodel.h include/kdevplatform/language/classmodel/classmodelnode.h include/kdevplatform/language/classmodel/classmodelnodescontroller.h include/kdevplatform/language/classmodel/documentclassesfolder.h include/kdevplatform/language/classmodel/projectfolder.h include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h include/kdevplatform/language/codecompletion/codecompletion.h include/kdevplatform/language/codecompletion/codecompletioncontext.h include/kdevplatform/language/codecompletion/codecompletionhelper.h include/kdevplatform/language/codecompletion/codecompletionitem.h include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h include/kdevplatform/language/codecompletion/codecompletionmodel.h include/kdevplatform/language/codecompletion/codecompletiontesthelper.h include/kdevplatform/language/codecompletion/codecompletionworker.h include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h include/kdevplatform/language/codegen/applychangeswidget.h include/kdevplatform/language/codegen/astchangeset.h include/kdevplatform/language/codegen/basicrefactoring.h include/kdevplatform/language/codegen/codedescription.h include/kdevplatform/language/codegen/coderepresentation.h include/kdevplatform/language/codegen/documentchangeset.h include/kdevplatform/language/codegen/duchainchangeset.h include/kdevplatform/language/codegen/sourcefiletemplate.h include/kdevplatform/language/codegen/templateclassgenerator.h include/kdevplatform/language/codegen/templateengine.h include/kdevplatform/language/codegen/templatepreviewicon.h include/kdevplatform/language/codegen/templaterenderer.h include/kdevplatform/language/codegen/templatesmodel.h include/kdevplatform/language/codegen/utilities.h include/kdevplatform/language/duchain/abstractfunctiondeclaration.h include/kdevplatform/language/duchain/aliasdeclaration.h include/kdevplatform/language/duchain/appendedlist.h include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h include/kdevplatform/language/duchain/builders/abstracttypebuilder.h include/kdevplatform/language/duchain/builders/abstractusebuilder.h include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h include/kdevplatform/language/duchain/classdeclaration.h include/kdevplatform/language/duchain/classfunctiondeclaration.h include/kdevplatform/language/duchain/classmemberdeclaration.h include/kdevplatform/language/duchain/classmemberdeclarationdata.h include/kdevplatform/language/duchain/codemodel.h include/kdevplatform/language/duchain/declaration.h include/kdevplatform/language/duchain/declarationdata.h include/kdevplatform/language/duchain/declarationid.h include/kdevplatform/language/duchain/definitions.h include/kdevplatform/language/duchain/duchain.h include/kdevplatform/language/duchain/duchainbase.h include/kdevplatform/language/duchain/duchaindumper.h include/kdevplatform/language/duchain/duchainlock.h include/kdevplatform/language/duchain/duchainpointer.h include/kdevplatform/language/duchain/duchainregister.h include/kdevplatform/language/duchain/duchainutils.h include/kdevplatform/language/duchain/ducontext.h include/kdevplatform/language/duchain/ducontextdata.h include/kdevplatform/language/duchain/dumpdotgraph.h include/kdevplatform/language/duchain/forwarddeclaration.h include/kdevplatform/language/duchain/functiondeclaration.h include/kdevplatform/language/duchain/functiondefinition.h include/kdevplatform/language/duchain/identifier.h include/kdevplatform/language/duchain/indexeddeclaration.h include/kdevplatform/language/duchain/indexedducontext.h include/kdevplatform/language/duchain/indexedtopducontext.h include/kdevplatform/language/duchain/instantiationinformation.h include/kdevplatform/language/duchain/localindexeddeclaration.h include/kdevplatform/language/duchain/localindexedducontext.h include/kdevplatform/language/duchain/namespacealiasdeclaration.h include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h include/kdevplatform/language/duchain/navigation/navigationaction.h include/kdevplatform/language/duchain/navigation/usescollector.h include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h include/kdevplatform/language/duchain/navigation/useswidget.h include/kdevplatform/language/duchain/parsingenvironment.h include/kdevplatform/language/duchain/persistentsymboltable.h include/kdevplatform/language/duchain/problem.h include/kdevplatform/language/duchain/specializationstore.h include/kdevplatform/language/duchain/stringhelpers.h include/kdevplatform/language/duchain/topducontext.h include/kdevplatform/language/duchain/topducontextdata.h include/kdevplatform/language/duchain/topducontextutils.h include/kdevplatform/language/duchain/types/abstracttype.h include/kdevplatform/language/duchain/types/alltypes.h include/kdevplatform/language/duchain/types/arraytype.h include/kdevplatform/language/duchain/types/constantintegraltype.h include/kdevplatform/language/duchain/types/containertypes.h include/kdevplatform/language/duchain/types/delayedtype.h include/kdevplatform/language/duchain/types/enumerationtype.h include/kdevplatform/language/duchain/types/enumeratortype.h include/kdevplatform/language/duchain/types/functiontype.h include/kdevplatform/language/duchain/types/identifiedtype.h include/kdevplatform/language/duchain/types/indexedtype.h include/kdevplatform/language/duchain/types/integraltype.h include/kdevplatform/language/duchain/types/pointertype.h include/kdevplatform/language/duchain/types/referencetype.h include/kdevplatform/language/duchain/types/structuretype.h include/kdevplatform/language/duchain/types/typealiastype.h include/kdevplatform/language/duchain/types/typepointer.h include/kdevplatform/language/duchain/types/typeregister.h include/kdevplatform/language/duchain/types/typerepository.h include/kdevplatform/language/duchain/types/typesystem.h include/kdevplatform/language/duchain/types/typesystemdata.h include/kdevplatform/language/duchain/types/typeutils.h include/kdevplatform/language/duchain/types/unsuretype.h include/kdevplatform/language/duchain/use.h include/kdevplatform/language/editor/cursorinrevision.h include/kdevplatform/language/editor/documentcursor.h include/kdevplatform/language/editor/documentrange.h include/kdevplatform/language/editor/modificationrevision.h include/kdevplatform/language/editor/modificationrevisionset.h include/kdevplatform/language/editor/persistentmovingrange.h include/kdevplatform/language/editor/rangeinrevision.h include/kdevplatform/language/highlighting/codehighlighting.h include/kdevplatform/language/highlighting/colorcache.h include/kdevplatform/language/highlighting/configurablecolors.h include/kdevplatform/language/interfaces/abbreviations.h include/kdevplatform/language/interfaces/codecontext.h include/kdevplatform/language/interfaces/editorcontext.h include/kdevplatform/language/interfaces/iastcontainer.h include/kdevplatform/language/interfaces/icodehighlighting.h include/kdevplatform/language/interfaces/icontextbrowser.h include/kdevplatform/language/interfaces/icreateclasshelper.h include/kdevplatform/language/interfaces/ilanguagesupport.h include/kdevplatform/language/interfaces/iquickopen.h include/kdevplatform/language/interfaces/quickopendataprovider.h include/kdevplatform/language/interfaces/quickopenfilter.h include/kdevplatform/language/languageexport.h include/kdevplatform/language/util/basicsetrepository.h include/kdevplatform/language/util/debuglanguageparserhelper.h include/kdevplatform/language/util/includeitem.h include/kdevplatform/language/util/kdevhash.h include/kdevplatform/language/util/navigationtooltip.h include/kdevplatform/language/util/setrepository.h include/kdevplatform/openwith/iopenwith.h include/kdevplatform/outputview/filtereditem.h include/kdevplatform/outputview/ifilterstrategy.h include/kdevplatform/outputview/ioutputview.h include/kdevplatform/outputview/ioutputviewmodel.h include/kdevplatform/outputview/outputdelegate.h include/kdevplatform/outputview/outputexecutejob.h include/kdevplatform/outputview/outputfilteringstrategies.h include/kdevplatform/outputview/outputjob.h include/kdevplatform/outputview/outputmodel.h include/kdevplatform/outputview/outputviewexport.h include/kdevplatform/project/abstractfilemanagerplugin.h include/kdevplatform/project/builderjob.h include/kdevplatform/project/helper.h include/kdevplatform/project/importprojectjob.h include/kdevplatform/project/interfaces/ibuildsystemmanager.h include/kdevplatform/project/interfaces/iprojectbuilder.h include/kdevplatform/project/interfaces/iprojectfilemanager.h include/kdevplatform/project/interfaces/iprojectfilter.h include/kdevplatform/project/interfaces/iprojectfilterprovider.h include/kdevplatform/project/projectbuildsetmodel.h include/kdevplatform/project/projectchangesmodel.h include/kdevplatform/project/projectconfigpage.h include/kdevplatform/project/projectconfigskeleton.h include/kdevplatform/project/projectexport.h include/kdevplatform/project/projectfiltermanager.h include/kdevplatform/project/projectitemlineedit.h include/kdevplatform/project/projectmodel.h include/kdevplatform/project/projectutils.h include/kdevplatform/project/widgets/dependencieswidget.h include/kdevplatform/serialization/abstractitemrepository.h include/kdevplatform/serialization/indexedstring.h include/kdevplatform/serialization/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryreferencecounting.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/checkerstatus.h include/kdevplatform/shell/colorschemechooser.h include/kdevplatform/shell/core.h include/kdevplatform/shell/documentcontroller.h include/kdevplatform/shell/environmentconfigurebutton.h include/kdevplatform/shell/filteredproblemstore.h include/kdevplatform/shell/languagecontroller.h include/kdevplatform/shell/launchconfiguration.h include/kdevplatform/shell/mainwindow.h include/kdevplatform/shell/partcontroller.h include/kdevplatform/shell/partdocument.h include/kdevplatform/shell/plugincontroller.h include/kdevplatform/shell/problem.h include/kdevplatform/shell/problemconstants.h include/kdevplatform/shell/problemmodel.h include/kdevplatform/shell/problemmodelset.h include/kdevplatform/shell/problemstore.h include/kdevplatform/shell/project.h include/kdevplatform/shell/projectcontroller.h include/kdevplatform/shell/runcontroller.h include/kdevplatform/shell/selectioncontroller.h include/kdevplatform/shell/session.h include/kdevplatform/shell/sessioncontroller.h include/kdevplatform/shell/sessionlock.h include/kdevplatform/shell/shellexport.h include/kdevplatform/shell/shellextension.h include/kdevplatform/shell/sourceformattercontroller.h include/kdevplatform/shell/sourceformatterselectionedit.h include/kdevplatform/shell/textdocument.h include/kdevplatform/shell/uicontroller.h include/kdevplatform/sublime/area.h include/kdevplatform/sublime/areaindex.h include/kdevplatform/sublime/areawalkers.h include/kdevplatform/sublime/container.h include/kdevplatform/sublime/controller.h include/kdevplatform/sublime/document.h include/kdevplatform/sublime/mainwindow.h include/kdevplatform/sublime/mainwindowoperator.h include/kdevplatform/sublime/message.h include/kdevplatform/sublime/sublimedefs.h include/kdevplatform/sublime/sublimeexport.h include/kdevplatform/sublime/tooldocument.h include/kdevplatform/sublime/urldocument.h include/kdevplatform/sublime/view.h include/kdevplatform/sublime/viewbarcontainer.h include/kdevplatform/util/activetooltip.h include/kdevplatform/util/algorithm.h include/kdevplatform/util/autoorientedsplitter.h include/kdevplatform/util/commandexecutor.h include/kdevplatform/util/convenientfreelist.h include/kdevplatform/util/embeddedfreetree.h include/kdevplatform/util/environmentprofilelist.h include/kdevplatform/util/environmentselectionwidget.h include/kdevplatform/util/executecompositejob.h include/kdevplatform/util/filesystemhelpers.h include/kdevplatform/util/focusedtreeview.h include/kdevplatform/util/foregroundlock.h include/kdevplatform/util/formattinghelpers.h include/kdevplatform/util/jobstatus.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/objectlist.h include/kdevplatform/util/owningrawpointercontainer.h include/kdevplatform/util/path.h include/kdevplatform/util/placeholderitemproxymodel.h include/kdevplatform/util/processlinemaker.h include/kdevplatform/util/projecttestjob.h include/kdevplatform/util/pushvalue.h include/kdevplatform/util/stack.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/utilexport.h include/kdevplatform/util/widgetcolorizer.h include/kdevplatform/util/wildcardhelpers.h include/kdevplatform/util/zoomcontroller.h include/kdevplatform/vcs/dvcs/dvcsevent.h include/kdevplatform/vcs/dvcs/dvcsjob.h include/kdevplatform/vcs/dvcs/dvcsplugin.h include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h include/kdevplatform/vcs/interfaces/ipatchdocument.h include/kdevplatform/vcs/interfaces/ipatchsource.h include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h include/kdevplatform/vcs/models/brancheslistmodel.h include/kdevplatform/vcs/models/vcsannotationmodel.h include/kdevplatform/vcs/models/vcseventmodel.h include/kdevplatform/vcs/models/vcsfilechangesmodel.h include/kdevplatform/vcs/models/vcsitemeventmodel.h include/kdevplatform/vcs/vcsannotation.h include/kdevplatform/vcs/vcsdiff.h include/kdevplatform/vcs/vcsevent.h include/kdevplatform/vcs/vcsexport.h include/kdevplatform/vcs/vcsjob.h include/kdevplatform/vcs/vcslocation.h include/kdevplatform/vcs/vcspluginhelper.h include/kdevplatform/vcs/vcsrevision.h include/kdevplatform/vcs/vcsstatusinfo.h include/kdevplatform/vcs/widgets/standardvcslocationwidget.h include/kdevplatform/vcs/widgets/vcscommitdialog.h include/kdevplatform/vcs/widgets/vcsdiffwidget.h include/kdevplatform/vcs/widgets/vcseventwidget.h include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h include/kdevplatform/vcs/widgets/vcslocationwidget.h lib/cmake/KDevPlatform/KDevPlatformConfig.cmake lib/cmake/KDevPlatform/KDevPlatformConfigVersion.cmake lib/cmake/KDevPlatform/KDevPlatformMacros.cmake lib/cmake/KDevPlatform/KDevPlatformTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPlatform/KDevPlatformTargets.cmake lib/cmake/KDevelop/KDevelopConfig.cmake lib/cmake/KDevelop/KDevelopConfigVersion.cmake lib/cmake/KDevelop/KDevelopTargets.cmake lib/libKDevCMakeCommon.so.%%SO_VER%% lib/libKDevClangPrivate.so.%%SO_VER%% lib/libKDevCompileAnalyzerCommon.so.%%SO_VER%% lib/libKDevPlatformDebugger.so -lib/libKDevPlatformDebugger.so.%%SO_VER_LONG%% +lib/libKDevPlatformDebugger.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformDebugger.so.%%SO_VER%% lib/libKDevPlatformDocumentation.so -lib/libKDevPlatformDocumentation.so.%%SO_VER_LONG%% +lib/libKDevPlatformDocumentation.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformDocumentation.so.%%SO_VER%% lib/libKDevPlatformInterfaces.so -lib/libKDevPlatformInterfaces.so.%%SO_VER_LONG%% +lib/libKDevPlatformInterfaces.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformInterfaces.so.%%SO_VER%% lib/libKDevPlatformLanguage.so -lib/libKDevPlatformLanguage.so.%%SO_VER_LONG%% +lib/libKDevPlatformLanguage.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformLanguage.so.%%SO_VER%% lib/libKDevPlatformOutputView.so -lib/libKDevPlatformOutputView.so.%%SO_VER_LONG%% +lib/libKDevPlatformOutputView.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformOutputView.so.%%SO_VER%% lib/libKDevPlatformProject.so -lib/libKDevPlatformProject.so.%%SO_VER_LONG%% +lib/libKDevPlatformProject.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformProject.so.%%SO_VER%% lib/libKDevPlatformSerialization.so -lib/libKDevPlatformSerialization.so.%%SO_VER_LONG%% +lib/libKDevPlatformSerialization.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformSerialization.so.%%SO_VER%% lib/libKDevPlatformShell.so -lib/libKDevPlatformShell.so.%%SO_VER_LONG%% +lib/libKDevPlatformShell.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformShell.so.%%SO_VER%% lib/libKDevPlatformSublime.so -lib/libKDevPlatformSublime.so.%%SO_VER_LONG%% +lib/libKDevPlatformSublime.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformSublime.so.%%SO_VER%% lib/libKDevPlatformUtil.so -lib/libKDevPlatformUtil.so.%%SO_VER_LONG%% +lib/libKDevPlatformUtil.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformUtil.so.%%SO_VER%% lib/libKDevPlatformVcs.so -lib/libKDevPlatformVcs.so.%%SO_VER_LONG%% +lib/libKDevPlatformVcs.so.5.12.%%KDE_APPLICATIONS_VERSION_SHORT%%0805 lib/libKDevPlatformVcs.so.%%SO_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/grantlee/%%GRANTLEE_VERSION_SHORT%%/kdev_filters%%GRANTLEE_DEBUG_SUFFIX%%.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevandroid.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevappwizard.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevastyle.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevbazaar.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangsupport.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangtidy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclassbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclazy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakedocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcodeutils.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcontextbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcppcheck.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcraft.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustombuildsystem.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustommakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdefinesandincludesmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocker.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentswitcher.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecute.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecuteplasmoid.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecutescript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexternalscript.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfilemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfiletemplates.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevflatpak.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgdb.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgenericmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevghprovider.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgit.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgrepview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevheaptrack.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevkonsoleview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevlldb.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmanpage.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmesonmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevninja.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevokteta.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevoutlineview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevpatchreview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevperforce.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevproblemreporter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectfilter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectmanagerview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmljslanguagesupport.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevscratchpad.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevstandardoutputview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsubversion.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevswitchtobuddy.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevtestview.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevvcschangesviewplugin.so %%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevwelcomepage.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kdevelopsessions.so %%QT_QMLDIR%%/org/kde/kdevplatform/libkdevelopdashboarddeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdevplatform/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/libkdevelopsessionsplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/qmldir share/applications/org.kde.kdevelop.desktop share/applications/org.kde.kdevelop_bzr.desktop share/applications/org.kde.kdevelop_git.desktop share/applications/org.kde.kdevelop_kdev4.desktop share/applications/org.kde.kdevelop_ps.desktop share/applications/org.kde.kdevelop_svn.desktop share/doc/HTML/ca/kdevelop/index.cache.bz2 share/doc/HTML/ca/kdevelop/index.docbook share/doc/HTML/ca/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/Icon-folder.png share/doc/HTML/en/kdevelop/Icon-list-add.png share/doc/HTML/en/kdevelop/Icon-list-remove.png share/doc/HTML/en/kdevelop/index.cache.bz2 share/doc/HTML/en/kdevelop/index.docbook share/doc/HTML/en/kdevelop/kdevelop-10.png share/doc/HTML/en/kdevelop/kdevelop-11.png share/doc/HTML/en/kdevelop/kdevelop-12.png share/doc/HTML/en/kdevelop/kdevelop-13.png share/doc/HTML/en/kdevelop/kdevelop-14.png share/doc/HTML/en/kdevelop/kdevelop-15.png share/doc/HTML/en/kdevelop/kdevelop-16.png share/doc/HTML/en/kdevelop/kdevelop-17.png share/doc/HTML/en/kdevelop/kdevelop-18.png share/doc/HTML/en/kdevelop/kdevelop-19.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-20.png share/doc/HTML/en/kdevelop/kdevelop-23.png share/doc/HTML/en/kdevelop/kdevelop-24.png share/doc/HTML/en/kdevelop/kdevelop-25.png share/doc/HTML/en/kdevelop/kdevelop-26.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-4.png share/doc/HTML/en/kdevelop/kdevelop-40.png share/doc/HTML/en/kdevelop/kdevelop-41.png share/doc/HTML/en/kdevelop/kdevelop-42.png share/doc/HTML/en/kdevelop/kdevelop-43.png share/doc/HTML/en/kdevelop/kdevelop-5.png share/doc/HTML/en/kdevelop/kdevelop-6.png share/doc/HTML/en/kdevelop/kdevelop-7.png share/doc/HTML/en/kdevelop/kdevelop-8.png share/doc/HTML/en/kdevelop/kdevelop-9.png share/doc/HTML/en/kdevelop/kdevelop-project-dialog.png share/doc/HTML/en/kdevelop/kdevelop-template-inheritance.png share/doc/HTML/en/kdevelop/kdevelop-template-manager.png share/doc/HTML/en/kdevelop/kdevelop-template-members.png share/doc/HTML/en/kdevelop/kdevelop-template-result.png share/doc/HTML/en/kdevelop/kdevelop-template-selection.png share/doc/HTML/en/kdevelop/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/es/kdevelop/index.cache.bz2 share/doc/HTML/es/kdevelop/index.docbook share/doc/HTML/it/kdevelop/index.cache.bz2 share/doc/HTML/it/kdevelop/index.docbook share/doc/HTML/nl/kdevelop/index.cache.bz2 share/doc/HTML/nl/kdevelop/index.docbook share/doc/HTML/pt/kdevelop/index.cache.bz2 share/doc/HTML/pt/kdevelop/index.docbook share/doc/HTML/pt_BR/kdevelop/index.cache.bz2 share/doc/HTML/pt_BR/kdevelop/index.docbook share/doc/HTML/ru/kdevelop/index.cache.bz2 share/doc/HTML/ru/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png share/icons/hicolor/16x16/apps/subversion.png share/icons/hicolor/22x22/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/subversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/icons/hicolor/scalable/apps/subversion.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt5-qml2.tar.bz2 share/kdevappwizard/templates/cmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 share/kdevappwizard/templates/meson_plainc.tar.bz2 share/kdevappwizard/templates/meson_plaincpp.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 share/kdevclangsupport/wrappedQtHeaders/QtCore/qobjectdefs.h share/kdevcodegen/licenses/Apache v2 share/kdevcodegen/licenses/BSD share/kdevcodegen/licenses/Boost share/kdevcodegen/licenses/GPL v2 share/kdevcodegen/licenses/GPL v2+ (KDE) share/kdevcodegen/licenses/GPL v3 share/kdevcodegen/licenses/LGPL v2 share/kdevcodegen/licenses/LGPL v2+ (KDE) share/kdevcodegen/licenses/LGPL v3 share/kdevcodegen/licenses/MIT X11 share/kdevcodegen/licenses/Mozilla v1.1 share/kdevcodegen/templates/arguments_names.txt share/kdevcodegen/templates/arguments_types_names.txt share/kdevcodegen/templates/class_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_declaration_cpp.txt share/kdevcodegen/templates/class_method_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_method_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_definition_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_cpp.txt share/kdevcodegen/templates/class_property_setter_definition_cpp.txt share/kdevcodegen/templates/class_property_signal_declaration_cpp.txt share/kdevcodegen/templates/class_qproperty_declaration_cpp.txt share/kdevcodegen/templates/cpp_header.h share/kdevcodegen/templates/cpp_header_onlyfunctions.h share/kdevcodegen/templates/cpp_implementation.cpp share/kdevcodegen/templates/cpp_qobject_header.h share/kdevcodegen/templates/cpp_qobject_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_header.h share/kdevcodegen/templates/cpp_qobject_pimpl_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_p_header.h share/kdevcodegen/templates/include_guard_cpp.txt share/kdevcodegen/templates/license_header_cpp.txt share/kdevcodegen/templates/method_declaration_cpp.txt share/kdevcodegen/templates/method_definition_cpp.txt share/kdevcodegen/templates/namespace_close_cpp.txt share/kdevcodegen/templates/namespace_open_cpp.txt share/kdevcodegen/templates/namespace_use_cpp.txt share/kdevcodeutils/templates/doxygen_cpp.txt share/kdevcodeutils/templates/phpdoc_php.txt share/kdevcodeutils/templates/rest_python.txt %%DATADIR%%/icons/hicolor/16x16/actions/classnew.png %%DATADIR%%/icons/hicolor/16x16/actions/dirsync.png %%DATADIR%%/icons/hicolor/16x16/actions/methodnew.png %%DATADIR%%/icons/hicolor/16x16/actions/variablenew.png %%DATADIR%%/icons/hicolor/22x22/actions/classnew.png %%DATADIR%%/icons/hicolor/32x32/actions/classnew.png %%DATADIR%%/kdevflatpak/replicate.sh %%DATADIR%%/pics/CTchildren.png %%DATADIR%%/pics/CTclients.png %%DATADIR%%/pics/CTdisconnected_parents.png %%DATADIR%%/pics/CTparents.png %%DATADIR%%/pics/CTsuppliers.png %%DATADIR%%/pics/CTvirtuals.png %%DATADIR%%/pics/CVclass.png %%DATADIR%%/pics/CVglobal_meth.png %%DATADIR%%/pics/CVglobal_var.png %%DATADIR%%/pics/CVnamespace.png %%DATADIR%%/pics/CVpackage_meth.png %%DATADIR%%/pics/CVpackage_var.png %%DATADIR%%/pics/CVprivate_meth.png %%DATADIR%%/pics/CVprivate_signal.png %%DATADIR%%/pics/CVprivate_slot.png %%DATADIR%%/pics/CVprivate_var.png %%DATADIR%%/pics/CVprotected_meth.png %%DATADIR%%/pics/CVprotected_signal.png %%DATADIR%%/pics/CVprotected_slot.png %%DATADIR%%/pics/CVprotected_var.png %%DATADIR%%/pics/CVpublic_meth.png %%DATADIR%%/pics/CVpublic_signal.png %%DATADIR%%/pics/CVpublic_slot.png %%DATADIR%%/pics/CVpublic_var.png %%DATADIR%%/pics/CVstruct.png %%DATADIR%%/pics/CVtypedef.png %%DATADIR%%/pics/code-class.png %%DATADIR%%/pics/code-function.png %%DATADIR%%/pics/enum.png %%DATADIR%%/pics/field.png %%DATADIR%%/pics/namespace.png %%DATADIR%%/pics/private_class.png %%DATADIR%%/pics/private_enum.png %%DATADIR%%/pics/private_field.png %%DATADIR%%/pics/private_function.png %%DATADIR%%/pics/private_struct.png %%DATADIR%%/pics/private_union.png %%DATADIR%%/pics/protected_class.png %%DATADIR%%/pics/protected_enum.png %%DATADIR%%/pics/protected_field.png %%DATADIR%%/pics/protected_function.png %%DATADIR%%/pics/protected_struct.png %%DATADIR%%/pics/protected_union.png %%DATADIR%%/pics/signal.png %%DATADIR%%/pics/slot.png %%DATADIR%%/pics/struct.png %%DATADIR%%/pics/typedef.png %%DATADIR%%/pics/union.png %%DATADIR%%/shortcuts/QtCreator share/kdevfiletemplates/templates/c_gobject.tar.bz2 share/kdevfiletemplates/templates/c_gobject_private.tar.bz2 share/kdevfiletemplates/templates/c_gobject_properties.tar.bz2 share/kdevfiletemplates/templates/cmake_module.tar.bz2 share/kdevfiletemplates/templates/cpp_basic.tar.bz2 share/kdevfiletemplates/templates/cpp_cpputest.tar.bz2 share/kdevfiletemplates/templates/cpp_gtest.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib_kdevelop.tar.bz2 share/kdevfiletemplates/templates/dockerfile-template.tar.bz2 share/kdevfiletemplates/templates/flatpak-template.tar.bz2 share/kdevfiletemplates/templates/php_phpunit.tar.bz2 share/kdevfiletemplates/templates/private_pointer.tar.bz2 share/kdevfiletemplates/templates/python_basic.tar.bz2 share/kdevfiletemplates/templates/python_pyunit.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel_pimpl.tar.bz2 share/kdevfiletemplates/templates/qdialog.tar.bz2 share/kdevfiletemplates/templates/qdialog_pimpl.tar.bz2 share/kdevfiletemplates/templates/qobject.tar.bz2 share/kdevfiletemplates/templates/qobject_pimpl.tar.bz2 share/kdevfiletemplates/templates/qt_interface.tar.bz2 share/kdevfiletemplates/templates/qt_shared.tar.bz2 share/kdevfiletemplates/templates/qt_widget.tar.bz2 share/kdevfiletemplates/templates/qwidget_pimpl.tar.bz2 share/kdevgdb/printers/gdbinit share/kdevgdb/printers/helper.py share/kdevgdb/printers/kde.py share/kdevgdb/printers/qt.py share/kdevlldb/formatters/all.py share/kdevlldb/formatters/helpers.py share/kdevlldb/formatters/kde.py share/kdevlldb/formatters/qt.py share/kdevmanpage/manpagedocumentation.css share/kdevplatform/shellutils/.zshrc share/kdevqmljssupport/nodejsmodules/__builtin_dom.js share/kdevqmljssupport/nodejsmodules/__builtin_ecmascript.js share/kdevqmljssupport/nodejsmodules/__builtin_qml.qml share/kdevqmljssupport/nodejsmodules/buffer.js share/kdevqmljssupport/nodejsmodules/child_process.js share/kdevqmljssupport/nodejsmodules/common.js share/kdevqmljssupport/nodejsmodules/console.js share/kdevqmljssupport/nodejsmodules/crypto.js share/kdevqmljssupport/nodejsmodules/dgram.js share/kdevqmljssupport/nodejsmodules/dns.js share/kdevqmljssupport/nodejsmodules/domain.js share/kdevqmljssupport/nodejsmodules/event.js share/kdevqmljssupport/nodejsmodules/fs.js share/kdevqmljssupport/nodejsmodules/http.js share/kdevqmljssupport/nodejsmodules/https.js share/kdevqmljssupport/nodejsmodules/net.js share/kdevqmljssupport/nodejsmodules/os.js share/kdevqmljssupport/nodejsmodules/path.js share/kdevqmljssupport/nodejsmodules/punycode.js share/kdevqmljssupport/nodejsmodules/querystring.js share/kdevqmljssupport/nodejsmodules/readline.js share/kdevqmljssupport/nodejsmodules/stream.js share/kdevqmljssupport/nodejsmodules/string_decoder.js share/kdevqmljssupport/nodejsmodules/tls.js share/kdevqmljssupport/nodejsmodules/tty.js share/kdevqmljssupport/nodejsmodules/url.js share/kdevqmljssupport/nodejsmodules/util.js share/kdevqmljssupport/nodejsmodules/vm.js share/kdevqmljssupport/nodejsmodules/zlib.js share/kdevqmljssupport/propertywidgets/ColorPicker.qml share/kdevqmljssupport/propertywidgets/Duration.qml share/kdevqmljssupport/propertywidgets/FontFamily.qml share/kdevqmljssupport/propertywidgets/FontSize.qml share/kdevqmljssupport/propertywidgets/Height.qml share/kdevqmljssupport/propertywidgets/Opacity.qml share/kdevqmljssupport/propertywidgets/PropertyWidget.qml share/kdevqmljssupport/propertywidgets/README share/kdevqmljssupport/propertywidgets/Spacing.qml share/kdevqmljssupport/propertywidgets/Width.qml share/knotifications5/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/kservices5/plasma-applet-kdevelopsessions.desktop share/kservicetypes5/kdevelopplugin.desktop share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevastyle.mo share/locale/bg/LC_MESSAGES/kdevbazaar.mo share/locale/bg/LC_MESSAGES/kdevclang.mo share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevclazy.mo share/locale/bg/LC_MESSAGES/kdevcmake.mo share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevcodeutils.mo share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevcppcheck.mo share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/bg/LC_MESSAGES/kdevcustommake.mo share/locale/bg/LC_MESSAGES/kdevcustomscript.mo share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevexecute.mo share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bg/LC_MESSAGES/kdevexecutescript.mo share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo share/locale/bg/LC_MESSAGES/kdevflatpak.mo share/locale/bg/LC_MESSAGES/kdevgdb.mo share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevgrepview.mo share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevlldb.mo share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevmanpage.mo share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo share/locale/bg/LC_MESSAGES/kdevninja.mo share/locale/bg/LC_MESSAGES/kdevokteta.mo share/locale/bg/LC_MESSAGES/kdevopenwith.mo share/locale/bg/LC_MESSAGES/kdevoutlineview.mo share/locale/bg/LC_MESSAGES/kdevpatchreview.mo share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo share/locale/bg/LC_MESSAGES/kdevqmljs.mo share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo share/locale/bg/LC_MESSAGES/kdevscratchpad.mo share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bg/LC_MESSAGES/kdevsubversion.mo share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bg/LC_MESSAGES/kdevtestview.mo share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevandroid.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevastyle.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclang.mo share/locale/eo/LC_MESSAGES/kdevclangtidy.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevclazy.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcodeutils.mo share/locale/eo/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcppcheck.mo share/locale/eo/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/eo/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevcustomscript.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocker.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevfiletemplates.mo share/locale/eo/LC_MESSAGES/kdevflatpak.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevghprovider.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevheaptrack.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevlldb.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevmanpage.mo share/locale/eo/LC_MESSAGES/kdevmesonmanager.mo share/locale/eo/LC_MESSAGES/kdevninja.mo share/locale/eo/LC_MESSAGES/kdevokteta.mo share/locale/eo/LC_MESSAGES/kdevopenwith.mo share/locale/eo/LC_MESSAGES/kdevoutlineview.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevperforce.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectfilter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqmljs.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevscratchpad.mo share/locale/eo/LC_MESSAGES/kdevsourceformatter.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/eo/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eo/LC_MESSAGES/kdevtestview.mo share/locale/eo/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eo/LC_MESSAGES/kdevwelcomepage.mo share/locale/eo/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevbazaar.mo share/locale/eu/LC_MESSAGES/kdevclassbrowser.mo share/locale/eu/LC_MESSAGES/kdevcodeutils.mo share/locale/eu/LC_MESSAGES/kdevcustommake.mo share/locale/eu/LC_MESSAGES/kdevcustomscript.mo share/locale/eu/LC_MESSAGES/kdevdocker.mo share/locale/eu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eu/LC_MESSAGES/kdevdocumentview.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevfilemanager.mo share/locale/eu/LC_MESSAGES/kdevflatpak.mo share/locale/eu/LC_MESSAGES/kdevgit.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevopenwith.mo share/locale/eu/LC_MESSAGES/kdevoutlineview.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/eu/LC_MESSAGES/kdevprojectfilter.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eu/LC_MESSAGES/kdevtestview.mo share/locale/eu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcppcheck.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocker.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevheaptrack.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/kdevandroid.mo share/locale/ka/LC_MESSAGES/kdevappwizard.mo share/locale/ka/LC_MESSAGES/kdevastyle.mo share/locale/ka/LC_MESSAGES/kdevbazaar.mo share/locale/ka/LC_MESSAGES/kdevclang.mo share/locale/ka/LC_MESSAGES/kdevclangtidy.mo share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo share/locale/ka/LC_MESSAGES/kdevclazy.mo share/locale/ka/LC_MESSAGES/kdevcmake.mo share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevcodeutils.mo share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ka/LC_MESSAGES/kdevcppcheck.mo share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ka/LC_MESSAGES/kdevcustommake.mo share/locale/ka/LC_MESSAGES/kdevcustomscript.mo share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ka/LC_MESSAGES/kdevdocker.mo share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ka/LC_MESSAGES/kdevdocumentview.mo share/locale/ka/LC_MESSAGES/kdevelop.mo share/locale/ka/LC_MESSAGES/kdevexecute.mo share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ka/LC_MESSAGES/kdevexecutescript.mo share/locale/ka/LC_MESSAGES/kdevexternalscript.mo share/locale/ka/LC_MESSAGES/kdevfilemanager.mo share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo share/locale/ka/LC_MESSAGES/kdevflatpak.mo share/locale/ka/LC_MESSAGES/kdevgdb.mo share/locale/ka/LC_MESSAGES/kdevghprovider.mo share/locale/ka/LC_MESSAGES/kdevgit.mo share/locale/ka/LC_MESSAGES/kdevgrepview.mo share/locale/ka/LC_MESSAGES/kdevheaptrack.mo share/locale/ka/LC_MESSAGES/kdevkonsole.mo share/locale/ka/LC_MESSAGES/kdevlldb.mo share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevmanpage.mo share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo share/locale/ka/LC_MESSAGES/kdevninja.mo share/locale/ka/LC_MESSAGES/kdevokteta.mo share/locale/ka/LC_MESSAGES/kdevopenwith.mo share/locale/ka/LC_MESSAGES/kdevoutlineview.mo share/locale/ka/LC_MESSAGES/kdevpatchreview.mo share/locale/ka/LC_MESSAGES/kdevperforce.mo share/locale/ka/LC_MESSAGES/kdevplatform.mo share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo share/locale/ka/LC_MESSAGES/kdevqmljs.mo share/locale/ka/LC_MESSAGES/kdevqthelp.mo share/locale/ka/LC_MESSAGES/kdevquickopen.mo share/locale/ka/LC_MESSAGES/kdevscratchpad.mo share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ka/LC_MESSAGES/kdevsubversion.mo share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ka/LC_MESSAGES/kdevtestview.mo share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo share/locale/mai/LC_MESSAGES/kdevbazaar.mo share/locale/mai/LC_MESSAGES/kdevexecutescript.mo share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ms/LC_MESSAGES/kdevappwizard.mo share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo share/locale/ms/LC_MESSAGES/kdevcmake.mo share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ms/LC_MESSAGES/kdevcustommake.mo share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ms/LC_MESSAGES/kdevdocumentview.mo share/locale/ms/LC_MESSAGES/kdevelop.mo share/locale/ms/LC_MESSAGES/kdevexecute.mo share/locale/ms/LC_MESSAGES/kdevfilemanager.mo share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo share/locale/ru/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/ta/LC_MESSAGES/kdevkonsole.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/th/LC_MESSAGES/kdevappwizard.mo share/locale/th/LC_MESSAGES/kdevcustommake.mo share/locale/th/LC_MESSAGES/kdevkonsole.mo share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/kdevelopsessions/contents/ui/kdevelopsessions.qml share/plasma/plasmoids/kdevelopsessions/metadata.desktop share/qlogging-categories5/kdevelop.categories share/qlogging-categories5/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 957f9951bc76..c88fe70dc6cb 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958864 -SHA256 (KDE/release-service/23.08.4/kio-extras-23.08.4.tar.xz) = f68cbc21cd9e9544ee75b337b9c69171ce989fde801854048aa9fc109b48cd61 -SIZE (KDE/release-service/23.08.4/kio-extras-23.08.4.tar.xz) = 1490584 +TIMESTAMP = 1707889341 +SHA256 (KDE/release-service/23.08.5/kio-extras-23.08.5.tar.xz) = 1ae0ec1cc7239fd4fa46d8cb2629ceb364d4a70e7e56075d2ebfef68eb1b263f +SIZE (KDE/release-service/23.08.5/kio-extras-23.08.5.tar.xz) = 1491032 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index f6a74343bfef..8ab4f7036c1b 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958858 -SHA256 (KDE/release-service/23.08.4/kirigami-gallery-23.08.4.tar.xz) = aae2b5e93cca6837ce742bcfe2bdf116fafd34acb2cf1595c61d0f52004bbc3b -SIZE (KDE/release-service/23.08.4/kirigami-gallery-23.08.4.tar.xz) = 362064 +TIMESTAMP = 1707889336 +SHA256 (KDE/release-service/23.08.5/kirigami-gallery-23.08.5.tar.xz) = c4e37041633586fc63db7bf749fb3d4ff56a7d33320e19ea0aa5d8272b24c457 +SIZE (KDE/release-service/23.08.5/kirigami-gallery-23.08.5.tar.xz) = 362388 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index d4bcfac8cdbe..a01957e77e70 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958865 -SHA256 (KDE/release-service/23.08.4/kpublictransport-23.08.4.tar.xz) = 8123bfa9282ee64afaacd848e092c60b29b487ad8ce6f72e8d9f90fea626149d -SIZE (KDE/release-service/23.08.4/kpublictransport-23.08.4.tar.xz) = 571292 +TIMESTAMP = 1707889342 +SHA256 (KDE/release-service/23.08.5/kpublictransport-23.08.5.tar.xz) = e3f7e56e9e8b26310d26184e8b2a2b6f308c98cc98457181f4d5eabc0b255a58 +SIZE (KDE/release-service/23.08.5/kpublictransport-23.08.5.tar.xz) = 572952 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index ce0f7fdf3c45..b47528ab890c 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958863 -SHA256 (KDE/release-service/23.08.4/lokalize-23.08.4.tar.xz) = 381777123da71ade67ed076c54359a29334fdbdd468fdfebaf92617d8c174531 -SIZE (KDE/release-service/23.08.4/lokalize-23.08.4.tar.xz) = 2142760 +TIMESTAMP = 1707889340 +SHA256 (KDE/release-service/23.08.5/lokalize-23.08.5.tar.xz) = 8539a3c0bd5c89f42b81276a1d4fd4468f70976987ad329f2495fe2529833e6c +SIZE (KDE/release-service/23.08.5/lokalize-23.08.5.tar.xz) = 2142784 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 2745ea263561..72a7f84613af 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958857 -SHA256 (KDE/release-service/23.08.4/poxml-23.08.4.tar.xz) = 19f0007315bdb5468011c353959c2c36a8decb88efb6a7d556b6880bb4253747 -SIZE (KDE/release-service/23.08.4/poxml-23.08.4.tar.xz) = 44312 +TIMESTAMP = 1707889335 +SHA256 (KDE/release-service/23.08.5/poxml-23.08.5.tar.xz) = 7a5c72517cc93b8ba9c9ff61adb7c5e7fd2f157cfcb2d8e98c2c28d2c90a67c4 +SIZE (KDE/release-service/23.08.5/poxml-23.08.5.tar.xz) = 44332 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 39d1c673fdaa..8238672cee88 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958859 -SHA256 (KDE/release-service/23.08.4/umbrello-23.08.4.tar.xz) = 13e81319f4196f05598866a13b89e03d4b560bd7308967795777f9451d37ba6e -SIZE (KDE/release-service/23.08.4/umbrello-23.08.4.tar.xz) = 5775132 +TIMESTAMP = 1707889337 +SHA256 (KDE/release-service/23.08.5/umbrello-23.08.5.tar.xz) = 4c404222ee5a41976f2c561220c6f74867e9828a0d09a36a8166b9ee1b64c780 +SIZE (KDE/release-service/23.08.5/umbrello-23.08.5.tar.xz) = 5775280 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index a4056b3666cb..7d7544219ecc 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958883 -SHA256 (KDE/release-service/23.08.4/kate-23.08.4.tar.xz) = 297facaab205f67f2c61b17650ef27a10b32ea699083577eeece25d0beb3fba2 -SIZE (KDE/release-service/23.08.4/kate-23.08.4.tar.xz) = 8043840 +TIMESTAMP = 1707889355 +SHA256 (KDE/release-service/23.08.5/kate-23.08.5.tar.xz) = 683c49d9c4b2abd4b4660b607b65249a2adfdc48418b0d18ab90810d1a8f4e37 +SIZE (KDE/release-service/23.08.5/kate-23.08.5.tar.xz) = 8043480 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index cdd8cc28a0b6..c43af090cd89 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958908 -SHA256 (KDE/release-service/23.08.4/blinken-23.08.4.tar.xz) = 46580c129c70b08045d17831922f11d868348851bb4ba6a98a92744bea5f053d -SIZE (KDE/release-service/23.08.4/blinken-23.08.4.tar.xz) = 2725652 +TIMESTAMP = 1707889374 +SHA256 (KDE/release-service/23.08.5/blinken-23.08.5.tar.xz) = 4ad04b9973c97b1dd12f2b263b6fb8accdd6af68c97907681cb0ad80227ba3c6 +SIZE (KDE/release-service/23.08.5/blinken-23.08.5.tar.xz) = 2725548 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 518d051ddb00..cfd5f2c2d675 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958941 -SHA256 (KDE/release-service/23.08.4/bomber-23.08.4.tar.xz) = b36a5eb905bdf66f0e89b729d1c128b360f60e2d1b9d21482763bff9c70f437e -SIZE (KDE/release-service/23.08.4/bomber-23.08.4.tar.xz) = 840008 +TIMESTAMP = 1707889401 +SHA256 (KDE/release-service/23.08.5/bomber-23.08.5.tar.xz) = 769eb15c4a0f1ae2b6cd89c9d76d260873d3594f365c52b3b106003ffc48b38a +SIZE (KDE/release-service/23.08.5/bomber-23.08.5.tar.xz) = 840136 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index b92083775133..f627634cd12e 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958925 -SHA256 (KDE/release-service/23.08.4/bovo-23.08.4.tar.xz) = 42605e0001499aa7b5dda1f299812c156760eaee4cb5993bcc96e66ddadc60ce -SIZE (KDE/release-service/23.08.4/bovo-23.08.4.tar.xz) = 216564 +TIMESTAMP = 1707889388 +SHA256 (KDE/release-service/23.08.5/bovo-23.08.5.tar.xz) = db79b3cc909f1348b2fdf57705085ff9684c35f377c0cb962854e284a51f1e4b +SIZE (KDE/release-service/23.08.5/bovo-23.08.5.tar.xz) = 216552 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index d167ab49e34e..53499e8c5c13 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958912 -SHA256 (KDE/release-service/23.08.4/granatier-23.08.4.tar.xz) = b5f79de5a0f1a44f4a2f4e5368ab29aa3ce3342064b7c5332992b69ea93dddd8 -SIZE (KDE/release-service/23.08.4/granatier-23.08.4.tar.xz) = 2114916 +TIMESTAMP = 1707889378 +SHA256 (KDE/release-service/23.08.5/granatier-23.08.5.tar.xz) = f0074a621df9960d62ba0d4b8f817a592f3d02fdd243328549e9a544346729ee +SIZE (KDE/release-service/23.08.5/granatier-23.08.5.tar.xz) = 2114816 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index b915e92daa6b..391be48b7ea4 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958930 -SHA256 (KDE/release-service/23.08.4/kanagram-23.08.4.tar.xz) = b592ad7a311a6139fdfff0191a417e74e0a37710f325e9906feface881bf1672 -SIZE (KDE/release-service/23.08.4/kanagram-23.08.4.tar.xz) = 8069036 +TIMESTAMP = 1707889392 +SHA256 (KDE/release-service/23.08.5/kanagram-23.08.5.tar.xz) = 9290fc0b47c347ab31fc2b779894d8d5758806c1e6e0f581b7da4f6094d4c304 +SIZE (KDE/release-service/23.08.5/kanagram-23.08.5.tar.xz) = 8069044 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 8641135923dc..ee63819b345b 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958934 -SHA256 (KDE/release-service/23.08.4/kapman-23.08.4.tar.xz) = 1e4c5f82135160a5a5eaa1221dc670ed8cb78a3f4c67c0bd88f931c06d12d733 -SIZE (KDE/release-service/23.08.4/kapman-23.08.4.tar.xz) = 2483464 +TIMESTAMP = 1707889395 +SHA256 (KDE/release-service/23.08.5/kapman-23.08.5.tar.xz) = e3755f000532bae7cb41e521d7ac7b9d2cb43eb2b1cf705af1249ba366cea1e7 +SIZE (KDE/release-service/23.08.5/kapman-23.08.5.tar.xz) = 2483488 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index c8c7ec6e86ce..ec506cd0de94 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958943 -SHA256 (KDE/release-service/23.08.4/katomic-23.08.4.tar.xz) = 14b869b4532ba5d1a5d0ecbd4937ddebbf88fbc25410ad8d0f590476f1f17aee -SIZE (KDE/release-service/23.08.4/katomic-23.08.4.tar.xz) = 1454340 +TIMESTAMP = 1707889402 +SHA256 (KDE/release-service/23.08.5/katomic-23.08.5.tar.xz) = 0db2db3d1ab4e69e5ae0223001792615af12a3c2a37ca8c1cfef373fc741ac42 +SIZE (KDE/release-service/23.08.5/katomic-23.08.5.tar.xz) = 1454392 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 4f80609993c3..4a3d80a21db6 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958922 -SHA256 (KDE/release-service/23.08.4/kblackbox-23.08.4.tar.xz) = 6f06c193466246fa806a9cc06e0f5669d0ddf2304412a8f01bbda7b4e2fceb30 -SIZE (KDE/release-service/23.08.4/kblackbox-23.08.4.tar.xz) = 556844 +TIMESTAMP = 1707889386 +SHA256 (KDE/release-service/23.08.5/kblackbox-23.08.5.tar.xz) = 00082e57480bcb943f477072559373a3a98b6557f06a83a088d71912c2432159 +SIZE (KDE/release-service/23.08.5/kblackbox-23.08.5.tar.xz) = 556816 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index ffc1d4134c53..321bb2814042 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958921 -SHA256 (KDE/release-service/23.08.4/kblocks-23.08.4.tar.xz) = f8cb87a24d37259b4ca5e07ad7f907c98f031d687a974c6838d839c6679b976a -SIZE (KDE/release-service/23.08.4/kblocks-23.08.4.tar.xz) = 2109608 +TIMESTAMP = 1707889385 +SHA256 (KDE/release-service/23.08.5/kblocks-23.08.5.tar.xz) = 8f4997683e1bbe551bf1b5e63565d83c5d8dd36b90a802d052f37626b56faa27 +SIZE (KDE/release-service/23.08.5/kblocks-23.08.5.tar.xz) = 2109492 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 9304f06f64c8..8f8d099c1767 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958936 -SHA256 (KDE/release-service/23.08.4/kbounce-23.08.4.tar.xz) = af8a08c59dc6fac23f7ad00d524b69ba951f529425a84e782903a09ae563e452 -SIZE (KDE/release-service/23.08.4/kbounce-23.08.4.tar.xz) = 3546804 +TIMESTAMP = 1707889397 +SHA256 (KDE/release-service/23.08.5/kbounce-23.08.5.tar.xz) = f101c0bbf6ad2250b436473aaf8f65ea64512d792a69df10917cfcb940f0acfb +SIZE (KDE/release-service/23.08.5/kbounce-23.08.5.tar.xz) = 3545492 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index d23f8e5ee408..84136693cfe7 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958913 -SHA256 (KDE/release-service/23.08.4/kbreakout-23.08.4.tar.xz) = 65f2c594450521cd4a743b9c0aa9c4fe3552dc6a59748218f4c9c33ed274ef33 -SIZE (KDE/release-service/23.08.4/kbreakout-23.08.4.tar.xz) = 2561932 +TIMESTAMP = 1707889379 +SHA256 (KDE/release-service/23.08.5/kbreakout-23.08.5.tar.xz) = d02f386b08e38f8519103e2757fa602b1316d90554f73fd73829e5bb3666af48 +SIZE (KDE/release-service/23.08.5/kbreakout-23.08.5.tar.xz) = 2561604 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 702a5129259b..8987201d3279 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958915 -SHA256 (KDE/release-service/23.08.4/kdiamond-23.08.4.tar.xz) = c9b42ba81594f3c6353ce0f3224d7eb2b0370785ec8343f3a88c377532479a0b -SIZE (KDE/release-service/23.08.4/kdiamond-23.08.4.tar.xz) = 4710592 +TIMESTAMP = 1707889380 +SHA256 (KDE/release-service/23.08.5/kdiamond-23.08.5.tar.xz) = 31bfdcbe64c8d7210837f69ac294a895dc434a5ca115fa488d191801727972a6 +SIZE (KDE/release-service/23.08.5/kdiamond-23.08.5.tar.xz) = 4710560 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 8c03c46ebc28..a3ae61b0073d 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958946 -SHA256 (KDE/release-service/23.08.4/kfourinline-23.08.4.tar.xz) = 3690d438679e21d7e9cdbbf124c913b76cb829150be3ce940cf7fc2f07adb03c -SIZE (KDE/release-service/23.08.4/kfourinline-23.08.4.tar.xz) = 740420 +TIMESTAMP = 1707889405 +SHA256 (KDE/release-service/23.08.5/kfourinline-23.08.5.tar.xz) = 6d08110ab4af50f96bf996f5baf7f863736d0696024bfe27a0ed4a532fcbd7ba +SIZE (KDE/release-service/23.08.5/kfourinline-23.08.5.tar.xz) = 741372 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 65e41e5e4ef4..c177664050cd 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958948 -SHA256 (KDE/release-service/23.08.4/kgoldrunner-23.08.4.tar.xz) = b366e5acd8ef1c93d1cd803dd73dc038c7c834756261f21e6aa691efcea7da0a -SIZE (KDE/release-service/23.08.4/kgoldrunner-23.08.4.tar.xz) = 4968252 +TIMESTAMP = 1707889406 +SHA256 (KDE/release-service/23.08.5/kgoldrunner-23.08.5.tar.xz) = ec621250b3ac510ce1a752cc405ee6ff38a7e832cbaf05fd30a31581be005b0c +SIZE (KDE/release-service/23.08.5/kgoldrunner-23.08.5.tar.xz) = 4981040 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 109778d2b144..784269fb68a0 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958919 -SHA256 (KDE/release-service/23.08.4/khangman-23.08.4.tar.xz) = 1da11c42bd376b2d07c13e1b84ab52e52bdbf34e1a353c25dabdc4c4155442ca -SIZE (KDE/release-service/23.08.4/khangman-23.08.4.tar.xz) = 7444208 +TIMESTAMP = 1707889383 +SHA256 (KDE/release-service/23.08.5/khangman-23.08.5.tar.xz) = 4307017c1ada08a1cda5a38b45aebdd250520adcc773c580938fb1cb1fcd56f6 +SIZE (KDE/release-service/23.08.5/khangman-23.08.5.tar.xz) = 7448596 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index b30eacf2f09d..b10d4af99b0b 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958926 -SHA256 (KDE/release-service/23.08.4/kigo-23.08.4.tar.xz) = cd5299cafe868a16c867e5f4410a5ca8d9b39f48e2fe6309150b6b2aaf088bb2 -SIZE (KDE/release-service/23.08.4/kigo-23.08.4.tar.xz) = 5269340 +TIMESTAMP = 1707889389 +SHA256 (KDE/release-service/23.08.5/kigo-23.08.5.tar.xz) = 0ac07c74c98214606a588af2753b4db7e21d1e9d81b9cad258f2b4c77ab58af4 +SIZE (KDE/release-service/23.08.5/kigo-23.08.5.tar.xz) = 5269404 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index dd46b639343c..1e39c32abcbe 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958928 -SHA256 (KDE/release-service/23.08.4/killbots-23.08.4.tar.xz) = e44278bfb6ae8b058f5592098efec6d4f107347d096eb27f6e6a2b916fd92cb3 -SIZE (KDE/release-service/23.08.4/killbots-23.08.4.tar.xz) = 1206400 +TIMESTAMP = 1707889390 +SHA256 (KDE/release-service/23.08.5/killbots-23.08.5.tar.xz) = 316d9edaed7129952185fc0e119769eeb0e1f27678a778483d73eafa87433548 +SIZE (KDE/release-service/23.08.5/killbots-23.08.5.tar.xz) = 1208076 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index cf23ea198d8f..73868e9123b3 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958931 -SHA256 (KDE/release-service/23.08.4/kiriki-23.08.4.tar.xz) = fc39d829f8b318101f02f994736aabe8e658f2c3c604cb8ee42f2743f1f504e6 -SIZE (KDE/release-service/23.08.4/kiriki-23.08.4.tar.xz) = 371504 +TIMESTAMP = 1707889393 +SHA256 (KDE/release-service/23.08.5/kiriki-23.08.5.tar.xz) = c6b347264033dcfe0f44535828578595e7cec283ce3c872aa91a3856786aded6 +SIZE (KDE/release-service/23.08.5/kiriki-23.08.5.tar.xz) = 371540 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 8f0d534438ae..c4e40a681224 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958907 -SHA256 (KDE/release-service/23.08.4/kjumpingcube-23.08.4.tar.xz) = 5db4494e1e30218f0d1ff554cc6dd39430ed08320aa497f271679895903f759e -SIZE (KDE/release-service/23.08.4/kjumpingcube-23.08.4.tar.xz) = 338136 +TIMESTAMP = 1707889373 +SHA256 (KDE/release-service/23.08.5/kjumpingcube-23.08.5.tar.xz) = 8deea1baf63b2cb8cb0cc10a75dd601f3bc60c970b373947459f626303d39c70 +SIZE (KDE/release-service/23.08.5/kjumpingcube-23.08.5.tar.xz) = 339036 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 52642c5f708e..f6299c0106ab 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958938 -SHA256 (KDE/release-service/23.08.4/klickety-23.08.4.tar.xz) = 67cce90f550dd428e7a9739aa814d53666304311b711e97f9bdd6c5a93010e6e -SIZE (KDE/release-service/23.08.4/klickety-23.08.4.tar.xz) = 1502376 +TIMESTAMP = 1707889398 +SHA256 (KDE/release-service/23.08.5/klickety-23.08.5.tar.xz) = 69dc52d78d35659de5cef81f4bdacb2fd5d2625d980449aad0a497c806c89187 +SIZE (KDE/release-service/23.08.5/klickety-23.08.5.tar.xz) = 1502228 diff --git a/games/klines/distinfo b/games/klines/distinfo index 8d2eced35010..5562f655f6af 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958911 -SHA256 (KDE/release-service/23.08.4/klines-23.08.4.tar.xz) = a9cb2c4ab9d3cb9698d151f91df8e2b2705a1a257f3dc2607255bc6bdf464a38 -SIZE (KDE/release-service/23.08.4/klines-23.08.4.tar.xz) = 1739260 +TIMESTAMP = 1707889376 +SHA256 (KDE/release-service/23.08.5/klines-23.08.5.tar.xz) = fd7a44945d9402b4e1e601392c09255d82b86a0e0f7989a28b5fbb2bab8b371e +SIZE (KDE/release-service/23.08.5/klines-23.08.5.tar.xz) = 1739488 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 9d2d87953b6d..356cd62184b5 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958923 -SHA256 (KDE/release-service/23.08.4/kmahjongg-23.08.4.tar.xz) = 6057e05d12ebb16eabb417243134444c8f791c66a2a6a039a608b7d2c9a0f69d -SIZE (KDE/release-service/23.08.4/kmahjongg-23.08.4.tar.xz) = 4101040 +TIMESTAMP = 1707889386 +SHA256 (KDE/release-service/23.08.5/kmahjongg-23.08.5.tar.xz) = 8743ffa02b82d8a62d405dfc1ec6f05f16df8f0a9ca4c7e961f7f6723e1aa845 +SIZE (KDE/release-service/23.08.5/kmahjongg-23.08.5.tar.xz) = 4101108 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index caeb9f1c06d8..a9abbd79cf1a 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958914 -SHA256 (KDE/release-service/23.08.4/kmines-23.08.4.tar.xz) = bbde22c7ec23165819869fe38c229f0d86caeede1ce713c7179eb4cad23ed573 -SIZE (KDE/release-service/23.08.4/kmines-23.08.4.tar.xz) = 1010720 +TIMESTAMP = 1707889380 +SHA256 (KDE/release-service/23.08.5/kmines-23.08.5.tar.xz) = cbb32428ff922b0e6361e44ab4c6d50dbe8b62966469bc29822070b60b8e9353 +SIZE (KDE/release-service/23.08.5/kmines-23.08.5.tar.xz) = 1010708 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 654b4b5c9b1f..61ff075f85a3 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958939 -SHA256 (KDE/release-service/23.08.4/knavalbattle-23.08.4.tar.xz) = 8f29dd23ea2b3f6c67d60390cb3101ecf5bba95ecd84e4e97e8991288993d080 -SIZE (KDE/release-service/23.08.4/knavalbattle-23.08.4.tar.xz) = 1401952 +TIMESTAMP = 1707889399 +SHA256 (KDE/release-service/23.08.5/knavalbattle-23.08.5.tar.xz) = cbfe8b0ee711be88da2d989e1aae17ab94e2ff06a42471b3e99b343fbaa24727 +SIZE (KDE/release-service/23.08.5/knavalbattle-23.08.5.tar.xz) = 1402920 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 6edc1bdea9eb..63222055c89e 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958920 -SHA256 (KDE/release-service/23.08.4/knetwalk-23.08.4.tar.xz) = 3d0aadc90507a5e3f4efb02c4272faca77a2c6ae43b6c99642169f3365fa61ee -SIZE (KDE/release-service/23.08.4/knetwalk-23.08.4.tar.xz) = 1107012 +TIMESTAMP = 1707889384 +SHA256 (KDE/release-service/23.08.5/knetwalk-23.08.5.tar.xz) = 0b3bb9af3ce4ce4f439a9aebc815b17aad95d7376c411a995f8a11c640318734 +SIZE (KDE/release-service/23.08.5/knetwalk-23.08.5.tar.xz) = 1106916 diff --git a/games/knights/distinfo b/games/knights/distinfo index 1378ef5c1d0a..7f43155b9e41 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958937 -SHA256 (KDE/release-service/23.08.4/knights-23.08.4.tar.xz) = 2937a3003fc86d9b15d85d900969c8327bc712339047a852d9198ac35856d421 -SIZE (KDE/release-service/23.08.4/knights-23.08.4.tar.xz) = 3330968 +TIMESTAMP = 1707889397 +SHA256 (KDE/release-service/23.08.5/knights-23.08.5.tar.xz) = 5633236fca8183614f148f3995c6ff71719234dab35c27ee3714842f321bbe83 +SIZE (KDE/release-service/23.08.5/knights-23.08.5.tar.xz) = 3334500 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 20c711f2478d..556519e2f62b 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958932 -SHA256 (KDE/release-service/23.08.4/kolf-23.08.4.tar.xz) = 5ca42550527a6e3e7fdf8eb0f59308940977539d40c051735d8fffe3e23eba57 -SIZE (KDE/release-service/23.08.4/kolf-23.08.4.tar.xz) = 1075268 +TIMESTAMP = 1707889394 +SHA256 (KDE/release-service/23.08.5/kolf-23.08.5.tar.xz) = 98218c37fb98d514de6457c5981132351b122e705902fd85f96a2948ef6ad5b1 +SIZE (KDE/release-service/23.08.5/kolf-23.08.5.tar.xz) = 1076364 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 6a832c5dd722..71fe6d299db5 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958912 -SHA256 (KDE/release-service/23.08.4/kollision-23.08.4.tar.xz) = aa0470a743357f66caaefc3d705fb539d93213328f3a55741fc780cc123294fb -SIZE (KDE/release-service/23.08.4/kollision-23.08.4.tar.xz) = 308652 +TIMESTAMP = 1707889377 +SHA256 (KDE/release-service/23.08.5/kollision-23.08.5.tar.xz) = ff079313fae5d86afd6dfe22cd5f324472604d8f7ef40ef07de006557d755595 +SIZE (KDE/release-service/23.08.5/kollision-23.08.5.tar.xz) = 308616 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 087e5e5ca1f0..67c2055c044b 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958942 -SHA256 (KDE/release-service/23.08.4/konquest-23.08.4.tar.xz) = f8f7eda575808c8b0630811c43f86a09ccebdd5ca0207796a56d598270a18a23 -SIZE (KDE/release-service/23.08.4/konquest-23.08.4.tar.xz) = 876360 +TIMESTAMP = 1707889401 +SHA256 (KDE/release-service/23.08.5/konquest-23.08.5.tar.xz) = a980e70a425516723798eafaafb01866fb0d3a17b66bae0a64a557a6eaa70430 +SIZE (KDE/release-service/23.08.5/konquest-23.08.5.tar.xz) = 876844 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 37c3a6dd2223..311875aa8f06 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958933 -SHA256 (KDE/release-service/23.08.4/kpat-23.08.4.tar.xz) = 443cb2994ce36ebd9501e69aad356e9180ce11f77f979aaffa3b5446e8cef364 -SIZE (KDE/release-service/23.08.4/kpat-23.08.4.tar.xz) = 3755892 +TIMESTAMP = 1707889394 +SHA256 (KDE/release-service/23.08.5/kpat-23.08.5.tar.xz) = d5ccd09a228faa63fe5fff55fd95f85aa01d0346751e384c74cfab26c9a431bf +SIZE (KDE/release-service/23.08.5/kpat-23.08.5.tar.xz) = 3755860 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 6b3bce130846..33ac561d3ae7 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958935 -SHA256 (KDE/release-service/23.08.4/kreversi-23.08.4.tar.xz) = 8562b7cadfb2cafc555bcdb8f0d292971f2b4e0f820d9942889628f016348e8e -SIZE (KDE/release-service/23.08.4/kreversi-23.08.4.tar.xz) = 1079780 +TIMESTAMP = 1707889396 +SHA256 (KDE/release-service/23.08.5/kreversi-23.08.5.tar.xz) = c0fb6b03a798e82ec01e236e6a0f1e788a004080598ab336bff27bc955ecadd5 +SIZE (KDE/release-service/23.08.5/kreversi-23.08.5.tar.xz) = 1079904 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index aa6ce0854f96..d027ad9b6849 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958945 -SHA256 (KDE/release-service/23.08.4/kshisen-23.08.4.tar.xz) = 393203f6a69fa291a2e353599e81abf804dca7a9af160fc0948ae0d37ff1b2dd -SIZE (KDE/release-service/23.08.4/kshisen-23.08.4.tar.xz) = 1008936 +TIMESTAMP = 1707889404 +SHA256 (KDE/release-service/23.08.5/kshisen-23.08.5.tar.xz) = f2e7e804c720a1e89401e656204c2b1b9b4cff7458be0878d4bd6fc55eb546f5 +SIZE (KDE/release-service/23.08.5/kshisen-23.08.5.tar.xz) = 1010444 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 3e0d8b72ab48..897d8c32d06d 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958918 -SHA256 (KDE/release-service/23.08.4/ksirk-23.08.4.tar.xz) = bbbbf56b53566855c24ac99448658be72e694b4c8283f80851d87d80763c9e15 -SIZE (KDE/release-service/23.08.4/ksirk-23.08.4.tar.xz) = 7079372 +TIMESTAMP = 1707889383 +SHA256 (KDE/release-service/23.08.5/ksirk-23.08.5.tar.xz) = 6a34035c59f7710e291990b90d4c6e9612bb5c6fd46468cdc24ba969f6b7ef65 +SIZE (KDE/release-service/23.08.5/ksirk-23.08.5.tar.xz) = 7082556 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index d86b120cab80..c33e678f92cf 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958906 -SHA256 (KDE/release-service/23.08.4/ksnakeduel-23.08.4.tar.xz) = 63c2c8e6f00aaa3832b96872ea6e1dd7ae92dc6f1ffae6b2c0326ac231bdba79 -SIZE (KDE/release-service/23.08.4/ksnakeduel-23.08.4.tar.xz) = 604160 +TIMESTAMP = 1707889373 +SHA256 (KDE/release-service/23.08.5/ksnakeduel-23.08.5.tar.xz) = 8b4c71cd590a343743da77e9b89910666223112011881b37877fa2770be918f2 +SIZE (KDE/release-service/23.08.5/ksnakeduel-23.08.5.tar.xz) = 604216 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 14f5cfa66bfc..17832a6c15fe 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958916 -SHA256 (KDE/release-service/23.08.4/kspaceduel-23.08.4.tar.xz) = 31f8cfd5f24aff822701d1f429376119cfc3d4e6582f9ae5f564d4f5a3d1d805 -SIZE (KDE/release-service/23.08.4/kspaceduel-23.08.4.tar.xz) = 662096 +TIMESTAMP = 1707889381 +SHA256 (KDE/release-service/23.08.5/kspaceduel-23.08.5.tar.xz) = 564bcbc0b8504ee1115739212763f43fad2ef1f3a6a271d12d40035a40f4c131 +SIZE (KDE/release-service/23.08.5/kspaceduel-23.08.5.tar.xz) = 662164 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 9c37f60f4673..c9b390ae3b64 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958917 -SHA256 (KDE/release-service/23.08.4/ksquares-23.08.4.tar.xz) = d1fa5477d86444f6a201503ba392cbffb65f42c23910b2dd3d334466e68e7b48 -SIZE (KDE/release-service/23.08.4/ksquares-23.08.4.tar.xz) = 314512 +TIMESTAMP = 1707889382 +SHA256 (KDE/release-service/23.08.5/ksquares-23.08.5.tar.xz) = a0d7da6752b9d92c1a18b6f57511b756bf4fa227a3a2bff0ff94437b329fbc14 +SIZE (KDE/release-service/23.08.5/ksquares-23.08.5.tar.xz) = 314572 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index b62662507bd2..3454c5907c13 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958940 -SHA256 (KDE/release-service/23.08.4/ksudoku-23.08.4.tar.xz) = fa372d3dc6cae731ce10c467f461c11cdeb903a53e665aeaf83da05a4fa6f317 -SIZE (KDE/release-service/23.08.4/ksudoku-23.08.4.tar.xz) = 1709996 +TIMESTAMP = 1707889400 +SHA256 (KDE/release-service/23.08.5/ksudoku-23.08.5.tar.xz) = 9296becfdd9a120e09ed957afd6a450b290dbf3f1b5011bb64b093892b941766 +SIZE (KDE/release-service/23.08.5/ksudoku-23.08.5.tar.xz) = 1710076 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 49d1d1eb6a78..bb921dcd4943 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958929 -SHA256 (KDE/release-service/23.08.4/ktuberling-23.08.4.tar.xz) = 3c9c2f9371c93d06f39cea98897f9087784207e2fffa1c43cf63afa10b3f008b -SIZE (KDE/release-service/23.08.4/ktuberling-23.08.4.tar.xz) = 71417048 +TIMESTAMP = 1707889391 +SHA256 (KDE/release-service/23.08.5/ktuberling-23.08.5.tar.xz) = 9593c5c66cb84ce64b4cb6efc7e94b44e09aea3e04f19373660dbcb5e5c4c388 +SIZE (KDE/release-service/23.08.5/ktuberling-23.08.5.tar.xz) = 71404564 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 310d41265496..d46ab9ae07fe 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958909 -SHA256 (KDE/release-service/23.08.4/kubrick-23.08.4.tar.xz) = e239d208d9b04bc44ad22815503803b5bb7dc5ed41426d24c4e74206009ae68a -SIZE (KDE/release-service/23.08.4/kubrick-23.08.4.tar.xz) = 355368 +TIMESTAMP = 1707889375 +SHA256 (KDE/release-service/23.08.5/kubrick-23.08.5.tar.xz) = 75f527aca221e32e87236e867307bab23422766f77faff419dc20fe332620c00 +SIZE (KDE/release-service/23.08.5/kubrick-23.08.5.tar.xz) = 355416 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 4d59f0adb1f5..98f5a9248f0b 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958947 -SHA256 (KDE/release-service/23.08.4/libkdegames-23.08.4.tar.xz) = 4a5675e50b31abde322a66192f56f5c139b6ff18bce64ed2c6277bcaeed49dec -SIZE (KDE/release-service/23.08.4/libkdegames-23.08.4.tar.xz) = 5984140 +TIMESTAMP = 1707889405 +SHA256 (KDE/release-service/23.08.5/libkdegames-23.08.5.tar.xz) = 0ac583f4327d6003782054a9ee3d51c922bcdf04577a3f7f12b3840cabf2efed +SIZE (KDE/release-service/23.08.5/libkdegames-23.08.5.tar.xz) = 6016168 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 466556fe3ea7..7de1c28aa276 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958927 -SHA256 (KDE/release-service/23.08.4/libkmahjongg-23.08.4.tar.xz) = 3052bd39de55d70bc543711a629c5aa12f2dcc06d64a937370921002e6fde232 -SIZE (KDE/release-service/23.08.4/libkmahjongg-23.08.4.tar.xz) = 1688424 +TIMESTAMP = 1707889389 +SHA256 (KDE/release-service/23.08.5/libkmahjongg-23.08.5.tar.xz) = 7a88b40b6cc5c23451da3b736d4e4be3d67f0a745421f9daa1a29adc973dc365 +SIZE (KDE/release-service/23.08.5/libkmahjongg-23.08.5.tar.xz) = 1688620 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 57f9b2fa4a5b..ac2bb2c43dfa 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958924 -SHA256 (KDE/release-service/23.08.4/lskat-23.08.4.tar.xz) = 79ec7535d711d0fa4f47ff8e598a777d7b8cb03618abff2fda1db7c67b1597e1 -SIZE (KDE/release-service/23.08.4/lskat-23.08.4.tar.xz) = 1250376 +TIMESTAMP = 1707889387 +SHA256 (KDE/release-service/23.08.5/lskat-23.08.5.tar.xz) = 4d53fb9f9d1021d75fe149d00890adda9ece1641cce8cfdf38a5a70969f2e1e1 +SIZE (KDE/release-service/23.08.5/lskat-23.08.5.tar.xz) = 1251488 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 65530953fdac..bc581023f632 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958910 -SHA256 (KDE/release-service/23.08.4/palapeli-23.08.4.tar.xz) = 0a133fbd7690ef59ce87ea5d53e7261a08ae820139ae62d1897174f5d51b6631 -SIZE (KDE/release-service/23.08.4/palapeli-23.08.4.tar.xz) = 2121592 +TIMESTAMP = 1707889376 +SHA256 (KDE/release-service/23.08.5/palapeli-23.08.5.tar.xz) = faea7b9a18a4fc8fa4af2cca7994609bdb79039a9bd319cdc74fad55046b89d1 +SIZE (KDE/release-service/23.08.5/palapeli-23.08.5.tar.xz) = 2121544 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 2c68ef6caf45..dbf78aad5762 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958944 -SHA256 (KDE/release-service/23.08.4/picmi-23.08.4.tar.xz) = c6e76084de605318f4f6440d436d3ae41106042d0158ad044ae672d5bc7f7eb5 -SIZE (KDE/release-service/23.08.4/picmi-23.08.4.tar.xz) = 1541732 +TIMESTAMP = 1707889403 +SHA256 (KDE/release-service/23.08.5/picmi-23.08.5.tar.xz) = 3dc4a0b335142a4fb4ba8515401e4794104dc07938f7917ce0eab6a80fdd3f38 +SIZE (KDE/release-service/23.08.5/picmi-23.08.5.tar.xz) = 1541784 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 9259e6326ea4..db6cb6317b42 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958970 -SHA256 (KDE/release-service/23.08.4/gwenview-23.08.4.tar.xz) = 48549ba76c74d7079d935bece2d3d43186384ae5d14ffde59d55b12c9bcaad05 -SIZE (KDE/release-service/23.08.4/gwenview-23.08.4.tar.xz) = 6903120 +TIMESTAMP = 1707889426 +SHA256 (KDE/release-service/23.08.5/gwenview-23.08.5.tar.xz) = a4fcd1c053b750d26ea8a9183208ecb5ed1d9b281625de3393e14f8bdc169038 +SIZE (KDE/release-service/23.08.5/gwenview-23.08.5.tar.xz) = 6904128 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 07ebf5c5f1da..6b4711fc0393 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958955 -SHA256 (KDE/release-service/23.08.4/kamera-23.08.4.tar.xz) = 8ae97b59959f1168c82bd70263813c2ccb2f06838cf79a2e3c68b1fa84501791 -SIZE (KDE/release-service/23.08.4/kamera-23.08.4.tar.xz) = 131624 +TIMESTAMP = 1707889413 +SHA256 (KDE/release-service/23.08.5/kamera-23.08.5.tar.xz) = 46968631214314a05c7706547d173c5ecd2166ff740926da56322b4afc6d0db2 +SIZE (KDE/release-service/23.08.5/kamera-23.08.5.tar.xz) = 131704 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index a64d6296f292..8db23b367f70 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958962 -SHA256 (KDE/release-service/23.08.4/kcolorchooser-23.08.4.tar.xz) = 0fc7e1cc602b962a8fc5ed4062094d5ca2f11dc1520fb7017c825f546442a28c -SIZE (KDE/release-service/23.08.4/kcolorchooser-23.08.4.tar.xz) = 34880 +TIMESTAMP = 1707889418 +SHA256 (KDE/release-service/23.08.5/kcolorchooser-23.08.5.tar.xz) = c62a78191f423b7774930165424165e8866c16189b941323da1321f79992bb21 +SIZE (KDE/release-service/23.08.5/kcolorchooser-23.08.5.tar.xz) = 34908 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 204edee58d78..1d9979e74d49 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958960 -SHA256 (KDE/release-service/23.08.4/kdegraphics-mobipocket-23.08.4.tar.xz) = f870fafdd9ebabfda5b9ab524a8c4acc8268ee15f2ac4d7617c362d793171de7 -SIZE (KDE/release-service/23.08.4/kdegraphics-mobipocket-23.08.4.tar.xz) = 13008 +TIMESTAMP = 1707889417 +SHA256 (KDE/release-service/23.08.5/kdegraphics-mobipocket-23.08.5.tar.xz) = 714fa91bc7b004145fbba02e302dde0faa14bc652e4672c507fc507ac508a3fc +SIZE (KDE/release-service/23.08.5/kdegraphics-mobipocket-23.08.5.tar.xz) = 13004 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 68f46ad7905b..7e56aa654618 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958966 -SHA256 (KDE/release-service/23.08.4/svgpart-23.08.4.tar.xz) = 9083a25c195bbda98700c9582e91508e8a4311b110d6d046e8a1da59ee6f3f84 -SIZE (KDE/release-service/23.08.4/svgpart-23.08.4.tar.xz) = 28712 +TIMESTAMP = 1707889422 +SHA256 (KDE/release-service/23.08.5/svgpart-23.08.5.tar.xz) = 941a378dd84006e92bddad2d83e8f0e93b361347a0aa3d43e9fb5e9bec7778b9 +SIZE (KDE/release-service/23.08.5/svgpart-23.08.5.tar.xz) = 28720 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index ba76517ba113..1496c35df7ab 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958953 -SHA256 (KDE/release-service/23.08.4/kdegraphics-thumbnailers-23.08.4.tar.xz) = 86ef3f3585a085b50f59fc4a02f997c1a3b2519e73ed9881730842e2201f1045 -SIZE (KDE/release-service/23.08.4/kdegraphics-thumbnailers-23.08.4.tar.xz) = 49428 +TIMESTAMP = 1707889410 +SHA256 (KDE/release-service/23.08.5/kdegraphics-thumbnailers-23.08.5.tar.xz) = b05a040039fa079da026de8c296219e3718c4e142da823c6cfeaaea6d6986f30 +SIZE (KDE/release-service/23.08.5/kdegraphics-thumbnailers-23.08.5.tar.xz) = 49436 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 8d9d1c961333..b6f88d93bb2c 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958961 -SHA256 (KDE/release-service/23.08.4/kimagemapeditor-23.08.4.tar.xz) = 3c38face6bccfddaa36bb9a98df34b9472962200d0001def6073e77c24657eb0 -SIZE (KDE/release-service/23.08.4/kimagemapeditor-23.08.4.tar.xz) = 1106832 +TIMESTAMP = 1707889418 +SHA256 (KDE/release-service/23.08.5/kimagemapeditor-23.08.5.tar.xz) = 0f268fec6d1bf052f65891316cfbecc198b39e647c6300cb80d6dd8a8e90df0c +SIZE (KDE/release-service/23.08.5/kimagemapeditor-23.08.5.tar.xz) = 1107004 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index ec52c1e619bf..8cdf14f9deac 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958958 -SHA256 (KDE/release-service/23.08.4/kipi-plugins-23.08.4.tar.xz) = db6b81f295f07a8d814379077b270260bc703136b2b634682e7293581d65bf8a -SIZE (KDE/release-service/23.08.4/kipi-plugins-23.08.4.tar.xz) = 1569944 +TIMESTAMP = 1707889415 +SHA256 (KDE/release-service/23.08.5/kipi-plugins-23.08.5.tar.xz) = 20e03e35950f8428095b3bfd72ccf0236bff3bfcf49b618368405bd895ee536a +SIZE (KDE/release-service/23.08.5/kipi-plugins-23.08.5.tar.xz) = 1569876 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index bf9b982e13b2..c1103ac2c050 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958963 -SHA256 (KDE/release-service/23.08.4/kolourpaint-23.08.4.tar.xz) = 2c2b79aca4a690dc852074bfcb76a999f22d527e1ee30d47ef103e814b19f8e6 -SIZE (KDE/release-service/23.08.4/kolourpaint-23.08.4.tar.xz) = 5790208 +TIMESTAMP = 1707889419 +SHA256 (KDE/release-service/23.08.5/kolourpaint-23.08.5.tar.xz) = 942f6b588f24aba4f135de842e489bb94f2b16a405bb7fecfb5aab9896ea4ace +SIZE (KDE/release-service/23.08.5/kolourpaint-23.08.5.tar.xz) = 5790124 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index dd1837164d26..f4149f559de8 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1701977531 -SHA256 (KDE/release-service/23.08.4/kontrast-23.08.4.tar.xz) = d71d29221ba7db1bcd52e1e7ec369b272a58d0f7ee1d120d585b5a34e04c9fb0 -SIZE (KDE/release-service/23.08.4/kontrast-23.08.4.tar.xz) = 211820 -SHA256 (KDE/release-service/23.08.4/1fb315a862c30c20e99dd70967ca5be82d249dd4.patch) = b650f58c22b4eac2710939a9acdc0ca3b5746dbe49a431d01b273c189191c0b8 -SIZE (KDE/release-service/23.08.4/1fb315a862c30c20e99dd70967ca5be82d249dd4.patch) = 1188 +TIMESTAMP = 1707889422 +SHA256 (KDE/release-service/23.08.5/kontrast-23.08.5.tar.xz) = 7e131a0e89773e88afdb17740998731b3d44d31485e736dcc7e29b11460ffdab +SIZE (KDE/release-service/23.08.5/kontrast-23.08.5.tar.xz) = 211984 +SHA256 (KDE/release-service/23.08.5/1fb315a862c30c20e99dd70967ca5be82d249dd4.patch) = b650f58c22b4eac2710939a9acdc0ca3b5746dbe49a431d01b273c189191c0b8 +SIZE (KDE/release-service/23.08.5/1fb315a862c30c20e99dd70967ca5be82d249dd4.patch) = 1188 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 4583018b9155..602058c1619c 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958969 -SHA256 (KDE/release-service/23.08.4/kqtquickcharts-23.08.4.tar.xz) = 1b19e75027e2336dbc0e72a9db2bd826c435cfebfdc7bff3a0bf5b120893dae1 -SIZE (KDE/release-service/23.08.4/kqtquickcharts-23.08.4.tar.xz) = 30868 +TIMESTAMP = 1707889425 +SHA256 (KDE/release-service/23.08.5/kqtquickcharts-23.08.5.tar.xz) = 62f630715acf88598c7f144387195d261691994aa007d6b1d078a23df2f533fe +SIZE (KDE/release-service/23.08.5/kqtquickcharts-23.08.5.tar.xz) = 30868 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 0b2b110ae481..53d91524d010 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958959 -SHA256 (KDE/release-service/23.08.4/ksanecore-23.08.4.tar.xz) = 57d116917278369d9468c6a86d308019a76c1c4080b110b6cf9b589600d500e4 -SIZE (KDE/release-service/23.08.4/ksanecore-23.08.4.tar.xz) = 49608 +TIMESTAMP = 1707889416 +SHA256 (KDE/release-service/23.08.5/ksanecore-23.08.5.tar.xz) = 3d19c4caf13799b4bc835d18d77668ebb86771ba5128de3497a43302371d9ba2 +SIZE (KDE/release-service/23.08.5/ksanecore-23.08.5.tar.xz) = 50052 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 1dea3f9ca9cf..405c34f976be 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958968 -SHA256 (KDE/release-service/23.08.4/libkdcraw-23.08.4.tar.xz) = b11e49ab150613fed5ad3d28c523125be2d6d5cf309599635a1d3b7aae7ea3d6 -SIZE (KDE/release-service/23.08.4/libkdcraw-23.08.4.tar.xz) = 37516 +TIMESTAMP = 1707889423 +SHA256 (KDE/release-service/23.08.5/libkdcraw-23.08.5.tar.xz) = ab1080e449ff468032b7ba5f203fba1cdca3ab9958c4f9b5451ba0e2c0978f11 +SIZE (KDE/release-service/23.08.5/libkdcraw-23.08.5.tar.xz) = 37500 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 493381fa7dcf..65f91b820976 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958954 -SHA256 (KDE/release-service/23.08.4/libkexiv2-23.08.4.tar.xz) = a060a1fa36118c496ab0f0afa2efe4a7532c16ce6e4b7b4fa8fc00305688f3f6 -SIZE (KDE/release-service/23.08.4/libkexiv2-23.08.4.tar.xz) = 60688 +TIMESTAMP = 1707889412 +SHA256 (KDE/release-service/23.08.5/libkexiv2-23.08.5.tar.xz) = 31413030799065faf17ecbe46e6a4ce4c11758f5c1d590eb296c52f4fc1a9bf2 +SIZE (KDE/release-service/23.08.5/libkexiv2-23.08.5.tar.xz) = 60688 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index a387926a958f..559b6820b7f4 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958953 -SHA256 (KDE/release-service/23.08.4/libkipi-23.08.4.tar.xz) = 08c1f861942d4695fc2907cd6774405720359037aecbb71d4114155dbda67d7c -SIZE (KDE/release-service/23.08.4/libkipi-23.08.4.tar.xz) = 88576 +TIMESTAMP = 1707889411 +SHA256 (KDE/release-service/23.08.5/libkipi-23.08.5.tar.xz) = 724014ae75c6b5c39b92368a63d38b94353e41610c12804f96f190c5f1606285 +SIZE (KDE/release-service/23.08.5/libkipi-23.08.5.tar.xz) = 88616 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 98349480677f..517f6cc9930e 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958957 -SHA256 (KDE/release-service/23.08.4/libksane-23.08.4.tar.xz) = a09dea833942012502288a4e029cf8df2326edec52839bafea8825b8292f4dbf -SIZE (KDE/release-service/23.08.4/libksane-23.08.4.tar.xz) = 155488 +TIMESTAMP = 1707889415 +SHA256 (KDE/release-service/23.08.5/libksane-23.08.5.tar.xz) = deddff992193fdd5644c4b7b5ac60be34b775e7ad1bd444ea033b0a179242f6e +SIZE (KDE/release-service/23.08.5/libksane-23.08.5.tar.xz) = 156004 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 8ce47bb1c7ad..06dc8883cca7 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958965 -SHA256 (KDE/release-service/23.08.4/okular-23.08.4.tar.xz) = 37fd73178ae287dcdcc2b2bc61aee2aa30a64765f862230315f521a94b50af11 -SIZE (KDE/release-service/23.08.4/okular-23.08.4.tar.xz) = 8516856 +TIMESTAMP = 1707889421 +SHA256 (KDE/release-service/23.08.5/okular-23.08.5.tar.xz) = d5d51f69b176a250907ee70e8f97143fc9d705cee3ef7ff448626c8a529ce364 +SIZE (KDE/release-service/23.08.5/okular-23.08.5.tar.xz) = 8515760 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 6dd010206829..454742e2f3dc 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958971 -SHA256 (KDE/release-service/23.08.4/skanlite-23.08.4.tar.xz) = 737f7c0b36c63aae72432d6cb189b6d23bd7dd53382b6329bbef2d8df8600572 -SIZE (KDE/release-service/23.08.4/skanlite-23.08.4.tar.xz) = 2452116 +TIMESTAMP = 1707889426 +SHA256 (KDE/release-service/23.08.5/skanlite-23.08.5.tar.xz) = 667aca4dc89798f5a76c62c8f781d21102381b61d433942802cadf931f080dba +SIZE (KDE/release-service/23.08.5/skanlite-23.08.5.tar.xz) = 2452072 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 6d36ca501884..6e113a54d75c 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958972 -SHA256 (KDE/release-service/23.08.4/skanpage-23.08.4.tar.xz) = b657e15751211bc40d2fb09504d967478ca3ed6a72c1b31166d9513bf181bbd5 -SIZE (KDE/release-service/23.08.4/skanpage-23.08.4.tar.xz) = 1315848 +TIMESTAMP = 1707889427 +SHA256 (KDE/release-service/23.08.5/skanpage-23.08.5.tar.xz) = 38e2300e1466c43bb531989c29d11221ebcaa2e3e8bb062a814c1f03270b72bb +SIZE (KDE/release-service/23.08.5/skanpage-23.08.5.tar.xz) = 1317292 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 3c900cbeab04..1f7039e3798a 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958956 -SHA256 (KDE/release-service/23.08.4/spectacle-23.08.4.tar.xz) = 7865e53d4311551b51a95ba0a55a78058518d1b8938d2059e6face0c2e00cd13 -SIZE (KDE/release-service/23.08.4/spectacle-23.08.4.tar.xz) = 1352620 +TIMESTAMP = 1707889414 +SHA256 (KDE/release-service/23.08.5/spectacle-23.08.5.tar.xz) = 54f830ef6db284a7f482575f7793eb4a98915c4612b5b165885b5c29881d763c +SIZE (KDE/release-service/23.08.5/spectacle-23.08.5.tar.xz) = 1353080 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index bee965440d13..1c5671a37a90 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958840 -SHA256 (KDE/release-service/23.08.4/konversation-23.08.4.tar.xz) = 4fcc5db9c57bf9c609b0d4140d70c208962a8e60cc95cf26b5579f7da3cd87f2 -SIZE (KDE/release-service/23.08.4/konversation-23.08.4.tar.xz) = 4483044 +TIMESTAMP = 1707889322 +SHA256 (KDE/release-service/23.08.5/konversation-23.08.5.tar.xz) = 60576f16773789596b612969bbbf3a2762ef1cbab21bc19565483310e63d25be +SIZE (KDE/release-service/23.08.5/konversation-23.08.5.tar.xz) = 4490296 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index ef6d5de199d2..473951c76a30 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958904 -SHA256 (KDE/release-service/23.08.4/kiten-23.08.4.tar.xz) = 693435807d47bb89f4e90a859b01f048ffdadf469248d36dc5bf2effafaa5990 -SIZE (KDE/release-service/23.08.4/kiten-23.08.4.tar.xz) = 11336344 +TIMESTAMP = 1707889371 +SHA256 (KDE/release-service/23.08.5/kiten-23.08.5.tar.xz) = 1ee8516beb7c9bf3accf5ee32a08e47609d897476a5f9967e4d179533531623a +SIZE (KDE/release-service/23.08.5/kiten-23.08.5.tar.xz) = 11336836 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 8d7a46651a14..915ec14c3845 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958851 -SHA256 (KDE/release-service/23.08.4/kross-interpreters-23.08.4.tar.xz) = 9f50039cfaaa9a5ccf2f8bd35307efef5890c0ef8d0acf4ae17616ea83c41bb8 -SIZE (KDE/release-service/23.08.4/kross-interpreters-23.08.4.tar.xz) = 151732 +TIMESTAMP = 1707889331 +SHA256 (KDE/release-service/23.08.5/kross-interpreters-23.08.5.tar.xz) = 357810737c680036ca244d1f93c1a38c6183c54855c4f4a200bda52a8837fa7b +SIZE (KDE/release-service/23.08.5/kross-interpreters-23.08.5.tar.xz) = 151756 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 3e4c8f4ed2be..34b44a32d6c9 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958850 -SHA256 (KDE/release-service/23.08.4/kturtle-23.08.4.tar.xz) = 9fc21bc0a106fd7668347fdd01663e5fab151b41a27c7d6ffb17cbbdbcbd029d -SIZE (KDE/release-service/23.08.4/kturtle-23.08.4.tar.xz) = 2247892 +TIMESTAMP = 1707889330 +SHA256 (KDE/release-service/23.08.5/kturtle-23.08.5.tar.xz) = e423b61140eab5bf75b1ba3d3d68fb5b8937bd19799f0125db5bfb96c9420dd6 +SIZE (KDE/release-service/23.08.5/kturtle-23.08.5.tar.xz) = 2248160 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 06adc795f51b..6e961dc3c4f1 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958830 -SHA256 (KDE/release-service/23.08.4/analitza-23.08.4.tar.xz) = f32974016a30a23bd03ac157cb4385ee6f67c220ededf4200f3eaa8ec0571834 -SIZE (KDE/release-service/23.08.4/analitza-23.08.4.tar.xz) = 353132 +TIMESTAMP = 1707889314 +SHA256 (KDE/release-service/23.08.5/analitza-23.08.5.tar.xz) = 46ff3e93387cd8e341fc8c24a165127b0d60572c84b78b92337752e64ab606c0 +SIZE (KDE/release-service/23.08.5/analitza-23.08.5.tar.xz) = 352984 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 837e88384474..b9bf944489a8 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958836 -SHA256 (KDE/release-service/23.08.4/cantor-23.08.4.tar.xz) = a947d2b605683000d0138a406e787480bdb1743d2a9c71e0bf315627ab86d106 -SIZE (KDE/release-service/23.08.4/cantor-23.08.4.tar.xz) = 9285972 +TIMESTAMP = 1707889319 +SHA256 (KDE/release-service/23.08.5/cantor-23.08.5.tar.xz) = bf960b96f854cc25d4f13ec8ef52273e8b82f83baa1a75437c1d8ec6dc1fd81d +SIZE (KDE/release-service/23.08.5/cantor-23.08.5.tar.xz) = 9287344 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 7259411ec314..b8b7254de917 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958834 -SHA256 (KDE/release-service/23.08.4/kalgebra-23.08.4.tar.xz) = 8dd74a56862dc8dd57d618ea255062e0b9e21a83a2ee0b4f5e08eb2ea2029d13 -SIZE (KDE/release-service/23.08.4/kalgebra-23.08.4.tar.xz) = 1039864 +TIMESTAMP = 1707889317 +SHA256 (KDE/release-service/23.08.5/kalgebra-23.08.5.tar.xz) = 042f17211de75c7e65cf2e7b07718e882eae08c56fc9aa52538f63326ae9533a +SIZE (KDE/release-service/23.08.5/kalgebra-23.08.5.tar.xz) = 1039996 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 030d2732659d..2e9776f17dab 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958829 -SHA256 (KDE/release-service/23.08.4/kalk-23.08.4.tar.xz) = 2cd6eee395ce7ff70d274ca55c99e2ad61ee8162ce34712d33eb696a6e9eecd9 -SIZE (KDE/release-service/23.08.4/kalk-23.08.4.tar.xz) = 85652 +TIMESTAMP = 1707889314 +SHA256 (KDE/release-service/23.08.5/kalk-23.08.5.tar.xz) = d9e5e9534e64b670e20171f397601b2278aa8bf962e216388ee3b4dc893397e0 +SIZE (KDE/release-service/23.08.5/kalk-23.08.5.tar.xz) = 85792 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 5d86bd330e04..909577de1c3a 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958832 -SHA256 (KDE/release-service/23.08.4/kbruch-23.08.4.tar.xz) = 5cac59c9266d275ec3e76f321d0e9fd7799ef5d16afa0a0e41ce029dc334d3e6 -SIZE (KDE/release-service/23.08.4/kbruch-23.08.4.tar.xz) = 5662880 +TIMESTAMP = 1707889316 +SHA256 (KDE/release-service/23.08.5/kbruch-23.08.5.tar.xz) = db7d47e7823bc9ff5824a86e690638bdc8ae7507ff32ad772a80c63b87e01182 +SIZE (KDE/release-service/23.08.5/kbruch-23.08.5.tar.xz) = 5662960 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 283419893bab..c855ec21a16c 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958828 -SHA256 (KDE/release-service/23.08.4/kcalc-23.08.4.tar.xz) = 79491e91a86c6db92c8925f6ee1e03d6621fb1e258724101dffb0aab0940f880 -SIZE (KDE/release-service/23.08.4/kcalc-23.08.4.tar.xz) = 440940 +TIMESTAMP = 1707889313 +SHA256 (KDE/release-service/23.08.5/kcalc-23.08.5.tar.xz) = e545d67389f25b480b4eff2c40617b4e97172717d297d86e5c07ff7a6317437e +SIZE (KDE/release-service/23.08.5/kcalc-23.08.5.tar.xz) = 441012 diff --git a/math/kig/distinfo b/math/kig/distinfo index bd8bf070d971..d83b52a2e3bf 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958831 -SHA256 (KDE/release-service/23.08.4/kig-23.08.4.tar.xz) = 5314ae3426b6f2a58c87642f7e5456247e360b36e79d9f180224f7e4a883d3af -SIZE (KDE/release-service/23.08.4/kig-23.08.4.tar.xz) = 3299000 +TIMESTAMP = 1707889315 +SHA256 (KDE/release-service/23.08.5/kig-23.08.5.tar.xz) = af60bd4d9440dd404ebd2be0d6799a8e571307b16034ca5c790a1c6b0b2d705e +SIZE (KDE/release-service/23.08.5/kig-23.08.5.tar.xz) = 3298936 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index c1bde5988486..a1ddf0af03a4 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958833 -SHA256 (KDE/release-service/23.08.4/kmplot-23.08.4.tar.xz) = 22bdbef141434ba7a51a4789fffaac00813867feb8e7efca74651a79a152bdfe -SIZE (KDE/release-service/23.08.4/kmplot-23.08.4.tar.xz) = 3101432 +TIMESTAMP = 1707889317 +SHA256 (KDE/release-service/23.08.5/kmplot-23.08.5.tar.xz) = 84e9047935e4497a05bc3c8ca9fd5525bc71b094cb6f48a78093537898bc2d17 +SIZE (KDE/release-service/23.08.5/kmplot-23.08.5.tar.xz) = 3101360 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 3fd279c39e94..6367ca212c7f 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958835 -SHA256 (KDE/release-service/23.08.4/rocs-23.08.4.tar.xz) = e1c9e41dafa0b02987655ef1d6d844c3705dc6834fcbabde28e33516efd70205 -SIZE (KDE/release-service/23.08.4/rocs-23.08.4.tar.xz) = 1571048 +TIMESTAMP = 1707889318 +SHA256 (KDE/release-service/23.08.5/rocs-23.08.5.tar.xz) = f9bcc1ab8222ea48e45b58dd70449b7e02f4cd1e2bd6f62d2879e82588cd3eb1 +SIZE (KDE/release-service/23.08.5/rocs-23.08.5.tar.xz) = 1571200 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index a7b81ddcc01f..383d3392c933 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959012 -SHA256 (KDE/release-service/23.08.4/artikulate-23.08.4.tar.xz) = dcd58a8ef38fd32e7a6a240483e876ed0843dab80d81212e0e3f6e0cc604adef -SIZE (KDE/release-service/23.08.4/artikulate-23.08.4.tar.xz) = 1095464 +TIMESTAMP = 1707889459 +SHA256 (KDE/release-service/23.08.5/artikulate-23.08.5.tar.xz) = a7099ba6d8524ffde77155476c72a5d87762456aeef2c8baf2954e08e8316ba1 +SIZE (KDE/release-service/23.08.5/artikulate-23.08.5.tar.xz) = 1095552 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 61524c92fcb4..bb499a7b3b74 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959013 -SHA256 (KDE/release-service/23.08.4/kdeedu-data-23.08.4.tar.xz) = 527ddec1f53336d08b7aa0147e816e159dee177a5cddad4cb64a3880b7374b00 -SIZE (KDE/release-service/23.08.4/kdeedu-data-23.08.4.tar.xz) = 333520 +TIMESTAMP = 1707889460 +SHA256 (KDE/release-service/23.08.5/kdeedu-data-23.08.5.tar.xz) = 91da65c109c81ca65b502aa4e4005adbfa3c6aef8f9fa2ed8165c751714f2334 +SIZE (KDE/release-service/23.08.5/kdeedu-data-23.08.5.tar.xz) = 333492 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index a880b7afb737..e7b089ad5bdb 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959013 -SHA256 (KDE/release-service/23.08.4/kgeography-23.08.4.tar.xz) = 8f1b6008185a0e4974959d9e1b89d14243219ed93841de498861de5c93c5db1a -SIZE (KDE/release-service/23.08.4/kgeography-23.08.4.tar.xz) = 12552756 +TIMESTAMP = 1707889460 +SHA256 (KDE/release-service/23.08.5/kgeography-23.08.5.tar.xz) = b5f1a0b853a2473c0f0fc036c2fb84f5adecbf91ab033b90507a1c99bb139ef1 +SIZE (KDE/release-service/23.08.5/kgeography-23.08.5.tar.xz) = 12553068 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 88f77b61d045..1310932c2c19 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959011 -SHA256 (KDE/release-service/23.08.4/klettres-23.08.4.tar.xz) = f6167c31a049bb71153be129e76a3462526e1c717a607631f6169dff1b246098 -SIZE (KDE/release-service/23.08.4/klettres-23.08.4.tar.xz) = 47846384 +TIMESTAMP = 1707889458 +SHA256 (KDE/release-service/23.08.5/klettres-23.08.5.tar.xz) = eac927a2fc798370e3bffda7872d0e7408c41d378a2e3a52c1be288216c9817e +SIZE (KDE/release-service/23.08.5/klettres-23.08.5.tar.xz) = 47844268 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index a2ce2f6aad12..2108d3379642 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959007 -SHA256 (KDE/release-service/23.08.4/ktouch-23.08.4.tar.xz) = d90db39048eb12ea186e7d6d63550e34dfaaafbe43acc92096c8856f55adeea3 -SIZE (KDE/release-service/23.08.4/ktouch-23.08.4.tar.xz) = 5040416 +TIMESTAMP = 1707889455 +SHA256 (KDE/release-service/23.08.5/ktouch-23.08.5.tar.xz) = 2d102a73560da4676628bb138eeec2d847dd35db0224b9fd0a7016ebfef59c5d +SIZE (KDE/release-service/23.08.5/ktouch-23.08.5.tar.xz) = 5040232 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 43f0a247d029..e516545881e0 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959009 -SHA256 (KDE/release-service/23.08.4/kwordquiz-23.08.4.tar.xz) = 405e2b6d1ca0be9e8d81b02422edd467e2870f0c8701c21f0f0a8165d4aadcbe -SIZE (KDE/release-service/23.08.4/kwordquiz-23.08.4.tar.xz) = 4073160 +TIMESTAMP = 1707889457 +SHA256 (KDE/release-service/23.08.5/kwordquiz-23.08.5.tar.xz) = 5e4a243269a0492336b10aafd372d777cec078d501cfa213ca673360e167b0f0 +SIZE (KDE/release-service/23.08.5/kwordquiz-23.08.5.tar.xz) = 4073612 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 2d6acab3d9a6..afa64e1f063c 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959008 -SHA256 (KDE/release-service/23.08.4/libkeduvocdocument-23.08.4.tar.xz) = 974d89848292e7d05fba45494ebf95a83c30962da912710e5108da27969f6bcb -SIZE (KDE/release-service/23.08.4/libkeduvocdocument-23.08.4.tar.xz) = 229624 +TIMESTAMP = 1707889456 +SHA256 (KDE/release-service/23.08.5/libkeduvocdocument-23.08.5.tar.xz) = bdae89c39f063874115235cc69938fbcd3ff83a3d521f4c1ebe67bd32ff39e16 +SIZE (KDE/release-service/23.08.5/libkeduvocdocument-23.08.5.tar.xz) = 229608 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 4f02db0bb122..7157343b8a58 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959008 -SHA256 (KDE/release-service/23.08.4/parley-23.08.4.tar.xz) = 4c45d0a53c2f4b3e5ccf71daf32d0b6201c26de989d656c6252a433b6659d5f8 -SIZE (KDE/release-service/23.08.4/parley-23.08.4.tar.xz) = 8601656 +TIMESTAMP = 1707889456 +SHA256 (KDE/release-service/23.08.5/parley-23.08.5.tar.xz) = 5695758664d17cbaa023ac0f373041cc3b40036aba52a0dacb194e128e6d2067 +SIZE (KDE/release-service/23.08.5/parley-23.08.5.tar.xz) = 8610724 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 12a33e40a6c0..c7402c60957c 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958841 -SHA256 (KDE/release-service/23.08.4/dragon-23.08.4.tar.xz) = a5b504c61241c820ee5440cb09090d575f5d364238c91ce15a0c67355d12acc0 -SIZE (KDE/release-service/23.08.4/dragon-23.08.4.tar.xz) = 1671564 +TIMESTAMP = 1707889323 +SHA256 (KDE/release-service/23.08.5/dragon-23.08.5.tar.xz) = 410621fbda859cabf6ef156506a6fce4f65f4565065691ee8c9bfc83c0a11571 +SIZE (KDE/release-service/23.08.5/dragon-23.08.5.tar.xz) = 1671520 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index ca20b39b50cc..8e186a68bb77 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958842 -SHA256 (KDE/release-service/23.08.4/kamoso-23.08.4.tar.xz) = cec886f0d88f0c422db47a91aa95b9f2c9c97c4829216e2cb1ac601345ba5b65 -SIZE (KDE/release-service/23.08.4/kamoso-23.08.4.tar.xz) = 233744 +TIMESTAMP = 1707889324 +SHA256 (KDE/release-service/23.08.5/kamoso-23.08.5.tar.xz) = 84cc4538da2906c1503de97e6fb6f1ef790f0e7b9f3c08f6367770e5bdf08d01 +SIZE (KDE/release-service/23.08.5/kamoso-23.08.5.tar.xz) = 233444 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index d8b3ab8dba2f..59c2274fa158 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958843 -SHA256 (KDE/release-service/23.08.4/kasts-23.08.4.tar.xz) = b1e659d6c79b14be594753b7eb27391554f9eabc106d4900c801c4dfbe0072a3 -SIZE (KDE/release-service/23.08.4/kasts-23.08.4.tar.xz) = 575640 +TIMESTAMP = 1707889325 +SHA256 (KDE/release-service/23.08.5/kasts-23.08.5.tar.xz) = 90677828acc841c455d7d6abd22a4270f8c754dd9a55ddc9b08e5ced6816b6d8 +SIZE (KDE/release-service/23.08.5/kasts-23.08.5.tar.xz) = 581312 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 8e6e42aa7b0d..249e0551d40a 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958844 -SHA256 (KDE/release-service/23.08.4/ffmpegthumbs-23.08.4.tar.xz) = 502f4310afb47a11826e42b68f828641858dbddd1d1247f7b03372878c77684b -SIZE (KDE/release-service/23.08.4/ffmpegthumbs-23.08.4.tar.xz) = 32956 +TIMESTAMP = 1707889326 +SHA256 (KDE/release-service/23.08.5/ffmpegthumbs-23.08.5.tar.xz) = dad83ce22fccf141bb19fd6192c73dc0cab6365c86251e68f393962f0a5be5df +SIZE (KDE/release-service/23.08.5/ffmpegthumbs-23.08.5.tar.xz) = 32984 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index c4b488876c0f..75a5b5da5854 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958843 -SHA256 (KDE/release-service/23.08.4/kdenlive-23.08.4.tar.xz) = 65c611090d8e16a0f3ae52700a44fbecac7ec5f136188faca38b43f34502d313 -SIZE (KDE/release-service/23.08.4/kdenlive-23.08.4.tar.xz) = 12710892 +TIMESTAMP = 1707889325 +SHA256 (KDE/release-service/23.08.5/kdenlive-23.08.5.tar.xz) = 9ae96458e6a257c323f9845341410a140740260f3f8971ce35004de5161a83db +SIZE (KDE/release-service/23.08.5/kdenlive-23.08.5.tar.xz) = 12728000 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 6aab02d4f911..68d503f425a2 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958840 -SHA256 (KDE/release-service/23.08.4/plasmatube-23.08.4.tar.xz) = 6191ca6cdeb00c6c613e8e9596fda6a349e06e833c54d76b020661adab92b455 -SIZE (KDE/release-service/23.08.4/plasmatube-23.08.4.tar.xz) = 83900 +TIMESTAMP = 1707889322 +SHA256 (KDE/release-service/23.08.5/plasmatube-23.08.5.tar.xz) = 66ca4fdc2059d72651d6be5264860ba66af90e0be10af80c2ea30859727c1b9d +SIZE (KDE/release-service/23.08.5/plasmatube-23.08.5.tar.xz) = 84224 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 70192f426904..2fb8347452c6 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958848 -SHA256 (KDE/release-service/23.08.4/kaccounts-integration-23.08.4.tar.xz) = 7bec166405cca850921e12ae86a32e1c6c35411c3baeb5d7edc7c3350d71c952 -SIZE (KDE/release-service/23.08.4/kaccounts-integration-23.08.4.tar.xz) = 88496 +TIMESTAMP = 1707889329 +SHA256 (KDE/release-service/23.08.5/kaccounts-integration-23.08.5.tar.xz) = c02ee25495c387dfc9c7581babd4756e04d7c3dae68bffd1652cf418e1d129b9 +SIZE (KDE/release-service/23.08.5/kaccounts-integration-23.08.5.tar.xz) = 88544 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 61c14bc4fddb..08129e5b826a 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958845 -SHA256 (KDE/release-service/23.08.4/kaccounts-providers-23.08.4.tar.xz) = 09c50b11845825cb0607af17dca2cececd54743b3068f1488d572d03b7288f85 -SIZE (KDE/release-service/23.08.4/kaccounts-providers-23.08.4.tar.xz) = 66160 +TIMESTAMP = 1707889327 +SHA256 (KDE/release-service/23.08.5/kaccounts-providers-23.08.5.tar.xz) = 083d80039e817906e5349aef3bd8024ac84f427ad37820a5349861aa1499e5c5 +SIZE (KDE/release-service/23.08.5/kaccounts-providers-23.08.5.tar.xz) = 66184 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index a7d0322d3dbc..5c9e5b2fcc7b 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958846 -SHA256 (KDE/release-service/23.08.4/kopete-23.08.4.tar.xz) = 1deeb3eff4e8dd874c9ac91dab78f0fdc785ae50a69ea4a28ae6d615f347e552 -SIZE (KDE/release-service/23.08.4/kopete-23.08.4.tar.xz) = 10175692 +TIMESTAMP = 1707889327 +SHA256 (KDE/release-service/23.08.5/kopete-23.08.5.tar.xz) = 0af87805f0c256ec3e5615e3ec70720ee09d0dbdc0a36b53813f3078a91b8e31 +SIZE (KDE/release-service/23.08.5/kopete-23.08.5.tar.xz) = 10182548 diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index 5f52a0a4fa5f..54a193e8aa98 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958847 -SHA256 (KDE/release-service/23.08.4/neochat-23.08.4.tar.xz) = 6d98038200bc042f2a8b96032eca531a39c98a3616ff6a34aa713fa08978ace9 -SIZE (KDE/release-service/23.08.4/neochat-23.08.4.tar.xz) = 784304 +TIMESTAMP = 1707889328 +SHA256 (KDE/release-service/23.08.5/neochat-23.08.5.tar.xz) = d300c6d8eb1dcc96b853c61a43e058ae923b939e3991755ddce1d9f210904632 +SIZE (KDE/release-service/23.08.5/neochat-23.08.5.tar.xz) = 795564 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 112b95973632..bc37aad5a54d 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958849 -SHA256 (KDE/release-service/23.08.4/tokodon-23.08.4.tar.xz) = 1cd3b4d9e03e2412a4713e8970c48f882791cf354ad3c342aca5629d6de54dc3 -SIZE (KDE/release-service/23.08.4/tokodon-23.08.4.tar.xz) = 333940 +TIMESTAMP = 1707889329 +SHA256 (KDE/release-service/23.08.5/tokodon-23.08.5.tar.xz) = 4b887aa586712a771aa4a72dc4421b7e82839ecd406bcb47bc66db5fa6e81265 +SIZE (KDE/release-service/23.08.5/tokodon-23.08.5.tar.xz) = 335920 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index ddae31ec40d8..172758c0a848 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958894 -SHA256 (KDE/release-service/23.08.4/ktorrent-23.08.4.tar.xz) = d5f3cbea3a5d37710a3724ce6990e4b2d25e06be8ec80d92525d87d9751f0a61 -SIZE (KDE/release-service/23.08.4/ktorrent-23.08.4.tar.xz) = 2155860 +TIMESTAMP = 1707889364 +SHA256 (KDE/release-service/23.08.5/ktorrent-23.08.5.tar.xz) = 16b8ad2d9bac0680d5203a5cda139aafecd81d824e80d065bf7fc5864588d782 +SIZE (KDE/release-service/23.08.5/ktorrent-23.08.5.tar.xz) = 2170976 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 4521651e1137..8c5dc7b55456 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958893 -SHA256 (KDE/release-service/23.08.4/libktorrent-23.08.4.tar.xz) = 3b7c437aeed902267d642af0dd45cbac5f8b6e9814d9428286f59fa14545db6f -SIZE (KDE/release-service/23.08.4/libktorrent-23.08.4.tar.xz) = 604128 +TIMESTAMP = 1707889363 +SHA256 (KDE/release-service/23.08.5/libktorrent-23.08.5.tar.xz) = 0fa23c3f5a8e6aeaf76e1c3f1ff7c10046d4ad925798907cf5b28c9788d297bd +SIZE (KDE/release-service/23.08.5/libktorrent-23.08.5.tar.xz) = 604184 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 5378fc0cee9e..d7d6e6b7c255 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959036 -SHA256 (KDE/release-service/23.08.4/akonadi-calendar-23.08.4.tar.xz) = b8a6b260c3230d8336382d8398e3106e308148bf0d3e9dc1dd613e9533ce5e75 -SIZE (KDE/release-service/23.08.4/akonadi-calendar-23.08.4.tar.xz) = 475156 +TIMESTAMP = 1707889478 +SHA256 (KDE/release-service/23.08.5/akonadi-calendar-23.08.5.tar.xz) = cf8da9409412ed3348ee4a8ab9e2df8ecf844070f84c8cdbf0b6f4c8269339ca +SIZE (KDE/release-service/23.08.5/akonadi-calendar-23.08.5.tar.xz) = 476140 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 35c02e4f4481..7bd1712986a8 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,198 +1,199 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KPim5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KPim5/AkonadiCalendar/Akonadi/CalendarBase include/KPim5/AkonadiCalendar/Akonadi/CalendarClipboard include/KPim5/AkonadiCalendar/Akonadi/CalendarUtils include/KPim5/AkonadiCalendar/Akonadi/ETMCalendar include/KPim5/AkonadiCalendar/Akonadi/FetchJobCalendar include/KPim5/AkonadiCalendar/Akonadi/FreeBusyManager include/KPim5/AkonadiCalendar/Akonadi/FreeBusyProviderBase include/KPim5/AkonadiCalendar/Akonadi/History include/KPim5/AkonadiCalendar/Akonadi/ICalImporter include/KPim5/AkonadiCalendar/Akonadi/ITIPHandler include/KPim5/AkonadiCalendar/Akonadi/IncidenceChanger include/KPim5/AkonadiCalendar/Akonadi/IncidenceTreeModel include/KPim5/AkonadiCalendar/Akonadi/PublishDialog include/KPim5/AkonadiCalendar/Akonadi/SearchCollectionHelper include/KPim5/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KPim5/AkonadiCalendar/Akonadi/TodoModel include/KPim5/AkonadiCalendar/Akonadi/TodoPurger include/KPim5/AkonadiCalendar/akonadi-calendar_version.h include/KPim5/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KPim5/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KPim5/AkonadiCalendar/akonadi/calendarbase.h include/KPim5/AkonadiCalendar/akonadi/calendarclipboard.h include/KPim5/AkonadiCalendar/akonadi/calendarsettings.h include/KPim5/AkonadiCalendar/akonadi/calendarutils.h include/KPim5/AkonadiCalendar/akonadi/etmcalendar.h include/KPim5/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KPim5/AkonadiCalendar/akonadi/freebusymanager.h include/KPim5/AkonadiCalendar/akonadi/freebusyproviderbase.h include/KPim5/AkonadiCalendar/akonadi/history.h include/KPim5/AkonadiCalendar/akonadi/icalimporter.h include/KPim5/AkonadiCalendar/akonadi/incidencechanger.h include/KPim5/AkonadiCalendar/akonadi/incidencetreemodel.h include/KPim5/AkonadiCalendar/akonadi/itiphandler.h include/KPim5/AkonadiCalendar/akonadi/publishdialog.h include/KPim5/AkonadiCalendar/akonadi/searchcollectionhelper.h include/KPim5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KPim5/AkonadiCalendar/akonadi/todomodel.h include/KPim5/AkonadiCalendar/akonadi/todopurger.h lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfig.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfigVersion.cmake lib/cmake/KF5AkonadiCalendar/KPim5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiCalendar/KPim5AkonadiCalendarTargets.cmake lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarConfig.cmake lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarConfigVersion.cmake lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim5AkonadiCalendar/KPim5AkonadiCalendarTargets.cmake lib/libKPim5AkonadiCalendar.so lib/libKPim5AkonadiCalendar.so.5 lib/libKPim5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiCalendar.pri %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so %%QT_PLUGINDIR%%/kf5/org.kde.kcalendarcore.calendars/libakonadicalendarplugin.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications5/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/kalendarac.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5.mo share/locale/az/LC_MESSAGES/kalendarac.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bg/LC_MESSAGES/kalendarac.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5.mo share/locale/el/LC_MESSAGES/kalendarac.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5.mo share/locale/eu/LC_MESSAGES/kalendarac.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5.mo share/locale/gl/LC_MESSAGES/kalendarac.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/hu/LC_MESSAGES/kalendarac.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ja/LC_MESSAGES/kalendarac.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ka/LC_MESSAGES/kalendarac.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ka/LC_MESSAGES/libakonadi-calendar5.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lt/LC_MESSAGES/kalendarac.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mai/LC_MESSAGES/libakonadi-calendar5.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt/LC_MESSAGES/kalendarac.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ru/LC_MESSAGES/kalendarac.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ta/LC_MESSAGES/kalendarac.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5.mo share/locale/tr/LC_MESSAGES/kalendarac.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_TW/LC_MESSAGES/kalendarac.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5.mo share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories share/qlogging-categories5/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 4d921f3984d1..b1a736e8ea5a 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959039 -SHA256 (KDE/release-service/23.08.4/akonadi-contacts-23.08.4.tar.xz) = 9864cc81a028002729d57a77123c90aaa39c7ce0643d82cc765f4933390db5db -SIZE (KDE/release-service/23.08.4/akonadi-contacts-23.08.4.tar.xz) = 420864 +TIMESTAMP = 1707889480 +SHA256 (KDE/release-service/23.08.5/akonadi-contacts-23.08.5.tar.xz) = e7a4b37c6bb4dbdb074398a48050b3ea63b1ffd8b576f3efa9cef56759cf4251 +SIZE (KDE/release-service/23.08.5/akonadi-contacts-23.08.5.tar.xz) = 420904 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 77e027b7483d..653ccd84bae6 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959046 -SHA256 (KDE/release-service/23.08.4/akonadi-mime-23.08.4.tar.xz) = ebb64e6d5b6b955ceaf3aef6e3b1f6cd7c856e3fe5621778238aa0937d6bfaaf -SIZE (KDE/release-service/23.08.4/akonadi-mime-23.08.4.tar.xz) = 166932 +TIMESTAMP = 1707889486 +SHA256 (KDE/release-service/23.08.5/akonadi-mime-23.08.5.tar.xz) = fd40e599ea73fe8107d195673ae721461edfedf1bf56b2bef13fab940de5c833 +SIZE (KDE/release-service/23.08.5/akonadi-mime-23.08.5.tar.xz) = 166996 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index d09e362653af..8c39c95d70eb 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959018 -SHA256 (KDE/release-service/23.08.4/akonadi-notes-23.08.4.tar.xz) = b06a906b4734925afe589d75d1741e862011f5c9a0656d51ff43ca81ce5a8c6e -SIZE (KDE/release-service/23.08.4/akonadi-notes-23.08.4.tar.xz) = 28576 +TIMESTAMP = 1707889464 +SHA256 (KDE/release-service/23.08.5/akonadi-notes-23.08.5.tar.xz) = fe3a8eccc987d9a84bd01235ac02b78ed432e43b9323757b0042dfb8aae5838e +SIZE (KDE/release-service/23.08.5/akonadi-notes-23.08.5.tar.xz) = 28576 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 5cbcddc44eb2..4a6440b18f81 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959023 -SHA256 (KDE/release-service/23.08.4/akonadi-search-23.08.4.tar.xz) = 057f2f7a18346ac21bb1444ed1413d4903bce38802df6753df7ca1dd81eafc46 -SIZE (KDE/release-service/23.08.4/akonadi-search-23.08.4.tar.xz) = 109972 +TIMESTAMP = 1707889468 +SHA256 (KDE/release-service/23.08.5/akonadi-search-23.08.5.tar.xz) = ef21350b7468eea740b949f9f450f07a48b8585e6a83a5000ff4a8606581adb4 +SIZE (KDE/release-service/23.08.5/akonadi-search-23.08.5.tar.xz) = 110248 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 23129dc1b23c..9b15ede118be 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959038 -SHA256 (KDE/release-service/23.08.4/alligator-23.08.4.tar.xz) = 01feedd91cb74c2b4a0916b34a1ea48ec09f1244de34abf26d3cb03c37d1173d -SIZE (KDE/release-service/23.08.4/alligator-23.08.4.tar.xz) = 191544 +TIMESTAMP = 1707889479 +SHA256 (KDE/release-service/23.08.5/alligator-23.08.5.tar.xz) = 4abd7baa1b868725779b6e5835f390dbac1fcfaf610749ade56af9419f80009e +SIZE (KDE/release-service/23.08.5/alligator-23.08.5.tar.xz) = 191576 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index a71dba3507a6..2e1f6a0227b5 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959042 -SHA256 (KDE/release-service/23.08.4/calendarsupport-23.08.4.tar.xz) = 7c708298bb6648c70475e8622bcdff738a5eaba286afe3369f1ea4d9d94401e4 -SIZE (KDE/release-service/23.08.4/calendarsupport-23.08.4.tar.xz) = 997880 +TIMESTAMP = 1707889483 +SHA256 (KDE/release-service/23.08.5/calendarsupport-23.08.5.tar.xz) = 65fa5ca77e19515dad579cf96e7cf16025d64a6a9a39c63772691a6bc16f3ef3 +SIZE (KDE/release-service/23.08.5/calendarsupport-23.08.5.tar.xz) = 997896 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 7b49b5e3e882..019a08362849 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959041 -SHA256 (KDE/release-service/23.08.4/eventviews-23.08.4.tar.xz) = 306d8bbe43326bb59b72ca9ef43abc836188ebb7ee6dfcc08479a5ffdd11857e -SIZE (KDE/release-service/23.08.4/eventviews-23.08.4.tar.xz) = 469968 +TIMESTAMP = 1707889482 +SHA256 (KDE/release-service/23.08.5/eventviews-23.08.5.tar.xz) = 29a9359940e6ba775c9e1dccfd9eb7de68b799ef4182f4eaf7ba3baffaaf1c1b +SIZE (KDE/release-service/23.08.5/eventviews-23.08.5.tar.xz) = 469996 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 16c6a73fbe7e..9fcbe6192b56 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959021 -SHA256 (KDE/release-service/23.08.4/incidenceeditor-23.08.4.tar.xz) = 8ed4056b4a1a21a287af343e4bce2e1e6ef255d43bfd1cb789ab865cb74b1e35 -SIZE (KDE/release-service/23.08.4/incidenceeditor-23.08.4.tar.xz) = 580832 +TIMESTAMP = 1707889466 +SHA256 (KDE/release-service/23.08.5/incidenceeditor-23.08.5.tar.xz) = df60cf57b12d559a68767557933e355fd34a862e0443279d3e6613ee35807394 +SIZE (KDE/release-service/23.08.5/incidenceeditor-23.08.5.tar.xz) = 580968 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 8af0a8562c7b..8432aeae97cf 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959026 -SHA256 (KDE/release-service/23.08.4/kcalutils-23.08.4.tar.xz) = a4e549be3711a409cd49ed0147ffe4f228e207e21f1fffb00ff171462d4b569d -SIZE (KDE/release-service/23.08.4/kcalutils-23.08.4.tar.xz) = 353752 +TIMESTAMP = 1707889470 +SHA256 (KDE/release-service/23.08.5/kcalutils-23.08.5.tar.xz) = 9db6c7ddfaa94de33dce5caa2fd5a8a935a33774bddfc96706ed93d03f846a3d +SIZE (KDE/release-service/23.08.5/kcalutils-23.08.5.tar.xz) = 353696 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 406519afa500..47cc0770d237 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959045 -SHA256 (KDE/release-service/23.08.4/kdenetwork-filesharing-23.08.4.tar.xz) = 923e5be86069da067df1814bbbb79cb8d3d8f35a5f98e1b2d183492484dd5fec -SIZE (KDE/release-service/23.08.4/kdenetwork-filesharing-23.08.4.tar.xz) = 482700 +TIMESTAMP = 1707889485 +SHA256 (KDE/release-service/23.08.5/kdenetwork-filesharing-23.08.5.tar.xz) = 3f856122780b8b42d275c30ab8e642fd375447046f9d525520c83d605b0878de +SIZE (KDE/release-service/23.08.5/kdenetwork-filesharing-23.08.5.tar.xz) = 482676 diff --git a/net/kget/distinfo b/net/kget/distinfo index 8440b3503e64..47dd622f3257 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959028 -SHA256 (KDE/release-service/23.08.4/kget-23.08.4.tar.xz) = 792431445536f853102a5eaaf2f583850fcd0d919b5de6e7dedc89f8e08fb33e -SIZE (KDE/release-service/23.08.4/kget-23.08.4.tar.xz) = 5566060 +TIMESTAMP = 1707889471 +SHA256 (KDE/release-service/23.08.5/kget-23.08.5.tar.xz) = 2eaa2b7bf0726ea7fcdf7fef5ce6798ca306107dd9724a061d823a8d2edbf38e +SIZE (KDE/release-service/23.08.5/kget-23.08.5.tar.xz) = 5572688 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index e2cda1692317..e4aed64e42fb 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959047 -SHA256 (KDE/release-service/23.08.4/kidentitymanagement-23.08.4.tar.xz) = 92736693685342c724034dd5675df858678f73fc1ed04189a7841e9b2237e89b -SIZE (KDE/release-service/23.08.4/kidentitymanagement-23.08.4.tar.xz) = 163940 +TIMESTAMP = 1707889487 +SHA256 (KDE/release-service/23.08.5/kidentitymanagement-23.08.5.tar.xz) = bcd7f7ef26a24b2d198a7739bdc8b4f3868d42e05355173fbc91a95220d77201 +SIZE (KDE/release-service/23.08.5/kidentitymanagement-23.08.5.tar.xz) = 163960 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 8c4f794886e7..57c06d27bdb1 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959030 -SHA256 (KDE/release-service/23.08.4/kimap-23.08.4.tar.xz) = 5aa1050081154673adc547c2bc094285e758a25615ce45450af4fbf32f8fd40c -SIZE (KDE/release-service/23.08.4/kimap-23.08.4.tar.xz) = 131156 +TIMESTAMP = 1707889473 +SHA256 (KDE/release-service/23.08.5/kimap-23.08.5.tar.xz) = 42fd2019aca7da1a35c0fcf52d956be2bf4fe2eda496f23c982aa890d845783d +SIZE (KDE/release-service/23.08.5/kimap-23.08.5.tar.xz) = 131156 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index b453aec66e75..15439dcf0c70 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959027 -SHA256 (KDE/release-service/23.08.4/kio-gdrive-23.08.4.tar.xz) = a881258143d0a9fe4cd4abcc383b16ec90a668e4137abeb77f40df48c0e5309e -SIZE (KDE/release-service/23.08.4/kio-gdrive-23.08.4.tar.xz) = 79452 +TIMESTAMP = 1707889471 +SHA256 (KDE/release-service/23.08.5/kio-gdrive-23.08.5.tar.xz) = d5983ea15284431e83561bbf0b10ed39790a879cb465fc132aa96b0fe2d5eda6 +SIZE (KDE/release-service/23.08.5/kio-gdrive-23.08.5.tar.xz) = 79452 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index f4078feddb8e..7443a810eb66 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959031 -SHA256 (KDE/release-service/23.08.4/kio-zeroconf-23.08.4.tar.xz) = 49b9fcc1cbfef1064bae6821487256e15c2e0d2bc333b0be06acb1ead33650dc -SIZE (KDE/release-service/23.08.4/kio-zeroconf-23.08.4.tar.xz) = 44372 +TIMESTAMP = 1707889475 +SHA256 (KDE/release-service/23.08.5/kio-zeroconf-23.08.5.tar.xz) = 09a69166bb11f7c05a4ac233f8364f5bf17fdb6fddc4db9fc879be61a2b10a34 +SIZE (KDE/release-service/23.08.5/kio-zeroconf-23.08.5.tar.xz) = 44360 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 3e83734a89c0..0d957cdf6d37 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959035 -SHA256 (KDE/release-service/23.08.4/kitinerary-23.08.4.tar.xz) = e1340a5c758ffc6b02b5939eaf4ed2fe9cdaeb7e6b3f54486c1ec5e3684d1824 -SIZE (KDE/release-service/23.08.4/kitinerary-23.08.4.tar.xz) = 1944284 +TIMESTAMP = 1707889478 +SHA256 (KDE/release-service/23.08.5/kitinerary-23.08.5.tar.xz) = aebd2002fe8198cc95884af261882cce8fe0818ebcc34b1ce9a4715cf4e178a8 +SIZE (KDE/release-service/23.08.5/kitinerary-23.08.5.tar.xz) = 1940264 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index d9f265fcf246..9e5d676498b2 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959037 -SHA256 (KDE/release-service/23.08.4/kldap-23.08.4.tar.xz) = 60480eb9c4fb48045e7bd9653cc3fab8cec6f93a6fc4a32d07e4311cc2d3053e -SIZE (KDE/release-service/23.08.4/kldap-23.08.4.tar.xz) = 183416 +TIMESTAMP = 1707889479 +SHA256 (KDE/release-service/23.08.5/kldap-23.08.5.tar.xz) = 9d29dc2fc8763ade3b392ddaf7ba1efe8718b187dc1ee78bdb0d3b2440186cbe +SIZE (KDE/release-service/23.08.5/kldap-23.08.5.tar.xz) = 183440 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index c2901be27fe8..517897a7782c 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959041 -SHA256 (KDE/release-service/23.08.4/kmailtransport-23.08.4.tar.xz) = 7a3e4f45b43640fdcc4a3b990c627452cbbfc241d33a0a2480d08c814da973a2 -SIZE (KDE/release-service/23.08.4/kmailtransport-23.08.4.tar.xz) = 174704 +TIMESTAMP = 1707889482 +SHA256 (KDE/release-service/23.08.5/kmailtransport-23.08.5.tar.xz) = c3b42bcfd8aeb5cbbadf9a93948aa8ea47b628fd5891ad049a942c9ec99dc415 +SIZE (KDE/release-service/23.08.5/kmailtransport-23.08.5.tar.xz) = 174688 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 5fa7c2af4a99..ee25a30ed2dd 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959034 -SHA256 (KDE/release-service/23.08.4/kmbox-23.08.4.tar.xz) = d5298cfbd91bf18a969e52a0f0010c335e12264a53b684f20f6ff3c4d52022d9 -SIZE (KDE/release-service/23.08.4/kmbox-23.08.4.tar.xz) = 29048 +TIMESTAMP = 1707889477 +SHA256 (KDE/release-service/23.08.5/kmbox-23.08.5.tar.xz) = e583b87b0eb995ebfafa67817748c23cbd872108451e6bc8cd9590ba7ecdf400 +SIZE (KDE/release-service/23.08.5/kmbox-23.08.5.tar.xz) = 29020 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 79e5ddbc29c7..b4cf2c116cb7 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959022 -SHA256 (KDE/release-service/23.08.4/kmime-23.08.4.tar.xz) = 0d162a0d6c05e0ac67634c60a6539527dda3d5ecb82de7a8291511cd29ca0f13 -SIZE (KDE/release-service/23.08.4/kmime-23.08.4.tar.xz) = 162940 +TIMESTAMP = 1707889467 +SHA256 (KDE/release-service/23.08.5/kmime-23.08.5.tar.xz) = b6894e733abf3a8fb4fc7de37b7cbf15cbebdc737b80f7fe632bdf61e5da3fda +SIZE (KDE/release-service/23.08.5/kmime-23.08.5.tar.xz) = 162996 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 5cd99e5623c3..b980db7e1030 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959022 -SHA256 (KDE/release-service/23.08.4/kontactinterface-23.08.4.tar.xz) = 963640f077710cc96edf4cb566791ad241a2f3d05b5dfb34d6f8d6c6483c252b -SIZE (KDE/release-service/23.08.4/kontactinterface-23.08.4.tar.xz) = 40112 +TIMESTAMP = 1707889467 +SHA256 (KDE/release-service/23.08.5/kontactinterface-23.08.5.tar.xz) = edf16d32fe8167b52943178dc02d8b713699ea06283913675cf90a35de58b2bf +SIZE (KDE/release-service/23.08.5/kontactinterface-23.08.5.tar.xz) = 40116 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index ea755e0e0e0a..565ae9bf3e12 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959043 -SHA256 (KDE/release-service/23.08.4/kpimtextedit-23.08.4.tar.xz) = da55922ce882c2fed5efca00177fddd6fe503547b8942b22181961e871710de5 -SIZE (KDE/release-service/23.08.4/kpimtextedit-23.08.4.tar.xz) = 302940 +TIMESTAMP = 1707889484 +SHA256 (KDE/release-service/23.08.5/kpimtextedit-23.08.5.tar.xz) = 4edc962b0c8202c192b3c9c6faaba0996e88df99609500abb54f55b768e727c7 +SIZE (KDE/release-service/23.08.5/kpimtextedit-23.08.5.tar.xz) = 303128 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index b64c0c039ad1..a4f8e4e54277 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959029 -SHA256 (KDE/release-service/23.08.4/krdc-23.08.4.tar.xz) = 985a6f6af9e2a5685dd95b629fa666211ef36eb1272fac43dc0511f33daa484d -SIZE (KDE/release-service/23.08.4/krdc-23.08.4.tar.xz) = 1630352 +TIMESTAMP = 1707889472 +SHA256 (KDE/release-service/23.08.5/krdc-23.08.5.tar.xz) = c2c57cebb22a9201ce5d6c305654e485df1d0deaa17496a8d85fe19a80f059f4 +SIZE (KDE/release-service/23.08.5/krdc-23.08.5.tar.xz) = 1630604 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 29e1f0d997b4..6e93a58d1e7a 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959031 -SHA256 (KDE/release-service/23.08.4/krfb-23.08.4.tar.xz) = bb15a302428c45f8331d25a91466744367cb382d4b2efa1e88a3cc73dacb6984 -SIZE (KDE/release-service/23.08.4/krfb-23.08.4.tar.xz) = 1322700 +TIMESTAMP = 1707889474 +SHA256 (KDE/release-service/23.08.5/krfb-23.08.5.tar.xz) = 86e40aa758683bc15cc637c68052dd46b70edf9d13919d6d580a23405efeb376 +SIZE (KDE/release-service/23.08.5/krfb-23.08.5.tar.xz) = 1322780 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index a56a2c0b1bfe..65f70e758578 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959032 -SHA256 (KDE/release-service/23.08.4/ksmtp-23.08.4.tar.xz) = 9fa398c78fd6f1a30267fb48f32f195e1a3ae669829ef9ce514981d962709ec3 -SIZE (KDE/release-service/23.08.4/ksmtp-23.08.4.tar.xz) = 50220 +TIMESTAMP = 1707889475 +SHA256 (KDE/release-service/23.08.5/ksmtp-23.08.5.tar.xz) = dd0698955b1ec0455246df69d2ff1a12643119702a60fab24294c6cac2ac1bc5 +SIZE (KDE/release-service/23.08.5/ksmtp-23.08.5.tar.xz) = 50196 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 62aca5a5d044..cabae7e26acf 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959019 -SHA256 (KDE/release-service/23.08.4/ktnef-23.08.4.tar.xz) = e544aa959e48bb326bb83882a917f840c749c6123e276c61abd0525b1816cf39 -SIZE (KDE/release-service/23.08.4/ktnef-23.08.4.tar.xz) = 312296 +TIMESTAMP = 1707889464 +SHA256 (KDE/release-service/23.08.5/ktnef-23.08.5.tar.xz) = 379fc87cc555d9d55c2edfa4cf8d33a95ad2bb1066e96b966668a6af4669b428 +SIZE (KDE/release-service/23.08.5/ktnef-23.08.5.tar.xz) = 312392 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index fe8ef42a33d2..d3bb478145ee 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959017 -SHA256 (KDE/release-service/23.08.4/libgravatar-23.08.4.tar.xz) = 5c24013623cb3d09a109d86fc71354fbbfefc0cb0694344f876fb65750033ff1 -SIZE (KDE/release-service/23.08.4/libgravatar-23.08.4.tar.xz) = 36180 +TIMESTAMP = 1707889463 +SHA256 (KDE/release-service/23.08.5/libgravatar-23.08.5.tar.xz) = ac25fa24444642d3c227e2a272d6f59b637896a051381c7344e0672aac5cd697 +SIZE (KDE/release-service/23.08.5/libgravatar-23.08.5.tar.xz) = 36184 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index a2a918999c60..ea37682b14e7 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959024 -SHA256 (KDE/release-service/23.08.4/libkgapi-23.08.4.tar.xz) = cc654c4629782a8095280bf8371349ab8bbcbafbce802eb2f65a70f76e906eb7 -SIZE (KDE/release-service/23.08.4/libkgapi-23.08.4.tar.xz) = 334960 +TIMESTAMP = 1707889469 +SHA256 (KDE/release-service/23.08.5/libkgapi-23.08.5.tar.xz) = 10249f32a3a8a26a73e251d0415d42b69827ad354b451f62bdbb01bc6a40d7a3 +SIZE (KDE/release-service/23.08.5/libkgapi-23.08.5.tar.xz) = 335116 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index cee61585838c..116885ff0eab 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959040 -SHA256 (KDE/release-service/23.08.4/libksieve-23.08.4.tar.xz) = 0e81c87ef2ff2ad324bc9eed0dc3ea05da5050265d6d2f9d9fdcfaa1a98fb947 -SIZE (KDE/release-service/23.08.4/libksieve-23.08.4.tar.xz) = 579640 +TIMESTAMP = 1707889481 +SHA256 (KDE/release-service/23.08.5/libksieve-23.08.5.tar.xz) = 5a06482dd05b430ea745b72b7cb495444ab84223c27152375035d4fd3615825c +SIZE (KDE/release-service/23.08.5/libksieve-23.08.5.tar.xz) = 581988 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 08adf4bef2a5..65bb77741c0d 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959044 -SHA256 (KDE/release-service/23.08.4/mailcommon-23.08.4.tar.xz) = 6ff8c12a6ae40e97f35603baffc43b34c6c725dedac1c0ebccd4474cf9fee987 -SIZE (KDE/release-service/23.08.4/mailcommon-23.08.4.tar.xz) = 763028 +TIMESTAMP = 1707889485 +SHA256 (KDE/release-service/23.08.5/mailcommon-23.08.5.tar.xz) = 65dd3b8c9f8233fbdbde5a6f6f65539c061920e34140bd8f97d0efde5fd60fc0 +SIZE (KDE/release-service/23.08.5/mailcommon-23.08.5.tar.xz) = 763084 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 64bf11a6ffef..bd6380fc9986 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959025 -SHA256 (KDE/release-service/23.08.4/mailimporter-23.08.4.tar.xz) = 2dfa474c6c119cbd3b31dc6773eb5cab561d058a6468c831937f176773138893 -SIZE (KDE/release-service/23.08.4/mailimporter-23.08.4.tar.xz) = 593416 +TIMESTAMP = 1707889470 +SHA256 (KDE/release-service/23.08.5/mailimporter-23.08.5.tar.xz) = 94972bdd03c9707cb5b3638c12b1c9c9c149762d6984ab8d0de29ba78ee0535a +SIZE (KDE/release-service/23.08.5/mailimporter-23.08.5.tar.xz) = 593380 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 1b8c47e8067a..52c0889b1b04 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959033 -SHA256 (KDE/release-service/23.08.4/messagelib-23.08.4.tar.xz) = 9ad95d1a559fc09855ac6cdba9b4cda58ef0bb7c4b09764b67da440ebf5850d9 -SIZE (KDE/release-service/23.08.4/messagelib-23.08.4.tar.xz) = 11332580 +TIMESTAMP = 1707889476 +SHA256 (KDE/release-service/23.08.5/messagelib-23.08.5.tar.xz) = da37af29e9a1a8d5947cbdc7ccfbdd749d3ef5257e4cc778eb8f0069fe50ddf8 +SIZE (KDE/release-service/23.08.5/messagelib-23.08.5.tar.xz) = 11374208 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index c7ad5738c4ee..d4a3cde58cb3 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959020 -SHA256 (KDE/release-service/23.08.4/pimcommon-23.08.4.tar.xz) = d4a979b2b290a4f6df0f1a03766fbf389f1497d9fb431e3b4afd9197cd69dd51 -SIZE (KDE/release-service/23.08.4/pimcommon-23.08.4.tar.xz) = 349000 +TIMESTAMP = 1707889465 +SHA256 (KDE/release-service/23.08.5/pimcommon-23.08.5.tar.xz) = 5f5b1cc3cc2a0f204089d55ff8dae5236da147878fb0925080399090d05f4d2e +SIZE (KDE/release-service/23.08.5/pimcommon-23.08.5.tar.xz) = 349196 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index edce7cc440e8..f0783c539ba1 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958890 -SHA256 (KDE/release-service/23.08.4/print-manager-23.08.4.tar.xz) = 2dbf739cebf1378be9c551ba1b32d38a1902ffaf4897c7456d51ddc735575d43 -SIZE (KDE/release-service/23.08.4/print-manager-23.08.4.tar.xz) = 289936 +TIMESTAMP = 1707889360 +SHA256 (KDE/release-service/23.08.5/print-manager-23.08.5.tar.xz) = f7ed99b3afaf8ea1faa5c0649f3a704197ac992fcfa5dfc24622e5cf2cb85a4b +SIZE (KDE/release-service/23.08.5/print-manager-23.08.5.tar.xz) = 290620 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index d1e23ace40cf..7f294fc64426 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958888 -SHA256 (KDE/release-service/23.08.4/kalzium-23.08.4.tar.xz) = a80c9c7170bd1f20e5332bc33caa5c369772271445f503520249d16421d37b3e -SIZE (KDE/release-service/23.08.4/kalzium-23.08.4.tar.xz) = 24642260 +TIMESTAMP = 1707889359 +SHA256 (KDE/release-service/23.08.5/kalzium-23.08.5.tar.xz) = 9bfc5574d6d324e71d16521c058acf82244e6dff1acdfc081117f56dbec06484 +SIZE (KDE/release-service/23.08.5/kalzium-23.08.5.tar.xz) = 24641244 diff --git a/science/step/distinfo b/science/step/distinfo index 04a01c2ebc8e..3c77014047b8 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958889 -SHA256 (KDE/release-service/23.08.4/step-23.08.4.tar.xz) = 36e52e01fca3e1ee5025f82aa33b598e0a543599a534e2aa881d8ab76762b636 -SIZE (KDE/release-service/23.08.4/step-23.08.4.tar.xz) = 996108 +TIMESTAMP = 1707889360 +SHA256 (KDE/release-service/23.08.5/step-23.08.5.tar.xz) = b5db4e31c9c5d50d61c6c5664e73e902851de1b3867926c99f1b47252dfd4e51 +SIZE (KDE/release-service/23.08.5/step-23.08.5.tar.xz) = 996012 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index cc4eda11fb25..bc6aeb6ce0d3 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959005 -SHA256 (KDE/release-service/23.08.4/keysmith-23.08.4.tar.xz) = 76100bf9a038d8bbfdcfe434c02c8362f654c70051b2c1e13055ff7b2031d585 -SIZE (KDE/release-service/23.08.4/keysmith-23.08.4.tar.xz) = 163460 +TIMESTAMP = 1707889454 +SHA256 (KDE/release-service/23.08.5/keysmith-23.08.5.tar.xz) = 2f8c73ec4a73ae56508d1014957a7083788fa8b5eaa8c467f86d0ebf3b0a3d5a +SIZE (KDE/release-service/23.08.5/keysmith-23.08.5.tar.xz) = 163456 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index b769da7deb3f..a4de07a2e6f5 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959006 -SHA256 (KDE/release-service/23.08.4/kgpg-23.08.4.tar.xz) = 7504ba190ec2385bebd2dea06d0b325cc5fe9a4cb5a5f9a5cff8a961acdfa28b -SIZE (KDE/release-service/23.08.4/kgpg-23.08.4.tar.xz) = 3045840 +TIMESTAMP = 1707889454 +SHA256 (KDE/release-service/23.08.5/kgpg-23.08.5.tar.xz) = 382c912394ee05409eb5bdf8961fc47a90dea45976e2a164fddced54c90b8592 +SIZE (KDE/release-service/23.08.5/kgpg-23.08.5.tar.xz) = 3063592 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index abdbf203ecd0..d3d233a0ab9f 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959003 -SHA256 (KDE/release-service/23.08.4/kleopatra-23.08.4.tar.xz) = 558e773bc55e0c265d9427bd45f9c588965e9eead4a111f0127840e233669157 -SIZE (KDE/release-service/23.08.4/kleopatra-23.08.4.tar.xz) = 2721028 +TIMESTAMP = 1707889452 +SHA256 (KDE/release-service/23.08.5/kleopatra-23.08.5.tar.xz) = a9c416599ed3763148fe8305d220b5950043b3c7ae12ffd2a960196c65dbf1a6 +SIZE (KDE/release-service/23.08.5/kleopatra-23.08.5.tar.xz) = 2725800 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index bc3d81b640a7..d33164914571 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959002 -SHA256 (KDE/release-service/23.08.4/kpkpass-23.08.4.tar.xz) = a25c46d3b3329dae20bdb812a10dfd46139f3987710fe5215a0ad568557d9a9f -SIZE (KDE/release-service/23.08.4/kpkpass-23.08.4.tar.xz) = 29404 +TIMESTAMP = 1707889451 +SHA256 (KDE/release-service/23.08.5/kpkpass-23.08.5.tar.xz) = d69e60bbb85aca3de1036735a17ef52abcd54470b21f1a97f45f7f40fc7cdab1 +SIZE (KDE/release-service/23.08.5/kpkpass-23.08.5.tar.xz) = 29416 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index a2e7bf1d8725..b10a93db7f86 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959004 -SHA256 (KDE/release-service/23.08.4/kwalletmanager-23.08.4.tar.xz) = a1497c864ad149169fb10f5086091bc936fb7a68d0a96fe37fb4b9e005b5c25c -SIZE (KDE/release-service/23.08.4/kwalletmanager-23.08.4.tar.xz) = 852868 +TIMESTAMP = 1707889453 +SHA256 (KDE/release-service/23.08.5/kwalletmanager-23.08.5.tar.xz) = 391f8ac850719a60aac492b528de14c42e3a9121ff5cb47a5343c8623f9685b8 +SIZE (KDE/release-service/23.08.5/kwalletmanager-23.08.5.tar.xz) = 853312 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 96cd51472761..5ab522cea469 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701959005 -SHA256 (KDE/release-service/23.08.4/libkleo-23.08.4.tar.xz) = f1abf5b8a66ecbba7376507c07d61fea6fe222f57bc90274fb6d381ddabb5a07 -SIZE (KDE/release-service/23.08.4/libkleo-23.08.4.tar.xz) = 564896 +TIMESTAMP = 1707889453 +SHA256 (KDE/release-service/23.08.5/libkleo-23.08.5.tar.xz) = 4330d3e4b70cf5f8d7b341b665a63b47f02e12270946ce6991971315298c4625 +SIZE (KDE/release-service/23.08.5/libkleo-23.08.5.tar.xz) = 566004 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 486b6186b90e..487436410cb8 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958879 -SHA256 (KDE/release-service/23.08.4/baloo-widgets-23.08.4.tar.xz) = fe38f3ad2a4993f7cb30743908e5d9f9125b830c3876f1e70178b2c8b6721657 -SIZE (KDE/release-service/23.08.4/baloo-widgets-23.08.4.tar.xz) = 276812 +TIMESTAMP = 1707889352 +SHA256 (KDE/release-service/23.08.5/baloo-widgets-23.08.5.tar.xz) = 49196c7f74dfeb38b90ab388b35ee3542302ab89fc7b6ded4a3bfaa7f03938d4 +SIZE (KDE/release-service/23.08.5/baloo-widgets-23.08.5.tar.xz) = 276852 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 4c8b6f7ebd23..b5217d7fb7a0 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958881 -SHA256 (KDE/release-service/23.08.4/filelight-23.08.4.tar.xz) = af19226a9e3704f8088fabf381974124fd77983b88fa047f4b37a8b9d64436c7 -SIZE (KDE/release-service/23.08.4/filelight-23.08.4.tar.xz) = 700260 +TIMESTAMP = 1707889353 +SHA256 (KDE/release-service/23.08.5/filelight-23.08.5.tar.xz) = b7fc4daefc0985dc4b0deeb3c25e09a1b85ff896560340e79cca5093d3f07522 +SIZE (KDE/release-service/23.08.5/filelight-23.08.5.tar.xz) = 700500 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index fe6fe452cd10..11880dbc1eca 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958878 -SHA256 (KDE/release-service/23.08.4/k3b-23.08.4.tar.xz) = 30eb87c5bde8bffa2059efb609e18d08978713340d0c2c0664035378a5d9cb24 -SIZE (KDE/release-service/23.08.4/k3b-23.08.4.tar.xz) = 10967652 +TIMESTAMP = 1707889351 +SHA256 (KDE/release-service/23.08.5/k3b-23.08.5.tar.xz) = c789518b45c8505710fd2b66706c4826f251c5487d9b381df76cc96ffb59309a +SIZE (KDE/release-service/23.08.5/k3b-23.08.5.tar.xz) = 10967984 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index bd1e0253b0f3..f87e5ba31e92 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958869 -SHA256 (KDE/release-service/23.08.4/kbackup-23.08.4.tar.xz) = e9237167c5641b2eb04dfe3708cf86128ef0894a8dfce37611cdff3558784d8b -SIZE (KDE/release-service/23.08.4/kbackup-23.08.4.tar.xz) = 400340 +TIMESTAMP = 1707889345 +SHA256 (KDE/release-service/23.08.5/kbackup-23.08.5.tar.xz) = a16c4d5a67ea6c4cb7c7580f0b3551a34879f5e9db94700ec406a72aecc6be5f +SIZE (KDE/release-service/23.08.5/kbackup-23.08.5.tar.xz) = 400324 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 38576cca880e..abb521a9dea4 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958874 -SHA256 (KDE/release-service/23.08.4/kcron-23.08.4.tar.xz) = 5324dcd221750983f1de38c7e4fc4139865e3bf069fe0c99e79469812e0a851b -SIZE (KDE/release-service/23.08.4/kcron-23.08.4.tar.xz) = 942500 +TIMESTAMP = 1707889349 +SHA256 (KDE/release-service/23.08.5/kcron-23.08.5.tar.xz) = 02e9e34137fd5425948d87dfa47f1c09a979038f7c41e6304bbdd67d859ddc42 +SIZE (KDE/release-service/23.08.5/kcron-23.08.5.tar.xz) = 942512 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index b7e3ecb2b417..8d8fa79c976a 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958873 -SHA256 (KDE/release-service/23.08.4/kdebugsettings-23.08.4.tar.xz) = 60eade88ad4dc0f64471bcfcaf349fee5a99592a8c7422a179759514300311da -SIZE (KDE/release-service/23.08.4/kdebugsettings-23.08.4.tar.xz) = 108708 +TIMESTAMP = 1707889348 +SHA256 (KDE/release-service/23.08.5/kdebugsettings-23.08.5.tar.xz) = 98b1001cfae74749fe4099c06b5b17d99dc6be47cf13b13b872abd5665e14b10 +SIZE (KDE/release-service/23.08.5/kdebugsettings-23.08.5.tar.xz) = 108668 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index a3f4904a74b7..c4a5216df992 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958877 -SHA256 (KDE/release-service/23.08.4/kdf-23.08.4.tar.xz) = d1d16cce3125115d1b8902a708078ab672e414edf6db0ee31bc2c719a39c0c0d -SIZE (KDE/release-service/23.08.4/kdf-23.08.4.tar.xz) = 495240 +TIMESTAMP = 1707889350 +SHA256 (KDE/release-service/23.08.5/kdf-23.08.5.tar.xz) = aa8eb884096ba1671ffc7ab10bfabed873ad72229d3486c0e6426832aaea177f +SIZE (KDE/release-service/23.08.5/kdf-23.08.5.tar.xz) = 495184 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 4dffebd00a01..907a0db93c83 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958882 -SHA256 (KDE/release-service/23.08.4/kdialog-23.08.4.tar.xz) = 8dfa95f838540a61444378d6d1d46ea3c24a8a9175f23a291c286c3b2864cd78 -SIZE (KDE/release-service/23.08.4/kdialog-23.08.4.tar.xz) = 144352 +TIMESTAMP = 1707889354 +SHA256 (KDE/release-service/23.08.5/kdialog-23.08.5.tar.xz) = 12c32014f396c9a347c89b1bf174e2e5922cc92c7142c36baa0babdd6c6da6dc +SIZE (KDE/release-service/23.08.5/kdialog-23.08.5.tar.xz) = 144408 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 775a26da2742..05847d0d2c75 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958872 -SHA256 (KDE/release-service/23.08.4/khelpcenter-23.08.4.tar.xz) = 5194bb8ca13d2c5f3f0b34d3304890b365723c6421a0c2d8960b585f98a5ed48 -SIZE (KDE/release-service/23.08.4/khelpcenter-23.08.4.tar.xz) = 4370804 +TIMESTAMP = 1707889347 +SHA256 (KDE/release-service/23.08.5/khelpcenter-23.08.5.tar.xz) = 4c0f69fb55a80e4c863b9edd2bc6ea5441d18d8369aba0ce7cfb3e1c21757fd7 +SIZE (KDE/release-service/23.08.5/khelpcenter-23.08.5.tar.xz) = 4371224 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 7056d791a7d4..698cbcb35225 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958876 -SHA256 (KDE/release-service/23.08.4/kpmcore-23.08.4.tar.xz) = d128d8487e3da9c0a1ea762651bbf5aec0dedb7493fb96a2f676b04d23dfb64e -SIZE (KDE/release-service/23.08.4/kpmcore-23.08.4.tar.xz) = 623540 +TIMESTAMP = 1707889350 +SHA256 (KDE/release-service/23.08.5/kpmcore-23.08.5.tar.xz) = b44a40712de593ddfe4cc5799912eb53f9c3e383544306a17279f051de85417a +SIZE (KDE/release-service/23.08.5/kpmcore-23.08.5.tar.xz) = 630396 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index d22e7d923c90..a7d1efcf8f0f 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958871 -SHA256 (KDE/release-service/23.08.4/ksystemlog-23.08.4.tar.xz) = ecffc464a4e5302bc1cfdf70995da14f1abd254d04cc90f8370b65ac50f4f6b9 -SIZE (KDE/release-service/23.08.4/ksystemlog-23.08.4.tar.xz) = 2014984 +TIMESTAMP = 1707889347 +SHA256 (KDE/release-service/23.08.5/ksystemlog-23.08.5.tar.xz) = 80e6036510a76f7521cd01cebe67e4b7d7f7d251c18b2c388cfabcf28635c356 +SIZE (KDE/release-service/23.08.5/ksystemlog-23.08.5.tar.xz) = 2014948 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 00f65831517f..ced7f864f344 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958870 -SHA256 (KDE/release-service/23.08.4/signon-kwallet-extension-23.08.4.tar.xz) = d145ea81755ded8beff631e7779f86e8eca0ae2ce6b95267b80cb623ef97f8ba -SIZE (KDE/release-service/23.08.4/signon-kwallet-extension-23.08.4.tar.xz) = 11232 +TIMESTAMP = 1707889346 +SHA256 (KDE/release-service/23.08.5/signon-kwallet-extension-23.08.5.tar.xz) = e556caad3efde683c6a626c2aaec5ec2cb157aba1a10c7d4ea5280005fe59bfc +SIZE (KDE/release-service/23.08.5/signon-kwallet-extension-23.08.5.tar.xz) = 11220 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f96a8ec1c391..f3622d0d33b7 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958880 -SHA256 (KDE/release-service/23.08.4/sweeper-23.08.4.tar.xz) = 2cde35f06e0ce6b8caefe32611927b16f0adc1fd1b17865b73f71ad4d7cc5833 -SIZE (KDE/release-service/23.08.4/sweeper-23.08.4.tar.xz) = 399668 +TIMESTAMP = 1707889353 +SHA256 (KDE/release-service/23.08.5/sweeper-23.08.5.tar.xz) = 5adf7746a4ad04d8ce7a7cca46132d7482d94cac9650663481cbdd220ed2c1d5 +SIZE (KDE/release-service/23.08.5/sweeper-23.08.5.tar.xz) = 399660 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index 9c62439c9f20..5720105b27d6 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958950 -SHA256 (KDE/release-service/23.08.4/arianna-23.08.4.tar.xz) = 1fb077535beb4d0a1cb0bb784e1ab15a4603b155946bc2940fca96a3c3153213 -SIZE (KDE/release-service/23.08.4/arianna-23.08.4.tar.xz) = 813108 +TIMESTAMP = 1707889408 +SHA256 (KDE/release-service/23.08.5/arianna-23.08.5.tar.xz) = effdbba596582f90a74174e9245b49284c3081829f8ca8dd9bfd0392d028c365 +SIZE (KDE/release-service/23.08.5/arianna-23.08.5.tar.xz) = 813864 diff --git a/textproc/arianna/pkg-plist b/textproc/arianna/pkg-plist index 77c4270f82dc..5823b7ee681b 100644 --- a/textproc/arianna/pkg-plist +++ b/textproc/arianna/pkg-plist @@ -1,33 +1,34 @@ bin/arianna share/applications/org.kde.arianna.desktop share/icons/hicolor/scalable/apps/org.kde.arianna.svg share/locale/ca/LC_MESSAGES/arianna.mo share/locale/ca@valencia/LC_MESSAGES/arianna.mo share/locale/cs/LC_MESSAGES/arianna.mo share/locale/de/LC_MESSAGES/arianna.mo share/locale/en_GB/LC_MESSAGES/arianna.mo share/locale/es/LC_MESSAGES/arianna.mo share/locale/eu/LC_MESSAGES/arianna.mo share/locale/fi/LC_MESSAGES/arianna.mo share/locale/fr/LC_MESSAGES/arianna.mo share/locale/gl/LC_MESSAGES/arianna.mo share/locale/hu/LC_MESSAGES/arianna.mo share/locale/ia/LC_MESSAGES/arianna.mo share/locale/it/LC_MESSAGES/arianna.mo share/locale/ja/LC_MESSAGES/arianna.mo share/locale/ka/LC_MESSAGES/arianna.mo share/locale/ko/LC_MESSAGES/arianna.mo share/locale/lt/LC_MESSAGES/arianna.mo share/locale/nl/LC_MESSAGES/arianna.mo share/locale/pl/LC_MESSAGES/arianna.mo share/locale/pt/LC_MESSAGES/arianna.mo share/locale/pt_BR/LC_MESSAGES/arianna.mo +share/locale/ro/LC_MESSAGES/arianna.mo share/locale/ru/LC_MESSAGES/arianna.mo share/locale/sk/LC_MESSAGES/arianna.mo share/locale/sl/LC_MESSAGES/arianna.mo share/locale/sv/LC_MESSAGES/arianna.mo share/locale/tr/LC_MESSAGES/arianna.mo share/locale/uk/LC_MESSAGES/arianna.mo share/locale/zh_CN/LC_MESSAGES/arianna.mo share/metainfo/org.kde.arianna.appdata.xml share/qlogging-categories5/arianna.categories diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 90293baf4cdf..156105624f76 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958951 -SHA256 (KDE/release-service/23.08.4/kompare-23.08.4.tar.xz) = 793f4acb55803b335c8928b6d3f12547aaa917ee41293990fb256920ca563c93 -SIZE (KDE/release-service/23.08.4/kompare-23.08.4.tar.xz) = 984888 +TIMESTAMP = 1707889409 +SHA256 (KDE/release-service/23.08.5/kompare-23.08.5.tar.xz) = 2cfa39708f596172ea3fb8b72a1f7ead1591fecf2e8b4b49101a6794eadf5279 +SIZE (KDE/release-service/23.08.5/kompare-23.08.5.tar.xz) = 984968 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 1c2a06a89ffb..fb94a2d12d8c 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958950 -SHA256 (KDE/release-service/23.08.4/libkomparediff2-23.08.4.tar.xz) = 76b56ac8dd738ccd646927b78f97a1fdb35afbb0bf95f47725b51f29a3d56e1e -SIZE (KDE/release-service/23.08.4/libkomparediff2-23.08.4.tar.xz) = 188264 +TIMESTAMP = 1707889408 +SHA256 (KDE/release-service/23.08.5/libkomparediff2-23.08.5.tar.xz) = d90d411dab811a84953680f08bd2408439593a98c74871d49ac1cd08aae64ad0 +SIZE (KDE/release-service/23.08.5/libkomparediff2-23.08.5.tar.xz) = 188280 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 7db3bd04e0b1..93db082c358b 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958949 -SHA256 (KDE/release-service/23.08.4/markdownpart-23.08.4.tar.xz) = cc55ab62a0bbdd65a628c52cc6841cb31a0a053b4e2badb51bda742b4f83223f -SIZE (KDE/release-service/23.08.4/markdownpart-23.08.4.tar.xz) = 31512 +TIMESTAMP = 1707889407 +SHA256 (KDE/release-service/23.08.5/markdownpart-23.08.5.tar.xz) = 32905b77e393f625c388c414b9e350d8152856e6931566d5f2b8c35ed6d5ebf2 +SIZE (KDE/release-service/23.08.5/markdownpart-23.08.5.tar.xz) = 31544 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 372ff0c9e391..ee853aec6f41 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958952 -SHA256 (KDE/release-service/23.08.4/falkon-23.08.4.tar.xz) = f08484b768ccc7cfc097d473c1ccc66986f839f79b5f3516a9aeba4ee7286d63 -SIZE (KDE/release-service/23.08.4/falkon-23.08.4.tar.xz) = 2574332 +TIMESTAMP = 1707889409 +SHA256 (KDE/release-service/23.08.5/falkon-23.08.5.tar.xz) = 800a5f1432a6e50f64265eb4bbd8982f445ddd436b5e072f3e49bb4e7183b077 +SIZE (KDE/release-service/23.08.5/falkon-23.08.5.tar.xz) = 2574364 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 0fbde8d54617..010a9accf2cc 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958892 -SHA256 (KDE/release-service/23.08.4/kteatime-23.08.4.tar.xz) = 5c239e83bf83f86d63132161c5e114446a3f1a641da06976d80526760b268ca4 -SIZE (KDE/release-service/23.08.4/kteatime-23.08.4.tar.xz) = 315496 +TIMESTAMP = 1707889362 +SHA256 (KDE/release-service/23.08.5/kteatime-23.08.5.tar.xz) = 4e855767dd50d09a394f249a97417ba35ed4754b4cc0597a96f9256b291cc2e6 +SIZE (KDE/release-service/23.08.5/kteatime-23.08.5.tar.xz) = 315528 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 49c818419584..3dfa7a0e9672 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958891 -SHA256 (KDE/release-service/23.08.4/ktimer-23.08.4.tar.xz) = 4b42d81db68ac56a107244ed7bc8c599f6e6a61467d169adb822fb00fbd06c21 -SIZE (KDE/release-service/23.08.4/ktimer-23.08.4.tar.xz) = 406380 +TIMESTAMP = 1707889361 +SHA256 (KDE/release-service/23.08.5/ktimer-23.08.5.tar.xz) = 55fa5416f9ad9f1da9db636181c1c1ef6e20e9a9bc040c88431ca849e05fdd16 +SIZE (KDE/release-service/23.08.5/ktimer-23.08.5.tar.xz) = 406472 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 999a8ccae35e..4a63ee86e6d8 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958837 -SHA256 (KDE/release-service/23.08.4/dolphin-23.08.4.tar.xz) = 6a630b78018f3344b70131ff2c9deaae5e626295e512ce2741958d5197888585 -SIZE (KDE/release-service/23.08.4/dolphin-23.08.4.tar.xz) = 5769716 +TIMESTAMP = 1707889320 +SHA256 (KDE/release-service/23.08.5/dolphin-23.08.5.tar.xz) = 6309abda566dfe890f6a3790f101198ed0f274728896054f21e24bdfc3e1f1f3 +SIZE (KDE/release-service/23.08.5/dolphin-23.08.5.tar.xz) = 5770048 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index e234cfe12843..ecf1909c42ac 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958839 -SHA256 (KDE/release-service/23.08.4/konqueror-23.08.4.tar.xz) = 91e6866d0227823e88f210e09a0ead97286a226631ec6fd0d769f309c4d8e6af -SIZE (KDE/release-service/23.08.4/konqueror-23.08.4.tar.xz) = 10080680 +TIMESTAMP = 1707889321 +SHA256 (KDE/release-service/23.08.5/konqueror-23.08.5.tar.xz) = 84ab449f354bf76582a511a23717671c9c1b94c4199ca955c58914c4bd370cfa +SIZE (KDE/release-service/23.08.5/konqueror-23.08.5.tar.xz) = 10092644 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index fc7365d6d2c2..408a44fd6529 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958887 -SHA256 (KDE/release-service/23.08.4/konsole-23.08.4.tar.xz) = 6c0b5bd0c749615b970adff16be226765ff9200988feaf099cc5ffda51278fb7 -SIZE (KDE/release-service/23.08.4/konsole-23.08.4.tar.xz) = 1839412 +TIMESTAMP = 1707889358 +SHA256 (KDE/release-service/23.08.5/konsole-23.08.5.tar.xz) = c6fb20753ac27a46bce62e31f7b105b6b99497035830b34a7bba1bc60260c1ca +SIZE (KDE/release-service/23.08.5/konsole-23.08.5.tar.xz) = 1839952 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index e8c5e9b8c129..18bfccb1d23c 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1701958886 -SHA256 (KDE/release-service/23.08.4/yakuake-23.08.4.tar.xz) = 1e9054a5d2bb68428d32c358b621b9db550ef9d994c1135052fc6f074260ffc5 -SIZE (KDE/release-service/23.08.4/yakuake-23.08.4.tar.xz) = 435356 +TIMESTAMP = 1707889357 +SHA256 (KDE/release-service/23.08.5/yakuake-23.08.5.tar.xz) = 4c595894530a2c5248311e44fa50733245891667b6b2ebb33af2162db3a1eb24 +SIZE (KDE/release-service/23.08.5/yakuake-23.08.5.tar.xz) = 435320