diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index dc43c66a43bf..7a392f45b803 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,909 +1,909 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.27.0 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. -KDE_FRAMEWORKS_VERSION?= 5.102.0 +KDE_FRAMEWORKS_VERSION?= 5.103.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 22.12.2 KDE_APPLICATIONS_SHLIB_VER?= 5.22.2 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS_SHLIB_G_VER?= 22.12.2 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${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= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/archivers/kf5-karchive/distinfo b/archivers/kf5-karchive/distinfo index 8762e8c8dafd..70d15d03edcf 100644 --- a/archivers/kf5-karchive/distinfo +++ b/archivers/kf5-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267401 -SHA256 (KDE/frameworks/5.102.0/karchive-5.102.0.tar.xz) = 40ecd08803b9951777eba0307aa98d879af78b0747d4f810ae8a63e76fcfd84a -SIZE (KDE/frameworks/5.102.0/karchive-5.102.0.tar.xz) = 1006616 +TIMESTAMP = 1675703229 +SHA256 (KDE/frameworks/5.103.0/karchive-5.103.0.tar.xz) = 372bdf691ddc43e663b5c6ca88b2c73fa0fac9ee8e3600b469f9b026c8dd1353 +SIZE (KDE/frameworks/5.103.0/karchive-5.103.0.tar.xz) = 1008648 diff --git a/archivers/kf5-karchive/pkg-plist b/archivers/kf5-karchive/pkg-plist index 5ede7b876347..bae4e414cecb 100644 --- a/archivers/kf5-karchive/pkg-plist +++ b/archivers/kf5-karchive/pkg-plist @@ -1,55 +1,57 @@ include/KF5/KArchive/K7Zip include/KF5/KArchive/KAr include/KF5/KArchive/KArchive include/KF5/KArchive/KArchiveDirectory include/KF5/KArchive/KArchiveEntry include/KF5/KArchive/KArchiveFile include/KF5/KArchive/KCompressionDevice include/KF5/KArchive/KFilterBase include/KF5/KArchive/KFilterDev include/KF5/KArchive/KRcc include/KF5/KArchive/KTar include/KF5/KArchive/KZip include/KF5/KArchive/KZipFileEntry include/KF5/KArchive/k7zip.h include/KF5/KArchive/kar.h include/KF5/KArchive/karchive.h include/KF5/KArchive/karchive_export.h include/KF5/KArchive/karchive_version.h include/KF5/KArchive/karchivedirectory.h include/KF5/KArchive/karchiveentry.h include/KF5/KArchive/karchivefile.h include/KF5/KArchive/kcompressiondevice.h include/KF5/KArchive/kfilterbase.h include/KF5/KArchive/kfilterdev.h include/KF5/KArchive/krcc.h include/KF5/KArchive/ktar.h include/KF5/KArchive/kzip.h include/KF5/KArchive/kzipfileentry.h lib/cmake/KF5Archive/KF5ArchiveConfig.cmake lib/cmake/KF5Archive/KF5ArchiveConfigVersion.cmake lib/cmake/KF5Archive/KF5ArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Archive/KF5ArchiveTargets.cmake lib/libKF5Archive.so lib/libKF5Archive.so.5 lib/libKF5Archive.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KArchive.pri share/locale/ca/LC_MESSAGES/karchive5_qt.qm share/locale/ca@valencia/LC_MESSAGES/karchive5_qt.qm +share/locale/cs/LC_MESSAGES/karchive5_qt.qm share/locale/de/LC_MESSAGES/karchive5_qt.qm share/locale/en_GB/LC_MESSAGES/karchive5_qt.qm share/locale/es/LC_MESSAGES/karchive5_qt.qm share/locale/fr/LC_MESSAGES/karchive5_qt.qm share/locale/it/LC_MESSAGES/karchive5_qt.qm share/locale/ja/LC_MESSAGES/karchive5_qt.qm share/locale/ka/LC_MESSAGES/karchive5_qt.qm share/locale/nl/LC_MESSAGES/karchive5_qt.qm share/locale/pl/LC_MESSAGES/karchive5_qt.qm share/locale/pt/LC_MESSAGES/karchive5_qt.qm share/locale/ru/LC_MESSAGES/karchive5_qt.qm share/locale/sl/LC_MESSAGES/karchive5_qt.qm share/locale/tr/LC_MESSAGES/karchive5_qt.qm share/locale/uk/LC_MESSAGES/karchive5_qt.qm share/locale/zh_CN/LC_MESSAGES/karchive5_qt.qm +share/locale/zh_TW/LC_MESSAGES/karchive5_qt.qm share/qlogging-categories5/karchive.categories share/qlogging-categories5/karchive.renamecategories diff --git a/devel/kf5-extra-cmake-modules/distinfo b/devel/kf5-extra-cmake-modules/distinfo index d40b539d8c25..a00e66c97bed 100644 --- a/devel/kf5-extra-cmake-modules/distinfo +++ b/devel/kf5-extra-cmake-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673703638 -SHA256 (KDE/frameworks/5.102.0/extra-cmake-modules-5.102.0.tar.xz) = f259aeb5a8e046ee2a0e658645f3af6d3e42145d3ae576f305b2b6e24a297f9b -SIZE (KDE/frameworks/5.102.0/extra-cmake-modules-5.102.0.tar.xz) = 330720 +TIMESTAMP = 1675703207 +SHA256 (KDE/frameworks/5.103.0/extra-cmake-modules-5.103.0.tar.xz) = 92ca2e55cb38956fbdeaf254231f074647173ccfd12dc9664989c6fa9e9c4346 +SIZE (KDE/frameworks/5.103.0/extra-cmake-modules-5.103.0.tar.xz) = 330816 diff --git a/devel/kf5-kapidox/distinfo b/devel/kf5-kapidox/distinfo index 912ed32b5051..2cce0847b4c7 100644 --- a/devel/kf5-kapidox/distinfo +++ b/devel/kf5-kapidox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267402 -SHA256 (KDE/frameworks/5.102.0/kapidox-5.102.0.tar.xz) = 3807f9f8414b762274bbb20a12c204bce5b5bd5cb8763c4b9144d76f07f65449 -SIZE (KDE/frameworks/5.102.0/kapidox-5.102.0.tar.xz) = 198820 +TIMESTAMP = 1675703230 +SHA256 (KDE/frameworks/5.103.0/kapidox-5.103.0.tar.xz) = c537ae132477d0abba76da034cc411f8e90bcc7d548a2b69b885be8ecd882d48 +SIZE (KDE/frameworks/5.103.0/kapidox-5.103.0.tar.xz) = 198860 diff --git a/devel/kf5-kauth/distinfo b/devel/kf5-kauth/distinfo index 3b6790122e11..512af20b8272 100644 --- a/devel/kf5-kauth/distinfo +++ b/devel/kf5-kauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267403 -SHA256 (KDE/frameworks/5.102.0/kauth-5.102.0.tar.xz) = 8d12065cecc033936df4238f7d6ccebf5753aced0d161cd444300ffe7e0e6c24 -SIZE (KDE/frameworks/5.102.0/kauth-5.102.0.tar.xz) = 2335840 +TIMESTAMP = 1675703231 +SHA256 (KDE/frameworks/5.103.0/kauth-5.103.0.tar.xz) = cd39aea44deaa480e4c1e4a388eacb54293e8dca38e1034cdd5950edd3023d54 +SIZE (KDE/frameworks/5.103.0/kauth-5.103.0.tar.xz) = 2335788 diff --git a/devel/kf5-kbookmarks/distinfo b/devel/kf5-kbookmarks/distinfo index a999117d4f47..a31e2108378d 100644 --- a/devel/kf5-kbookmarks/distinfo +++ b/devel/kf5-kbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267403 -SHA256 (KDE/frameworks/5.102.0/kbookmarks-5.102.0.tar.xz) = 9a9ee8dc87148649457f40e5f47055d66ec7168d27a8f8a19a6cb655ce4fe9c9 -SIZE (KDE/frameworks/5.102.0/kbookmarks-5.102.0.tar.xz) = 1124772 +TIMESTAMP = 1675703231 +SHA256 (KDE/frameworks/5.103.0/kbookmarks-5.103.0.tar.xz) = 1adf5480a939e4239db01962503c36b8c627715fb519be6703a647529eb1adac +SIZE (KDE/frameworks/5.103.0/kbookmarks-5.103.0.tar.xz) = 1124656 diff --git a/devel/kf5-kcmutils/distinfo b/devel/kf5-kcmutils/distinfo index 117864b4af90..0d48b9aa2389 100644 --- a/devel/kf5-kcmutils/distinfo +++ b/devel/kf5-kcmutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267404 -SHA256 (KDE/frameworks/5.102.0/kcmutils-5.102.0.tar.xz) = b2439f8530cae160dac6fc751d9d9d552299f8ad8442ef20f69605afaefb3aba -SIZE (KDE/frameworks/5.102.0/kcmutils-5.102.0.tar.xz) = 2482824 +TIMESTAMP = 1675703232 +SHA256 (KDE/frameworks/5.103.0/kcmutils-5.103.0.tar.xz) = dc1536de18131957f189506b20255c1bb86196c3eb808da5dc347f93cf96f9f5 +SIZE (KDE/frameworks/5.103.0/kcmutils-5.103.0.tar.xz) = 2482756 diff --git a/devel/kf5-kconfig/distinfo b/devel/kf5-kconfig/distinfo index 3c88d0d524df..aed4c748d6df 100644 --- a/devel/kf5-kconfig/distinfo +++ b/devel/kf5-kconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267405 -SHA256 (KDE/frameworks/5.102.0/kconfig-5.102.0.tar.xz) = f68e6705d38ed7e0d31b62979564149912db8d3959b64eddf7424cabdc13ac33 -SIZE (KDE/frameworks/5.102.0/kconfig-5.102.0.tar.xz) = 291432 +TIMESTAMP = 1675703233 +SHA256 (KDE/frameworks/5.103.0/kconfig-5.103.0.tar.xz) = 5f41e6f566e1eb0ee455886d9ffb69e080ed219e40f4a315b6dd0fd8de3bb918 +SIZE (KDE/frameworks/5.103.0/kconfig-5.103.0.tar.xz) = 291668 diff --git a/devel/kf5-kcoreaddons/Makefile b/devel/kf5-kcoreaddons/Makefile index 8f10b37b6fde..2ec00a0fa995 100644 --- a/devel/kf5-kcoreaddons/Makefile +++ b/devel/kf5-kcoreaddons/Makefile @@ -1,41 +1,40 @@ PORTNAME= kcoreaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtCore LICENSE= LGPL21+ BSD3CLAUSE LICENSE_COMB= multi USES= cmake compiler:c++11-lib kde:5 qt:5 shared-mime-info tar:xz USE_KDE= ecm:build USE_QT= core linguisttools \ buildtools:build qmake:build OPTIONS_DEFINE= FAM INOTIFY OPTIONS_DEFAULT= INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify INOTIFY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_INOTIFY # TODO: FAM is broken, and hangs on NFS FAM_DESC= Filesystem alteration notifications using fam (broken: hangs on NFS) FAM_USES= fam FAM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_FAM CMAKE_ARGS= -DACCOUNTS_SERVICE_ICON_DIR:PATH=/var/db/AccountsService/icons .include # FreeBSD base gained /etc/os-release in r354922, which # corresponds to __FreeBSD_version 1300060 .if ${OSVERSION} < 1300060 post-patch: ${REINPLACE_CMD} -e '/QStringLiteral/s|/etc/os-release|${LOCALBASE}/etc/os-release|g' \ ${WRKSRC}/src/lib/util/kosrelease.cpp .endif .include diff --git a/devel/kf5-kcoreaddons/distinfo b/devel/kf5-kcoreaddons/distinfo index 859c6df40983..fd6088e47782 100644 --- a/devel/kf5-kcoreaddons/distinfo +++ b/devel/kf5-kcoreaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267406 -SHA256 (KDE/frameworks/5.102.0/kcoreaddons-5.102.0.tar.xz) = 82e3f91993602e0b596899d9b43ff78c88566fd1209ec2f78665fb45cda20948 -SIZE (KDE/frameworks/5.102.0/kcoreaddons-5.102.0.tar.xz) = 2634628 +TIMESTAMP = 1675703234 +SHA256 (KDE/frameworks/5.103.0/kcoreaddons-5.103.0.tar.xz) = beb99d0274c2bffd8e6aa87199438393222a0317e2e1118d510b5b6abf772f6a +SIZE (KDE/frameworks/5.103.0/kcoreaddons-5.103.0.tar.xz) = 2606636 diff --git a/devel/kf5-kcrash/distinfo b/devel/kf5-kcrash/distinfo index a287266365a5..82bcebcd5b3a 100644 --- a/devel/kf5-kcrash/distinfo +++ b/devel/kf5-kcrash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267407 -SHA256 (KDE/frameworks/5.102.0/kcrash-5.102.0.tar.xz) = c7a8b303e76a0f7d26fbc823028f4d3231993ee080d6865b4935e3fda4a8d2c4 -SIZE (KDE/frameworks/5.102.0/kcrash-5.102.0.tar.xz) = 28292 +TIMESTAMP = 1675703235 +SHA256 (KDE/frameworks/5.103.0/kcrash-5.103.0.tar.xz) = 3598a171f9162709b9020ed665520beab05104bfc8902c718c2fe788e7d7ebe7 +SIZE (KDE/frameworks/5.103.0/kcrash-5.103.0.tar.xz) = 28304 diff --git a/devel/kf5-kdbusaddons/Makefile b/devel/kf5-kdbusaddons/Makefile index 98734a4f1cb2..438885958288 100644 --- a/devel/kf5-kdbusaddons/Makefile +++ b/devel/kf5-kdbusaddons/Makefile @@ -1,16 +1,15 @@ PORTNAME= kdbusaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtDBus LICENSE= LGPL21+ USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm:build USE_QT= core dbus gui x11extras \ buildtools:build linguisttools:build qmake:build testlib:build .include diff --git a/devel/kf5-kdbusaddons/distinfo b/devel/kf5-kdbusaddons/distinfo index fff4bc58354b..a5eecb552b64 100644 --- a/devel/kf5-kdbusaddons/distinfo +++ b/devel/kf5-kdbusaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267407 -SHA256 (KDE/frameworks/5.102.0/kdbusaddons-5.102.0.tar.xz) = f1bbee6eed45614fd373bf735a5752d718c8dc590f101dae2b3dae348e9d1ad3 -SIZE (KDE/frameworks/5.102.0/kdbusaddons-5.102.0.tar.xz) = 48348 +TIMESTAMP = 1675703236 +SHA256 (KDE/frameworks/5.103.0/kdbusaddons-5.103.0.tar.xz) = c675b706ab2b49c4f7de805fdf9e2a5e00419bd856df7af0fd6a2a6628eba4e3 +SIZE (KDE/frameworks/5.103.0/kdbusaddons-5.103.0.tar.xz) = 48616 diff --git a/devel/kf5-kdbusaddons/pkg-plist b/devel/kf5-kdbusaddons/pkg-plist index b71c3d11095a..1fa99e2de034 100644 --- a/devel/kf5-kdbusaddons/pkg-plist +++ b/devel/kf5-kdbusaddons/pkg-plist @@ -1,78 +1,79 @@ bin/kquitapp5 include/KF5/KDBusAddons/KDBusConnectionPool include/KF5/KDBusAddons/KDBusInterProcessLock include/KF5/KDBusAddons/KDBusService include/KF5/KDBusAddons/KDEDModule include/KF5/KDBusAddons/KDEInitInterface include/KF5/KDBusAddons/UpdateLaunchEnvironmentJob include/KF5/KDBusAddons/kdbusaddons_export.h include/KF5/KDBusAddons/kdbusaddons_version.h include/KF5/KDBusAddons/kdbusconnectionpool.h include/KF5/KDBusAddons/kdbusinterprocesslock.h include/KF5/KDBusAddons/kdbusservice.h include/KF5/KDBusAddons/kdedmodule.h include/KF5/KDBusAddons/kdeinitinterface.h include/KF5/KDBusAddons/updatelaunchenvironmentjob.h lib/cmake/KF5DBusAddons/KF5DBusAddonsConfig.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsConfigVersion.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsMacros.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DBusAddons/KF5DBusAddonsTargets.cmake lib/cmake/KF5DBusAddons/KF5dbus.service.in lib/libKF5DBusAddons.so lib/libKF5DBusAddons.so.5 lib/libKF5DBusAddons.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KDBusAddons.pri share/locale/ar/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/az/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/bg/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/bs/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ca/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/cs/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/da/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/de/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/el/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/es/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/et/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/eu/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/fi/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/fr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/gd/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/gl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/hi/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/hu/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ia/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/id/LC_MESSAGES/kdbusaddons5_qt.qm +share/locale/is/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/it/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ja/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ka/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ko/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/lt/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ml/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nb/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nds/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/nn/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pa/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pt/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/pt_BR/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ro/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/ru/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/se/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sk/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sl/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sr@latin/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/sv/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/tg/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/tr/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/uk/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kdbusaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kdbusaddons5_qt.qm share/qlogging-categories5/kdbusaddons.categories share/qlogging-categories5/kdbusaddons.renamecategories diff --git a/devel/kf5-kdeclarative/distinfo b/devel/kf5-kdeclarative/distinfo index bf0e37d00bda..8fe31c5ed823 100644 --- a/devel/kf5-kdeclarative/distinfo +++ b/devel/kf5-kdeclarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267408 -SHA256 (KDE/frameworks/5.102.0/kdeclarative-5.102.0.tar.xz) = 0ad46234d48034da8c195fececf66392e876c61ad0a328f4ea91c72d6bc87c77 -SIZE (KDE/frameworks/5.102.0/kdeclarative-5.102.0.tar.xz) = 2491312 +TIMESTAMP = 1675703237 +SHA256 (KDE/frameworks/5.103.0/kdeclarative-5.103.0.tar.xz) = b6ca5cfb000cd1ed10af6884152fb21b5f8e9fb1041c53c36244435265ffb252 +SIZE (KDE/frameworks/5.103.0/kdeclarative-5.103.0.tar.xz) = 2491428 diff --git a/devel/kf5-kdoctools/distinfo b/devel/kf5-kdoctools/distinfo index d8321efa02e9..ce4ef9203b6d 100644 --- a/devel/kf5-kdoctools/distinfo +++ b/devel/kf5-kdoctools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267409 -SHA256 (KDE/frameworks/5.102.0/kdoctools-5.102.0.tar.xz) = 23bc59ad1de668b03f81470d08e707be49a7c751a57ae7cf7400a84d6b38e685 -SIZE (KDE/frameworks/5.102.0/kdoctools-5.102.0.tar.xz) = 462848 +TIMESTAMP = 1675703238 +SHA256 (KDE/frameworks/5.103.0/kdoctools-5.103.0.tar.xz) = ba5782de152606269a3589ae560bab2ce6709b85f0e07181fe3ef6ebd6ace4a8 +SIZE (KDE/frameworks/5.103.0/kdoctools-5.103.0.tar.xz) = 462668 diff --git a/devel/kf5-kfilemetadata/distinfo b/devel/kf5-kfilemetadata/distinfo index d8887f28aaa1..23ada2c34fab 100644 --- a/devel/kf5-kfilemetadata/distinfo +++ b/devel/kf5-kfilemetadata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267410 -SHA256 (KDE/frameworks/5.102.0/kfilemetadata-5.102.0.tar.xz) = cc893f0b0c151695dad05489aa248c86aa4efb7b5eb52b768550f371711e634f -SIZE (KDE/frameworks/5.102.0/kfilemetadata-5.102.0.tar.xz) = 469548 +TIMESTAMP = 1675703238 +SHA256 (KDE/frameworks/5.103.0/kfilemetadata-5.103.0.tar.xz) = 498c9cfc82f455f2b74515c95061a92fe88ea6fb6db51867d6ea5249db9620c0 +SIZE (KDE/frameworks/5.103.0/kfilemetadata-5.103.0.tar.xz) = 469548 diff --git a/devel/kf5-ki18n/distinfo b/devel/kf5-ki18n/distinfo index 62f06e921853..abf3ae73f13e 100644 --- a/devel/kf5-ki18n/distinfo +++ b/devel/kf5-ki18n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267411 -SHA256 (KDE/frameworks/5.102.0/ki18n-5.102.0.tar.xz) = 9ce380a9c3e40861fabe78e677c6cd826be4ced707cf87c6507251acb81c9f47 -SIZE (KDE/frameworks/5.102.0/ki18n-5.102.0.tar.xz) = 3128508 +TIMESTAMP = 1675703239 +SHA256 (KDE/frameworks/5.103.0/ki18n-5.103.0.tar.xz) = 38ea91627f427d9ab74ebaa278163a5a94af2eaba5ac9e3d16a472d9457840e6 +SIZE (KDE/frameworks/5.103.0/ki18n-5.103.0.tar.xz) = 3128340 diff --git a/devel/kf5-kidletime/distinfo b/devel/kf5-kidletime/distinfo index 78de175c760d..a04e65efa91c 100644 --- a/devel/kf5-kidletime/distinfo +++ b/devel/kf5-kidletime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267411 -SHA256 (KDE/frameworks/5.102.0/kidletime-5.102.0.tar.xz) = 0e23d46c2027617743c1beb6915d359846e47ffa11081c2714b7fdc3f7ce2f95 -SIZE (KDE/frameworks/5.102.0/kidletime-5.102.0.tar.xz) = 30848 +TIMESTAMP = 1675703240 +SHA256 (KDE/frameworks/5.103.0/kidletime-5.103.0.tar.xz) = b0f150367114ad1c97f2fca3d43643292cc0fbf87035f931fb55b63bab349842 +SIZE (KDE/frameworks/5.103.0/kidletime-5.103.0.tar.xz) = 30844 diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo index bea6b2917c62..4f29ef19c20c 100644 --- a/devel/kf5-kio/distinfo +++ b/devel/kf5-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673703685 -SHA256 (KDE/frameworks/5.102.0/kio-5.102.0.tar.xz) = 6a9417c01ecf6681ee41ad0d3f7723dc9dbbbe620cd4bead70b4ebae068e716b -SIZE (KDE/frameworks/5.102.0/kio-5.102.0.tar.xz) = 3769416 +TIMESTAMP = 1675703241 +SHA256 (KDE/frameworks/5.103.0/kio-5.103.0.tar.xz) = 0b4837365aa489cc4007badb21f49e7d7729b758020cf2a0717ab12fbf97f447 +SIZE (KDE/frameworks/5.103.0/kio-5.103.0.tar.xz) = 3769424 diff --git a/devel/kf5-kio/pkg-plist b/devel/kf5-kio/pkg-plist index 5367bf401547..b9c347c2ca16 100644 --- a/devel/kf5-kio/pkg-plist +++ b/devel/kf5-kio/pkg-plist @@ -1,1068 +1,1038 @@ 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/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/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/mailto/index.cache.bz2 -share/doc/HTML/ca/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/ca@valencia/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/de/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/en/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/es/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/et/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/fr/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/it/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/nl/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/pt/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/pt_BR/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/sr/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/sr@latin/kioslave5/mailto/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/mailto/index.cache.bz2 -share/doc/HTML/sv/kioslave5/mailto/index.docbook share/doc/HTML/sv/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sv/kioslave5/webdav/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/mailto/index.cache.bz2 -share/doc/HTML/uk/kioslave5/mailto/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 ce2f2e51871c..8e31de78621d 100644 --- a/devel/kf5-kitemmodels/distinfo +++ b/devel/kf5-kitemmodels/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267413 -SHA256 (KDE/frameworks/5.102.0/kitemmodels-5.102.0.tar.xz) = 52f773f8969f07dd42c0f9afc5f9a604c8c450915228ada70b1058bae87938a6 -SIZE (KDE/frameworks/5.102.0/kitemmodels-5.102.0.tar.xz) = 407232 +TIMESTAMP = 1675703242 +SHA256 (KDE/frameworks/5.103.0/kitemmodels-5.103.0.tar.xz) = 356c4d6fa808f2cad93629e7362b0cc95e0217b116ac9e07429c8f0d18a370cb +SIZE (KDE/frameworks/5.103.0/kitemmodels-5.103.0.tar.xz) = 407144 diff --git a/devel/kf5-knewstuff/distinfo b/devel/kf5-knewstuff/distinfo index 66bf35a58d91..f522af6515f2 100644 --- a/devel/kf5-knewstuff/distinfo +++ b/devel/kf5-knewstuff/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267414 -SHA256 (KDE/frameworks/5.102.0/knewstuff-5.102.0.tar.xz) = e5bf319cfff478d37c27ea096d76d25fd6c3bd8eeeebc94ca507db78dd26fc88 -SIZE (KDE/frameworks/5.102.0/knewstuff-5.102.0.tar.xz) = 3406384 +TIMESTAMP = 1675703243 +SHA256 (KDE/frameworks/5.103.0/knewstuff-5.103.0.tar.xz) = 46ba797c01fa258585968c5cad0051323cc24b7cc794714fefd7a79c1deab78e +SIZE (KDE/frameworks/5.103.0/knewstuff-5.103.0.tar.xz) = 3410760 diff --git a/devel/kf5-knewstuff/pkg-plist b/devel/kf5-knewstuff/pkg-plist index 0ab66fbe14a7..603e58105f3b 100644 --- a/devel/kf5-knewstuff/pkg-plist +++ b/devel/kf5-knewstuff/pkg-plist @@ -1,305 +1,306 @@ bin/knewstuff-dialog include/KF5/KMoreTools/KMoreTools include/KF5/KMoreTools/KMoreToolsMenuFactory include/KF5/KMoreTools/KMoreToolsPresets include/KF5/KMoreTools/kmoretools.h include/KF5/KMoreTools/kmoretoolsmenufactory.h include/KF5/KMoreTools/kmoretoolspresets.h include/KF5/KNewStuff3/KNS3/Button include/KF5/KNewStuff3/KNS3/DownloadDialog include/KF5/KNewStuff3/KNS3/DownloadManager include/KF5/KNewStuff3/KNS3/DownloadWidget include/KF5/KNewStuff3/KNS3/Entry include/KF5/KNewStuff3/KNS3/KMoreTools include/KF5/KNewStuff3/KNS3/KMoreToolsMenuFactory include/KF5/KNewStuff3/KNS3/KMoreToolsPresets include/KF5/KNewStuff3/KNS3/QtQuickDialogWrapper include/KF5/KNewStuff3/KNS3/UploadDialog include/KF5/KNewStuff3/KNS3/button.h include/KF5/KNewStuff3/KNS3/downloaddialog.h include/KF5/KNewStuff3/KNS3/downloadmanager.h include/KF5/KNewStuff3/KNS3/downloadwidget.h include/KF5/KNewStuff3/KNS3/entry.h include/KF5/KNewStuff3/KNS3/kmoretools.h include/KF5/KNewStuff3/KNS3/kmoretoolsmenufactory.h include/KF5/KNewStuff3/KNS3/kmoretoolspresets.h include/KF5/KNewStuff3/KNS3/knewstuff_export.h include/KF5/KNewStuff3/KNS3/knewstuffaction.h include/KF5/KNewStuff3/KNS3/qtquickdialogwrapper.h include/KF5/KNewStuff3/KNS3/uploaddialog.h include/KF5/KNewStuff3/KNSCore/Author include/KF5/KNewStuff3/KNSCore/Cache include/KF5/KNewStuff3/KNSCore/DownloadManager include/KF5/KNewStuff3/KNSCore/Engine include/KF5/KNewStuff3/KNSCore/EntryInternal include/KF5/KNewStuff3/KNSCore/EntryWrapper include/KF5/KNewStuff3/KNSCore/ErrorCode include/KF5/KNewStuff3/KNSCore/Installation include/KF5/KNewStuff3/KNSCore/ItemsModel include/KF5/KNewStuff3/KNSCore/Provider include/KF5/KNewStuff3/KNSCore/ProvidersModel include/KF5/KNewStuff3/KNSCore/Question include/KF5/KNewStuff3/KNSCore/QuestionListener include/KF5/KNewStuff3/KNSCore/QuestionManager include/KF5/KNewStuff3/KNSCore/Security include/KF5/KNewStuff3/KNSCore/TagsFilterChecker include/KF5/KNewStuff3/KNSCore/XmlLoader include/KF5/KNewStuff3/KNSCore/author.h include/KF5/KNewStuff3/KNSCore/cache.h include/KF5/KNewStuff3/KNSCore/downloadmanager.h include/KF5/KNewStuff3/KNSCore/engine.h include/KF5/KNewStuff3/KNSCore/entryinternal.h include/KF5/KNewStuff3/KNSCore/entrywrapper.h include/KF5/KNewStuff3/KNSCore/errorcode.h include/KF5/KNewStuff3/KNSCore/installation.h include/KF5/KNewStuff3/KNSCore/itemsmodel.h include/KF5/KNewStuff3/KNSCore/knewstuffcore_export.h include/KF5/KNewStuff3/KNSCore/provider.h include/KF5/KNewStuff3/KNSCore/providersmodel.h include/KF5/KNewStuff3/KNSCore/question.h include/KF5/KNewStuff3/KNSCore/questionlistener.h include/KF5/KNewStuff3/KNSCore/questionmanager.h include/KF5/KNewStuff3/KNSCore/security.h include/KF5/KNewStuff3/KNSCore/tagsfilterchecker.h include/KF5/KNewStuff3/KNSCore/xmlloader.h include/KF5/KNewStuff3/KNSWidgets/Action include/KF5/KNewStuff3/KNSWidgets/Button include/KF5/KNewStuff3/KNSWidgets/action.h include/KF5/KNewStuff3/KNSWidgets/button.h include/KF5/KNewStuff3/KNSWidgets/knewstuffwidgets_export.h include/KF5/KNewStuff3/knewstuff_version.h include/KF5/KNewStuff3/knewstuffcore_version.h include/KF5/KNewStuff3/knewstuffquick_version.h include/KF5/KNewStuff3/kns3/button.h include/KF5/KNewStuff3/kns3/downloaddialog.h include/KF5/KNewStuff3/kns3/downloadmanager.h include/KF5/KNewStuff3/kns3/downloadwidget.h include/KF5/KNewStuff3/kns3/entry.h include/KF5/KNewStuff3/kns3/kmoretools.h include/KF5/KNewStuff3/kns3/kmoretoolsmenufactory.h include/KF5/KNewStuff3/kns3/kmoretoolspresets.h include/KF5/KNewStuff3/kns3/knewstuff_export.h include/KF5/KNewStuff3/kns3/knewstuffaction.h include/KF5/KNewStuff3/kns3/qtquickdialogwrapper.h include/KF5/KNewStuff3/kns3/uploaddialog.h include/KF5/KNewStuff3/knscore/author.h include/KF5/KNewStuff3/knscore/cache.h include/KF5/KNewStuff3/knscore/downloadmanager.h include/KF5/KNewStuff3/knscore/engine.h include/KF5/KNewStuff3/knscore/entryinternal.h include/KF5/KNewStuff3/knscore/entrywrapper.h include/KF5/KNewStuff3/knscore/errorcode.h include/KF5/KNewStuff3/knscore/installation.h include/KF5/KNewStuff3/knscore/itemsmodel.h include/KF5/KNewStuff3/knscore/knewstuffcore_export.h include/KF5/KNewStuff3/knscore/provider.h include/KF5/KNewStuff3/knscore/providersmodel.h include/KF5/KNewStuff3/knscore/question.h include/KF5/KNewStuff3/knscore/questionlistener.h include/KF5/KNewStuff3/knscore/questionmanager.h include/KF5/KNewStuff3/knscore/security.h include/KF5/KNewStuff3/knscore/tagsfilterchecker.h include/KF5/KNewStuff3/knscore/xmlloader.h include/KF5/KNewStuff3/knswidgets/action.h include/KF5/KNewStuff3/knswidgets/button.h include/KF5/KNewStuff3/knswidgets/knewstuffwidgets_export.h lib/cmake/KF5NewStuff/KF5NewStuffConfig.cmake lib/cmake/KF5NewStuff/KF5NewStuffConfigVersion.cmake lib/cmake/KF5NewStuff/KF5NewStuffTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5NewStuff/KF5NewStuffTargets.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreConfig.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreConfigVersion.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreTargets.cmake lib/cmake/KF5NewStuffQuick/KF5NewStuffQuickConfig.cmake lib/cmake/KF5NewStuffQuick/KF5NewStuffQuickConfigVersion.cmake lib/libKF5NewStuff.so lib/libKF5NewStuff.so.5 lib/libKF5NewStuff.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5NewStuffCore.so lib/libKF5NewStuffCore.so.5 lib/libKF5NewStuffCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5NewStuffWidgets.so lib/libKF5NewStuffWidgets.so.5 lib/libKF5NewStuffWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KNewStuff.pri %%QT_MKSPECDIR%%/modules/qt_KNewStuffCore.pri %%QT_PLUGINDIR%%/designer/knewstuffwidgets.so %%QT_QMLDIR%%/org/kde/newstuff/Action.qml %%QT_QMLDIR%%/org/kde/newstuff/Button.qml %%QT_QMLDIR%%/org/kde/newstuff/Dialog.qml %%QT_QMLDIR%%/org/kde/newstuff/DialogContent.qml %%QT_QMLDIR%%/org/kde/newstuff/DownloadItemsSheet.qml %%QT_QMLDIR%%/org/kde/newstuff/EntryDetails.qml %%QT_QMLDIR%%/org/kde/newstuff/NewStuffItem.qml %%QT_QMLDIR%%/org/kde/newstuff/NewStuffList.qml %%QT_QMLDIR%%/org/kde/newstuff/Page.qml %%QT_QMLDIR%%/org/kde/newstuff/QuestionAsker.qml %%QT_QMLDIR%%/org/kde/newstuff/UploadPage.qml %%QT_QMLDIR%%/org/kde/newstuff/libnewstuffqmlplugin.so %%QT_QMLDIR%%/org/kde/newstuff/private/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryCommentDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryCommentsPage.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryScreenshots.qml %%QT_QMLDIR%%/org/kde/newstuff/private/ErrorDisplayer.qml %%QT_QMLDIR%%/org/kde/newstuff/private/GridTileDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/MessageBoxSheet.qml %%QT_QMLDIR%%/org/kde/newstuff/private/Rating.qml %%QT_QMLDIR%%/org/kde/newstuff/private/Shadow.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/BigPreviewDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/FeedbackOverlay.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/ThumbDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/TileDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/qmldir +share/applications/org.kde.knewstuff-dialog.desktop share/kf5/kmoretools/presets-kmoretools/_README.md share/kf5/kmoretools/presets-kmoretools/angrysearch.desktop share/kf5/kmoretools/presets-kmoretools/catfish.desktop share/kf5/kmoretools/presets-kmoretools/com.obsproject.Studio.desktop share/kf5/kmoretools/presets-kmoretools/com.obsproject.Studio.png share/kf5/kmoretools/presets-kmoretools/com.uploadedlobster.peek.desktop share/kf5/kmoretools/presets-kmoretools/ding.desktop share/kf5/kmoretools/presets-kmoretools/disk.desktop share/kf5/kmoretools/presets-kmoretools/filelight.svg share/kf5/kmoretools/presets-kmoretools/fontinst.desktop share/kf5/kmoretools/presets-kmoretools/fontmatrix.desktop share/kf5/kmoretools/presets-kmoretools/fsearch.desktop share/kf5/kmoretools/presets-kmoretools/giggle.desktop share/kf5/kmoretools/presets-kmoretools/git-cola-folder-handler.desktop share/kf5/kmoretools/presets-kmoretools/git-cola-view-history.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/git-cola.desktop share/kf5/kmoretools/presets-kmoretools/git-cola.svg share/kf5/kmoretools/presets-kmoretools/gitg.desktop share/kf5/kmoretools/presets-kmoretools/gitg.png share/kf5/kmoretools/presets-kmoretools/gitk.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/gnome-search-tool.desktop share/kf5/kmoretools/presets-kmoretools/gparted.desktop share/kf5/kmoretools/presets-kmoretools/gparted.png share/kf5/kmoretools/presets-kmoretools/gucharmap.desktop share/kf5/kmoretools/presets-kmoretools/hotshots.desktop share/kf5/kmoretools/presets-kmoretools/hotshots.png share/kf5/kmoretools/presets-kmoretools/htop.desktop share/kf5/kmoretools/presets-kmoretools/kaption.desktop share/kf5/kmoretools/presets-kmoretools/kaption.desktop.TODO share/kf5/kmoretools/presets-kmoretools/kding.desktop share/kf5/kmoretools/presets-kmoretools/org.gnome.clocks.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.filelight.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kcharselect.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kdf.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kfind.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kmousetool.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ksysguard.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ksystemlog.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ktimer.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.partitionmanager.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.plasma.cuttlefish.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.spectacle.desktop share/kf5/kmoretools/presets-kmoretools/qgit.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/shutter.desktop share/kf5/kmoretools/presets-kmoretools/shutter.desktop.TODO share/kf5/kmoretools/presets-kmoretools/shutter.svg share/kf5/kmoretools/presets-kmoretools/simplescreenrecorder.desktop share/kf5/kmoretools/presets-kmoretools/vokoscreenNG.desktop share/kf5/kmoretools/presets-kmoretools/vokoscreenNG.png share/kf5/kmoretools/presets-kmoretools/xfce4-taskmanager.desktop share/locale/af/LC_MESSAGES/knewstuff5.mo share/locale/ar/LC_MESSAGES/knewstuff5.mo share/locale/as/LC_MESSAGES/knewstuff5.mo share/locale/az/LC_MESSAGES/knewstuff5.mo share/locale/be/LC_MESSAGES/knewstuff5.mo share/locale/be@latin/LC_MESSAGES/knewstuff5.mo share/locale/bg/LC_MESSAGES/knewstuff5.mo share/locale/bn/LC_MESSAGES/knewstuff5.mo share/locale/bn_IN/LC_MESSAGES/knewstuff5.mo share/locale/br/LC_MESSAGES/knewstuff5.mo share/locale/bs/LC_MESSAGES/knewstuff5.mo share/locale/ca/LC_MESSAGES/knewstuff5.mo share/locale/ca@valencia/LC_MESSAGES/knewstuff5.mo share/locale/crh/LC_MESSAGES/knewstuff5.mo share/locale/cs/LC_MESSAGES/knewstuff5.mo share/locale/csb/LC_MESSAGES/knewstuff5.mo share/locale/cy/LC_MESSAGES/knewstuff5.mo share/locale/da/LC_MESSAGES/knewstuff5.mo share/locale/de/LC_MESSAGES/knewstuff5.mo share/locale/el/LC_MESSAGES/knewstuff5.mo share/locale/en_GB/LC_MESSAGES/knewstuff5.mo share/locale/eo/LC_MESSAGES/knewstuff5.mo share/locale/es/LC_MESSAGES/knewstuff5.mo share/locale/et/LC_MESSAGES/knewstuff5.mo share/locale/eu/LC_MESSAGES/knewstuff5.mo share/locale/fa/LC_MESSAGES/knewstuff5.mo share/locale/fi/LC_MESSAGES/knewstuff5.mo share/locale/fr/LC_MESSAGES/knewstuff5.mo share/locale/fy/LC_MESSAGES/knewstuff5.mo share/locale/ga/LC_MESSAGES/knewstuff5.mo share/locale/gd/LC_MESSAGES/knewstuff5.mo share/locale/gl/LC_MESSAGES/knewstuff5.mo share/locale/gu/LC_MESSAGES/knewstuff5.mo share/locale/ha/LC_MESSAGES/knewstuff5.mo share/locale/he/LC_MESSAGES/knewstuff5.mo share/locale/hi/LC_MESSAGES/knewstuff5.mo share/locale/hne/LC_MESSAGES/knewstuff5.mo share/locale/hr/LC_MESSAGES/knewstuff5.mo share/locale/hsb/LC_MESSAGES/knewstuff5.mo share/locale/hu/LC_MESSAGES/knewstuff5.mo share/locale/hy/LC_MESSAGES/knewstuff5.mo share/locale/ia/LC_MESSAGES/knewstuff5.mo share/locale/id/LC_MESSAGES/knewstuff5.mo share/locale/is/LC_MESSAGES/knewstuff5.mo share/locale/it/LC_MESSAGES/knewstuff5.mo share/locale/ja/LC_MESSAGES/knewstuff5.mo share/locale/ka/LC_MESSAGES/knewstuff5.mo share/locale/kk/LC_MESSAGES/knewstuff5.mo share/locale/km/LC_MESSAGES/knewstuff5.mo share/locale/kn/LC_MESSAGES/knewstuff5.mo share/locale/ko/LC_MESSAGES/knewstuff5.mo share/locale/ku/LC_MESSAGES/knewstuff5.mo share/locale/lb/LC_MESSAGES/knewstuff5.mo share/locale/lt/LC_MESSAGES/knewstuff5.mo share/locale/lv/LC_MESSAGES/knewstuff5.mo share/locale/mai/LC_MESSAGES/knewstuff5.mo share/locale/mk/LC_MESSAGES/knewstuff5.mo share/locale/ml/LC_MESSAGES/knewstuff5.mo share/locale/mr/LC_MESSAGES/knewstuff5.mo share/locale/ms/LC_MESSAGES/knewstuff5.mo share/locale/nb/LC_MESSAGES/knewstuff5.mo share/locale/nds/LC_MESSAGES/knewstuff5.mo share/locale/ne/LC_MESSAGES/knewstuff5.mo share/locale/nl/LC_MESSAGES/knewstuff5.mo share/locale/nn/LC_MESSAGES/knewstuff5.mo share/locale/oc/LC_MESSAGES/knewstuff5.mo share/locale/or/LC_MESSAGES/knewstuff5.mo share/locale/pa/LC_MESSAGES/knewstuff5.mo share/locale/pl/LC_MESSAGES/knewstuff5.mo share/locale/ps/LC_MESSAGES/knewstuff5.mo share/locale/pt/LC_MESSAGES/knewstuff5.mo share/locale/pt_BR/LC_MESSAGES/knewstuff5.mo share/locale/ro/LC_MESSAGES/knewstuff5.mo share/locale/ru/LC_MESSAGES/knewstuff5.mo share/locale/se/LC_MESSAGES/knewstuff5.mo share/locale/si/LC_MESSAGES/knewstuff5.mo share/locale/sk/LC_MESSAGES/knewstuff5.mo share/locale/sl/LC_MESSAGES/knewstuff5.mo share/locale/sq/LC_MESSAGES/knewstuff5.mo share/locale/sr/LC_MESSAGES/knewstuff5.mo share/locale/sr@ijekavian/LC_MESSAGES/knewstuff5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knewstuff5.mo share/locale/sr@latin/LC_MESSAGES/knewstuff5.mo share/locale/sv/LC_MESSAGES/knewstuff5.mo share/locale/ta/LC_MESSAGES/knewstuff5.mo share/locale/te/LC_MESSAGES/knewstuff5.mo share/locale/tg/LC_MESSAGES/knewstuff5.mo share/locale/th/LC_MESSAGES/knewstuff5.mo share/locale/tr/LC_MESSAGES/knewstuff5.mo share/locale/tt/LC_MESSAGES/knewstuff5.mo share/locale/ug/LC_MESSAGES/knewstuff5.mo share/locale/uk/LC_MESSAGES/knewstuff5.mo share/locale/uz/LC_MESSAGES/knewstuff5.mo share/locale/uz@cyrillic/LC_MESSAGES/knewstuff5.mo share/locale/vi/LC_MESSAGES/knewstuff5.mo share/locale/wa/LC_MESSAGES/knewstuff5.mo share/locale/xh/LC_MESSAGES/knewstuff5.mo share/locale/zh_CN/LC_MESSAGES/knewstuff5.mo share/locale/zh_HK/LC_MESSAGES/knewstuff5.mo share/locale/zh_TW/LC_MESSAGES/knewstuff5.mo share/qlogging-categories5/knewstuff.categories share/qlogging-categories5/knewstuff.renamecategories diff --git a/devel/kf5-knotifications/distinfo b/devel/kf5-knotifications/distinfo index 301751f9e4bb..fd558c009d71 100644 --- a/devel/kf5-knotifications/distinfo +++ b/devel/kf5-knotifications/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267415 -SHA256 (KDE/frameworks/5.102.0/knotifications-5.102.0.tar.xz) = 93ce6aaf04232f3cf956beb98721dc1948a97a9ec52340395555799bfa97baf8 -SIZE (KDE/frameworks/5.102.0/knotifications-5.102.0.tar.xz) = 2372500 +TIMESTAMP = 1675703244 +SHA256 (KDE/frameworks/5.103.0/knotifications-5.103.0.tar.xz) = 8f3ccd6a0303408fecb1e5d9ceb22cbdbf9b1ceb08a92d32b7167dd5e2a8d936 +SIZE (KDE/frameworks/5.103.0/knotifications-5.103.0.tar.xz) = 2372848 diff --git a/devel/kf5-knotifyconfig/distinfo b/devel/kf5-knotifyconfig/distinfo index 01effa1bcd85..9953b95cc0be 100644 --- a/devel/kf5-knotifyconfig/distinfo +++ b/devel/kf5-knotifyconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267415 -SHA256 (KDE/frameworks/5.102.0/knotifyconfig-5.102.0.tar.xz) = 08e20422083f0171d5d9b55e666d132d938d523b4fa6257b1e3c0075d8b74817 -SIZE (KDE/frameworks/5.102.0/knotifyconfig-5.102.0.tar.xz) = 2430320 +TIMESTAMP = 1675703245 +SHA256 (KDE/frameworks/5.103.0/knotifyconfig-5.103.0.tar.xz) = 5aba75b515b8a95b54edf3245ecdb3338bad37f296f0e95b012905a35bd1297d +SIZE (KDE/frameworks/5.103.0/knotifyconfig-5.103.0.tar.xz) = 2431236 diff --git a/devel/kf5-kpackage/distinfo b/devel/kf5-kpackage/distinfo index e74b042ebd72..6f05da445111 100644 --- a/devel/kf5-kpackage/distinfo +++ b/devel/kf5-kpackage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267416 -SHA256 (KDE/frameworks/5.102.0/kpackage-5.102.0.tar.xz) = 83d891ea7d35c3d3b0745fd75af31b6495fa5ec67503b5ed9091d134701b5a55 -SIZE (KDE/frameworks/5.102.0/kpackage-5.102.0.tar.xz) = 187040 +TIMESTAMP = 1675703245 +SHA256 (KDE/frameworks/5.103.0/kpackage-5.103.0.tar.xz) = 6b5b04be5c01a123fd5158ac2a62fb0aac823bb68a0d80b4daf537c460699b95 +SIZE (KDE/frameworks/5.103.0/kpackage-5.103.0.tar.xz) = 187044 diff --git a/devel/kf5-kparts/distinfo b/devel/kf5-kparts/distinfo index 3b25a45ebbb2..4dd56c3febdc 100644 --- a/devel/kf5-kparts/distinfo +++ b/devel/kf5-kparts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267417 -SHA256 (KDE/frameworks/5.102.0/kparts-5.102.0.tar.xz) = 37caeeb5e66bbec0d38b76c1a0ea3085be77d581375a4837f5717e7e1d616f1f -SIZE (KDE/frameworks/5.102.0/kparts-5.102.0.tar.xz) = 2472284 +TIMESTAMP = 1675703246 +SHA256 (KDE/frameworks/5.103.0/kparts-5.103.0.tar.xz) = 5f0d2fc481cb227675b9d9d1a9dc0c97cfc286cbf33c8035fa63e1bacf93b571 +SIZE (KDE/frameworks/5.103.0/kparts-5.103.0.tar.xz) = 2473512 diff --git a/devel/kf5-kpeople/distinfo b/devel/kf5-kpeople/distinfo index 179bcae2cc16..b39f3c79e47e 100644 --- a/devel/kf5-kpeople/distinfo +++ b/devel/kf5-kpeople/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267418 -SHA256 (KDE/frameworks/5.102.0/kpeople-5.102.0.tar.xz) = 623743a8521a8eace1d0006f6e5f8300cdd1fdb40b22e7cd5f61cbf1154720f2 -SIZE (KDE/frameworks/5.102.0/kpeople-5.102.0.tar.xz) = 62976 +TIMESTAMP = 1675703247 +SHA256 (KDE/frameworks/5.103.0/kpeople-5.103.0.tar.xz) = 15d5dedaf8d78c6ac776895e4dcaee7bd83a74a4556d42d5a3aa713a1978382c +SIZE (KDE/frameworks/5.103.0/kpeople-5.103.0.tar.xz) = 62976 diff --git a/devel/kf5-kpty/distinfo b/devel/kf5-kpty/distinfo index d09dc97857f6..04707d546251 100644 --- a/devel/kf5-kpty/distinfo +++ b/devel/kf5-kpty/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267419 -SHA256 (KDE/frameworks/5.102.0/kpty-5.102.0.tar.xz) = ff95c35d5cd5757e606d86aa386449e43a652992767def136a759f2de976a738 -SIZE (KDE/frameworks/5.102.0/kpty-5.102.0.tar.xz) = 2445704 +TIMESTAMP = 1675703248 +SHA256 (KDE/frameworks/5.103.0/kpty-5.103.0.tar.xz) = 9ae6f89378f117ec5ff49d398acc848d5bc8fb6f1d5cda28cfcd65627580ea49 +SIZE (KDE/frameworks/5.103.0/kpty-5.103.0.tar.xz) = 2445736 diff --git a/devel/kf5-kservice/distinfo b/devel/kf5-kservice/distinfo index beb489ec339c..6ae63b435bc4 100644 --- a/devel/kf5-kservice/distinfo +++ b/devel/kf5-kservice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267419 -SHA256 (KDE/frameworks/5.102.0/kservice-5.102.0.tar.xz) = 7063862f169095a2a3d5a4594e7724b74b5e50dd1f5b16fcc0fde0ba16d99ade -SIZE (KDE/frameworks/5.102.0/kservice-5.102.0.tar.xz) = 2537444 +TIMESTAMP = 1675703249 +SHA256 (KDE/frameworks/5.103.0/kservice-5.103.0.tar.xz) = d8a03b319d3b386594098e9ffe95bfcd32a7d34172cb5a0e35dd4c7c48ed0a39 +SIZE (KDE/frameworks/5.103.0/kservice-5.103.0.tar.xz) = 2537648 diff --git a/devel/kf5-ktexteditor/distinfo b/devel/kf5-ktexteditor/distinfo index ae9a6500f397..880eb6892913 100644 --- a/devel/kf5-ktexteditor/distinfo +++ b/devel/kf5-ktexteditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267420 -SHA256 (KDE/frameworks/5.102.0/ktexteditor-5.102.0.tar.xz) = 5cc8b93caa2afa2a0b2432f147961dc8668a645ef2b8f996cc4b4d9b0d8a73cf -SIZE (KDE/frameworks/5.102.0/ktexteditor-5.102.0.tar.xz) = 2751384 +TIMESTAMP = 1675703250 +SHA256 (KDE/frameworks/5.103.0/ktexteditor-5.103.0.tar.xz) = 622c651dabde55956c14d5a0be50cadd0da109e128327352851c9199bbeee50f +SIZE (KDE/frameworks/5.103.0/ktexteditor-5.103.0.tar.xz) = 2754964 diff --git a/devel/kf5-kunitconversion/distinfo b/devel/kf5-kunitconversion/distinfo index 30945dd07cf5..2ea5b000eda5 100644 --- a/devel/kf5-kunitconversion/distinfo +++ b/devel/kf5-kunitconversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267421 -SHA256 (KDE/frameworks/5.102.0/kunitconversion-5.102.0.tar.xz) = a3d5206ca8dadd16ba972a21eca2cd7074ba95dfd83022e2faa0e95cf87f8d87 -SIZE (KDE/frameworks/5.102.0/kunitconversion-5.102.0.tar.xz) = 915924 +TIMESTAMP = 1675703251 +SHA256 (KDE/frameworks/5.103.0/kunitconversion-5.103.0.tar.xz) = ede791e5fc130042fcd75f06c15ebccedc33f51888f4cb5620e91c6c49fcb077 +SIZE (KDE/frameworks/5.103.0/kunitconversion-5.103.0.tar.xz) = 930232 diff --git a/devel/kf5-solid/distinfo b/devel/kf5-solid/distinfo index 7a5efae32933..d525c9a021c2 100644 --- a/devel/kf5-solid/distinfo +++ b/devel/kf5-solid/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267422 -SHA256 (KDE/frameworks/5.102.0/solid-5.102.0.tar.xz) = 06e3d3cc7400529bb5ec05f16a4b711a72104aaa44ce1a4bc3d00e9d589ab132 -SIZE (KDE/frameworks/5.102.0/solid-5.102.0.tar.xz) = 303500 +TIMESTAMP = 1675703252 +SHA256 (KDE/frameworks/5.103.0/solid-5.103.0.tar.xz) = e067087bcfc9d18dd2bfdf7b33901ee20fcdf7ba907242adc53356fd44e3d344 +SIZE (KDE/frameworks/5.103.0/solid-5.103.0.tar.xz) = 304004 diff --git a/devel/kf5-threadweaver/distinfo b/devel/kf5-threadweaver/distinfo index 324559938893..3f344ebe4cec 100644 --- a/devel/kf5-threadweaver/distinfo +++ b/devel/kf5-threadweaver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267423 -SHA256 (KDE/frameworks/5.102.0/threadweaver-5.102.0.tar.xz) = f9297af89646e80c13fd1b1471bbffdd1d5415ceeccd643e4d72fc7e5c0db6cb -SIZE (KDE/frameworks/5.102.0/threadweaver-5.102.0.tar.xz) = 1413028 +TIMESTAMP = 1675703253 +SHA256 (KDE/frameworks/5.103.0/threadweaver-5.103.0.tar.xz) = 29bc53a18974758b6af9ab055a148c170b4f8f2e0d7f5be0fa31fb513a47ec82 +SIZE (KDE/frameworks/5.103.0/threadweaver-5.103.0.tar.xz) = 1413048 diff --git a/dns/kf5-kdnssd/distinfo b/dns/kf5-kdnssd/distinfo index 773e8c9a5a66..41693110e507 100644 --- a/dns/kf5-kdnssd/distinfo +++ b/dns/kf5-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267423 -SHA256 (KDE/frameworks/5.102.0/kdnssd-5.102.0.tar.xz) = 05a529a02dd191abd7c6671555c37dced0aba00eeac0784a7a14162003ac5c81 -SIZE (KDE/frameworks/5.102.0/kdnssd-5.102.0.tar.xz) = 2280668 +TIMESTAMP = 1675703254 +SHA256 (KDE/frameworks/5.103.0/kdnssd-5.103.0.tar.xz) = 267aab6d1bdfb2be68e65c6c4efd5ba638dea6f913bc2016f187c5b8f13645ed +SIZE (KDE/frameworks/5.103.0/kdnssd-5.103.0.tar.xz) = 2280788 diff --git a/graphics/kf5-kimageformats/distinfo b/graphics/kf5-kimageformats/distinfo index 217eedaf0510..74ae4e4591bf 100644 --- a/graphics/kf5-kimageformats/distinfo +++ b/graphics/kf5-kimageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267424 -SHA256 (KDE/frameworks/5.102.0/kimageformats-5.102.0.tar.xz) = a68b2c44e5d0e3e3ae75f1b8167de904a2ab1f7ea49b984be4cf01c5a46d49b4 -SIZE (KDE/frameworks/5.102.0/kimageformats-5.102.0.tar.xz) = 12971408 +TIMESTAMP = 1675703255 +SHA256 (KDE/frameworks/5.103.0/kimageformats-5.103.0.tar.xz) = dd7dc417aacc9dfe74745e4dfd9750129051c36502fa1cd18b92c4035d721e7e +SIZE (KDE/frameworks/5.103.0/kimageformats-5.103.0.tar.xz) = 12971556 diff --git a/graphics/kf5-kplotting/distinfo b/graphics/kf5-kplotting/distinfo index bedd25d57565..a3c7e60254b9 100644 --- a/graphics/kf5-kplotting/distinfo +++ b/graphics/kf5-kplotting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267425 -SHA256 (KDE/frameworks/5.102.0/kplotting-5.102.0.tar.xz) = 1e6bcee1822bce79b0957686327342729e2faccf59f97aa8d1e4ffc438a908e3 -SIZE (KDE/frameworks/5.102.0/kplotting-5.102.0.tar.xz) = 33740 +TIMESTAMP = 1675703255 +SHA256 (KDE/frameworks/5.103.0/kplotting-5.103.0.tar.xz) = bb3553268103eb1c0ecc10b211f78ebbf18b221757980978e9c8ff2c07086b92 +SIZE (KDE/frameworks/5.103.0/kplotting-5.103.0.tar.xz) = 33728 diff --git a/graphics/kf5-kquickcharts/distinfo b/graphics/kf5-kquickcharts/distinfo index 2a74d78aadeb..7741734b8adb 100644 --- a/graphics/kf5-kquickcharts/distinfo +++ b/graphics/kf5-kquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267426 -SHA256 (KDE/frameworks/5.102.0/kquickcharts-5.102.0.tar.xz) = 8064f9a222a0d1e55c6c09317594dd609df28314ba5e7549f168c459be1c9070 -SIZE (KDE/frameworks/5.102.0/kquickcharts-5.102.0.tar.xz) = 113312 +TIMESTAMP = 1675703256 +SHA256 (KDE/frameworks/5.103.0/kquickcharts-5.103.0.tar.xz) = a8ad8e1fbd0cf96ff97e9637eb98970c312f0e7401a3f137c65145e39ab61da5 +SIZE (KDE/frameworks/5.103.0/kquickcharts-5.103.0.tar.xz) = 113308 diff --git a/graphics/kf5-prison/distinfo b/graphics/kf5-prison/distinfo index 06627cf73cd4..a10c19abe36b 100644 --- a/graphics/kf5-prison/distinfo +++ b/graphics/kf5-prison/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673730666 -SHA256 (KDE/frameworks/5.102.0/prison-5.102.0.tar.xz) = d626312893e07cb3ab47e535cf2959e87ccd622f6e1e991d46570907892681c7 -SIZE (KDE/frameworks/5.102.0/prison-5.102.0.tar.xz) = 54944 +TIMESTAMP = 1675703257 +SHA256 (KDE/frameworks/5.103.0/prison-5.103.0.tar.xz) = 44c5f902fac041e6aeb2baa6f26a1b58b3531d500f40e0411e171d3607b0f288 +SIZE (KDE/frameworks/5.103.0/prison-5.103.0.tar.xz) = 54956 diff --git a/lang/kf5-kross/distinfo b/lang/kf5-kross/distinfo index cdd8712e82b1..de572a0945f0 100644 --- a/lang/kf5-kross/distinfo +++ b/lang/kf5-kross/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267427 -SHA256 (KDE/frameworks/5.102.0/kross-5.102.0.tar.xz) = 837b6ffead54764529b6ee92a986a1933033d30ea3878aa2be92b11227f9ab41 -SIZE (KDE/frameworks/5.102.0/kross-5.102.0.tar.xz) = 2440128 +TIMESTAMP = 1675703258 +SHA256 (KDE/frameworks/5.103.0/kross-5.103.0.tar.xz) = d863872adf437594a592aef6cc589f745ed2d5bd9ada9d4aa0ce64e9a820fc0d +SIZE (KDE/frameworks/5.103.0/kross-5.103.0.tar.xz) = 2440324 diff --git a/misc/kf5-purpose/distinfo b/misc/kf5-purpose/distinfo index a7a28299f3ef..1023457da6e5 100644 --- a/misc/kf5-purpose/distinfo +++ b/misc/kf5-purpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267428 -SHA256 (KDE/frameworks/5.102.0/purpose-5.102.0.tar.xz) = 3c82b33be6946756a0c2e2d177c03c9c8bee0ca36802e8b07aa3bf464fb7a0a8 -SIZE (KDE/frameworks/5.102.0/purpose-5.102.0.tar.xz) = 176740 +TIMESTAMP = 1675703259 +SHA256 (KDE/frameworks/5.103.0/purpose-5.103.0.tar.xz) = f308bdfc3410101468f36e5a08ee055154cf0414fb2b2db7ba569b34afdb002a +SIZE (KDE/frameworks/5.103.0/purpose-5.103.0.tar.xz) = 176740 diff --git a/multimedia/kf5-kmediaplayer/distinfo b/multimedia/kf5-kmediaplayer/distinfo index 1152caaee6cc..b4fb2ee549c6 100644 --- a/multimedia/kf5-kmediaplayer/distinfo +++ b/multimedia/kf5-kmediaplayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267429 -SHA256 (KDE/frameworks/5.102.0/kmediaplayer-5.102.0.tar.xz) = da6c644f0c176bf31d6bd75ca10042d039b8c86c2cf7a851b33689b85227be4e -SIZE (KDE/frameworks/5.102.0/kmediaplayer-5.102.0.tar.xz) = 9944 +TIMESTAMP = 1675703260 +SHA256 (KDE/frameworks/5.103.0/kmediaplayer-5.103.0.tar.xz) = 5c8bca3d3bc63ef9cc4e920dddab882d48d4d20b6a63a90566a3539c68f08faf +SIZE (KDE/frameworks/5.103.0/kmediaplayer-5.103.0.tar.xz) = 9940 diff --git a/net/kf5-kcalendarcore/distinfo b/net/kf5-kcalendarcore/distinfo index 2c874805cbdd..685716138f9d 100644 --- a/net/kf5-kcalendarcore/distinfo +++ b/net/kf5-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267430 -SHA256 (KDE/frameworks/5.102.0/kcalendarcore-5.102.0.tar.xz) = 73f59335974c3071211255a3c858ab29816c70be4b05f814b669f85b420b5568 -SIZE (KDE/frameworks/5.102.0/kcalendarcore-5.102.0.tar.xz) = 267324 +TIMESTAMP = 1675703261 +SHA256 (KDE/frameworks/5.103.0/kcalendarcore-5.103.0.tar.xz) = 77c13bb1d57ec6f30595ec2b1c77e3c68e7e60c8b8ac630d5cf4d8c8e3614edd +SIZE (KDE/frameworks/5.103.0/kcalendarcore-5.103.0.tar.xz) = 266772 diff --git a/net/kf5-kcalendarcore/pkg-plist b/net/kf5-kcalendarcore/pkg-plist index 1348f2faab78..3119a59d95a0 100644 --- a/net/kf5-kcalendarcore/pkg-plist +++ b/net/kf5-kcalendarcore/pkg-plist @@ -1,147 +1,148 @@ include/KF5/KCalendarCore/KCalCore/Alarm include/KF5/KCalendarCore/KCalCore/Attachment include/KF5/KCalendarCore/KCalCore/Attendee include/KF5/KCalendarCore/KCalCore/CalFilter include/KF5/KCalendarCore/KCalCore/CalFormat include/KF5/KCalendarCore/KCalCore/CalStorage include/KF5/KCalendarCore/KCalCore/Calendar include/KF5/KCalendarCore/KCalCore/CalendarPlugin include/KF5/KCalendarCore/KCalCore/CalendarPluginLoader include/KF5/KCalendarCore/KCalCore/Conference include/KF5/KCalendarCore/KCalCore/CustomProperties include/KF5/KCalendarCore/KCalCore/Duration include/KF5/KCalendarCore/KCalCore/Event include/KF5/KCalendarCore/KCalCore/Exceptions include/KF5/KCalendarCore/KCalCore/FileStorage include/KF5/KCalendarCore/KCalCore/FreeBusy include/KF5/KCalendarCore/KCalCore/FreeBusyCache include/KF5/KCalendarCore/KCalCore/FreeBusyPeriod include/KF5/KCalendarCore/KCalCore/ICalFormat include/KF5/KCalendarCore/KCalCore/Incidence include/KF5/KCalendarCore/KCalCore/IncidenceBase include/KF5/KCalendarCore/KCalCore/Journal include/KF5/KCalendarCore/KCalCore/MemoryCalendar include/KF5/KCalendarCore/KCalCore/OccurrenceIterator include/KF5/KCalendarCore/KCalCore/Period include/KF5/KCalendarCore/KCalCore/Person include/KF5/KCalendarCore/KCalCore/Recurrence include/KF5/KCalendarCore/KCalCore/RecurrenceRule include/KF5/KCalendarCore/KCalCore/ScheduleMessage include/KF5/KCalendarCore/KCalCore/Sorting include/KF5/KCalendarCore/KCalCore/Todo include/KF5/KCalendarCore/KCalCore/VCalFormat include/KF5/KCalendarCore/KCalCore/Visitor include/KF5/KCalendarCore/KCalendarCore/Alarm include/KF5/KCalendarCore/KCalendarCore/Attachment include/KF5/KCalendarCore/KCalendarCore/Attendee include/KF5/KCalendarCore/KCalendarCore/CalFilter include/KF5/KCalendarCore/KCalendarCore/CalFormat include/KF5/KCalendarCore/KCalendarCore/CalStorage include/KF5/KCalendarCore/KCalendarCore/Calendar include/KF5/KCalendarCore/KCalendarCore/CalendarPlugin include/KF5/KCalendarCore/KCalendarCore/CalendarPluginLoader include/KF5/KCalendarCore/KCalendarCore/Conference include/KF5/KCalendarCore/KCalendarCore/CustomProperties include/KF5/KCalendarCore/KCalendarCore/Duration include/KF5/KCalendarCore/KCalendarCore/Event include/KF5/KCalendarCore/KCalendarCore/Exceptions include/KF5/KCalendarCore/KCalendarCore/FileStorage include/KF5/KCalendarCore/KCalendarCore/FreeBusy include/KF5/KCalendarCore/KCalendarCore/FreeBusyCache include/KF5/KCalendarCore/KCalendarCore/FreeBusyPeriod include/KF5/KCalendarCore/KCalendarCore/ICalFormat include/KF5/KCalendarCore/KCalendarCore/Incidence include/KF5/KCalendarCore/KCalendarCore/IncidenceBase include/KF5/KCalendarCore/KCalendarCore/Journal include/KF5/KCalendarCore/KCalendarCore/MemoryCalendar include/KF5/KCalendarCore/KCalendarCore/OccurrenceIterator include/KF5/KCalendarCore/KCalendarCore/Period include/KF5/KCalendarCore/KCalendarCore/Person include/KF5/KCalendarCore/KCalendarCore/Recurrence include/KF5/KCalendarCore/KCalendarCore/RecurrenceRule include/KF5/KCalendarCore/KCalendarCore/ScheduleMessage include/KF5/KCalendarCore/KCalendarCore/Sorting include/KF5/KCalendarCore/KCalendarCore/Todo include/KF5/KCalendarCore/KCalendarCore/VCalFormat include/KF5/KCalendarCore/KCalendarCore/Visitor include/KF5/KCalendarCore/kcalcore/alarm.h include/KF5/KCalendarCore/kcalcore/attachment.h include/KF5/KCalendarCore/kcalcore/attendee.h include/KF5/KCalendarCore/kcalcore/calendar.h include/KF5/KCalendarCore/kcalcore/calendarplugin.h include/KF5/KCalendarCore/kcalcore/calendarpluginloader.h include/KF5/KCalendarCore/kcalcore/calfilter.h include/KF5/KCalendarCore/kcalcore/calformat.h include/KF5/KCalendarCore/kcalcore/calstorage.h include/KF5/KCalendarCore/kcalcore/conference.h include/KF5/KCalendarCore/kcalcore/customproperties.h include/KF5/KCalendarCore/kcalcore/duration.h include/KF5/KCalendarCore/kcalcore/event.h include/KF5/KCalendarCore/kcalcore/exceptions.h include/KF5/KCalendarCore/kcalcore/filestorage.h include/KF5/KCalendarCore/kcalcore/freebusy.h include/KF5/KCalendarCore/kcalcore/freebusycache.h include/KF5/KCalendarCore/kcalcore/freebusyperiod.h include/KF5/KCalendarCore/kcalcore/icalformat.h include/KF5/KCalendarCore/kcalcore/incidence.h include/KF5/KCalendarCore/kcalcore/incidencebase.h include/KF5/KCalendarCore/kcalcore/journal.h include/KF5/KCalendarCore/kcalcore/kcalendarcore_export.h include/KF5/KCalendarCore/kcalcore/memorycalendar.h include/KF5/KCalendarCore/kcalcore/occurrenceiterator.h include/KF5/KCalendarCore/kcalcore/period.h include/KF5/KCalendarCore/kcalcore/person.h include/KF5/KCalendarCore/kcalcore/recurrence.h include/KF5/KCalendarCore/kcalcore/recurrencerule.h include/KF5/KCalendarCore/kcalcore/schedulemessage.h include/KF5/KCalendarCore/kcalcore/sorting.h include/KF5/KCalendarCore/kcalcore/todo.h include/KF5/KCalendarCore/kcalcore/vcalformat.h include/KF5/KCalendarCore/kcalcore/visitor.h include/KF5/KCalendarCore/kcalendarcore/alarm.h include/KF5/KCalendarCore/kcalendarcore/attachment.h include/KF5/KCalendarCore/kcalendarcore/attendee.h include/KF5/KCalendarCore/kcalendarcore/calendar.h include/KF5/KCalendarCore/kcalendarcore/calendarplugin.h include/KF5/KCalendarCore/kcalendarcore/calendarpluginloader.h include/KF5/KCalendarCore/kcalendarcore/calfilter.h include/KF5/KCalendarCore/kcalendarcore/calformat.h include/KF5/KCalendarCore/kcalendarcore/calstorage.h include/KF5/KCalendarCore/kcalendarcore/conference.h include/KF5/KCalendarCore/kcalendarcore/customproperties.h include/KF5/KCalendarCore/kcalendarcore/duration.h include/KF5/KCalendarCore/kcalendarcore/event.h include/KF5/KCalendarCore/kcalendarcore/exceptions.h include/KF5/KCalendarCore/kcalendarcore/filestorage.h include/KF5/KCalendarCore/kcalendarcore/freebusy.h include/KF5/KCalendarCore/kcalendarcore/freebusycache.h include/KF5/KCalendarCore/kcalendarcore/freebusyperiod.h include/KF5/KCalendarCore/kcalendarcore/icalformat.h include/KF5/KCalendarCore/kcalendarcore/incidence.h include/KF5/KCalendarCore/kcalendarcore/incidencebase.h include/KF5/KCalendarCore/kcalendarcore/journal.h include/KF5/KCalendarCore/kcalendarcore/kcalendarcore_export.h include/KF5/KCalendarCore/kcalendarcore/memorycalendar.h include/KF5/KCalendarCore/kcalendarcore/occurrenceiterator.h include/KF5/KCalendarCore/kcalendarcore/period.h include/KF5/KCalendarCore/kcalendarcore/person.h include/KF5/KCalendarCore/kcalendarcore/recurrence.h include/KF5/KCalendarCore/kcalendarcore/recurrencerule.h include/KF5/KCalendarCore/kcalendarcore/schedulemessage.h include/KF5/KCalendarCore/kcalendarcore/sorting.h include/KF5/KCalendarCore/kcalendarcore/todo.h include/KF5/KCalendarCore/kcalendarcore/vcalformat.h include/KF5/KCalendarCore/kcalendarcore/visitor.h include/KF5/KCalendarCore/kcalendarcore_version.h include/KF5/kcalcore_version.h +lib/cmake/KF5CalendarCore/FindLibIcal.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreConfig.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreConfigVersion.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarCore/KF5CalendarCoreTargets.cmake lib/libKF5CalendarCore.so lib/libKF5CalendarCore.so.5 lib/libKF5CalendarCore.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KCalendarCore.pri libdata/pkgconfig/KF5CalendarCore.pc share/qlogging-categories5/kcalendarcore.categories share/qlogging-categories5/kcalendarcore.renamecategories diff --git a/net/kf5-kcontacts/distinfo b/net/kf5-kcontacts/distinfo index f4dc63d4e03f..f7bdf2b87899 100644 --- a/net/kf5-kcontacts/distinfo +++ b/net/kf5-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267431 -SHA256 (KDE/frameworks/5.102.0/kcontacts-5.102.0.tar.xz) = de9892789c429c7715848d76177c90868969e555ab01be9f0c14c4322b12b113 -SIZE (KDE/frameworks/5.102.0/kcontacts-5.102.0.tar.xz) = 213084 +TIMESTAMP = 1675703262 +SHA256 (KDE/frameworks/5.103.0/kcontacts-5.103.0.tar.xz) = 53a3676ff5541e692868401b20461a2f0a3cb1c6b87617a53dbc05c6fca0d88c +SIZE (KDE/frameworks/5.103.0/kcontacts-5.103.0.tar.xz) = 213076 diff --git a/net/kf5-kdav/distinfo b/net/kf5-kdav/distinfo index 6930a44c247a..2001a5ebecfc 100644 --- a/net/kf5-kdav/distinfo +++ b/net/kf5-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267431 -SHA256 (KDE/frameworks/5.102.0/kdav-5.102.0.tar.xz) = 6e057242e225cfd68d1afb6fa7368d5cc51ed4997fa63bb7f50cd6b3eb11395f -SIZE (KDE/frameworks/5.102.0/kdav-5.102.0.tar.xz) = 65604 +TIMESTAMP = 1675703263 +SHA256 (KDE/frameworks/5.103.0/kdav-5.103.0.tar.xz) = 34a2189d70825f735ade55e2bfa5518c482abefd0c2979f737ce581397b6a166 +SIZE (KDE/frameworks/5.103.0/kdav-5.103.0.tar.xz) = 65612 diff --git a/net/kf5-kholidays/distinfo b/net/kf5-kholidays/distinfo index 3551f86bf74d..911a82553fcd 100644 --- a/net/kf5-kholidays/distinfo +++ b/net/kf5-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267432 -SHA256 (KDE/frameworks/5.102.0/kholidays-5.102.0.tar.xz) = a195678a6d791c60047cf10398317a6ee301b2a18a51e0bfa4999dd7b1b63f07 -SIZE (KDE/frameworks/5.102.0/kholidays-5.102.0.tar.xz) = 252728 +TIMESTAMP = 1675703264 +SHA256 (KDE/frameworks/5.103.0/kholidays-5.103.0.tar.xz) = aaf5540546d741489665111d2265281ad7eb14c5c36543311e9fcdce6edc50cd +SIZE (KDE/frameworks/5.103.0/kholidays-5.103.0.tar.xz) = 253052 diff --git a/net/kf5-kxmlrpcclient/distinfo b/net/kf5-kxmlrpcclient/distinfo index 2f556b7a78b7..419210dc04c7 100644 --- a/net/kf5-kxmlrpcclient/distinfo +++ b/net/kf5-kxmlrpcclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267433 -SHA256 (KDE/frameworks/5.102.0/kxmlrpcclient-5.102.0.tar.xz) = c42a98b4dcfb79e4ad042bb51f1dee94b8ff0b8d18309d831176e03447ec7219 -SIZE (KDE/frameworks/5.102.0/kxmlrpcclient-5.102.0.tar.xz) = 32152 +TIMESTAMP = 1675703265 +SHA256 (KDE/frameworks/5.103.0/kxmlrpcclient-5.103.0.tar.xz) = e7f719019ccface5a69e3dba91e6307111fe2b24c12dc9f2bb8f513a43857693 +SIZE (KDE/frameworks/5.103.0/kxmlrpcclient-5.103.0.tar.xz) = 32140 diff --git a/net/kf5-syndication/distinfo b/net/kf5-syndication/distinfo index c7353955e372..2743f5b2e10d 100644 --- a/net/kf5-syndication/distinfo +++ b/net/kf5-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267434 -SHA256 (KDE/frameworks/5.102.0/syndication-5.102.0.tar.xz) = 299d7c25a0ada9f8ed2a97c1e7cc256f75ba32f1ea4f619cb3956438887508f0 -SIZE (KDE/frameworks/5.102.0/syndication-5.102.0.tar.xz) = 510440 +TIMESTAMP = 1675703266 +SHA256 (KDE/frameworks/5.103.0/syndication-5.103.0.tar.xz) = cf5a8406dc2cf37a77d209be4c487c77bf94f336cb3b6d08b78fb349e072f680 +SIZE (KDE/frameworks/5.103.0/syndication-5.103.0.tar.xz) = 510472 diff --git a/security/kf5-kdesu/distinfo b/security/kf5-kdesu/distinfo index fcec8b4a33f7..4bf55d19fa5c 100644 --- a/security/kf5-kdesu/distinfo +++ b/security/kf5-kdesu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267435 -SHA256 (KDE/frameworks/5.102.0/kdesu-5.102.0.tar.xz) = d0a93372bba338eed98940c3495bada9426f2737485a7231e1f7a9bf7746485f -SIZE (KDE/frameworks/5.102.0/kdesu-5.102.0.tar.xz) = 56392 +TIMESTAMP = 1675703266 +SHA256 (KDE/frameworks/5.103.0/kdesu-5.103.0.tar.xz) = 118ace7a5198cd9f5a585fbc82d4482b513f1f15a666b0116ee6d0159aadaba6 +SIZE (KDE/frameworks/5.103.0/kdesu-5.103.0.tar.xz) = 56396 diff --git a/sysutils/kf5-baloo/distinfo b/sysutils/kf5-baloo/distinfo index 773db5b09f05..129b3f1d50df 100644 --- a/sysutils/kf5-baloo/distinfo +++ b/sysutils/kf5-baloo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267436 -SHA256 (KDE/frameworks/5.102.0/baloo-5.102.0.tar.xz) = ddac3964c3a05e50c996bfe5682802e14f31900102dd72d6ad2c7f18db61dd78 -SIZE (KDE/frameworks/5.102.0/baloo-5.102.0.tar.xz) = 302812 +TIMESTAMP = 1675703267 +SHA256 (KDE/frameworks/5.103.0/baloo-5.103.0.tar.xz) = b3ea1481b9fe77307287dc764eb5c7bd4c5ecc6c58e074be3a91b496c4e6a580 +SIZE (KDE/frameworks/5.103.0/baloo-5.103.0.tar.xz) = 303092 diff --git a/sysutils/kf5-kwallet/distinfo b/sysutils/kf5-kwallet/distinfo index eb9d7f85ea75..c6a4d2bf4035 100644 --- a/sysutils/kf5-kwallet/distinfo +++ b/sysutils/kf5-kwallet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267436 -SHA256 (KDE/frameworks/5.102.0/kwallet-5.102.0.tar.xz) = a311f080a5e9a3d0c13ae115935a57c2fcaca0fa0ef8773c09b3f5e5f1640983 -SIZE (KDE/frameworks/5.102.0/kwallet-5.102.0.tar.xz) = 347564 +TIMESTAMP = 1675703268 +SHA256 (KDE/frameworks/5.103.0/kwallet-5.103.0.tar.xz) = 2a97e95b725a83e578e679569c40fbab3ef091475a00d4bd1ef3d98b2ffef23f +SIZE (KDE/frameworks/5.103.0/kwallet-5.103.0.tar.xz) = 347664 diff --git a/textproc/kf5-kcodecs/distinfo b/textproc/kf5-kcodecs/distinfo index 728a05b70024..90c3466d512e 100644 --- a/textproc/kf5-kcodecs/distinfo +++ b/textproc/kf5-kcodecs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267437 -SHA256 (KDE/frameworks/5.102.0/kcodecs-5.102.0.tar.xz) = 08f57c0cea6b9a0eca2c1d6de8503047b3c32c6a64f5752c8ab2892517cd6396 -SIZE (KDE/frameworks/5.102.0/kcodecs-5.102.0.tar.xz) = 2505268 +TIMESTAMP = 1675703269 +SHA256 (KDE/frameworks/5.103.0/kcodecs-5.103.0.tar.xz) = 5e14cae3ec139eec76439ab38b3e379be955f35b8dd2d480e66510c709e26f39 +SIZE (KDE/frameworks/5.103.0/kcodecs-5.103.0.tar.xz) = 2505128 diff --git a/textproc/kf5-sonnet/distinfo b/textproc/kf5-sonnet/distinfo index be5c3290fdb3..e8675867037d 100644 --- a/textproc/kf5-sonnet/distinfo +++ b/textproc/kf5-sonnet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673703799 -SHA256 (KDE/frameworks/5.102.0/sonnet-5.102.0.tar.xz) = 0eaa21b763fcf6607fa1db1789115484fcd58e993a0dfb1cd2638f0d288aac11 -SIZE (KDE/frameworks/5.102.0/sonnet-5.102.0.tar.xz) = 2437512 +TIMESTAMP = 1675703270 +SHA256 (KDE/frameworks/5.103.0/sonnet-5.103.0.tar.xz) = 93382f20684064ab93803e02af303373b27786d871adeeb7da1e62c762c13e4f +SIZE (KDE/frameworks/5.103.0/sonnet-5.103.0.tar.xz) = 2437700 diff --git a/textproc/kf5-syntax-highlighting/distinfo b/textproc/kf5-syntax-highlighting/distinfo index 018bf83c5691..12a70b6d6e67 100644 --- a/textproc/kf5-syntax-highlighting/distinfo +++ b/textproc/kf5-syntax-highlighting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267439 -SHA256 (KDE/frameworks/5.102.0/syntax-highlighting-5.102.0.tar.xz) = 2f2724e44d9f9bca29d939e34ba2987d1703b133e82e0fffc0ced8e45171f20f -SIZE (KDE/frameworks/5.102.0/syntax-highlighting-5.102.0.tar.xz) = 3376232 +TIMESTAMP = 1675703271 +SHA256 (KDE/frameworks/5.103.0/syntax-highlighting-5.103.0.tar.xz) = 49198fad25183f8307ec8817f1de6444d5c00d690b210f8b5ce8c408009b3620 +SIZE (KDE/frameworks/5.103.0/syntax-highlighting-5.103.0.tar.xz) = 3390624 diff --git a/www/kf5-kdewebkit/distinfo b/www/kf5-kdewebkit/distinfo index 0772f0286668..1e61d3abafff 100644 --- a/www/kf5-kdewebkit/distinfo +++ b/www/kf5-kdewebkit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267440 -SHA256 (KDE/frameworks/5.102.0/kdewebkit-5.102.0.tar.xz) = 7bce0e7dcc1394e149b727c4a6aeb9ba5a02532f2ff4f0502bd7d5a64e42f28c -SIZE (KDE/frameworks/5.102.0/kdewebkit-5.102.0.tar.xz) = 30088 +TIMESTAMP = 1675703272 +SHA256 (KDE/frameworks/5.103.0/kdewebkit-5.103.0.tar.xz) = df32fe622dc7537725e50791ed3923e24046b03765398bb02201111688f175ce +SIZE (KDE/frameworks/5.103.0/kdewebkit-5.103.0.tar.xz) = 30080 diff --git a/www/kf5-khtml/distinfo b/www/kf5-khtml/distinfo index 5a65ee5c3ca4..ca7f2f6d11a1 100644 --- a/www/kf5-khtml/distinfo +++ b/www/kf5-khtml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267440 -SHA256 (KDE/frameworks/5.102.0/khtml-5.102.0.tar.xz) = 4b211fa976efebc42bb4277197d0fa80adab7514fde108ce62a4249baa21e02b -SIZE (KDE/frameworks/5.102.0/khtml-5.102.0.tar.xz) = 4009396 +TIMESTAMP = 1675703273 +SHA256 (KDE/frameworks/5.103.0/khtml-5.103.0.tar.xz) = 9a64522088e0f16dbb13c09c7558fb7000f7969140c888cc58c6b70c42b44634 +SIZE (KDE/frameworks/5.103.0/khtml-5.103.0.tar.xz) = 4011212 diff --git a/www/kf5-kjs/distinfo b/www/kf5-kjs/distinfo index bc799c549c63..3b6d5a1b7ccf 100644 --- a/www/kf5-kjs/distinfo +++ b/www/kf5-kjs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267441 -SHA256 (KDE/frameworks/5.102.0/kjs-5.102.0.tar.xz) = 7cb48fedcaf68093cb947e7689248c50497a8bd35ccde53e24d7c9b2e7108593 -SIZE (KDE/frameworks/5.102.0/kjs-5.102.0.tar.xz) = 339740 +TIMESTAMP = 1675703274 +SHA256 (KDE/frameworks/5.103.0/kjs-5.103.0.tar.xz) = 5a46e153dffb8738f265cb1c127b05b47bd234335bc79705beba55aa68d89407 +SIZE (KDE/frameworks/5.103.0/kjs-5.103.0.tar.xz) = 339840 diff --git a/www/kf5-kjsembed/distinfo b/www/kf5-kjsembed/distinfo index 55420900d9be..9479ad4e978e 100644 --- a/www/kf5-kjsembed/distinfo +++ b/www/kf5-kjsembed/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267442 -SHA256 (KDE/frameworks/5.102.0/kjsembed-5.102.0.tar.xz) = ba28f907eb3b69e98caf5877883f81051420e664819714fba2696c6093c92f9d -SIZE (KDE/frameworks/5.102.0/kjsembed-5.102.0.tar.xz) = 2490496 +TIMESTAMP = 1675703275 +SHA256 (KDE/frameworks/5.103.0/kjsembed-5.103.0.tar.xz) = 2951379fbb10c8eb1e1e6c31ec8ba476f4821daf9d8a8e5f0663de0066bf842c +SIZE (KDE/frameworks/5.103.0/kjsembed-5.103.0.tar.xz) = 2490476 diff --git a/x11-themes/kf5-breeze-icons/distinfo b/x11-themes/kf5-breeze-icons/distinfo index 6a5d6abd2faf..65dc993f8562 100644 --- a/x11-themes/kf5-breeze-icons/distinfo +++ b/x11-themes/kf5-breeze-icons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267443 -SHA256 (KDE/frameworks/5.102.0/breeze-icons-5.102.0.tar.xz) = 2db3d90a8b9f7cce7314a8f0d6c3c95c6b7976d172ce4ccc4168142ca074e398 -SIZE (KDE/frameworks/5.102.0/breeze-icons-5.102.0.tar.xz) = 2163332 +TIMESTAMP = 1675703276 +SHA256 (KDE/frameworks/5.103.0/breeze-icons-5.103.0.tar.xz) = 7925d70ef2078316f69b9d26e7b1536844fb1d3c045fc78a2464c54871415abd +SIZE (KDE/frameworks/5.103.0/breeze-icons-5.103.0.tar.xz) = 2163436 diff --git a/x11-themes/kf5-kemoticons/distinfo b/x11-themes/kf5-kemoticons/distinfo index 90b1e75cf2f0..ffabb27cada5 100644 --- a/x11-themes/kf5-kemoticons/distinfo +++ b/x11-themes/kf5-kemoticons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267444 -SHA256 (KDE/frameworks/5.102.0/kemoticons-5.102.0.tar.xz) = 652776296f180f3ebe486380ed6a9c8136f4ad48665f3553c70ca738fc8b342b -SIZE (KDE/frameworks/5.102.0/kemoticons-5.102.0.tar.xz) = 1700560 +TIMESTAMP = 1675703277 +SHA256 (KDE/frameworks/5.103.0/kemoticons-5.103.0.tar.xz) = 13c1c2213868022ea38fa7612282d443e1461425aec42c5a91766f5f035ffa82 +SIZE (KDE/frameworks/5.103.0/kemoticons-5.103.0.tar.xz) = 1700700 diff --git a/x11-themes/kf5-kiconthemes/distinfo b/x11-themes/kf5-kiconthemes/distinfo index 2bc2a5ab1267..eaa2bba00def 100644 --- a/x11-themes/kf5-kiconthemes/distinfo +++ b/x11-themes/kf5-kiconthemes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267444 -SHA256 (KDE/frameworks/5.102.0/kiconthemes-5.102.0.tar.xz) = d0cf5efcbe8cadd5176293b549f32640a155162a9d7c96d2246315bb8f8c2ee0 -SIZE (KDE/frameworks/5.102.0/kiconthemes-5.102.0.tar.xz) = 1311636 +TIMESTAMP = 1675703277 +SHA256 (KDE/frameworks/5.103.0/kiconthemes-5.103.0.tar.xz) = 482094541ee3b6379c0bf6e42d96a6e1b2a0024936cebbaf702b9f853cfb124e +SIZE (KDE/frameworks/5.103.0/kiconthemes-5.103.0.tar.xz) = 1311692 diff --git a/x11-themes/kf5-oxygen-icons5/distinfo b/x11-themes/kf5-oxygen-icons5/distinfo index 7c5947d8cf6b..107b3e2bd96b 100644 --- a/x11-themes/kf5-oxygen-icons5/distinfo +++ b/x11-themes/kf5-oxygen-icons5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267447 -SHA256 (KDE/frameworks/5.102.0/oxygen-icons5-5.102.0.tar.xz) = c4d553c3bf874b80983da8f1eb510fb113f0c6630501fd50ddc3ab36a88cbc16 -SIZE (KDE/frameworks/5.102.0/oxygen-icons5-5.102.0.tar.xz) = 238635612 +TIMESTAMP = 1675703280 +SHA256 (KDE/frameworks/5.103.0/oxygen-icons5-5.103.0.tar.xz) = 387fbe84d111eb7aae0ba922a05cabfd87decb81c951dec8a20ae7c9d487968c +SIZE (KDE/frameworks/5.103.0/oxygen-icons5-5.103.0.tar.xz) = 238637192 diff --git a/x11-themes/kf5-qqc2-desktop-style/distinfo b/x11-themes/kf5-qqc2-desktop-style/distinfo index 52ea0005af57..c22d89fce1bb 100644 --- a/x11-themes/kf5-qqc2-desktop-style/distinfo +++ b/x11-themes/kf5-qqc2-desktop-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267448 -SHA256 (KDE/frameworks/5.102.0/qqc2-desktop-style-5.102.0.tar.xz) = d8f1bfeb59d1ead7f5d42a97614c92e5527802639e995f5432d57e4ab07bd5b0 -SIZE (KDE/frameworks/5.102.0/qqc2-desktop-style-5.102.0.tar.xz) = 68028 +TIMESTAMP = 1675703281 +SHA256 (KDE/frameworks/5.103.0/qqc2-desktop-style-5.103.0.tar.xz) = f18eba0ca9e6f5e2133c7108ee2c48243c498112d4d6dceeecf8a63d17b728a5 +SIZE (KDE/frameworks/5.103.0/qqc2-desktop-style-5.103.0.tar.xz) = 68936 diff --git a/x11-toolkits/kf5-attica/distinfo b/x11-toolkits/kf5-attica/distinfo index e21001cfbfdf..a5cef486a0c9 100644 --- a/x11-toolkits/kf5-attica/distinfo +++ b/x11-toolkits/kf5-attica/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267449 -SHA256 (KDE/frameworks/5.102.0/attica-5.102.0.tar.xz) = db872f06d57d5ff4ac7701c9f17e93e73c34340553f2b4db137b0b17091df0f6 -SIZE (KDE/frameworks/5.102.0/attica-5.102.0.tar.xz) = 69432 +TIMESTAMP = 1675703282 +SHA256 (KDE/frameworks/5.103.0/attica-5.103.0.tar.xz) = 3a34fca668cc83c6e3ae8dd0138ccd88302959d56bd72fc80621c447a19e609d +SIZE (KDE/frameworks/5.103.0/attica-5.103.0.tar.xz) = 69436 diff --git a/x11-toolkits/kf5-kcompletion/distinfo b/x11-toolkits/kf5-kcompletion/distinfo index d4b5a9f8fba6..90b612941aab 100644 --- a/x11-toolkits/kf5-kcompletion/distinfo +++ b/x11-toolkits/kf5-kcompletion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267449 -SHA256 (KDE/frameworks/5.102.0/kcompletion-5.102.0.tar.xz) = 5b78ae92b18aa31c8055d2a0b01dd30ba466ccbd980d0a7f68890e24ac42f9c9 -SIZE (KDE/frameworks/5.102.0/kcompletion-5.102.0.tar.xz) = 2337292 +TIMESTAMP = 1675703283 +SHA256 (KDE/frameworks/5.103.0/kcompletion-5.103.0.tar.xz) = d02374cba2bb3da774a938ef72744282af80a6c63851baa5825af173c7cb764f +SIZE (KDE/frameworks/5.103.0/kcompletion-5.103.0.tar.xz) = 2337188 diff --git a/x11-toolkits/kf5-kconfigwidgets/distinfo b/x11-toolkits/kf5-kconfigwidgets/distinfo index 910a44a4b1a8..4f0a96741e12 100644 --- a/x11-toolkits/kf5-kconfigwidgets/distinfo +++ b/x11-toolkits/kf5-kconfigwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267450 -SHA256 (KDE/frameworks/5.102.0/kconfigwidgets-5.102.0.tar.xz) = d76458119bb738493f04b88d5f9eb00a03dec0a1cfc1ef3b21db1c4e9b177aa7 -SIZE (KDE/frameworks/5.102.0/kconfigwidgets-5.102.0.tar.xz) = 2611184 +TIMESTAMP = 1675703284 +SHA256 (KDE/frameworks/5.103.0/kconfigwidgets-5.103.0.tar.xz) = f91cef38cc4e6068a35ad36a1ad229e2f57821dab22b4cc6181df671f16aa373 +SIZE (KDE/frameworks/5.103.0/kconfigwidgets-5.103.0.tar.xz) = 2611872 diff --git a/x11-toolkits/kf5-kdesignerplugin/distinfo b/x11-toolkits/kf5-kdesignerplugin/distinfo index 771e63dc09d4..296dff06fb87 100644 --- a/x11-toolkits/kf5-kdesignerplugin/distinfo +++ b/x11-toolkits/kf5-kdesignerplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267451 -SHA256 (KDE/frameworks/5.102.0/kdesignerplugin-5.102.0.tar.xz) = 6ce58872dfc76bc2464e4f09510772cc09b233645601ac9e8816134b2570c2da -SIZE (KDE/frameworks/5.102.0/kdesignerplugin-5.102.0.tar.xz) = 2286872 +TIMESTAMP = 1675703285 +SHA256 (KDE/frameworks/5.103.0/kdesignerplugin-5.103.0.tar.xz) = 1c52d7cd61e3404bb83f14be533b2c825e29599484b0b16733d852117eab3aca +SIZE (KDE/frameworks/5.103.0/kdesignerplugin-5.103.0.tar.xz) = 2286764 diff --git a/x11-toolkits/kf5-kguiaddons/distinfo b/x11-toolkits/kf5-kguiaddons/distinfo index d3f9ef385bab..59aea3ffee36 100644 --- a/x11-toolkits/kf5-kguiaddons/distinfo +++ b/x11-toolkits/kf5-kguiaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267452 -SHA256 (KDE/frameworks/5.102.0/kguiaddons-5.102.0.tar.xz) = 5b1320df6aab312b647bcf8eab793631f8ca5339615ddb283810be5dbb758fab -SIZE (KDE/frameworks/5.102.0/kguiaddons-5.102.0.tar.xz) = 78104 +TIMESTAMP = 1675703285 +SHA256 (KDE/frameworks/5.103.0/kguiaddons-5.103.0.tar.xz) = e63280fdefc4d82b42fc7b8e8e30c0b92e05538b00fb31086683019cc2d5b232 +SIZE (KDE/frameworks/5.103.0/kguiaddons-5.103.0.tar.xz) = 78224 diff --git a/x11-toolkits/kf5-kirigami2/distinfo b/x11-toolkits/kf5-kirigami2/distinfo index ab9854147e1e..49482283d555 100644 --- a/x11-toolkits/kf5-kirigami2/distinfo +++ b/x11-toolkits/kf5-kirigami2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267453 -SHA256 (KDE/frameworks/5.102.0/kirigami2-5.102.0.tar.xz) = 178138e3ed5ff9f224856c03dc1b4e837c6ce05072da8287aad5970e2e9875b2 -SIZE (KDE/frameworks/5.102.0/kirigami2-5.102.0.tar.xz) = 371140 +TIMESTAMP = 1675703286 +SHA256 (KDE/frameworks/5.103.0/kirigami2-5.103.0.tar.xz) = a6667f221e7777fb49ffb6c44407f55ac691e14fbdf4fe3f0051201078c83744 +SIZE (KDE/frameworks/5.103.0/kirigami2-5.103.0.tar.xz) = 372552 diff --git a/x11-toolkits/kf5-kirigami2/pkg-plist b/x11-toolkits/kf5-kirigami2/pkg-plist index 52e9b18ef831..c10e1cddf6e6 100644 --- a/x11-toolkits/kf5-kirigami2/pkg-plist +++ b/x11-toolkits/kf5-kirigami2/pkg-plist @@ -1,198 +1,199 @@ include/KF5/Kirigami2/Kirigami/KirigamiPluginFactory include/KF5/Kirigami2/Kirigami/PlatformTheme include/KF5/Kirigami2/Kirigami/TabletModeWatcher include/KF5/Kirigami2/Kirigami/Units include/KF5/Kirigami2/Kirigami/VirtualKeyboardWatcher include/KF5/Kirigami2/KirigamiPluginFactory include/KF5/Kirigami2/PlatformTheme include/KF5/Kirigami2/TabletModeWatcher include/KF5/Kirigami2/Units include/KF5/Kirigami2/kirigami/kirigami2_export.h include/KF5/Kirigami2/kirigami/kirigamipluginfactory.h include/KF5/Kirigami2/kirigami/platformtheme.h include/KF5/Kirigami2/kirigami/tabletmodewatcher.h include/KF5/Kirigami2/kirigami/units.h include/KF5/Kirigami2/kirigami/virtualkeyboardwatcher.h include/KF5/Kirigami2/kirigamipluginfactory.h include/KF5/Kirigami2/platformtheme.h include/KF5/Kirigami2/tabletmodewatcher.h include/KF5/Kirigami2/units.h lib/cmake/KF5Kirigami2/KF5Kirigami2Config.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2ConfigVersion.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Macros.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Targets.cmake lib/libKF5Kirigami2.so lib/libKF5Kirigami2.so.5 lib/libKF5Kirigami2.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_Kirigami2.pri %%QT_QMLDIR%%/org/kde/kirigami.2/AboutItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AboutPage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractCard.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractChip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Action.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ActionTextField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ActionToolBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Avatar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/BasicListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Card.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsGridView.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsListView.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CheckableListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Chip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ContextDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Dialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/FlexColumn.qml %%QT_QMLDIR%%/org/kde/kirigami.2/FormLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/GlobalDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Heading.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Hero.qml %%QT_QMLDIR%%/org/kde/kirigami.2/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/LinkButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ListItemDragHandle.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ListSectionHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/LoadingPlaceholder.qml %%QT_QMLDIR%%/org/kde/kirigami.2/MenuDialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/NavigationTabBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/NavigationTabButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Page.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PagePoolAction.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PageRow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PasswordField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PlaceholderMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PromptDialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/RouterWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ScrollablePage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SearchField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SelectableLabel.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Separator.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ShadowedImage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ToolBarApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/UrlButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/libKirigamiPlugin.so %%QT_QMLDIR%%/org/kde/kirigami.2/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionIconGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionMenuItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionsMenu.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/BannerImage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/CardsGridViewPrivate.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ContextDrawerActionItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/CornerShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultCardBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultChipBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultListItemBackground.qml +%%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultPageTitleDelegate.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/EdgeShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/GlobalDrawerActionItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PageActionPropertyGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PrivateActionToolButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/SwipeItemEventFilter.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/AbstractPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/BreadcrumbControl.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/PageRowGlobalToolBarUI.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/TabBarControl.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/TitlesPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/ToolBarPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/qmldir %%QT_QMLDIR%%/org/kde/kirigami.2/settingscomponents/CategorizedSettings.qml %%QT_QMLDIR%%/org/kde/kirigami.2/settingscomponents/SettingAction.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PageTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeHighlight.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeProgress.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeStack.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeTabBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/SwipeNavigator.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/TabViewLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/templates/PageTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractCard.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractChip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/SingletonHeaderSizeGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/BackButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/BorderPropertiesGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ContextIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ForwardButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/GenericDrawerIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/IconPropertiesGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/MenuIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/PassiveNotificationsManager.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/qmldir share/kdevappwizard/templates/kirigami.tar.bz2 share/locale/ar/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/az/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/bg/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/cs/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/da/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/de/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/el/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/en_GB/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/es/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/et/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/eu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fi/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/gl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/hi/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/hu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ia/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/id/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/it/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ja/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ka/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ko/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/lt/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ml/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nn/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pa/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt_BR/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ro/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ru/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@latin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sv/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ta/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/tg/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/tr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/uk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_CN/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_TW/LC_MESSAGES/libkirigami2plugin_qt.qm diff --git a/x11-toolkits/kf5-kitemviews/distinfo b/x11-toolkits/kf5-kitemviews/distinfo index 8af8dabf9b77..c7192bc27f45 100644 --- a/x11-toolkits/kf5-kitemviews/distinfo +++ b/x11-toolkits/kf5-kitemviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267454 -SHA256 (KDE/frameworks/5.102.0/kitemviews-5.102.0.tar.xz) = 3e19ea06b8d4e11469840b4b8709a8553c03f12915ae3c3504f2f85440c561b0 -SIZE (KDE/frameworks/5.102.0/kitemviews-5.102.0.tar.xz) = 2264656 +TIMESTAMP = 1675703287 +SHA256 (KDE/frameworks/5.103.0/kitemviews-5.103.0.tar.xz) = 8069046d455ea404f67403b057a6060055038a570c5a8307712128dd52649c4e +SIZE (KDE/frameworks/5.103.0/kitemviews-5.103.0.tar.xz) = 2265136 diff --git a/x11-toolkits/kf5-kjobwidgets/distinfo b/x11-toolkits/kf5-kjobwidgets/distinfo index ad5e5c9ca2fa..e0328d534042 100644 --- a/x11-toolkits/kf5-kjobwidgets/distinfo +++ b/x11-toolkits/kf5-kjobwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267454 -SHA256 (KDE/frameworks/5.102.0/kjobwidgets-5.102.0.tar.xz) = 94e1badb9709ad42da32ac3a006b84618d7f42f7d1be0a8385493a0e4974dde4 -SIZE (KDE/frameworks/5.102.0/kjobwidgets-5.102.0.tar.xz) = 2301220 +TIMESTAMP = 1675703288 +SHA256 (KDE/frameworks/5.103.0/kjobwidgets-5.103.0.tar.xz) = fa350ac797cb7d4da1d823a09b3036cd91710df7f23c795ee190004949ff4886 +SIZE (KDE/frameworks/5.103.0/kjobwidgets-5.103.0.tar.xz) = 2301260 diff --git a/x11-toolkits/kf5-ktextwidgets/distinfo b/x11-toolkits/kf5-ktextwidgets/distinfo index dde2c0871280..d62c11c05172 100644 --- a/x11-toolkits/kf5-ktextwidgets/distinfo +++ b/x11-toolkits/kf5-ktextwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267455 -SHA256 (KDE/frameworks/5.102.0/ktextwidgets-5.102.0.tar.xz) = 4c82dcdc3d650f37530e171de03e612b41d235b35deffd449f173ba881a237b2 -SIZE (KDE/frameworks/5.102.0/ktextwidgets-5.102.0.tar.xz) = 2551164 +TIMESTAMP = 1675703289 +SHA256 (KDE/frameworks/5.103.0/ktextwidgets-5.103.0.tar.xz) = 95e029aaae1b80669c9e1b241797645dabf562c5a1ceb68e398d0a06d969b5e7 +SIZE (KDE/frameworks/5.103.0/ktextwidgets-5.103.0.tar.xz) = 2552388 diff --git a/x11-toolkits/kf5-kwidgetsaddons/distinfo b/x11-toolkits/kf5-kwidgetsaddons/distinfo index 39b3e8e6d460..4439f5eb6ba7 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/distinfo +++ b/x11-toolkits/kf5-kwidgetsaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673703880 -SHA256 (KDE/frameworks/5.102.0/kwidgetsaddons-5.102.0.tar.xz) = 51d69722986355df6fde5eb2d05379469d01c8dc29577370bc589c263cb2d6d2 -SIZE (KDE/frameworks/5.102.0/kwidgetsaddons-5.102.0.tar.xz) = 4293552 +TIMESTAMP = 1675703290 +SHA256 (KDE/frameworks/5.103.0/kwidgetsaddons-5.103.0.tar.xz) = 4c08cc7e8b28d1fbbf2804b44b534c66173b784457c4ca04b5609178e68c6441 +SIZE (KDE/frameworks/5.103.0/kwidgetsaddons-5.103.0.tar.xz) = 4270704 diff --git a/x11-toolkits/kf5-kxmlgui/distinfo b/x11-toolkits/kf5-kxmlgui/distinfo index 592a4bdc5e7f..20d62310502d 100644 --- a/x11-toolkits/kf5-kxmlgui/distinfo +++ b/x11-toolkits/kf5-kxmlgui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267457 -SHA256 (KDE/frameworks/5.102.0/kxmlgui-5.102.0.tar.xz) = 37e72cb4ab8b6d1fa234328e25a1de99ffde65376a44d48c6705300d9134131a -SIZE (KDE/frameworks/5.102.0/kxmlgui-5.102.0.tar.xz) = 2976888 +TIMESTAMP = 1675703291 +SHA256 (KDE/frameworks/5.103.0/kxmlgui-5.103.0.tar.xz) = 60df820035f039b551a9de833f256f607743f9afe8c9c885c7a29d6f00b26404 +SIZE (KDE/frameworks/5.103.0/kxmlgui-5.103.0.tar.xz) = 2951880 diff --git a/x11/kf5-frameworkintegration/distinfo b/x11/kf5-frameworkintegration/distinfo index 29ba4e7f062b..fb36ad54504b 100644 --- a/x11/kf5-frameworkintegration/distinfo +++ b/x11/kf5-frameworkintegration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267458 -SHA256 (KDE/frameworks/5.102.0/frameworkintegration-5.102.0.tar.xz) = 2d80cac9a154a679b7a4186504e9b3ca792ecc29925e62fc1ef5390489351903 -SIZE (KDE/frameworks/5.102.0/frameworkintegration-5.102.0.tar.xz) = 1760000 +TIMESTAMP = 1675703292 +SHA256 (KDE/frameworks/5.103.0/frameworkintegration-5.103.0.tar.xz) = 23f1937da5a15a909baea1827d49fedf2d3073121a0a2c7a4482db6c136492be +SIZE (KDE/frameworks/5.103.0/frameworkintegration-5.103.0.tar.xz) = 1760004 diff --git a/x11/kf5-kactivities-stats/distinfo b/x11/kf5-kactivities-stats/distinfo index c37c5faab0fb..ad91d1533dd8 100644 --- a/x11/kf5-kactivities-stats/distinfo +++ b/x11/kf5-kactivities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267460 -SHA256 (KDE/frameworks/5.102.0/kactivities-stats-5.102.0.tar.xz) = 107eed041618f5fdc1b78823880b70ef59c03513b8253835120088675ac6621b -SIZE (KDE/frameworks/5.102.0/kactivities-stats-5.102.0.tar.xz) = 84500 +TIMESTAMP = 1675703294 +SHA256 (KDE/frameworks/5.103.0/kactivities-stats-5.103.0.tar.xz) = f9e4106112c805fde8901b2e133f3ec757f6fad2d105be2aac8411c3920d453d +SIZE (KDE/frameworks/5.103.0/kactivities-stats-5.103.0.tar.xz) = 84484 diff --git a/x11/kf5-kactivities/distinfo b/x11/kf5-kactivities/distinfo index 9b689c42eaf4..a4b0a6194786 100644 --- a/x11/kf5-kactivities/distinfo +++ b/x11/kf5-kactivities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267459 -SHA256 (KDE/frameworks/5.102.0/kactivities-5.102.0.tar.xz) = f9795e6b4b0699c6db385b83f391d8a3bccf1b0794381de0f14f7da288a281ce -SIZE (KDE/frameworks/5.102.0/kactivities-5.102.0.tar.xz) = 73556 +TIMESTAMP = 1675703293 +SHA256 (KDE/frameworks/5.103.0/kactivities-5.103.0.tar.xz) = 6d328b968eae1b1b7d2582f7e3b721b4de5296af98796956dd52ce84ba4f8835 +SIZE (KDE/frameworks/5.103.0/kactivities-5.103.0.tar.xz) = 73556 diff --git a/x11/kf5-kded/distinfo b/x11/kf5-kded/distinfo index 230218af2104..7cba69eea3a4 100644 --- a/x11/kf5-kded/distinfo +++ b/x11/kf5-kded/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267460 -SHA256 (KDE/frameworks/5.102.0/kded-5.102.0.tar.xz) = 6775af55a7888bc636f546cb3d0c25890dc7f6b2ab25bab90c29c7fb785a563a -SIZE (KDE/frameworks/5.102.0/kded-5.102.0.tar.xz) = 40968 +TIMESTAMP = 1675703295 +SHA256 (KDE/frameworks/5.103.0/kded-5.103.0.tar.xz) = 00a760becee15f782ef05c26be212565df4d718c7a81ec35e143d31cdac8948d +SIZE (KDE/frameworks/5.103.0/kded-5.103.0.tar.xz) = 40984 diff --git a/x11/kf5-kdelibs4support/distinfo b/x11/kf5-kdelibs4support/distinfo index 208c444f37a7..04dda4ee5cba 100644 --- a/x11/kf5-kdelibs4support/distinfo +++ b/x11/kf5-kdelibs4support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267461 -SHA256 (KDE/frameworks/5.102.0/kdelibs4support-5.102.0.tar.xz) = 643ef6b24b4fc6c06882f2a00ac7bc6a5c7f11811be152b012879ec7591d0269 -SIZE (KDE/frameworks/5.102.0/kdelibs4support-5.102.0.tar.xz) = 3720092 +TIMESTAMP = 1675703296 +SHA256 (KDE/frameworks/5.103.0/kdelibs4support-5.103.0.tar.xz) = fbc2a980a2c5a50400b4bda3a1d11d54384934f49d9a444292a7204c5411f853 +SIZE (KDE/frameworks/5.103.0/kdelibs4support-5.103.0.tar.xz) = 3720876 diff --git a/x11/kf5-kglobalaccel/distinfo b/x11/kf5-kglobalaccel/distinfo index 10833dc37f83..256e1200aa99 100644 --- a/x11/kf5-kglobalaccel/distinfo +++ b/x11/kf5-kglobalaccel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267462 -SHA256 (KDE/frameworks/5.102.0/kglobalaccel-5.102.0.tar.xz) = b5a9dd1ed9df5af3be2af90981b2ab7a7dc3034f133b61360eab7191c29955d0 -SIZE (KDE/frameworks/5.102.0/kglobalaccel-5.102.0.tar.xz) = 2338248 +TIMESTAMP = 1675703297 +SHA256 (KDE/frameworks/5.103.0/kglobalaccel-5.103.0.tar.xz) = 9abe678aaaf6ba2ee23fbce153725572d51afe9a3d0f3d50688363f2edd14f92 +SIZE (KDE/frameworks/5.103.0/kglobalaccel-5.103.0.tar.xz) = 2338980 diff --git a/x11/kf5-kinit/distinfo b/x11/kf5-kinit/distinfo index 99737e9eceed..dd934a770020 100644 --- a/x11/kf5-kinit/distinfo +++ b/x11/kf5-kinit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267463 -SHA256 (KDE/frameworks/5.102.0/kinit-5.102.0.tar.xz) = acb9f420ef5002cd0253d7d8deb240d63a63b7e393c7e2337dfa52a4a3d5ff0e -SIZE (KDE/frameworks/5.102.0/kinit-5.102.0.tar.xz) = 2404732 +TIMESTAMP = 1675703298 +SHA256 (KDE/frameworks/5.103.0/kinit-5.103.0.tar.xz) = e558aa014dba92047f166aac24a253c179444de02577d5da43fb8bdfa0565d78 +SIZE (KDE/frameworks/5.103.0/kinit-5.103.0.tar.xz) = 2405132 diff --git a/x11/kf5-krunner/distinfo b/x11/kf5-krunner/distinfo index 74323c54ed31..916b744cb561 100644 --- a/x11/kf5-krunner/distinfo +++ b/x11/kf5-krunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267464 -SHA256 (KDE/frameworks/5.102.0/krunner-5.102.0.tar.xz) = ce7d2c0ea598362b15e867196697871f6100a2c9d333b969800adf23d1aa6b3f -SIZE (KDE/frameworks/5.102.0/krunner-5.102.0.tar.xz) = 88184 +TIMESTAMP = 1675703299 +SHA256 (KDE/frameworks/5.103.0/krunner-5.103.0.tar.xz) = 05e89ea5f996caf8bc7df13f340eb33066edb98b29c8e367ede261eacc15ca72 +SIZE (KDE/frameworks/5.103.0/krunner-5.103.0.tar.xz) = 88196 diff --git a/x11/kf5-kwayland/distinfo b/x11/kf5-kwayland/distinfo index 330cc977bd54..6378989c96ac 100644 --- a/x11/kf5-kwayland/distinfo +++ b/x11/kf5-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673276779 -SHA256 (KDE/frameworks/5.102.0/kwayland-5.102.0.tar.xz) = 8626f4a7202b5c2eb8b10cb9b75e2a9e708be845ef37c271d4cd112a6f02a1cc -SIZE (KDE/frameworks/5.102.0/kwayland-5.102.0.tar.xz) = 336820 +TIMESTAMP = 1675703299 +SHA256 (KDE/frameworks/5.103.0/kwayland-5.103.0.tar.xz) = 072024ec73305786610d5102559f0084fd4890d731a7fa039f2057bf4f32a2a9 +SIZE (KDE/frameworks/5.103.0/kwayland-5.103.0.tar.xz) = 336768 diff --git a/x11/kf5-kwindowsystem/distinfo b/x11/kf5-kwindowsystem/distinfo index 0cbf82b1509d..b012ab1c8263 100644 --- a/x11/kf5-kwindowsystem/distinfo +++ b/x11/kf5-kwindowsystem/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267466 -SHA256 (KDE/frameworks/5.102.0/kwindowsystem-5.102.0.tar.xz) = d90c9ba491c9af634f09229f1349a9ad3a2cdce92793275a5e8de357d3aa68e1 -SIZE (KDE/frameworks/5.102.0/kwindowsystem-5.102.0.tar.xz) = 2435292 +TIMESTAMP = 1675703300 +SHA256 (KDE/frameworks/5.103.0/kwindowsystem-5.103.0.tar.xz) = ec6af8efd4399d140929b1a057bff8c679210d98fd26f309fdf8f89fccbf13a5 +SIZE (KDE/frameworks/5.103.0/kwindowsystem-5.103.0.tar.xz) = 2435640 diff --git a/x11/kf5-plasma-framework/distinfo b/x11/kf5-plasma-framework/distinfo index e66b5f5734d5..989be9876549 100644 --- a/x11/kf5-plasma-framework/distinfo +++ b/x11/kf5-plasma-framework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1673267466 -SHA256 (KDE/frameworks/5.102.0/plasma-framework-5.102.0.tar.xz) = d3cdb52f82dfc66f689c44e97ab45dd0088d9062c92f30f9385cde05482c5491 -SIZE (KDE/frameworks/5.102.0/plasma-framework-5.102.0.tar.xz) = 3305096 +TIMESTAMP = 1675703301 +SHA256 (KDE/frameworks/5.103.0/plasma-framework-5.103.0.tar.xz) = a0b3cecce4f8bb22ad4ffb0d2f356b2efbdd9dc94d9b5f568dbd83a7431e8ae1 +SIZE (KDE/frameworks/5.103.0/plasma-framework-5.103.0.tar.xz) = 3308144 diff --git a/x11/kf5-plasma-framework/pkg-plist b/x11/kf5-plasma-framework/pkg-plist index dc6a2a75b798..d8d01c9ea957 100644 --- a/x11/kf5-plasma-framework/pkg-plist +++ b/x11/kf5-plasma-framework/pkg-plist @@ -1,702 +1,703 @@ 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/nepomuk.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/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