diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index c53095a1f8c0..1380b57f8e4d 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1065 +1,1065 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} . if ${CATEGORIES:Mkde-devel} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} PKGNAMESUFFIX?= -devel . else KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS5_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS5_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS5_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS5_SHLIB_G_VER} . endif # Current KDE desktop. KDE_PLASMA5_VERSION?= 5.27.10 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop KDE_PLASMA6_VERSION?= 5.91.0 KDE_PLASMA6_BRANCH?= unstable # Current KDE frameworks. -KDE_FRAMEWORKS5_VERSION?= 5.112.0 +KDE_FRAMEWORKS5_VERSION?= 5.113.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 5.247.0 KDE_FRAMEWORKS6_BRANCH?= unstable # Current KDE applications. KDE_APPLICATIONS5_VERSION?= 23.08.4 KDE_APPLICATIONS5_SHLIB_VER?= 5.24.4 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.4 KDE_APPLICATIONS5_BRANCH?= stable # Next KDE applications. KDE_APPLICATIONS6_VERSION?= 24.01.85 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.85 KDE_APPLICATIONS6_BRANCH?= unstable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # 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 kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS5_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde \ kirigami-addons # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_PHONON_ALL= phonon phonon-backend _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} \ ${_USE_PHONON_ALL} # TODO: fix _USE_KDE6_ALL= ecm colorscheme \ svg \ plasma-wayland-protocols \ mediaplayer \ ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ plasma5support activities activities-stats kpipewire wayland globalacceld libplasma \ ${_USE_PHONON_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica5_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica5_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo5_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo5_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} kde-ecm_PORT= devel/kf${_KDE_VERSION}-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH5= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libKF${_KDE_VERSION}Plasma5Support.so kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_KDE_VERSION}} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF${_KDE_VERSION}KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/archivers/kf5-karchive/distinfo b/archivers/kf5-karchive/distinfo index 7ac1213e4464..44101ca43726 100644 --- a/archivers/kf5-karchive/distinfo +++ b/archivers/kf5-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883583 -SHA256 (KDE/frameworks/5.112.0/karchive-5.112.0.tar.xz) = 27d697a52a5016c16081c6a414b390d96350450d6eeb889d1f463358eeebfd67 -SIZE (KDE/frameworks/5.112.0/karchive-5.112.0.tar.xz) = 1023820 +TIMESTAMP = 1701678476 +SHA256 (KDE/frameworks/5.113.0/karchive-5.113.0.tar.xz) = 2da489460198e4c9aabe4734793c97290ecf08f789160fae639ef40a0bba430d +SIZE (KDE/frameworks/5.113.0/karchive-5.113.0.tar.xz) = 1023820 diff --git a/devel/kf5-extra-cmake-modules/distinfo b/devel/kf5-extra-cmake-modules/distinfo index 7bfcd0d76354..635f56d29052 100644 --- a/devel/kf5-extra-cmake-modules/distinfo +++ b/devel/kf5-extra-cmake-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883584 -SHA256 (KDE/frameworks/5.112.0/extra-cmake-modules-5.112.0.tar.xz) = ac1084772280d57e5f31e2e2816ecbec4884169413f24f063660eb6f15d4c2e2 -SIZE (KDE/frameworks/5.112.0/extra-cmake-modules-5.112.0.tar.xz) = 331976 +TIMESTAMP = 1701678476 +SHA256 (KDE/frameworks/5.113.0/extra-cmake-modules-5.113.0.tar.xz) = 265e5440eebeca07351a469e617a4bf35748927bd907b00ace9c018392bb3bc4 +SIZE (KDE/frameworks/5.113.0/extra-cmake-modules-5.113.0.tar.xz) = 332464 diff --git a/devel/kf5-extra-cmake-modules/pkg-plist b/devel/kf5-extra-cmake-modules/pkg-plist index 054ccc1eafb6..495ab2994222 100644 --- a/devel/kf5-extra-cmake-modules/pkg-plist +++ b/devel/kf5-extra-cmake-modules/pkg-plist @@ -1,128 +1,129 @@ %%MANPAGES%%man/man7/ecm-developer.7.gz %%MANPAGES%%man/man7/ecm-find-modules.7.gz %%MANPAGES%%man/man7/ecm-kde-modules.7.gz %%MANPAGES%%man/man7/ecm-modules.7.gz %%MANPAGES%%man/man7/ecm-toolchains.7.gz %%MANPAGES%%man/man7/ecm.7.gz share/ECM/cmake/ECMConfig.cmake share/ECM/cmake/ECMConfigVersion.cmake share/ECM/find-modules/ECMFindModuleHelpersStub.cmake share/ECM/find-modules/Find7z.cmake share/ECM/find-modules/FindCanberra.cmake share/ECM/find-modules/FindEGL.cmake share/ECM/find-modules/FindGLIB2.cmake share/ECM/find-modules/FindGperf.cmake share/ECM/find-modules/FindGradle.cmake share/ECM/find-modules/FindIcoTool.cmake share/ECM/find-modules/FindInotify.cmake share/ECM/find-modules/FindIsoCodes.cmake share/ECM/find-modules/FindKF5.cmake share/ECM/find-modules/FindLibExiv2.cmake share/ECM/find-modules/FindLibGit2.cmake share/ECM/find-modules/FindLibMount.cmake share/ECM/find-modules/FindLibcap.cmake share/ECM/find-modules/FindOpenEXR.cmake share/ECM/find-modules/FindPhoneNumber.cmake share/ECM/find-modules/FindPoppler.cmake share/ECM/find-modules/FindPulseAudio.cmake +share/ECM/find-modules/Find7Zip.cmake share/ECM/find-modules/FindPythonModuleGeneration.cmake share/ECM/find-modules/FindQHelpGenerator.cmake share/ECM/find-modules/FindQtWaylandScanner.cmake share/ECM/find-modules/FindReuseTool.cmake share/ECM/find-modules/FindSasl2.cmake share/ECM/find-modules/FindSeccomp.cmake share/ECM/find-modules/FindSharedMimeInfo.cmake share/ECM/find-modules/FindTaglib.cmake share/ECM/find-modules/FindUDev.cmake share/ECM/find-modules/FindWayland.cmake share/ECM/find-modules/FindWaylandProtocols.cmake share/ECM/find-modules/FindWaylandScanner.cmake share/ECM/find-modules/FindX11_XCB.cmake share/ECM/find-modules/FindXCB.cmake share/ECM/find-modules/Findepoxy.cmake share/ECM/find-modules/Findgzip.cmake share/ECM/find-modules/GeneratePythonBindingUmbrellaModule.cmake share/ECM/find-modules/Qt5Ruleset.py share/ECM/find-modules/local.properties.cmake share/ECM/find-modules/rules_engine.py share/ECM/find-modules/run-sip.py share/ECM/find-modules/settings.gradle.cmake share/ECM/find-modules/sip_generator.py share/ECM/kde-modules/KDECMakeSettings.cmake share/ECM/kde-modules/KDEClangFormat.cmake share/ECM/kde-modules/KDECompilerSettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerLegacySettings.cmake share/ECM/kde-modules/KDEFrameworkCompilerSettings.cmake share/ECM/kde-modules/KDEGitCommitHooks.cmake share/ECM/kde-modules/KDEInstallDirs.cmake share/ECM/kde-modules/KDEInstallDirs5.cmake share/ECM/kde-modules/KDEInstallDirs6.cmake share/ECM/kde-modules/KDEInstallDirsCommon.cmake share/ECM/kde-modules/KDEMetaInfoPlatformCheck.cmake share/ECM/kde-modules/KDEPackageAppTemplates.cmake share/ECM/kde-modules/KDESetupPrefixScript.cmake share/ECM/kde-modules/appstreamtest.cmake share/ECM/kde-modules/clang-format.in share/ECM/kde-modules/kde-git-commit-hooks/clang-format.sh share/ECM/kde-modules/kde-git-commit-hooks/pre-commit.in share/ECM/kde-modules/prefix.sh.fish.in share/ECM/kde-modules/prefix.sh.in share/ECM/modules/CheckAtomic.cmake share/ECM/modules/ECMAddAppIcon.cmake share/ECM/modules/ECMAddQch.cmake share/ECM/modules/ECMAddQtDesignerPlugin.cmake share/ECM/modules/ECMAddTests.cmake share/ECM/modules/ECMCheckOutboundLicense.cmake share/ECM/modules/ECMConfiguredInstall.cmake share/ECM/modules/ECMCoverageOption.cmake share/ECM/modules/ECMCreateQmFromPoFiles.cmake share/ECM/modules/ECMDeprecationSettings.cmake share/ECM/modules/ECMEnableSanitizers.cmake share/ECM/modules/ECMFindModuleHelpers.cmake share/ECM/modules/ECMFindQmlModule.cmake share/ECM/modules/ECMFindQmlModule.cmake.in share/ECM/modules/ECMGenerateDBusServiceFile.cmake share/ECM/modules/ECMGenerateExportHeader.cmake share/ECM/modules/ECMGenerateHeaders.cmake share/ECM/modules/ECMGeneratePkgConfigFile.cmake share/ECM/modules/ECMGeneratePriFile.cmake share/ECM/modules/ECMGenerateQmlTypes.cmake share/ECM/modules/ECMInstallIcons.cmake share/ECM/modules/ECMMarkAsTest.cmake share/ECM/modules/ECMMarkNonGuiExecutable.cmake share/ECM/modules/ECMOptionalAddSubdirectory.cmake share/ECM/modules/ECMPackageConfigHelpers.cmake share/ECM/modules/ECMPoQmTools.cmake share/ECM/modules/ECMQMLModules.cmake share/ECM/modules/ECMQchDoxygen.config.in share/ECM/modules/ECMQchDoxygenLayout.xml share/ECM/modules/ECMQmLoader.cpp.in share/ECM/modules/ECMQmlModule.cmake share/ECM/modules/ECMQmlModule.cpp.in share/ECM/modules/ECMQmlModule.cpp.in.license share/ECM/modules/ECMQmlModule.h.in share/ECM/modules/ECMQmlModule.h.in.license share/ECM/modules/ECMQtDeclareLoggingCategory.cmake share/ECM/modules/ECMQtDeclareLoggingCategory.cpp.in share/ECM/modules/ECMQtDeclareLoggingCategory.h.in share/ECM/modules/ECMQueryQmake.cmake share/ECM/modules/ECMQueryQt.cmake share/ECM/modules/ECMSetupQtPluginMacroNames.cmake share/ECM/modules/ECMSetupVersion.cmake share/ECM/modules/ECMSourceVersionControl.cmake share/ECM/modules/ECMUninstallTarget.cmake share/ECM/modules/ECMUseFindModules.cmake share/ECM/modules/ECMVersionHeader.h.in share/ECM/modules/ECMWinResolveSymlinks.cmake share/ECM/modules/QtVersionOption.cmake share/ECM/modules/check-outbound-license.py share/ECM/modules/ecm_uninstall.cmake.in share/ECM/test-modules/test_execute_and_compare.cmake share/ECM/toolchain/Android.cmake share/ECM/toolchain/ECMAndroidDeployQt.cmake share/ECM/toolchain/deployment-file-qt514.json.in share/ECM/toolchain/deployment-file.json.in share/ECM/toolchain/generate-fastlane-metadata.py share/ECM/toolchain/hasMainSymbol.cmake share/ECM/toolchain/specifydependencies.cmake %%HELP%%%%DOCSDIR%%/ExtraCMakeModules.qch diff --git a/devel/kf5-kapidox/distinfo b/devel/kf5-kapidox/distinfo index 92680c6a9707..fd467886eeec 100644 --- a/devel/kf5-kapidox/distinfo +++ b/devel/kf5-kapidox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883584 -SHA256 (KDE/frameworks/5.112.0/kapidox-5.112.0.tar.xz) = 11b78560f1f3b24f2aa86c052cdcce0426cd7aa54fca6d38fcb140d299054839 -SIZE (KDE/frameworks/5.112.0/kapidox-5.112.0.tar.xz) = 198868 +TIMESTAMP = 1701678477 +SHA256 (KDE/frameworks/5.113.0/kapidox-5.113.0.tar.xz) = 3de0246d54009c37c2ab8128ffe378d6f42b6fe48583bf16d55e5a1e003b8014 +SIZE (KDE/frameworks/5.113.0/kapidox-5.113.0.tar.xz) = 198876 diff --git a/devel/kf5-kauth/distinfo b/devel/kf5-kauth/distinfo index be8e5b6bff74..ae1552f906ce 100644 --- a/devel/kf5-kauth/distinfo +++ b/devel/kf5-kauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883586 -SHA256 (KDE/frameworks/5.112.0/kauth-5.112.0.tar.xz) = 67cbe41ea269b34ffe9cab1833d18fa203394d8432964b509fdeb7712d9405f7 -SIZE (KDE/frameworks/5.112.0/kauth-5.112.0.tar.xz) = 2307688 +TIMESTAMP = 1701678478 +SHA256 (KDE/frameworks/5.113.0/kauth-5.113.0.tar.xz) = 02c69b0ee7988d536e437f4d53edca55a528411f62eed921f4e48e4205f69759 +SIZE (KDE/frameworks/5.113.0/kauth-5.113.0.tar.xz) = 2307696 diff --git a/devel/kf5-kbookmarks/distinfo b/devel/kf5-kbookmarks/distinfo index 72b2d1365895..6cb36131882d 100644 --- a/devel/kf5-kbookmarks/distinfo +++ b/devel/kf5-kbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883587 -SHA256 (KDE/frameworks/5.112.0/kbookmarks-5.112.0.tar.xz) = d1b1c93da4a4fbe2d0d74efa550219b81a93b91f79e5db85e45584ad51e7a88a -SIZE (KDE/frameworks/5.112.0/kbookmarks-5.112.0.tar.xz) = 1124972 +TIMESTAMP = 1701678479 +SHA256 (KDE/frameworks/5.113.0/kbookmarks-5.113.0.tar.xz) = edc4156f70c5c4bd3eee3845d5dbbf05c88d7d0454a51241b1f0095f1582f6b9 +SIZE (KDE/frameworks/5.113.0/kbookmarks-5.113.0.tar.xz) = 1125024 diff --git a/devel/kf5-kcmutils/distinfo b/devel/kf5-kcmutils/distinfo index 256dbf7d808d..25c3cb19f8af 100644 --- a/devel/kf5-kcmutils/distinfo +++ b/devel/kf5-kcmutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883589 -SHA256 (KDE/frameworks/5.112.0/kcmutils-5.112.0.tar.xz) = 5e5cbe8dbbab0b006089808b7b1b6adc7ea376f8becebc16912b4b901c2c942c -SIZE (KDE/frameworks/5.112.0/kcmutils-5.112.0.tar.xz) = 2483456 +TIMESTAMP = 1701678480 +SHA256 (KDE/frameworks/5.113.0/kcmutils-5.113.0.tar.xz) = fa141bf373cab998af40995b48dc2763d82fe1b8ee4b70ee372651f705ff6ef5 +SIZE (KDE/frameworks/5.113.0/kcmutils-5.113.0.tar.xz) = 2483684 diff --git a/devel/kf5-kconfig/distinfo b/devel/kf5-kconfig/distinfo index bd9faf52a933..287a445961fb 100644 --- a/devel/kf5-kconfig/distinfo +++ b/devel/kf5-kconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883590 -SHA256 (KDE/frameworks/5.112.0/kconfig-5.112.0.tar.xz) = 86de26d25a4c135d60d8511b7fd9d00db26e03a27f1631d26f321e7146d91820 -SIZE (KDE/frameworks/5.112.0/kconfig-5.112.0.tar.xz) = 295672 +TIMESTAMP = 1701678481 +SHA256 (KDE/frameworks/5.113.0/kconfig-5.113.0.tar.xz) = 48099c92c327d9f3ae3bfee2f973a6d217d33ed0eff4567c94dc3d72fdb0903b +SIZE (KDE/frameworks/5.113.0/kconfig-5.113.0.tar.xz) = 295696 diff --git a/devel/kf5-kcoreaddons/distinfo b/devel/kf5-kcoreaddons/distinfo index 360bce49fcd1..33788773d929 100644 --- a/devel/kf5-kcoreaddons/distinfo +++ b/devel/kf5-kcoreaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883592 -SHA256 (KDE/frameworks/5.112.0/kcoreaddons-5.112.0.tar.xz) = b72a6fd8e13438bbc7986f35d8df632cff888272f638045a7d90a246a823560c -SIZE (KDE/frameworks/5.112.0/kcoreaddons-5.112.0.tar.xz) = 2609876 +TIMESTAMP = 1701678482 +SHA256 (KDE/frameworks/5.113.0/kcoreaddons-5.113.0.tar.xz) = 2ef38791babfabf5269ef6bce8dfd16b6f7126aad14a28ba4e240a2eddb70aae +SIZE (KDE/frameworks/5.113.0/kcoreaddons-5.113.0.tar.xz) = 2610552 diff --git a/devel/kf5-kcrash/distinfo b/devel/kf5-kcrash/distinfo index 1989b0a8bb15..a7fcd6c7ea74 100644 --- a/devel/kf5-kcrash/distinfo +++ b/devel/kf5-kcrash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883593 -SHA256 (KDE/frameworks/5.112.0/kcrash-5.112.0.tar.xz) = fd77ff5b8e0211477aff6ab22b90f491edd21ad1bdb479cf5f88aec82c8259e9 -SIZE (KDE/frameworks/5.112.0/kcrash-5.112.0.tar.xz) = 28296 +TIMESTAMP = 1701678482 +SHA256 (KDE/frameworks/5.113.0/kcrash-5.113.0.tar.xz) = bbd9f9e642983cba9881e102ed26ea3420f8341856df0334188d4d666a07e9d5 +SIZE (KDE/frameworks/5.113.0/kcrash-5.113.0.tar.xz) = 28308 diff --git a/devel/kf5-kdbusaddons/distinfo b/devel/kf5-kdbusaddons/distinfo index 2862b1aad12a..d42d33abacf3 100644 --- a/devel/kf5-kdbusaddons/distinfo +++ b/devel/kf5-kdbusaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883594 -SHA256 (KDE/frameworks/5.112.0/kdbusaddons-5.112.0.tar.xz) = 583e56dbc90e867313aa5faa05c3cb72fd0c0f1e2e299d2a68bf0f9735f80458 -SIZE (KDE/frameworks/5.112.0/kdbusaddons-5.112.0.tar.xz) = 48912 +TIMESTAMP = 1701678483 +SHA256 (KDE/frameworks/5.113.0/kdbusaddons-5.113.0.tar.xz) = d366393bc8d7191b6fa910aec4fb7ef2d33b16739b46d0ba7a1c44e40c202a80 +SIZE (KDE/frameworks/5.113.0/kdbusaddons-5.113.0.tar.xz) = 48932 diff --git a/devel/kf5-kdeclarative/distinfo b/devel/kf5-kdeclarative/distinfo index d9d4897329ea..1d2bb35b43b1 100644 --- a/devel/kf5-kdeclarative/distinfo +++ b/devel/kf5-kdeclarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883596 -SHA256 (KDE/frameworks/5.112.0/kdeclarative-5.112.0.tar.xz) = 536e0c332e331dfb1cbfaa7dcf799f6e3033c3faef113dcfa769ae5fcbc5f0f3 -SIZE (KDE/frameworks/5.112.0/kdeclarative-5.112.0.tar.xz) = 2492476 +TIMESTAMP = 1701678484 +SHA256 (KDE/frameworks/5.113.0/kdeclarative-5.113.0.tar.xz) = 3303b6b20f8349458f359c09db0ba65612140a5f850bcc08602a3759675649f2 +SIZE (KDE/frameworks/5.113.0/kdeclarative-5.113.0.tar.xz) = 2492336 diff --git a/devel/kf5-kdoctools/distinfo b/devel/kf5-kdoctools/distinfo index 6b6aa99cbb3a..c2ee44530648 100644 --- a/devel/kf5-kdoctools/distinfo +++ b/devel/kf5-kdoctools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883597 -SHA256 (KDE/frameworks/5.112.0/kdoctools-5.112.0.tar.xz) = 911e6c5ddfdd1bbc9dbcd8d79a72bfef7a83dc8b75a71ce9a7f186f1569636b2 -SIZE (KDE/frameworks/5.112.0/kdoctools-5.112.0.tar.xz) = 465452 +TIMESTAMP = 1701678485 +SHA256 (KDE/frameworks/5.113.0/kdoctools-5.113.0.tar.xz) = 4a7dd10c60796f433f48bde5b9ff5de0bd3430ba790d99d2cffa9e0bed27da31 +SIZE (KDE/frameworks/5.113.0/kdoctools-5.113.0.tar.xz) = 465424 diff --git a/devel/kf5-kfilemetadata/distinfo b/devel/kf5-kfilemetadata/distinfo index 52d237654de0..d0684da8461b 100644 --- a/devel/kf5-kfilemetadata/distinfo +++ b/devel/kf5-kfilemetadata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883598 -SHA256 (KDE/frameworks/5.112.0/kfilemetadata-5.112.0.tar.xz) = c4bfcfaefcc5f52122ab479b052f542e1da33c1809fce433a8e8559906197ffb -SIZE (KDE/frameworks/5.112.0/kfilemetadata-5.112.0.tar.xz) = 472928 +TIMESTAMP = 1701678486 +SHA256 (KDE/frameworks/5.113.0/kfilemetadata-5.113.0.tar.xz) = 39ea4b6311ef850d0bef1c79fbd5b44c1947ee9c736ef85c4121076f8c2fe2aa +SIZE (KDE/frameworks/5.113.0/kfilemetadata-5.113.0.tar.xz) = 526884 diff --git a/devel/kf5-ki18n/distinfo b/devel/kf5-ki18n/distinfo index 58b668e60f68..9ca811c43cd4 100644 --- a/devel/kf5-ki18n/distinfo +++ b/devel/kf5-ki18n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883600 -SHA256 (KDE/frameworks/5.112.0/ki18n-5.112.0.tar.xz) = 33d542e760c2bd5dd2d3511624cac3311c60187d7c7b155a4b968a7c6b7a961b -SIZE (KDE/frameworks/5.112.0/ki18n-5.112.0.tar.xz) = 3128488 +TIMESTAMP = 1701678487 +SHA256 (KDE/frameworks/5.113.0/ki18n-5.113.0.tar.xz) = fc94ba4cd1a4f0d25958764efcfc052cbf29fcf302cd668be2b18f62c6c58042 +SIZE (KDE/frameworks/5.113.0/ki18n-5.113.0.tar.xz) = 3128876 diff --git a/devel/kf5-kidletime/distinfo b/devel/kf5-kidletime/distinfo index 3f9c94fb9af6..0cc16cff057c 100644 --- a/devel/kf5-kidletime/distinfo +++ b/devel/kf5-kidletime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883601 -SHA256 (KDE/frameworks/5.112.0/kidletime-5.112.0.tar.xz) = a60ccd76d0c472ab734628329ca3f9520f2f9eea15a549a9e1c7a0e4d412905d -SIZE (KDE/frameworks/5.112.0/kidletime-5.112.0.tar.xz) = 30940 +TIMESTAMP = 1701678488 +SHA256 (KDE/frameworks/5.113.0/kidletime-5.113.0.tar.xz) = 358f4f18d237dda1d8a446083ad4b615bca156dcc0dd17d4fa7177568785aeb1 +SIZE (KDE/frameworks/5.113.0/kidletime-5.113.0.tar.xz) = 30928 diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo index 8eb3ffa3ee0c..bb98ce2ea9b2 100644 --- a/devel/kf5-kio/distinfo +++ b/devel/kf5-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883603 -SHA256 (KDE/frameworks/5.112.0/kio-5.112.0.tar.xz) = 84b8531c077fe8854f9fa69f6d2c120b222bf8334c14c6734dc14a429103fb99 -SIZE (KDE/frameworks/5.112.0/kio-5.112.0.tar.xz) = 3798280 +TIMESTAMP = 1701678489 +SHA256 (KDE/frameworks/5.113.0/kio-5.113.0.tar.xz) = a8b110ef3cfefd53c0fadc58eca5b573319663f380fedfc35ef8d7dbf8d855ae +SIZE (KDE/frameworks/5.113.0/kio-5.113.0.tar.xz) = 3798768 diff --git a/devel/kf5-kio/pkg-plist b/devel/kf5-kio/pkg-plist index 23fa9da743d6..5288d25967ce 100644 --- a/devel/kf5-kio/pkg-plist +++ b/devel/kf5-kio/pkg-plist @@ -1,1046 +1,1048 @@ bin/kcookiejar5 bin/ktelnetservice5 bin/ktrash5 bin/protocoltojson etc/xdg/accept-languages.codes etc/xdg/kshorturifilterrc include/KF5/KIO/kio_version.h include/KF5/KIOCore/KACL include/KF5/KIOCore/KCoreDirLister include/KF5/KIOCore/KDirNotify include/KF5/KIOCore/KDiskFreeSpaceInfo include/KF5/KIOCore/KFileFilter include/KF5/KIOCore/KFileItem include/KF5/KIOCore/KFileItemListProperties include/KF5/KIOCore/KIO/AskUserActionInterface include/KF5/KIOCore/KIO/AuthInfo include/KF5/KIOCore/KIO/BatchRenameJob include/KF5/KIOCore/KIO/ChmodJob include/KF5/KIOCore/KIO/ConnectionServer include/KF5/KIOCore/KIO/CopyJob include/KF5/KIOCore/KIO/DavJob include/KF5/KIOCore/KIO/DeleteJob include/KF5/KIOCore/KIO/DesktopExecParser include/KF5/KIOCore/KIO/DirectorySizeJob include/KF5/KIOCore/KIO/EmptyTrashJob include/KF5/KIOCore/KIO/FileCopyJob include/KF5/KIOCore/KIO/FileJob include/KF5/KIOCore/KIO/FileSystemFreeSpaceJob include/KF5/KIOCore/KIO/ForwardingSlaveBase include/KF5/KIOCore/KIO/ForwardingWorkerBase include/KF5/KIOCore/KIO/Global include/KF5/KIOCore/KIO/HostInfo include/KF5/KIOCore/KIO/IdleSlave include/KF5/KIOCore/KIO/Job include/KF5/KIOCore/KIO/JobTracker include/KF5/KIOCore/KIO/JobUiDelegateExtension include/KF5/KIOCore/KIO/JobUiDelegateFactory include/KF5/KIOCore/KIO/ListJob include/KF5/KIOCore/KIO/MetaData include/KF5/KIOCore/KIO/MimeTypeFinderJob include/KF5/KIOCore/KIO/MimetypeJob include/KF5/KIOCore/KIO/MkdirJob include/KF5/KIOCore/KIO/MkpathJob include/KF5/KIOCore/KIO/MultiGetJob include/KF5/KIOCore/KIO/NameFinderJob include/KF5/KIOCore/KIO/RestoreJob include/KF5/KIOCore/KIO/Scheduler include/KF5/KIOCore/KIO/SimpleJob include/KF5/KIOCore/KIO/Slave include/KF5/KIOCore/KIO/SlaveBase include/KF5/KIOCore/KIO/SlaveConfig include/KF5/KIOCore/KIO/SlaveInterface include/KF5/KIOCore/KIO/SpecialJob include/KF5/KIOCore/KIO/StatJob include/KF5/KIOCore/KIO/StoredTransferJob include/KF5/KIOCore/KIO/TCPSlaveBase include/KF5/KIOCore/KIO/TCPWorkerBase include/KF5/KIOCore/KIO/TransferJob include/KF5/KIOCore/KIO/UDSEntry include/KF5/KIOCore/KIO/WorkerBase include/KF5/KIOCore/KIO/WorkerFactory include/KF5/KIOCore/KMountPoint include/KF5/KIOCore/KNFSShare include/KF5/KIOCore/KPasswdServerClient include/KF5/KIOCore/KProtocolInfo include/KF5/KIOCore/KProtocolManager include/KF5/KIOCore/KRecentDocument include/KF5/KIOCore/KRemoteEncoding include/KF5/KIOCore/KSSLSettings include/KF5/KIOCore/KSambaShare include/KF5/KIOCore/KSambaShareData include/KF5/KIOCore/KSslCertificateManager include/KF5/KIOCore/KSslErrorUiData include/KF5/KIOCore/KTcpSocket include/KF5/KIOCore/KUrlAuthorized include/KF5/KIOCore/kacl.h include/KF5/KIOCore/kcoredirlister.h include/KF5/KIOCore/kdirnotify.h include/KF5/KIOCore/kdiskfreespaceinfo.h include/KF5/KIOCore/kfilefilter.h include/KF5/KIOCore/kfileitem.h include/KF5/KIOCore/kfileitemlistproperties.h include/KF5/KIOCore/kio/askuseractioninterface.h include/KF5/KIOCore/kio/authinfo.h include/KF5/KIOCore/kio/batchrenamejob.h include/KF5/KIOCore/kio/chmodjob.h include/KF5/KIOCore/kio/connectionserver.h include/KF5/KIOCore/kio/copyjob.h include/KF5/KIOCore/kio/davjob.h include/KF5/KIOCore/kio/deletejob.h include/KF5/KIOCore/kio/desktopexecparser.h include/KF5/KIOCore/kio/directorysizejob.h include/KF5/KIOCore/kio/emptytrashjob.h include/KF5/KIOCore/kio/filecopyjob.h include/KF5/KIOCore/kio/filejob.h include/KF5/KIOCore/kio/filesystemfreespacejob.h include/KF5/KIOCore/kio/forwardingslavebase.h include/KF5/KIOCore/kio/forwardingworkerbase.h include/KF5/KIOCore/kio/global.h include/KF5/KIOCore/kio/hostinfo.h include/KF5/KIOCore/kio/http_slave_defaults.h include/KF5/KIOCore/kio/http_worker_defaults.h include/KF5/KIOCore/kio/idleslave.h include/KF5/KIOCore/kio/ioslave_defaults.h include/KF5/KIOCore/kio/ioworker_defaults.h include/KF5/KIOCore/kio/job.h include/KF5/KIOCore/kio/job_base.h include/KF5/KIOCore/kio/jobclasses.h include/KF5/KIOCore/kio/jobtracker.h include/KF5/KIOCore/kio/jobuidelegateextension.h include/KF5/KIOCore/kio/jobuidelegatefactory.h include/KF5/KIOCore/kio/listjob.h include/KF5/KIOCore/kio/metadata.h include/KF5/KIOCore/kio/mimetypefinderjob.h include/KF5/KIOCore/kio/mimetypejob.h include/KF5/KIOCore/kio/mkdirjob.h include/KF5/KIOCore/kio/mkpathjob.h include/KF5/KIOCore/kio/multigetjob.h include/KF5/KIOCore/kio/namefinderjob.h include/KF5/KIOCore/kio/restorejob.h include/KF5/KIOCore/kio/scheduler.h include/KF5/KIOCore/kio/simplejob.h include/KF5/KIOCore/kio/slave.h include/KF5/KIOCore/kio/slavebase.h include/KF5/KIOCore/kio/slaveconfig.h include/KF5/KIOCore/kio/slaveinterface.h include/KF5/KIOCore/kio/specialjob.h include/KF5/KIOCore/kio/statjob.h include/KF5/KIOCore/kio/storedtransferjob.h include/KF5/KIOCore/kio/tcpslavebase.h include/KF5/KIOCore/kio/tcpworkerbase.h include/KF5/KIOCore/kio/transferjob.h include/KF5/KIOCore/kio/udsentry.h include/KF5/KIOCore/kio/workerbase.h include/KF5/KIOCore/kio/workerfactory.h include/KF5/KIOCore/kiocore_export.h include/KF5/KIOCore/kmountpoint.h include/KF5/KIOCore/knfsshare.h include/KF5/KIOCore/kpasswdserverclient.h include/KF5/KIOCore/kprotocolinfo.h include/KF5/KIOCore/kprotocolmanager.h include/KF5/KIOCore/krecentdocument.h include/KF5/KIOCore/kremoteencoding.h include/KF5/KIOCore/ksambashare.h include/KF5/KIOCore/ksambasharedata.h include/KF5/KIOCore/ksslcertificatemanager.h include/KF5/KIOCore/ksslcertificatemanager_p.h include/KF5/KIOCore/ksslerroruidata.h include/KF5/KIOCore/ksslsettings.h include/KF5/KIOCore/ktcpsocket.h include/KF5/KIOCore/kurlauthorized.h include/KF5/KIOFileWidgets/KAbstractViewAdapter include/KF5/KIOFileWidgets/KDirOperator include/KF5/KIOFileWidgets/KDirSortFilterProxyModel include/KF5/KIOFileWidgets/KEncodingFileDialog include/KF5/KIOFileWidgets/KFileCopyToMenu include/KF5/KIOFileWidgets/KFileCustomDialog include/KF5/KIOFileWidgets/KFileFilterCombo include/KF5/KIOFileWidgets/KFilePlaceEditDialog include/KF5/KIOFileWidgets/KFilePlacesModel include/KF5/KIOFileWidgets/KFilePlacesView include/KF5/KIOFileWidgets/KFilePreviewGenerator include/KF5/KIOFileWidgets/KFileWidget include/KF5/KIOFileWidgets/KImageFilePreview include/KF5/KIOFileWidgets/KNameAndUrlInputDialog include/KF5/KIOFileWidgets/KNewFileMenu include/KF5/KIOFileWidgets/KPreviewWidgetBase include/KF5/KIOFileWidgets/KRecentDirs include/KF5/KIOFileWidgets/KStatusBarOfflineIndicator include/KF5/KIOFileWidgets/KUrlNavigator include/KF5/KIOFileWidgets/kabstractviewadapter.h include/KF5/KIOFileWidgets/kdiroperator.h include/KF5/KIOFileWidgets/kdirsortfilterproxymodel.h include/KF5/KIOFileWidgets/kencodingfiledialog.h include/KF5/KIOFileWidgets/kfilecopytomenu.h include/KF5/KIOFileWidgets/kfilecustomdialog.h include/KF5/KIOFileWidgets/kfilefiltercombo.h include/KF5/KIOFileWidgets/kfileplaceeditdialog.h include/KF5/KIOFileWidgets/kfileplacesmodel.h include/KF5/KIOFileWidgets/kfileplacesview.h include/KF5/KIOFileWidgets/kfilepreviewgenerator.h include/KF5/KIOFileWidgets/kfilewidget.h include/KF5/KIOFileWidgets/kimagefilepreview.h include/KF5/KIOFileWidgets/kiofilewidgets_export.h include/KF5/KIOFileWidgets/knameandurlinputdialog.h include/KF5/KIOFileWidgets/knewfilemenu.h include/KF5/KIOFileWidgets/kpreviewwidgetbase.h include/KF5/KIOFileWidgets/krecentdirs.h include/KF5/KIOFileWidgets/kstatusbarofflineindicator.h include/KF5/KIOFileWidgets/kurlnavigator.h include/KF5/KIOGui/KCoreUrlNavigator include/KF5/KIOGui/KEMailClientLauncherJob include/KF5/KIOGui/KIO/ApplicationLauncherJob include/KF5/KIOGui/KIO/CommandLauncherJob include/KF5/KIOGui/KIO/FavIconRequestJob include/KF5/KIOGui/KIO/KCoreUrlNavigator include/KF5/KIOGui/KIO/OpenUrlJob include/KF5/KIOGui/KIO/OpenWithHandlerInterface include/KF5/KIOGui/KIO/ThumbnailCreator include/KF5/KIOGui/KTerminalLauncherJob include/KF5/KIOGui/kcoreurlnavigator.h include/KF5/KIOGui/kemailclientlauncherjob.h include/KF5/KIOGui/kio/applicationlauncherjob.h include/KF5/KIOGui/kio/commandlauncherjob.h include/KF5/KIOGui/kio/faviconrequestjob.h include/KF5/KIOGui/kio/kcoreurlnavigator.h include/KF5/KIOGui/kio/openurljob.h include/KF5/KIOGui/kio/openwithhandlerinterface.h include/KF5/KIOGui/kio/thumbnailcreator.h include/KF5/KIOGui/kiogui_export.h include/KF5/KIOGui/kterminallauncherjob.h include/KF5/KIOWidgets/KAbstractFileItemActionPlugin include/KF5/KIOWidgets/KAutoMount include/KF5/KIOWidgets/KBuildSycocaProgressDialog include/KF5/KIOWidgets/KDesktopFileActions include/KF5/KIOWidgets/KDirLister include/KF5/KIOWidgets/KDirModel include/KF5/KIOWidgets/KFile include/KF5/KIOWidgets/KFileItemActions include/KF5/KIOWidgets/KFileItemDelegate include/KF5/KIOWidgets/KIO/AccessManager include/KF5/KIOWidgets/KIO/DeleteOrTrashJob include/KF5/KIOWidgets/KIO/DndPopupMenuPlugin include/KF5/KIOWidgets/KIO/DropJob include/KF5/KIOWidgets/KIO/FileUndoManager include/KF5/KIOWidgets/KIO/JobUiDelegate include/KF5/KIOWidgets/KIO/KUriFilterSearchProviderActions include/KF5/KIOWidgets/KIO/OpenFileManagerWindowJob include/KF5/KIOWidgets/KIO/Paste include/KF5/KIOWidgets/KIO/PasteJob include/KF5/KIOWidgets/KIO/PixmapLoader include/KF5/KIOWidgets/KIO/PreviewJob include/KF5/KIOWidgets/KIO/RenameDialog include/KF5/KIOWidgets/KIO/RenameFileDialog include/KF5/KIOWidgets/KIO/SkipDialog include/KF5/KIOWidgets/KIO/SslUi include/KF5/KIOWidgets/KIO/ThumbCreator include/KF5/KIOWidgets/KIO/ThumbDevicePixelRatioDependentCreator include/KF5/KIOWidgets/KIO/ThumbSequenceCreator include/KF5/KIOWidgets/KIO/WidgetsAskUserActionHandler include/KF5/KIOWidgets/KOpenWithDialog include/KF5/KIOWidgets/KOverlayIconPlugin include/KF5/KIOWidgets/KPropertiesDialog +include/KF5/KIOWidgets/KPropertiesDialogPlugin include/KF5/KIOWidgets/KRun include/KF5/KIOWidgets/KShellCompletion include/KF5/KIOWidgets/KSslCertificateBox include/KF5/KIOWidgets/KSslInfoDialog include/KF5/KIOWidgets/KUriFilter include/KF5/KIOWidgets/KUrlComboBox include/KF5/KIOWidgets/KUrlCompletion include/KF5/KIOWidgets/KUrlPixmapProvider include/KF5/KIOWidgets/KUrlRequester include/KF5/KIOWidgets/KUrlRequesterDialog include/KF5/KIOWidgets/kabstractfileitemactionplugin.h include/KF5/KIOWidgets/kautomount.h include/KF5/KIOWidgets/kbuildsycocaprogressdialog.h include/KF5/KIOWidgets/kdesktopfileactions.h include/KF5/KIOWidgets/kdirlister.h include/KF5/KIOWidgets/kdirmodel.h include/KF5/KIOWidgets/kfile.h include/KF5/KIOWidgets/kfileitemactions.h include/KF5/KIOWidgets/kfileitemdelegate.h include/KF5/KIOWidgets/kio/accessmanager.h include/KF5/KIOWidgets/kio/deleteortrashjob.h include/KF5/KIOWidgets/kio/dndpopupmenuplugin.h include/KF5/KIOWidgets/kio/dropjob.h include/KF5/KIOWidgets/kio/fileundomanager.h include/KF5/KIOWidgets/kio/jobuidelegate.h include/KF5/KIOWidgets/kio/kurifiltersearchprovideractions.h include/KF5/KIOWidgets/kio/openfilemanagerwindowjob.h include/KF5/KIOWidgets/kio/paste.h include/KF5/KIOWidgets/kio/pastejob.h include/KF5/KIOWidgets/kio/pixmaploader.h include/KF5/KIOWidgets/kio/previewjob.h include/KF5/KIOWidgets/kio/renamedialog.h include/KF5/KIOWidgets/kio/renamefiledialog.h include/KF5/KIOWidgets/kio/skipdialog.h include/KF5/KIOWidgets/kio/sslui.h include/KF5/KIOWidgets/kio/thumbcreator.h include/KF5/KIOWidgets/kio/thumbdevicepixelratiodependentcreator.h include/KF5/KIOWidgets/kio/thumbsequencecreator.h include/KF5/KIOWidgets/kio/widgetsaskuseractionhandler.h include/KF5/KIOWidgets/kiowidgets_export.h include/KF5/KIOWidgets/kopenwithdialog.h include/KF5/KIOWidgets/koverlayiconplugin.h include/KF5/KIOWidgets/kpropertiesdialog.h +include/KF5/KIOWidgets/kpropertiesdialogplugin.h include/KF5/KIOWidgets/krun.h include/KF5/KIOWidgets/kshellcompletion.h include/KF5/KIOWidgets/ksslcertificatebox.h include/KF5/KIOWidgets/ksslinfodialog.h include/KF5/KIOWidgets/kurifilter.h include/KF5/KIOWidgets/kurlcombobox.h include/KF5/KIOWidgets/kurlcompletion.h include/KF5/KIOWidgets/kurlpixmapprovider.h include/KF5/KIOWidgets/kurlrequester.h include/KF5/KIOWidgets/kurlrequesterdialog.h include/KF5/kio/kntlm.h include/KF5/kio/kntlm_export.h lib/cmake/KF5KIO/KF5KIOConfig.cmake lib/cmake/KF5KIO/KF5KIOConfigVersion.cmake lib/cmake/KF5KIO/KF5KIOTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KIO/KF5KIOTargets.cmake lib/libKF5KIOCore.so lib/libKF5KIOCore.so.5 lib/libKF5KIOCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOFileWidgets.so lib/libKF5KIOFileWidgets.so.5 lib/libKF5KIOFileWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOGui.so lib/libKF5KIOGui.so.5 lib/libKF5KIOGui.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIONTLM.so lib/libKF5KIONTLM.so.5 lib/libKF5KIONTLM.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOWidgets.so lib/libKF5KIOWidgets.so.5 lib/libKF5KIOWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kio_http_cache_cleaner lib/libexec/kf5/kiod5 lib/libexec/kf5/kioexec lib/libexec/kf5/kioslave5 lib/libexec/kf5/kpac_dhcp_helper %%QT_MKSPECDIR%%/modules/qt_KIOCore.pri %%QT_MKSPECDIR%%/modules/qt_KIOFileWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KIOGui.pri %%QT_MKSPECDIR%%/modules/qt_KIOWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KNTLM.pri %%QT_PLUGINDIR%%/designer/kio5widgets.so %%QT_PLUGINDIR%%/kcm_proxy.so %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kcm_webshortcuts.so %%QT_PLUGINDIR%%/kf5/kded/kcookiejar.so %%QT_PLUGINDIR%%/kf5/kded/proxyscout.so %%QT_PLUGINDIR%%/kf5/kded/remotenotifier.so %%QT_PLUGINDIR%%/kf5/kio/kio_file.so %%QT_PLUGINDIR%%/kf5/kio/kio_ftp.so %%QT_PLUGINDIR%%/kf5/kio/kio_ghelp.so %%QT_PLUGINDIR%%/kf5/kio/kio_help.so %%QT_PLUGINDIR%%/kf5/kio/kio_http.so %%QT_PLUGINDIR%%/kf5/kio/kio_remote.so %%QT_PLUGINDIR%%/kf5/kio/kio_trash.so %%QT_PLUGINDIR%%/kf5/kiod/kioexecd.so %%QT_PLUGINDIR%%/kf5/kiod/kpasswdserver.so %%QT_PLUGINDIR%%/kf5/kiod/kssld.so %%QT_PLUGINDIR%%/kf5/urifilters/fixhosturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kshorturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kuriikwsfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kurisearchfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/localdomainurifilter.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smb.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_cookies.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so man/ca/man8/kcookiejar5.8.gz man/ca@valencia/man8/kcookiejar5.8.gz man/de/man8/kcookiejar5.8.gz man/es/man8/kcookiejar5.8.gz man/fr/man8/kcookiejar5.8.gz man/it/man8/kcookiejar5.8.gz man/man8/kcookiejar5.8.gz man/nl/man8/kcookiejar5.8.gz man/pt/man8/kcookiejar5.8.gz man/pt_BR/man8/kcookiejar5.8.gz man/sv/man8/kcookiejar5.8.gz man/uk/man8/kcookiejar5.8.gz share/applications/kcm_trash.desktop share/applications/ktelnetservice5.desktop share/dbus-1/interfaces/kf5_org.kde.KCookieServer.xml share/dbus-1/interfaces/kf5_org.kde.KDirNotify.xml share/dbus-1/interfaces/kf5_org.kde.KPasswdServer.xml share/dbus-1/interfaces/kf5_org.kde.KSlaveLauncher.xml share/dbus-1/interfaces/kf5_org.kde.kio.FileUndoManager.xml share/dbus-1/services/org.kde.kcookiejar5.service share/dbus-1/services/org.kde.kiod5.service share/dbus-1/services/org.kde.kioexecd.service share/dbus-1/services/org.kde.kpasswdserver.service share/dbus-1/services/org.kde.kssld5.service share/doc/HTML/ca/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca/kcontrol5/cookies/index.docbook share/doc/HTML/ca/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca/kcontrol5/netpref/index.docbook share/doc/HTML/ca/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca/kcontrol5/proxy/index.docbook share/doc/HTML/ca/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca/kcontrol5/smb/index.docbook share/doc/HTML/ca/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca/kcontrol5/trash/index.docbook share/doc/HTML/ca/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca/kioslave5/data/index.cache.bz2 share/doc/HTML/ca/kioslave5/data/index.docbook share/doc/HTML/ca/kioslave5/file/index.cache.bz2 share/doc/HTML/ca/kioslave5/file/index.docbook share/doc/HTML/ca/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca/kioslave5/ftp/index.docbook share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca/kioslave5/help/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/index.docbook share/doc/HTML/ca/kioslave5/http/index.cache.bz2 share/doc/HTML/ca/kioslave5/http/index.docbook share/doc/HTML/ca/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca/kioslave5/webdav/index.docbook share/doc/HTML/ca@valencia/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/cookies/index.docbook share/doc/HTML/ca@valencia/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/netpref/index.docbook share/doc/HTML/ca@valencia/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/proxy/index.docbook share/doc/HTML/ca@valencia/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/smb/index.docbook share/doc/HTML/ca@valencia/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/trash/index.docbook share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca@valencia/kioslave5/data/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/data/index.docbook share/doc/HTML/ca@valencia/kioslave5/file/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/file/index.docbook share/doc/HTML/ca@valencia/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/ftp/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/index.docbook share/doc/HTML/ca@valencia/kioslave5/http/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/http/index.docbook share/doc/HTML/ca@valencia/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/webdav/index.docbook share/doc/HTML/de/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/de/kcontrol5/cookies/index.docbook share/doc/HTML/de/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/de/kcontrol5/netpref/index.docbook share/doc/HTML/de/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/de/kcontrol5/proxy/index.docbook share/doc/HTML/de/kcontrol5/smb/index.cache.bz2 share/doc/HTML/de/kcontrol5/smb/index.docbook share/doc/HTML/de/kcontrol5/trash/index.cache.bz2 share/doc/HTML/de/kcontrol5/trash/index.docbook share/doc/HTML/de/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/de/kcontrol5/webshortcuts/index.docbook share/doc/HTML/de/kioslave5/data/index.cache.bz2 share/doc/HTML/de/kioslave5/data/index.docbook share/doc/HTML/de/kioslave5/file/index.cache.bz2 share/doc/HTML/de/kioslave5/file/index.docbook share/doc/HTML/de/kioslave5/ftp/index.cache.bz2 share/doc/HTML/de/kioslave5/ftp/index.docbook share/doc/HTML/de/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/de/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/de/kioslave5/help/index.cache.bz2 share/doc/HTML/de/kioslave5/help/index.docbook share/doc/HTML/de/kioslave5/http/index.cache.bz2 share/doc/HTML/de/kioslave5/http/index.docbook share/doc/HTML/de/kioslave5/webdav/index.cache.bz2 share/doc/HTML/de/kioslave5/webdav/index.docbook share/doc/HTML/en/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/en/kcontrol5/cookies/index.docbook share/doc/HTML/en/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/en/kcontrol5/netpref/index.docbook share/doc/HTML/en/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/en/kcontrol5/proxy/index.docbook share/doc/HTML/en/kcontrol5/smb/index.cache.bz2 share/doc/HTML/en/kcontrol5/smb/index.docbook share/doc/HTML/en/kcontrol5/trash/index.cache.bz2 share/doc/HTML/en/kcontrol5/trash/index.docbook share/doc/HTML/en/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/en/kcontrol5/webshortcuts/index.docbook share/doc/HTML/en/kioslave5/data/index.cache.bz2 share/doc/HTML/en/kioslave5/data/index.docbook share/doc/HTML/en/kioslave5/file/index.cache.bz2 share/doc/HTML/en/kioslave5/file/index.docbook share/doc/HTML/en/kioslave5/ftp/index.cache.bz2 share/doc/HTML/en/kioslave5/ftp/index.docbook share/doc/HTML/en/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/en/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/en/kioslave5/help/index.cache.bz2 share/doc/HTML/en/kioslave5/help/index.docbook share/doc/HTML/en/kioslave5/http/index.cache.bz2 share/doc/HTML/en/kioslave5/http/index.docbook share/doc/HTML/en/kioslave5/webdav/index.cache.bz2 share/doc/HTML/en/kioslave5/webdav/index.docbook share/doc/HTML/es/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/es/kcontrol5/cookies/index.docbook share/doc/HTML/es/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/es/kcontrol5/netpref/index.docbook share/doc/HTML/es/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/es/kcontrol5/proxy/index.docbook share/doc/HTML/es/kcontrol5/smb/index.cache.bz2 share/doc/HTML/es/kcontrol5/smb/index.docbook share/doc/HTML/es/kcontrol5/trash/index.cache.bz2 share/doc/HTML/es/kcontrol5/trash/index.docbook share/doc/HTML/es/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/es/kcontrol5/webshortcuts/index.docbook share/doc/HTML/es/kioslave5/data/index.cache.bz2 share/doc/HTML/es/kioslave5/data/index.docbook share/doc/HTML/es/kioslave5/file/index.cache.bz2 share/doc/HTML/es/kioslave5/file/index.docbook share/doc/HTML/es/kioslave5/ftp/index.cache.bz2 share/doc/HTML/es/kioslave5/ftp/index.docbook share/doc/HTML/es/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/es/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/es/kioslave5/help/index.cache.bz2 share/doc/HTML/es/kioslave5/help/index.docbook share/doc/HTML/es/kioslave5/http/index.cache.bz2 share/doc/HTML/es/kioslave5/http/index.docbook share/doc/HTML/es/kioslave5/webdav/index.cache.bz2 share/doc/HTML/es/kioslave5/webdav/index.docbook share/doc/HTML/et/kioslave5/data/index.cache.bz2 share/doc/HTML/et/kioslave5/data/index.docbook share/doc/HTML/et/kioslave5/file/index.cache.bz2 share/doc/HTML/et/kioslave5/file/index.docbook share/doc/HTML/et/kioslave5/ftp/index.cache.bz2 share/doc/HTML/et/kioslave5/ftp/index.docbook share/doc/HTML/et/kioslave5/help/index.cache.bz2 share/doc/HTML/et/kioslave5/help/index.docbook share/doc/HTML/et/kioslave5/http/index.cache.bz2 share/doc/HTML/et/kioslave5/http/index.docbook share/doc/HTML/et/kioslave5/webdav/index.cache.bz2 share/doc/HTML/et/kioslave5/webdav/index.docbook share/doc/HTML/fr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/fr/kcontrol5/cookies/index.docbook share/doc/HTML/fr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/fr/kcontrol5/netpref/index.docbook share/doc/HTML/fr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/fr/kcontrol5/proxy/index.docbook share/doc/HTML/fr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/fr/kcontrol5/smb/index.docbook share/doc/HTML/fr/kcontrol5/trash/index.cache.bz2 share/doc/HTML/fr/kcontrol5/trash/index.docbook share/doc/HTML/fr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/fr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/fr/kioslave5/data/index.cache.bz2 share/doc/HTML/fr/kioslave5/data/index.docbook share/doc/HTML/fr/kioslave5/file/index.cache.bz2 share/doc/HTML/fr/kioslave5/file/index.docbook share/doc/HTML/fr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/fr/kioslave5/ftp/index.docbook share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/fr/kioslave5/help/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/index.docbook share/doc/HTML/fr/kioslave5/http/index.cache.bz2 share/doc/HTML/fr/kioslave5/http/index.docbook share/doc/HTML/fr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/fr/kioslave5/webdav/index.docbook share/doc/HTML/gl/kioslave5/file/index.cache.bz2 share/doc/HTML/gl/kioslave5/file/index.docbook share/doc/HTML/gl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/gl/kioslave5/ftp/index.docbook share/doc/HTML/gl/kioslave5/help/index.cache.bz2 share/doc/HTML/gl/kioslave5/help/index.docbook share/doc/HTML/gl/kioslave5/http/index.cache.bz2 share/doc/HTML/gl/kioslave5/http/index.docbook share/doc/HTML/gl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/gl/kioslave5/webdav/index.docbook share/doc/HTML/it/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/it/kcontrol5/cookies/index.docbook share/doc/HTML/it/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/it/kcontrol5/netpref/index.docbook share/doc/HTML/it/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/it/kcontrol5/proxy/index.docbook share/doc/HTML/it/kcontrol5/smb/index.cache.bz2 share/doc/HTML/it/kcontrol5/smb/index.docbook share/doc/HTML/it/kcontrol5/trash/index.cache.bz2 share/doc/HTML/it/kcontrol5/trash/index.docbook share/doc/HTML/it/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/it/kcontrol5/webshortcuts/index.docbook share/doc/HTML/it/kioslave5/data/index.cache.bz2 share/doc/HTML/it/kioslave5/data/index.docbook share/doc/HTML/it/kioslave5/file/index.cache.bz2 share/doc/HTML/it/kioslave5/file/index.docbook share/doc/HTML/it/kioslave5/ftp/index.cache.bz2 share/doc/HTML/it/kioslave5/ftp/index.docbook share/doc/HTML/it/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/it/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/it/kioslave5/help/index.cache.bz2 share/doc/HTML/it/kioslave5/help/index.docbook share/doc/HTML/it/kioslave5/http/index.cache.bz2 share/doc/HTML/it/kioslave5/http/index.docbook share/doc/HTML/it/kioslave5/webdav/index.cache.bz2 share/doc/HTML/it/kioslave5/webdav/index.docbook share/doc/HTML/nb/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nb/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/nl/kcontrol5/cookies/index.docbook share/doc/HTML/nl/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/nl/kcontrol5/netpref/index.docbook share/doc/HTML/nl/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/nl/kcontrol5/proxy/index.docbook share/doc/HTML/nl/kcontrol5/smb/index.cache.bz2 share/doc/HTML/nl/kcontrol5/smb/index.docbook share/doc/HTML/nl/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nl/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/nl/kcontrol5/webshortcuts/index.docbook share/doc/HTML/nl/kioslave5/data/index.cache.bz2 share/doc/HTML/nl/kioslave5/data/index.docbook share/doc/HTML/nl/kioslave5/file/index.cache.bz2 share/doc/HTML/nl/kioslave5/file/index.docbook share/doc/HTML/nl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/nl/kioslave5/ftp/index.docbook share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/nl/kioslave5/help/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/index.docbook share/doc/HTML/nl/kioslave5/http/index.cache.bz2 share/doc/HTML/nl/kioslave5/http/index.docbook share/doc/HTML/nl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/nl/kioslave5/webdav/index.docbook share/doc/HTML/pt/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt/kcontrol5/cookies/index.docbook share/doc/HTML/pt/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt/kcontrol5/netpref/index.docbook share/doc/HTML/pt/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt/kcontrol5/proxy/index.docbook share/doc/HTML/pt/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt/kcontrol5/smb/index.docbook share/doc/HTML/pt/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt/kcontrol5/trash/index.docbook share/doc/HTML/pt/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt/kioslave5/data/index.cache.bz2 share/doc/HTML/pt/kioslave5/data/index.docbook share/doc/HTML/pt/kioslave5/file/index.cache.bz2 share/doc/HTML/pt/kioslave5/file/index.docbook share/doc/HTML/pt/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt/kioslave5/ftp/index.docbook share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt/kioslave5/help/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/index.docbook share/doc/HTML/pt/kioslave5/http/index.cache.bz2 share/doc/HTML/pt/kioslave5/http/index.docbook share/doc/HTML/pt/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt/kioslave5/webdav/index.docbook share/doc/HTML/pt_BR/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/cookies/index.docbook share/doc/HTML/pt_BR/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/netpref/index.docbook share/doc/HTML/pt_BR/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/proxy/index.docbook share/doc/HTML/pt_BR/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/smb/index.docbook share/doc/HTML/pt_BR/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/trash/index.docbook share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt_BR/kioslave5/data/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/data/index.docbook share/doc/HTML/pt_BR/kioslave5/file/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/file/index.docbook share/doc/HTML/pt_BR/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/ftp/index.docbook share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt_BR/kioslave5/help/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/index.docbook share/doc/HTML/pt_BR/kioslave5/http/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/http/index.docbook share/doc/HTML/pt_BR/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/webdav/index.docbook share/doc/HTML/ru/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ru/kcontrol5/cookies/index.docbook share/doc/HTML/ru/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ru/kcontrol5/netpref/index.docbook share/doc/HTML/ru/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ru/kcontrol5/proxy/index.docbook share/doc/HTML/ru/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ru/kcontrol5/smb/index.docbook share/doc/HTML/ru/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ru/kcontrol5/trash/index.docbook share/doc/HTML/ru/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ru/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ru/kioslave5/data/index.cache.bz2 share/doc/HTML/ru/kioslave5/data/index.docbook share/doc/HTML/ru/kioslave5/file/index.cache.bz2 share/doc/HTML/ru/kioslave5/file/index.docbook share/doc/HTML/ru/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ru/kioslave5/ftp/index.docbook share/doc/HTML/ru/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ru/kioslave5/help/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/index.docbook share/doc/HTML/ru/kioslave5/http/index.cache.bz2 share/doc/HTML/ru/kioslave5/http/index.docbook share/doc/HTML/ru/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ru/kioslave5/webdav/index.docbook share/doc/HTML/sr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr/kcontrol5/cookies/index.docbook share/doc/HTML/sr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr/kcontrol5/netpref/index.docbook share/doc/HTML/sr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr/kcontrol5/proxy/index.docbook share/doc/HTML/sr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr/kcontrol5/smb/index.docbook share/doc/HTML/sr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr/kioslave5/data/index.cache.bz2 share/doc/HTML/sr/kioslave5/data/index.docbook share/doc/HTML/sr/kioslave5/file/index.cache.bz2 share/doc/HTML/sr/kioslave5/file/index.docbook share/doc/HTML/sr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr/kioslave5/ftp/index.docbook share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr/kioslave5/help/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/index.docbook share/doc/HTML/sr/kioslave5/http/index.cache.bz2 share/doc/HTML/sr/kioslave5/http/index.docbook share/doc/HTML/sr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr/kioslave5/webdav/index.docbook share/doc/HTML/sr@latin/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/cookies/index.docbook share/doc/HTML/sr@latin/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/netpref/index.docbook share/doc/HTML/sr@latin/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/proxy/index.docbook share/doc/HTML/sr@latin/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/smb/index.docbook share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr@latin/kioslave5/data/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/data/index.docbook share/doc/HTML/sr@latin/kioslave5/file/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/file/index.docbook share/doc/HTML/sr@latin/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/ftp/index.docbook share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr@latin/kioslave5/help/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/index.docbook share/doc/HTML/sr@latin/kioslave5/http/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/http/index.docbook share/doc/HTML/sr@latin/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/webdav/index.docbook share/doc/HTML/sv/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sv/kcontrol5/cookies/index.docbook share/doc/HTML/sv/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sv/kcontrol5/netpref/index.docbook share/doc/HTML/sv/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sv/kcontrol5/proxy/index.docbook share/doc/HTML/sv/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sv/kcontrol5/smb/index.docbook share/doc/HTML/sv/kcontrol5/trash/index.cache.bz2 share/doc/HTML/sv/kcontrol5/trash/index.docbook share/doc/HTML/sv/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sv/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sv/kioslave5/data/index.cache.bz2 share/doc/HTML/sv/kioslave5/data/index.docbook share/doc/HTML/sv/kioslave5/file/index.cache.bz2 share/doc/HTML/sv/kioslave5/file/index.docbook share/doc/HTML/sv/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sv/kioslave5/ftp/index.docbook share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sv/kioslave5/help/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/index.docbook share/doc/HTML/sv/kioslave5/http/index.cache.bz2 share/doc/HTML/sv/kioslave5/http/index.docbook share/doc/HTML/sv/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sv/kioslave5/webdav/index.docbook share/doc/HTML/tr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/tr/kcontrol5/netpref/index.docbook share/doc/HTML/tr/kioslave5/file/index.cache.bz2 share/doc/HTML/tr/kioslave5/file/index.docbook share/doc/HTML/tr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/tr/kioslave5/ftp/index.docbook share/doc/HTML/tr/kioslave5/help/index.cache.bz2 share/doc/HTML/tr/kioslave5/help/index.docbook share/doc/HTML/uk/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/uk/kcontrol5/cookies/index.docbook share/doc/HTML/uk/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/uk/kcontrol5/netpref/index.docbook share/doc/HTML/uk/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/uk/kcontrol5/proxy/index.docbook share/doc/HTML/uk/kcontrol5/smb/index.cache.bz2 share/doc/HTML/uk/kcontrol5/smb/index.docbook share/doc/HTML/uk/kcontrol5/trash/index.cache.bz2 share/doc/HTML/uk/kcontrol5/trash/index.docbook share/doc/HTML/uk/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/uk/kcontrol5/webshortcuts/index.docbook share/doc/HTML/uk/kioslave5/data/index.cache.bz2 share/doc/HTML/uk/kioslave5/data/index.docbook share/doc/HTML/uk/kioslave5/file/index.cache.bz2 share/doc/HTML/uk/kioslave5/file/index.docbook share/doc/HTML/uk/kioslave5/ftp/index.cache.bz2 share/doc/HTML/uk/kioslave5/ftp/index.docbook share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/uk/kioslave5/help/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/index.docbook share/doc/HTML/uk/kioslave5/http/index.cache.bz2 share/doc/HTML/uk/kioslave5/http/index.docbook share/doc/HTML/uk/kioslave5/webdav/index.cache.bz2 share/doc/HTML/uk/kioslave5/webdav/index.docbook share/kconf_update/filepicker.upd share/kdevappwizard/templates/kioworker.tar.bz2 share/kf5/kcookiejar/domain_info share/knotifications5/proxyscout.notifyrc share/kservices5/cookies.desktop share/kservices5/http_cache_cleaner.desktop share/kservices5/kcmtrash.desktop share/kservices5/netpref.desktop share/kservices5/proxy.desktop share/kservices5/searchproviders/7digital.desktop share/kservices5/searchproviders/acronym.desktop share/kservices5/searchproviders/amazon.desktop share/kservices5/searchproviders/amazon_mp3.desktop share/kservices5/searchproviders/amg.desktop share/kservices5/searchproviders/archpkg.desktop share/kservices5/searchproviders/archwiki.desktop share/kservices5/searchproviders/backports.desktop share/kservices5/searchproviders/baidu.desktop share/kservices5/searchproviders/beolingus.desktop share/kservices5/searchproviders/bing.desktop share/kservices5/searchproviders/bug.desktop share/kservices5/searchproviders/call.desktop share/kservices5/searchproviders/cia.desktop share/kservices5/searchproviders/citeseer.desktop share/kservices5/searchproviders/cpan.desktop share/kservices5/searchproviders/cplusplus.desktop share/kservices5/searchproviders/cppreference.desktop share/kservices5/searchproviders/ctan.desktop share/kservices5/searchproviders/ctan_cat.desktop share/kservices5/searchproviders/dbug.desktop share/kservices5/searchproviders/de2en.desktop share/kservices5/searchproviders/de2fr.desktop share/kservices5/searchproviders/deb.desktop share/kservices5/searchproviders/deepl.desktop share/kservices5/searchproviders/dictfr.desktop share/kservices5/searchproviders/docbook.desktop share/kservices5/searchproviders/doi.desktop share/kservices5/searchproviders/duckduckgo.desktop share/kservices5/searchproviders/duckduckgo_info.desktop share/kservices5/searchproviders/duckduckgo_shopping.desktop share/kservices5/searchproviders/ecosia.desktop share/kservices5/searchproviders/en2de.desktop share/kservices5/searchproviders/en2es.desktop share/kservices5/searchproviders/en2fr.desktop share/kservices5/searchproviders/en2it.desktop share/kservices5/searchproviders/es2en.desktop share/kservices5/searchproviders/facebook.desktop share/kservices5/searchproviders/feedster.desktop share/kservices5/searchproviders/flatpak.desktop share/kservices5/searchproviders/flickr.desktop share/kservices5/searchproviders/flickrcc.desktop share/kservices5/searchproviders/foldoc.desktop share/kservices5/searchproviders/fr2de.desktop share/kservices5/searchproviders/fr2en.desktop share/kservices5/searchproviders/freecode.desktop share/kservices5/searchproviders/freedb.desktop share/kservices5/searchproviders/fsd.desktop share/kservices5/searchproviders/github.desktop share/kservices5/searchproviders/gitlab.desktop share/kservices5/searchproviders/google.desktop share/kservices5/searchproviders/google_advanced.desktop share/kservices5/searchproviders/google_code.desktop share/kservices5/searchproviders/google_groups.desktop share/kservices5/searchproviders/google_images.desktop share/kservices5/searchproviders/google_lucky.desktop share/kservices5/searchproviders/google_maps.desktop share/kservices5/searchproviders/google_movie.desktop share/kservices5/searchproviders/google_news.desktop share/kservices5/searchproviders/google_shopping.desktop share/kservices5/searchproviders/grec.desktop share/kservices5/searchproviders/hyperdictionary.desktop share/kservices5/searchproviders/hyperdictionary_thesaurus.desktop share/kservices5/searchproviders/identica_groups.desktop share/kservices5/searchproviders/identica_notices.desktop share/kservices5/searchproviders/identica_people.desktop share/kservices5/searchproviders/imdb.desktop share/kservices5/searchproviders/invent.desktop share/kservices5/searchproviders/invent_issues.desktop share/kservices5/searchproviders/invent_mr.desktop share/kservices5/searchproviders/invent_repo.desktop share/kservices5/searchproviders/it2en.desktop share/kservices5/searchproviders/jamendo.desktop share/kservices5/searchproviders/jeeves.desktop share/kservices5/searchproviders/kde.desktop share/kservices5/searchproviders/kde_apps.desktop share/kservices5/searchproviders/kde_forums.desktop share/kservices5/searchproviders/kde_store.desktop share/kservices5/searchproviders/kde_techbase.desktop share/kservices5/searchproviders/kde_userbase.desktop share/kservices5/searchproviders/kreddit.desktop share/kservices5/searchproviders/krita.desktop share/kservices5/searchproviders/learncpp.desktop share/kservices5/searchproviders/leo.desktop share/kservices5/searchproviders/linguee.desktop share/kservices5/searchproviders/magnatune.desktop share/kservices5/searchproviders/metacrawler.desktop share/kservices5/searchproviders/microsoft_cpp.desktop share/kservices5/searchproviders/msdn.desktop share/kservices5/searchproviders/multitran-deru.desktop share/kservices5/searchproviders/multitran-enru.desktop share/kservices5/searchproviders/multitran-esru.desktop share/kservices5/searchproviders/multitran-frru.desktop share/kservices5/searchproviders/multitran-itru.desktop share/kservices5/searchproviders/multitran-nlru.desktop share/kservices5/searchproviders/netcraft.desktop share/kservices5/searchproviders/nl-telephone.desktop share/kservices5/searchproviders/nl-teletekst.desktop share/kservices5/searchproviders/opendesktop.desktop share/kservices5/searchproviders/opensuse.desktop share/kservices5/searchproviders/pgpkeys.desktop share/kservices5/searchproviders/php.desktop share/kservices5/searchproviders/protondb.desktop share/kservices5/searchproviders/python.desktop share/kservices5/searchproviders/qt5.desktop share/kservices5/searchproviders/qt6.desktop share/kservices5/searchproviders/qwant.desktop share/kservices5/searchproviders/qwant_images.desktop share/kservices5/searchproviders/qwant_news.desktop share/kservices5/searchproviders/qwant_shopping.desktop share/kservices5/searchproviders/qwant_social.desktop share/kservices5/searchproviders/qwant_videos.desktop share/kservices5/searchproviders/rae.desktop share/kservices5/searchproviders/rag.desktop share/kservices5/searchproviders/reddit.desktop share/kservices5/searchproviders/rfc.desktop share/kservices5/searchproviders/rpmfind.desktop share/kservices5/searchproviders/ruby_application_archive.desktop share/kservices5/searchproviders/rust.desktop share/kservices5/searchproviders/soundcloud.desktop share/kservices5/searchproviders/sourceforge.desktop share/kservices5/searchproviders/technorati.desktop share/kservices5/searchproviders/technoratitags.desktop share/kservices5/searchproviders/thesaurus.desktop share/kservices5/searchproviders/tvtome.desktop share/kservices5/searchproviders/ubuntu.desktop share/kservices5/searchproviders/urbandictionary.desktop share/kservices5/searchproviders/uspto.desktop share/kservices5/searchproviders/vimeo.desktop share/kservices5/searchproviders/voila.desktop share/kservices5/searchproviders/webster.desktop share/kservices5/searchproviders/wikia.desktop share/kservices5/searchproviders/wikipedia.desktop share/kservices5/searchproviders/wiktionary.desktop share/kservices5/searchproviders/wine.desktop share/kservices5/searchproviders/wolfram_alpha.desktop share/kservices5/searchproviders/wordref.desktop share/kservices5/searchproviders/yahoo.desktop share/kservices5/searchproviders/yahoo_image.desktop share/kservices5/searchproviders/yahoo_local.desktop share/kservices5/searchproviders/yahoo_shopping.desktop share/kservices5/searchproviders/yahoo_video.desktop share/kservices5/searchproviders/yandex.desktop share/kservices5/searchproviders/youtube.desktop share/kservices5/smb.desktop share/kservices5/webshortcuts.desktop share/kservicetypes5/kfileitemactionplugin.desktop share/kservicetypes5/konqpopupmenuplugin.desktop share/kservicetypes5/kpropertiesdialogplugin.desktop share/kservicetypes5/searchprovider.desktop share/locale/af/LC_MESSAGES/kio5.mo share/locale/ar/LC_MESSAGES/kio5.mo share/locale/ast/LC_MESSAGES/kio5.mo share/locale/az/LC_MESSAGES/kio5.mo share/locale/be/LC_MESSAGES/kio5.mo share/locale/be@latin/LC_MESSAGES/kio5.mo share/locale/bg/LC_MESSAGES/kio5.mo share/locale/bn/LC_MESSAGES/kio5.mo share/locale/br/LC_MESSAGES/kio5.mo share/locale/bs/LC_MESSAGES/kio5.mo share/locale/ca/LC_MESSAGES/kio5.mo share/locale/ca@valencia/LC_MESSAGES/kio5.mo share/locale/cs/LC_MESSAGES/kio5.mo share/locale/csb/LC_MESSAGES/kio5.mo share/locale/cy/LC_MESSAGES/kio5.mo share/locale/da/LC_MESSAGES/kio5.mo share/locale/de/LC_MESSAGES/kio5.mo share/locale/el/LC_MESSAGES/kio5.mo share/locale/en_GB/LC_MESSAGES/kio5.mo share/locale/eo/LC_MESSAGES/kio5.mo share/locale/es/LC_MESSAGES/kio5.mo share/locale/et/LC_MESSAGES/kio5.mo share/locale/eu/LC_MESSAGES/kio5.mo share/locale/fa/LC_MESSAGES/kio5.mo share/locale/fi/LC_MESSAGES/kio5.mo share/locale/fr/LC_MESSAGES/kio5.mo share/locale/fy/LC_MESSAGES/kio5.mo share/locale/ga/LC_MESSAGES/kio5.mo share/locale/gl/LC_MESSAGES/kio5.mo share/locale/gu/LC_MESSAGES/kio5.mo share/locale/he/LC_MESSAGES/kio5.mo share/locale/hi/LC_MESSAGES/kio5.mo share/locale/hr/LC_MESSAGES/kio5.mo share/locale/hsb/LC_MESSAGES/kio5.mo share/locale/hu/LC_MESSAGES/kio5.mo share/locale/ia/LC_MESSAGES/kio5.mo share/locale/id/LC_MESSAGES/kio5.mo share/locale/ie/LC_MESSAGES/kio5.mo share/locale/is/LC_MESSAGES/kio5.mo share/locale/it/LC_MESSAGES/kio5.mo share/locale/ja/LC_MESSAGES/kio5.mo share/locale/ka/LC_MESSAGES/kio5.mo share/locale/kk/LC_MESSAGES/kio5.mo share/locale/km/LC_MESSAGES/kio5.mo share/locale/ko/LC_MESSAGES/kio5.mo share/locale/ku/LC_MESSAGES/kio5.mo share/locale/lt/LC_MESSAGES/kio5.mo share/locale/lv/LC_MESSAGES/kio5.mo share/locale/mai/LC_MESSAGES/kio5.mo share/locale/mk/LC_MESSAGES/kio5.mo share/locale/ml/LC_MESSAGES/kio5.mo share/locale/mr/LC_MESSAGES/kio5.mo share/locale/ms/LC_MESSAGES/kio5.mo share/locale/my/LC_MESSAGES/kio5.mo share/locale/nb/LC_MESSAGES/kio5.mo share/locale/nds/LC_MESSAGES/kio5.mo share/locale/ne/LC_MESSAGES/kio5.mo share/locale/nl/LC_MESSAGES/kio5.mo share/locale/nn/LC_MESSAGES/kio5.mo share/locale/oc/LC_MESSAGES/kio5.mo share/locale/pa/LC_MESSAGES/kio5.mo share/locale/pl/LC_MESSAGES/kio5.mo share/locale/pt/LC_MESSAGES/kio5.mo share/locale/pt_BR/LC_MESSAGES/kio5.mo share/locale/ro/LC_MESSAGES/kio5.mo share/locale/ru/LC_MESSAGES/kio5.mo share/locale/se/LC_MESSAGES/kio5.mo share/locale/sk/LC_MESSAGES/kio5.mo share/locale/sl/LC_MESSAGES/kio5.mo share/locale/sq/LC_MESSAGES/kio5.mo share/locale/sr/LC_MESSAGES/kio5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5.mo share/locale/sr@latin/LC_MESSAGES/kio5.mo share/locale/sv/LC_MESSAGES/kio5.mo share/locale/ta/LC_MESSAGES/kio5.mo share/locale/tg/LC_MESSAGES/kio5.mo share/locale/th/LC_MESSAGES/kio5.mo share/locale/tok/LC_MESSAGES/kio5.mo share/locale/tr/LC_MESSAGES/kio5.mo share/locale/ug/LC_MESSAGES/kio5.mo share/locale/uk/LC_MESSAGES/kio5.mo share/locale/uz/LC_MESSAGES/kio5.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5.mo share/locale/vi/LC_MESSAGES/kio5.mo share/locale/wa/LC_MESSAGES/kio5.mo share/locale/xh/LC_MESSAGES/kio5.mo share/locale/zh_CN/LC_MESSAGES/kio5.mo share/locale/zh_TW/LC_MESSAGES/kio5.mo share/qlogging-categories5/kio.categories share/qlogging-categories5/kio.renamecategories diff --git a/devel/kf5-kitemmodels/distinfo b/devel/kf5-kitemmodels/distinfo index 4e856b69e411..14c6b2eed16f 100644 --- a/devel/kf5-kitemmodels/distinfo +++ b/devel/kf5-kitemmodels/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883604 -SHA256 (KDE/frameworks/5.112.0/kitemmodels-5.112.0.tar.xz) = 5aec7f9040ce0640494bcf4e65f082dbcb3c2e50b6a6f1d4450e614aeede0a8c -SIZE (KDE/frameworks/5.112.0/kitemmodels-5.112.0.tar.xz) = 407352 +TIMESTAMP = 1701678490 +SHA256 (KDE/frameworks/5.113.0/kitemmodels-5.113.0.tar.xz) = 737b810554ec89734fe2b34bf06b2ee9e3a4d0bee0ad41ed1bb7d9c3f3d12106 +SIZE (KDE/frameworks/5.113.0/kitemmodels-5.113.0.tar.xz) = 407296 diff --git a/devel/kf5-knewstuff/distinfo b/devel/kf5-knewstuff/distinfo index 426c65c507b0..6275c99f3a2b 100644 --- a/devel/kf5-knewstuff/distinfo +++ b/devel/kf5-knewstuff/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883606 -SHA256 (KDE/frameworks/5.112.0/knewstuff-5.112.0.tar.xz) = f4f850d93446de9404d55df450b56229e86ddd95af3950f938bbf38b753f81d0 -SIZE (KDE/frameworks/5.112.0/knewstuff-5.112.0.tar.xz) = 3387644 +TIMESTAMP = 1701678491 +SHA256 (KDE/frameworks/5.113.0/knewstuff-5.113.0.tar.xz) = a1703451f17087663d59732fb5692739a978f9bbf2232813ab95a7eb7b3e413a +SIZE (KDE/frameworks/5.113.0/knewstuff-5.113.0.tar.xz) = 3389048 diff --git a/devel/kf5-knotifications/distinfo b/devel/kf5-knotifications/distinfo index 7d0671260752..70ddc7c06ea0 100644 --- a/devel/kf5-knotifications/distinfo +++ b/devel/kf5-knotifications/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883608 -SHA256 (KDE/frameworks/5.112.0/knotifications-5.112.0.tar.xz) = bf06fe58638934596a601c1ca727cc25f54a10d26eb786ebe0cf086473489df6 -SIZE (KDE/frameworks/5.112.0/knotifications-5.112.0.tar.xz) = 2372780 +TIMESTAMP = 1701678492 +SHA256 (KDE/frameworks/5.113.0/knotifications-5.113.0.tar.xz) = 3dd0f9a0260064b042309ee0ad0c54d3d9dc64166421f3cf1e7044cd4570f7fb +SIZE (KDE/frameworks/5.113.0/knotifications-5.113.0.tar.xz) = 2373072 diff --git a/devel/kf5-knotifyconfig/distinfo b/devel/kf5-knotifyconfig/distinfo index e884c337f127..e3084b863d12 100644 --- a/devel/kf5-knotifyconfig/distinfo +++ b/devel/kf5-knotifyconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883609 -SHA256 (KDE/frameworks/5.112.0/knotifyconfig-5.112.0.tar.xz) = 125fc77d5aeb0e71450f38a3accb42ec5dcc1f037208945595bd5c5ad89b11a3 -SIZE (KDE/frameworks/5.112.0/knotifyconfig-5.112.0.tar.xz) = 2401844 +TIMESTAMP = 1701678493 +SHA256 (KDE/frameworks/5.113.0/knotifyconfig-5.113.0.tar.xz) = 86d9ae755566349a75694812e2453e5bbfee1b477394c0bead349cc158f7bfbd +SIZE (KDE/frameworks/5.113.0/knotifyconfig-5.113.0.tar.xz) = 2401796 diff --git a/devel/kf5-kpackage/distinfo b/devel/kf5-kpackage/distinfo index 1aa2b44ba9ab..5f0df6aa5eb5 100644 --- a/devel/kf5-kpackage/distinfo +++ b/devel/kf5-kpackage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883610 -SHA256 (KDE/frameworks/5.112.0/kpackage-5.112.0.tar.xz) = 77022d31074247fc87e8dd2853d44440d0257338a3c68b080c2a55e849c1043d -SIZE (KDE/frameworks/5.112.0/kpackage-5.112.0.tar.xz) = 187500 +TIMESTAMP = 1701678494 +SHA256 (KDE/frameworks/5.113.0/kpackage-5.113.0.tar.xz) = 624e47022206198284766377dbe73e37d6fa03c301634a4ce7d0032ef22cc010 +SIZE (KDE/frameworks/5.113.0/kpackage-5.113.0.tar.xz) = 187508 diff --git a/devel/kf5-kparts/distinfo b/devel/kf5-kparts/distinfo index 60a2849c5461..a9c716a2e814 100644 --- a/devel/kf5-kparts/distinfo +++ b/devel/kf5-kparts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883612 -SHA256 (KDE/frameworks/5.112.0/kparts-5.112.0.tar.xz) = 4c0c95b959ef0d4b3f988c78abf9092a79847c16f144aee6574e9e48e62f2457 -SIZE (KDE/frameworks/5.112.0/kparts-5.112.0.tar.xz) = 2473740 +TIMESTAMP = 1701678495 +SHA256 (KDE/frameworks/5.113.0/kparts-5.113.0.tar.xz) = 883819a0f5dc9448d38f7eeee9ee3ae8a4c22a8ec26a700b264d5d93732fa957 +SIZE (KDE/frameworks/5.113.0/kparts-5.113.0.tar.xz) = 2473672 diff --git a/devel/kf5-kpeople/distinfo b/devel/kf5-kpeople/distinfo index 5f345a0646b8..3d07a3d68f09 100644 --- a/devel/kf5-kpeople/distinfo +++ b/devel/kf5-kpeople/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883613 -SHA256 (KDE/frameworks/5.112.0/kpeople-5.112.0.tar.xz) = d6589fa2b41a5b3ee4c2194823d41fa9a113426e14495fffffbaf12bfcffcc75 -SIZE (KDE/frameworks/5.112.0/kpeople-5.112.0.tar.xz) = 63288 +TIMESTAMP = 1701678496 +SHA256 (KDE/frameworks/5.113.0/kpeople-5.113.0.tar.xz) = f6a8b8fc046a6b6d30eedd067bd0f35bf447289eb8d54888639efb183024e421 +SIZE (KDE/frameworks/5.113.0/kpeople-5.113.0.tar.xz) = 63284 diff --git a/devel/kf5-kpty/distinfo b/devel/kf5-kpty/distinfo index 99a6340a0e01..258f2309d875 100644 --- a/devel/kf5-kpty/distinfo +++ b/devel/kf5-kpty/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883615 -SHA256 (KDE/frameworks/5.112.0/kpty-5.112.0.tar.xz) = ae3b4b1af032da95d8e9bb0079e3f5f50969d7c20c6e822029dce00d49aad9dc -SIZE (KDE/frameworks/5.112.0/kpty-5.112.0.tar.xz) = 2416756 +TIMESTAMP = 1701678497 +SHA256 (KDE/frameworks/5.113.0/kpty-5.113.0.tar.xz) = beecd3f6717b09b2adf42e7043340da002f84b06134a8740ee2ac616290af643 +SIZE (KDE/frameworks/5.113.0/kpty-5.113.0.tar.xz) = 2417096 diff --git a/devel/kf5-kservice/distinfo b/devel/kf5-kservice/distinfo index 5819bc22b617..4da69ea7c6c3 100644 --- a/devel/kf5-kservice/distinfo +++ b/devel/kf5-kservice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883616 -SHA256 (KDE/frameworks/5.112.0/kservice-5.112.0.tar.xz) = 7f94e396173dff4af20fea43fcb41d5246a21433f8821faa2e99d34eb3075205 -SIZE (KDE/frameworks/5.112.0/kservice-5.112.0.tar.xz) = 2538780 +TIMESTAMP = 1701678498 +SHA256 (KDE/frameworks/5.113.0/kservice-5.113.0.tar.xz) = cb02fbe5c95bd706d2e85b1a39ab0244984ab6fa7f7bf56de0f302b2a438f026 +SIZE (KDE/frameworks/5.113.0/kservice-5.113.0.tar.xz) = 2539104 diff --git a/devel/kf5-ktexteditor/distinfo b/devel/kf5-ktexteditor/distinfo index 1fd31f2fcdb0..97df07f81211 100644 --- a/devel/kf5-ktexteditor/distinfo +++ b/devel/kf5-ktexteditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883618 -SHA256 (KDE/frameworks/5.112.0/ktexteditor-5.112.0.tar.xz) = 290e4a4cf154d6be752ea678fe0b55e14260da659474af7083b6d6d370e20c34 -SIZE (KDE/frameworks/5.112.0/ktexteditor-5.112.0.tar.xz) = 2789536 +TIMESTAMP = 1701678499 +SHA256 (KDE/frameworks/5.113.0/ktexteditor-5.113.0.tar.xz) = ef6da8826b1d091dae5872969f6d38927da81de04551c311d53576fc1ca4cc0a +SIZE (KDE/frameworks/5.113.0/ktexteditor-5.113.0.tar.xz) = 2789912 diff --git a/devel/kf5-kunitconversion/distinfo b/devel/kf5-kunitconversion/distinfo index 5c5fd5e8b83f..98d5e5f789e2 100644 --- a/devel/kf5-kunitconversion/distinfo +++ b/devel/kf5-kunitconversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883619 -SHA256 (KDE/frameworks/5.112.0/kunitconversion-5.112.0.tar.xz) = 8ce74961afe098116ec1d106e66940e670111eb9fcb9575915be79359a3f24fe -SIZE (KDE/frameworks/5.112.0/kunitconversion-5.112.0.tar.xz) = 931604 +TIMESTAMP = 1701678500 +SHA256 (KDE/frameworks/5.113.0/kunitconversion-5.113.0.tar.xz) = eafffeccc43b8105206e057408eb4112c3ef7b5f85947e501e6df3417ee6eff4 +SIZE (KDE/frameworks/5.113.0/kunitconversion-5.113.0.tar.xz) = 931820 diff --git a/devel/kf5-solid/distinfo b/devel/kf5-solid/distinfo index 031fcfdc15cc..b2489e37c0d6 100644 --- a/devel/kf5-solid/distinfo +++ b/devel/kf5-solid/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883620 -SHA256 (KDE/frameworks/5.112.0/solid-5.112.0.tar.xz) = 1e74096b5ccaa9429c54a90c88ac51bd168d52a1d8dc23defa8e8809a72af542 -SIZE (KDE/frameworks/5.112.0/solid-5.112.0.tar.xz) = 306224 +TIMESTAMP = 1701678501 +SHA256 (KDE/frameworks/5.113.0/solid-5.113.0.tar.xz) = f9d83d8db4ecf7fdec950ac09fba5834f01b2d0ce9dae432a7db7555829d106e +SIZE (KDE/frameworks/5.113.0/solid-5.113.0.tar.xz) = 306224 diff --git a/devel/kf5-threadweaver/distinfo b/devel/kf5-threadweaver/distinfo index 5d599d012d8c..ce659959915f 100644 --- a/devel/kf5-threadweaver/distinfo +++ b/devel/kf5-threadweaver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883622 -SHA256 (KDE/frameworks/5.112.0/threadweaver-5.112.0.tar.xz) = c91de5489d3f660a177fa91cb24827d7e316827fa6f3d290bb656be0b09178c4 -SIZE (KDE/frameworks/5.112.0/threadweaver-5.112.0.tar.xz) = 1413132 +TIMESTAMP = 1701678502 +SHA256 (KDE/frameworks/5.113.0/threadweaver-5.113.0.tar.xz) = f749e4225640daa4650f4b6b6a31aa4ff523b14b13885309f042ecf25a3df1f4 +SIZE (KDE/frameworks/5.113.0/threadweaver-5.113.0.tar.xz) = 1413100 diff --git a/dns/kf5-kdnssd/distinfo b/dns/kf5-kdnssd/distinfo index e6f077c84326..509072203737 100644 --- a/dns/kf5-kdnssd/distinfo +++ b/dns/kf5-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883623 -SHA256 (KDE/frameworks/5.112.0/kdnssd-5.112.0.tar.xz) = 5adc0440d4ca8adea12094304824355f3407654b02b6885a12560447486da131 -SIZE (KDE/frameworks/5.112.0/kdnssd-5.112.0.tar.xz) = 2281020 +TIMESTAMP = 1701678503 +SHA256 (KDE/frameworks/5.113.0/kdnssd-5.113.0.tar.xz) = d8aa224580fa75d5e6c379a14034e8d5ee140cefcdfe695621750417fc4f6bc1 +SIZE (KDE/frameworks/5.113.0/kdnssd-5.113.0.tar.xz) = 2280752 diff --git a/graphics/kf5-kimageformats/distinfo b/graphics/kf5-kimageformats/distinfo index 441bd51168ba..90a45effd546 100644 --- a/graphics/kf5-kimageformats/distinfo +++ b/graphics/kf5-kimageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883627 -SHA256 (KDE/frameworks/5.112.0/kimageformats-5.112.0.tar.xz) = c5c47339398a4bc265015fad9918d4c8729beec08390a080af5e0cb0eade89d3 -SIZE (KDE/frameworks/5.112.0/kimageformats-5.112.0.tar.xz) = 15650572 +TIMESTAMP = 1701678504 +SHA256 (KDE/frameworks/5.113.0/kimageformats-5.113.0.tar.xz) = 84b0082faa125b6602671fe6e77b0c257d6248c64ca9e8073c72bdaff440da3f +SIZE (KDE/frameworks/5.113.0/kimageformats-5.113.0.tar.xz) = 15651880 diff --git a/graphics/kf5-kplotting/distinfo b/graphics/kf5-kplotting/distinfo index 1d3c9d5377d4..d5d971f43f95 100644 --- a/graphics/kf5-kplotting/distinfo +++ b/graphics/kf5-kplotting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883628 -SHA256 (KDE/frameworks/5.112.0/kplotting-5.112.0.tar.xz) = fd9f6ee103b610cc01e63e8fd800e08c8120b70c18a551615455d3288ca72828 -SIZE (KDE/frameworks/5.112.0/kplotting-5.112.0.tar.xz) = 33736 +TIMESTAMP = 1701678505 +SHA256 (KDE/frameworks/5.113.0/kplotting-5.113.0.tar.xz) = d233596403fec84e8eafb976e591a5a40b751e00cf6f0da8c531f9108e8aee9a +SIZE (KDE/frameworks/5.113.0/kplotting-5.113.0.tar.xz) = 33752 diff --git a/graphics/kf5-kquickcharts/distinfo b/graphics/kf5-kquickcharts/distinfo index 315d1a6fdc22..fa3d05b36df5 100644 --- a/graphics/kf5-kquickcharts/distinfo +++ b/graphics/kf5-kquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883629 -SHA256 (KDE/frameworks/5.112.0/kquickcharts-5.112.0.tar.xz) = aaac53d81992465886b47c2c471c0c188136b36a523c9900d815d3a39a24c3b0 -SIZE (KDE/frameworks/5.112.0/kquickcharts-5.112.0.tar.xz) = 113384 +TIMESTAMP = 1701678506 +SHA256 (KDE/frameworks/5.113.0/kquickcharts-5.113.0.tar.xz) = ad3844c1f16a642ffea55b9c732237720965986664fe40c86f599cdeaa61876c +SIZE (KDE/frameworks/5.113.0/kquickcharts-5.113.0.tar.xz) = 113424 diff --git a/graphics/kf5-prison/distinfo b/graphics/kf5-prison/distinfo index e37948e5103b..d8fa513e8768 100644 --- a/graphics/kf5-prison/distinfo +++ b/graphics/kf5-prison/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883631 -SHA256 (KDE/frameworks/5.112.0/prison-5.112.0.tar.xz) = 783b0f7140936332373e4c6ebc60d85eebf5f3343e2d0c9cae7afc4926d08fae -SIZE (KDE/frameworks/5.112.0/prison-5.112.0.tar.xz) = 55284 +TIMESTAMP = 1701678507 +SHA256 (KDE/frameworks/5.113.0/prison-5.113.0.tar.xz) = b771d107df05397c9b8351a8bdecf4bcc4bf162bf9bf13914a85d65f647fc4a3 +SIZE (KDE/frameworks/5.113.0/prison-5.113.0.tar.xz) = 55268 diff --git a/lang/kf5-kross/distinfo b/lang/kf5-kross/distinfo index fbacb2765885..57249c2f244d 100644 --- a/lang/kf5-kross/distinfo +++ b/lang/kf5-kross/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883632 -SHA256 (KDE/frameworks/5.112.0/kross-5.112.0.tar.xz) = 4ac324d161c5ec29931a6c5589ed5bd02d532d0f69d6024629d98e46fa3a08ad -SIZE (KDE/frameworks/5.112.0/kross-5.112.0.tar.xz) = 2440216 +TIMESTAMP = 1701678507 +SHA256 (KDE/frameworks/5.113.0/kross-5.113.0.tar.xz) = 1a319208eb2ebfdcdb890bb17bff90b13c5780c59c9999569693288340650db3 +SIZE (KDE/frameworks/5.113.0/kross-5.113.0.tar.xz) = 2439912 diff --git a/misc/kf5-purpose/distinfo b/misc/kf5-purpose/distinfo index 685a0204a28f..4d3731ac9b38 100644 --- a/misc/kf5-purpose/distinfo +++ b/misc/kf5-purpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883633 -SHA256 (KDE/frameworks/5.112.0/purpose-5.112.0.tar.xz) = e322baf0050a12c5a112e75bf37f8be9708d3ec8e48f5929bdbe1bb116ac0cb3 -SIZE (KDE/frameworks/5.112.0/purpose-5.112.0.tar.xz) = 180816 +TIMESTAMP = 1701678508 +SHA256 (KDE/frameworks/5.113.0/purpose-5.113.0.tar.xz) = 0ec2ad4867cf9414224f7171cba491e7a43f3a254af4920ee2e17035f366bf5c +SIZE (KDE/frameworks/5.113.0/purpose-5.113.0.tar.xz) = 179544 diff --git a/multimedia/kf5-kmediaplayer/distinfo b/multimedia/kf5-kmediaplayer/distinfo index 0a2f4de1a94f..6f391bea2ceb 100644 --- a/multimedia/kf5-kmediaplayer/distinfo +++ b/multimedia/kf5-kmediaplayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883634 -SHA256 (KDE/frameworks/5.112.0/kmediaplayer-5.112.0.tar.xz) = 9980f46d75be3210293866c7b5ee2166802a337f075337ef8206fabf72b5aaad -SIZE (KDE/frameworks/5.112.0/kmediaplayer-5.112.0.tar.xz) = 9960 +TIMESTAMP = 1701678509 +SHA256 (KDE/frameworks/5.113.0/kmediaplayer-5.113.0.tar.xz) = 5e39ff55da3560a0a3ea6a99c9ef80e5c227600a258cfecfcafe0489443fd6db +SIZE (KDE/frameworks/5.113.0/kmediaplayer-5.113.0.tar.xz) = 9952 diff --git a/net/kf5-kcalendarcore/distinfo b/net/kf5-kcalendarcore/distinfo index 10d9f75027ea..66526a7e4a48 100644 --- a/net/kf5-kcalendarcore/distinfo +++ b/net/kf5-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883635 -SHA256 (KDE/frameworks/5.112.0/kcalendarcore-5.112.0.tar.xz) = 191875bd1d29a33adf79cca3a7991d4fc47cf6d877564a4c2d8b7a4a467a5259 -SIZE (KDE/frameworks/5.112.0/kcalendarcore-5.112.0.tar.xz) = 267900 +TIMESTAMP = 1701678510 +SHA256 (KDE/frameworks/5.113.0/kcalendarcore-5.113.0.tar.xz) = 82715224f349c254f3c0894840a30163df5c074aaac92b1da3577dc7f097faa2 +SIZE (KDE/frameworks/5.113.0/kcalendarcore-5.113.0.tar.xz) = 266960 diff --git a/net/kf5-kcontacts/distinfo b/net/kf5-kcontacts/distinfo index 42bcc774925c..aadae15f8f77 100644 --- a/net/kf5-kcontacts/distinfo +++ b/net/kf5-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883636 -SHA256 (KDE/frameworks/5.112.0/kcontacts-5.112.0.tar.xz) = 459f73176da94141fe13a78b0a89c69af9ed3f9288eeea1b0f58fb41a4ed4060 -SIZE (KDE/frameworks/5.112.0/kcontacts-5.112.0.tar.xz) = 213916 +TIMESTAMP = 1701678511 +SHA256 (KDE/frameworks/5.113.0/kcontacts-5.113.0.tar.xz) = b5462d85b12a6b4caf30f0054bea9ab8ac4dcfec3a4c0816a1fc7af1c26e2cf9 +SIZE (KDE/frameworks/5.113.0/kcontacts-5.113.0.tar.xz) = 214152 diff --git a/net/kf5-kdav/distinfo b/net/kf5-kdav/distinfo index 49907840cfd5..439e89c253a1 100644 --- a/net/kf5-kdav/distinfo +++ b/net/kf5-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883637 -SHA256 (KDE/frameworks/5.112.0/kdav-5.112.0.tar.xz) = 4f8ca7f6a61fa911d924bd8d3999d20fa52075194c379964541e5cd39a56cbd4 -SIZE (KDE/frameworks/5.112.0/kdav-5.112.0.tar.xz) = 66188 +TIMESTAMP = 1701678512 +SHA256 (KDE/frameworks/5.113.0/kdav-5.113.0.tar.xz) = bb851f67d0c8376b49432fa4e9cf0da5cc46f05c725b82728eaa0772587a56b6 +SIZE (KDE/frameworks/5.113.0/kdav-5.113.0.tar.xz) = 66184 diff --git a/net/kf5-kholidays/distinfo b/net/kf5-kholidays/distinfo index cf192df1bdae..37c914e1c830 100644 --- a/net/kf5-kholidays/distinfo +++ b/net/kf5-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883639 -SHA256 (KDE/frameworks/5.112.0/kholidays-5.112.0.tar.xz) = a248e2970ab91d85f712203566b27563a5af1858d8c0cf9f3175f313b46eb2ac -SIZE (KDE/frameworks/5.112.0/kholidays-5.112.0.tar.xz) = 255544 +TIMESTAMP = 1701678513 +SHA256 (KDE/frameworks/5.113.0/kholidays-5.113.0.tar.xz) = 11b448500c4bbbc1c55371215cd4585b5be574d3b0c0340b51498f3ae44903f3 +SIZE (KDE/frameworks/5.113.0/kholidays-5.113.0.tar.xz) = 255532 diff --git a/net/kf5-kxmlrpcclient/distinfo b/net/kf5-kxmlrpcclient/distinfo index 722a5c7f1853..90ecc40d899d 100644 --- a/net/kf5-kxmlrpcclient/distinfo +++ b/net/kf5-kxmlrpcclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883640 -SHA256 (KDE/frameworks/5.112.0/kxmlrpcclient-5.112.0.tar.xz) = 50047f5ca90812e823cb4ed24314a65bfee6d86fec8ba51c2b739931607efc27 -SIZE (KDE/frameworks/5.112.0/kxmlrpcclient-5.112.0.tar.xz) = 32208 +TIMESTAMP = 1701678514 +SHA256 (KDE/frameworks/5.113.0/kxmlrpcclient-5.113.0.tar.xz) = 8179d185965c3e1be0196fba4fabbf10380e5ebe456df138c085526f7ba73b90 +SIZE (KDE/frameworks/5.113.0/kxmlrpcclient-5.113.0.tar.xz) = 32228 diff --git a/net/kf5-syndication/distinfo b/net/kf5-syndication/distinfo index e64fa39ddee4..fd8a9898cf27 100644 --- a/net/kf5-syndication/distinfo +++ b/net/kf5-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883641 -SHA256 (KDE/frameworks/5.112.0/syndication-5.112.0.tar.xz) = 886937c138cc0ee5ab7f9acb7f8d6567637742529bfd3e9c9a48603a13492e0e -SIZE (KDE/frameworks/5.112.0/syndication-5.112.0.tar.xz) = 510508 +TIMESTAMP = 1701678515 +SHA256 (KDE/frameworks/5.113.0/syndication-5.113.0.tar.xz) = 5d8eaf06ffa1513f90c6038ee341bdc1bcb8ae94e8cc3d227b794b8dc974ecdb +SIZE (KDE/frameworks/5.113.0/syndication-5.113.0.tar.xz) = 510552 diff --git a/security/kf5-kdesu/distinfo b/security/kf5-kdesu/distinfo index 7b4ba8669dc7..6d44ca26082f 100644 --- a/security/kf5-kdesu/distinfo +++ b/security/kf5-kdesu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883642 -SHA256 (KDE/frameworks/5.112.0/kdesu-5.112.0.tar.xz) = 6f20adaa15a666744be62d411e9da220b3648b52ee40a7bb8199f9ec0736c1fa -SIZE (KDE/frameworks/5.112.0/kdesu-5.112.0.tar.xz) = 56804 +TIMESTAMP = 1701678516 +SHA256 (KDE/frameworks/5.113.0/kdesu-5.113.0.tar.xz) = 045f26fc112190d2004636b517d6a54f4a0767c20bd4aad13f95d08b4d1bad20 +SIZE (KDE/frameworks/5.113.0/kdesu-5.113.0.tar.xz) = 56804 diff --git a/sysutils/kf5-baloo/distinfo b/sysutils/kf5-baloo/distinfo index ddb95e03ad29..a7976b42af2f 100644 --- a/sysutils/kf5-baloo/distinfo +++ b/sysutils/kf5-baloo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883643 -SHA256 (KDE/frameworks/5.112.0/baloo-5.112.0.tar.xz) = 7fb1eb4374d49ec7e415b0560608a59214b4ff2091eeb425460f82938b1e089e -SIZE (KDE/frameworks/5.112.0/baloo-5.112.0.tar.xz) = 312916 +TIMESTAMP = 1701678517 +SHA256 (KDE/frameworks/5.113.0/baloo-5.113.0.tar.xz) = 3daea41a84dfb17b4e66999c94719bc33b1d7604f7ad4436db800bd9041067cb +SIZE (KDE/frameworks/5.113.0/baloo-5.113.0.tar.xz) = 310940 diff --git a/sysutils/kf5-kwallet/distinfo b/sysutils/kf5-kwallet/distinfo index 29e7d89b63c0..7fb7ba0b81a6 100644 --- a/sysutils/kf5-kwallet/distinfo +++ b/sysutils/kf5-kwallet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883644 -SHA256 (KDE/frameworks/5.112.0/kwallet-5.112.0.tar.xz) = 5ae0486d38a9a7ca9c1b81841861da9e788f3d6a53ea7e33ff1b4298bee768ec -SIZE (KDE/frameworks/5.112.0/kwallet-5.112.0.tar.xz) = 349732 +TIMESTAMP = 1701678518 +SHA256 (KDE/frameworks/5.113.0/kwallet-5.113.0.tar.xz) = 96535263b8b57467044aa41ae10a74c79e24e02b40b4abff4a41a65b5869082b +SIZE (KDE/frameworks/5.113.0/kwallet-5.113.0.tar.xz) = 351656 diff --git a/textproc/kf5-kcodecs/distinfo b/textproc/kf5-kcodecs/distinfo index 424a5f1ae3db..07de8ad789a1 100644 --- a/textproc/kf5-kcodecs/distinfo +++ b/textproc/kf5-kcodecs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883646 -SHA256 (KDE/frameworks/5.112.0/kcodecs-5.112.0.tar.xz) = dd8bc7cb31ce18832e45d0822cfb176b39a535bf6a87e9520f6648ad0ac6d55e -SIZE (KDE/frameworks/5.112.0/kcodecs-5.112.0.tar.xz) = 2506024 +TIMESTAMP = 1701678519 +SHA256 (KDE/frameworks/5.113.0/kcodecs-5.113.0.tar.xz) = 910cbb5721828a5b33a9aaf7c73306ee3cb7b34455743fb0e79458f23cc06af7 +SIZE (KDE/frameworks/5.113.0/kcodecs-5.113.0.tar.xz) = 2506084 diff --git a/textproc/kf5-sonnet/distinfo b/textproc/kf5-sonnet/distinfo index b3eed3c76444..c3d7899cd58c 100644 --- a/textproc/kf5-sonnet/distinfo +++ b/textproc/kf5-sonnet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883648 -SHA256 (KDE/frameworks/5.112.0/sonnet-5.112.0.tar.xz) = c10cf34f9cf10cc85c48feeb73de9ee1348bd9e2d8d0c9ef24fbb423fe8ed108 -SIZE (KDE/frameworks/5.112.0/sonnet-5.112.0.tar.xz) = 2437888 +TIMESTAMP = 1701678520 +SHA256 (KDE/frameworks/5.113.0/sonnet-5.113.0.tar.xz) = c6c31f9ce82337f92f96ab87edb57aa75444849ff8390ef6afa7c30da450639f +SIZE (KDE/frameworks/5.113.0/sonnet-5.113.0.tar.xz) = 2437896 diff --git a/textproc/kf5-syntax-highlighting/distinfo b/textproc/kf5-syntax-highlighting/distinfo index 4aaaef03d43c..7d32ab097945 100644 --- a/textproc/kf5-syntax-highlighting/distinfo +++ b/textproc/kf5-syntax-highlighting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883649 -SHA256 (KDE/frameworks/5.112.0/syntax-highlighting-5.112.0.tar.xz) = b0240f404b198057d316e9d52c6a37674bbd7d490e9dfa268eb44fe2aab308d5 -SIZE (KDE/frameworks/5.112.0/syntax-highlighting-5.112.0.tar.xz) = 3432472 +TIMESTAMP = 1701678521 +SHA256 (KDE/frameworks/5.113.0/syntax-highlighting-5.113.0.tar.xz) = f4d1486ba4ea7062621548fcbf4126cd23b82b29b3493e359b34ef19b17591ae +SIZE (KDE/frameworks/5.113.0/syntax-highlighting-5.113.0.tar.xz) = 3432524 diff --git a/www/kf5-khtml/distinfo b/www/kf5-khtml/distinfo index a3d2a0e11a74..3eb547195b5f 100644 --- a/www/kf5-khtml/distinfo +++ b/www/kf5-khtml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883652 -SHA256 (KDE/frameworks/5.112.0/khtml-5.112.0.tar.xz) = 56e8034f98a9a1e1bfe13211d2d177d5e90758fc3854a85e30389cc40d128667 -SIZE (KDE/frameworks/5.112.0/khtml-5.112.0.tar.xz) = 4011832 +TIMESTAMP = 1701678523 +SHA256 (KDE/frameworks/5.113.0/khtml-5.113.0.tar.xz) = b806138e4159d1559eabc76cdb1450e2381031c9ff2a46c39189388479264854 +SIZE (KDE/frameworks/5.113.0/khtml-5.113.0.tar.xz) = 4011984 diff --git a/www/kf5-kjs/distinfo b/www/kf5-kjs/distinfo index b6119a74277a..9d6d4ff1f089 100644 --- a/www/kf5-kjs/distinfo +++ b/www/kf5-kjs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883654 -SHA256 (KDE/frameworks/5.112.0/kjs-5.112.0.tar.xz) = a9835616a37abb14aaef8426f2af47cd239e25d19bcbfdd9a95dc69c553bd902 -SIZE (KDE/frameworks/5.112.0/kjs-5.112.0.tar.xz) = 339836 +TIMESTAMP = 1701678524 +SHA256 (KDE/frameworks/5.113.0/kjs-5.113.0.tar.xz) = 0b1a17faa4d7b931040b8c61b405c5356086b182c9cee8d456b6b59a9a97a040 +SIZE (KDE/frameworks/5.113.0/kjs-5.113.0.tar.xz) = 339744 diff --git a/www/kf5-kjsembed/distinfo b/www/kf5-kjsembed/distinfo index 797ed92bfa27..d811967cd907 100644 --- a/www/kf5-kjsembed/distinfo +++ b/www/kf5-kjsembed/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883655 -SHA256 (KDE/frameworks/5.112.0/kjsembed-5.112.0.tar.xz) = 396cd92c975cd189ec97ee3a1e00e097c066f8dd5beb6c149c8307898b9a4643 -SIZE (KDE/frameworks/5.112.0/kjsembed-5.112.0.tar.xz) = 2490780 +TIMESTAMP = 1701678525 +SHA256 (KDE/frameworks/5.113.0/kjsembed-5.113.0.tar.xz) = 5664f174d01c9c7d19093815be00518dbc9535ea86576187de6880362c909a2f +SIZE (KDE/frameworks/5.113.0/kjsembed-5.113.0.tar.xz) = 2490940 diff --git a/x11-themes/kf5-breeze-icons/distinfo b/x11-themes/kf5-breeze-icons/distinfo index fd469cac6219..105a0c2f9fdb 100644 --- a/x11-themes/kf5-breeze-icons/distinfo +++ b/x11-themes/kf5-breeze-icons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883657 -SHA256 (KDE/frameworks/5.112.0/breeze-icons-5.112.0.tar.xz) = 69dc51befe11f1431dd5b58b6be304e9ac394f6a4801a9351cf64341946c7d58 -SIZE (KDE/frameworks/5.112.0/breeze-icons-5.112.0.tar.xz) = 2172852 +TIMESTAMP = 1701678526 +SHA256 (KDE/frameworks/5.113.0/breeze-icons-5.113.0.tar.xz) = 88dc60fbc04fddabda0d4eb3fe94d4e3c149ff4d2b44fdcf89b711d421e3634d +SIZE (KDE/frameworks/5.113.0/breeze-icons-5.113.0.tar.xz) = 2173152 diff --git a/x11-themes/kf5-kemoticons/distinfo b/x11-themes/kf5-kemoticons/distinfo index 790cfd9a90e6..62753c7927ba 100644 --- a/x11-themes/kf5-kemoticons/distinfo +++ b/x11-themes/kf5-kemoticons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883658 -SHA256 (KDE/frameworks/5.112.0/kemoticons-5.112.0.tar.xz) = e89b09d418a1f80b6e6ea91716fa54549379a29f3f62ef4ebd36a01e6292fd0c -SIZE (KDE/frameworks/5.112.0/kemoticons-5.112.0.tar.xz) = 1700716 +TIMESTAMP = 1701678527 +SHA256 (KDE/frameworks/5.113.0/kemoticons-5.113.0.tar.xz) = 22a2babb71b5aecbe0c93896f0f5fb0fe3ce133051fc5dca7930c170f5ceee88 +SIZE (KDE/frameworks/5.113.0/kemoticons-5.113.0.tar.xz) = 1700804 diff --git a/x11-themes/kf5-kiconthemes/distinfo b/x11-themes/kf5-kiconthemes/distinfo index 92691f785357..76e05274ad2e 100644 --- a/x11-themes/kf5-kiconthemes/distinfo +++ b/x11-themes/kf5-kiconthemes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883659 -SHA256 (KDE/frameworks/5.112.0/kiconthemes-5.112.0.tar.xz) = a338473183a6e53788740187a3f6ba4e965439e6811c7f7c516b1d2654e2d812 -SIZE (KDE/frameworks/5.112.0/kiconthemes-5.112.0.tar.xz) = 1312040 +TIMESTAMP = 1701678528 +SHA256 (KDE/frameworks/5.113.0/kiconthemes-5.113.0.tar.xz) = 0fbc129c92cc3a9ee29ce748b03798f9065bec0f06e0b353b7ed507e910e4c60 +SIZE (KDE/frameworks/5.113.0/kiconthemes-5.113.0.tar.xz) = 1312212 diff --git a/x11-themes/kf5-oxygen-icons5/Makefile b/x11-themes/kf5-oxygen-icons5/Makefile index 9b4a0d27bad8..0dce8852315d 100644 --- a/x11-themes/kf5-oxygen-icons5/Makefile +++ b/x11-themes/kf5-oxygen-icons5/Makefile @@ -1,20 +1,20 @@ -PORTNAME= oxygen-icons5 +PORTNAME= oxygen-icons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= The Oxygen icon theme for KDE USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm:build # We only install icons. # The qmake dependency is only needed so that kf5-e-c-m can query qmake for # some installation directories. # We explicitly prevent it from looking for qt5-core and specify qmake's path # to avoid needlessly depending on qt5-core; we're just installing a ton of # icon files and do not even use the paths queried from qmake. USE_QT= buildtools:build qmake:build NO_ARCH= yes .include diff --git a/x11-themes/kf5-oxygen-icons5/distinfo b/x11-themes/kf5-oxygen-icons5/distinfo index bfe9e6e3b270..1968cc7a7e50 100644 --- a/x11-themes/kf5-oxygen-icons5/distinfo +++ b/x11-themes/kf5-oxygen-icons5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883712 -SHA256 (KDE/frameworks/5.112.0/oxygen-icons5-5.112.0.tar.xz) = 8a14b0e9980decadc94806823695fd346e281907d9656350e217dde27bac827b -SIZE (KDE/frameworks/5.112.0/oxygen-icons5-5.112.0.tar.xz) = 238636696 +TIMESTAMP = 1701700236 +SHA256 (KDE/frameworks/5.113.0/oxygen-icons-5.113.0.tar.xz) = bd03eac086c7360114ad6842db0eaa8fc7d1c3b18ad65a2cb98ea6f21fb02d3f +SIZE (KDE/frameworks/5.113.0/oxygen-icons-5.113.0.tar.xz) = 238637464 diff --git a/x11-themes/kf5-qqc2-desktop-style/distinfo b/x11-themes/kf5-qqc2-desktop-style/distinfo index e5e8620b2f97..471739312b69 100644 --- a/x11-themes/kf5-qqc2-desktop-style/distinfo +++ b/x11-themes/kf5-qqc2-desktop-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883713 -SHA256 (KDE/frameworks/5.112.0/qqc2-desktop-style-5.112.0.tar.xz) = bed067f2982fd43eab7f9f48dbd6a805ff664bffc939249d74c3f50324dfe4cc -SIZE (KDE/frameworks/5.112.0/qqc2-desktop-style-5.112.0.tar.xz) = 69444 +TIMESTAMP = 1701678529 +SHA256 (KDE/frameworks/5.113.0/qqc2-desktop-style-5.113.0.tar.xz) = d7481e4e758a2e2fa93884e2553131c06ba2d10f4fbf2a33a82114ccced4606a +SIZE (KDE/frameworks/5.113.0/qqc2-desktop-style-5.113.0.tar.xz) = 69468 diff --git a/x11-toolkits/kf5-attica/distinfo b/x11-toolkits/kf5-attica/distinfo index 872d7d557d74..1d8f871ba425 100644 --- a/x11-toolkits/kf5-attica/distinfo +++ b/x11-toolkits/kf5-attica/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883714 -SHA256 (KDE/frameworks/5.112.0/attica-5.112.0.tar.xz) = c53979357fbb1d78ecdcc6d823cbc41bc6333071e31a2232f3053bb91028cf6b -SIZE (KDE/frameworks/5.112.0/attica-5.112.0.tar.xz) = 69480 +TIMESTAMP = 1701678530 +SHA256 (KDE/frameworks/5.113.0/attica-5.113.0.tar.xz) = 244813d3ec65304fe77a5f4ffb2455dcff055c6f358c5bf97da9173fb714d65c +SIZE (KDE/frameworks/5.113.0/attica-5.113.0.tar.xz) = 69496 diff --git a/x11-toolkits/kf5-kcompletion/distinfo b/x11-toolkits/kf5-kcompletion/distinfo index c930144a162f..f91243465d4f 100644 --- a/x11-toolkits/kf5-kcompletion/distinfo +++ b/x11-toolkits/kf5-kcompletion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883716 -SHA256 (KDE/frameworks/5.112.0/kcompletion-5.112.0.tar.xz) = 1261826ed4048d96d7849bb692b5e4db3f78521e610a1a58bbd185ff385409cc -SIZE (KDE/frameworks/5.112.0/kcompletion-5.112.0.tar.xz) = 2337900 +TIMESTAMP = 1701678531 +SHA256 (KDE/frameworks/5.113.0/kcompletion-5.113.0.tar.xz) = e9cc13b7ed3dd5b9dcba59060b934f7a244da0df631135d8d63a48942040c204 +SIZE (KDE/frameworks/5.113.0/kcompletion-5.113.0.tar.xz) = 2337608 diff --git a/x11-toolkits/kf5-kconfigwidgets/distinfo b/x11-toolkits/kf5-kconfigwidgets/distinfo index 55f8a2b35169..55fe46c97163 100644 --- a/x11-toolkits/kf5-kconfigwidgets/distinfo +++ b/x11-toolkits/kf5-kconfigwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883717 -SHA256 (KDE/frameworks/5.112.0/kconfigwidgets-5.112.0.tar.xz) = 290f0a472eaeee834f06c9cd799a233feb94850042f117e905c02c7e9323687a -SIZE (KDE/frameworks/5.112.0/kconfigwidgets-5.112.0.tar.xz) = 2614032 +TIMESTAMP = 1701678532 +SHA256 (KDE/frameworks/5.113.0/kconfigwidgets-5.113.0.tar.xz) = 9b78605c75b4dbad634f7c397e16498e4d1e06927869777b38ea681d3b2eb32e +SIZE (KDE/frameworks/5.113.0/kconfigwidgets-5.113.0.tar.xz) = 2614196 diff --git a/x11-toolkits/kf5-kdesignerplugin/distinfo b/x11-toolkits/kf5-kdesignerplugin/distinfo index 914068c2ebca..f9441e9f260b 100644 --- a/x11-toolkits/kf5-kdesignerplugin/distinfo +++ b/x11-toolkits/kf5-kdesignerplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883719 -SHA256 (KDE/frameworks/5.112.0/kdesignerplugin-5.112.0.tar.xz) = d2d3ea6258fc3be197ba1895e5ee74b0c51a41282eb3608debdc876a403b3367 -SIZE (KDE/frameworks/5.112.0/kdesignerplugin-5.112.0.tar.xz) = 2286900 +TIMESTAMP = 1701678533 +SHA256 (KDE/frameworks/5.113.0/kdesignerplugin-5.113.0.tar.xz) = 31d166318214bec4399dab7dd19fe87b3f533b964f4cef4a53c9857a33c21c16 +SIZE (KDE/frameworks/5.113.0/kdesignerplugin-5.113.0.tar.xz) = 2286976 diff --git a/x11-toolkits/kf5-kguiaddons/distinfo b/x11-toolkits/kf5-kguiaddons/distinfo index 12ab4bbc7dfe..4c116a116bc0 100644 --- a/x11-toolkits/kf5-kguiaddons/distinfo +++ b/x11-toolkits/kf5-kguiaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883720 -SHA256 (KDE/frameworks/5.112.0/kguiaddons-5.112.0.tar.xz) = abea1b0c3d755858a85d703b4ca994e09cb7bbed8b980cc10f583812d68c847b -SIZE (KDE/frameworks/5.112.0/kguiaddons-5.112.0.tar.xz) = 78388 +TIMESTAMP = 1701678534 +SHA256 (KDE/frameworks/5.113.0/kguiaddons-5.113.0.tar.xz) = cc534c2485e55dbe1ae0520eb1d3a38a7a123090e3b36b42da38f484faeb70fa +SIZE (KDE/frameworks/5.113.0/kguiaddons-5.113.0.tar.xz) = 78376 diff --git a/x11-toolkits/kf5-kirigami2/distinfo b/x11-toolkits/kf5-kirigami2/distinfo index 4d291c599ea6..81225c55e613 100644 --- a/x11-toolkits/kf5-kirigami2/distinfo +++ b/x11-toolkits/kf5-kirigami2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883721 -SHA256 (KDE/frameworks/5.112.0/kirigami2-5.112.0.tar.xz) = 637e485213bf4f9c4b43a0a5dc98ea0d505b3b90b34e5702c1a7b711a51e0e11 -SIZE (KDE/frameworks/5.112.0/kirigami2-5.112.0.tar.xz) = 383248 +TIMESTAMP = 1701678535 +SHA256 (KDE/frameworks/5.113.0/kirigami2-5.113.0.tar.xz) = 1ec17142cd6c9cf88bb784d68e151e6b26e818817828444023bc0b1c08d2c37f +SIZE (KDE/frameworks/5.113.0/kirigami2-5.113.0.tar.xz) = 383080 diff --git a/x11-toolkits/kf5-kitemviews/distinfo b/x11-toolkits/kf5-kitemviews/distinfo index d42630721845..97b743d30ccf 100644 --- a/x11-toolkits/kf5-kitemviews/distinfo +++ b/x11-toolkits/kf5-kitemviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883722 -SHA256 (KDE/frameworks/5.112.0/kitemviews-5.112.0.tar.xz) = c8e096578fda0ebf96689483dfb9503ac87d30ab7cb0edf5930b8d9b5d2ff3f6 -SIZE (KDE/frameworks/5.112.0/kitemviews-5.112.0.tar.xz) = 2264888 +TIMESTAMP = 1701678536 +SHA256 (KDE/frameworks/5.113.0/kitemviews-5.113.0.tar.xz) = adf5f36748517479b262673e636bfe939265a7b4abcdac9beafbec294e7dd572 +SIZE (KDE/frameworks/5.113.0/kitemviews-5.113.0.tar.xz) = 2264892 diff --git a/x11-toolkits/kf5-kjobwidgets/distinfo b/x11-toolkits/kf5-kjobwidgets/distinfo index 371c8946d6f3..f8f12a173556 100644 --- a/x11-toolkits/kf5-kjobwidgets/distinfo +++ b/x11-toolkits/kf5-kjobwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883724 -SHA256 (KDE/frameworks/5.112.0/kjobwidgets-5.112.0.tar.xz) = 1b7f9cd984bb5bd79c3171c44537423730d3a5520f08f3f36ebe9e1d58b831f4 -SIZE (KDE/frameworks/5.112.0/kjobwidgets-5.112.0.tar.xz) = 2301772 +TIMESTAMP = 1701678537 +SHA256 (KDE/frameworks/5.113.0/kjobwidgets-5.113.0.tar.xz) = 19f72c1c9f0322c6194d8eba56ed91f700eab4fbd76f32d842976f795586ba38 +SIZE (KDE/frameworks/5.113.0/kjobwidgets-5.113.0.tar.xz) = 2301708 diff --git a/x11-toolkits/kf5-ktextwidgets/distinfo b/x11-toolkits/kf5-ktextwidgets/distinfo index ff398de11468..369ff96a82e9 100644 --- a/x11-toolkits/kf5-ktextwidgets/distinfo +++ b/x11-toolkits/kf5-ktextwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883725 -SHA256 (KDE/frameworks/5.112.0/ktextwidgets-5.112.0.tar.xz) = 3fda77f68351187650f6c6bd3201fb64ce1895f32bfa5ddff345b00123700375 -SIZE (KDE/frameworks/5.112.0/ktextwidgets-5.112.0.tar.xz) = 2552708 +TIMESTAMP = 1701678538 +SHA256 (KDE/frameworks/5.113.0/ktextwidgets-5.113.0.tar.xz) = 5f09ed2598c517aed0ab7c36540678fd39acd9701e8df93ab4484ea2accb0f18 +SIZE (KDE/frameworks/5.113.0/ktextwidgets-5.113.0.tar.xz) = 2552480 diff --git a/x11-toolkits/kf5-kwidgetsaddons/distinfo b/x11-toolkits/kf5-kwidgetsaddons/distinfo index 976b7ca74380..ba14270592c7 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/distinfo +++ b/x11-toolkits/kf5-kwidgetsaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883727 -SHA256 (KDE/frameworks/5.112.0/kwidgetsaddons-5.112.0.tar.xz) = 2b7a1cf73b99bbc7a95ef04c79971b8b5d8909e085815d0e04f452de08f8b574 -SIZE (KDE/frameworks/5.112.0/kwidgetsaddons-5.112.0.tar.xz) = 4271972 +TIMESTAMP = 1701678539 +SHA256 (KDE/frameworks/5.113.0/kwidgetsaddons-5.113.0.tar.xz) = 25001fd1dbcde8324074734cc25a35888415f32cc73ffedcc889962da85b2a07 +SIZE (KDE/frameworks/5.113.0/kwidgetsaddons-5.113.0.tar.xz) = 4271260 diff --git a/x11-toolkits/kf5-kxmlgui/distinfo b/x11-toolkits/kf5-kxmlgui/distinfo index b7171e1037b9..25f320392052 100644 --- a/x11-toolkits/kf5-kxmlgui/distinfo +++ b/x11-toolkits/kf5-kxmlgui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883729 -SHA256 (KDE/frameworks/5.112.0/kxmlgui-5.112.0.tar.xz) = 0f49a0494f7815f6840ee13db7d3fe2be2fdfdf3edb94c47d5fcf162fbc75a9e -SIZE (KDE/frameworks/5.112.0/kxmlgui-5.112.0.tar.xz) = 2953408 +TIMESTAMP = 1701678539 +SHA256 (KDE/frameworks/5.113.0/kxmlgui-5.113.0.tar.xz) = b8fe5f9caf9f8ff6c48432a0db72a1d0ed29d9f9094224a1f8f9c9f44f295408 +SIZE (KDE/frameworks/5.113.0/kxmlgui-5.113.0.tar.xz) = 2953380 diff --git a/x11/kf5-frameworkintegration/distinfo b/x11/kf5-frameworkintegration/distinfo index 1cd5731af9aa..0ec283642fe7 100644 --- a/x11/kf5-frameworkintegration/distinfo +++ b/x11/kf5-frameworkintegration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883730 -SHA256 (KDE/frameworks/5.112.0/frameworkintegration-5.112.0.tar.xz) = c63eb1f13bc62868ecd8cde92abd119953c309f729d9776115485294d9263ece -SIZE (KDE/frameworks/5.112.0/frameworkintegration-5.112.0.tar.xz) = 1760464 +TIMESTAMP = 1701678540 +SHA256 (KDE/frameworks/5.113.0/frameworkintegration-5.113.0.tar.xz) = 1126b010ad951017b100aca84079bdc771a64a1f232b749e9b4360c85476279e +SIZE (KDE/frameworks/5.113.0/frameworkintegration-5.113.0.tar.xz) = 1760432 diff --git a/x11/kf5-kactivities-stats/distinfo b/x11/kf5-kactivities-stats/distinfo index 6d01322002ba..fc1e956d856b 100644 --- a/x11/kf5-kactivities-stats/distinfo +++ b/x11/kf5-kactivities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883733 -SHA256 (KDE/frameworks/5.112.0/kactivities-stats-5.112.0.tar.xz) = feef77ae274ef79cddd068d57541fc6b1c9ea7b2d5bbd9e095d01e12b460f133 -SIZE (KDE/frameworks/5.112.0/kactivities-stats-5.112.0.tar.xz) = 84584 +TIMESTAMP = 1701678543 +SHA256 (KDE/frameworks/5.113.0/kactivities-stats-5.113.0.tar.xz) = 319cd59ee51364cb093a2a65e711ec45245caa06e16d727b3854ccc1a515df8c +SIZE (KDE/frameworks/5.113.0/kactivities-stats-5.113.0.tar.xz) = 84592 diff --git a/x11/kf5-kactivities/distinfo b/x11/kf5-kactivities/distinfo index 76c6d7c1eeaa..1af684e202bb 100644 --- a/x11/kf5-kactivities/distinfo +++ b/x11/kf5-kactivities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883732 -SHA256 (KDE/frameworks/5.112.0/kactivities-5.112.0.tar.xz) = dfcd5f0b8635863365ad286aec5c00fdae23e32c8a172c788124b810fcdaeb5b -SIZE (KDE/frameworks/5.112.0/kactivities-5.112.0.tar.xz) = 73576 +TIMESTAMP = 1701678542 +SHA256 (KDE/frameworks/5.113.0/kactivities-5.113.0.tar.xz) = de88b5b67fd3cf4b973be1c2e6a23333b83060826f2cb593d68d13322e9c34b5 +SIZE (KDE/frameworks/5.113.0/kactivities-5.113.0.tar.xz) = 73560 diff --git a/x11/kf5-kded/distinfo b/x11/kf5-kded/distinfo index 8f1be7a66b53..0be7abdf1c01 100644 --- a/x11/kf5-kded/distinfo +++ b/x11/kf5-kded/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883734 -SHA256 (KDE/frameworks/5.112.0/kded-5.112.0.tar.xz) = b6d62fa1fc8d79227dc2dbfbaff50506c67edb3d4e74af599166079ce4f2119b -SIZE (KDE/frameworks/5.112.0/kded-5.112.0.tar.xz) = 41052 +TIMESTAMP = 1701678544 +SHA256 (KDE/frameworks/5.113.0/kded-5.113.0.tar.xz) = c4164aa8418f6412caf90b388ce1997ebb53f35c8c2870eeb106082af2f963ed +SIZE (KDE/frameworks/5.113.0/kded-5.113.0.tar.xz) = 41036 diff --git a/x11/kf5-kdelibs4support/distinfo b/x11/kf5-kdelibs4support/distinfo index 20d3744b853c..709f75b421a8 100644 --- a/x11/kf5-kdelibs4support/distinfo +++ b/x11/kf5-kdelibs4support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883736 -SHA256 (KDE/frameworks/5.112.0/kdelibs4support-5.112.0.tar.xz) = 9bcdb1db77cd1bfee0ec031a32425d65c3274d97e368d711ac154cc695c73f67 -SIZE (KDE/frameworks/5.112.0/kdelibs4support-5.112.0.tar.xz) = 3722012 +TIMESTAMP = 1701678545 +SHA256 (KDE/frameworks/5.113.0/kdelibs4support-5.113.0.tar.xz) = 44d014666f0eefffd87ee7b0a7db5f7b460f8d11c803b11e5ac39617f01f04fd +SIZE (KDE/frameworks/5.113.0/kdelibs4support-5.113.0.tar.xz) = 3723084 diff --git a/x11/kf5-kglobalaccel/distinfo b/x11/kf5-kglobalaccel/distinfo index efadb1051a6a..8d789dbc0d67 100644 --- a/x11/kf5-kglobalaccel/distinfo +++ b/x11/kf5-kglobalaccel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883737 -SHA256 (KDE/frameworks/5.112.0/kglobalaccel-5.112.0.tar.xz) = 10267e90c34298dcf2aef08dc73b5195ea40b0d4ff5d03ceea01aec267068b3a -SIZE (KDE/frameworks/5.112.0/kglobalaccel-5.112.0.tar.xz) = 2338880 +TIMESTAMP = 1701678546 +SHA256 (KDE/frameworks/5.113.0/kglobalaccel-5.113.0.tar.xz) = 3af3683bf5e9dff9fe94311eb2902add269dbfc0fe29a07e912342771a0f7545 +SIZE (KDE/frameworks/5.113.0/kglobalaccel-5.113.0.tar.xz) = 2338900 diff --git a/x11/kf5-kinit/distinfo b/x11/kf5-kinit/distinfo index 39de563fec51..92e4a9c36d01 100644 --- a/x11/kf5-kinit/distinfo +++ b/x11/kf5-kinit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883739 -SHA256 (KDE/frameworks/5.112.0/kinit-5.112.0.tar.xz) = e75fced58ab654ca475f04a1853d00a3a40cd672d72440c4d9fe031eb83532d6 -SIZE (KDE/frameworks/5.112.0/kinit-5.112.0.tar.xz) = 2404796 +TIMESTAMP = 1701678546 +SHA256 (KDE/frameworks/5.113.0/kinit-5.113.0.tar.xz) = 7b096baff25824cedbf020c8bfbdce43cd2ee72466d15d14883fc9927d7fb5f9 +SIZE (KDE/frameworks/5.113.0/kinit-5.113.0.tar.xz) = 2405000 diff --git a/x11/kf5-krunner/distinfo b/x11/kf5-krunner/distinfo index cd6b16582a87..890a5c6667ea 100644 --- a/x11/kf5-krunner/distinfo +++ b/x11/kf5-krunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883740 -SHA256 (KDE/frameworks/5.112.0/krunner-5.112.0.tar.xz) = 762be1ab9c83872ac78abb2b0352b0ff25072e4430c23dbe0d828b7cd7d76e01 -SIZE (KDE/frameworks/5.112.0/krunner-5.112.0.tar.xz) = 88696 +TIMESTAMP = 1701678547 +SHA256 (KDE/frameworks/5.113.0/krunner-5.113.0.tar.xz) = 90b6fa9e8489c14ef98cf862b83f8f400861eeebe1af98b83af9d1bcbd35ed7c +SIZE (KDE/frameworks/5.113.0/krunner-5.113.0.tar.xz) = 88936 diff --git a/x11/kf5-kwayland/distinfo b/x11/kf5-kwayland/distinfo index 73493a33c6ff..b91c116057bb 100644 --- a/x11/kf5-kwayland/distinfo +++ b/x11/kf5-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883741 -SHA256 (KDE/frameworks/5.112.0/kwayland-5.112.0.tar.xz) = 099cdeebd6000a7ce18972965fc467e34f540ca4006bf36668323d983a79f75b -SIZE (KDE/frameworks/5.112.0/kwayland-5.112.0.tar.xz) = 337424 +TIMESTAMP = 1701678548 +SHA256 (KDE/frameworks/5.113.0/kwayland-5.113.0.tar.xz) = 0ff378e955711f1321779474cb5d8052fc249db55f8642fc2d03e1b0c8dfd0aa +SIZE (KDE/frameworks/5.113.0/kwayland-5.113.0.tar.xz) = 337444 diff --git a/x11/kf5-kwindowsystem/distinfo b/x11/kf5-kwindowsystem/distinfo index 89d74e20191e..8036144d4122 100644 --- a/x11/kf5-kwindowsystem/distinfo +++ b/x11/kf5-kwindowsystem/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883742 -SHA256 (KDE/frameworks/5.112.0/kwindowsystem-5.112.0.tar.xz) = 418e13e52f66a4030757d8479c787adab1112f40f694c0cc26309d84bf793022 -SIZE (KDE/frameworks/5.112.0/kwindowsystem-5.112.0.tar.xz) = 2406544 +TIMESTAMP = 1701678549 +SHA256 (KDE/frameworks/5.113.0/kwindowsystem-5.113.0.tar.xz) = a1e848e1bd5eebd382ede1b963235b796ebda1fae4a08513d59904aab9daeac3 +SIZE (KDE/frameworks/5.113.0/kwindowsystem-5.113.0.tar.xz) = 2406604 diff --git a/x11/kf5-plasma-framework/distinfo b/x11/kf5-plasma-framework/distinfo index 6836bcd4a460..436586bba742 100644 --- a/x11/kf5-plasma-framework/distinfo +++ b/x11/kf5-plasma-framework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699883744 -SHA256 (KDE/frameworks/5.112.0/plasma-framework-5.112.0.tar.xz) = 12b62a8f7cb538358219d3e08f8677a504c4f14ff5fd673daabfc330f16f085b -SIZE (KDE/frameworks/5.112.0/plasma-framework-5.112.0.tar.xz) = 3310804 +TIMESTAMP = 1701678550 +SHA256 (KDE/frameworks/5.113.0/plasma-framework-5.113.0.tar.xz) = 7e8a94d402c15e21e67715c6e225f8c7eb82e9702ae7f6b0b121e6042d573246 +SIZE (KDE/frameworks/5.113.0/plasma-framework-5.113.0.tar.xz) = 3308500 diff --git a/x11/kf5-plasma-framework/pkg-plist b/x11/kf5-plasma-framework/pkg-plist index dcee25577463..4703091a28db 100644 --- a/x11/kf5-plasma-framework/pkg-plist +++ b/x11/kf5-plasma-framework/pkg-plist @@ -1,703 +1,701 @@ bin/plasmapkg2 include/KF5/Plasma/Applet include/KF5/Plasma/Containment include/KF5/Plasma/ContainmentActions include/KF5/Plasma/Corona include/KF5/Plasma/DataContainer include/KF5/Plasma/DataEngine include/KF5/Plasma/DataEngineConsumer include/KF5/Plasma/FrameSvg include/KF5/Plasma/Package include/KF5/Plasma/PackageStructure include/KF5/Plasma/Plasma include/KF5/Plasma/PluginLoader include/KF5/Plasma/Service include/KF5/Plasma/ServiceJob include/KF5/Plasma/Svg include/KF5/Plasma/Theme include/KF5/Plasma/plasma_version.h include/KF5/PlasmaQuick/AppletQuickItem include/KF5/PlasmaQuick/ConfigModel include/KF5/PlasmaQuick/ConfigView include/KF5/PlasmaQuick/ContainmentView include/KF5/PlasmaQuick/Dialog include/KF5/plasma/applet.h include/KF5/plasma/containment.h include/KF5/plasma/containmentactions.h include/KF5/plasma/corona.h include/KF5/plasma/datacontainer.h include/KF5/plasma/dataengine.h include/KF5/plasma/dataengineconsumer.h include/KF5/plasma/framesvg.h include/KF5/plasma/package.h include/KF5/plasma/packagestructure.h include/KF5/plasma/plasma.h include/KF5/plasma/plasma_export.h include/KF5/plasma/pluginloader.h include/KF5/plasma/scripting/appletscript.h include/KF5/plasma/scripting/dataenginescript.h include/KF5/plasma/scripting/scriptengine.h include/KF5/plasma/service.h include/KF5/plasma/servicejob.h include/KF5/plasma/svg.h include/KF5/plasma/theme.h include/KF5/plasma/version.h include/KF5/plasmaquick/appletquickitem.h include/KF5/plasmaquick/configmodel.h include/KF5/plasmaquick/configview.h include/KF5/plasmaquick/containmentview.h include/KF5/plasmaquick/dialog.h include/KF5/plasmaquick/packageurlinterceptor.h include/KF5/plasmaquick/plasmaquick_export.h lib/cmake/KF5Plasma/KF5PlasmaConfig.cmake lib/cmake/KF5Plasma/KF5PlasmaConfigVersion.cmake lib/cmake/KF5Plasma/KF5PlasmaMacros.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfig.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfigVersion.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets.cmake lib/libKF5Plasma.so lib/libKF5Plasma.so.5 lib/libKF5Plasma.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PlasmaQuick.so lib/libKF5PlasmaQuick.so.5 lib/libKF5PlasmaQuick.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kf5/kirigami/KirigamiPlasmaStyle.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_applet.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_containmentactions.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_dataengine.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_generic.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_theme.so %%QT_PLUGINDIR%%/plasma/scriptengines/plasma_appletscript_declarative.so %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/AbstractButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Container.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Control.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/README.md %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwipeView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonContent.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonHover.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/FlatButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/IconLabel.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RaisedButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/qmldir %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ApplicationWindowStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/BusyIndicatorStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CalendarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CheckBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ComboBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/EditMenuTouch.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/FocusFrameStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/GroupBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ProgressBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/RadioButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ScrollViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SelectionHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SliderStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SpinBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/StatusBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SwitchStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TabViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TableViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextAreaStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/Util.js %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/qmldir %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Icon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Theme.qml %%QT_QMLDIR%%/org/kde/plasma/accessdenied/qmldir %%QT_QMLDIR%%/org/kde/plasma/calendar/CalendarToolbar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DayDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DaysCalendar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthMenu.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthView.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/libcalendarplugin.so %%QT_QMLDIR%%/org/kde/plasma/calendar/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/calendar/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/AbstractButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Container.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Control.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Dial.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/DialogButtonBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Drawer.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Frame.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/GroupBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Menu.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuItem.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuSeparator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/PageIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Pane.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Popup.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/README.md %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RangeSlider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RoundButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollView.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SpinBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwipeView.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonContent.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonHover.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonShadow.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/FlatButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/IconLabel.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/RaisedButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/RoundShadow.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/TextFieldFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/qmldir %%QT_QMLDIR%%/org/kde/plasma/components/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonColumn.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/ButtonRow.qml %%QT_QMLDIR%%/org/kde/plasma/components/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/CommonDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/ContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/components/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/components/ModelContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components/PageStack.qml %%QT_QMLDIR%%/org/kde/plasma/components/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/QueryDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/SectionScroller.qml %%QT_QMLDIR%%/org/kde/plasma/components/SelectionDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Sheet.qml %%QT_QMLDIR%%/org/kde/plasma/components/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabGroup.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/libplasmacomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/components/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/components/private/AppManager.js %%QT_QMLDIR%%/org/kde/plasma/components/private/DualStateButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/InlineDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/PageStack.js %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollBarDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollDecoratorDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/SectionScroller.js %%QT_QMLDIR%%/org/kde/plasma/components/private/TabBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/TabGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/plasma/core/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/core/private/DefaultToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/core/qmldir %%QT_QMLDIR%%/org/kde/plasma/extras/ActionTextField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/App.qml %%QT_QMLDIR%%/org/kde/plasma/extras/BasicPlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/plasma/extras/DescriptiveLabel.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ExpandableListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Heading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PageRow.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Paragraph.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PasswordField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlaceholderMessage.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Representation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ScrollArea.qml %%QT_QMLDIR%%/org/kde/plasma/extras/SearchField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Title.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ActivateAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/AppearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/DisappearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/PressedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ReleasedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/libplasmaextracomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/extras/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/extras/private/BackgroundMetrics.qml %%QT_QMLDIR%%/org/kde/plasma/extras/private/qmldir %%QT_QMLDIR%%/org/kde/plasma/extras/qmldir %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/libplatformcomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/qmldir man/ca/man1/plasmapkg2.1.gz man/ca@valencia/man1/plasmapkg2.1.gz man/de/man1/plasmapkg2.1.gz man/es/man1/plasmapkg2.1.gz man/fr/man1/plasmapkg2.1.gz man/it/man1/plasmapkg2.1.gz man/man1/plasmapkg2.1.gz man/nl/man1/plasmapkg2.1.gz man/pt/man1/plasmapkg2.1.gz man/pt_BR/man1/plasmapkg2.1.gz man/sv/man1/plasmapkg2.1.gz man/uk/man1/plasmapkg2.1.gz share/kdevappwizard/templates/cpp-plasmoid.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper-with-qml-extension.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper.tar.bz2 share/kdevappwizard/templates/qml-plasmoid-with-qml-extension.tar.bz2 share/kdevappwizard/templates/qml-plasmoid.tar.bz2 share/kservicetypes5/plasma-applet.desktop share/kservicetypes5/plasma-containment.desktop share/kservicetypes5/plasma-containmentactions.desktop share/kservicetypes5/plasma-dataengine.desktop share/kservicetypes5/plasma-generic.desktop share/kservicetypes5/plasma-lookandfeel.desktop share/kservicetypes5/plasma-packagestructure.desktop share/kservicetypes5/plasma-scriptengine.desktop share/kservicetypes5/plasma-service.desktop share/kservicetypes5/plasma-shell.desktop share/kservicetypes5/plasma-wallpaper.desktop share/locale/ar/LC_MESSAGES/libplasma5.mo share/locale/az/LC_MESSAGES/libplasma5.mo share/locale/be/LC_MESSAGES/libplasma5.mo share/locale/bg/LC_MESSAGES/libplasma5.mo share/locale/bs/LC_MESSAGES/libplasma5.mo share/locale/ca/LC_MESSAGES/libplasma5.mo share/locale/ca@valencia/LC_MESSAGES/libplasma5.mo share/locale/cs/LC_MESSAGES/libplasma5.mo share/locale/da/LC_MESSAGES/libplasma5.mo share/locale/de/LC_MESSAGES/libplasma5.mo share/locale/el/LC_MESSAGES/libplasma5.mo share/locale/en_GB/LC_MESSAGES/libplasma5.mo share/locale/es/LC_MESSAGES/libplasma5.mo share/locale/et/LC_MESSAGES/libplasma5.mo share/locale/eu/LC_MESSAGES/libplasma5.mo share/locale/fi/LC_MESSAGES/libplasma5.mo share/locale/fr/LC_MESSAGES/libplasma5.mo share/locale/gd/LC_MESSAGES/libplasma5.mo share/locale/gl/LC_MESSAGES/libplasma5.mo share/locale/he/LC_MESSAGES/libplasma5.mo share/locale/hu/LC_MESSAGES/libplasma5.mo share/locale/ia/LC_MESSAGES/libplasma5.mo share/locale/id/LC_MESSAGES/libplasma5.mo share/locale/it/LC_MESSAGES/libplasma5.mo share/locale/ja/LC_MESSAGES/libplasma5.mo share/locale/ka/LC_MESSAGES/libplasma5.mo share/locale/ko/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_MESSAGES/libplasma5.mo -share/locale/lt/LC_SCRIPTS/libplasma5/libplasma5.js -share/locale/lt/LC_SCRIPTS/libplasma5/plasmoids.js share/locale/lv/LC_MESSAGES/libplasma5.mo share/locale/ml/LC_MESSAGES/libplasma5.mo share/locale/mr/LC_MESSAGES/libplasma5.mo share/locale/nb/LC_MESSAGES/libplasma5.mo share/locale/nds/LC_MESSAGES/libplasma5.mo share/locale/nl/LC_MESSAGES/libplasma5.mo share/locale/nn/LC_MESSAGES/libplasma5.mo share/locale/pa/LC_MESSAGES/libplasma5.mo share/locale/pl/LC_MESSAGES/libplasma5.mo share/locale/pt/LC_MESSAGES/libplasma5.mo share/locale/pt_BR/LC_MESSAGES/libplasma5.mo share/locale/ro/LC_MESSAGES/libplasma5.mo share/locale/ru/LC_MESSAGES/libplasma5.mo share/locale/sk/LC_MESSAGES/libplasma5.mo share/locale/sl/LC_MESSAGES/libplasma5.mo share/locale/sr/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavian/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libplasma5.mo share/locale/sr@latin/LC_MESSAGES/libplasma5.mo share/locale/sv/LC_MESSAGES/libplasma5.mo share/locale/ta/LC_MESSAGES/libplasma5.mo share/locale/tg/LC_MESSAGES/libplasma5.mo share/locale/tr/LC_MESSAGES/libplasma5.mo share/locale/ug/LC_MESSAGES/libplasma5.mo share/locale/uk/LC_MESSAGES/libplasma5.mo share/locale/vi/LC_MESSAGES/libplasma5.mo share/locale/zh_CN/LC_MESSAGES/libplasma5.mo share/locale/zh_TW/LC_MESSAGES/libplasma5.mo share/plasma/desktoptheme/air/colors share/plasma/desktoptheme/air/dialogs/background.svgz share/plasma/desktoptheme/air/dialogs/kickoff.svgz share/plasma/desktoptheme/air/dialogs/krunner.svgz share/plasma/desktoptheme/air/icons/akonadi.svgz share/plasma/desktoptheme/air/icons/akregator.svgz share/plasma/desktoptheme/air/icons/amarok.svgz share/plasma/desktoptheme/air/icons/applications.svgz share/plasma/desktoptheme/air/icons/apport.svgz share/plasma/desktoptheme/air/icons/audio.svgz share/plasma/desktoptheme/air/icons/battery.svgz share/plasma/desktoptheme/air/icons/bookmarks.svgz share/plasma/desktoptheme/air/icons/computer.svgz share/plasma/desktoptheme/air/icons/configure.svgz share/plasma/desktoptheme/air/icons/device.svgz share/plasma/desktoptheme/air/icons/edit.svgz share/plasma/desktoptheme/air/icons/kdeconnect.svgz share/plasma/desktoptheme/air/icons/keyboard.svgz share/plasma/desktoptheme/air/icons/kget.svgz share/plasma/desktoptheme/air/icons/klipper.svgz share/plasma/desktoptheme/air/icons/konv_message.svgz share/plasma/desktoptheme/air/icons/konversation.svgz share/plasma/desktoptheme/air/icons/kopete.svgz share/plasma/desktoptheme/air/icons/korgac.svgz share/plasma/desktoptheme/air/icons/kpackagekit.svgz share/plasma/desktoptheme/air/icons/ktorrent.svgz share/plasma/desktoptheme/air/icons/nepomuk.svgz share/plasma/desktoptheme/air/icons/network.svgz share/plasma/desktoptheme/air/icons/notification.svgz share/plasma/desktoptheme/air/icons/preferences.svgz share/plasma/desktoptheme/air/icons/printer.svgz share/plasma/desktoptheme/air/icons/quassel.svgz share/plasma/desktoptheme/air/icons/slc.svgz share/plasma/desktoptheme/air/icons/start.svgz share/plasma/desktoptheme/air/icons/system.svgz share/plasma/desktoptheme/air/icons/view.svgz share/plasma/desktoptheme/air/icons/wallet.svgz share/plasma/desktoptheme/air/metadata.json share/plasma/desktoptheme/air/opaque/dialogs/background.svgz share/plasma/desktoptheme/air/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/air/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/air/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/air/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/air/plasmarc share/plasma/desktoptheme/air/translucent/dialogs/background.svgz share/plasma/desktoptheme/air/translucent/dialogs/krunner.svgz share/plasma/desktoptheme/air/translucent/widgets/background.svgz share/plasma/desktoptheme/air/translucent/widgets/extender-background.svgz share/plasma/desktoptheme/air/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/air/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/action-overlays.svgz share/plasma/desktoptheme/air/widgets/actionbutton.svgz share/plasma/desktoptheme/air/widgets/analog_meter.svgz share/plasma/desktoptheme/air/widgets/arrows.svgz share/plasma/desktoptheme/air/widgets/background.svgz share/plasma/desktoptheme/air/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/air/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/air/widgets/branding.svgz share/plasma/desktoptheme/air/widgets/busywidget.svgz share/plasma/desktoptheme/air/widgets/button.svgz share/plasma/desktoptheme/air/widgets/checkmarks.svgz share/plasma/desktoptheme/air/widgets/clock.svgz share/plasma/desktoptheme/air/widgets/containment-controls.svgz share/plasma/desktoptheme/air/widgets/dragger.svgz share/plasma/desktoptheme/air/widgets/frame.svgz share/plasma/desktoptheme/air/widgets/glowbar.svgz share/plasma/desktoptheme/air/widgets/identiconshapes.svgz share/plasma/desktoptheme/air/widgets/identicontheme.svgz share/plasma/desktoptheme/air/widgets/labeltexture.svgz share/plasma/desktoptheme/air/widgets/line.svgz share/plasma/desktoptheme/air/widgets/lineedit.svgz share/plasma/desktoptheme/air/widgets/listitem.svgz share/plasma/desktoptheme/air/widgets/media-delegate.svgz share/plasma/desktoptheme/air/widgets/monitor.svgz share/plasma/desktoptheme/air/widgets/pager.svgz share/plasma/desktoptheme/air/widgets/panel-background.svgz share/plasma/desktoptheme/air/widgets/picker.svgz share/plasma/desktoptheme/air/widgets/plot-background.svgz share/plasma/desktoptheme/air/widgets/scrollbar.svgz share/plasma/desktoptheme/air/widgets/scrollwidget.svgz share/plasma/desktoptheme/air/widgets/slider.svgz share/plasma/desktoptheme/air/widgets/systemtray.svgz share/plasma/desktoptheme/air/widgets/tabbar.svgz share/plasma/desktoptheme/air/widgets/tasks.svgz share/plasma/desktoptheme/air/widgets/toolbar.svgz share/plasma/desktoptheme/air/widgets/toolbox.svgz share/plasma/desktoptheme/air/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/translucentbackground.svgz share/plasma/desktoptheme/air/widgets/viewitem.svgz share/plasma/desktoptheme/breeze-dark/colors share/plasma/desktoptheme/breeze-dark/metadata.json share/plasma/desktoptheme/breeze-dark/plasmarc share/plasma/desktoptheme/breeze-light/colors share/plasma/desktoptheme/breeze-light/metadata.json share/plasma/desktoptheme/breeze-light/plasmarc share/plasma/desktoptheme/default/dialogs/background.svgz share/plasma/desktoptheme/default/icons/akonadi.svgz share/plasma/desktoptheme/default/icons/akregator.svgz share/plasma/desktoptheme/default/icons/amarok.svgz share/plasma/desktoptheme/default/icons/applications.svgz share/plasma/desktoptheme/default/icons/apport.svgz share/plasma/desktoptheme/default/icons/audio.svgz share/plasma/desktoptheme/default/icons/battery.svgz share/plasma/desktoptheme/default/icons/bookmarks.svgz share/plasma/desktoptheme/default/icons/cantata.svgz share/plasma/desktoptheme/default/icons/computer.svgz share/plasma/desktoptheme/default/icons/configure.svgz share/plasma/desktoptheme/default/icons/device.svgz share/plasma/desktoptheme/default/icons/disk.svgz share/plasma/desktoptheme/default/icons/distribute.svgz share/plasma/desktoptheme/default/icons/document.svgz share/plasma/desktoptheme/default/icons/drive.svgz share/plasma/desktoptheme/default/icons/edit.svgz share/plasma/desktoptheme/default/icons/fcitx.svgz share/plasma/desktoptheme/default/icons/go.svgz share/plasma/desktoptheme/default/icons/ime.svgz share/plasma/desktoptheme/default/icons/input.svgz share/plasma/desktoptheme/default/icons/kalarm.svgz share/plasma/desktoptheme/default/icons/kdeconnect.svgz share/plasma/desktoptheme/default/icons/keyboard.svgz share/plasma/desktoptheme/default/icons/kget.svgz share/plasma/desktoptheme/default/icons/kgpg.svgz share/plasma/desktoptheme/default/icons/kleopatra.svgz share/plasma/desktoptheme/default/icons/klipper.svgz share/plasma/desktoptheme/default/icons/kmail.svgz share/plasma/desktoptheme/default/icons/konv_message.svgz share/plasma/desktoptheme/default/icons/konversation.svgz share/plasma/desktoptheme/default/icons/kopete.svgz share/plasma/desktoptheme/default/icons/korgac.svgz share/plasma/desktoptheme/default/icons/kpackagekit.svgz share/plasma/desktoptheme/default/icons/kruler.svgz share/plasma/desktoptheme/default/icons/kteatime.svgz share/plasma/desktoptheme/default/icons/ktorrent.svgz share/plasma/desktoptheme/default/icons/kup.svgz share/plasma/desktoptheme/default/icons/list.svgz share/plasma/desktoptheme/default/icons/mail.svgz share/plasma/desktoptheme/default/icons/media.svgz share/plasma/desktoptheme/default/icons/mobile.svgz share/plasma/desktoptheme/default/icons/network.svgz share/plasma/desktoptheme/default/icons/notification.svgz share/plasma/desktoptheme/default/icons/osd.svgz share/plasma/desktoptheme/default/icons/phone.svgz share/plasma/desktoptheme/default/icons/plasmavault.svgz share/plasma/desktoptheme/default/icons/plasmavault_error.svgz share/plasma/desktoptheme/default/icons/preferences.svgz share/plasma/desktoptheme/default/icons/printer.svgz share/plasma/desktoptheme/default/icons/quassel.svgz share/plasma/desktoptheme/default/icons/search.svgz share/plasma/desktoptheme/default/icons/slc.svgz share/plasma/desktoptheme/default/icons/software.svgz share/plasma/desktoptheme/default/icons/start.svgz share/plasma/desktoptheme/default/icons/system.svgz share/plasma/desktoptheme/default/icons/touchpad.svgz share/plasma/desktoptheme/default/icons/user.svgz share/plasma/desktoptheme/default/icons/video-card.svgz share/plasma/desktoptheme/default/icons/video.svgz share/plasma/desktoptheme/default/icons/view.svgz share/plasma/desktoptheme/default/icons/vlc.svgz share/plasma/desktoptheme/default/icons/wallet.svgz share/plasma/desktoptheme/default/icons/window.svgz share/plasma/desktoptheme/default/icons/yakuake.svgz share/plasma/desktoptheme/default/icons/zoom.svgz share/plasma/desktoptheme/default/metadata.json share/plasma/desktoptheme/default/opaque/dialogs/background.svgz share/plasma/desktoptheme/default/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/default/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/default/plasmarc share/plasma/desktoptheme/default/solid/dialogs/background.svgz share/plasma/desktoptheme/default/solid/widgets/background.svgz share/plasma/desktoptheme/default/solid/widgets/panel-background.svgz share/plasma/desktoptheme/default/solid/widgets/tooltip.svgz share/plasma/desktoptheme/default/translucent/dialogs/background.svgz share/plasma/desktoptheme/default/translucent/widgets/background.svgz share/plasma/desktoptheme/default/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/default/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/action-overlays.svgz share/plasma/desktoptheme/default/widgets/actionbutton.svgz share/plasma/desktoptheme/default/widgets/analog_meter.svgz share/plasma/desktoptheme/default/widgets/arrows.svgz share/plasma/desktoptheme/default/widgets/background.svgz share/plasma/desktoptheme/default/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/default/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/default/widgets/branding.svgz share/plasma/desktoptheme/default/widgets/busywidget.svgz share/plasma/desktoptheme/default/widgets/button.svgz share/plasma/desktoptheme/default/widgets/calendar.svgz share/plasma/desktoptheme/default/widgets/checkmarks.svgz share/plasma/desktoptheme/default/widgets/clock.svgz share/plasma/desktoptheme/default/widgets/configuration-icons.svgz share/plasma/desktoptheme/default/widgets/containment-controls.svgz share/plasma/desktoptheme/default/widgets/dragger.svgz share/plasma/desktoptheme/default/widgets/frame.svgz share/plasma/desktoptheme/default/widgets/glowbar.svgz share/plasma/desktoptheme/default/widgets/line.svgz share/plasma/desktoptheme/default/widgets/lineedit.svgz share/plasma/desktoptheme/default/widgets/listitem.svgz share/plasma/desktoptheme/default/widgets/margins-highlight.svgz share/plasma/desktoptheme/default/widgets/media-delegate.svgz share/plasma/desktoptheme/default/widgets/menubaritem.svgz share/plasma/desktoptheme/default/widgets/monitor.svgz share/plasma/desktoptheme/default/widgets/notes.svgz share/plasma/desktoptheme/default/widgets/pager.svgz share/plasma/desktoptheme/default/widgets/panel-background.svgz share/plasma/desktoptheme/default/widgets/picker.svgz share/plasma/desktoptheme/default/widgets/plasmoidheading.svgz share/plasma/desktoptheme/default/widgets/plot-background.svgz share/plasma/desktoptheme/default/widgets/radiobutton.svgz share/plasma/desktoptheme/default/widgets/scrollbar.svgz share/plasma/desktoptheme/default/widgets/scrollwidget.svgz share/plasma/desktoptheme/default/widgets/slider.svgz share/plasma/desktoptheme/default/widgets/tabbar.svgz share/plasma/desktoptheme/default/widgets/tasks.svgz share/plasma/desktoptheme/default/widgets/toolbar.svgz share/plasma/desktoptheme/default/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/translucentbackground.svgz share/plasma/desktoptheme/default/widgets/viewitem.svgz share/plasma/desktoptheme/oxygen/colors share/plasma/desktoptheme/oxygen/dialogs/background.svgz share/plasma/desktoptheme/oxygen/icons/akonadi.svgz share/plasma/desktoptheme/oxygen/icons/akregator.svgz share/plasma/desktoptheme/oxygen/icons/amarok.svgz share/plasma/desktoptheme/oxygen/icons/applications.svgz share/plasma/desktoptheme/oxygen/icons/apport.svgz share/plasma/desktoptheme/oxygen/icons/audio.svgz share/plasma/desktoptheme/oxygen/icons/battery.svgz share/plasma/desktoptheme/oxygen/icons/bookmarks.svgz share/plasma/desktoptheme/oxygen/icons/computer.svgz share/plasma/desktoptheme/oxygen/icons/configure.svgz share/plasma/desktoptheme/oxygen/icons/device.svgz share/plasma/desktoptheme/oxygen/icons/edit.svgz share/plasma/desktoptheme/oxygen/icons/kdeconnect.svgz share/plasma/desktoptheme/oxygen/icons/keyboard.svgz share/plasma/desktoptheme/oxygen/icons/kget.svgz share/plasma/desktoptheme/oxygen/icons/klipper.svgz share/plasma/desktoptheme/oxygen/icons/konv_message.svgz share/plasma/desktoptheme/oxygen/icons/konversation.svgz share/plasma/desktoptheme/oxygen/icons/kopete.svgz share/plasma/desktoptheme/oxygen/icons/korgac.svgz share/plasma/desktoptheme/oxygen/icons/kpackagekit.svgz share/plasma/desktoptheme/oxygen/icons/ktorrent.svgz share/plasma/desktoptheme/oxygen/icons/nepomuk.svgz share/plasma/desktoptheme/oxygen/icons/network.svgz share/plasma/desktoptheme/oxygen/icons/notification.svgz share/plasma/desktoptheme/oxygen/icons/preferences.svgz share/plasma/desktoptheme/oxygen/icons/printer.svgz share/plasma/desktoptheme/oxygen/icons/quassel.svgz share/plasma/desktoptheme/oxygen/icons/slc.svgz share/plasma/desktoptheme/oxygen/icons/start.svgz share/plasma/desktoptheme/oxygen/icons/system.svgz share/plasma/desktoptheme/oxygen/icons/view.svgz share/plasma/desktoptheme/oxygen/icons/wallet.svgz share/plasma/desktoptheme/oxygen/metadata.json share/plasma/desktoptheme/oxygen/opaque/dialogs/background.svgz share/plasma/desktoptheme/oxygen/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/plasmarc share/plasma/desktoptheme/oxygen/widgets/action-overlays.svgz share/plasma/desktoptheme/oxygen/widgets/actionbutton.svgz share/plasma/desktoptheme/oxygen/widgets/analog_meter.svgz share/plasma/desktoptheme/oxygen/widgets/arrows.svgz share/plasma/desktoptheme/oxygen/widgets/background.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/oxygen/widgets/branding.svgz share/plasma/desktoptheme/oxygen/widgets/busywidget.svgz share/plasma/desktoptheme/oxygen/widgets/button.svgz share/plasma/desktoptheme/oxygen/widgets/clock.svgz share/plasma/desktoptheme/oxygen/widgets/containment-controls.svgz share/plasma/desktoptheme/oxygen/widgets/dragger.svgz share/plasma/desktoptheme/oxygen/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/widgets/extender-dragger.svgz share/plasma/desktoptheme/oxygen/widgets/frame.svgz share/plasma/desktoptheme/oxygen/widgets/glowbar.svgz share/plasma/desktoptheme/oxygen/widgets/line.svgz share/plasma/desktoptheme/oxygen/widgets/lineedit.svgz share/plasma/desktoptheme/oxygen/widgets/media-delegate.svgz share/plasma/desktoptheme/oxygen/widgets/monitor.svgz share/plasma/desktoptheme/oxygen/widgets/pager.svgz share/plasma/desktoptheme/oxygen/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/widgets/plot-background.svgz share/plasma/desktoptheme/oxygen/widgets/scrollbar.svgz share/plasma/desktoptheme/oxygen/widgets/scrollwidget.svgz share/plasma/desktoptheme/oxygen/widgets/slider.svgz share/plasma/desktoptheme/oxygen/widgets/tabbar.svgz share/plasma/desktoptheme/oxygen/widgets/tasks.svgz share/plasma/desktoptheme/oxygen/widgets/timer.svgz share/plasma/desktoptheme/oxygen/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/widgets/translucentbackground.svgz share/plasma/desktoptheme/oxygen/widgets/viewitem.svgz share/plasma/services/dataengineservice.operations share/plasma/services/plasmoidservice.operations share/plasma/services/storage.operations share/qlogging-categories5/plasma-framework.categories share/qlogging-categories5/plasma-framework.renamecategories