diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index e4fd4a11bcd1..5375685cdfec 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1075 +1,1075 @@ # 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.11 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop -KDE_PLASMA6_VERSION?= 6.2.4 +KDE_PLASMA6_VERSION?= 6.2.5 KDE_PLASMA6_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 6.9.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. 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.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:R} . 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 libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkipi libksane okular \ 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 attica 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 baloo 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 \ texttemplate \ 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} \ libkexiv2 # 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} \ libkexiv2 # ====================== 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-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_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-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} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-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-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.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_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} 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-libkexiv2_PORT5= graphics/libkexiv2 kde-libkexiv2_PORT6= graphics/libkexiv2-devel kde-libkexiv2_PORT= ${kde-libkexiv2_PORT${_KDE_VERSION}} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} 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/audio/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index bca5943188e3..b2fceb7e75f8 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419067 -SHA256 (KDE/plasma/6.2.4/kpipewire-6.2.4.tar.xz) = 76e456206a9f6e922cb10614476a19682f8c27957c5c8998f1d1a0dadb94ca6b -SIZE (KDE/plasma/6.2.4/kpipewire-6.2.4.tar.xz) = 149944 +TIMESTAMP = 1735693837 +SHA256 (KDE/plasma/6.2.5/kpipewire-6.2.5.tar.xz) = db42d581f0ca427bd80ee6a67d1fa9cef01114266c9aee7faa2cecbd973e6319 +SIZE (KDE/plasma/6.2.5/kpipewire-6.2.5.tar.xz) = 150412 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index 8da2a8b28068..3214d8d52ab9 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419068 -SHA256 (KDE/plasma/6.2.4/ocean-sound-theme-6.2.4.tar.xz) = 7b5492abad8a75d242e788395cda054decfc85d0ff221bce05b924518f16300a -SIZE (KDE/plasma/6.2.4/ocean-sound-theme-6.2.4.tar.xz) = 2113596 +TIMESTAMP = 1735693839 +SHA256 (KDE/plasma/6.2.5/ocean-sound-theme-6.2.5.tar.xz) = 017d325ec673bb80dfca442b76ef71a172cca26911c28a230cc7392b015dc505 +SIZE (KDE/plasma/6.2.5/ocean-sound-theme-6.2.5.tar.xz) = 2113172 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index fd8fbe362b84..e078942df504 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419069 -SHA256 (KDE/plasma/6.2.4/oxygen-sounds-6.2.4.tar.xz) = 7967bc3920303725aae1b57001f2192b06a25084fbf3b8e845f5f051a56258de -SIZE (KDE/plasma/6.2.4/oxygen-sounds-6.2.4.tar.xz) = 1936128 +TIMESTAMP = 1735693841 +SHA256 (KDE/plasma/6.2.5/oxygen-sounds-6.2.5.tar.xz) = ee083c672b76005dfde340902cf0302ca081b359caa566679334da967e8f75b4 +SIZE (KDE/plasma/6.2.5/oxygen-sounds-6.2.5.tar.xz) = 1936604 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index d0ce47c05a24..08877af4f704 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419071 -SHA256 (KDE/plasma/6.2.4/plasma-pa-6.2.4.tar.xz) = 276575b381c26080279a5acf87af6425026d2eebe1a906507383f5f09e681a57 -SIZE (KDE/plasma/6.2.4/plasma-pa-6.2.4.tar.xz) = 185592 +TIMESTAMP = 1735693843 +SHA256 (KDE/plasma/6.2.5/plasma-pa-6.2.5.tar.xz) = 5179337a7eac4145a953b46146d4899945d9c43373ad60f76692ffc42cf19d47 +SIZE (KDE/plasma/6.2.5/plasma-pa-6.2.5.tar.xz) = 186776 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index b85e1069e2ce..db640c03e992 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419072 -SHA256 (KDE/plasma/6.2.4/milou-6.2.4.tar.xz) = b47a635904a77aa82fb02d96a0261000cc95da01d07498ea9f29d4c0743775f9 -SIZE (KDE/plasma/6.2.4/milou-6.2.4.tar.xz) = 50008 +TIMESTAMP = 1735693844 +SHA256 (KDE/plasma/6.2.5/milou-6.2.5.tar.xz) = 833bcaeafe292e85eff353e09b0631f603ae2121e8d1d6fe061b1f632017accf +SIZE (KDE/plasma/6.2.5/milou-6.2.5.tar.xz) = 50072 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index eb98bf5028df..5e684d228e2b 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419073 -SHA256 (KDE/plasma/6.2.4/sddm-kcm-6.2.4.tar.xz) = 7e862c40d5bcd86943f3dbe585583aa555d4fa0bc312a7fcedcb316eaddfb1d7 -SIZE (KDE/plasma/6.2.4/sddm-kcm-6.2.4.tar.xz) = 100596 +TIMESTAMP = 1735693846 +SHA256 (KDE/plasma/6.2.5/sddm-kcm-6.2.5.tar.xz) = fa401116bcfc690fd2557c16cf39461fa9d6e1de0d917a4f49ff92e37d5fdf56 +SIZE (KDE/plasma/6.2.5/sddm-kcm-6.2.5.tar.xz) = 100428 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 393aa3b44f7c..dd7cc56d99fe 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419074 -SHA256 (KDE/plasma/6.2.4/xdg-desktop-portal-kde-6.2.4.tar.xz) = daf2d8769d0f45264ef1f48b63f5274446222574ff832e40f21d06a4c3822d1d -SIZE (KDE/plasma/6.2.4/xdg-desktop-portal-kde-6.2.4.tar.xz) = 179596 +TIMESTAMP = 1735693848 +SHA256 (KDE/plasma/6.2.5/xdg-desktop-portal-kde-6.2.5.tar.xz) = 1e86bf6f7dc433400ade93347671ec9cad88e382536dd30930030e4514623af1 +SIZE (KDE/plasma/6.2.5/xdg-desktop-portal-kde-6.2.5.tar.xz) = 180000 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index 36cc08dbe63e..73b1897103c4 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419075 -SHA256 (KDE/plasma/6.2.4/kwrited-6.2.4.tar.xz) = 55b664310d98d2e26d304878f6a2e7dc15ac32b941076ae6a3391e049c3e9b66 -SIZE (KDE/plasma/6.2.4/kwrited-6.2.4.tar.xz) = 23668 +TIMESTAMP = 1735693849 +SHA256 (KDE/plasma/6.2.5/kwrited-6.2.5.tar.xz) = 04794f10917a0a94167962015cfbb057c9802061fff91b027de01a3e6937d792 +SIZE (KDE/plasma/6.2.5/kwrited-6.2.5.tar.xz) = 23736 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index d40c8f7e3f59..ea90e51866bf 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419076 -SHA256 (KDE/plasma/6.2.4/plasma-sdk-6.2.4.tar.xz) = 576f6aa751d9d2cf66cdf09562ce86ed02cbbf73e5ae5ccbd06e01f8163b8878 -SIZE (KDE/plasma/6.2.4/plasma-sdk-6.2.4.tar.xz) = 349244 +TIMESTAMP = 1735693851 +SHA256 (KDE/plasma/6.2.5/plasma-sdk-6.2.5.tar.xz) = 76bd62e5ef3d9e717f7c45ff58638732b807e7a513942c62472c02b0b2ae3511 +SIZE (KDE/plasma/6.2.5/plasma-sdk-6.2.5.tar.xz) = 349404 diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index 0ed9dd7975ac..2448c161e19d 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419078 -SHA256 (KDE/plasma/6.2.4/plasma5support-6.2.4.tar.xz) = 233bbdc3f1c0b8acbb710f53c6308359c315b699958f6784b3467f4724f93d8d -SIZE (KDE/plasma/6.2.4/plasma5support-6.2.4.tar.xz) = 191312 +TIMESTAMP = 1735693852 +SHA256 (KDE/plasma/6.2.5/plasma5support-6.2.5.tar.xz) = cac5244aa2961ad020ed2c43427389e0823482ecb179948b5fd6b221606e8b04 +SIZE (KDE/plasma/6.2.5/plasma5support-6.2.5.tar.xz) = 191624 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index 3e66cffc2563..6d50700fddf2 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419079 -SHA256 (KDE/plasma/6.2.4/print-manager-6.2.4.tar.xz) = e0bcb91ad3b19e4259a7a35097f71879d2efe6d966521979033fb1e91fc6b895 -SIZE (KDE/plasma/6.2.4/print-manager-6.2.4.tar.xz) = 375024 +TIMESTAMP = 1735693855 +SHA256 (KDE/plasma/6.2.5/print-manager-6.2.5.tar.xz) = 056016ebb75fe02a3f2e71bfa679806c0c0dc20bdc676e34345c2ed04b5feacc +SIZE (KDE/plasma/6.2.5/print-manager-6.2.5.tar.xz) = 374932 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index 9e1631274b92..b68b2fb22ac1 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419080 -SHA256 (KDE/plasma/6.2.4/kscreenlocker-6.2.4.tar.xz) = 129d10c3892222168dbbf80cdbda810ad062c26de51f7cbc2590e655f553cb16 -SIZE (KDE/plasma/6.2.4/kscreenlocker-6.2.4.tar.xz) = 181716 +TIMESTAMP = 1735693856 +SHA256 (KDE/plasma/6.2.5/kscreenlocker-6.2.5.tar.xz) = 3a3ed2d040394dc2a80cf25cdd2a6c4022146aca54e72c44af16e8982e8b8e4e +SIZE (KDE/plasma/6.2.5/kscreenlocker-6.2.5.tar.xz) = 181704 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index c17c784a15c9..df59e69b9231 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419082 -SHA256 (KDE/plasma/6.2.4/ksshaskpass-6.2.4.tar.xz) = 3dd91d2e183ef5e212981bd263391989d2ab6fc924f9355138abab07f2cabfbf -SIZE (KDE/plasma/6.2.4/ksshaskpass-6.2.4.tar.xz) = 30692 +TIMESTAMP = 1735693858 +SHA256 (KDE/plasma/6.2.5/ksshaskpass-6.2.5.tar.xz) = 85e71c8037d5d2199f861ae707189f42a7caed2f03743ea83b7570c34a11eb72 +SIZE (KDE/plasma/6.2.5/ksshaskpass-6.2.5.tar.xz) = 30732 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index e32ebf5f0401..bd9f28195b76 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419083 -SHA256 (KDE/plasma/6.2.4/kwallet-pam-6.2.4.tar.xz) = 0b04a1c2d7ba4fdc20a0763727a5cd43622d2874523dd9fd833b912c1101d5e3 -SIZE (KDE/plasma/6.2.4/kwallet-pam-6.2.4.tar.xz) = 22464 +TIMESTAMP = 1735693859 +SHA256 (KDE/plasma/6.2.5/kwallet-pam-6.2.5.tar.xz) = 0168d4f2397ae289ae027a7d202b0ffd5f8d7a19b233ebfa6417b843841bfd44 +SIZE (KDE/plasma/6.2.5/kwallet-pam-6.2.5.tar.xz) = 22480 diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index 5ca92d33d4ce..5d893ed50071 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419084 -SHA256 (KDE/plasma/6.2.4/discover-6.2.4.tar.xz) = 619a8a80670f52d00bbe67daea22d1db0d7c9b44b57865dc972558061bad1427 -SIZE (KDE/plasma/6.2.4/discover-6.2.4.tar.xz) = 1101032 +TIMESTAMP = 1735693861 +SHA256 (KDE/plasma/6.2.5/discover-6.2.5.tar.xz) = 8ccbb881392a4bad540ab0bb465637a0e206ef6b53e7bf02e71bc8fb6453a4a4 +SIZE (KDE/plasma/6.2.5/discover-6.2.5.tar.xz) = 1104540 diff --git a/sysutils/plasma6-drkonqi/distinfo b/sysutils/plasma6-drkonqi/distinfo index 54bec2034681..f84e6faf704e 100644 --- a/sysutils/plasma6-drkonqi/distinfo +++ b/sysutils/plasma6-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419086 -SHA256 (KDE/plasma/6.2.4/drkonqi-6.2.4.tar.xz) = a970a65cdc1469058a7cc652dd2cccd0d6b302ae906a93208d35d820db5732d8 -SIZE (KDE/plasma/6.2.4/drkonqi-6.2.4.tar.xz) = 883036 +TIMESTAMP = 1735693863 +SHA256 (KDE/plasma/6.2.5/drkonqi-6.2.5.tar.xz) = f95ec56c702eb1cba48411fd1709d8723849e370ff8ea69981482d6f3a5d5c73 +SIZE (KDE/plasma/6.2.5/drkonqi-6.2.5.tar.xz) = 882572 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index 5248bd4b5e45..3799eceb08ce 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419087 -SHA256 (KDE/plasma/6.2.4/kde-cli-tools-6.2.4.tar.xz) = 117acba7d68006e0299fd68128b6fe54859e920e0e38a4f394998ab88111d9e7 -SIZE (KDE/plasma/6.2.4/kde-cli-tools-6.2.4.tar.xz) = 638232 +TIMESTAMP = 1735693865 +SHA256 (KDE/plasma/6.2.5/kde-cli-tools-6.2.5.tar.xz) = 1dda57f7495060a086658796519d68d54f5e7da4e12fa6d8d4bf4614ac728002 +SIZE (KDE/plasma/6.2.5/kde-cli-tools-6.2.5.tar.xz) = 636896 diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index 7a681b5a0632..c91f89ab1638 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419089 -SHA256 (KDE/plasma/6.2.4/kinfocenter-6.2.4.tar.xz) = 6bdda6067f6d1156a258a43a56d73412620ff224b0640b3ea424adf122303ba2 -SIZE (KDE/plasma/6.2.4/kinfocenter-6.2.4.tar.xz) = 731644 +TIMESTAMP = 1735693867 +SHA256 (KDE/plasma/6.2.5/kinfocenter-6.2.5.tar.xz) = 9ed87edb3a24256189f8dc79c821b8f45589aab7032d8dde78d5d94cf0639ff9 +SIZE (KDE/plasma/6.2.5/kinfocenter-6.2.5.tar.xz) = 732392 diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index a5d64432ff67..8350d07b670f 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419090 -SHA256 (KDE/plasma/6.2.4/kmenuedit-6.2.4.tar.xz) = 174f5bfb174642b7b72445f294d410cfaccaf6573350c14af711e48dc856adf9 -SIZE (KDE/plasma/6.2.4/kmenuedit-6.2.4.tar.xz) = 877344 +TIMESTAMP = 1735693869 +SHA256 (KDE/plasma/6.2.5/kmenuedit-6.2.5.tar.xz) = 0908645f4fc24a00b023d0537cac6dee7b7abad75c7980b4a01c6c098ded684a +SIZE (KDE/plasma/6.2.5/kmenuedit-6.2.5.tar.xz) = 877516 diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index 46c4371ffe0f..5cc91a057464 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419091 -SHA256 (KDE/plasma/6.2.4/ksystemstats-6.2.4.tar.xz) = 49a94ef05e6ab0e8f0ff5a272194f34d8a4d572fe79fcab65c96ea2ec1460c43 -SIZE (KDE/plasma/6.2.4/ksystemstats-6.2.4.tar.xz) = 143860 +TIMESTAMP = 1735693870 +SHA256 (KDE/plasma/6.2.5/ksystemstats-6.2.5.tar.xz) = efff56f55e6fe5ed4231a47a44c8d08d3d46fd10d74d186344ef4f2fcd9595a1 +SIZE (KDE/plasma/6.2.5/ksystemstats-6.2.5.tar.xz) = 144156 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index b0aad1698bef..9fb833ddd9b1 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419092 -SHA256 (KDE/plasma/6.2.4/libksysguard-6.2.4.tar.xz) = f799f90efd3b3e0ea17b1969bb0cc5744c7762ea16d128b1b4d31dfa78cc58ae -SIZE (KDE/plasma/6.2.4/libksysguard-6.2.4.tar.xz) = 315552 +TIMESTAMP = 1735693872 +SHA256 (KDE/plasma/6.2.5/libksysguard-6.2.5.tar.xz) = 9694f3d6b5078b4d82eb8e6ed34eb20e2d109ed7c2234c59a640bc32f31c76ab +SIZE (KDE/plasma/6.2.5/libksysguard-6.2.5.tar.xz) = 316092 diff --git a/sysutils/plasma6-libksysguard/pkg-plist b/sysutils/plasma6-libksysguard/pkg-plist index 2a7baa8e6066..454cde600160 100644 --- a/sysutils/plasma6-libksysguard/pkg-plist +++ b/sysutils/plasma6-libksysguard/pkg-plist @@ -1,633 +1,640 @@ include/ksysguard/faces/FaceLoader.h include/ksysguard/faces/SensorFaceController.h include/ksysguard/faces/SensorFace_p.h include/ksysguard/faces/sensorfaces_export.h include/ksysguard/formatter/Formatter.h include/ksysguard/formatter/FormatterWrapper.h include/ksysguard/formatter/Unit.h include/ksysguard/formatter/formatter_export.h include/ksysguard/processcore/formatter.h include/ksysguard/processcore/process.h include/ksysguard/processcore/process_attribute.h include/ksysguard/processcore/process_attribute_model.h include/ksysguard/processcore/process_controller.h include/ksysguard/processcore/process_data_model.h include/ksysguard/processcore/process_data_provider.h include/ksysguard/processcore/processcore_export.h include/ksysguard/processcore/processes.h include/ksysguard/processcore/unit.h include/ksysguard/sensors/Sensor.h include/ksysguard/sensors/SensorDataModel.h include/ksysguard/sensors/SensorInfo_p.h include/ksysguard/sensors/SensorQuery.h include/ksysguard/sensors/SensorTreeModel.h include/ksysguard/sensors/SensorUnitModel.h include/ksysguard/sensors/sensors_export.h include/ksysguard/systemstats/AggregateSensor.h include/ksysguard/systemstats/DBusInterface.h include/ksysguard/systemstats/SensorContainer.h include/ksysguard/systemstats/SensorInfo.h include/ksysguard/systemstats/SensorObject.h include/ksysguard/systemstats/SensorPlugin.h include/ksysguard/systemstats/SensorProperty.h include/ksysguard/systemstats/SensorsFeatureSensor.h include/ksysguard/systemstats/SysFsSensor.h include/ksysguard/systemstats/SysctlSensor.h include/ksysguard/systemstats/org.kde.ksystemstats1.h include/ksysguard/systemstats/systemstats_export.h lib/cmake/KSysGuard/KSysGuardConfig.cmake lib/cmake/KSysGuard/KSysGuardConfigVersion.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets.cmake lib/libKSysGuardFormatter.so lib/libKSysGuardFormatter.so.2 lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensorFaces.so lib/libKSysGuardSensorFaces.so.2 lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensors.so lib/libKSysGuardSensors.so.2 lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSystemStats.so lib/libKSysGuardSystemStats.so.2 lib/libKSysGuardSystemStats.so.%%KDE_PLASMA_VERSION%% lib/libexec/kf6/kauth/ksysguardprocesslist_helper lib/libprocesscore.so lib/libprocesscore.so.10 lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/ksysguard_sensorface.so %%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_nvidia.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/Choices.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/CompactSensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFaces.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorRangeSpinBox.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/faces/libSensorFacesplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/SensorFacesPrivate.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/libSensorFacesPrivate.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/faces/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/formatter/Formatter.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/formatter/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/formatter/libFormatterplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/formatter/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/process/ProcessPlugin.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/process/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/process/libProcessPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/process/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/sensors/Sensors.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/sensors/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/sensors/libSensorsplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/sensors/qmldir share/dbus-1/interfaces/org.kde.ksystemstats1.xml share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service share/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf share/knsrcfiles/systemmonitor-faces.knsrc share/knsrcfiles/systemmonitor-presets.knsrc share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/SensorRect.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceControl.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Bar.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/PieChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/UsedTotalDisplay.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/GroupedText.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json share/locale/ar/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ar/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ar/LC_MESSAGES/ksysguard_sensors.mo share/locale/ar/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ast/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ast/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ast/LC_MESSAGES/ksysguard_sensors.mo share/locale/ast/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ast/LC_MESSAGES/processcore.mo share/locale/az/LC_MESSAGES/KSysGuardFormatter.mo share/locale/az/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/az/LC_MESSAGES/ksysguard_sensors.mo share/locale/az/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/KSysGuardFormatter.mo share/locale/bg/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/bg/LC_MESSAGES/ksysguard_sensors.mo share/locale/bg/LC_MESSAGES/ksysguard_systemstats.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/KSysGuardFormatter.mo share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/cs/LC_MESSAGES/ksysguard_sensors.mo share/locale/cs/LC_MESSAGES/ksysguard_systemstats.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/KSysGuardFormatter.mo share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/de/LC_MESSAGES/ksysguard_sensors.mo share/locale/de/LC_MESSAGES/ksysguard_systemstats.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/KSysGuardFormatter.mo share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/en_GB/LC_MESSAGES/ksysguard_sensors.mo share/locale/en_GB/LC_MESSAGES/ksysguard_systemstats.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eo/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eo/LC_MESSAGES/ksysguard_sensors.mo share/locale/eo/LC_MESSAGES/ksysguard_systemstats.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/KSysGuardFormatter.mo share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/es/LC_MESSAGES/ksysguard_sensors.mo share/locale/es/LC_MESSAGES/ksysguard_systemstats.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/eu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eu/LC_MESSAGES/ksysguard_sensors.mo share/locale/eu/LC_MESSAGES/ksysguard_systemstats.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fi/LC_MESSAGES/ksysguard_sensors.mo share/locale/fi/LC_MESSAGES/ksysguard_systemstats.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fr/LC_MESSAGES/ksysguard_sensors.mo share/locale/fr/LC_MESSAGES/ksysguard_systemstats.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/gl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/gl/LC_MESSAGES/ksysguard_sensors.mo share/locale/gl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/KSysGuardFormatter.mo share/locale/he/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/he/LC_MESSAGES/ksysguard_sensors.mo share/locale/he/LC_MESSAGES/ksysguard_systemstats.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/hu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/hu/LC_MESSAGES/ksysguard_sensors.mo share/locale/hu/LC_MESSAGES/ksysguard_systemstats.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ia/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/KSysGuardFormatter.mo share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/it/LC_MESSAGES/ksysguard_sensors.mo share/locale/it/LC_MESSAGES/ksysguard_systemstats.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ja/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ja/LC_MESSAGES/ksysguard_sensors.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ka/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ka/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ka/LC_MESSAGES/ksysguard_sensors.mo share/locale/ka/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ka/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ko/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ko/LC_MESSAGES/ksysguard_sensors.mo share/locale/ko/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/lt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/lt/LC_MESSAGES/ksysguard_sensors.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/nl/LC_MESSAGES/ksysguard_sensors.mo share/locale/nl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nn/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/nn/LC_MESSAGES/ksysguard_sensors.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/or/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pa/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pa/LC_MESSAGES/ksysguard_sensors.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pl/LC_MESSAGES/ksysguard_sensors.mo share/locale/pl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt/LC_MESSAGES/ksysguard_sensors.mo share/locale/pt/LC_MESSAGES/processcore.mo +share/locale/pt_BR/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_sensors.mo +share/locale/pt_BR/LC_MESSAGES/ksysguard_systemstats.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/ro/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ro/LC_MESSAGES/processcore.mo share/locale/ru/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ru/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ru/LC_MESSAGES/ksysguard_sensors.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo +share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sk/LC_MESSAGES/ksysguard_sensors.mo +share/locale/sk/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sl/LC_MESSAGES/ksysguard_sensors.mo share/locale/sl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sv/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sv/LC_MESSAGES/ksysguard_sensors.mo share/locale/sv/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sv/LC_MESSAGES/processcore.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/tr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/tr/LC_MESSAGES/ksysguard_sensors.mo share/locale/tr/LC_MESSAGES/ksysguard_systemstats.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/uk/LC_MESSAGES/ksysguard_sensors.mo share/locale/uk/LC_MESSAGES/ksysguard_systemstats.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/wa/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_systemstats.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_systemstats.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy share/qlogging-categories6/libksysguard.categories diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index 77c8ba473555..539fed7a83b6 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419094 -SHA256 (KDE/plasma/6.2.4/plasma-disks-6.2.4.tar.xz) = 732b27ce076fdffecb01b55184d4957e8592161764e579835d59e5cff5e7246a -SIZE (KDE/plasma/6.2.4/plasma-disks-6.2.4.tar.xz) = 102912 +TIMESTAMP = 1735693874 +SHA256 (KDE/plasma/6.2.5/plasma-disks-6.2.5.tar.xz) = 9b514ab7fb0bde0cb1871334ce9ea8115d898dd2890e96ee068ea5a429be7f75 +SIZE (KDE/plasma/6.2.5/plasma-disks-6.2.5.tar.xz) = 102936 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 6ab8277a951f..ce07c6059b41 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419095 -SHA256 (KDE/plasma/6.2.4/plasma-systemmonitor-6.2.4.tar.xz) = 4796b5a571ff4396fd4755b1b090b27c23fa596b8715c32ce4a0315d12c8064c -SIZE (KDE/plasma/6.2.4/plasma-systemmonitor-6.2.4.tar.xz) = 196980 +TIMESTAMP = 1735693875 +SHA256 (KDE/plasma/6.2.5/plasma-systemmonitor-6.2.5.tar.xz) = 9575d4562e68209627aee2f358070b09122cc3e09fee50c90451df52bf00b2ca +SIZE (KDE/plasma/6.2.5/plasma-systemmonitor-6.2.5.tar.xz) = 197520 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 57a3be430c4e..1a1bcaa0ed0e 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419096 -SHA256 (KDE/plasma/6.2.4/polkit-kde-agent-1-6.2.4.tar.xz) = 12de45e157239b581f21bdd9a3eda3ff73bc55300ba979a42c9799f1b7753f8d -SIZE (KDE/plasma/6.2.4/polkit-kde-agent-1-6.2.4.tar.xz) = 57132 +TIMESTAMP = 1735693877 +SHA256 (KDE/plasma/6.2.5/polkit-kde-agent-1-6.2.5.tar.xz) = b1ffb3e444c6c53db822a8fb4c7505c38f2613a812ae17be2434e02f50c293fb +SIZE (KDE/plasma/6.2.5/polkit-kde-agent-1-6.2.5.tar.xz) = 56940 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index 0cf4f12ddabe..0185a1bdf19f 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419097 -SHA256 (KDE/plasma/6.2.4/powerdevil-6.2.4.tar.xz) = 17c440d7d596be07797f604985c4b25f9297128aafd6f11b88a4a9afe20bddaf -SIZE (KDE/plasma/6.2.4/powerdevil-6.2.4.tar.xz) = 1189360 +TIMESTAMP = 1735693879 +SHA256 (KDE/plasma/6.2.5/powerdevil-6.2.5.tar.xz) = 70250396d5efae4be7d3201be878e0e35fd8d9bfb390660d5e0394828b1f464b +SIZE (KDE/plasma/6.2.5/powerdevil-6.2.5.tar.xz) = 1189116 diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index 9a955be6f125..263e3faa6e24 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419098 -SHA256 (KDE/plasma/6.2.4/systemsettings-6.2.4.tar.xz) = 6179f33c358f9b966e6fb79a7ed62717aa8e74975956e75ab0fa78725087c156 -SIZE (KDE/plasma/6.2.4/systemsettings-6.2.4.tar.xz) = 219264 +TIMESTAMP = 1735693880 +SHA256 (KDE/plasma/6.2.5/systemsettings-6.2.5.tar.xz) = b5022f294325dbd3da16abefb52a12c018c73a3c78eda032df89173c69abd375 +SIZE (KDE/plasma/6.2.5/systemsettings-6.2.5.tar.xz) = 219388 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index bf01045c7417..6688c4506c3d 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419100 -SHA256 (KDE/plasma/6.2.4/plasma-browser-integration-6.2.4.tar.xz) = 504be1bb0cb22b1a13c0b7471351672fba3a46bdc8e5724d4ba4013e8f2d63cd -SIZE (KDE/plasma/6.2.4/plasma-browser-integration-6.2.4.tar.xz) = 223108 +TIMESTAMP = 1735693882 +SHA256 (KDE/plasma/6.2.5/plasma-browser-integration-6.2.5.tar.xz) = 25da9051669f20a1bf9bd8987d95621b2e664131a3c38701a3c5e2f86d9b5dce +SIZE (KDE/plasma/6.2.5/plasma-browser-integration-6.2.5.tar.xz) = 223716 diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index 38b2cfe34fef..5f7f22e322f8 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419104 -SHA256 (KDE/plasma/6.2.4/breeze-gtk-6.2.4.tar.xz) = 610c24d4686be08a92337516b67e9f09c7e365dddc3e02976d24af364233bca0 -SIZE (KDE/plasma/6.2.4/breeze-gtk-6.2.4.tar.xz) = 40704 +TIMESTAMP = 1735693892 +SHA256 (KDE/plasma/6.2.5/breeze-gtk-6.2.5.tar.xz) = 2115f00bbcef8e6ba57247e9c6ce1633dedf370f92da01d2fc4aafca1a74d35f +SIZE (KDE/plasma/6.2.5/breeze-gtk-6.2.5.tar.xz) = 40856 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index 4f2d8546a5c4..9f6b3fcd5126 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419103 -SHA256 (KDE/plasma/6.2.4/breeze-6.2.4.tar.xz) = 4d9613896082f336413abb24ef8f8d86513f7e99a4c0bcdf2f45cd7c5bbd7c20 -SIZE (KDE/plasma/6.2.4/breeze-6.2.4.tar.xz) = 110838268 +TIMESTAMP = 1735693890 +SHA256 (KDE/plasma/6.2.5/breeze-6.2.5.tar.xz) = 1d3bd4481bb7cd274a13ac5d5852be51ff2975e620872dfc22fbd531bad04e25 +SIZE (KDE/plasma/6.2.5/breeze-6.2.5.tar.xz) = 110838704 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index 9e0987cf048d..4250a6bd309a 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419105 -SHA256 (KDE/plasma/6.2.4/kde-gtk-config-6.2.4.tar.xz) = e801a162e859766182bccfd2d4abd7093dbbde95183e276ad4de8192151e5645 -SIZE (KDE/plasma/6.2.4/kde-gtk-config-6.2.4.tar.xz) = 78944 +TIMESTAMP = 1735693893 +SHA256 (KDE/plasma/6.2.5/kde-gtk-config-6.2.5.tar.xz) = 283f9803a15f13734de6298558f875406a5c7c0ea46e9ffba5647f480bfc6a58 +SIZE (KDE/plasma/6.2.5/kde-gtk-config-6.2.5.tar.xz) = 78904 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index 2572f5d6011b..eb47695b485a 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419107 -SHA256 (KDE/plasma/6.2.4/oxygen-6.2.4.tar.xz) = 866a58bda3f361f2b078c447b95885b9d3905d80b285454861193d3e863a1452 -SIZE (KDE/plasma/6.2.4/oxygen-6.2.4.tar.xz) = 2963884 +TIMESTAMP = 1735693895 +SHA256 (KDE/plasma/6.2.5/oxygen-6.2.5.tar.xz) = 6d772dd509c2bfd03d7f801e45eff151f344172900bae05bb16d8ba2f8d3b7dc +SIZE (KDE/plasma/6.2.5/oxygen-6.2.5.tar.xz) = 2947676 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index a6f33cc7f252..bee0beafaca5 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419110 -SHA256 (KDE/plasma/6.2.4/plasma-workspace-wallpapers-6.2.4.tar.xz) = eb7a929dc7d2548b0ee7d77737fb0f2eb57571f8235e398ce1b33e92e8afaa5b -SIZE (KDE/plasma/6.2.4/plasma-workspace-wallpapers-6.2.4.tar.xz) = 111405068 +TIMESTAMP = 1735693906 +SHA256 (KDE/plasma/6.2.5/plasma-workspace-wallpapers-6.2.5.tar.xz) = d8b07a2cc3d34d13434f3a20e9a496ed7502805262e3bb189eb846d574f1bc80 +SIZE (KDE/plasma/6.2.5/plasma-workspace-wallpapers-6.2.5.tar.xz) = 111403856 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index f6e547859b5a..dc095e27eea0 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419111 -SHA256 (KDE/plasma/6.2.4/qqc2-breeze-style-6.2.4.tar.xz) = ac02a6db14e539796fc5255f512fa8d6a48e2a4caadac283ef6b190e7047117a -SIZE (KDE/plasma/6.2.4/qqc2-breeze-style-6.2.4.tar.xz) = 66332 +TIMESTAMP = 1735693908 +SHA256 (KDE/plasma/6.2.5/qqc2-breeze-style-6.2.5.tar.xz) = 380cb63696ca2126265659c618e05636193f28e7f6a597341eb915af5dd1d10f +SIZE (KDE/plasma/6.2.5/qqc2-breeze-style-6.2.5.tar.xz) = 66244 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index afcafc046acb..af720cca2714 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419113 -SHA256 (KDE/plasma/6.2.4/kdeplasma-addons-6.2.4.tar.xz) = d099c2935dd74eb2f49963871b7e26f854be40e4d7773fc9a1d6ac879fd16f91 -SIZE (KDE/plasma/6.2.4/kdeplasma-addons-6.2.4.tar.xz) = 903324 +TIMESTAMP = 1735693910 +SHA256 (KDE/plasma/6.2.5/kdeplasma-addons-6.2.5.tar.xz) = 57d138d5101adbb8092c424c58ceb73e1d05d0cce3ec4a354432744dbd17e426 +SIZE (KDE/plasma/6.2.5/kdeplasma-addons-6.2.5.tar.xz) = 902876 diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index 61abc3fe1bc1..d1b29d00ffa1 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419114 -SHA256 (KDE/plasma/6.2.4/kdecoration-6.2.4.tar.xz) = ac645b4d582d110258694a9e2ea2bf65fbbd4bd58e9de9f9354786397bc4f71a -SIZE (KDE/plasma/6.2.4/kdecoration-6.2.4.tar.xz) = 55128 +TIMESTAMP = 1735693911 +SHA256 (KDE/plasma/6.2.5/kdecoration-6.2.5.tar.xz) = 726c58cd4b34fc49546578727a447c76242938add577292cd334bd60bf9d8f26 +SIZE (KDE/plasma/6.2.5/kdecoration-6.2.5.tar.xz) = 55104 diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index 803d17f939a2..4a910463939d 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419116 -SHA256 (KDE/plasma/6.2.4/kwin-6.2.4.tar.xz) = d4b78ebdc9432cb1e224621ac43cfb81b92dbcee034afe90bbeb5b22f218f321 -SIZE (KDE/plasma/6.2.4/kwin-6.2.4.tar.xz) = 8558408 +TIMESTAMP = 1735693914 +SHA256 (KDE/plasma/6.2.5/kwin-6.2.5.tar.xz) = 5cc450a6e41105c8c49929b72550b331237f96aafb294690f4707bdc5f776848 +SIZE (KDE/plasma/6.2.5/kwin-6.2.5.tar.xz) = 8563352 diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index a34a4d6c9f4d..76b7a1b27ec6 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419117 -SHA256 (KDE/plasma/6.2.4/kactivitymanagerd-6.2.4.tar.xz) = 17672c65500c731eeb3c43649cf52ecae115adfd1942c24599055ece3e4a90da -SIZE (KDE/plasma/6.2.4/kactivitymanagerd-6.2.4.tar.xz) = 107264 +TIMESTAMP = 1735693915 +SHA256 (KDE/plasma/6.2.5/kactivitymanagerd-6.2.5.tar.xz) = f36e1bbc5c100f4c39d1af007a03c474ea3dd1584592029fe24fbbdb1cf9dad6 +SIZE (KDE/plasma/6.2.5/kactivitymanagerd-6.2.5.tar.xz) = 107624 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index 713c989fdce0..bdf4c7936bbb 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419118 -SHA256 (KDE/plasma/6.2.4/kgamma-6.2.4.tar.xz) = 73a745fc66cd14eaa6e13350c38683a5045125887a18f461eb2b64e50e6a1922 -SIZE (KDE/plasma/6.2.4/kgamma-6.2.4.tar.xz) = 87948 +TIMESTAMP = 1735693917 +SHA256 (KDE/plasma/6.2.5/kgamma-6.2.5.tar.xz) = 3df75cdcb020acfd216e9a722404d381c8a4d97262be85f6704b189e665610ce +SIZE (KDE/plasma/6.2.5/kgamma-6.2.5.tar.xz) = 87900 diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index 0716c2ac9a1a..5430048f28cd 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419120 -SHA256 (KDE/plasma/6.2.4/kglobalacceld-6.2.4.tar.xz) = d22904e2c8342dbccf7a8197d260cc0df7f5eca5ae659ab81315573db80d367a -SIZE (KDE/plasma/6.2.4/kglobalacceld-6.2.4.tar.xz) = 56268 +TIMESTAMP = 1735693918 +SHA256 (KDE/plasma/6.2.5/kglobalacceld-6.2.5.tar.xz) = 94b5cc3780ca6b074093c487ec9e6c3460f635ae5145780f87c0fe8484d8c6c9 +SIZE (KDE/plasma/6.2.5/kglobalacceld-6.2.5.tar.xz) = 56336 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 8952a5799434..1dc0d3427a35 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419121 -SHA256 (KDE/plasma/6.2.4/kscreen-6.2.4.tar.xz) = 3f660c98e698b53a94eab75f55dd56e2aff2dc7ae34c8be69875466599e7b002 -SIZE (KDE/plasma/6.2.4/kscreen-6.2.4.tar.xz) = 211376 +TIMESTAMP = 1735693920 +SHA256 (KDE/plasma/6.2.5/kscreen-6.2.5.tar.xz) = 6237c47fe70384d10e6f20d7f058c6aacca51a493da928077fcec91b0ef69642 +SIZE (KDE/plasma/6.2.5/kscreen-6.2.5.tar.xz) = 211884 diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index c16511b3bd4d..95c102b1dcdb 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419122 -SHA256 (KDE/plasma/6.2.4/kwayland-6.2.4.tar.xz) = f4fe69978f8e9b0c40058019782f13bfdd770cf545d9325a7b378826f0cd34ac -SIZE (KDE/plasma/6.2.4/kwayland-6.2.4.tar.xz) = 133964 +TIMESTAMP = 1735693922 +SHA256 (KDE/plasma/6.2.5/kwayland-6.2.5.tar.xz) = 2a17a8ce5643fd51c3cf787542032c1050da3a1fb00dcc9a32dea288bd38d7d2 +SIZE (KDE/plasma/6.2.5/kwayland-6.2.5.tar.xz) = 134116 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index be5916e310a8..9230f3e0d1c9 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419123 -SHA256 (KDE/plasma/6.2.4/layer-shell-qt-6.2.4.tar.xz) = 001897a7d4991a9e95be73152d9513662cc7d8a53211702d906d597b73ced872 -SIZE (KDE/plasma/6.2.4/layer-shell-qt-6.2.4.tar.xz) = 35892 +TIMESTAMP = 1735693924 +SHA256 (KDE/plasma/6.2.5/layer-shell-qt-6.2.5.tar.xz) = bc09870218df387c377bad2fed4b2a8f39121ddbdc5c6bb28a40be0c1b000c77 +SIZE (KDE/plasma/6.2.5/layer-shell-qt-6.2.5.tar.xz) = 35972 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index 395423001802..76d6b1cc19ab 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419125 -SHA256 (KDE/plasma/6.2.4/libkscreen-6.2.4.tar.xz) = 3cc06d5c561ab4dbedbc548a4655119e861c4ac29e565ff5846273f0c76e9cb4 -SIZE (KDE/plasma/6.2.4/libkscreen-6.2.4.tar.xz) = 119476 +TIMESTAMP = 1735693926 +SHA256 (KDE/plasma/6.2.5/libkscreen-6.2.5.tar.xz) = 5edaf6fa2eed6ddcef4bc479f4bb15d3481acb60adf0150e9f9a1382607bbcb8 +SIZE (KDE/plasma/6.2.5/libkscreen-6.2.5.tar.xz) = 119352 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index b0c28c7b7843..378c612c5a0b 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419126 -SHA256 (KDE/plasma/6.2.4/libplasma-6.2.4.tar.xz) = 66eda145fb57dcc585db97fd7e543f2cdfc745ceb83c16cbe3d080939f5b1b14 -SIZE (KDE/plasma/6.2.4/libplasma-6.2.4.tar.xz) = 1968912 +TIMESTAMP = 1735693928 +SHA256 (KDE/plasma/6.2.5/libplasma-6.2.5.tar.xz) = af770f5fef978512c70491889516fb769d340f00a02270987d2d1d17753658ec +SIZE (KDE/plasma/6.2.5/libplasma-6.2.5.tar.xz) = 1970096 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index f6191ee601c7..a4e67384a076 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419130 -SHA256 (KDE/plasma/6.2.4/plasma-activities-stats-6.2.4.tar.xz) = c2271850b57b0da6e84e61049c3dd6d60244e47482245672a9c220debf04ccbb -SIZE (KDE/plasma/6.2.4/plasma-activities-stats-6.2.4.tar.xz) = 83036 +TIMESTAMP = 1735693932 +SHA256 (KDE/plasma/6.2.5/plasma-activities-stats-6.2.5.tar.xz) = cddba25924651e0f5de74a6faabc8990301857bb31f4ee4ac1f69d7a0c48532c +SIZE (KDE/plasma/6.2.5/plasma-activities-stats-6.2.5.tar.xz) = 83200 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index 934170b537d3..a6972aa2d552 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419128 -SHA256 (KDE/plasma/6.2.4/plasma-activities-6.2.4.tar.xz) = 7c975d2421e6792e8c3cca5f22611dac55f44e1ec8648df97712f00cbb907ccb -SIZE (KDE/plasma/6.2.4/plasma-activities-6.2.4.tar.xz) = 66708 +TIMESTAMP = 1735693930 +SHA256 (KDE/plasma/6.2.5/plasma-activities-6.2.5.tar.xz) = 77ea739c7ce5170d92d78d6f3765e19a32f0e24b741f525555d59dc7de15e6c7 +SIZE (KDE/plasma/6.2.5/plasma-activities-6.2.5.tar.xz) = 66752 diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index dcdf0749799b..b565b12ffd7b 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419131 -SHA256 (KDE/plasma/6.2.4/plasma-desktop-6.2.4.tar.xz) = 81f2ab40cdec332918c90b1b732abb2aa0c0502854e48b8fa06fb82b52924da3 -SIZE (KDE/plasma/6.2.4/plasma-desktop-6.2.4.tar.xz) = 16335912 +TIMESTAMP = 1735693935 +SHA256 (KDE/plasma/6.2.5/plasma-desktop-6.2.5.tar.xz) = b73d29202031b7049485d84e615d7bd0a3ca890dcb2c22d8116eb8fe6fe9d068 +SIZE (KDE/plasma/6.2.5/plasma-desktop-6.2.5.tar.xz) = 16342172 diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index a24c5c1e98d6..65bedd204ba8 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419132 -SHA256 (KDE/plasma/6.2.4/plasma-integration-6.2.4.tar.xz) = 8d3d9b022aef411a36aada564931aad4ec81df8b8ef6e3f4091e362522295cc7 -SIZE (KDE/plasma/6.2.4/plasma-integration-6.2.4.tar.xz) = 95924 +TIMESTAMP = 1735693937 +SHA256 (KDE/plasma/6.2.5/plasma-integration-6.2.5.tar.xz) = 5795e52285deea10877fd56474473d061071cb425ba87cef3366832d50764729 +SIZE (KDE/plasma/6.2.5/plasma-integration-6.2.5.tar.xz) = 96116 diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index 92930b2da9ba..964a3a329ee7 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734419134 -SHA256 (KDE/plasma/6.2.4/plasma-workspace-6.2.4.tar.xz) = 32aa3bda29d7b76a7dae7e1f8c9789cfe7f609eb878e1a793db4b1490ca3c174 -SIZE (KDE/plasma/6.2.4/plasma-workspace-6.2.4.tar.xz) = 19140364 +TIMESTAMP = 1735693940 +SHA256 (KDE/plasma/6.2.5/plasma-workspace-6.2.5.tar.xz) = b82511e46f62e1b8f60b969c828c8d8d32fc7928401a70cc28c29f85f46c412f +SIZE (KDE/plasma/6.2.5/plasma-workspace-6.2.5.tar.xz) = 19136676