diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 45468974f21f..6605fe55840e 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,914 +1,914 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.24.4 +KDE_PLASMA_VERSION?= 5.24.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.92.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 21.12.3 KDE_APPLICATIONS_SHLIB_VER?= 5.19.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS_SHLIB_G_VER?= 21.12.3 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools_build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ 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 _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/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= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma5-plasma-pa/Makefile b/audio/plasma5-plasma-pa/Makefile index de6f501ec99b..9ce13f697c3e 100644 --- a/audio/plasma5-plasma-pa/Makefile +++ b/audio/plasma5-plasma-pa/Makefile @@ -1,23 +1,22 @@ PORTNAME= plasma-pa DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma pulse audio mixer LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libpulse.so:audio/pulseaudio USES= cmake compiler:c++11-lib gettext gnome kde:5 pkgconfig qt:5 \ shebangfix tar:xz USE_GNOME= gconf2 USE_KDE= config configwidgets coreaddons ecm globalaccel i18n \ kdeclarative notifications package plasma-framework \ doctools_build USE_QT= core dbus declarative gui network widgets \ buildtools_build qmake_build SHEBANG_FILES= data/plasmaVolumeDisableKMixAutostart.pl .include diff --git a/audio/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index 19b697bd3bf8..5db82446a878 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573114 -SHA256 (KDE/plasma/5.24.4/plasma-pa-5.24.4.tar.xz) = ffe5b915e5e1d2e5d4de719502793dd5b91cd9715cc44f82c88fc5ff0556d325 -SIZE (KDE/plasma/5.24.4/plasma-pa-5.24.4.tar.xz) = 132860 +TIMESTAMP = 1651588815 +SHA256 (KDE/plasma/5.24.5/plasma-pa-5.24.5.tar.xz) = 068f0d393a87d3f3c8031eaecd1c2d2bdb17e73c510e020280ab18da3c15f8d1 +SIZE (KDE/plasma/5.24.5/plasma-pa-5.24.5.tar.xz) = 132952 diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index ddb085554ae1..9f6a5903d9b2 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573116 -SHA256 (KDE/plasma/5.24.4/milou-5.24.4.tar.xz) = 3109ad6c97415d74fccdfd26681360ff0925e58af7a1c72905437eb99faff37c -SIZE (KDE/plasma/5.24.4/milou-5.24.4.tar.xz) = 48236 +TIMESTAMP = 1651588816 +SHA256 (KDE/plasma/5.24.5/milou-5.24.5.tar.xz) = c1594e8b575d7de7b7cafe8a6f37dbe7c75d338075c6fa0fd8ec08d283ff05e6 +SIZE (KDE/plasma/5.24.5/milou-5.24.5.tar.xz) = 48264 diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index 4024bf00336e..3b252e2140d5 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573117 -SHA256 (KDE/plasma/5.24.4/sddm-kcm-5.24.4.tar.xz) = bef347b9e066a756d71263b19552fbbf9b8a1d6d22861060bdfd1ead5ab9d85d -SIZE (KDE/plasma/5.24.4/sddm-kcm-5.24.4.tar.xz) = 81212 +TIMESTAMP = 1651588817 +SHA256 (KDE/plasma/5.24.5/sddm-kcm-5.24.5.tar.xz) = cf9262036c4b3c149663335ab7b3770705924554e227e924dee3c4cfae83e597 +SIZE (KDE/plasma/5.24.5/sddm-kcm-5.24.5.tar.xz) = 81280 diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo index 653fb2acc098..fa7ae00a20ed 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573117 -SHA256 (KDE/plasma/5.24.4/xdg-desktop-portal-kde-5.24.4.tar.xz) = 11684916288bb4a452b75004e2d122a4a1264a562f7945af98d466e49c59dc1e -SIZE (KDE/plasma/5.24.4/xdg-desktop-portal-kde-5.24.4.tar.xz) = 88540 +TIMESTAMP = 1651588818 +SHA256 (KDE/plasma/5.24.5/xdg-desktop-portal-kde-5.24.5.tar.xz) = b59ccf65d29aef2ce6af9757a5c87eddd87b633fba2e45470f92b18b2ce5c6fe +SIZE (KDE/plasma/5.24.5/xdg-desktop-portal-kde-5.24.5.tar.xz) = 88904 diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 7f2c0704f012..0b6f9170fb4e 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573119 -SHA256 (KDE/plasma/5.24.4/khotkeys-5.24.4.tar.xz) = 5aac75b05f0b5a63ea924b02645bbfacfe18fef3d5c23182b482ebc5d17f6d0c -SIZE (KDE/plasma/5.24.4/khotkeys-5.24.4.tar.xz) = 1852708 +TIMESTAMP = 1651588819 +SHA256 (KDE/plasma/5.24.5/khotkeys-5.24.5.tar.xz) = 7a2307b4ca1dca1b240a59ea4bbbceb48b1f6759c9ce3bb36b3cab7274f6a71a +SIZE (KDE/plasma/5.24.5/khotkeys-5.24.5.tar.xz) = 1853496 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index f40db7a253b9..7c57b4847355 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573120 -SHA256 (KDE/plasma/5.24.4/kwrited-5.24.4.tar.xz) = 62d700b673102f2740ed34e305902260c7035f5c8cc6ef19494a98f3088c0649 -SIZE (KDE/plasma/5.24.4/kwrited-5.24.4.tar.xz) = 20920 +TIMESTAMP = 1651588820 +SHA256 (KDE/plasma/5.24.5/kwrited-5.24.5.tar.xz) = 6204a31fe1e160c8d664e68b30a1d91d31ead2bbfd7cd5841eeb39cb91dcd23d +SIZE (KDE/plasma/5.24.5/kwrited-5.24.5.tar.xz) = 20904 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index eb06d2ff538b..fc41fd120a45 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573121 -SHA256 (KDE/plasma/5.24.4/plasma-sdk-5.24.4.tar.xz) = ecf35743a28c350aada480248bbc138b726315e53f36bb39afe5fba0d27d6ffe -SIZE (KDE/plasma/5.24.4/plasma-sdk-5.24.4.tar.xz) = 261172 +TIMESTAMP = 1651588821 +SHA256 (KDE/plasma/5.24.5/plasma-sdk-5.24.5.tar.xz) = 1cd4db58018bc827572e5d2f08d6a9a037dd7a0cd0dd72c858e7c42d27d36534 +SIZE (KDE/plasma/5.24.5/plasma-sdk-5.24.5.tar.xz) = 261552 diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index a9e603156430..13313734e39a 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573122 -SHA256 (KDE/plasma/5.24.4/kscreenlocker-5.24.4.tar.xz) = fb226273064422f9f73b6b091e26396349e0cfd53a88398b79fa2acd1540ecf7 -SIZE (KDE/plasma/5.24.4/kscreenlocker-5.24.4.tar.xz) = 119424 +TIMESTAMP = 1651588822 +SHA256 (KDE/plasma/5.24.5/kscreenlocker-5.24.5.tar.xz) = 3270a1845c9fc694a50db38de4c27586d2f488152e1bcf88be0088d6799bf98e +SIZE (KDE/plasma/5.24.5/kscreenlocker-5.24.5.tar.xz) = 119436 diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index 56569e4d26bf..fee56e5abd43 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573124 -SHA256 (KDE/plasma/5.24.4/ksshaskpass-5.24.4.tar.xz) = 34c5d4f196d09c4ebe8990d3761bc70059436e272ad46a761e71b5910e0f44dd -SIZE (KDE/plasma/5.24.4/ksshaskpass-5.24.4.tar.xz) = 24720 +TIMESTAMP = 1651588823 +SHA256 (KDE/plasma/5.24.5/ksshaskpass-5.24.5.tar.xz) = 3fe20b23ae5f777d7dd15069212c15826121ce70e5260283d61ad34bad8383cb +SIZE (KDE/plasma/5.24.5/ksshaskpass-5.24.5.tar.xz) = 24708 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index 2dcaeb289687..35d5333f6f59 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573124 -SHA256 (KDE/plasma/5.24.4/kwallet-pam-5.24.4.tar.xz) = 99d4e1acc24e89376f6eb5fad78f6055b4c3a9fff73459845af32841743bdf68 -SIZE (KDE/plasma/5.24.4/kwallet-pam-5.24.4.tar.xz) = 20480 +TIMESTAMP = 1651588823 +SHA256 (KDE/plasma/5.24.5/kwallet-pam-5.24.5.tar.xz) = 238ed9b80fe3fc72d10a728801c873a0c85db9b9823f3a62ef7d39d6e9a4acea +SIZE (KDE/plasma/5.24.5/kwallet-pam-5.24.5.tar.xz) = 20480 diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index 73e353e446c9..c3e4bda869b8 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573126 -SHA256 (KDE/plasma/5.24.4/discover-5.24.4.tar.xz) = 29291e0b2d2208991a0d4f4521304336016c1d1b605622a3807243168af6b06a -SIZE (KDE/plasma/5.24.4/discover-5.24.4.tar.xz) = 8260620 +TIMESTAMP = 1651588825 +SHA256 (KDE/plasma/5.24.5/discover-5.24.5.tar.xz) = 93571e5ee5af1e348b93eea1d657c20387b543225037200cab557aef62fa48a1 +SIZE (KDE/plasma/5.24.5/discover-5.24.5.tar.xz) = 8261960 diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index 3194480f63da..ab756802466e 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573127 -SHA256 (KDE/plasma/5.24.4/drkonqi-5.24.4.tar.xz) = a0a794c486d714daec18e8b056e86167cb13281f6588a8810eb55b6e91f4c7fa -SIZE (KDE/plasma/5.24.4/drkonqi-5.24.4.tar.xz) = 795152 +TIMESTAMP = 1651588826 +SHA256 (KDE/plasma/5.24.5/drkonqi-5.24.5.tar.xz) = fe151800c5372998d9eb17a7364f3e5f483c323e63ec653dd73994bb2fba41df +SIZE (KDE/plasma/5.24.5/drkonqi-5.24.5.tar.xz) = 795452 diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index fe72637081aa..0f7c187573d2 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573128 -SHA256 (KDE/plasma/5.24.4/kde-cli-tools-5.24.4.tar.xz) = ffe4c8d3f4e97c57801360ba32cb70c961ad5796d56d4f0bae10ab2ec68759f0 -SIZE (KDE/plasma/5.24.4/kde-cli-tools-5.24.4.tar.xz) = 632548 +TIMESTAMP = 1651588827 +SHA256 (KDE/plasma/5.24.5/kde-cli-tools-5.24.5.tar.xz) = e7f0dd3469b7b3152e72514f1f6ce544514067011ebd0137cb0957d37ad6d329 +SIZE (KDE/plasma/5.24.5/kde-cli-tools-5.24.5.tar.xz) = 632976 diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index a703403bda45..8f9e7e7a9cb7 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573129 -SHA256 (KDE/plasma/5.24.4/kinfocenter-5.24.4.tar.xz) = dc5b84964de4b68e45300477039c656d622a9546340e997eb8249de6a532b838 -SIZE (KDE/plasma/5.24.4/kinfocenter-5.24.4.tar.xz) = 719404 +TIMESTAMP = 1651588828 +SHA256 (KDE/plasma/5.24.5/kinfocenter-5.24.5.tar.xz) = c1d241c05ebc578633512bf304b7e5bf461c7e63e45285913e212786eac14b30 +SIZE (KDE/plasma/5.24.5/kinfocenter-5.24.5.tar.xz) = 719404 diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index 3d5424b0e3f9..0a0a2b51f80f 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573130 -SHA256 (KDE/plasma/5.24.4/kmenuedit-5.24.4.tar.xz) = 147a7e9a15393375c2b22b5dfb025a87f3356cf756cf3b17615ba989bb443466 -SIZE (KDE/plasma/5.24.4/kmenuedit-5.24.4.tar.xz) = 901428 +TIMESTAMP = 1651588829 +SHA256 (KDE/plasma/5.24.5/kmenuedit-5.24.5.tar.xz) = 78a776a8cd6db98334335b68011ac887f9b27bb52cb4d0b504d14aafe032340a +SIZE (KDE/plasma/5.24.5/kmenuedit-5.24.5.tar.xz) = 901504 diff --git a/sysutils/plasma5-ksystemstats/distinfo b/sysutils/plasma5-ksystemstats/distinfo index c3f22ca316d3..3ab586f7f7ce 100644 --- a/sysutils/plasma5-ksystemstats/distinfo +++ b/sysutils/plasma5-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573133 -SHA256 (KDE/plasma/5.24.4/ksystemstats-5.24.4.tar.xz) = 8dc735e9133ab01e537d71121b0e76e078f4fffce2d86b4c5d62c85878ee47dd -SIZE (KDE/plasma/5.24.4/ksystemstats-5.24.4.tar.xz) = 94616 +TIMESTAMP = 1651588831 +SHA256 (KDE/plasma/5.24.5/ksystemstats-5.24.5.tar.xz) = 0bacd8f8a494addb4afa37d59236429f8898ab5b80882abde44f41182aa759f7 +SIZE (KDE/plasma/5.24.5/ksystemstats-5.24.5.tar.xz) = 94604 diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index 3409a5914990..f46ddd6ef35b 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573134 -SHA256 (KDE/plasma/5.24.4/libksysguard-5.24.4.tar.xz) = 76da2a7fb7f760c55111db756d91dd3041721baa8a1f8863ad9e0bc0a6a02402 -SIZE (KDE/plasma/5.24.4/libksysguard-5.24.4.tar.xz) = 767300 +TIMESTAMP = 1651588832 +SHA256 (KDE/plasma/5.24.5/libksysguard-5.24.5.tar.xz) = b06cb33a6e17c04c47ed4ded72a122acd6a2af60776c18719cdd74be27eb41ec +SIZE (KDE/plasma/5.24.5/libksysguard-5.24.5.tar.xz) = 768040 diff --git a/sysutils/plasma5-plasma-disks/distinfo b/sysutils/plasma5-plasma-disks/distinfo index eba23e2f299f..051740e6e455 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573135 -SHA256 (KDE/plasma/5.24.4/plasma-disks-5.24.4.tar.xz) = cf8a33e81b8d3b6b2d94374eb673adec19639eef8c2df803e1721630c67525d6 -SIZE (KDE/plasma/5.24.4/plasma-disks-5.24.4.tar.xz) = 88244 +TIMESTAMP = 1651588833 +SHA256 (KDE/plasma/5.24.5/plasma-disks-5.24.5.tar.xz) = 139495ade44ac725856bb4567dfd503fa9eb92c0f7dcca268aa1286e59a974f4 +SIZE (KDE/plasma/5.24.5/plasma-disks-5.24.5.tar.xz) = 88304 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index e89ec3347c87..cea31304e44a 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573136 -SHA256 (KDE/plasma/5.24.4/plasma-systemmonitor-5.24.4.tar.xz) = 1ff2853be75349892642a0144cc64a15c5f1bffacb0637e8b5c269055ead9a49 -SIZE (KDE/plasma/5.24.4/plasma-systemmonitor-5.24.4.tar.xz) = 151840 +TIMESTAMP = 1651588834 +SHA256 (KDE/plasma/5.24.5/plasma-systemmonitor-5.24.5.tar.xz) = 156bd761c4e2e334475ed0e7d0de6bc6f5009197f168d53c846c5c5b67e1a0ef +SIZE (KDE/plasma/5.24.5/plasma-systemmonitor-5.24.5.tar.xz) = 151824 diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index 31c40e903c7c..4e8e21f84923 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573137 -SHA256 (KDE/plasma/5.24.4/polkit-kde-agent-1-5.24.4.tar.xz) = 955246c593d0332bfbe386e81aaf7714e9ac8b8e7743c8c2e4f334b28dd685ad -SIZE (KDE/plasma/5.24.4/polkit-kde-agent-1-5.24.4.tar.xz) = 48424 +TIMESTAMP = 1651588835 +SHA256 (KDE/plasma/5.24.5/polkit-kde-agent-1-5.24.5.tar.xz) = 89a61cc4f2dee58dd420317b0732a67f954cd22f03d47c4bb33d9c6a5361e870 +SIZE (KDE/plasma/5.24.5/polkit-kde-agent-1-5.24.5.tar.xz) = 48444 diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index d56d5700fe16..7949122b750c 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573138 -SHA256 (KDE/plasma/5.24.4/powerdevil-5.24.4.tar.xz) = ef70c00e36d4ddbaedeb0efeba68523289e6e112b12951460c8d36075de9546a -SIZE (KDE/plasma/5.24.4/powerdevil-5.24.4.tar.xz) = 632736 +TIMESTAMP = 1651588836 +SHA256 (KDE/plasma/5.24.5/powerdevil-5.24.5.tar.xz) = 964ca1b876005595c361add1eab5fa80c8d63da12c1201bdcd234914c6cc23f3 +SIZE (KDE/plasma/5.24.5/powerdevil-5.24.5.tar.xz) = 632800 diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index 4f572b8d369e..df4c0a329dbb 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573139 -SHA256 (KDE/plasma/5.24.4/systemsettings-5.24.4.tar.xz) = 69921f98956b3559f8c37821b67d32ac8d6aef254888c15df8f86f99903e1533 -SIZE (KDE/plasma/5.24.4/systemsettings-5.24.4.tar.xz) = 205488 +TIMESTAMP = 1651588837 +SHA256 (KDE/plasma/5.24.5/systemsettings-5.24.5.tar.xz) = 5b72b53f0bd8760b35844732a60f99713d45d0f80cecaca80de965e84effe9e5 +SIZE (KDE/plasma/5.24.5/systemsettings-5.24.5.tar.xz) = 205532 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index 05744dc52862..3cb8268af2dd 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573141 -SHA256 (KDE/plasma/5.24.4/plasma-browser-integration-5.24.4.tar.xz) = 677af76b6f7072312d63bd8230af6e6920d7b69942ad69cdf0a29356ce695bc1 -SIZE (KDE/plasma/5.24.4/plasma-browser-integration-5.24.4.tar.xz) = 222496 +TIMESTAMP = 1651588839 +SHA256 (KDE/plasma/5.24.5/plasma-browser-integration-5.24.5.tar.xz) = 1b67baf45996b66c63e88a6df5572c83a3f36b777a9df2802c192abd8df5cbf7 +SIZE (KDE/plasma/5.24.5/plasma-browser-integration-5.24.5.tar.xz) = 222452 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index d6bf62501b20..cbda1690fde0 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573144 -SHA256 (KDE/plasma/5.24.4/breeze-gtk-5.24.4.tar.xz) = b2fe8150a8576fb39d26b809e6b9cb06e2c2d2b039558ad75307d62ed857a168 -SIZE (KDE/plasma/5.24.4/breeze-gtk-5.24.4.tar.xz) = 43796 +TIMESTAMP = 1651588842 +SHA256 (KDE/plasma/5.24.5/breeze-gtk-5.24.5.tar.xz) = 23716cc08d570ddcf0e739fef2f585f3469d801313ab2c0ba89f494f93f94530 +SIZE (KDE/plasma/5.24.5/breeze-gtk-5.24.5.tar.xz) = 43816 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index d9a84858aadc..ddf852000418 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573143 -SHA256 (KDE/plasma/5.24.4/breeze-5.24.4.tar.xz) = e369ee21e6aab1d5e3ae222ecd84bdb59f3d29ce3b61965b498bbfe84c949805 -SIZE (KDE/plasma/5.24.4/breeze-5.24.4.tar.xz) = 43037332 +TIMESTAMP = 1651588841 +SHA256 (KDE/plasma/5.24.5/breeze-5.24.5.tar.xz) = 8525a6b50da5523c3d21c1223e0f2b8ad4a2d147e48e5d128e1c6ee06baaf0a3 +SIZE (KDE/plasma/5.24.5/breeze-5.24.5.tar.xz) = 43037308 diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index 67d7a2ffed05..29e4b38a2184 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573145 -SHA256 (KDE/plasma/5.24.4/kde-gtk-config-5.24.4.tar.xz) = b17aaad5f96890426a8864ba51f026732007e47fd42c4ce4df3e469b455f570b -SIZE (KDE/plasma/5.24.4/kde-gtk-config-5.24.4.tar.xz) = 71580 +TIMESTAMP = 1651588843 +SHA256 (KDE/plasma/5.24.5/kde-gtk-config-5.24.5.tar.xz) = 98a19c230fd4559818276c13295250bd3508e2869f979f8c8472d339299ee869 +SIZE (KDE/plasma/5.24.5/kde-gtk-config-5.24.5.tar.xz) = 71564 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 681b90f93ec3..ce2577cc8fd7 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573146 -SHA256 (KDE/plasma/5.24.4/oxygen-5.24.4.tar.xz) = 804d033afab3f16319d92a8e5dacfb2a5797f8661a64029ee9e9b3c0b0f87ab4 -SIZE (KDE/plasma/5.24.4/oxygen-5.24.4.tar.xz) = 4615036 +TIMESTAMP = 1651588844 +SHA256 (KDE/plasma/5.24.5/oxygen-5.24.5.tar.xz) = 3b58ef1edd0d704113adacb50b163dbc34a71fcdd9762a97beb23d53393700be +SIZE (KDE/plasma/5.24.5/oxygen-5.24.5.tar.xz) = 4615504 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index 754c8a8167f5..8d3e6c71d50b 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573149 -SHA256 (KDE/plasma/5.24.4/plasma-workspace-wallpapers-5.24.4.tar.xz) = 243cf6bb613d30ccb92e183938dcd3e02c1c7a11624a447c35c56a5eac3def42 -SIZE (KDE/plasma/5.24.4/plasma-workspace-wallpapers-5.24.4.tar.xz) = 72711976 +TIMESTAMP = 1651588847 +SHA256 (KDE/plasma/5.24.5/plasma-workspace-wallpapers-5.24.5.tar.xz) = 119b6732ac14447e49362d9544ff4431ed703dc03e7854926fbf72fd49ab4b29 +SIZE (KDE/plasma/5.24.5/plasma-workspace-wallpapers-5.24.5.tar.xz) = 72711796 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index 97c3e3de7a33..d56f39f2e498 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573150 -SHA256 (KDE/plasma/5.24.4/kdeplasma-addons-5.24.4.tar.xz) = d721d32d16f34ef1066bdf2fcb781d5bc1aca7cf5cdf3a71c6fef2dfe668680d -SIZE (KDE/plasma/5.24.4/kdeplasma-addons-5.24.4.tar.xz) = 635392 +TIMESTAMP = 1651588848 +SHA256 (KDE/plasma/5.24.5/kdeplasma-addons-5.24.5.tar.xz) = 3db52bc3c594d92deea3cfcb3112b4fa6ce328b7481acaa79187dab274e5e80e +SIZE (KDE/plasma/5.24.5/kdeplasma-addons-5.24.5.tar.xz) = 635292 diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index a284ba9d5794..1050855a5af9 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573151 -SHA256 (KDE/plasma/5.24.4/kdecoration-5.24.4.tar.xz) = 2c999206c51a6a6c5ecda211773276438f0069a2e1c81d4903ae5712c6f28c15 -SIZE (KDE/plasma/5.24.4/kdecoration-5.24.4.tar.xz) = 48784 +TIMESTAMP = 1651588849 +SHA256 (KDE/plasma/5.24.5/kdecoration-5.24.5.tar.xz) = 273087d6345fd1f7bcefa570f56123cde4355832952dba6cb228fe04a6a152c2 +SIZE (KDE/plasma/5.24.5/kdecoration-5.24.5.tar.xz) = 48772 diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index 569509ee12f0..59270985ea05 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573152 -SHA256 (KDE/plasma/5.24.4/kwin-5.24.4.tar.xz) = e2142321a9b1189665354838a66baeb2189235b705efca2364777bc3a3698ce3 -SIZE (KDE/plasma/5.24.4/kwin-5.24.4.tar.xz) = 6448844 +TIMESTAMP = 1651588850 +SHA256 (KDE/plasma/5.24.5/kwin-5.24.5.tar.xz) = f35e15254cebeb8afc5eae1c694a603e04097fe3e7e0033a5f5fc255835eaf82 +SIZE (KDE/plasma/5.24.5/kwin-5.24.5.tar.xz) = 6453932 diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index 481f76a977d2..adc724c56094 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573154 -SHA256 (KDE/plasma/5.24.4/kactivitymanagerd-5.24.4.tar.xz) = 8128371fd75f7dd4ccb2203ad775e6f12db28bbb64047d0fd63eb745d8735529 -SIZE (KDE/plasma/5.24.4/kactivitymanagerd-5.24.4.tar.xz) = 105184 +TIMESTAMP = 1651588851 +SHA256 (KDE/plasma/5.24.5/kactivitymanagerd-5.24.5.tar.xz) = ea9276b022264b3b92a1307be83ca0030a5f12270d9ad5ff1e92f82c1928cd48 +SIZE (KDE/plasma/5.24.5/kactivitymanagerd-5.24.5.tar.xz) = 105216 diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index 75e6ab42468a..7b94032de444 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573155 -SHA256 (KDE/plasma/5.24.4/kgamma5-5.24.4.tar.xz) = 73ed9897b2281a8ddd7b47f063d548fa71b683662a63b5648ba590160bcf3f7c -SIZE (KDE/plasma/5.24.4/kgamma5-5.24.4.tar.xz) = 83524 +TIMESTAMP = 1651588852 +SHA256 (KDE/plasma/5.24.5/kgamma5-5.24.5.tar.xz) = 8086897a9faa9b1be0222a9505b05b6d2d89f2d730f1f461da63395c581bf1c4 +SIZE (KDE/plasma/5.24.5/kgamma5-5.24.5.tar.xz) = 83552 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index 3b80eaec9015..1052908038a8 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573156 -SHA256 (KDE/plasma/5.24.4/kscreen-5.24.4.tar.xz) = 3048edb7e1231b0d7a33b2e10a202e6fce34e34f47079fc87f8177d7aa871b6a -SIZE (KDE/plasma/5.24.4/kscreen-5.24.4.tar.xz) = 137288 +TIMESTAMP = 1651588853 +SHA256 (KDE/plasma/5.24.5/kscreen-5.24.5.tar.xz) = d9c351ad25783596aae466e305ad80de48ff3094a219ec6ffe08c7870ea3b5bc +SIZE (KDE/plasma/5.24.5/kscreen-5.24.5.tar.xz) = 137332 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index f722e10e36e1..07026596dbd5 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573157 -SHA256 (KDE/plasma/5.24.4/kwayland-integration-5.24.4.tar.xz) = d2e74baa0e2966b92330b8df7567b0b1cc85a71ea24c3f453da39aed035aceb2 -SIZE (KDE/plasma/5.24.4/kwayland-integration-5.24.4.tar.xz) = 24828 +TIMESTAMP = 1651588854 +SHA256 (KDE/plasma/5.24.5/kwayland-integration-5.24.5.tar.xz) = 806a9607bb70f95b08ccad55f28eaf0a85adc1439afa2d2717b7c9d6c33022ec +SIZE (KDE/plasma/5.24.5/kwayland-integration-5.24.5.tar.xz) = 24844 diff --git a/x11/plasma5-kwayland-server/distinfo b/x11/plasma5-kwayland-server/distinfo index 32f017ea95b8..c65d132029ab 100644 --- a/x11/plasma5-kwayland-server/distinfo +++ b/x11/plasma5-kwayland-server/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573158 -SHA256 (KDE/plasma/5.24.4/kwayland-server-5.24.4.tar.xz) = d1790bd7584dce9a36a432819b170ce72d34d5df79083b1b41dfe3e021b6e988 -SIZE (KDE/plasma/5.24.4/kwayland-server-5.24.4.tar.xz) = 221412 +TIMESTAMP = 1651588855 +SHA256 (KDE/plasma/5.24.5/kwayland-server-5.24.5.tar.xz) = 2ddabe29794489d11096ed831ad4d5c1626130019322d4305d58df84c835b279 +SIZE (KDE/plasma/5.24.5/kwayland-server-5.24.5.tar.xz) = 221388 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index 4add063286f1..827d587e3326 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573159 -SHA256 (KDE/plasma/5.24.4/layer-shell-qt-5.24.4.tar.xz) = a0979fdb2f61a6d2c68fe2d93573d5b46597021600d748a379d18cb9af711e0f -SIZE (KDE/plasma/5.24.4/layer-shell-qt-5.24.4.tar.xz) = 17876 +TIMESTAMP = 1651588856 +SHA256 (KDE/plasma/5.24.5/layer-shell-qt-5.24.5.tar.xz) = f591600cc0697cc94ce765bd17b1f9e3ab52d3d58c4de89e2820de3a7377b279 +SIZE (KDE/plasma/5.24.5/layer-shell-qt-5.24.5.tar.xz) = 17892 diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index 35aef1afc1b3..7dd2b835b390 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573160 -SHA256 (KDE/plasma/5.24.4/libkscreen-5.24.4.tar.xz) = 016dec6d912b2a733ebdd26bfe5e31029651bd5b4e476d95a541765a68dd67f7 -SIZE (KDE/plasma/5.24.4/libkscreen-5.24.4.tar.xz) = 99476 +TIMESTAMP = 1651588857 +SHA256 (KDE/plasma/5.24.5/libkscreen-5.24.5.tar.xz) = 7ff118af3320e53d2c1cb9f324d2ee13d087062ef354d219f20503da5ac06fc9 +SIZE (KDE/plasma/5.24.5/libkscreen-5.24.5.tar.xz) = 99464 diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index d692e2fc9319..4a4ddf40feee 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573162 -SHA256 (KDE/plasma/5.24.4/plasma-desktop-5.24.4.tar.xz) = b0e23046300e49acf93d9181d0c8dda2008a9a843a441af2528a91abc5c7d025 -SIZE (KDE/plasma/5.24.4/plasma-desktop-5.24.4.tar.xz) = 6239980 +TIMESTAMP = 1651588859 +SHA256 (KDE/plasma/5.24.5/plasma-desktop-5.24.5.tar.xz) = af58796c43a7eb909d4c6782e899e428c9b569a9ab92eb34ba7391c763002c46 +SIZE (KDE/plasma/5.24.5/plasma-desktop-5.24.5.tar.xz) = 6241532 diff --git a/x11/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index 76f11faeac52..5a4e943b603b 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573163 -SHA256 (KDE/plasma/5.24.4/plasma-integration-5.24.4.tar.xz) = 73d4993d2c7aeabbb068e8d28821566d04f2dcb882dd1d92feadc2062b3b4db4 -SIZE (KDE/plasma/5.24.4/plasma-integration-5.24.4.tar.xz) = 83744 +TIMESTAMP = 1651588860 +SHA256 (KDE/plasma/5.24.5/plasma-integration-5.24.5.tar.xz) = cd4490e1e23276bd4f7827ec1c6a3dee6703b8065bd5b4f3fad8112b53eadf7a +SIZE (KDE/plasma/5.24.5/plasma-integration-5.24.5.tar.xz) = 83772 diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 2e0b0a220546..0e71bda5bff3 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1648573165 -SHA256 (KDE/plasma/5.24.4/plasma-workspace-5.24.4.tar.xz) = 5b0e40b090d6bd1fe1f902a60633e4417ce711b34c32bfd2fce5b16bb9b2ec70 -SIZE (KDE/plasma/5.24.4/plasma-workspace-5.24.4.tar.xz) = 18488324 +TIMESTAMP = 1651588862 +SHA256 (KDE/plasma/5.24.5/plasma-workspace-5.24.5.tar.xz) = b9912691e0becfa0839dbf7750ea24729b72bad0216bef27584f9faf882064f6 +SIZE (KDE/plasma/5.24.5/plasma-workspace-5.24.5.tar.xz) = 18490588