diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 1cb1730c2c3c..cdb72e2f4885 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,911 +1,911 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.24.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. -KDE_FRAMEWORKS_VERSION?= 5.94.0 +KDE_FRAMEWORKS_VERSION?= 5.95.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 22.04.2 KDE_APPLICATIONS_SHLIB_VER?= 5.20.2 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS_SHLIB_G_VER?= 22.04.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- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ 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-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/archivers/kf5-karchive/distinfo b/archivers/kf5-karchive/distinfo index 76ea108230e7..45459e0608ad 100644 --- a/archivers/kf5-karchive/distinfo +++ b/archivers/kf5-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936436 -SHA256 (KDE/frameworks/5.94.0/karchive-5.94.0.tar.xz) = 55cd87a5437a649c168efbce4af132b992aa67dd9a3a8ced7cff0144f155e1e4 -SIZE (KDE/frameworks/5.94.0/karchive-5.94.0.tar.xz) = 986356 +TIMESTAMP = 1654981207 +SHA256 (KDE/frameworks/5.95.0/karchive-5.95.0.tar.xz) = 1e8cce20bf1d0451ea216a83cb79609fc5e447f009f96222ebcabc799bcdd549 +SIZE (KDE/frameworks/5.95.0/karchive-5.95.0.tar.xz) = 986628 diff --git a/devel/kf5-extra-cmake-modules/distinfo b/devel/kf5-extra-cmake-modules/distinfo index 0ec2a59e6241..eec12f1bfc81 100644 --- a/devel/kf5-extra-cmake-modules/distinfo +++ b/devel/kf5-extra-cmake-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936436 -SHA256 (KDE/frameworks/5.94.0/extra-cmake-modules-5.94.0.tar.xz) = 23548a8ce2b998cfa675fc00112bf93914ee25194f0bfdf832d283c8d678d279 -SIZE (KDE/frameworks/5.94.0/extra-cmake-modules-5.94.0.tar.xz) = 331500 +TIMESTAMP = 1654981207 +SHA256 (KDE/frameworks/5.95.0/extra-cmake-modules-5.95.0.tar.xz) = ffa02309d92958353e8e7837970e0d038475da5a18074e3442bf6b78ac91ad5a +SIZE (KDE/frameworks/5.95.0/extra-cmake-modules-5.95.0.tar.xz) = 331364 diff --git a/devel/kf5-kapidox/distinfo b/devel/kf5-kapidox/distinfo index 1fc18d1e3aa7..5a4368944ed2 100644 --- a/devel/kf5-kapidox/distinfo +++ b/devel/kf5-kapidox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936437 -SHA256 (KDE/frameworks/5.94.0/kapidox-5.94.0.tar.xz) = 1ca7520539bfe3179ae8b50b9a7c381478080d520a68f9fbb7e73b5946e55577 -SIZE (KDE/frameworks/5.94.0/kapidox-5.94.0.tar.xz) = 197472 +TIMESTAMP = 1654981208 +SHA256 (KDE/frameworks/5.95.0/kapidox-5.95.0.tar.xz) = e5f70eb8709398631c904e73075a431a9b0e717fd3017c3f74b9a9028e031838 +SIZE (KDE/frameworks/5.95.0/kapidox-5.95.0.tar.xz) = 197452 diff --git a/devel/kf5-kauth/distinfo b/devel/kf5-kauth/distinfo index 8454c93fadde..a359f9a2f7e9 100644 --- a/devel/kf5-kauth/distinfo +++ b/devel/kf5-kauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111286 -SHA256 (KDE/frameworks/5.94.0/kauth-5.94.0.tar.xz) = 9cfed0ad69a8fa5df88273a5ef340d7b6dff1cd3e9d53bda16f3cf4afdd64159 -SIZE (KDE/frameworks/5.94.0/kauth-5.94.0.tar.xz) = 90372 +TIMESTAMP = 1654981209 +SHA256 (KDE/frameworks/5.95.0/kauth-5.95.0.tar.xz) = 3e16b6f3fc2f51d8e47d9c67d717ba488436d12cf00c58b63ec3e4c39b734f3a +SIZE (KDE/frameworks/5.95.0/kauth-5.95.0.tar.xz) = 90856 diff --git a/devel/kf5-kbookmarks/distinfo b/devel/kf5-kbookmarks/distinfo index da64aa9c5ed7..1460fb764b32 100644 --- a/devel/kf5-kbookmarks/distinfo +++ b/devel/kf5-kbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111287 -SHA256 (KDE/frameworks/5.94.0/kbookmarks-5.94.0.tar.xz) = 8ccb99ab6f6e9babd503abd043ab183b849cfd9248d3b7d4e2805c75735f517c -SIZE (KDE/frameworks/5.94.0/kbookmarks-5.94.0.tar.xz) = 130124 +TIMESTAMP = 1654981210 +SHA256 (KDE/frameworks/5.95.0/kbookmarks-5.95.0.tar.xz) = 77fa9ac736d9aebe34da5b96fb377500e1395b5cd88c64256881193be53a55f0 +SIZE (KDE/frameworks/5.95.0/kbookmarks-5.95.0.tar.xz) = 130160 diff --git a/devel/kf5-kcmutils/distinfo b/devel/kf5-kcmutils/distinfo index 1a48a2fd933b..f5f63e68f8b7 100644 --- a/devel/kf5-kcmutils/distinfo +++ b/devel/kf5-kcmutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111288 -SHA256 (KDE/frameworks/5.94.0/kcmutils-5.94.0.tar.xz) = 798cef6990cdcb22e4822ea12c3c0b9aa35797806e93fb474a2f58632cd53309 -SIZE (KDE/frameworks/5.94.0/kcmutils-5.94.0.tar.xz) = 185096 +TIMESTAMP = 1654981211 +SHA256 (KDE/frameworks/5.95.0/kcmutils-5.95.0.tar.xz) = 19dd057b774230bee52a19b2a2eaa7ecac51de79a850a0f4253d7604ab3f0b54 +SIZE (KDE/frameworks/5.95.0/kcmutils-5.95.0.tar.xz) = 186024 diff --git a/devel/kf5-kconfig/distinfo b/devel/kf5-kconfig/distinfo index a38f2e902acb..732bbdc1cc08 100644 --- a/devel/kf5-kconfig/distinfo +++ b/devel/kf5-kconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111289 -SHA256 (KDE/frameworks/5.94.0/kconfig-5.94.0.tar.xz) = 8e6d9104f070d94f083be000ea116acae3499b0dd110fa4c9c55f51ea91cb3d7 -SIZE (KDE/frameworks/5.94.0/kconfig-5.94.0.tar.xz) = 282028 +TIMESTAMP = 1654981212 +SHA256 (KDE/frameworks/5.95.0/kconfig-5.95.0.tar.xz) = fd32f630a4873dba12e8404ca34f3a2dca0780a44663c3a89cdca8be5c6731f1 +SIZE (KDE/frameworks/5.95.0/kconfig-5.95.0.tar.xz) = 281816 diff --git a/devel/kf5-kcoreaddons/distinfo b/devel/kf5-kcoreaddons/distinfo index 7e7950df5d5d..ae5909ef9acc 100644 --- a/devel/kf5-kcoreaddons/distinfo +++ b/devel/kf5-kcoreaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111290 -SHA256 (KDE/frameworks/5.94.0/kcoreaddons-5.94.0.tar.xz) = 5c10b6ce070d6aa9b15abe7483b67f8802cec175e0eaeefc18a27c0e01ce110b -SIZE (KDE/frameworks/5.94.0/kcoreaddons-5.94.0.tar.xz) = 456556 +TIMESTAMP = 1654981213 +SHA256 (KDE/frameworks/5.95.0/kcoreaddons-5.95.0.tar.xz) = 8fcf7be465d30f009f605b4cfa286ea6d6dca02e29d1eef6b25753b40ac73c13 +SIZE (KDE/frameworks/5.95.0/kcoreaddons-5.95.0.tar.xz) = 462716 diff --git a/devel/kf5-kcoreaddons/files/patch-src_lib_util_ksignalhandler.cpp b/devel/kf5-kcoreaddons/files/patch-src_lib_util_ksignalhandler.cpp new file mode 100644 index 000000000000..527885046b07 --- /dev/null +++ b/devel/kf5-kcoreaddons/files/patch-src_lib_util_ksignalhandler.cpp @@ -0,0 +1,10 @@ +--- src/lib/util/ksignalhandler.cpp.orig 2022-06-17 18:38:49 UTC ++++ src/lib/util/ksignalhandler.cpp +@@ -9,6 +9,7 @@ + #include + + #ifndef Q_OS_WIN ++#include + #include + #include + #include diff --git a/devel/kf5-kcoreaddons/pkg-plist b/devel/kf5-kcoreaddons/pkg-plist index e60ec9f02d80..47da84b5519b 100644 --- a/devel/kf5-kcoreaddons/pkg-plist +++ b/devel/kf5-kcoreaddons/pkg-plist @@ -1,275 +1,279 @@ bin/desktoptojson include/KF5/KCoreAddons/KAboutData include/KF5/KCoreAddons/KAutoSaveFile include/KF5/KCoreAddons/KBackup include/KF5/KCoreAddons/KCompositeJob include/KF5/KCoreAddons/KCoreAddons include/KF5/KCoreAddons/KDirWatch include/KF5/KCoreAddons/KExportPlugin include/KF5/KCoreAddons/KFileSystemType include/KF5/KCoreAddons/KFileUtils include/KF5/KCoreAddons/KFormat include/KF5/KCoreAddons/KFuzzyMatcher include/KF5/KCoreAddons/KJob include/KF5/KCoreAddons/KJobTrackerInterface include/KF5/KCoreAddons/KJobUiDelegate include/KF5/KCoreAddons/KJsonUtils include/KF5/KCoreAddons/KLibexec include/KF5/KCoreAddons/KListOpenFilesJob include/KF5/KCoreAddons/KMacroExpander +include/KF5/KCoreAddons/KMemoryInfo include/KF5/KCoreAddons/KMessage include/KF5/KCoreAddons/KNetworkMounts include/KF5/KCoreAddons/KOSRelease include/KF5/KCoreAddons/KPluginFactory include/KF5/KCoreAddons/KPluginLoader include/KF5/KCoreAddons/KPluginMetaData include/KF5/KCoreAddons/KProcess include/KF5/KCoreAddons/KProcessList include/KF5/KCoreAddons/KRandom include/KF5/KCoreAddons/KRandomSequence +include/KF5/KCoreAddons/KSandbox include/KF5/KCoreAddons/KSharedDataCache include/KF5/KCoreAddons/KShell include/KF5/KCoreAddons/KSignalHandler include/KF5/KCoreAddons/KStaticPluginHelpers include/KF5/KCoreAddons/KStringHandler include/KF5/KCoreAddons/KTextToHTML include/KF5/KCoreAddons/KTextToHTMLEmoticonsInterface include/KF5/KCoreAddons/KUrlMimeData include/KF5/KCoreAddons/KUser include/KF5/KCoreAddons/Kdelibs4ConfigMigrator include/KF5/KCoreAddons/Kdelibs4Migration include/KF5/KCoreAddons/kaboutdata.h include/KF5/KCoreAddons/kautosavefile.h include/KF5/KCoreAddons/kbackup.h include/KF5/KCoreAddons/kcompositejob.h include/KF5/KCoreAddons/kcoreaddons.h include/KF5/KCoreAddons/kcoreaddons_export.h include/KF5/KCoreAddons/kcoreaddons_version.h include/KF5/KCoreAddons/kdelibs4configmigrator.h include/KF5/KCoreAddons/kdelibs4migration.h include/KF5/KCoreAddons/kdirwatch.h include/KF5/KCoreAddons/kexportplugin.h include/KF5/KCoreAddons/kfilesystemtype.h include/KF5/KCoreAddons/kfileutils.h include/KF5/KCoreAddons/kformat.h include/KF5/KCoreAddons/kfuzzymatcher.h include/KF5/KCoreAddons/kjob.h include/KF5/KCoreAddons/kjobtrackerinterface.h include/KF5/KCoreAddons/kjobuidelegate.h include/KF5/KCoreAddons/kjsonutils.h include/KF5/KCoreAddons/klibexec.h include/KF5/KCoreAddons/klistopenfilesjob.h include/KF5/KCoreAddons/kmacroexpander.h +include/KF5/KCoreAddons/kmemoryinfo.h include/KF5/KCoreAddons/kmessage.h include/KF5/KCoreAddons/knetworkmounts.h include/KF5/KCoreAddons/kosrelease.h include/KF5/KCoreAddons/kpluginfactory.h include/KF5/KCoreAddons/kpluginloader.h include/KF5/KCoreAddons/kpluginmetadata.h include/KF5/KCoreAddons/kprocess.h include/KF5/KCoreAddons/kprocesslist.h include/KF5/KCoreAddons/krandom.h include/KF5/KCoreAddons/krandomsequence.h +include/KF5/KCoreAddons/ksandbox.h include/KF5/KCoreAddons/kshareddatacache.h include/KF5/KCoreAddons/kshell.h include/KF5/KCoreAddons/ksignalhandler.h include/KF5/KCoreAddons/kstaticpluginhelpers.h include/KF5/KCoreAddons/kstringhandler.h include/KF5/KCoreAddons/ktexttohtml.h include/KF5/KCoreAddons/ktexttohtmlemoticonsinterface.h include/KF5/KCoreAddons/kurlmimedata.h include/KF5/KCoreAddons/kuser.h lib/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsConfigVersion.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsMacros.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsTargets.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsToolingTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsToolingTargets.cmake lib/libKF5CoreAddons.so lib/libKF5CoreAddons.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5CoreAddons.so.5 %%QT_MKSPECDIR%%/modules/qt_KCoreAddons.pri share/kf5/licenses/ARTISTIC share/kf5/licenses/BSD share/kf5/licenses/GPL_V2 share/kf5/licenses/GPL_V3 share/kf5/licenses/LGPL_V2 share/kf5/licenses/LGPL_V21 share/kf5/licenses/LGPL_V3 share/kf5/licenses/QPL_V1.0 share/locale/af/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ar/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ar/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/as/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ast/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/az/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/az/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/be/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/be/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/be@latin/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bg/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bg/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/bn/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bn_IN/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/br/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bs/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bs/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ca/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ca/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ca@valencia/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/crh/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/cs/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/cs/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/csb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/cy/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/da/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/da/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/de/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/de/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/el/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/el/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/en/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/eo/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/eo/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/es/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/es/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/et/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/et/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/eu/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/eu/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fa/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/fi/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/fi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fr/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/fr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fy/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ga/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ga/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gd/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/gd/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gl/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/gl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gu/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ha/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/he/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hi/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hne/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hr/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hsb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hu/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hu/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hy/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ia/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ia/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/id/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/id/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/is/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/is/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/it/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/it/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ja/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ja/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ka/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/kab/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/kk/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/kk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/km/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/km/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/kn/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ko/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ko/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ku/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lt/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lt/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/lv/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lv/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/mai/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/mk/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ml/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ml/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/mr/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/mr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ms/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ms/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/my/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/my/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nb/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nds/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nds/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ne/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nl/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nn/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nn/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/oc/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/or/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pa/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pa/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/pl/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ps/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pt/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pt/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/pt_BR/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pt_BR/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ro/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ro/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ru/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ru/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/se/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/se/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/si/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sk/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sl/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sq/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sq/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@ijekavian/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@latin/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sr@latin/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sv/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sv/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ta/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ta/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/te/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/tg/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/tg/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/th/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/th/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tok/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/tok/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tr/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/tr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tt/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ug/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ug/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/uk/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/uk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/uz/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/vi/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/vi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/wa/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/xh/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/zh_HK/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kde5_xml_mimetypes.qm share/mime/packages/kde5.xml share/qlogging-categories5/kcoreaddons.categories share/qlogging-categories5/kcoreaddons.renamecategories diff --git a/devel/kf5-kcrash/distinfo b/devel/kf5-kcrash/distinfo index 8ef6b5c4ee03..922f09864d50 100644 --- a/devel/kf5-kcrash/distinfo +++ b/devel/kf5-kcrash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936442 -SHA256 (KDE/frameworks/5.94.0/kcrash-5.94.0.tar.xz) = 48c7792ca8c2ad6e9b6c8e9a260cdfcee5ed8d8769c4a8a199de7bf671f03cf5 -SIZE (KDE/frameworks/5.94.0/kcrash-5.94.0.tar.xz) = 28364 +TIMESTAMP = 1654981214 +SHA256 (KDE/frameworks/5.95.0/kcrash-5.95.0.tar.xz) = e4fc8bfab7d838c90187f14f5ffda66b873c30f2250bad9a56fa070353d1f9f8 +SIZE (KDE/frameworks/5.95.0/kcrash-5.95.0.tar.xz) = 28368 diff --git a/devel/kf5-kdbusaddons/distinfo b/devel/kf5-kdbusaddons/distinfo index c5ffcf477fda..2e14ffb2443e 100644 --- a/devel/kf5-kdbusaddons/distinfo +++ b/devel/kf5-kdbusaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111292 -SHA256 (KDE/frameworks/5.94.0/kdbusaddons-5.94.0.tar.xz) = 0a1530117ccad6f1ea7b9db653bdf99adfe7f15f3f9394c3d885028f3ff4dae8 -SIZE (KDE/frameworks/5.94.0/kdbusaddons-5.94.0.tar.xz) = 47688 +TIMESTAMP = 1654981215 +SHA256 (KDE/frameworks/5.95.0/kdbusaddons-5.95.0.tar.xz) = e7ffdef96b3449d71c678d9ab63f932fa09506774f0c63d7dc88eb58cc80a463 +SIZE (KDE/frameworks/5.95.0/kdbusaddons-5.95.0.tar.xz) = 48016 diff --git a/devel/kf5-kdbusaddons/pkg-plist b/devel/kf5-kdbusaddons/pkg-plist index 38b21408f6d9..cebf1b601bce 100644 --- a/devel/kf5-kdbusaddons/pkg-plist +++ b/devel/kf5-kdbusaddons/pkg-plist @@ -1,76 +1,77 @@ 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/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/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 99bde1ac9b96..bdcd1306c867 100644 --- a/devel/kf5-kdeclarative/distinfo +++ b/devel/kf5-kdeclarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111293 -SHA256 (KDE/frameworks/5.94.0/kdeclarative-5.94.0.tar.xz) = f2996ca7671994f42c9233897d10d6bc93ffc2b12865ae07e516a93812dd6b08 -SIZE (KDE/frameworks/5.94.0/kdeclarative-5.94.0.tar.xz) = 204884 +TIMESTAMP = 1654981216 +SHA256 (KDE/frameworks/5.95.0/kdeclarative-5.95.0.tar.xz) = c4d0c4c80fdd2ffd044a75e124287e7895b60a959a7c7e3e52b4515bbbb5a0e2 +SIZE (KDE/frameworks/5.95.0/kdeclarative-5.95.0.tar.xz) = 205716 diff --git a/devel/kf5-kdoctools/distinfo b/devel/kf5-kdoctools/distinfo index cb03bf709b16..c38fe60d22df 100644 --- a/devel/kf5-kdoctools/distinfo +++ b/devel/kf5-kdoctools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111294 -SHA256 (KDE/frameworks/5.94.0/kdoctools-5.94.0.tar.xz) = f54e61ffe8c5e634e7d6e341020b63346d40b524d4a22565c86b9147033cd2f4 -SIZE (KDE/frameworks/5.94.0/kdoctools-5.94.0.tar.xz) = 440500 +TIMESTAMP = 1654981217 +SHA256 (KDE/frameworks/5.95.0/kdoctools-5.95.0.tar.xz) = 6f56d0f31bf7965331d2f3a6f4c1880d7ae4ab3d16424338a2906207e9c63a82 +SIZE (KDE/frameworks/5.95.0/kdoctools-5.95.0.tar.xz) = 440864 diff --git a/devel/kf5-kdoctools/pkg-plist b/devel/kf5-kdoctools/pkg-plist index d1cff2286f86..e06acd8a42b1 100644 --- a/devel/kf5-kdoctools/pkg-plist +++ b/devel/kf5-kdoctools/pkg-plist @@ -1,1160 +1,1161 @@ bin/checkXML5 bin/meinproc5 include/KF5/KDocTools/docbookxslt.h include/KF5/KDocTools/kdoctools_export.h lib/cmake/KF5DocTools/KF5DocToolsConfig.cmake lib/cmake/KF5DocTools/KF5DocToolsConfigVersion.cmake lib/cmake/KF5DocTools/KF5DocToolsMacros.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets.cmake lib/cmake/KF5DocTools/KF5DocToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsToolsTargets.cmake lib/libKF5DocTools.so lib/libKF5DocTools.so.5 lib/libKF5DocTools.so.%%KDE_FRAMEWORKS_VERSION%% man/ca/man1/checkXML5.1.gz man/ca/man7/kf5options.7.gz man/ca/man7/qt5options.7.gz man/ca/man1/meinproc5.1.gz man/de/man1/checkXML5.1.gz man/de/man7/kf5options.7.gz man/de/man7/qt5options.7.gz man/de/man1/meinproc5.1.gz man/es/man1/checkXML5.1.gz man/es/man7/kf5options.7.gz man/es/man7/qt5options.7.gz man/es/man1/meinproc5.1.gz man/id/man1/checkXML5.1.gz man/it/man1/checkXML5.1.gz man/it/man7/kf5options.7.gz man/it/man7/qt5options.7.gz man/it/man1/meinproc5.1.gz man/man1/checkXML5.1.gz man/man7/kf5options.7.gz man/man7/qt5options.7.gz man/man1/meinproc5.1.gz man/nl/man1/checkXML5.1.gz man/nl/man7/kf5options.7.gz man/nl/man7/qt5options.7.gz man/nl/man1/meinproc5.1.gz man/pt/man1/checkXML5.1.gz man/pt/man7/kf5options.7.gz man/pt/man7/qt5options.7.gz man/pt/man1/meinproc5.1.gz man/pt_BR/man1/checkXML5.1.gz man/pt_BR/man7/kf5options.7.gz man/pt_BR/man7/qt5options.7.gz man/pt_BR/man1/meinproc5.1.gz man/ru/man1/checkXML5.1.gz man/ru/man7/qt5options.7.gz man/sv/man1/checkXML5.1.gz man/sv/man7/kf5options.7.gz man/sv/man7/qt5options.7.gz man/sv/man1/meinproc5.1.gz man/uk/man1/checkXML5.1.gz man/uk/man7/kf5options.7.gz man/uk/man7/qt5options.7.gz man/uk/man1/meinproc5.1.gz share/doc/HTML/af/kdoctools5-common/kde-localised.css share/doc/HTML/ca/kdoctools5-common/kde-localised.css share/doc/HTML/cs/kdoctools5-common/kde-localised.css share/doc/HTML/da/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/fdl-translated.html share/doc/HTML/de/kdoctools5-common/gpl-translated.html share/doc/HTML/de/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/lgpl-translated.html share/doc/HTML/el/kdoctools5-common/kde-localised.css share/doc/HTML/en/kdoctools5-common/artistic-license.html share/doc/HTML/en/kdoctools5-common/block_title_bottom.png share/doc/HTML/en/kdoctools5-common/block_title_mid.png share/doc/HTML/en/kdoctools5-common/block_title_top.png share/doc/HTML/en/kdoctools5-common/bsd-license.html share/doc/HTML/en/kdoctools5-common/ccbysa4-license.html share/doc/HTML/en/kdoctools5-common/fdl-license.html share/doc/HTML/en/kdoctools5-common/fdl-notice.html share/doc/HTML/en/kdoctools5-common/fdl-translated.html share/doc/HTML/en/kdoctools5-common/gpl-license.html share/doc/HTML/en/kdoctools5-common/gpl-translated.html share/doc/HTML/en/kdoctools5-common/kde-default.css share/doc/HTML/en/kdoctools5-common/kde-docs.css share/doc/HTML/en/kdoctools5-common/kde_logo.png share/doc/HTML/en/kdoctools5-common/kde_logo_bg.png share/doc/HTML/en/kdoctools5-common/kmenu.png share/doc/HTML/en/kdoctools5-common/lgpl-license.html share/doc/HTML/en/kdoctools5-common/lgpl-translated.html share/doc/HTML/en/kdoctools5-common/part_of_the_kde_family_horizontal_190.png share/doc/HTML/en/kdoctools5-common/qpl-license.html share/doc/HTML/en/kdoctools5-common/top-kde.jpg share/doc/HTML/en/kdoctools5-common/top-left.jpg share/doc/HTML/en/kdoctools5-common/top-right.jpg share/doc/HTML/en/kdoctools5-common/top.jpg share/doc/HTML/en/kdoctools5-common/x11-license.html share/doc/HTML/en/kdoctools5-common/xml.dcl share/doc/HTML/eo/kdoctools5-common/kde-localised.css share/doc/HTML/es/kdoctools5-common/kde-localised.css share/doc/HTML/et/kdoctools5-common/kde-localised.css share/doc/HTML/fr/kdoctools5-common/gpl-translated.html share/doc/HTML/fr/kdoctools5-common/kde-localised.css share/doc/HTML/gl/kdoctools5-common/kde-localised.css share/doc/HTML/he/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/fdl-translated.html share/doc/HTML/hu/kdoctools5-common/gpl-translated.html share/doc/HTML/hu/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/lgpl-translated.html share/doc/HTML/it/kdoctools5-common/gpl-translated.html share/doc/HTML/it/kdoctools5-common/kde-localised.css share/doc/HTML/ja/kdoctools5-common/kde-localised.css share/doc/HTML/ko/kdoctools5-common/fdl-translated.html share/doc/HTML/ko/kdoctools5-common/gpl-translated.html share/doc/HTML/ko/kdoctools5-common/kde-localised.css share/doc/HTML/ko/kdoctools5-common/lgpl-translated.html share/doc/HTML/lt/kdoctools5-common/kde-localised.css share/doc/HTML/nds/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/fdl-translated.html share/doc/HTML/nl/kdoctools5-common/gpl-translated.html share/doc/HTML/nl/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/lgpl-translated.html share/doc/HTML/nn/kdoctools5-common/kde-localised.css share/doc/HTML/pl/kdoctools5-common/gpl-translated.html share/doc/HTML/pl/kdoctools5-common/kde-localised.css share/doc/HTML/pt/kdoctools5-common/kde-localised.css share/doc/HTML/ro/kdoctools5-common/kde-localised.css share/doc/HTML/ru/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/gpl-translated.html share/doc/HTML/sl/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/lgpl-translated.html share/doc/HTML/sr/kdoctools5-common/kde-localised.css share/doc/HTML/sv/kdoctools5-common/kde-localised.css share/doc/HTML/tr/kdoctools5-common/gpl-translated.html share/doc/HTML/tr/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/fdl-translated.html share/doc/HTML/uk/kdoctools5-common/gpl-translated.html share/doc/HTML/uk/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/lgpl-translated.html share/doc/HTML/wa/kdoctools5-common/kde-localised.css share/doc/HTML/xh/kdoctools5-common/kde-localised.css share/kf5/kdoctools/customization/README share/kf5/kdoctools/customization/af/catalog.xml share/kf5/kdoctools/customization/af/entities/fdl-notice.docbook share/kf5/kdoctools/customization/af/entities/gpl-notice.docbook share/kf5/kdoctools/customization/af/entities/help-menu.docbook share/kf5/kdoctools/customization/af/entities/install-compile.docbook share/kf5/kdoctools/customization/af/entities/install-intro.docbook share/kf5/kdoctools/customization/af/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/af/entities/report-bugs.docbook share/kf5/kdoctools/customization/af/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/af/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/af/entities/underFDL.docbook share/kf5/kdoctools/customization/af/entities/underGPL.docbook share/kf5/kdoctools/customization/af/entities/underX11License.docbook share/kf5/kdoctools/customization/af/entities/update-doc.docbook share/kf5/kdoctools/customization/af/lang.entities share/kf5/kdoctools/customization/af/strings.entities share/kf5/kdoctools/customization/af/user.entities share/kf5/kdoctools/customization/bg/catalog.xml share/kf5/kdoctools/customization/bg/contributor.entities share/kf5/kdoctools/customization/bg/entities/fdl-notice.docbook share/kf5/kdoctools/customization/bg/entities/gpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/help-menu.docbook share/kf5/kdoctools/customization/bg/entities/install-compile.docbook share/kf5/kdoctools/customization/bg/entities/install-intro.docbook share/kf5/kdoctools/customization/bg/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/report-bugs.docbook share/kf5/kdoctools/customization/bg/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/bg/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/bg/entities/underFDL.docbook share/kf5/kdoctools/customization/bg/entities/underGPL.docbook share/kf5/kdoctools/customization/bg/entities/underX11License.docbook share/kf5/kdoctools/customization/bg/entities/update-doc.docbook share/kf5/kdoctools/customization/bg/lang.entities share/kf5/kdoctools/customization/bg/strings.entities share/kf5/kdoctools/customization/bg/user.entities share/kf5/kdoctools/customization/ca/catalog.xml share/kf5/kdoctools/customization/ca/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ca/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/help-menu.docbook share/kf5/kdoctools/customization/ca/entities/install-compile.docbook share/kf5/kdoctools/customization/ca/entities/install-intro.docbook share/kf5/kdoctools/customization/ca/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ca/entities/underFDL.docbook share/kf5/kdoctools/customization/ca/entities/underGPL.docbook share/kf5/kdoctools/customization/ca/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca/entities/underX11License.docbook share/kf5/kdoctools/customization/ca/entities/update-doc.docbook share/kf5/kdoctools/customization/ca/lang.entities share/kf5/kdoctools/customization/ca/strings.entities share/kf5/kdoctools/customization/ca/user.entities share/kf5/kdoctools/customization/ca@valencia/catalog.xml share/kf5/kdoctools/customization/ca@valencia/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/help-menu.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-compile.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-intro.docbook share/kf5/kdoctools/customization/ca@valencia/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underFDL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underX11License.docbook share/kf5/kdoctools/customization/ca@valencia/entities/update-doc.docbook share/kf5/kdoctools/customization/ca@valencia/lang.entities share/kf5/kdoctools/customization/ca@valencia/strings.entities share/kf5/kdoctools/customization/ca@valencia/user.entities share/kf5/kdoctools/customization/catalog.xml share/kf5/kdoctools/customization/cs/catalog.xml share/kf5/kdoctools/customization/cs/entities/fdl-notice.docbook share/kf5/kdoctools/customization/cs/entities/gpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/help-menu.docbook share/kf5/kdoctools/customization/cs/entities/install-compile.docbook share/kf5/kdoctools/customization/cs/entities/install-intro.docbook share/kf5/kdoctools/customization/cs/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/report-bugs.docbook share/kf5/kdoctools/customization/cs/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/cs/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/cs/entities/underFDL.docbook share/kf5/kdoctools/customization/cs/entities/underGPL.docbook share/kf5/kdoctools/customization/cs/entities/underX11License.docbook share/kf5/kdoctools/customization/cs/entities/update-doc.docbook share/kf5/kdoctools/customization/cs/lang.entities share/kf5/kdoctools/customization/cs/strings.entities share/kf5/kdoctools/customization/cs/user.entities share/kf5/kdoctools/customization/da/catalog.xml share/kf5/kdoctools/customization/da/entities/fdl-notice.docbook share/kf5/kdoctools/customization/da/entities/gpl-notice.docbook share/kf5/kdoctools/customization/da/entities/help-menu.docbook share/kf5/kdoctools/customization/da/entities/install-compile.docbook share/kf5/kdoctools/customization/da/entities/install-intro.docbook share/kf5/kdoctools/customization/da/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/da/entities/report-bugs.docbook share/kf5/kdoctools/customization/da/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/da/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/da/entities/underFDL.docbook share/kf5/kdoctools/customization/da/entities/underGPL.docbook share/kf5/kdoctools/customization/da/entities/underLGPL.docbook share/kf5/kdoctools/customization/da/entities/underX11License.docbook share/kf5/kdoctools/customization/da/entities/update-doc.docbook share/kf5/kdoctools/customization/da/lang.entities share/kf5/kdoctools/customization/da/strings.entities share/kf5/kdoctools/customization/da/user.entities share/kf5/kdoctools/customization/de/catalog.xml share/kf5/kdoctools/customization/de/entities/fdl-notice.docbook share/kf5/kdoctools/customization/de/entities/gpl-notice.docbook share/kf5/kdoctools/customization/de/entities/help-menu.docbook share/kf5/kdoctools/customization/de/entities/install-compile.docbook share/kf5/kdoctools/customization/de/entities/install-intro.docbook share/kf5/kdoctools/customization/de/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/de/entities/report-bugs.docbook share/kf5/kdoctools/customization/de/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/de/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/de/entities/underFDL.docbook share/kf5/kdoctools/customization/de/entities/underGPL.docbook share/kf5/kdoctools/customization/de/entities/underLGPL.docbook share/kf5/kdoctools/customization/de/entities/underX11License.docbook share/kf5/kdoctools/customization/de/entities/update-doc.docbook share/kf5/kdoctools/customization/de/lang.entities share/kf5/kdoctools/customization/de/strings.entities share/kf5/kdoctools/customization/de/user.entities share/kf5/kdoctools/customization/dtd/kdedbx45.dtd share/kf5/kdoctools/customization/dtd/modifications.elements share/kf5/kdoctools/customization/dtd/rdbhier2.elements share/kf5/kdoctools/customization/dtd/rdbpool.elements share/kf5/kdoctools/customization/el/catalog.xml share/kf5/kdoctools/customization/el/entities/fdl-notice.docbook share/kf5/kdoctools/customization/el/entities/gpl-notice.docbook share/kf5/kdoctools/customization/el/entities/help-menu.docbook share/kf5/kdoctools/customization/el/entities/install-compile.docbook share/kf5/kdoctools/customization/el/entities/install-intro.docbook share/kf5/kdoctools/customization/el/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/el/entities/report-bugs.docbook share/kf5/kdoctools/customization/el/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/el/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/el/entities/underFDL.docbook share/kf5/kdoctools/customization/el/entities/underGPL.docbook share/kf5/kdoctools/customization/el/entities/underX11License.docbook share/kf5/kdoctools/customization/el/entities/update-doc.docbook share/kf5/kdoctools/customization/el/lang.entities share/kf5/kdoctools/customization/el/strings.entities share/kf5/kdoctools/customization/el/user.entities share/kf5/kdoctools/customization/en-GB/catalog.xml share/kf5/kdoctools/customization/en-GB/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/help-menu.docbook share/kf5/kdoctools/customization/en-GB/entities/install-compile.docbook share/kf5/kdoctools/customization/en-GB/entities/install-intro.docbook share/kf5/kdoctools/customization/en-GB/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/report-bugs.docbook share/kf5/kdoctools/customization/en-GB/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underFDL.docbook share/kf5/kdoctools/customization/en-GB/entities/underGPL.docbook share/kf5/kdoctools/customization/en-GB/entities/underX11License.docbook share/kf5/kdoctools/customization/en-GB/entities/update-doc.docbook share/kf5/kdoctools/customization/en-GB/lang.entities share/kf5/kdoctools/customization/en-GB/strings.entities share/kf5/kdoctools/customization/en-GB/user.entities share/kf5/kdoctools/customization/en/catalog.xml share/kf5/kdoctools/customization/en/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/en/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en/entities/help-menu.docbook share/kf5/kdoctools/customization/en/entities/install-compile.docbook share/kf5/kdoctools/customization/en/entities/install-intro.docbook share/kf5/kdoctools/customization/en/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en/entities/report-bugs.docbook share/kf5/kdoctools/customization/en/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/en/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/en/entities/underFDL.docbook share/kf5/kdoctools/customization/en/entities/underGPL.docbook share/kf5/kdoctools/customization/en/entities/underLGPL.docbook share/kf5/kdoctools/customization/en/entities/underX11License.docbook share/kf5/kdoctools/customization/en/entities/update-doc.docbook share/kf5/kdoctools/customization/en/lang.entities share/kf5/kdoctools/customization/en/strings.entities share/kf5/kdoctools/customization/en/user.entities share/kf5/kdoctools/customization/entities/contributor.entities share/kf5/kdoctools/customization/entities/general.entities share/kf5/kdoctools/customization/entities/l10n.entities share/kf5/kdoctools/customization/eo/catalog.xml share/kf5/kdoctools/customization/eo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/eo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/help-menu.docbook share/kf5/kdoctools/customization/eo/entities/install-compile.docbook share/kf5/kdoctools/customization/eo/entities/install-intro.docbook share/kf5/kdoctools/customization/eo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/report-bugs.docbook share/kf5/kdoctools/customization/eo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/eo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/eo/entities/underFDL.docbook share/kf5/kdoctools/customization/eo/entities/underGPL.docbook share/kf5/kdoctools/customization/eo/entities/underX11License.docbook share/kf5/kdoctools/customization/eo/entities/update-doc.docbook share/kf5/kdoctools/customization/eo/lang.entities share/kf5/kdoctools/customization/eo/strings.entities share/kf5/kdoctools/customization/eo/user.entities share/kf5/kdoctools/customization/es/catalog.xml share/kf5/kdoctools/customization/es/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/es/entities/fdl-notice.docbook share/kf5/kdoctools/customization/es/entities/gpl-notice.docbook share/kf5/kdoctools/customization/es/entities/help-menu.docbook share/kf5/kdoctools/customization/es/entities/install-compile.docbook share/kf5/kdoctools/customization/es/entities/install-intro.docbook share/kf5/kdoctools/customization/es/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/es/entities/report-bugs.docbook share/kf5/kdoctools/customization/es/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/es/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/es/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/es/entities/underFDL.docbook share/kf5/kdoctools/customization/es/entities/underGPL.docbook share/kf5/kdoctools/customization/es/entities/underLGPL.docbook share/kf5/kdoctools/customization/es/entities/underX11License.docbook share/kf5/kdoctools/customization/es/entities/update-doc.docbook share/kf5/kdoctools/customization/es/lang.entities share/kf5/kdoctools/customization/es/strings.entities share/kf5/kdoctools/customization/es/user.entities share/kf5/kdoctools/customization/et/catalog.xml share/kf5/kdoctools/customization/et/entities/fdl-notice.docbook share/kf5/kdoctools/customization/et/entities/gpl-notice.docbook share/kf5/kdoctools/customization/et/entities/help-menu.docbook share/kf5/kdoctools/customization/et/entities/install-compile.docbook share/kf5/kdoctools/customization/et/entities/install-intro.docbook share/kf5/kdoctools/customization/et/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/et/entities/report-bugs.docbook share/kf5/kdoctools/customization/et/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/et/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/et/entities/underFDL.docbook share/kf5/kdoctools/customization/et/entities/underGPL.docbook share/kf5/kdoctools/customization/et/entities/underLGPL.docbook share/kf5/kdoctools/customization/et/entities/underX11License.docbook share/kf5/kdoctools/customization/et/entities/update-doc.docbook share/kf5/kdoctools/customization/et/lang.entities share/kf5/kdoctools/customization/et/strings.entities share/kf5/kdoctools/customization/et/user.entities share/kf5/kdoctools/customization/fi/catalog.xml share/kf5/kdoctools/customization/fi/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fi/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/help-menu.docbook share/kf5/kdoctools/customization/fi/entities/install-compile.docbook share/kf5/kdoctools/customization/fi/entities/install-intro.docbook share/kf5/kdoctools/customization/fi/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/report-bugs.docbook share/kf5/kdoctools/customization/fi/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fi/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fi/entities/underFDL.docbook share/kf5/kdoctools/customization/fi/entities/underGPL.docbook share/kf5/kdoctools/customization/fi/entities/underX11License.docbook share/kf5/kdoctools/customization/fi/entities/update-doc.docbook share/kf5/kdoctools/customization/fi/lang.entities share/kf5/kdoctools/customization/fi/strings.entities share/kf5/kdoctools/customization/fi/user.entities share/kf5/kdoctools/customization/fo/catalog.xml share/kf5/kdoctools/customization/fo/contributor.entities share/kf5/kdoctools/customization/fo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/help-menu.docbook share/kf5/kdoctools/customization/fo/entities/install-compile.docbook share/kf5/kdoctools/customization/fo/entities/install-intro.docbook share/kf5/kdoctools/customization/fo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/report-bugs.docbook share/kf5/kdoctools/customization/fo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fo/entities/underFDL.docbook share/kf5/kdoctools/customization/fo/entities/underGPL.docbook share/kf5/kdoctools/customization/fo/entities/underX11License.docbook share/kf5/kdoctools/customization/fo/entities/update-doc.docbook share/kf5/kdoctools/customization/fo/lang.entities share/kf5/kdoctools/customization/fo/strings.entities share/kf5/kdoctools/customization/fo/user.entities share/kf5/kdoctools/customization/fr/catalog.xml share/kf5/kdoctools/customization/fr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/help-menu.docbook share/kf5/kdoctools/customization/fr/entities/install-compile.docbook share/kf5/kdoctools/customization/fr/entities/install-intro.docbook share/kf5/kdoctools/customization/fr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/report-bugs.docbook share/kf5/kdoctools/customization/fr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fr/entities/underFDL.docbook share/kf5/kdoctools/customization/fr/entities/underGPL.docbook share/kf5/kdoctools/customization/fr/entities/underLGPL.docbook share/kf5/kdoctools/customization/fr/entities/underX11License.docbook share/kf5/kdoctools/customization/fr/entities/update-doc.docbook share/kf5/kdoctools/customization/fr/lang.entities share/kf5/kdoctools/customization/fr/strings.entities share/kf5/kdoctools/customization/fr/user.entities share/kf5/kdoctools/customization/gl/catalog.xml share/kf5/kdoctools/customization/gl/contributor.entities share/kf5/kdoctools/customization/gl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/gl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/help-menu.docbook share/kf5/kdoctools/customization/gl/entities/install-compile.docbook share/kf5/kdoctools/customization/gl/entities/install-intro.docbook share/kf5/kdoctools/customization/gl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/report-bugs.docbook share/kf5/kdoctools/customization/gl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/gl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/gl/entities/underFDL.docbook share/kf5/kdoctools/customization/gl/entities/underGPL.docbook share/kf5/kdoctools/customization/gl/entities/underLGPL.docbook share/kf5/kdoctools/customization/gl/entities/underX11License.docbook share/kf5/kdoctools/customization/gl/entities/update-doc.docbook share/kf5/kdoctools/customization/gl/lang.entities share/kf5/kdoctools/customization/gl/strings.entities share/kf5/kdoctools/customization/gl/user.entities share/kf5/kdoctools/customization/he/catalog.xml share/kf5/kdoctools/customization/he/entities/fdl-notice.docbook share/kf5/kdoctools/customization/he/entities/gpl-notice.docbook share/kf5/kdoctools/customization/he/entities/help-menu.docbook share/kf5/kdoctools/customization/he/entities/install-compile.docbook share/kf5/kdoctools/customization/he/entities/install-intro.docbook share/kf5/kdoctools/customization/he/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/he/entities/report-bugs.docbook share/kf5/kdoctools/customization/he/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/he/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/he/entities/underFDL.docbook share/kf5/kdoctools/customization/he/entities/underGPL.docbook share/kf5/kdoctools/customization/he/entities/underX11License.docbook share/kf5/kdoctools/customization/he/entities/update-doc.docbook share/kf5/kdoctools/customization/he/lang.entities share/kf5/kdoctools/customization/he/strings.entities share/kf5/kdoctools/customization/he/user.entities share/kf5/kdoctools/customization/hu/catalog.xml share/kf5/kdoctools/customization/hu/entities/fdl-notice.docbook share/kf5/kdoctools/customization/hu/entities/gpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/help-menu.docbook share/kf5/kdoctools/customization/hu/entities/install-compile.docbook share/kf5/kdoctools/customization/hu/entities/install-intro.docbook share/kf5/kdoctools/customization/hu/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/report-bugs.docbook share/kf5/kdoctools/customization/hu/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/hu/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/hu/entities/underFDL.docbook share/kf5/kdoctools/customization/hu/entities/underGPL.docbook share/kf5/kdoctools/customization/hu/entities/underX11License.docbook share/kf5/kdoctools/customization/hu/entities/update-doc.docbook share/kf5/kdoctools/customization/hu/lang.entities share/kf5/kdoctools/customization/hu/strings.entities share/kf5/kdoctools/customization/hu/user.entities share/kf5/kdoctools/customization/id/catalog.xml share/kf5/kdoctools/customization/id/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/id/entities/fdl-notice.docbook share/kf5/kdoctools/customization/id/entities/gpl-notice.docbook share/kf5/kdoctools/customization/id/entities/help-menu.docbook share/kf5/kdoctools/customization/id/entities/install-compile.docbook share/kf5/kdoctools/customization/id/entities/install-intro.docbook share/kf5/kdoctools/customization/id/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/id/entities/report-bugs.docbook share/kf5/kdoctools/customization/id/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/id/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/id/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/id/entities/underFDL.docbook share/kf5/kdoctools/customization/id/entities/underGPL.docbook share/kf5/kdoctools/customization/id/entities/underLGPL.docbook share/kf5/kdoctools/customization/id/entities/underX11License.docbook share/kf5/kdoctools/customization/id/entities/update-doc.docbook share/kf5/kdoctools/customization/id/lang.entities share/kf5/kdoctools/customization/id/strings.entities share/kf5/kdoctools/customization/id/user.entities share/kf5/kdoctools/customization/it/catalog.xml share/kf5/kdoctools/customization/it/entities/fdl-notice.docbook share/kf5/kdoctools/customization/it/entities/gpl-notice.docbook share/kf5/kdoctools/customization/it/entities/help-menu.docbook share/kf5/kdoctools/customization/it/entities/install-compile.docbook share/kf5/kdoctools/customization/it/entities/install-intro.docbook share/kf5/kdoctools/customization/it/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/it/entities/report-bugs.docbook share/kf5/kdoctools/customization/it/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/it/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/it/entities/underFDL.docbook share/kf5/kdoctools/customization/it/entities/underGPL.docbook share/kf5/kdoctools/customization/it/entities/underLGPL.docbook share/kf5/kdoctools/customization/it/entities/underX11License.docbook share/kf5/kdoctools/customization/it/entities/update-doc.docbook share/kf5/kdoctools/customization/it/lang.entities share/kf5/kdoctools/customization/it/strings.entities share/kf5/kdoctools/customization/it/user.entities share/kf5/kdoctools/customization/ja/catalog.xml share/kf5/kdoctools/customization/ja/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ja/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/help-menu.docbook share/kf5/kdoctools/customization/ja/entities/install-compile.docbook share/kf5/kdoctools/customization/ja/entities/install-intro.docbook share/kf5/kdoctools/customization/ja/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/report-bugs.docbook share/kf5/kdoctools/customization/ja/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ja/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ja/entities/underFDL.docbook share/kf5/kdoctools/customization/ja/entities/underGPL.docbook share/kf5/kdoctools/customization/ja/entities/underX11License.docbook share/kf5/kdoctools/customization/ja/entities/update-doc.docbook share/kf5/kdoctools/customization/ja/lang.entities share/kf5/kdoctools/customization/ja/strings.entities share/kf5/kdoctools/customization/ja/user.entities share/kf5/kdoctools/customization/kde-chunk-common.xsl share/kf5/kdoctools/customization/kde-chunk-online.xsl share/kf5/kdoctools/customization/kde-chunk.xsl share/kf5/kdoctools/customization/kde-include-common.xsl share/kf5/kdoctools/customization/kde-include-man.xsl share/kf5/kdoctools/customization/kde-navig-online.xsl share/kf5/kdoctools/customization/kde-navig.xsl share/kf5/kdoctools/customization/kde-nochunk.xsl share/kf5/kdoctools/customization/kde-style.xsl share/kf5/kdoctools/customization/kde-ttlpg-online.xsl share/kf5/kdoctools/customization/kde-ttlpg.xsl share/kf5/kdoctools/customization/kde-web-navig.xsl share/kf5/kdoctools/customization/kde-web.xsl share/kf5/kdoctools/customization/ko/catalog.xml share/kf5/kdoctools/customization/ko/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ko/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ko/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/help-menu.docbook share/kf5/kdoctools/customization/ko/entities/install-compile.docbook share/kf5/kdoctools/customization/ko/entities/install-intro.docbook share/kf5/kdoctools/customization/ko/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/report-bugs.docbook share/kf5/kdoctools/customization/ko/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ko/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ko/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ko/entities/underFDL.docbook share/kf5/kdoctools/customization/ko/entities/underGPL.docbook share/kf5/kdoctools/customization/ko/entities/underLGPL.docbook share/kf5/kdoctools/customization/ko/entities/underX11License.docbook share/kf5/kdoctools/customization/ko/entities/update-doc.docbook share/kf5/kdoctools/customization/ko/lang.entities share/kf5/kdoctools/customization/ko/strings.entities share/kf5/kdoctools/customization/ko/user.entities share/kf5/kdoctools/customization/lt/catalog.xml share/kf5/kdoctools/customization/lt/contributor.entities share/kf5/kdoctools/customization/lt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/lt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/help-menu.docbook share/kf5/kdoctools/customization/lt/entities/install-compile.docbook share/kf5/kdoctools/customization/lt/entities/install-intro.docbook share/kf5/kdoctools/customization/lt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/report-bugs.docbook share/kf5/kdoctools/customization/lt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/lt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/lt/entities/underFDL.docbook share/kf5/kdoctools/customization/lt/entities/underGPL.docbook share/kf5/kdoctools/customization/lt/entities/underLGPL.docbook share/kf5/kdoctools/customization/lt/entities/underX11License.docbook share/kf5/kdoctools/customization/lt/entities/update-doc.docbook share/kf5/kdoctools/customization/lt/lang.entities share/kf5/kdoctools/customization/lt/strings.entities share/kf5/kdoctools/customization/lt/user.entities share/kf5/kdoctools/customization/nds/catalog.xml share/kf5/kdoctools/customization/nds/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nds/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/help-menu.docbook share/kf5/kdoctools/customization/nds/entities/install-compile.docbook share/kf5/kdoctools/customization/nds/entities/install-intro.docbook share/kf5/kdoctools/customization/nds/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/report-bugs.docbook share/kf5/kdoctools/customization/nds/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nds/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nds/entities/underFDL.docbook share/kf5/kdoctools/customization/nds/entities/underGPL.docbook share/kf5/kdoctools/customization/nds/entities/underLGPL.docbook share/kf5/kdoctools/customization/nds/entities/underX11License.docbook share/kf5/kdoctools/customization/nds/entities/update-doc.docbook share/kf5/kdoctools/customization/nds/lang.entities share/kf5/kdoctools/customization/nds/strings.entities share/kf5/kdoctools/customization/nds/user.entities share/kf5/kdoctools/customization/nl/catalog.xml share/kf5/kdoctools/customization/nl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/help-menu.docbook share/kf5/kdoctools/customization/nl/entities/install-compile.docbook share/kf5/kdoctools/customization/nl/entities/install-intro.docbook share/kf5/kdoctools/customization/nl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/report-bugs.docbook share/kf5/kdoctools/customization/nl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nl/entities/underFDL.docbook share/kf5/kdoctools/customization/nl/entities/underGPL.docbook share/kf5/kdoctools/customization/nl/entities/underLGPL.docbook share/kf5/kdoctools/customization/nl/entities/underX11License.docbook share/kf5/kdoctools/customization/nl/entities/update-doc.docbook share/kf5/kdoctools/customization/nl/lang.entities share/kf5/kdoctools/customization/nl/strings.entities share/kf5/kdoctools/customization/nl/user.entities share/kf5/kdoctools/customization/nn/catalog.xml share/kf5/kdoctools/customization/nn/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nn/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/help-menu.docbook share/kf5/kdoctools/customization/nn/entities/install-compile.docbook share/kf5/kdoctools/customization/nn/entities/install-intro.docbook share/kf5/kdoctools/customization/nn/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/report-bugs.docbook share/kf5/kdoctools/customization/nn/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nn/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nn/entities/underFDL.docbook share/kf5/kdoctools/customization/nn/entities/underGPL.docbook share/kf5/kdoctools/customization/nn/entities/underX11License.docbook share/kf5/kdoctools/customization/nn/entities/update-doc.docbook share/kf5/kdoctools/customization/nn/lang.entities share/kf5/kdoctools/customization/nn/strings.entities share/kf5/kdoctools/customization/nn/user.entities share/kf5/kdoctools/customization/no/catalog.xml share/kf5/kdoctools/customization/no/entities/fdl-notice.docbook share/kf5/kdoctools/customization/no/entities/gpl-notice.docbook share/kf5/kdoctools/customization/no/entities/help-menu.docbook share/kf5/kdoctools/customization/no/entities/install-compile.docbook share/kf5/kdoctools/customization/no/entities/install-intro.docbook share/kf5/kdoctools/customization/no/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/no/entities/report-bugs.docbook share/kf5/kdoctools/customization/no/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/no/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/no/entities/underFDL.docbook share/kf5/kdoctools/customization/no/entities/underGPL.docbook share/kf5/kdoctools/customization/no/entities/underX11License.docbook share/kf5/kdoctools/customization/no/entities/update-doc.docbook share/kf5/kdoctools/customization/no/lang.entities share/kf5/kdoctools/customization/no/strings.entities share/kf5/kdoctools/customization/no/user.entities share/kf5/kdoctools/customization/pl/catalog.xml share/kf5/kdoctools/customization/pl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/help-menu.docbook share/kf5/kdoctools/customization/pl/entities/install-compile.docbook share/kf5/kdoctools/customization/pl/entities/install-intro.docbook share/kf5/kdoctools/customization/pl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/report-bugs.docbook share/kf5/kdoctools/customization/pl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pl/entities/underFDL.docbook share/kf5/kdoctools/customization/pl/entities/underGPL.docbook share/kf5/kdoctools/customization/pl/entities/underLGPL.docbook share/kf5/kdoctools/customization/pl/entities/underX11License.docbook share/kf5/kdoctools/customization/pl/entities/update-doc.docbook share/kf5/kdoctools/customization/pl/lang.entities share/kf5/kdoctools/customization/pl/strings.entities share/kf5/kdoctools/customization/pl/user.entities share/kf5/kdoctools/customization/pt-BR/catalog.xml share/kf5/kdoctools/customization/pt-BR/contributor.entities share/kf5/kdoctools/customization/pt-BR/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/help-menu.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-compile.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-intro.docbook share/kf5/kdoctools/customization/pt-BR/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt-BR/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underFDL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underX11License.docbook share/kf5/kdoctools/customization/pt-BR/entities/update-doc.docbook share/kf5/kdoctools/customization/pt-BR/lang.entities share/kf5/kdoctools/customization/pt-BR/strings.entities share/kf5/kdoctools/customization/pt-BR/user.entities share/kf5/kdoctools/customization/pt/catalog.xml share/kf5/kdoctools/customization/pt/contributor.entities share/kf5/kdoctools/customization/pt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/help-menu.docbook share/kf5/kdoctools/customization/pt/entities/install-compile.docbook share/kf5/kdoctools/customization/pt/entities/install-intro.docbook share/kf5/kdoctools/customization/pt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt/entities/underFDL.docbook share/kf5/kdoctools/customization/pt/entities/underGPL.docbook share/kf5/kdoctools/customization/pt/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt/entities/underX11License.docbook share/kf5/kdoctools/customization/pt/entities/update-doc.docbook share/kf5/kdoctools/customization/pt/lang.entities share/kf5/kdoctools/customization/pt/strings.entities share/kf5/kdoctools/customization/pt/user.entities share/kf5/kdoctools/customization/ro/catalog.xml share/kf5/kdoctools/customization/ro/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ro/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/help-menu.docbook share/kf5/kdoctools/customization/ro/entities/install-compile.docbook share/kf5/kdoctools/customization/ro/entities/install-intro.docbook share/kf5/kdoctools/customization/ro/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/report-bugs.docbook share/kf5/kdoctools/customization/ro/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ro/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ro/entities/underFDL.docbook share/kf5/kdoctools/customization/ro/entities/underGPL.docbook share/kf5/kdoctools/customization/ro/entities/underLGPL.docbook share/kf5/kdoctools/customization/ro/entities/underX11License.docbook share/kf5/kdoctools/customization/ro/entities/update-doc.docbook share/kf5/kdoctools/customization/ro/lang.entities share/kf5/kdoctools/customization/ro/strings.entities share/kf5/kdoctools/customization/ro/user.entities share/kf5/kdoctools/customization/ru/catalog.xml share/kf5/kdoctools/customization/ru/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ru/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ru/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/help-menu.docbook share/kf5/kdoctools/customization/ru/entities/install-compile.docbook share/kf5/kdoctools/customization/ru/entities/install-intro.docbook share/kf5/kdoctools/customization/ru/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/report-bugs.docbook share/kf5/kdoctools/customization/ru/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ru/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ru/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ru/entities/underFDL.docbook share/kf5/kdoctools/customization/ru/entities/underGPL.docbook share/kf5/kdoctools/customization/ru/entities/underLGPL.docbook share/kf5/kdoctools/customization/ru/entities/underX11License.docbook share/kf5/kdoctools/customization/ru/entities/update-doc.docbook share/kf5/kdoctools/customization/ru/lang.entities share/kf5/kdoctools/customization/ru/strings.entities share/kf5/kdoctools/customization/ru/user.entities share/kf5/kdoctools/customization/sk/catalog.xml share/kf5/kdoctools/customization/sk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/help-menu.docbook share/kf5/kdoctools/customization/sk/entities/install-compile.docbook share/kf5/kdoctools/customization/sk/entities/install-intro.docbook share/kf5/kdoctools/customization/sk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/report-bugs.docbook share/kf5/kdoctools/customization/sk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sk/entities/underFDL.docbook share/kf5/kdoctools/customization/sk/entities/underGPL.docbook share/kf5/kdoctools/customization/sk/entities/underX11License.docbook share/kf5/kdoctools/customization/sk/entities/update-doc.docbook share/kf5/kdoctools/customization/sk/lang.entities share/kf5/kdoctools/customization/sk/strings.entities share/kf5/kdoctools/customization/sk/user.entities share/kf5/kdoctools/customization/sl/catalog.xml share/kf5/kdoctools/customization/sl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/help-menu.docbook share/kf5/kdoctools/customization/sl/entities/install-compile.docbook share/kf5/kdoctools/customization/sl/entities/install-intro.docbook share/kf5/kdoctools/customization/sl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/report-bugs.docbook share/kf5/kdoctools/customization/sl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sl/entities/underFDL.docbook share/kf5/kdoctools/customization/sl/entities/underGPL.docbook share/kf5/kdoctools/customization/sl/entities/underX11License.docbook share/kf5/kdoctools/customization/sl/entities/update-doc.docbook share/kf5/kdoctools/customization/sl/lang.entities share/kf5/kdoctools/customization/sl/strings.entities share/kf5/kdoctools/customization/sl/user.entities share/kf5/kdoctools/customization/sq/catalog.xml share/kf5/kdoctools/customization/sq/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sq/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/help-menu.docbook share/kf5/kdoctools/customization/sq/entities/install-compile.docbook share/kf5/kdoctools/customization/sq/entities/install-intro.docbook share/kf5/kdoctools/customization/sq/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/report-bugs.docbook share/kf5/kdoctools/customization/sq/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sq/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sq/entities/underFDL.docbook share/kf5/kdoctools/customization/sq/entities/underGPL.docbook share/kf5/kdoctools/customization/sq/entities/underLGPL.docbook share/kf5/kdoctools/customization/sq/entities/underX11License.docbook share/kf5/kdoctools/customization/sq/entities/update-doc.docbook share/kf5/kdoctools/customization/sq/lang.entities share/kf5/kdoctools/customization/sq/strings.entities share/kf5/kdoctools/customization/sq/user.entities share/kf5/kdoctools/customization/sr/catalog.xml share/kf5/kdoctools/customization/sr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/help-menu.docbook share/kf5/kdoctools/customization/sr/entities/install-compile.docbook share/kf5/kdoctools/customization/sr/entities/install-intro.docbook share/kf5/kdoctools/customization/sr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr/entities/underFDL.docbook share/kf5/kdoctools/customization/sr/entities/underGPL.docbook share/kf5/kdoctools/customization/sr/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr/entities/underX11License.docbook share/kf5/kdoctools/customization/sr/entities/update-doc.docbook share/kf5/kdoctools/customization/sr/lang.entities share/kf5/kdoctools/customization/sr/strings.entities share/kf5/kdoctools/customization/sr/user.entities share/kf5/kdoctools/customization/sr@ijekavian/catalog.xml share/kf5/kdoctools/customization/sr@ijekavian/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavian/lang.entities share/kf5/kdoctools/customization/sr@ijekavian/strings.entities share/kf5/kdoctools/customization/sr@ijekavian/user.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/catalog.xml share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/lang.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/strings.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/user.entities share/kf5/kdoctools/customization/sr@latin/catalog.xml share/kf5/kdoctools/customization/sr@latin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@latin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@latin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@latin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@latin/lang.entities share/kf5/kdoctools/customization/sr@latin/strings.entities share/kf5/kdoctools/customization/sr@latin/user.entities share/kf5/kdoctools/customization/sv/catalog.xml share/kf5/kdoctools/customization/sv/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sv/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/help-menu.docbook share/kf5/kdoctools/customization/sv/entities/install-compile.docbook share/kf5/kdoctools/customization/sv/entities/install-intro.docbook share/kf5/kdoctools/customization/sv/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/report-bugs.docbook share/kf5/kdoctools/customization/sv/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sv/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sv/entities/underFDL.docbook share/kf5/kdoctools/customization/sv/entities/underGPL.docbook share/kf5/kdoctools/customization/sv/entities/underLGPL.docbook share/kf5/kdoctools/customization/sv/entities/underX11License.docbook share/kf5/kdoctools/customization/sv/entities/update-doc.docbook share/kf5/kdoctools/customization/sv/lang.entities share/kf5/kdoctools/customization/sv/strings.entities share/kf5/kdoctools/customization/sv/user.entities share/kf5/kdoctools/customization/th/catalog.xml share/kf5/kdoctools/customization/th/entities/fdl-notice.docbook share/kf5/kdoctools/customization/th/entities/gpl-notice.docbook share/kf5/kdoctools/customization/th/entities/help-menu.docbook share/kf5/kdoctools/customization/th/entities/install-compile.docbook share/kf5/kdoctools/customization/th/entities/install-intro.docbook share/kf5/kdoctools/customization/th/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/th/entities/report-bugs.docbook share/kf5/kdoctools/customization/th/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/th/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/th/entities/underFDL.docbook share/kf5/kdoctools/customization/th/entities/underGPL.docbook share/kf5/kdoctools/customization/th/entities/underLGPL.docbook share/kf5/kdoctools/customization/th/entities/underX11License.docbook share/kf5/kdoctools/customization/th/entities/update-doc.docbook share/kf5/kdoctools/customization/th/lang.entities share/kf5/kdoctools/customization/th/strings.entities share/kf5/kdoctools/customization/th/user.entities share/kf5/kdoctools/customization/tr/catalog.xml share/kf5/kdoctools/customization/tr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/tr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/help-menu.docbook share/kf5/kdoctools/customization/tr/entities/install-compile.docbook share/kf5/kdoctools/customization/tr/entities/install-intro.docbook share/kf5/kdoctools/customization/tr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/report-bugs.docbook share/kf5/kdoctools/customization/tr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/tr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/tr/entities/underFDL.docbook share/kf5/kdoctools/customization/tr/entities/underGPL.docbook share/kf5/kdoctools/customization/tr/entities/underX11License.docbook share/kf5/kdoctools/customization/tr/entities/update-doc.docbook share/kf5/kdoctools/customization/tr/lang.entities share/kf5/kdoctools/customization/tr/strings.entities share/kf5/kdoctools/customization/tr/user.entities share/kf5/kdoctools/customization/uk/catalog.xml share/kf5/kdoctools/customization/uk/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/uk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/uk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/help-menu.docbook share/kf5/kdoctools/customization/uk/entities/install-compile.docbook share/kf5/kdoctools/customization/uk/entities/install-intro.docbook share/kf5/kdoctools/customization/uk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/report-bugs.docbook share/kf5/kdoctools/customization/uk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/uk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/uk/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/uk/entities/underFDL.docbook share/kf5/kdoctools/customization/uk/entities/underGPL.docbook share/kf5/kdoctools/customization/uk/entities/underLGPL.docbook share/kf5/kdoctools/customization/uk/entities/underX11License.docbook share/kf5/kdoctools/customization/uk/entities/update-doc.docbook share/kf5/kdoctools/customization/uk/lang.entities share/kf5/kdoctools/customization/uk/strings.entities share/kf5/kdoctools/customization/uk/user.entities share/kf5/kdoctools/customization/wa/catalog.xml share/kf5/kdoctools/customization/wa/contributor.entities share/kf5/kdoctools/customization/wa/entities/fdl-notice.docbook share/kf5/kdoctools/customization/wa/entities/gpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/help-menu.docbook share/kf5/kdoctools/customization/wa/entities/install-compile.docbook share/kf5/kdoctools/customization/wa/entities/install-intro.docbook share/kf5/kdoctools/customization/wa/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/report-bugs.docbook share/kf5/kdoctools/customization/wa/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/wa/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/wa/entities/underFDL.docbook share/kf5/kdoctools/customization/wa/entities/underGPL.docbook share/kf5/kdoctools/customization/wa/entities/underX11License.docbook share/kf5/kdoctools/customization/wa/entities/update-doc.docbook share/kf5/kdoctools/customization/wa/lang.entities share/kf5/kdoctools/customization/wa/strings.entities share/kf5/kdoctools/customization/wa/user.entities share/kf5/kdoctools/customization/xh/catalog.xml share/kf5/kdoctools/customization/xh/contributor.entities share/kf5/kdoctools/customization/xh/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xh/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/help-menu.docbook share/kf5/kdoctools/customization/xh/entities/install-compile.docbook share/kf5/kdoctools/customization/xh/entities/install-intro.docbook share/kf5/kdoctools/customization/xh/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/report-bugs.docbook share/kf5/kdoctools/customization/xh/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xh/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xh/entities/underFDL.docbook share/kf5/kdoctools/customization/xh/entities/underGPL.docbook share/kf5/kdoctools/customization/xh/entities/underX11License.docbook share/kf5/kdoctools/customization/xh/entities/update-doc.docbook share/kf5/kdoctools/customization/xh/lang.entities share/kf5/kdoctools/customization/xh/strings.entities share/kf5/kdoctools/customization/xh/user.entities share/kf5/kdoctools/customization/xsl/README share/kf5/kdoctools/customization/xsl/all-l10n.xml share/kf5/kdoctools/customization/xsl/ca.xml share/kf5/kdoctools/customization/xsl/ca_valencia.xml share/kf5/kdoctools/customization/xsl/cs.xml share/kf5/kdoctools/customization/xsl/de.xml share/kf5/kdoctools/customization/xsl/el.xml share/kf5/kdoctools/customization/xsl/en.xml share/kf5/kdoctools/customization/xsl/es.xml share/kf5/kdoctools/customization/xsl/et.xml share/kf5/kdoctools/customization/xsl/fr.xml share/kf5/kdoctools/customization/xsl/gl.xml share/kf5/kdoctools/customization/xsl/hu.xml share/kf5/kdoctools/customization/xsl/id.xml share/kf5/kdoctools/customization/xsl/it.xml share/kf5/kdoctools/customization/xsl/ko.xml share/kf5/kdoctools/customization/xsl/lt.xml share/kf5/kdoctools/customization/xsl/nds.xml share/kf5/kdoctools/customization/xsl/nl.xml share/kf5/kdoctools/customization/xsl/nn.xml share/kf5/kdoctools/customization/xsl/pl.xml share/kf5/kdoctools/customization/xsl/pt.xml share/kf5/kdoctools/customization/xsl/pt_br.xml share/kf5/kdoctools/customization/xsl/ru.xml share/kf5/kdoctools/customization/xsl/sl.xml share/kf5/kdoctools/customization/xsl/sr.xml share/kf5/kdoctools/customization/xsl/sr_ijekavian.xml share/kf5/kdoctools/customization/xsl/sr_ijekavianlatin.xml share/kf5/kdoctools/customization/xsl/sr_latin.xml share/kf5/kdoctools/customization/xsl/sv.xml share/kf5/kdoctools/customization/xsl/tr.xml share/kf5/kdoctools/customization/xsl/uk.xml share/kf5/kdoctools/customization/xx/catalog.xml share/kf5/kdoctools/customization/xx/contributor.entities share/kf5/kdoctools/customization/xx/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xx/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/help-menu.docbook share/kf5/kdoctools/customization/xx/entities/install-compile.docbook share/kf5/kdoctools/customization/xx/entities/install-intro.docbook share/kf5/kdoctools/customization/xx/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/report-bugs.docbook share/kf5/kdoctools/customization/xx/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xx/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xx/entities/underFDL.docbook share/kf5/kdoctools/customization/xx/entities/underGPL.docbook share/kf5/kdoctools/customization/xx/entities/underX11License.docbook share/kf5/kdoctools/customization/xx/entities/update-doc.docbook share/kf5/kdoctools/customization/xx/lang.entities share/kf5/kdoctools/customization/xx/strings.entities share/kf5/kdoctools/customization/xx/user.entities share/kf5/kdoctools/customization/zh-CN/catalog.xml share/kf5/kdoctools/customization/zh-CN/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-CN/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-CN/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underLGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-CN/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-CN/lang.entities share/kf5/kdoctools/customization/zh-CN/strings.entities share/kf5/kdoctools/customization/zh-CN/user.entities share/kf5/kdoctools/customization/zh-TW/catalog.xml share/kf5/kdoctools/customization/zh-TW/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-TW/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-TW/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-TW/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-TW/lang.entities share/kf5/kdoctools/customization/zh-TW/strings.entities share/kf5/kdoctools/customization/zh-TW/user.entities share/locale/af/LC_MESSAGES/kdoctools5.mo share/locale/ar/LC_MESSAGES/kdoctools5.mo share/locale/ast/LC_MESSAGES/kdoctools5.mo share/locale/az/LC_MESSAGES/kdoctools5.mo share/locale/be/LC_MESSAGES/kdoctools5.mo share/locale/bg/LC_MESSAGES/kdoctools5.mo share/locale/bn/LC_MESSAGES/kdoctools5.mo share/locale/br/LC_MESSAGES/kdoctools5.mo share/locale/bs/LC_MESSAGES/kdoctools5.mo share/locale/ca/LC_MESSAGES/kdoctools5.mo share/locale/ca@valencia/LC_MESSAGES/kdoctools5.mo share/locale/cs/LC_MESSAGES/kdoctools5.mo share/locale/csb/LC_MESSAGES/kdoctools5.mo share/locale/cy/LC_MESSAGES/kdoctools5.mo share/locale/da/LC_MESSAGES/kdoctools5.mo share/locale/de/LC_MESSAGES/kdoctools5.mo share/locale/el/LC_MESSAGES/kdoctools5.mo share/locale/en_GB/LC_MESSAGES/kdoctools5.mo share/locale/eo/LC_MESSAGES/kdoctools5.mo share/locale/es/LC_MESSAGES/kdoctools5.mo share/locale/et/LC_MESSAGES/kdoctools5.mo share/locale/eu/LC_MESSAGES/kdoctools5.mo share/locale/fa/LC_MESSAGES/kdoctools5.mo share/locale/fi/LC_MESSAGES/kdoctools5.mo share/locale/fr/LC_MESSAGES/kdoctools5.mo share/locale/fy/LC_MESSAGES/kdoctools5.mo share/locale/ga/LC_MESSAGES/kdoctools5.mo share/locale/gd/LC_MESSAGES/kdoctools5.mo share/locale/gl/LC_MESSAGES/kdoctools5.mo share/locale/gu/LC_MESSAGES/kdoctools5.mo share/locale/he/LC_MESSAGES/kdoctools5.mo share/locale/hi/LC_MESSAGES/kdoctools5.mo share/locale/hr/LC_MESSAGES/kdoctools5.mo share/locale/hsb/LC_MESSAGES/kdoctools5.mo share/locale/hu/LC_MESSAGES/kdoctools5.mo share/locale/ia/LC_MESSAGES/kdoctools5.mo share/locale/id/LC_MESSAGES/kdoctools5.mo share/locale/is/LC_MESSAGES/kdoctools5.mo share/locale/it/LC_MESSAGES/kdoctools5.mo share/locale/ja/LC_MESSAGES/kdoctools5.mo +share/locale/ka/LC_MESSAGES/kdoctools5.mo share/locale/kk/LC_MESSAGES/kdoctools5.mo share/locale/km/LC_MESSAGES/kdoctools5.mo share/locale/kn/LC_MESSAGES/kdoctools5.mo share/locale/ko/LC_MESSAGES/kdoctools5.mo share/locale/ku/LC_MESSAGES/kdoctools5.mo share/locale/lt/LC_MESSAGES/kdoctools5.mo share/locale/lv/LC_MESSAGES/kdoctools5.mo share/locale/mai/LC_MESSAGES/kdoctools5.mo share/locale/mk/LC_MESSAGES/kdoctools5.mo share/locale/ml/LC_MESSAGES/kdoctools5.mo share/locale/mr/LC_MESSAGES/kdoctools5.mo share/locale/ms/LC_MESSAGES/kdoctools5.mo share/locale/nb/LC_MESSAGES/kdoctools5.mo share/locale/nds/LC_MESSAGES/kdoctools5.mo share/locale/ne/LC_MESSAGES/kdoctools5.mo share/locale/nl/LC_MESSAGES/kdoctools5.mo share/locale/nn/LC_MESSAGES/kdoctools5.mo share/locale/oc/LC_MESSAGES/kdoctools5.mo share/locale/pa/LC_MESSAGES/kdoctools5.mo share/locale/pl/LC_MESSAGES/kdoctools5.mo share/locale/pt/LC_MESSAGES/kdoctools5.mo share/locale/pt_BR/LC_MESSAGES/kdoctools5.mo share/locale/ro/LC_MESSAGES/kdoctools5.mo share/locale/ru/LC_MESSAGES/kdoctools5.mo share/locale/se/LC_MESSAGES/kdoctools5.mo share/locale/sk/LC_MESSAGES/kdoctools5.mo share/locale/sl/LC_MESSAGES/kdoctools5.mo share/locale/sq/LC_MESSAGES/kdoctools5.mo share/locale/sr/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdoctools5.mo share/locale/sr@latin/LC_MESSAGES/kdoctools5.mo share/locale/sv/LC_MESSAGES/kdoctools5.mo share/locale/ta/LC_MESSAGES/kdoctools5.mo share/locale/tg/LC_MESSAGES/kdoctools5.mo share/locale/th/LC_MESSAGES/kdoctools5.mo share/locale/tr/LC_MESSAGES/kdoctools5.mo share/locale/ug/LC_MESSAGES/kdoctools5.mo share/locale/uk/LC_MESSAGES/kdoctools5.mo share/locale/uz/LC_MESSAGES/kdoctools5.mo share/locale/uz@cyrillic/LC_MESSAGES/kdoctools5.mo share/locale/vi/LC_MESSAGES/kdoctools5.mo share/locale/zh_CN/LC_MESSAGES/kdoctools5.mo share/locale/zh_TW/LC_MESSAGES/kdoctools5.mo diff --git a/devel/kf5-kfilemetadata/distinfo b/devel/kf5-kfilemetadata/distinfo index 4e328e20ae26..5b529187a539 100644 --- a/devel/kf5-kfilemetadata/distinfo +++ b/devel/kf5-kfilemetadata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111294 -SHA256 (KDE/frameworks/5.94.0/kfilemetadata-5.94.0.tar.xz) = 7f573b1a30349e331309dcf9e3374d7a304b6bdd0453a122366f7bd2574977e6 -SIZE (KDE/frameworks/5.94.0/kfilemetadata-5.94.0.tar.xz) = 435792 +TIMESTAMP = 1654981218 +SHA256 (KDE/frameworks/5.95.0/kfilemetadata-5.95.0.tar.xz) = 7e5b056cd98c0220a8896db37f18a4618511c1b886ae76151388c8e71d100105 +SIZE (KDE/frameworks/5.95.0/kfilemetadata-5.95.0.tar.xz) = 435840 diff --git a/devel/kf5-ki18n/distinfo b/devel/kf5-ki18n/distinfo index 65c9227ef7da..35d89202eff2 100644 --- a/devel/kf5-ki18n/distinfo +++ b/devel/kf5-ki18n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111295 -SHA256 (KDE/frameworks/5.94.0/ki18n-5.94.0.tar.xz) = 0c5a8332343570e8530469840d67c72a28a04a7257578e5a962c73824508944a -SIZE (KDE/frameworks/5.94.0/ki18n-5.94.0.tar.xz) = 955304 +TIMESTAMP = 1654981219 +SHA256 (KDE/frameworks/5.95.0/ki18n-5.95.0.tar.xz) = 5dd77edd69a42c4ca2458344ed5e7c3eb469d243acbff714983dc88ed241426d +SIZE (KDE/frameworks/5.95.0/ki18n-5.95.0.tar.xz) = 956820 diff --git a/devel/kf5-kidletime/distinfo b/devel/kf5-kidletime/distinfo index 51c1a9c362ba..757b93eb5469 100644 --- a/devel/kf5-kidletime/distinfo +++ b/devel/kf5-kidletime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936448 -SHA256 (KDE/frameworks/5.94.0/kidletime-5.94.0.tar.xz) = a61c3d545bcec8866cf6aeb8df00dc4f239f1725ace09b8ef1946839c4b4e3e8 -SIZE (KDE/frameworks/5.94.0/kidletime-5.94.0.tar.xz) = 29104 +TIMESTAMP = 1654981220 +SHA256 (KDE/frameworks/5.95.0/kidletime-5.95.0.tar.xz) = ba0d0c242a39c2a48a3369cf3cf7788e0b055c25a3efc4572dcef24753e89217 +SIZE (KDE/frameworks/5.95.0/kidletime-5.95.0.tar.xz) = 29088 diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo index 275759542633..4e47a5aabf2f 100644 --- a/devel/kf5-kio/distinfo +++ b/devel/kf5-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652480634 -SHA256 (KDE/frameworks/5.94.0/kio-5.94.0.tar.xz) = 85c0bf8e49d845730d95c85c0292330a5bf03ed63a008cbf02ec9d02f990d09b -SIZE (KDE/frameworks/5.94.0/kio-5.94.0.tar.xz) = 3331696 +TIMESTAMP = 1654981221 +SHA256 (KDE/frameworks/5.95.0/kio-5.95.0.tar.xz) = 97c7f0df5aec1249b0f1ceed52bfbcea49ba5742b78395a1e84815b31ce37687 +SIZE (KDE/frameworks/5.95.0/kio-5.95.0.tar.xz) = 3335684 diff --git a/devel/kf5-kio/pkg-plist b/devel/kf5-kio/pkg-plist index babc54646323..3b0ba9d57825 100644 --- a/devel/kf5-kio/pkg-plist +++ b/devel/kf5-kio/pkg-plist @@ -1,1048 +1,1050 @@ 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/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/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/TransferJob include/KF5/KIOCore/KIO/UDSEntry 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/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/global.h include/KF5/KIOCore/kio/hostinfo.h include/KF5/KIOCore/kio/http_slave_defaults.h include/KF5/KIOCore/kio/idleslave.h include/KF5/KIOCore/kio/ioslave_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/transferjob.h include/KF5/KIOCore/kio/udsentry.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/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/KTerminalLauncherJob 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/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/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/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/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/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_cookies.so -%%QT_PLUGINDIR%%/kcm_netpref.so %%QT_PLUGINDIR%%/kcm_proxy.so -%%QT_PLUGINDIR%%/kcm_smb.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/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/telnet/index.cache.bz2 share/doc/HTML/ca/kioslave5/telnet/index.docbook share/doc/HTML/ca/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca/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/telnet/index.cache.bz2 share/doc/HTML/de/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/en/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/es/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/et/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/fr/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/gl/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/it/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/nl/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/pt/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/ru/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/sr/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/sv/kioslave5/telnet/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/telnet/index.cache.bz2 share/doc/HTML/uk/kioslave5/telnet/index.docbook share/doc/HTML/uk/kioslave5/webdav/index.cache.bz2 share/doc/HTML/uk/kioslave5/webdav/index.docbook share/doc/HTML/zh_CN/kioslave5/telnet/index.cache.bz2 share/doc/HTML/zh_CN/kioslave5/telnet/index.docbook share/kconf_update/filepicker.upd share/kdevfiletemplates/templates/ioslave.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/kiodndpopupmenuplugin.desktop share/kservicetypes5/konqpopupmenuplugin.desktop share/kservicetypes5/kpropertiesdialogplugin.desktop share/kservicetypes5/kurifilterplugin.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/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 c1b046499b8f..e601de6d6ea0 100644 --- a/devel/kf5-kitemmodels/distinfo +++ b/devel/kf5-kitemmodels/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936450 -SHA256 (KDE/frameworks/5.94.0/kitemmodels-5.94.0.tar.xz) = 705ff2b97502b2ba436f9371b559e47f2a7634bf5b06d26c8243387d6a084f89 -SIZE (KDE/frameworks/5.94.0/kitemmodels-5.94.0.tar.xz) = 407248 +TIMESTAMP = 1654981222 +SHA256 (KDE/frameworks/5.95.0/kitemmodels-5.95.0.tar.xz) = 75a131a0066efd87a06ee056eba7d03686227d53233154a70d7107a94e6b22d7 +SIZE (KDE/frameworks/5.95.0/kitemmodels-5.95.0.tar.xz) = 407252 diff --git a/devel/kf5-knewstuff/Makefile b/devel/kf5-knewstuff/Makefile index bab91bbca574..888e259ee1d8 100644 --- a/devel/kf5-knewstuff/Makefile +++ b/devel/kf5-knewstuff/Makefile @@ -1,21 +1,18 @@ PORTNAME= knewstuff DISTVERSION= ${KDE_FRAMEWORKS_VERSION} PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks -PATCH_SITES= https://invent.kde.org/frameworks/knewstuff/-/commit/ -PATCHFILES= b634b65dd081746ccb8bdfa9bf2d878d13e2c0fb.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for downloading application assets from the network USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive attica5 auth codecs completion config \ configwidgets coreaddons i18n iconthemes itemviews \ jobwidgets kio kirigami2 package service sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build .include diff --git a/devel/kf5-knewstuff/distinfo b/devel/kf5-knewstuff/distinfo index 8b45df8ec5d3..3e1c2e86bca9 100644 --- a/devel/kf5-knewstuff/distinfo +++ b/devel/kf5-knewstuff/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1653674611 -SHA256 (KDE/frameworks/5.94.0/knewstuff-5.94.0.tar.xz) = aacd014f99ab66d40ae98333cb56257244ca552bc4df0ce04de4e29bae90336f -SIZE (KDE/frameworks/5.94.0/knewstuff-5.94.0.tar.xz) = 1154916 -SHA256 (KDE/frameworks/5.94.0/b634b65dd081746ccb8bdfa9bf2d878d13e2c0fb.diff) = 37f3706a4b1f1fcc92863266d8c6c73efedbd6244b9068985f51c8ae46f9fd63 -SIZE (KDE/frameworks/5.94.0/b634b65dd081746ccb8bdfa9bf2d878d13e2c0fb.diff) = 945 +TIMESTAMP = 1655008782 +SHA256 (KDE/frameworks/5.95.0/knewstuff-5.95.0.tar.xz) = f8813676b681a43e8406ecb7082fc1456aee2886d2cd68e546758d93466ca95f +SIZE (KDE/frameworks/5.95.0/knewstuff-5.95.0.tar.xz) = 1155724 diff --git a/devel/kf5-knewstuff/pkg-plist b/devel/kf5-knewstuff/pkg-plist index d6f7d6a735e8..f03b380de0c2 100644 --- a/devel/kf5-knewstuff/pkg-plist +++ b/devel/kf5-knewstuff/pkg-plist @@ -1,265 +1,304 @@ 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 -include/KF5/knewstuff_version.h -include/KF5/knewstuffcore_version.h -include/KF5/knewstuffquick_version.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_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/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 bedeb48bea32..f5b1b6ea1a9e 100644 --- a/devel/kf5-knotifications/distinfo +++ b/devel/kf5-knotifications/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111300 -SHA256 (KDE/frameworks/5.94.0/knotifications-5.94.0.tar.xz) = c8d51ce32b65f096c75da3e7bdb033202086cabaa8faad3bcdd46730b74b43bf -SIZE (KDE/frameworks/5.94.0/knotifications-5.94.0.tar.xz) = 131712 +TIMESTAMP = 1654981224 +SHA256 (KDE/frameworks/5.95.0/knotifications-5.95.0.tar.xz) = bd2486624de89b753410c280a3913a30c95baea2c5a9cffadf65bcf233c08142 +SIZE (KDE/frameworks/5.95.0/knotifications-5.95.0.tar.xz) = 132192 diff --git a/devel/kf5-knotifyconfig/distinfo b/devel/kf5-knotifyconfig/distinfo index 348d4dc06397..72dba5a5c8e8 100644 --- a/devel/kf5-knotifyconfig/distinfo +++ b/devel/kf5-knotifyconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111301 -SHA256 (KDE/frameworks/5.94.0/knotifyconfig-5.94.0.tar.xz) = ab85989a7482ab8e2feddd1d3c6a1f2f81a16af67894bd9dea725421c3ba8910 -SIZE (KDE/frameworks/5.94.0/knotifyconfig-5.94.0.tar.xz) = 87372 +TIMESTAMP = 1654981225 +SHA256 (KDE/frameworks/5.95.0/knotifyconfig-5.95.0.tar.xz) = 6d3efed3db54c1ced4607f0ca785a3f9655aa580c00d92c5bd62090103bd36e8 +SIZE (KDE/frameworks/5.95.0/knotifyconfig-5.95.0.tar.xz) = 87416 diff --git a/devel/kf5-kpackage/distinfo b/devel/kf5-kpackage/distinfo index 50a3dec486c3..d611ca7b9387 100644 --- a/devel/kf5-kpackage/distinfo +++ b/devel/kf5-kpackage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111302 -SHA256 (KDE/frameworks/5.94.0/kpackage-5.94.0.tar.xz) = 4d4c9c2920c9b10f6879f2d8a29426615e9e6b13d78c0b751ea4a656b4baf414 -SIZE (KDE/frameworks/5.94.0/kpackage-5.94.0.tar.xz) = 141252 +TIMESTAMP = 1654981226 +SHA256 (KDE/frameworks/5.95.0/kpackage-5.95.0.tar.xz) = 3f8415f18be213e78206dca8a2acda04793b4f1d5f12c891e46a01f795ff605f +SIZE (KDE/frameworks/5.95.0/kpackage-5.95.0.tar.xz) = 141428 diff --git a/devel/kf5-kparts/distinfo b/devel/kf5-kparts/distinfo index df7d1163e23b..a6e9be75f625 100644 --- a/devel/kf5-kparts/distinfo +++ b/devel/kf5-kparts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111303 -SHA256 (KDE/frameworks/5.94.0/kparts-5.94.0.tar.xz) = 05a5120f1a97dce84f5ea85d80eb4eb50793f800ce2af055d1d73ce61ed06bba -SIZE (KDE/frameworks/5.94.0/kparts-5.94.0.tar.xz) = 196720 +TIMESTAMP = 1654981227 +SHA256 (KDE/frameworks/5.95.0/kparts-5.95.0.tar.xz) = c2a4dffc7004c27675337bc6fff4fe5bbc98fd0b1a5265f6a3b95061abc8ff24 +SIZE (KDE/frameworks/5.95.0/kparts-5.95.0.tar.xz) = 196920 diff --git a/devel/kf5-kpeople/distinfo b/devel/kf5-kpeople/distinfo index 153c8d322432..53228b642816 100644 --- a/devel/kf5-kpeople/distinfo +++ b/devel/kf5-kpeople/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111304 -SHA256 (KDE/frameworks/5.94.0/kpeople-5.94.0.tar.xz) = 217eba378c223e3518914512fc303a106101d26fa1a8fc57495abbd0d36a5274 -SIZE (KDE/frameworks/5.94.0/kpeople-5.94.0.tar.xz) = 60212 +TIMESTAMP = 1654981228 +SHA256 (KDE/frameworks/5.95.0/kpeople-5.95.0.tar.xz) = 297ed9ab23b4abd3b742276d5970f7299f5370611d916e59abb0f2fd29f40200 +SIZE (KDE/frameworks/5.95.0/kpeople-5.95.0.tar.xz) = 60440 diff --git a/devel/kf5-kpeople/pkg-plist b/devel/kf5-kpeople/pkg-plist index b9eb2f5bde5b..0ba32d3a7a89 100644 --- a/devel/kf5-kpeople/pkg-plist +++ b/devel/kf5-kpeople/pkg-plist @@ -1,105 +1,106 @@ include/KF5/KPeople/KPeople/Global include/KF5/KPeople/KPeople/PersonData include/KF5/KPeople/KPeople/PersonPluginManager include/KF5/KPeople/KPeople/PersonsModel include/KF5/KPeople/KPeople/PersonsSortFilterProxyModel include/KF5/KPeople/KPeople/Widgets/AbstractFieldWidgetFactory include/KF5/KPeople/KPeople/Widgets/Actions include/KF5/KPeople/KPeople/Widgets/MergeDialog include/KF5/KPeople/KPeople/Widgets/PersonDetailsDialog include/KF5/KPeople/KPeople/Widgets/PersonDetailsView include/KF5/KPeople/KPeopleBackend/AbstractContact include/KF5/KPeople/KPeopleBackend/AbstractEditableContact include/KF5/KPeople/KPeopleBackend/AbstractPersonAction include/KF5/KPeople/KPeopleBackend/AllContactsMonitor include/KF5/KPeople/KPeopleBackend/BasePersonsDataSource include/KF5/KPeople/KPeopleBackend/ContactMonitor include/KF5/KPeople/kpeople/global.h include/KF5/KPeople/kpeople/kpeople_export.h include/KF5/KPeople/kpeople/persondata.h include/KF5/KPeople/kpeople/personpluginmanager.h include/KF5/KPeople/kpeople/personsmodel.h include/KF5/KPeople/kpeople/personssortfilterproxymodel.h include/KF5/KPeople/kpeople/widgets/abstractfieldwidgetfactory.h include/KF5/KPeople/kpeople/widgets/actions.h include/KF5/KPeople/kpeople/widgets/kpeoplewidgets_export.h include/KF5/KPeople/kpeople/widgets/mergedialog.h include/KF5/KPeople/kpeople/widgets/persondetailsdialog.h include/KF5/KPeople/kpeople/widgets/persondetailsview.h include/KF5/KPeople/kpeoplebackend/abstractcontact.h include/KF5/KPeople/kpeoplebackend/abstracteditablecontact.h include/KF5/KPeople/kpeoplebackend/abstractpersonaction.h include/KF5/KPeople/kpeoplebackend/allcontactsmonitor.h include/KF5/KPeople/kpeoplebackend/basepersonsdatasource.h include/KF5/KPeople/kpeoplebackend/contactmonitor.h include/KF5/KPeople/kpeopleprivate/personmanager_p.h include/KF5/KPeople/kpeoplebackend/kpeoplebackend_export.h lib/cmake/KF5People/KF5PeopleConfig.cmake lib/cmake/KF5People/KF5PeopleConfigVersion.cmake lib/cmake/KF5People/KPeopleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5People/KPeopleTargets.cmake lib/libKF5People.so lib/libKF5People.so.5 lib/libKF5People.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PeopleBackend.so lib/libKF5PeopleBackend.so.5 lib/libKF5PeopleBackend.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PeopleWidgets.so lib/libKF5PeopleWidgets.so.5 lib/libKF5PeopleWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_QMLDIR%%/org/kde/people/libKF5PeopleDeclarative.so %%QT_QMLDIR%%/org/kde/people/qmldir %%QT_MKSPECDIR%%/modules/qt_KPeople.pri %%QT_MKSPECDIR%%/modules/qt_KPeopleWidgets.pri share/kservicetypes5/kpeople_data_source.desktop share/kservicetypes5/kpeople_plugin.desktop share/kservicetypes5/persondetailsplugin.desktop share/locale/ar/LC_MESSAGES/kpeople5.mo share/locale/az/LC_MESSAGES/kpeople5.mo share/locale/bs/LC_MESSAGES/kpeople5.mo share/locale/ca/LC_MESSAGES/kpeople5.mo share/locale/ca@valencia/LC_MESSAGES/kpeople5.mo share/locale/cs/LC_MESSAGES/kpeople5.mo share/locale/da/LC_MESSAGES/kpeople5.mo share/locale/de/LC_MESSAGES/kpeople5.mo share/locale/el/LC_MESSAGES/kpeople5.mo share/locale/en_GB/LC_MESSAGES/kpeople5.mo share/locale/es/LC_MESSAGES/kpeople5.mo share/locale/et/LC_MESSAGES/kpeople5.mo share/locale/eu/LC_MESSAGES/kpeople5.mo share/locale/fi/LC_MESSAGES/kpeople5.mo share/locale/fr/LC_MESSAGES/kpeople5.mo share/locale/gd/LC_MESSAGES/kpeople5.mo share/locale/gl/LC_MESSAGES/kpeople5.mo share/locale/he/LC_MESSAGES/kpeople5.mo share/locale/hi/LC_MESSAGES/kpeople5.mo share/locale/hu/LC_MESSAGES/kpeople5.mo share/locale/ia/LC_MESSAGES/kpeople5.mo share/locale/id/LC_MESSAGES/kpeople5.mo share/locale/it/LC_MESSAGES/kpeople5.mo share/locale/ja/LC_MESSAGES/kpeople5.mo +share/locale/ka/LC_MESSAGES/kpeople5.mo share/locale/ko/LC_MESSAGES/kpeople5.mo share/locale/lt/LC_MESSAGES/kpeople5.mo share/locale/ml/LC_MESSAGES/kpeople5.mo share/locale/nb/LC_MESSAGES/kpeople5.mo share/locale/nl/LC_MESSAGES/kpeople5.mo share/locale/nn/LC_MESSAGES/kpeople5.mo share/locale/pl/LC_MESSAGES/kpeople5.mo share/locale/pt/LC_MESSAGES/kpeople5.mo share/locale/pt_BR/LC_MESSAGES/kpeople5.mo share/locale/ro/LC_MESSAGES/kpeople5.mo share/locale/ru/LC_MESSAGES/kpeople5.mo share/locale/sk/LC_MESSAGES/kpeople5.mo share/locale/sl/LC_MESSAGES/kpeople5.mo share/locale/sr/LC_MESSAGES/kpeople5.mo share/locale/sr@ijekavian/LC_MESSAGES/kpeople5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kpeople5.mo share/locale/sr@latin/LC_MESSAGES/kpeople5.mo share/locale/sv/LC_MESSAGES/kpeople5.mo share/locale/tg/LC_MESSAGES/kpeople5.mo share/locale/tr/LC_MESSAGES/kpeople5.mo share/locale/uk/LC_MESSAGES/kpeople5.mo share/locale/zh_CN/LC_MESSAGES/kpeople5.mo share/locale/zh_TW/LC_MESSAGES/kpeople5.mo share/qlogging-categories5/kpeople.categories share/qlogging-categories5/kpeople.renamecategories diff --git a/devel/kf5-kpty/distinfo b/devel/kf5-kpty/distinfo index 379ee998c850..bcc8e0bfa4f5 100644 --- a/devel/kf5-kpty/distinfo +++ b/devel/kf5-kpty/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111304 -SHA256 (KDE/frameworks/5.94.0/kpty-5.94.0.tar.xz) = 569a60318b54cca6a5c5fb1e182556010d2f4c052961b125ad852ffa015746ca -SIZE (KDE/frameworks/5.94.0/kpty-5.94.0.tar.xz) = 59392 +TIMESTAMP = 1654981229 +SHA256 (KDE/frameworks/5.95.0/kpty-5.95.0.tar.xz) = f61c80e545a77a94840d12e01cf0cb7332f76d86583184d6b8d90d8fec595f5e +SIZE (KDE/frameworks/5.95.0/kpty-5.95.0.tar.xz) = 59408 diff --git a/devel/kf5-kservice/distinfo b/devel/kf5-kservice/distinfo index 7b8025803502..a60aa967a0a5 100644 --- a/devel/kf5-kservice/distinfo +++ b/devel/kf5-kservice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111305 -SHA256 (KDE/frameworks/5.94.0/kservice-5.94.0.tar.xz) = 1aad105fc0a4060b1cbe6e29f96f93a01af254159c9263c080d94e4eeae43b32 -SIZE (KDE/frameworks/5.94.0/kservice-5.94.0.tar.xz) = 267700 +TIMESTAMP = 1654981230 +SHA256 (KDE/frameworks/5.95.0/kservice-5.95.0.tar.xz) = dc71e9a3808374d792bdb010da917c6df349167e5cd196f6c1e2c08d644404e6 +SIZE (KDE/frameworks/5.95.0/kservice-5.95.0.tar.xz) = 267660 diff --git a/devel/kf5-ktexteditor/distinfo b/devel/kf5-ktexteditor/distinfo index 55a45192e51c..ab96476e7f64 100644 --- a/devel/kf5-ktexteditor/distinfo +++ b/devel/kf5-ktexteditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111306 -SHA256 (KDE/frameworks/5.94.0/ktexteditor-5.94.0.tar.xz) = d82d9997167d718ab821dce40e8752205a5ab60f2e69a1bffaf2265455e1b3b6 -SIZE (KDE/frameworks/5.94.0/ktexteditor-5.94.0.tar.xz) = 2388448 +TIMESTAMP = 1654981231 +SHA256 (KDE/frameworks/5.95.0/ktexteditor-5.95.0.tar.xz) = d5e5b63aea8fc8edab681da3033cd40da10daa89262f48ce92c6ab67d59d3e7b +SIZE (KDE/frameworks/5.95.0/ktexteditor-5.95.0.tar.xz) = 2392068 diff --git a/devel/kf5-kunitconversion/distinfo b/devel/kf5-kunitconversion/distinfo index 6ee44da7db30..4e4ec39bbd99 100644 --- a/devel/kf5-kunitconversion/distinfo +++ b/devel/kf5-kunitconversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111307 -SHA256 (KDE/frameworks/5.94.0/kunitconversion-5.94.0.tar.xz) = e4adf0f124db45134042e706b466c30e531398996f872294119887af9ca38049 -SIZE (KDE/frameworks/5.94.0/kunitconversion-5.94.0.tar.xz) = 892292 +TIMESTAMP = 1654981232 +SHA256 (KDE/frameworks/5.95.0/kunitconversion-5.95.0.tar.xz) = 0f00a6a8065e46eea4507159e99299c2334d1acdcbc69c8486d3965edf94341d +SIZE (KDE/frameworks/5.95.0/kunitconversion-5.95.0.tar.xz) = 893812 diff --git a/devel/kf5-solid/distinfo b/devel/kf5-solid/distinfo index ee99c5a0856a..5f736f0e267f 100644 --- a/devel/kf5-solid/distinfo +++ b/devel/kf5-solid/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111308 -SHA256 (KDE/frameworks/5.94.0/solid-5.94.0.tar.xz) = 9d8ed401e36b6a4b9e51438c8e2d359129b9d6149deb8240cb894b1128fa1107 -SIZE (KDE/frameworks/5.94.0/solid-5.94.0.tar.xz) = 258160 +TIMESTAMP = 1654981233 +SHA256 (KDE/frameworks/5.95.0/solid-5.95.0.tar.xz) = 4c4a09117da0cc181b257f56cd00e2e99423594e107817c8217492358769366e +SIZE (KDE/frameworks/5.95.0/solid-5.95.0.tar.xz) = 258356 diff --git a/devel/kf5-threadweaver/distinfo b/devel/kf5-threadweaver/distinfo index dc45685512c9..0b8adfb82d87 100644 --- a/devel/kf5-threadweaver/distinfo +++ b/devel/kf5-threadweaver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936461 -SHA256 (KDE/frameworks/5.94.0/threadweaver-5.94.0.tar.xz) = 87d8431a62c53b7e433b49dfad4fd6cacb58356a50cfa17ac480c6bb00a8e1c5 -SIZE (KDE/frameworks/5.94.0/threadweaver-5.94.0.tar.xz) = 1412996 +TIMESTAMP = 1654981234 +SHA256 (KDE/frameworks/5.95.0/threadweaver-5.95.0.tar.xz) = bab01c9fc08721b86db274c2a068a2957f8f0a72c5534133425e82af4ef2dd3e +SIZE (KDE/frameworks/5.95.0/threadweaver-5.95.0.tar.xz) = 1412572 diff --git a/dns/kf5-kdnssd/distinfo b/dns/kf5-kdnssd/distinfo index 7b0a71469951..e472353c0e6a 100644 --- a/dns/kf5-kdnssd/distinfo +++ b/dns/kf5-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111310 -SHA256 (KDE/frameworks/5.94.0/kdnssd-5.94.0.tar.xz) = 28eba2ff83d92bb80eac5bb771d5d5bf40c975d4b26a74d388092b034a964863 -SIZE (KDE/frameworks/5.94.0/kdnssd-5.94.0.tar.xz) = 61160 +TIMESTAMP = 1654981235 +SHA256 (KDE/frameworks/5.95.0/kdnssd-5.95.0.tar.xz) = c7e8da805c29accccf7e42292611991c97a2d8e66e6153522f6e6a7d58e06883 +SIZE (KDE/frameworks/5.95.0/kdnssd-5.95.0.tar.xz) = 61124 diff --git a/graphics/kf5-kimageformats/distinfo b/graphics/kf5-kimageformats/distinfo index efa362dc7467..ccc6a0bdc6a1 100644 --- a/graphics/kf5-kimageformats/distinfo +++ b/graphics/kf5-kimageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936463 -SHA256 (KDE/frameworks/5.94.0/kimageformats-5.94.0.tar.xz) = b189626c091dc9959d586a229c47ca36443b77d79706476ff89a50f9e8774e54 -SIZE (KDE/frameworks/5.94.0/kimageformats-5.94.0.tar.xz) = 2926996 +TIMESTAMP = 1654981236 +SHA256 (KDE/frameworks/5.95.0/kimageformats-5.95.0.tar.xz) = 257a011608c682226c8559a8a2f26a37862a1400ec22fcb5f69e2273e8dbb8fe +SIZE (KDE/frameworks/5.95.0/kimageformats-5.95.0.tar.xz) = 2926576 diff --git a/graphics/kf5-kplotting/distinfo b/graphics/kf5-kplotting/distinfo index 5b2f38ff65f8..fd3c83462f59 100644 --- a/graphics/kf5-kplotting/distinfo +++ b/graphics/kf5-kplotting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936464 -SHA256 (KDE/frameworks/5.94.0/kplotting-5.94.0.tar.xz) = 783d6d618601d58077c4ac7920a579af7b877b26a64a6f453570da36b57606aa -SIZE (KDE/frameworks/5.94.0/kplotting-5.94.0.tar.xz) = 33704 +TIMESTAMP = 1654981237 +SHA256 (KDE/frameworks/5.95.0/kplotting-5.95.0.tar.xz) = de4a0ce363e86d90be60dff400bf5b58c745821a9192e7327aecab2c74b9d14b +SIZE (KDE/frameworks/5.95.0/kplotting-5.95.0.tar.xz) = 33724 diff --git a/graphics/kf5-kquickcharts/distinfo b/graphics/kf5-kquickcharts/distinfo index 5ccd649c6f82..e9ae1387220a 100644 --- a/graphics/kf5-kquickcharts/distinfo +++ b/graphics/kf5-kquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936464 -SHA256 (KDE/frameworks/5.94.0/kquickcharts-5.94.0.tar.xz) = 3065fabdb4938b68194060794abc90feac19e73dcb7648591c58e2c9cfea9528 -SIZE (KDE/frameworks/5.94.0/kquickcharts-5.94.0.tar.xz) = 108824 +TIMESTAMP = 1654981237 +SHA256 (KDE/frameworks/5.95.0/kquickcharts-5.95.0.tar.xz) = 7a09e194784b3ec12e9a2ff74cca3cd263c6f7793c551c634788f43d6a87d325 +SIZE (KDE/frameworks/5.95.0/kquickcharts-5.95.0.tar.xz) = 108876 diff --git a/graphics/kf5-prison/distinfo b/graphics/kf5-prison/distinfo index a9543debbb54..9c161556f6cd 100644 --- a/graphics/kf5-prison/distinfo +++ b/graphics/kf5-prison/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936465 -SHA256 (KDE/frameworks/5.94.0/prison-5.94.0.tar.xz) = 99607978559f63dba65d796c5edaf6c54e8aee5d31882d856347ea5ada06d1cb -SIZE (KDE/frameworks/5.94.0/prison-5.94.0.tar.xz) = 55184 +TIMESTAMP = 1654981238 +SHA256 (KDE/frameworks/5.95.0/prison-5.95.0.tar.xz) = 616dbe05603a56225462c75537cddefde0f0fe7343e54b2a40ad571cda676f44 +SIZE (KDE/frameworks/5.95.0/prison-5.95.0.tar.xz) = 55364 diff --git a/graphics/kf5-prison/pkg-plist b/graphics/kf5-prison/pkg-plist index e37ab47d8da0..1a4a7c250fde 100644 --- a/graphics/kf5-prison/pkg-plist +++ b/graphics/kf5-prison/pkg-plist @@ -1,31 +1,36 @@ +include/KF5/Prison/Prison/AbstractBarcode +include/KF5/Prison/Prison/Prison +include/KF5/Prison/Prison/abstractbarcode.h +include/KF5/Prison/Prison/prison.h +include/KF5/Prison/Prison/prison_export.h include/KF5/Prison/prison/AbstractBarcode include/KF5/Prison/prison/Prison include/KF5/Prison/prison/abstractbarcode.h include/KF5/Prison/prison/prison.h include/KF5/Prison/prison/prison_export.h include/KF5/Prison/prison/prison_version.h include/KF5/Prison/prison_version.h include/KF5/PrisonScanner/Prison/Format -include/KF5/PrisonScanner/prison/format.h -include/KF5/PrisonScanner/prison/prisonscanner_export.h include/KF5/PrisonScanner/Prison/ScanResult -include/KF5/PrisonScanner/prison/scanresult.h include/KF5/PrisonScanner/Prison/VideoScanner -include/KF5/PrisonScanner/prison/videoscanner.h +include/KF5/PrisonScanner/Prison/format.h +include/KF5/PrisonScanner/Prison/prisonscanner_export.h +include/KF5/PrisonScanner/Prison/scanresult.h +include/KF5/PrisonScanner/Prison/videoscanner.h lib/cmake/KF5Prison/KF5PrisonConfig.cmake lib/cmake/KF5Prison/KF5PrisonConfigVersion.cmake lib/cmake/KF5Prison/KF5PrisonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Prison/KF5PrisonTargets.cmake lib/libKF5Prison.so lib/libKF5Prison.so.5 lib/libKF5Prison.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PrisonScanner.so lib/libKF5PrisonScanner.so.5 lib/libKF5PrisonScanner.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_Prison.pri %%QT_QMLDIR%%/org/kde/prison/libprisonquickplugin.so %%QT_QMLDIR%%/org/kde/prison/qmldir %%QT_QMLDIR%%/org/kde/prison/scanner/libprisonscannerquickplugin.so %%QT_QMLDIR%%/org/kde/prison/scanner/qmldir share/qlogging-categories5/prison.categories share/qlogging-categories5/prison.renamecategories diff --git a/lang/kf5-kross/distinfo b/lang/kf5-kross/distinfo index e6016d306774..94db0d3325a2 100644 --- a/lang/kf5-kross/distinfo +++ b/lang/kf5-kross/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111314 -SHA256 (KDE/frameworks/5.94.0/kross-5.94.0.tar.xz) = 1d6925bd2530ded6ea97f832fda42de0e24d1d7302e52262171fd0461f642d49 -SIZE (KDE/frameworks/5.94.0/kross-5.94.0.tar.xz) = 129388 +TIMESTAMP = 1654981239 +SHA256 (KDE/frameworks/5.95.0/kross-5.95.0.tar.xz) = 557efdd6bc27c93ab2bc0820f74f412395cc8d78248db035ce7923df88b37915 +SIZE (KDE/frameworks/5.95.0/kross-5.95.0.tar.xz) = 129420 diff --git a/misc/kf5-purpose/distinfo b/misc/kf5-purpose/distinfo index a6a496e39263..66e184ef726e 100644 --- a/misc/kf5-purpose/distinfo +++ b/misc/kf5-purpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111315 -SHA256 (KDE/frameworks/5.94.0/purpose-5.94.0.tar.xz) = 73adff977f2a69624abaf6340d6609dde41f404600feb28e51e1c7db4541b3ab -SIZE (KDE/frameworks/5.94.0/purpose-5.94.0.tar.xz) = 172680 +TIMESTAMP = 1654981240 +SHA256 (KDE/frameworks/5.95.0/purpose-5.95.0.tar.xz) = 6624202713c7cd05389c69895c5569ee9be6d4c5d16b08c80d290913d8f15700 +SIZE (KDE/frameworks/5.95.0/purpose-5.95.0.tar.xz) = 172852 diff --git a/multimedia/kf5-kmediaplayer/distinfo b/multimedia/kf5-kmediaplayer/distinfo index 628a80a4d517..f48aadd0e4bf 100644 --- a/multimedia/kf5-kmediaplayer/distinfo +++ b/multimedia/kf5-kmediaplayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936468 -SHA256 (KDE/frameworks/5.94.0/kmediaplayer-5.94.0.tar.xz) = 0bf1f6df0ce21d397ca168307b3b3e57d10c0fb90369cee03bbfbf9fa7d8208c -SIZE (KDE/frameworks/5.94.0/kmediaplayer-5.94.0.tar.xz) = 9952 +TIMESTAMP = 1654981241 +SHA256 (KDE/frameworks/5.95.0/kmediaplayer-5.95.0.tar.xz) = fbf9c3a00de41992f5f38b4794ba9fd05cdf36a4360b093f3799edaaf020b0e3 +SIZE (KDE/frameworks/5.95.0/kmediaplayer-5.95.0.tar.xz) = 9952 diff --git a/net/kf5-kcalendarcore/distinfo b/net/kf5-kcalendarcore/distinfo index 9ee7d75662ae..357ea2189123 100644 --- a/net/kf5-kcalendarcore/distinfo +++ b/net/kf5-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936469 -SHA256 (KDE/frameworks/5.94.0/kcalendarcore-5.94.0.tar.xz) = 3bab1ae2e8214fb889b742d4a4f2c6acfd0bf40a4c4933cc91c66d21d77c042b -SIZE (KDE/frameworks/5.94.0/kcalendarcore-5.94.0.tar.xz) = 266328 +TIMESTAMP = 1654981242 +SHA256 (KDE/frameworks/5.95.0/kcalendarcore-5.95.0.tar.xz) = 786a6ca4fd0f52f5f02da1de6e74b08188bd9364cee442d9f12b053eef262980 +SIZE (KDE/frameworks/5.95.0/kcalendarcore-5.95.0.tar.xz) = 264080 diff --git a/net/kf5-kcontacts/distinfo b/net/kf5-kcontacts/distinfo index 65e71756b385..87eafb9c0c92 100644 --- a/net/kf5-kcontacts/distinfo +++ b/net/kf5-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111318 -SHA256 (KDE/frameworks/5.94.0/kcontacts-5.94.0.tar.xz) = f7f317dfd9b270249cf168a699b39236490b5b21ec2ef1d186b59e29566252f8 -SIZE (KDE/frameworks/5.94.0/kcontacts-5.94.0.tar.xz) = 193068 +TIMESTAMP = 1654981243 +SHA256 (KDE/frameworks/5.95.0/kcontacts-5.95.0.tar.xz) = 10d73320a5548a127f9015ffda0c739a32f69da9460fc28f5ae0427f60424dc9 +SIZE (KDE/frameworks/5.95.0/kcontacts-5.95.0.tar.xz) = 193028 diff --git a/net/kf5-kdav/distinfo b/net/kf5-kdav/distinfo index 324b9d6996e5..be85c8511dc2 100644 --- a/net/kf5-kdav/distinfo +++ b/net/kf5-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111319 -SHA256 (KDE/frameworks/5.94.0/kdav-5.94.0.tar.xz) = 8b211ec6e1009f11ae5d0769e21947a473d6ca479ea8a16701a808aa57335b3e -SIZE (KDE/frameworks/5.94.0/kdav-5.94.0.tar.xz) = 64448 +TIMESTAMP = 1654981244 +SHA256 (KDE/frameworks/5.95.0/kdav-5.95.0.tar.xz) = 757dbd3d25f78e2386d2990f98536f361c6a4c258b13ac36b3c06bb903244f27 +SIZE (KDE/frameworks/5.95.0/kdav-5.95.0.tar.xz) = 65116 diff --git a/net/kf5-kdav/pkg-plist b/net/kf5-kdav/pkg-plist index c45a1273527d..effb8523560b 100644 --- a/net/kf5-kdav/pkg-plist +++ b/net/kf5-kdav/pkg-plist @@ -1,91 +1,92 @@ include/KF5/KDAV/KDAV/DavCollection include/KF5/KDAV/KDAV/DavCollectionDeleteJob include/KF5/KDAV/KDAV/DavCollectionModifyJob include/KF5/KDAV/KDAV/DavCollectionsFetchJob include/KF5/KDAV/KDAV/DavCollectionsMultiFetchJob include/KF5/KDAV/KDAV/DavError include/KF5/KDAV/KDAV/DavItem include/KF5/KDAV/KDAV/DavItemCreateJob include/KF5/KDAV/KDAV/DavItemDeleteJob include/KF5/KDAV/KDAV/DavItemFetchJob include/KF5/KDAV/KDAV/DavItemModifyJob include/KF5/KDAV/KDAV/DavItemsFetchJob include/KF5/KDAV/KDAV/DavItemsListJob include/KF5/KDAV/KDAV/DavJobBase include/KF5/KDAV/KDAV/DavPrincipalHomesetsFetchJob include/KF5/KDAV/KDAV/DavPrincipalSearchJob include/KF5/KDAV/KDAV/DavUrl include/KF5/KDAV/KDAV/Enums include/KF5/KDAV/KDAV/EtagCache include/KF5/KDAV/KDAV/ProtocolInfo include/KF5/KDAV/kdav/davcollection.h include/KF5/KDAV/kdav/davcollectiondeletejob.h include/KF5/KDAV/kdav/davcollectionmodifyjob.h include/KF5/KDAV/kdav/davcollectionsfetchjob.h include/KF5/KDAV/kdav/davcollectionsmultifetchjob.h include/KF5/KDAV/kdav/daverror.h include/KF5/KDAV/kdav/davitem.h include/KF5/KDAV/kdav/davitemcreatejob.h include/KF5/KDAV/kdav/davitemdeletejob.h include/KF5/KDAV/kdav/davitemfetchjob.h include/KF5/KDAV/kdav/davitemmodifyjob.h include/KF5/KDAV/kdav/davitemsfetchjob.h include/KF5/KDAV/kdav/davitemslistjob.h include/KF5/KDAV/kdav/davjobbase.h include/KF5/KDAV/kdav/davprincipalhomesetsfetchjob.h include/KF5/KDAV/kdav/davprincipalsearchjob.h include/KF5/KDAV/kdav/davurl.h include/KF5/KDAV/kdav/enums.h include/KF5/KDAV/kdav/etagcache.h include/KF5/KDAV/kdav/kdav_export.h include/KF5/KDAV/kdav/protocolinfo.h include/KF5/kdav_version.h lib/cmake/KF5DAV/KF5DAVConfig.cmake lib/cmake/KF5DAV/KF5DAVConfigVersion.cmake lib/cmake/KF5DAV/KF5DAVTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DAV/KF5DAVTargets.cmake lib/libKF5DAV.so lib/libKF5DAV.so.5 lib/libKF5DAV.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KDAV.pri share/locale/ar/LC_MESSAGES/libkdav.mo share/locale/az/LC_MESSAGES/libkdav.mo share/locale/ca/LC_MESSAGES/libkdav.mo share/locale/ca@valencia/LC_MESSAGES/libkdav.mo share/locale/cs/LC_MESSAGES/libkdav.mo share/locale/de/LC_MESSAGES/libkdav.mo share/locale/el/LC_MESSAGES/libkdav.mo share/locale/en_GB/LC_MESSAGES/libkdav.mo share/locale/es/LC_MESSAGES/libkdav.mo share/locale/et/LC_MESSAGES/libkdav.mo share/locale/eu/LC_MESSAGES/libkdav.mo share/locale/fi/LC_MESSAGES/libkdav.mo share/locale/fr/LC_MESSAGES/libkdav.mo share/locale/gl/LC_MESSAGES/libkdav.mo share/locale/hi/LC_MESSAGES/libkdav.mo share/locale/ia/LC_MESSAGES/libkdav.mo share/locale/it/LC_MESSAGES/libkdav.mo share/locale/ja/LC_MESSAGES/libkdav.mo +share/locale/ka/LC_MESSAGES/libkdav.mo share/locale/ko/LC_MESSAGES/libkdav.mo share/locale/lt/LC_MESSAGES/libkdav.mo share/locale/nb/LC_MESSAGES/libkdav.mo share/locale/nl/LC_MESSAGES/libkdav.mo share/locale/nn/LC_MESSAGES/libkdav.mo share/locale/pl/LC_MESSAGES/libkdav.mo share/locale/pt/LC_MESSAGES/libkdav.mo share/locale/pt_BR/LC_MESSAGES/libkdav.mo share/locale/ro/LC_MESSAGES/libkdav.mo share/locale/ru/LC_MESSAGES/libkdav.mo share/locale/sk/LC_MESSAGES/libkdav.mo share/locale/sl/LC_MESSAGES/libkdav.mo share/locale/sr/LC_MESSAGES/libkdav.mo share/locale/sr@ijekavian/LC_MESSAGES/libkdav.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkdav.mo share/locale/sr@latin/LC_MESSAGES/libkdav.mo share/locale/sv/LC_MESSAGES/libkdav.mo share/locale/tr/LC_MESSAGES/libkdav.mo share/locale/uk/LC_MESSAGES/libkdav.mo share/locale/zh_CN/LC_MESSAGES/libkdav.mo share/locale/zh_TW/LC_MESSAGES/libkdav.mo share/qlogging-categories5/kdav.categories share/qlogging-categories5/kdav.renamecategories diff --git a/net/kf5-kholidays/distinfo b/net/kf5-kholidays/distinfo index 66531185a021..843d00c5ede4 100644 --- a/net/kf5-kholidays/distinfo +++ b/net/kf5-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111320 -SHA256 (KDE/frameworks/5.94.0/kholidays-5.94.0.tar.xz) = e53735539c9d7658e3c18e0d8b0f81bc9ce27ff32a868bac32c19c12288a055d -SIZE (KDE/frameworks/5.94.0/kholidays-5.94.0.tar.xz) = 238860 +TIMESTAMP = 1654981245 +SHA256 (KDE/frameworks/5.95.0/kholidays-5.95.0.tar.xz) = 5339e7d9c5f7b818467279b86f1b0d3e52ebdcf3f8bfd5b723f4db0728a1ed07 +SIZE (KDE/frameworks/5.95.0/kholidays-5.95.0.tar.xz) = 239132 diff --git a/net/kf5-kxmlrpcclient/distinfo b/net/kf5-kxmlrpcclient/distinfo index 10414c0f603e..fdba0d8f04bb 100644 --- a/net/kf5-kxmlrpcclient/distinfo +++ b/net/kf5-kxmlrpcclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111321 -SHA256 (KDE/frameworks/5.94.0/kxmlrpcclient-5.94.0.tar.xz) = 65ac95cb022d5c7ca54c1e601211969aba06858773d881feb0004628a3451f82 -SIZE (KDE/frameworks/5.94.0/kxmlrpcclient-5.94.0.tar.xz) = 31908 +TIMESTAMP = 1654981246 +SHA256 (KDE/frameworks/5.95.0/kxmlrpcclient-5.95.0.tar.xz) = fc1948a5254bc5842f4c0ddfc9c4f7dfb5d5ff0f002eb4069902954ef29abed1 +SIZE (KDE/frameworks/5.95.0/kxmlrpcclient-5.95.0.tar.xz) = 32104 diff --git a/net/kf5-kxmlrpcclient/pkg-plist b/net/kf5-kxmlrpcclient/pkg-plist index 1739e11ec948..73366e2e4925 100644 --- a/net/kf5-kxmlrpcclient/pkg-plist +++ b/net/kf5-kxmlrpcclient/pkg-plist @@ -1,75 +1,76 @@ include/KF5/KXmlRpcClient/KXmlRpcClient/Client include/KF5/KXmlRpcClient/kxmlrpcclient/client.h include/KF5/KXmlRpcClient/kxmlrpcclient/kxmlrpcclient_export.h include/KF5/KXmlRpcClient/kxmlrpcclient_version.h lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientConfig.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientConfigVersion.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5XmlRpcClient/KF5XmlRpcClientTargets.cmake lib/libKF5XmlRpcClient.so lib/libKF5XmlRpcClient.so.5 lib/libKF5XmlRpcClient.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KXmlRpcClient.pri share/locale/ar/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/az/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/be/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/bg/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/bs/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ca/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ca@valencia/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/cs/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/da/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/de/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/el/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/en_GB/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/eo/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/es/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/et/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/eu/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/fi/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/fr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ga/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/gd/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/gl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/he/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hi/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hne/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/hu/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ia/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/id/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/it/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ja/LC_MESSAGES/libkxmlrpcclient5.mo +share/locale/ka/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/kk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/km/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ko/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/lt/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/lv/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ml/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/mr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nb/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nds/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/nn/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pa/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pt/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/pt_BR/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ro/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ru/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/se/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sl/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sq/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sr@latin/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/sv/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/tg/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/tr/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/ug/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/uk/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/zh_CN/LC_MESSAGES/libkxmlrpcclient5.mo share/locale/zh_TW/LC_MESSAGES/libkxmlrpcclient5.mo share/qlogging-categories5/kxmlrpcclient.categories share/qlogging-categories5/kxmlrpcclient.renamecategories diff --git a/net/kf5-syndication/distinfo b/net/kf5-syndication/distinfo index 2f099a2730b0..004aa33dbab3 100644 --- a/net/kf5-syndication/distinfo +++ b/net/kf5-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936474 -SHA256 (KDE/frameworks/5.94.0/syndication-5.94.0.tar.xz) = 458e12e4d4898d5e660ea6a3fe0d6158c208f5d4176451e1132423df2044685b -SIZE (KDE/frameworks/5.94.0/syndication-5.94.0.tar.xz) = 510540 +TIMESTAMP = 1654981247 +SHA256 (KDE/frameworks/5.95.0/syndication-5.95.0.tar.xz) = ccd5f405203ef4a73b581f8e5f9c06b83f10f62824e23cee6efd34d766840836 +SIZE (KDE/frameworks/5.95.0/syndication-5.95.0.tar.xz) = 510448 diff --git a/security/kf5-kdesu/distinfo b/security/kf5-kdesu/distinfo index e4098a47d914..3e605fcc9f1e 100644 --- a/security/kf5-kdesu/distinfo +++ b/security/kf5-kdesu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111323 -SHA256 (KDE/frameworks/5.94.0/kdesu-5.94.0.tar.xz) = 90494323ebab4c8cdd93c068c2c4fe3a8457513cee21d7887fc4473028a9dce1 -SIZE (KDE/frameworks/5.94.0/kdesu-5.94.0.tar.xz) = 55500 +TIMESTAMP = 1654981248 +SHA256 (KDE/frameworks/5.95.0/kdesu-5.95.0.tar.xz) = 2e742b0799ac29f88e92d611b72a725bf752f3caaa3fd13ef05dde2096cec3ac +SIZE (KDE/frameworks/5.95.0/kdesu-5.95.0.tar.xz) = 55852 diff --git a/security/kf5-kdesu/pkg-plist b/security/kf5-kdesu/pkg-plist index 2e741c2e2207..7430f7fc8030 100644 --- a/security/kf5-kdesu/pkg-plist +++ b/security/kf5-kdesu/pkg-plist @@ -1,78 +1,80 @@ include/KF5/KDESu/KDESu/Client include/KF5/KDESu/KDESu/PtyProcess include/KF5/KDESu/KDESu/SshProcess include/KF5/KDESu/KDESu/StubProcess include/KF5/KDESu/KDESu/SuProcess include/KF5/KDESu/kdesu/client.h include/KF5/KDESu/kdesu/defaults.h include/KF5/KDESu/kdesu/kdesu_export.h include/KF5/KDESu/kdesu/process.h include/KF5/KDESu/kdesu/ptyprocess.h include/KF5/KDESu/kdesu/ssh.h include/KF5/KDESu/kdesu/sshprocess.h include/KF5/KDESu/kdesu/stub.h include/KF5/KDESu/kdesu/stubprocess.h include/KF5/KDESu/kdesu/su.h include/KF5/KDESu/kdesu/suprocess.h include/KF5/KDESu/kdesu_version.h lib/cmake/KF5Su/KF5SuConfig.cmake lib/cmake/KF5Su/KF5SuConfigVersion.cmake lib/cmake/KF5Su/KF5SuTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Su/KF5SuTargets.cmake lib/libKF5Su.so lib/libKF5Su.so.5 lib/libKF5Su.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kdesu_stub lib/libexec/kf5/kdesud %%QT_MKSPECDIR%%/modules/qt_KDESu.pri share/locale/ar/LC_MESSAGES/kdesud5.mo share/locale/ast/LC_MESSAGES/kdesud5.mo share/locale/az/LC_MESSAGES/kdesud5.mo share/locale/bs/LC_MESSAGES/kdesud5.mo share/locale/ca/LC_MESSAGES/kdesud5.mo share/locale/ca@valencia/LC_MESSAGES/kdesud5.mo share/locale/cs/LC_MESSAGES/kdesud5.mo share/locale/da/LC_MESSAGES/kdesud5.mo share/locale/de/LC_MESSAGES/kdesud5.mo share/locale/el/LC_MESSAGES/kdesud5.mo share/locale/en_GB/LC_MESSAGES/kdesud5.mo share/locale/es/LC_MESSAGES/kdesud5.mo share/locale/et/LC_MESSAGES/kdesud5.mo share/locale/eu/LC_MESSAGES/kdesud5.mo share/locale/fi/LC_MESSAGES/kdesud5.mo share/locale/fr/LC_MESSAGES/kdesud5.mo share/locale/gd/LC_MESSAGES/kdesud5.mo share/locale/gl/LC_MESSAGES/kdesud5.mo share/locale/hi/LC_MESSAGES/kdesud5.mo share/locale/hu/LC_MESSAGES/kdesud5.mo share/locale/ia/LC_MESSAGES/kdesud5.mo share/locale/id/LC_MESSAGES/kdesud5.mo share/locale/it/LC_MESSAGES/kdesud5.mo share/locale/ja/LC_MESSAGES/kdesud5.mo +share/locale/ka/LC_MESSAGES/kdesud5.mo share/locale/ko/LC_MESSAGES/kdesud5.mo share/locale/lt/LC_MESSAGES/kdesud5.mo share/locale/ml/LC_MESSAGES/kdesud5.mo share/locale/nb/LC_MESSAGES/kdesud5.mo share/locale/nds/LC_MESSAGES/kdesud5.mo share/locale/nl/LC_MESSAGES/kdesud5.mo share/locale/nn/LC_MESSAGES/kdesud5.mo share/locale/pa/LC_MESSAGES/kdesud5.mo share/locale/pl/LC_MESSAGES/kdesud5.mo share/locale/pt/LC_MESSAGES/kdesud5.mo share/locale/pt_BR/LC_MESSAGES/kdesud5.mo share/locale/ro/LC_MESSAGES/kdesud5.mo share/locale/ru/LC_MESSAGES/kdesud5.mo share/locale/se/LC_MESSAGES/kdesud5.mo share/locale/sk/LC_MESSAGES/kdesud5.mo share/locale/sl/LC_MESSAGES/kdesud5.mo share/locale/sr/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesud5.mo share/locale/sr@latin/LC_MESSAGES/kdesud5.mo share/locale/sv/LC_MESSAGES/kdesud5.mo share/locale/tg/LC_MESSAGES/kdesud5.mo share/locale/tr/LC_MESSAGES/kdesud5.mo share/locale/uk/LC_MESSAGES/kdesud5.mo +share/locale/vi/LC_MESSAGES/kdesud5.mo share/locale/zh_CN/LC_MESSAGES/kdesud5.mo share/locale/zh_TW/LC_MESSAGES/kdesud5.mo share/qlogging-categories5/ksu.categories diff --git a/sysutils/kf5-baloo/distinfo b/sysutils/kf5-baloo/distinfo index 1df698a8a83a..296cf9b054a6 100644 --- a/sysutils/kf5-baloo/distinfo +++ b/sysutils/kf5-baloo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111324 -SHA256 (KDE/frameworks/5.94.0/baloo-5.94.0.tar.xz) = 9dc4182e5803c32a47d6a82588f6a6b36837fb44a90fe4404750886150b9273a -SIZE (KDE/frameworks/5.94.0/baloo-5.94.0.tar.xz) = 289452 +TIMESTAMP = 1654981249 +SHA256 (KDE/frameworks/5.95.0/baloo-5.95.0.tar.xz) = 8d41a92a251ef12481778a136c75b1032a689879fe24d90a7555557232d1e2fd +SIZE (KDE/frameworks/5.95.0/baloo-5.95.0.tar.xz) = 290040 diff --git a/sysutils/kf5-baloo/pkg-plist b/sysutils/kf5-baloo/pkg-plist index 6871a7c8a45c..aec17a991990 100644 --- a/sysutils/kf5-baloo/pkg-plist +++ b/sysutils/kf5-baloo/pkg-plist @@ -1,426 +1,427 @@ bin/baloo_file bin/baloo_file_extractor bin/balooctl bin/baloosearch bin/balooshow etc/xdg/autostart/baloo_file.desktop include/KF5/Baloo/Baloo/File include/KF5/Baloo/Baloo/FileMonitor include/KF5/Baloo/Baloo/IndexerConfig include/KF5/Baloo/Baloo/Query include/KF5/Baloo/Baloo/QueryRunnable include/KF5/Baloo/Baloo/ResultIterator include/KF5/Baloo/Baloo/TagListJob include/KF5/Baloo/baloo/baloosettings.h include/KF5/Baloo/baloo/core_export.h include/KF5/Baloo/baloo/file.h include/KF5/Baloo/baloo/filemonitor.h include/KF5/Baloo/baloo/indexerconfig.h include/KF5/Baloo/baloo/query.h include/KF5/Baloo/baloo/queryrunnable.h include/KF5/Baloo/baloo/resultiterator.h include/KF5/Baloo/baloo/taglistjob.h include/KF5/Baloo/baloo_version.h lib/cmake/KF5Baloo/KF5BalooConfig.cmake lib/cmake/KF5Baloo/KF5BalooConfigVersion.cmake lib/cmake/KF5Baloo/KF5BalooTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Baloo/KF5BalooTargets.cmake lib/libKF5Baloo.so lib/libKF5Baloo.so.5 lib/libKF5Baloo.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5BalooEngine.so.5 lib/libKF5BalooEngine.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_Baloo.pri %%QT_PLUGINDIR%%/kf5/kded/baloosearchmodule.so %%QT_PLUGINDIR%%/kf5/kio/baloosearch.so %%QT_PLUGINDIR%%/kf5/kio/tags.so %%QT_PLUGINDIR%%/kf5/kio/timeline.so %%QT_QMLDIR%%/org/kde/baloo/experimental/libbaloomonitorplugin.so %%QT_QMLDIR%%/org/kde/baloo/experimental/qmldir %%QT_QMLDIR%%/org/kde/baloo/libbalooplugin.so %%QT_QMLDIR%%/org/kde/baloo/qmldir libdata/pkgconfig/Baloo.pc lib/libexec/baloo_file lib/libexec/baloo_file_extractor lib/systemd/user/kde-baloo.service share/dbus-1/interfaces/org.kde.BalooWatcherApplication.xml share/dbus-1/interfaces/org.kde.baloo.file.indexer.xml share/dbus-1/interfaces/org.kde.baloo.fileindexer.xml share/dbus-1/interfaces/org.kde.baloo.main.xml share/dbus-1/interfaces/org.kde.baloo.scheduler.xml share/locale/ar/LC_MESSAGES/balooctl5.mo share/locale/ar/LC_MESSAGES/baloodb5.mo share/locale/ar/LC_MESSAGES/balooengine5.mo share/locale/ar/LC_MESSAGES/baloosearch5.mo share/locale/ar/LC_MESSAGES/balooshow5.mo share/locale/ar/LC_MESSAGES/kio5_baloosearch.mo share/locale/ar/LC_MESSAGES/kio5_tags.mo share/locale/ar/LC_MESSAGES/kio5_timeline.mo share/locale/ast/LC_MESSAGES/balooctl5.mo share/locale/ast/LC_MESSAGES/kio5_timeline.mo share/locale/az/LC_MESSAGES/balooctl5.mo share/locale/az/LC_MESSAGES/baloodb5.mo share/locale/az/LC_MESSAGES/balooengine5.mo share/locale/az/LC_MESSAGES/baloosearch5.mo share/locale/az/LC_MESSAGES/balooshow5.mo share/locale/az/LC_MESSAGES/kio5_baloosearch.mo share/locale/az/LC_MESSAGES/kio5_tags.mo share/locale/az/LC_MESSAGES/kio5_timeline.mo share/locale/bg/LC_MESSAGES/balooctl5.mo share/locale/bg/LC_MESSAGES/baloodb5.mo share/locale/bg/LC_MESSAGES/balooengine5.mo share/locale/bg/LC_MESSAGES/baloosearch5.mo share/locale/bg/LC_MESSAGES/balooshow5.mo share/locale/bg/LC_MESSAGES/kio5_baloosearch.mo share/locale/bg/LC_MESSAGES/kio5_tags.mo share/locale/bg/LC_MESSAGES/kio5_timeline.mo share/locale/bs/LC_MESSAGES/balooctl5.mo share/locale/bs/LC_MESSAGES/baloosearch5.mo share/locale/bs/LC_MESSAGES/balooshow5.mo share/locale/bs/LC_MESSAGES/kio5_baloosearch.mo share/locale/bs/LC_MESSAGES/kio5_tags.mo share/locale/bs/LC_MESSAGES/kio5_timeline.mo share/locale/ca/LC_MESSAGES/balooctl5.mo share/locale/ca/LC_MESSAGES/baloodb5.mo share/locale/ca/LC_MESSAGES/balooengine5.mo share/locale/ca/LC_MESSAGES/baloosearch5.mo share/locale/ca/LC_MESSAGES/balooshow5.mo share/locale/ca/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca/LC_MESSAGES/kio5_tags.mo share/locale/ca/LC_MESSAGES/kio5_timeline.mo share/locale/ca@valencia/LC_MESSAGES/balooctl5.mo share/locale/ca@valencia/LC_MESSAGES/baloodb5.mo share/locale/ca@valencia/LC_MESSAGES/balooengine5.mo share/locale/ca@valencia/LC_MESSAGES/baloosearch5.mo share/locale/ca@valencia/LC_MESSAGES/balooshow5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca@valencia/LC_MESSAGES/kio5_tags.mo share/locale/ca@valencia/LC_MESSAGES/kio5_timeline.mo share/locale/cs/LC_MESSAGES/balooctl5.mo share/locale/cs/LC_MESSAGES/baloodb5.mo share/locale/cs/LC_MESSAGES/balooengine5.mo share/locale/cs/LC_MESSAGES/baloosearch5.mo share/locale/cs/LC_MESSAGES/balooshow5.mo share/locale/cs/LC_MESSAGES/kio5_baloosearch.mo share/locale/cs/LC_MESSAGES/kio5_tags.mo share/locale/cs/LC_MESSAGES/kio5_timeline.mo share/locale/da/LC_MESSAGES/balooctl5.mo share/locale/da/LC_MESSAGES/baloodb5.mo share/locale/da/LC_MESSAGES/balooengine5.mo share/locale/da/LC_MESSAGES/baloosearch5.mo share/locale/da/LC_MESSAGES/balooshow5.mo share/locale/da/LC_MESSAGES/kio5_baloosearch.mo share/locale/da/LC_MESSAGES/kio5_tags.mo share/locale/da/LC_MESSAGES/kio5_timeline.mo share/locale/de/LC_MESSAGES/balooctl5.mo share/locale/de/LC_MESSAGES/baloodb5.mo share/locale/de/LC_MESSAGES/balooengine5.mo share/locale/de/LC_MESSAGES/baloosearch5.mo share/locale/de/LC_MESSAGES/balooshow5.mo share/locale/de/LC_MESSAGES/kio5_baloosearch.mo share/locale/de/LC_MESSAGES/kio5_tags.mo share/locale/de/LC_MESSAGES/kio5_timeline.mo share/locale/el/LC_MESSAGES/balooctl5.mo share/locale/el/LC_MESSAGES/baloodb5.mo share/locale/el/LC_MESSAGES/balooengine5.mo share/locale/el/LC_MESSAGES/baloosearch5.mo share/locale/el/LC_MESSAGES/balooshow5.mo share/locale/el/LC_MESSAGES/kio5_baloosearch.mo share/locale/el/LC_MESSAGES/kio5_tags.mo share/locale/el/LC_MESSAGES/kio5_timeline.mo share/locale/en_GB/LC_MESSAGES/balooctl5.mo share/locale/en_GB/LC_MESSAGES/baloodb5.mo share/locale/en_GB/LC_MESSAGES/balooengine5.mo share/locale/en_GB/LC_MESSAGES/baloosearch5.mo share/locale/en_GB/LC_MESSAGES/balooshow5.mo share/locale/en_GB/LC_MESSAGES/kio5_baloosearch.mo share/locale/en_GB/LC_MESSAGES/kio5_tags.mo share/locale/en_GB/LC_MESSAGES/kio5_timeline.mo share/locale/es/LC_MESSAGES/balooctl5.mo share/locale/es/LC_MESSAGES/baloodb5.mo share/locale/es/LC_MESSAGES/balooengine5.mo share/locale/es/LC_MESSAGES/baloosearch5.mo share/locale/es/LC_MESSAGES/balooshow5.mo share/locale/es/LC_MESSAGES/kio5_baloosearch.mo share/locale/es/LC_MESSAGES/kio5_tags.mo share/locale/es/LC_MESSAGES/kio5_timeline.mo share/locale/et/LC_MESSAGES/balooctl5.mo share/locale/et/LC_MESSAGES/baloodb5.mo share/locale/et/LC_MESSAGES/balooengine5.mo share/locale/et/LC_MESSAGES/baloosearch5.mo share/locale/et/LC_MESSAGES/balooshow5.mo share/locale/et/LC_MESSAGES/kio5_baloosearch.mo share/locale/et/LC_MESSAGES/kio5_tags.mo share/locale/et/LC_MESSAGES/kio5_timeline.mo share/locale/eu/LC_MESSAGES/balooctl5.mo share/locale/eu/LC_MESSAGES/baloodb5.mo share/locale/eu/LC_MESSAGES/balooengine5.mo share/locale/eu/LC_MESSAGES/baloosearch5.mo share/locale/eu/LC_MESSAGES/balooshow5.mo share/locale/eu/LC_MESSAGES/kio5_baloosearch.mo share/locale/eu/LC_MESSAGES/kio5_tags.mo share/locale/eu/LC_MESSAGES/kio5_timeline.mo share/locale/fi/LC_MESSAGES/balooctl5.mo share/locale/fi/LC_MESSAGES/baloodb5.mo share/locale/fi/LC_MESSAGES/balooengine5.mo share/locale/fi/LC_MESSAGES/baloosearch5.mo share/locale/fi/LC_MESSAGES/balooshow5.mo share/locale/fi/LC_MESSAGES/kio5_baloosearch.mo share/locale/fi/LC_MESSAGES/kio5_tags.mo share/locale/fi/LC_MESSAGES/kio5_timeline.mo share/locale/fr/LC_MESSAGES/balooctl5.mo share/locale/fr/LC_MESSAGES/baloodb5.mo share/locale/fr/LC_MESSAGES/balooengine5.mo share/locale/fr/LC_MESSAGES/baloosearch5.mo share/locale/fr/LC_MESSAGES/balooshow5.mo share/locale/fr/LC_MESSAGES/kio5_baloosearch.mo share/locale/fr/LC_MESSAGES/kio5_tags.mo share/locale/fr/LC_MESSAGES/kio5_timeline.mo share/locale/gd/LC_MESSAGES/balooctl5.mo share/locale/gd/LC_MESSAGES/baloosearch5.mo share/locale/gd/LC_MESSAGES/balooshow5.mo share/locale/gd/LC_MESSAGES/kio5_baloosearch.mo share/locale/gd/LC_MESSAGES/kio5_tags.mo share/locale/gd/LC_MESSAGES/kio5_timeline.mo share/locale/gl/LC_MESSAGES/balooctl5.mo share/locale/gl/LC_MESSAGES/baloodb5.mo share/locale/gl/LC_MESSAGES/balooengine5.mo share/locale/gl/LC_MESSAGES/baloosearch5.mo share/locale/gl/LC_MESSAGES/balooshow5.mo share/locale/gl/LC_MESSAGES/kio5_baloosearch.mo share/locale/gl/LC_MESSAGES/kio5_tags.mo share/locale/gl/LC_MESSAGES/kio5_timeline.mo share/locale/he/LC_MESSAGES/kio5_baloosearch.mo share/locale/he/LC_MESSAGES/kio5_timeline.mo share/locale/hu/LC_MESSAGES/balooctl5.mo share/locale/hu/LC_MESSAGES/baloodb5.mo share/locale/hu/LC_MESSAGES/balooengine5.mo share/locale/hu/LC_MESSAGES/baloosearch5.mo share/locale/hu/LC_MESSAGES/balooshow5.mo share/locale/hu/LC_MESSAGES/kio5_baloosearch.mo share/locale/hu/LC_MESSAGES/kio5_tags.mo share/locale/hu/LC_MESSAGES/kio5_timeline.mo share/locale/ia/LC_MESSAGES/balooctl5.mo share/locale/ia/LC_MESSAGES/baloodb5.mo share/locale/ia/LC_MESSAGES/balooengine5.mo share/locale/ia/LC_MESSAGES/baloosearch5.mo share/locale/ia/LC_MESSAGES/balooshow5.mo share/locale/ia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ia/LC_MESSAGES/kio5_tags.mo share/locale/ia/LC_MESSAGES/kio5_timeline.mo share/locale/id/LC_MESSAGES/balooctl5.mo share/locale/id/LC_MESSAGES/baloodb5.mo share/locale/id/LC_MESSAGES/balooengine5.mo share/locale/id/LC_MESSAGES/baloosearch5.mo share/locale/id/LC_MESSAGES/balooshow5.mo share/locale/id/LC_MESSAGES/kio5_baloosearch.mo share/locale/id/LC_MESSAGES/kio5_tags.mo share/locale/id/LC_MESSAGES/kio5_timeline.mo share/locale/it/LC_MESSAGES/balooctl5.mo share/locale/it/LC_MESSAGES/baloodb5.mo share/locale/it/LC_MESSAGES/balooengine5.mo share/locale/it/LC_MESSAGES/baloosearch5.mo share/locale/it/LC_MESSAGES/balooshow5.mo share/locale/it/LC_MESSAGES/kio5_baloosearch.mo share/locale/it/LC_MESSAGES/kio5_tags.mo share/locale/it/LC_MESSAGES/kio5_timeline.mo share/locale/ja/LC_MESSAGES/balooctl5.mo share/locale/ja/LC_MESSAGES/baloodb5.mo share/locale/ja/LC_MESSAGES/balooengine5.mo share/locale/ja/LC_MESSAGES/baloosearch5.mo share/locale/ja/LC_MESSAGES/balooshow5.mo share/locale/ja/LC_MESSAGES/kio5_baloosearch.mo share/locale/ja/LC_MESSAGES/kio5_tags.mo share/locale/ja/LC_MESSAGES/kio5_timeline.mo share/locale/ko/LC_MESSAGES/balooctl5.mo share/locale/ko/LC_MESSAGES/baloodb5.mo share/locale/ko/LC_MESSAGES/balooengine5.mo share/locale/ko/LC_MESSAGES/baloosearch5.mo share/locale/ko/LC_MESSAGES/balooshow5.mo share/locale/ko/LC_MESSAGES/kio5_baloosearch.mo share/locale/ko/LC_MESSAGES/kio5_tags.mo share/locale/ko/LC_MESSAGES/kio5_timeline.mo share/locale/lt/LC_MESSAGES/balooctl5.mo share/locale/lt/LC_MESSAGES/baloodb5.mo share/locale/lt/LC_MESSAGES/balooengine5.mo share/locale/lt/LC_MESSAGES/baloosearch5.mo share/locale/lt/LC_MESSAGES/balooshow5.mo share/locale/lt/LC_MESSAGES/kio5_baloosearch.mo share/locale/lt/LC_MESSAGES/kio5_tags.mo share/locale/lt/LC_MESSAGES/kio5_timeline.mo share/locale/ml/LC_MESSAGES/balooctl5.mo share/locale/ml/LC_MESSAGES/baloodb5.mo share/locale/ml/LC_MESSAGES/balooengine5.mo share/locale/ml/LC_MESSAGES/baloosearch5.mo share/locale/ml/LC_MESSAGES/balooshow5.mo share/locale/ml/LC_MESSAGES/kio5_baloosearch.mo share/locale/ml/LC_MESSAGES/kio5_tags.mo share/locale/ml/LC_MESSAGES/kio5_timeline.mo share/locale/nb/LC_MESSAGES/balooctl5.mo share/locale/nb/LC_MESSAGES/baloosearch5.mo share/locale/nb/LC_MESSAGES/balooshow5.mo share/locale/nb/LC_MESSAGES/kio5_baloosearch.mo share/locale/nb/LC_MESSAGES/kio5_tags.mo share/locale/nb/LC_MESSAGES/kio5_timeline.mo share/locale/nds/LC_MESSAGES/balooctl5.mo share/locale/nds/LC_MESSAGES/baloosearch5.mo share/locale/nds/LC_MESSAGES/balooshow5.mo share/locale/nds/LC_MESSAGES/kio5_baloosearch.mo share/locale/nds/LC_MESSAGES/kio5_tags.mo share/locale/nds/LC_MESSAGES/kio5_timeline.mo share/locale/nl/LC_MESSAGES/balooctl5.mo share/locale/nl/LC_MESSAGES/baloodb5.mo share/locale/nl/LC_MESSAGES/balooengine5.mo share/locale/nl/LC_MESSAGES/baloosearch5.mo share/locale/nl/LC_MESSAGES/balooshow5.mo share/locale/nl/LC_MESSAGES/kio5_baloosearch.mo share/locale/nl/LC_MESSAGES/kio5_tags.mo share/locale/nl/LC_MESSAGES/kio5_timeline.mo share/locale/nn/LC_MESSAGES/balooctl5.mo share/locale/nn/LC_MESSAGES/baloodb5.mo share/locale/nn/LC_MESSAGES/balooengine5.mo share/locale/nn/LC_MESSAGES/baloosearch5.mo share/locale/nn/LC_MESSAGES/balooshow5.mo share/locale/nn/LC_MESSAGES/kio5_baloosearch.mo share/locale/nn/LC_MESSAGES/kio5_tags.mo share/locale/nn/LC_MESSAGES/kio5_timeline.mo share/locale/pa/LC_MESSAGES/balooctl5.mo share/locale/pa/LC_MESSAGES/baloosearch5.mo share/locale/pa/LC_MESSAGES/balooshow5.mo share/locale/pa/LC_MESSAGES/kio5_baloosearch.mo share/locale/pa/LC_MESSAGES/kio5_tags.mo share/locale/pa/LC_MESSAGES/kio5_timeline.mo share/locale/pl/LC_MESSAGES/balooctl5.mo share/locale/pl/LC_MESSAGES/baloodb5.mo share/locale/pl/LC_MESSAGES/balooengine5.mo share/locale/pl/LC_MESSAGES/baloosearch5.mo share/locale/pl/LC_MESSAGES/balooshow5.mo share/locale/pl/LC_MESSAGES/kio5_baloosearch.mo share/locale/pl/LC_MESSAGES/kio5_tags.mo share/locale/pl/LC_MESSAGES/kio5_timeline.mo share/locale/pt/LC_MESSAGES/balooctl5.mo share/locale/pt/LC_MESSAGES/baloodb5.mo share/locale/pt/LC_MESSAGES/balooengine5.mo share/locale/pt/LC_MESSAGES/baloosearch5.mo share/locale/pt/LC_MESSAGES/balooshow5.mo share/locale/pt/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt/LC_MESSAGES/kio5_tags.mo share/locale/pt/LC_MESSAGES/kio5_timeline.mo share/locale/pt_BR/LC_MESSAGES/balooctl5.mo share/locale/pt_BR/LC_MESSAGES/baloodb5.mo share/locale/pt_BR/LC_MESSAGES/balooengine5.mo share/locale/pt_BR/LC_MESSAGES/baloosearch5.mo share/locale/pt_BR/LC_MESSAGES/balooshow5.mo share/locale/pt_BR/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt_BR/LC_MESSAGES/kio5_tags.mo share/locale/pt_BR/LC_MESSAGES/kio5_timeline.mo share/locale/ro/LC_MESSAGES/balooctl5.mo share/locale/ro/LC_MESSAGES/baloodb5.mo share/locale/ro/LC_MESSAGES/balooengine5.mo share/locale/ro/LC_MESSAGES/baloosearch5.mo share/locale/ro/LC_MESSAGES/balooshow5.mo share/locale/ro/LC_MESSAGES/kio5_baloosearch.mo share/locale/ro/LC_MESSAGES/kio5_tags.mo share/locale/ro/LC_MESSAGES/kio5_timeline.mo share/locale/ru/LC_MESSAGES/balooctl5.mo share/locale/ru/LC_MESSAGES/baloodb5.mo share/locale/ru/LC_MESSAGES/balooengine5.mo share/locale/ru/LC_MESSAGES/baloosearch5.mo share/locale/ru/LC_MESSAGES/balooshow5.mo share/locale/ru/LC_MESSAGES/kio5_baloosearch.mo share/locale/ru/LC_MESSAGES/kio5_tags.mo share/locale/ru/LC_MESSAGES/kio5_timeline.mo share/locale/sk/LC_MESSAGES/balooctl5.mo share/locale/sk/LC_MESSAGES/baloodb5.mo share/locale/sk/LC_MESSAGES/balooengine5.mo share/locale/sk/LC_MESSAGES/baloosearch5.mo share/locale/sk/LC_MESSAGES/balooshow5.mo share/locale/sk/LC_MESSAGES/kio5_baloosearch.mo share/locale/sk/LC_MESSAGES/kio5_tags.mo share/locale/sk/LC_MESSAGES/kio5_timeline.mo share/locale/sl/LC_MESSAGES/balooctl5.mo share/locale/sl/LC_MESSAGES/baloodb5.mo share/locale/sl/LC_MESSAGES/balooengine5.mo share/locale/sl/LC_MESSAGES/baloosearch5.mo share/locale/sl/LC_MESSAGES/balooshow5.mo share/locale/sl/LC_MESSAGES/kio5_baloosearch.mo share/locale/sl/LC_MESSAGES/kio5_tags.mo share/locale/sl/LC_MESSAGES/kio5_timeline.mo share/locale/sr/LC_MESSAGES/balooctl5.mo share/locale/sr/LC_MESSAGES/baloosearch5.mo share/locale/sr/LC_MESSAGES/balooshow5.mo share/locale/sr/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr/LC_MESSAGES/kio5_tags.mo share/locale/sr/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavian/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavian/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavian/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_timeline.mo share/locale/sr@latin/LC_MESSAGES/balooctl5.mo share/locale/sr@latin/LC_MESSAGES/baloosearch5.mo share/locale/sr@latin/LC_MESSAGES/balooshow5.mo share/locale/sr@latin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@latin/LC_MESSAGES/kio5_tags.mo share/locale/sr@latin/LC_MESSAGES/kio5_timeline.mo share/locale/sv/LC_MESSAGES/balooctl5.mo share/locale/sv/LC_MESSAGES/baloodb5.mo share/locale/sv/LC_MESSAGES/balooengine5.mo share/locale/sv/LC_MESSAGES/baloosearch5.mo share/locale/sv/LC_MESSAGES/balooshow5.mo share/locale/sv/LC_MESSAGES/kio5_baloosearch.mo share/locale/sv/LC_MESSAGES/kio5_tags.mo share/locale/sv/LC_MESSAGES/kio5_timeline.mo +share/locale/ta/LC_MESSAGES/baloodb5.mo share/locale/ta/LC_MESSAGES/balooengine5.mo share/locale/ta/LC_MESSAGES/kio5_baloosearch.mo share/locale/ta/LC_MESSAGES/kio5_tags.mo share/locale/ta/LC_MESSAGES/kio5_timeline.mo share/locale/tg/LC_MESSAGES/balooctl5.mo share/locale/tg/LC_MESSAGES/baloodb5.mo share/locale/tg/LC_MESSAGES/balooengine5.mo share/locale/tg/LC_MESSAGES/baloosearch5.mo share/locale/tg/LC_MESSAGES/balooshow5.mo share/locale/tg/LC_MESSAGES/kio5_baloosearch.mo share/locale/tg/LC_MESSAGES/kio5_tags.mo share/locale/tg/LC_MESSAGES/kio5_timeline.mo share/locale/tr/LC_MESSAGES/balooctl5.mo share/locale/tr/LC_MESSAGES/baloodb5.mo share/locale/tr/LC_MESSAGES/balooengine5.mo share/locale/tr/LC_MESSAGES/baloosearch5.mo share/locale/tr/LC_MESSAGES/balooshow5.mo share/locale/tr/LC_MESSAGES/kio5_baloosearch.mo share/locale/tr/LC_MESSAGES/kio5_tags.mo share/locale/tr/LC_MESSAGES/kio5_timeline.mo share/locale/uk/LC_MESSAGES/balooctl5.mo share/locale/uk/LC_MESSAGES/baloodb5.mo share/locale/uk/LC_MESSAGES/balooengine5.mo share/locale/uk/LC_MESSAGES/baloosearch5.mo share/locale/uk/LC_MESSAGES/balooshow5.mo share/locale/uk/LC_MESSAGES/kio5_baloosearch.mo share/locale/uk/LC_MESSAGES/kio5_tags.mo share/locale/uk/LC_MESSAGES/kio5_timeline.mo share/locale/zh_CN/LC_MESSAGES/balooctl5.mo share/locale/zh_CN/LC_MESSAGES/baloodb5.mo share/locale/zh_CN/LC_MESSAGES/balooengine5.mo share/locale/zh_CN/LC_MESSAGES/baloosearch5.mo share/locale/zh_CN/LC_MESSAGES/balooshow5.mo share/locale/zh_CN/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_CN/LC_MESSAGES/kio5_tags.mo share/locale/zh_CN/LC_MESSAGES/kio5_timeline.mo share/locale/zh_TW/LC_MESSAGES/balooctl5.mo share/locale/zh_TW/LC_MESSAGES/baloodb5.mo share/locale/zh_TW/LC_MESSAGES/balooengine5.mo share/locale/zh_TW/LC_MESSAGES/baloosearch5.mo share/locale/zh_TW/LC_MESSAGES/balooshow5.mo share/locale/zh_TW/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_TW/LC_MESSAGES/kio5_tags.mo share/locale/zh_TW/LC_MESSAGES/kio5_timeline.mo share/qlogging-categories5/baloo.categories share/qlogging-categories5/baloo.renamecategories diff --git a/sysutils/kf5-kwallet/distinfo b/sysutils/kf5-kwallet/distinfo index 814c72cbfd57..bb0332406c3d 100644 --- a/sysutils/kf5-kwallet/distinfo +++ b/sysutils/kf5-kwallet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111324 -SHA256 (KDE/frameworks/5.94.0/kwallet-5.94.0.tar.xz) = 01366b42754ee7543b67fe57deb39bc2a772923eda3e6ea70a59f8ef955e2a32 -SIZE (KDE/frameworks/5.94.0/kwallet-5.94.0.tar.xz) = 307240 +TIMESTAMP = 1654981250 +SHA256 (KDE/frameworks/5.95.0/kwallet-5.95.0.tar.xz) = 2dcf2bbee473795055bcb11d9f7e717c77c9f827aa21fbd0c11cf64fbc2d65be +SIZE (KDE/frameworks/5.95.0/kwallet-5.95.0.tar.xz) = 307480 diff --git a/textproc/kf5-kcodecs/distinfo b/textproc/kf5-kcodecs/distinfo index cd5425743feb..8629866ad7f3 100644 --- a/textproc/kf5-kcodecs/distinfo +++ b/textproc/kf5-kcodecs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111325 -SHA256 (KDE/frameworks/5.94.0/kcodecs-5.94.0.tar.xz) = bcc0e9fb1c1d259f05a326de160639a46c4bb6e0cce6fbc8244c39f251b8e7f9 -SIZE (KDE/frameworks/5.94.0/kcodecs-5.94.0.tar.xz) = 236892 +TIMESTAMP = 1654981251 +SHA256 (KDE/frameworks/5.95.0/kcodecs-5.95.0.tar.xz) = e27bb0626176aa580d2cfbdc07a7eb33dd7fefd0113a366c480df7f8b1b39534 +SIZE (KDE/frameworks/5.95.0/kcodecs-5.95.0.tar.xz) = 236724 diff --git a/textproc/kf5-sonnet/distinfo b/textproc/kf5-sonnet/distinfo index 5d4d50283a8d..3a5e0cf1315d 100644 --- a/textproc/kf5-sonnet/distinfo +++ b/textproc/kf5-sonnet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111326 -SHA256 (KDE/frameworks/5.94.0/sonnet-5.94.0.tar.xz) = 8c570a64748d6bb6b91dff6fbf5e0cc5da7634c9a6f867944e99442066b7474c -SIZE (KDE/frameworks/5.94.0/sonnet-5.94.0.tar.xz) = 308140 +TIMESTAMP = 1654981252 +SHA256 (KDE/frameworks/5.95.0/sonnet-5.95.0.tar.xz) = 5c05fb9815acfe6ca5eb2d0c24532c131dbda5e0e0f20af1d3d53e4d8a54f9a2 +SIZE (KDE/frameworks/5.95.0/sonnet-5.95.0.tar.xz) = 308368 diff --git a/textproc/kf5-syntax-highlighting/distinfo b/textproc/kf5-syntax-highlighting/distinfo index 751d66b1e702..c6b5043945cd 100644 --- a/textproc/kf5-syntax-highlighting/distinfo +++ b/textproc/kf5-syntax-highlighting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111327 -SHA256 (KDE/frameworks/5.94.0/syntax-highlighting-5.94.0.tar.xz) = cf871332a50355836919fdd833a82c32b3d5fe7fea8fa3e58714c39c8ddde5a6 -SIZE (KDE/frameworks/5.94.0/syntax-highlighting-5.94.0.tar.xz) = 2397668 +TIMESTAMP = 1654981253 +SHA256 (KDE/frameworks/5.95.0/syntax-highlighting-5.95.0.tar.xz) = 3d9ccad9761f2a3def77c670c8d1bd7738a156b97f021b5ee6ac03e55f474802 +SIZE (KDE/frameworks/5.95.0/syntax-highlighting-5.95.0.tar.xz) = 2398196 diff --git a/www/kf5-kdewebkit/distinfo b/www/kf5-kdewebkit/distinfo index bb13e188c9fc..276e72055f3f 100644 --- a/www/kf5-kdewebkit/distinfo +++ b/www/kf5-kdewebkit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936480 -SHA256 (KDE/frameworks/5.94.0/kdewebkit-5.94.0.tar.xz) = 9bca73e8e67ccb89a044514ff6f6c02f6e65003cb34bc7e358a44182bc710d59 -SIZE (KDE/frameworks/5.94.0/kdewebkit-5.94.0.tar.xz) = 30088 +TIMESTAMP = 1654981254 +SHA256 (KDE/frameworks/5.95.0/kdewebkit-5.95.0.tar.xz) = f2616ec35cb7a9c434b8a60314b558f11112d17cb9a5a3597dfb8bb21a9fde2c +SIZE (KDE/frameworks/5.95.0/kdewebkit-5.95.0.tar.xz) = 30068 diff --git a/www/kf5-khtml/distinfo b/www/kf5-khtml/distinfo index b531db3de9e2..bffa2615ff0b 100644 --- a/www/kf5-khtml/distinfo +++ b/www/kf5-khtml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111329 -SHA256 (KDE/frameworks/5.94.0/khtml-5.94.0.tar.xz) = 98bd2a284a2fbc1c2d93cd6719d18baeccd5258dfaa48b1fe74bb61e24fe9b79 -SIZE (KDE/frameworks/5.94.0/khtml-5.94.0.tar.xz) = 2094048 +TIMESTAMP = 1654981255 +SHA256 (KDE/frameworks/5.95.0/khtml-5.95.0.tar.xz) = 534b8a6341bd9380ead8b1df55032665bfee4b92713a46b116910b31facb3e06 +SIZE (KDE/frameworks/5.95.0/khtml-5.95.0.tar.xz) = 1965944 diff --git a/www/kf5-khtml/pkg-plist b/www/kf5-khtml/pkg-plist index 43dba1065f89..21654a52e847 100644 --- a/www/kf5-khtml/pkg-plist +++ b/www/kf5-khtml/pkg-plist @@ -1,171 +1,166 @@ etc/xdg/khtmlrc include/KF5/KHtml/KHTMLPart include/KF5/KHtml/KHTMLSettings include/KF5/KHtml/KHTMLView include/KF5/KHtml/dom/css_rule.h include/KF5/KHtml/dom/css_stylesheet.h include/KF5/KHtml/dom/css_value.h include/KF5/KHtml/dom/dom2_events.h include/KF5/KHtml/dom/dom2_range.h include/KF5/KHtml/dom/dom2_traversal.h include/KF5/KHtml/dom/dom2_views.h include/KF5/KHtml/dom/dom_core.h include/KF5/KHtml/dom/dom_doc.h include/KF5/KHtml/dom/dom_element.h include/KF5/KHtml/dom/dom_exception.h include/KF5/KHtml/dom/dom_html.h include/KF5/KHtml/dom/dom_misc.h include/KF5/KHtml/dom/dom_node.h include/KF5/KHtml/dom/dom_string.h include/KF5/KHtml/dom/dom_text.h include/KF5/KHtml/dom/dom_xml.h include/KF5/KHtml/dom/html_base.h include/KF5/KHtml/dom/html_block.h include/KF5/KHtml/dom/html_document.h include/KF5/KHtml/dom/html_element.h include/KF5/KHtml/dom/html_form.h include/KF5/KHtml/dom/html_head.h include/KF5/KHtml/dom/html_image.h include/KF5/KHtml/dom/html_inline.h include/KF5/KHtml/dom/html_list.h include/KF5/KHtml/dom/html_misc.h include/KF5/KHtml/dom/html_object.h include/KF5/KHtml/dom/html_table.h include/KF5/KHtml/kencodingdetector.h include/KF5/KHtml/khtml_debug.h include/KF5/KHtml/khtml_events.h include/KF5/KHtml/khtml_export.h include/KF5/KHtml/khtml_part.h include/KF5/KHtml/khtml_settings.h include/KF5/KHtml/khtml_version.h include/KF5/KHtml/khtmldefaults.h include/KF5/KHtml/khtmlpart.h include/KF5/KHtml/khtmlsettings.h include/KF5/KHtml/khtmlview.h lib/cmake/KF5KHtml/KF5KHtmlConfig.cmake lib/cmake/KF5KHtml/KF5KHtmlConfigVersion.cmake lib/cmake/KF5KHtml/KF5KHtmlTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KHtml/KF5KHtmlTargets.cmake lib/libKF5KHtml.so lib/libKF5KHtml.so.5 lib/libKF5KHtml.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kf5/parts/khtmladaptorpart.so %%QT_PLUGINDIR%%/kf5/parts/khtmlimagepart.so %%QT_PLUGINDIR%%/kf5/parts/khtmlpart.so -%%QT_PLUGINDIR%%/kf5/parts/kjavaappletviewer.so %%QT_PLUGINDIR%%/kf5/parts/kmultipart.so %%QT_MKSPECDIR%%/modules/qt_KHtml.pri share/kf5/khtml/css/html4.css share/kf5/khtml/css/presentational.css share/kf5/khtml/css/quirks.css share/kf5/khtml/error.html -share/kf5/kjava/kjava.jar -share/kf5/kjava/kjava.policy -share/kf5/kjava/pluginsinfo share/kservices5/khtml.desktop share/kservices5/khtmladaptorpart.desktop share/kservices5/khtmlimage.desktop -share/kservices5/kjavaappletviewer.desktop share/kservices5/kmultipart.desktop share/locale/af/LC_MESSAGES/khtml5.mo share/locale/ar/LC_MESSAGES/khtml5.mo share/locale/as/LC_MESSAGES/khtml5.mo share/locale/az/LC_MESSAGES/khtml5.mo share/locale/be/LC_MESSAGES/khtml5.mo share/locale/be@latin/LC_MESSAGES/khtml5.mo share/locale/bg/LC_MESSAGES/khtml5.mo share/locale/bn/LC_MESSAGES/khtml5.mo share/locale/bn_IN/LC_MESSAGES/khtml5.mo share/locale/br/LC_MESSAGES/khtml5.mo share/locale/bs/LC_MESSAGES/khtml5.mo share/locale/ca/LC_MESSAGES/khtml5.mo share/locale/ca@valencia/LC_MESSAGES/khtml5.mo share/locale/crh/LC_MESSAGES/khtml5.mo share/locale/cs/LC_MESSAGES/khtml5.mo share/locale/csb/LC_MESSAGES/khtml5.mo share/locale/cy/LC_MESSAGES/khtml5.mo share/locale/da/LC_MESSAGES/khtml5.mo share/locale/de/LC_MESSAGES/khtml5.mo share/locale/el/LC_MESSAGES/khtml5.mo share/locale/en_GB/LC_MESSAGES/khtml5.mo share/locale/eo/LC_MESSAGES/khtml5.mo share/locale/es/LC_MESSAGES/khtml5.mo share/locale/et/LC_MESSAGES/khtml5.mo share/locale/eu/LC_MESSAGES/khtml5.mo share/locale/fa/LC_MESSAGES/khtml5.mo share/locale/fi/LC_MESSAGES/khtml5.mo share/locale/fr/LC_MESSAGES/khtml5.mo share/locale/fy/LC_MESSAGES/khtml5.mo share/locale/ga/LC_MESSAGES/khtml5.mo share/locale/gd/LC_MESSAGES/khtml5.mo share/locale/gl/LC_MESSAGES/khtml5.mo share/locale/gu/LC_MESSAGES/khtml5.mo share/locale/ha/LC_MESSAGES/khtml5.mo share/locale/he/LC_MESSAGES/khtml5.mo share/locale/hi/LC_MESSAGES/khtml5.mo share/locale/hne/LC_MESSAGES/khtml5.mo share/locale/hr/LC_MESSAGES/khtml5.mo share/locale/hsb/LC_MESSAGES/khtml5.mo share/locale/hu/LC_MESSAGES/khtml5.mo share/locale/hy/LC_MESSAGES/khtml5.mo share/locale/ia/LC_MESSAGES/khtml5.mo share/locale/id/LC_MESSAGES/khtml5.mo share/locale/is/LC_MESSAGES/khtml5.mo share/locale/it/LC_MESSAGES/khtml5.mo share/locale/ja/LC_MESSAGES/khtml5.mo share/locale/ka/LC_MESSAGES/khtml5.mo share/locale/kk/LC_MESSAGES/khtml5.mo share/locale/km/LC_MESSAGES/khtml5.mo share/locale/kn/LC_MESSAGES/khtml5.mo share/locale/ko/LC_MESSAGES/khtml5.mo share/locale/ku/LC_MESSAGES/khtml5.mo share/locale/lb/LC_MESSAGES/khtml5.mo share/locale/lt/LC_MESSAGES/khtml5.mo share/locale/lv/LC_MESSAGES/khtml5.mo share/locale/mai/LC_MESSAGES/khtml5.mo share/locale/mk/LC_MESSAGES/khtml5.mo share/locale/ml/LC_MESSAGES/khtml5.mo share/locale/mr/LC_MESSAGES/khtml5.mo share/locale/ms/LC_MESSAGES/khtml5.mo share/locale/nb/LC_MESSAGES/khtml5.mo share/locale/nds/LC_MESSAGES/khtml5.mo share/locale/ne/LC_MESSAGES/khtml5.mo share/locale/nl/LC_MESSAGES/khtml5.mo share/locale/nn/LC_MESSAGES/khtml5.mo share/locale/oc/LC_MESSAGES/khtml5.mo share/locale/or/LC_MESSAGES/khtml5.mo share/locale/pa/LC_MESSAGES/khtml5.mo share/locale/pl/LC_MESSAGES/khtml5.mo share/locale/ps/LC_MESSAGES/khtml5.mo share/locale/pt/LC_MESSAGES/khtml5.mo share/locale/pt_BR/LC_MESSAGES/khtml5.mo share/locale/ro/LC_MESSAGES/khtml5.mo share/locale/ru/LC_MESSAGES/khtml5.mo share/locale/se/LC_MESSAGES/khtml5.mo share/locale/si/LC_MESSAGES/khtml5.mo share/locale/sk/LC_MESSAGES/khtml5.mo share/locale/sl/LC_MESSAGES/khtml5.mo share/locale/sq/LC_MESSAGES/khtml5.mo share/locale/sr/LC_MESSAGES/khtml5.mo share/locale/sr@ijekavian/LC_MESSAGES/khtml5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khtml5.mo share/locale/sr@latin/LC_MESSAGES/khtml5.mo share/locale/sv/LC_MESSAGES/khtml5.mo share/locale/ta/LC_MESSAGES/khtml5.mo share/locale/te/LC_MESSAGES/khtml5.mo share/locale/tg/LC_MESSAGES/khtml5.mo share/locale/th/LC_MESSAGES/khtml5.mo share/locale/tr/LC_MESSAGES/khtml5.mo share/locale/tt/LC_MESSAGES/khtml5.mo share/locale/ug/LC_MESSAGES/khtml5.mo share/locale/uk/LC_MESSAGES/khtml5.mo share/locale/uz/LC_MESSAGES/khtml5.mo share/locale/uz@cyrillic/LC_MESSAGES/khtml5.mo share/locale/vi/LC_MESSAGES/khtml5.mo share/locale/wa/LC_MESSAGES/khtml5.mo share/locale/xh/LC_MESSAGES/khtml5.mo share/locale/zh_CN/LC_MESSAGES/khtml5.mo share/locale/zh_HK/LC_MESSAGES/khtml5.mo share/locale/zh_TW/LC_MESSAGES/khtml5.mo share/qlogging-categories5/khtml.categories share/qlogging-categories5/khtml.renamecategories diff --git a/www/kf5-kjs/distinfo b/www/kf5-kjs/distinfo index 8e641007f3b3..70d560e69ec3 100644 --- a/www/kf5-kjs/distinfo +++ b/www/kf5-kjs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111330 -SHA256 (KDE/frameworks/5.94.0/kjs-5.94.0.tar.xz) = f93e14a2deb978ccb8e7b0e7e6a2e4c3a23fe9ffe5a64d569c824302d93b3c1b -SIZE (KDE/frameworks/5.94.0/kjs-5.94.0.tar.xz) = 339168 +TIMESTAMP = 1654981256 +SHA256 (KDE/frameworks/5.95.0/kjs-5.95.0.tar.xz) = 5a17f35ddb9c98e83a6891ff4e82e50ab810263c2fa2d45b3e1a60312e795ebc +SIZE (KDE/frameworks/5.95.0/kjs-5.95.0.tar.xz) = 339068 diff --git a/www/kf5-kjsembed/distinfo b/www/kf5-kjsembed/distinfo index 772b09ad756c..089535e42b2d 100644 --- a/www/kf5-kjsembed/distinfo +++ b/www/kf5-kjsembed/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111331 -SHA256 (KDE/frameworks/5.94.0/kjsembed-5.94.0.tar.xz) = f3ce37479d0f579feeeebc837074b3d138a37989884149b92f12b107fedef62e -SIZE (KDE/frameworks/5.94.0/kjsembed-5.94.0.tar.xz) = 171924 +TIMESTAMP = 1654981257 +SHA256 (KDE/frameworks/5.95.0/kjsembed-5.95.0.tar.xz) = ab1fccff298128e826dc3a59d6e7ea0de9e61265f7991248806fd966ee767bb1 +SIZE (KDE/frameworks/5.95.0/kjsembed-5.95.0.tar.xz) = 171892 diff --git a/x11-themes/kf5-breeze-icons/distinfo b/x11-themes/kf5-breeze-icons/distinfo index bc2435eeaf9d..6fb32b02d681 100644 --- a/x11-themes/kf5-breeze-icons/distinfo +++ b/x11-themes/kf5-breeze-icons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936484 -SHA256 (KDE/frameworks/5.94.0/breeze-icons-5.94.0.tar.xz) = 3e0b3fd2374dba82ca304c066938345f25b0eb85dca7169267c84f62bfb3a3bb -SIZE (KDE/frameworks/5.94.0/breeze-icons-5.94.0.tar.xz) = 2151008 +TIMESTAMP = 1654981258 +SHA256 (KDE/frameworks/5.95.0/breeze-icons-5.95.0.tar.xz) = 1a477cb755ecf1b1bed124c1f120618de96056d3ac2e51f3b7ce857f0132a92f +SIZE (KDE/frameworks/5.95.0/breeze-icons-5.95.0.tar.xz) = 2150968 diff --git a/x11-themes/kf5-kemoticons/distinfo b/x11-themes/kf5-kemoticons/distinfo index b46ab37e4018..7edf96e22a0c 100644 --- a/x11-themes/kf5-kemoticons/distinfo +++ b/x11-themes/kf5-kemoticons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936485 -SHA256 (KDE/frameworks/5.94.0/kemoticons-5.94.0.tar.xz) = fa7db15d75a017e75514af4361ae3dd91a22ac9d9e2daf41a8e7e33bcce31302 -SIZE (KDE/frameworks/5.94.0/kemoticons-5.94.0.tar.xz) = 1700696 +TIMESTAMP = 1654981259 +SHA256 (KDE/frameworks/5.95.0/kemoticons-5.95.0.tar.xz) = 36a831633f2ce12a3f24664631e8e6b32598f7132b040a3d1fc1b43eda02f472 +SIZE (KDE/frameworks/5.95.0/kemoticons-5.95.0.tar.xz) = 1700684 diff --git a/x11-themes/kf5-kiconthemes/distinfo b/x11-themes/kf5-kiconthemes/distinfo index 95185c9a73f8..9020b7769649 100644 --- a/x11-themes/kf5-kiconthemes/distinfo +++ b/x11-themes/kf5-kiconthemes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111334 -SHA256 (KDE/frameworks/5.94.0/kiconthemes-5.94.0.tar.xz) = d972d81dcd7ccb74ef4abd4db2a88512a07ea459a301b94e7a98b831ab814993 -SIZE (KDE/frameworks/5.94.0/kiconthemes-5.94.0.tar.xz) = 226420 +TIMESTAMP = 1654981260 +SHA256 (KDE/frameworks/5.95.0/kiconthemes-5.95.0.tar.xz) = cde64a79e173330b93cf12ce5b18dfa8cc4fdbdf6ec3172ddf2524b78f26c3eb +SIZE (KDE/frameworks/5.95.0/kiconthemes-5.95.0.tar.xz) = 226748 diff --git a/x11-themes/kf5-kiconthemes/pkg-plist b/x11-themes/kf5-kiconthemes/pkg-plist index 2b60eb0fdbe3..246ed7e2d199 100644 --- a/x11-themes/kf5-kiconthemes/pkg-plist +++ b/x11-themes/kf5-kiconthemes/pkg-plist @@ -1,115 +1,116 @@ bin/kiconfinder5 include/KF5/KIconThemes/KIconButton include/KF5/KIconThemes/KIconColors include/KF5/KIconThemes/KIconDialog include/KF5/KIconThemes/KIconEffect include/KF5/KIconThemes/KIconEngine include/KF5/KIconThemes/KIconLoader include/KF5/KIconThemes/KIconTheme include/KF5/KIconThemes/kiconbutton.h include/KF5/KIconThemes/kiconcolors.h include/KF5/KIconThemes/kicondialog.h include/KF5/KIconThemes/kiconeffect.h include/KF5/KIconThemes/kiconengine.h include/KF5/KIconThemes/kiconloader.h include/KF5/KIconThemes/kicontheme.h include/KF5/KIconThemes/kiconthemes_export.h include/KF5/KIconThemes/kiconthemes_version.h lib/cmake/KF5IconThemes/KF5IconThemesConfig.cmake lib/cmake/KF5IconThemes/KF5IconThemesConfigVersion.cmake lib/cmake/KF5IconThemes/KF5IconThemesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IconThemes/KF5IconThemesTargets.cmake lib/libKF5IconThemes.so lib/libKF5IconThemes.so.5 lib/libKF5IconThemes.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KIconThemes.pri %%QT_PLUGINDIR%%/designer/kiconthemes5widgets.so %%QT_PLUGINDIR%%/iconengines/KIconEnginePlugin.so share/locale/af/LC_MESSAGES/kiconthemes5.mo share/locale/ar/LC_MESSAGES/kiconthemes5.mo share/locale/ast/LC_MESSAGES/kiconthemes5.mo share/locale/az/LC_MESSAGES/kiconthemes5.mo share/locale/be/LC_MESSAGES/kiconthemes5.mo share/locale/be@latin/LC_MESSAGES/kiconthemes5.mo share/locale/bg/LC_MESSAGES/kiconthemes5.mo share/locale/bn/LC_MESSAGES/kiconthemes5.mo share/locale/br/LC_MESSAGES/kiconthemes5.mo share/locale/bs/LC_MESSAGES/kiconthemes5.mo share/locale/ca/LC_MESSAGES/kiconthemes5.mo share/locale/ca@valencia/LC_MESSAGES/kiconthemes5.mo share/locale/cs/LC_MESSAGES/kiconthemes5.mo share/locale/csb/LC_MESSAGES/kiconthemes5.mo share/locale/cy/LC_MESSAGES/kiconthemes5.mo share/locale/da/LC_MESSAGES/kiconthemes5.mo share/locale/de/LC_MESSAGES/kiconthemes5.mo share/locale/el/LC_MESSAGES/kiconthemes5.mo share/locale/en_GB/LC_MESSAGES/kiconthemes5.mo share/locale/eo/LC_MESSAGES/kiconthemes5.mo share/locale/es/LC_MESSAGES/kiconthemes5.mo share/locale/et/LC_MESSAGES/kiconthemes5.mo share/locale/eu/LC_MESSAGES/kiconthemes5.mo share/locale/fa/LC_MESSAGES/kiconthemes5.mo share/locale/fi/LC_MESSAGES/kiconthemes5.mo share/locale/fr/LC_MESSAGES/kiconthemes5.mo share/locale/fy/LC_MESSAGES/kiconthemes5.mo share/locale/ga/LC_MESSAGES/kiconthemes5.mo share/locale/gd/LC_MESSAGES/kiconthemes5.mo share/locale/gl/LC_MESSAGES/kiconthemes5.mo share/locale/gu/LC_MESSAGES/kiconthemes5.mo share/locale/he/LC_MESSAGES/kiconthemes5.mo share/locale/hi/LC_MESSAGES/kiconthemes5.mo share/locale/hr/LC_MESSAGES/kiconthemes5.mo share/locale/hsb/LC_MESSAGES/kiconthemes5.mo share/locale/hu/LC_MESSAGES/kiconthemes5.mo share/locale/ia/LC_MESSAGES/kiconthemes5.mo share/locale/id/LC_MESSAGES/kiconthemes5.mo share/locale/is/LC_MESSAGES/kiconthemes5.mo share/locale/it/LC_MESSAGES/kiconthemes5.mo share/locale/ja/LC_MESSAGES/kiconthemes5.mo +share/locale/ka/LC_MESSAGES/kiconthemes5.mo share/locale/kk/LC_MESSAGES/kiconthemes5.mo share/locale/km/LC_MESSAGES/kiconthemes5.mo share/locale/ko/LC_MESSAGES/kiconthemes5.mo share/locale/ku/LC_MESSAGES/kiconthemes5.mo share/locale/lt/LC_MESSAGES/kiconthemes5.mo share/locale/lv/LC_MESSAGES/kiconthemes5.mo share/locale/mai/LC_MESSAGES/kiconthemes5.mo share/locale/mk/LC_MESSAGES/kiconthemes5.mo share/locale/ml/LC_MESSAGES/kiconthemes5.mo share/locale/mr/LC_MESSAGES/kiconthemes5.mo share/locale/ms/LC_MESSAGES/kiconthemes5.mo share/locale/nb/LC_MESSAGES/kiconthemes5.mo share/locale/nds/LC_MESSAGES/kiconthemes5.mo share/locale/ne/LC_MESSAGES/kiconthemes5.mo share/locale/nl/LC_MESSAGES/kiconthemes5.mo share/locale/nn/LC_MESSAGES/kiconthemes5.mo share/locale/oc/LC_MESSAGES/kiconthemes5.mo share/locale/pa/LC_MESSAGES/kiconthemes5.mo share/locale/pl/LC_MESSAGES/kiconthemes5.mo share/locale/pt/LC_MESSAGES/kiconthemes5.mo share/locale/pt_BR/LC_MESSAGES/kiconthemes5.mo share/locale/ro/LC_MESSAGES/kiconthemes5.mo share/locale/ru/LC_MESSAGES/kiconthemes5.mo share/locale/se/LC_MESSAGES/kiconthemes5.mo share/locale/sk/LC_MESSAGES/kiconthemes5.mo share/locale/sl/LC_MESSAGES/kiconthemes5.mo share/locale/sq/LC_MESSAGES/kiconthemes5.mo share/locale/sr/LC_MESSAGES/kiconthemes5.mo share/locale/sr@ijekavian/LC_MESSAGES/kiconthemes5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kiconthemes5.mo share/locale/sr@latin/LC_MESSAGES/kiconthemes5.mo share/locale/sv/LC_MESSAGES/kiconthemes5.mo share/locale/ta/LC_MESSAGES/kiconthemes5.mo share/locale/tg/LC_MESSAGES/kiconthemes5.mo share/locale/th/LC_MESSAGES/kiconthemes5.mo share/locale/tr/LC_MESSAGES/kiconthemes5.mo share/locale/ug/LC_MESSAGES/kiconthemes5.mo share/locale/uk/LC_MESSAGES/kiconthemes5.mo share/locale/uz/LC_MESSAGES/kiconthemes5.mo share/locale/uz@cyrillic/LC_MESSAGES/kiconthemes5.mo share/locale/vi/LC_MESSAGES/kiconthemes5.mo share/locale/wa/LC_MESSAGES/kiconthemes5.mo share/locale/xh/LC_MESSAGES/kiconthemes5.mo share/locale/zh_CN/LC_MESSAGES/kiconthemes5.mo share/locale/zh_TW/LC_MESSAGES/kiconthemes5.mo share/qlogging-categories5/kiconthemes.categories share/qlogging-categories5/kiconthemes.renamecategories diff --git a/x11-themes/kf5-oxygen-icons5/distinfo b/x11-themes/kf5-oxygen-icons5/distinfo index 9ce849b43baa..32b6b9202049 100644 --- a/x11-themes/kf5-oxygen-icons5/distinfo +++ b/x11-themes/kf5-oxygen-icons5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936488 -SHA256 (KDE/frameworks/5.94.0/oxygen-icons5-5.94.0.tar.xz) = 203d9dbc3fb783c8c31c3d3d59624e31b502a50beea31505dcc56d8c33fcd1d0 -SIZE (KDE/frameworks/5.94.0/oxygen-icons5-5.94.0.tar.xz) = 238635124 +TIMESTAMP = 1654981263 +SHA256 (KDE/frameworks/5.95.0/oxygen-icons5-5.95.0.tar.xz) = 2dd3114ff0d1d037684e237e3d90514bf3e48e893131f9972d7c7fa28ed723a5 +SIZE (KDE/frameworks/5.95.0/oxygen-icons5-5.95.0.tar.xz) = 238634168 diff --git a/x11-themes/kf5-qqc2-desktop-style/distinfo b/x11-themes/kf5-qqc2-desktop-style/distinfo index ffe040c39d3f..6cbf329e7cb4 100644 --- a/x11-themes/kf5-qqc2-desktop-style/distinfo +++ b/x11-themes/kf5-qqc2-desktop-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936489 -SHA256 (KDE/frameworks/5.94.0/qqc2-desktop-style-5.94.0.tar.xz) = 0b15210dbe93c22e423c876b27ca2f530f66cb72c6c5bcc7f854848ded0e7e48 -SIZE (KDE/frameworks/5.94.0/qqc2-desktop-style-5.94.0.tar.xz) = 65616 +TIMESTAMP = 1654981264 +SHA256 (KDE/frameworks/5.95.0/qqc2-desktop-style-5.95.0.tar.xz) = 5a2b841eda99991867ae6b752317a3881737af17307843eafb81844adbe27313 +SIZE (KDE/frameworks/5.95.0/qqc2-desktop-style-5.95.0.tar.xz) = 64240 diff --git a/x11-toolkits/kf5-attica/distinfo b/x11-toolkits/kf5-attica/distinfo index 1e347a9fe2f7..af9413691262 100644 --- a/x11-toolkits/kf5-attica/distinfo +++ b/x11-toolkits/kf5-attica/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936490 -SHA256 (KDE/frameworks/5.94.0/attica-5.94.0.tar.xz) = f6293699da5794812080ba2d41b4ea05e830532678af324d8e852f508f2def65 -SIZE (KDE/frameworks/5.94.0/attica-5.94.0.tar.xz) = 69320 +TIMESTAMP = 1654981265 +SHA256 (KDE/frameworks/5.95.0/attica-5.95.0.tar.xz) = d660f93d2bb9d275b0efd50f9bbc8cdc3831035be9686dda103ebbb6a55c733c +SIZE (KDE/frameworks/5.95.0/attica-5.95.0.tar.xz) = 69296 diff --git a/x11-toolkits/kf5-kcompletion/distinfo b/x11-toolkits/kf5-kcompletion/distinfo index 6653d20970b5..8fcf955afb25 100644 --- a/x11-toolkits/kf5-kcompletion/distinfo +++ b/x11-toolkits/kf5-kcompletion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111339 -SHA256 (KDE/frameworks/5.94.0/kcompletion-5.94.0.tar.xz) = 1ad13d41650bbe352b0c2ecfd8c059015f9441cbf7534a2bcc9ed17a3bfa6ea4 -SIZE (KDE/frameworks/5.94.0/kcompletion-5.94.0.tar.xz) = 124556 +TIMESTAMP = 1654981266 +SHA256 (KDE/frameworks/5.95.0/kcompletion-5.95.0.tar.xz) = 8eac4902b9ac49fcbc1d6953bf09071b4aa22815c35f2ee9f781d1c9e4fa28f2 +SIZE (KDE/frameworks/5.95.0/kcompletion-5.95.0.tar.xz) = 124452 diff --git a/x11-toolkits/kf5-kconfigwidgets/distinfo b/x11-toolkits/kf5-kconfigwidgets/distinfo index cb21a6de03be..bec93d35485a 100644 --- a/x11-toolkits/kf5-kconfigwidgets/distinfo +++ b/x11-toolkits/kf5-kconfigwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111340 -SHA256 (KDE/frameworks/5.94.0/kconfigwidgets-5.94.0.tar.xz) = 35055f637ff44b0f0e67f9b5c79307d37f5c259289bf71b2a24c0203f82fb508 -SIZE (KDE/frameworks/5.94.0/kconfigwidgets-5.94.0.tar.xz) = 417072 +TIMESTAMP = 1654981267 +SHA256 (KDE/frameworks/5.95.0/kconfigwidgets-5.95.0.tar.xz) = 2bb7f31f14f6eed019f8f0d5f24b6552af39d7e3dd376ca4e0a489221e399d52 +SIZE (KDE/frameworks/5.95.0/kconfigwidgets-5.95.0.tar.xz) = 417492 diff --git a/x11-toolkits/kf5-kconfigwidgets/pkg-plist b/x11-toolkits/kf5-kconfigwidgets/pkg-plist index bffb26ca4d67..746c65daacb9 100644 --- a/x11-toolkits/kf5-kconfigwidgets/pkg-plist +++ b/x11-toolkits/kf5-kconfigwidgets/pkg-plist @@ -1,268 +1,269 @@ bin/preparetips5 include/KF5/KConfigWidgets/KCModule include/KF5/KConfigWidgets/KCodecAction include/KF5/KConfigWidgets/KColorScheme include/KF5/KConfigWidgets/KColorSchemeManager include/KF5/KConfigWidgets/KColorSchemeModel include/KF5/KConfigWidgets/KCommandBar include/KF5/KConfigWidgets/KConfigDialog include/KF5/KConfigWidgets/KConfigDialogManager include/KF5/KConfigWidgets/KConfigViewStateSaver include/KF5/KConfigWidgets/KHamburgerMenu include/KF5/KConfigWidgets/KHelpClient include/KF5/KConfigWidgets/KLanguageButton include/KF5/KConfigWidgets/KLanguageName include/KF5/KConfigWidgets/KPasteTextAction include/KF5/KConfigWidgets/KRecentFilesAction include/KF5/KConfigWidgets/KStandardAction include/KF5/KConfigWidgets/KStatefulBrush include/KF5/KConfigWidgets/KTipDialog include/KF5/KConfigWidgets/KViewStateMaintainer include/KF5/KConfigWidgets/kcmodule.h include/KF5/KConfigWidgets/kcodecaction.h include/KF5/KConfigWidgets/kcolorscheme.h include/KF5/KConfigWidgets/kcolorschememanager.h include/KF5/KConfigWidgets/kcolorschememodel.h include/KF5/KConfigWidgets/kcommandbar.h include/KF5/KConfigWidgets/kconfigdialog.h include/KF5/KConfigWidgets/kconfigdialogmanager.h include/KF5/KConfigWidgets/kconfigviewstatesaver.h include/KF5/KConfigWidgets/kconfigwidgets_export.h include/KF5/KConfigWidgets/kconfigwidgets_version.h include/KF5/KConfigWidgets/khamburgermenu.h include/KF5/KConfigWidgets/khelpclient.h include/KF5/KConfigWidgets/klanguagebutton.h include/KF5/KConfigWidgets/klanguagename.h include/KF5/KConfigWidgets/kpastetextaction.h include/KF5/KConfigWidgets/krecentfilesaction.h include/KF5/KConfigWidgets/kstandardaction.h include/KF5/KConfigWidgets/kstatefulbrush.h include/KF5/KConfigWidgets/ktip.h include/KF5/KConfigWidgets/ktipdialog.h include/KF5/KConfigWidgets/kviewstatemaintainer.h lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfig.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfigVersion.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets.cmake lib/libKF5ConfigWidgets.so lib/libKF5ConfigWidgets.so.5 lib/libKF5ConfigWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KConfigWidgets.pri %%QT_PLUGINDIR%%/designer/kconfigwidgets5widgets.so man/ca/man1/preparetips5.1.gz man/de/man1/preparetips5.1.gz man/es/man1/preparetips5.1.gz man/fr/man1/preparetips5.1.gz man/it/man1/preparetips5.1.gz man/man1/preparetips5.1.gz man/nl/man1/preparetips5.1.gz man/pt/man1/preparetips5.1.gz man/pt_BR/man1/preparetips5.1.gz man/ru/man1/preparetips5.1.gz man/sv/man1/preparetips5.1.gz man/uk/man1/preparetips5.1.gz share/locale/af/LC_MESSAGES/kconfigwidgets5.mo share/locale/af/kf5_entry.desktop share/locale/ar/LC_MESSAGES/kconfigwidgets5.mo share/locale/ar/kf5_entry.desktop share/locale/as/LC_MESSAGES/kconfigwidgets5.mo share/locale/as/kf5_entry.desktop share/locale/ast/kf5_entry.desktop share/locale/az/LC_MESSAGES/kconfigwidgets5.mo share/locale/az/kf5_entry.desktop share/locale/be/LC_MESSAGES/kconfigwidgets5.mo share/locale/be/kf5_entry.desktop share/locale/be@latin/LC_MESSAGES/kconfigwidgets5.mo share/locale/be@latin/kf5_entry.desktop share/locale/bg/LC_MESSAGES/kconfigwidgets5.mo share/locale/bg/kf5_entry.desktop share/locale/bn/LC_MESSAGES/kconfigwidgets5.mo share/locale/bn/kf5_entry.desktop share/locale/bn_IN/LC_MESSAGES/kconfigwidgets5.mo share/locale/bn_IN/kf5_entry.desktop share/locale/br/LC_MESSAGES/kconfigwidgets5.mo share/locale/br/kf5_entry.desktop share/locale/bs/LC_MESSAGES/kconfigwidgets5.mo share/locale/bs/kf5_entry.desktop share/locale/ca/LC_MESSAGES/kconfigwidgets5.mo share/locale/ca/kf5_entry.desktop share/locale/ca@valencia/LC_MESSAGES/kconfigwidgets5.mo share/locale/ca@valencia/kf5_entry.desktop share/locale/crh/LC_MESSAGES/kconfigwidgets5.mo share/locale/crh/kf5_entry.desktop share/locale/cs/LC_MESSAGES/kconfigwidgets5.mo share/locale/cs/kf5_entry.desktop share/locale/csb/LC_MESSAGES/kconfigwidgets5.mo share/locale/csb/kf5_entry.desktop share/locale/cy/LC_MESSAGES/kconfigwidgets5.mo share/locale/cy/kf5_entry.desktop share/locale/da/LC_MESSAGES/kconfigwidgets5.mo share/locale/da/kf5_entry.desktop share/locale/de/LC_MESSAGES/kconfigwidgets5.mo share/locale/de/kf5_entry.desktop share/locale/el/LC_MESSAGES/kconfigwidgets5.mo share/locale/el/kf5_entry.desktop share/locale/en_GB/LC_MESSAGES/kconfigwidgets5.mo share/locale/en_GB/kf5_entry.desktop share/locale/en_US/kf5_entry.desktop share/locale/eo/LC_MESSAGES/kconfigwidgets5.mo share/locale/eo/kf5_entry.desktop share/locale/es/LC_MESSAGES/kconfigwidgets5.mo share/locale/es/kf5_entry.desktop share/locale/et/LC_MESSAGES/kconfigwidgets5.mo share/locale/et/kf5_entry.desktop share/locale/eu/LC_MESSAGES/kconfigwidgets5.mo share/locale/eu/kf5_entry.desktop share/locale/fa/LC_MESSAGES/kconfigwidgets5.mo share/locale/fa/kf5_entry.desktop share/locale/fi/LC_MESSAGES/kconfigwidgets5.mo share/locale/fi/kf5_entry.desktop share/locale/fr/LC_MESSAGES/kconfigwidgets5.mo share/locale/fr/kf5_entry.desktop share/locale/fy/LC_MESSAGES/kconfigwidgets5.mo share/locale/fy/kf5_entry.desktop share/locale/ga/LC_MESSAGES/kconfigwidgets5.mo share/locale/ga/kf5_entry.desktop share/locale/gd/LC_MESSAGES/kconfigwidgets5.mo share/locale/gd/kf5_entry.desktop share/locale/gl/LC_MESSAGES/kconfigwidgets5.mo share/locale/gl/kf5_entry.desktop share/locale/gu/LC_MESSAGES/kconfigwidgets5.mo share/locale/gu/kf5_entry.desktop share/locale/ha/LC_MESSAGES/kconfigwidgets5.mo share/locale/ha/kf5_entry.desktop share/locale/he/LC_MESSAGES/kconfigwidgets5.mo share/locale/he/kf5_entry.desktop share/locale/hi/LC_MESSAGES/kconfigwidgets5.mo share/locale/hi/kf5_entry.desktop share/locale/hne/LC_MESSAGES/kconfigwidgets5.mo share/locale/hne/kf5_entry.desktop share/locale/hr/LC_MESSAGES/kconfigwidgets5.mo share/locale/hr/kf5_entry.desktop share/locale/hsb/LC_MESSAGES/kconfigwidgets5.mo share/locale/hsb/kf5_entry.desktop share/locale/hu/LC_MESSAGES/kconfigwidgets5.mo share/locale/hu/kf5_entry.desktop share/locale/hy/LC_MESSAGES/kconfigwidgets5.mo share/locale/hy/kf5_entry.desktop share/locale/ia/LC_MESSAGES/kconfigwidgets5.mo share/locale/ia/kf5_entry.desktop share/locale/id/LC_MESSAGES/kconfigwidgets5.mo share/locale/id/kf5_entry.desktop share/locale/is/LC_MESSAGES/kconfigwidgets5.mo share/locale/is/kf5_entry.desktop share/locale/it/LC_MESSAGES/kconfigwidgets5.mo share/locale/it/kf5_entry.desktop share/locale/ja/LC_MESSAGES/kconfigwidgets5.mo share/locale/ja/kf5_entry.desktop share/locale/ka/LC_MESSAGES/kconfigwidgets5.mo share/locale/ka/kf5_entry.desktop share/locale/kk/LC_MESSAGES/kconfigwidgets5.mo share/locale/kk/kf5_entry.desktop share/locale/km/LC_MESSAGES/kconfigwidgets5.mo share/locale/km/kf5_entry.desktop share/locale/kn/LC_MESSAGES/kconfigwidgets5.mo share/locale/kn/kf5_entry.desktop share/locale/ko/LC_MESSAGES/kconfigwidgets5.mo share/locale/ko/kf5_entry.desktop share/locale/ku/LC_MESSAGES/kconfigwidgets5.mo share/locale/ku/kf5_entry.desktop share/locale/lb/LC_MESSAGES/kconfigwidgets5.mo share/locale/lb/kf5_entry.desktop share/locale/lt/LC_MESSAGES/kconfigwidgets5.mo share/locale/lt/kf5_entry.desktop share/locale/lv/LC_MESSAGES/kconfigwidgets5.mo share/locale/lv/kf5_entry.desktop share/locale/mai/LC_MESSAGES/kconfigwidgets5.mo share/locale/mai/kf5_entry.desktop share/locale/mk/LC_MESSAGES/kconfigwidgets5.mo share/locale/mk/kf5_entry.desktop share/locale/ml/LC_MESSAGES/kconfigwidgets5.mo share/locale/ml/kf5_entry.desktop share/locale/mr/LC_MESSAGES/kconfigwidgets5.mo share/locale/mr/kf5_entry.desktop share/locale/ms/LC_MESSAGES/kconfigwidgets5.mo share/locale/ms/kf5_entry.desktop share/locale/my/kf5_entry.desktop share/locale/nb/LC_MESSAGES/kconfigwidgets5.mo share/locale/nb/kf5_entry.desktop share/locale/nds/LC_MESSAGES/kconfigwidgets5.mo share/locale/nds/kf5_entry.desktop share/locale/ne/LC_MESSAGES/kconfigwidgets5.mo share/locale/ne/kf5_entry.desktop share/locale/nl/LC_MESSAGES/kconfigwidgets5.mo share/locale/nl/kf5_entry.desktop share/locale/nn/LC_MESSAGES/kconfigwidgets5.mo share/locale/nn/kf5_entry.desktop share/locale/oc/LC_MESSAGES/kconfigwidgets5.mo share/locale/oc/kf5_entry.desktop share/locale/or/LC_MESSAGES/kconfigwidgets5.mo share/locale/or/kf5_entry.desktop share/locale/pa/LC_MESSAGES/kconfigwidgets5.mo share/locale/pa/kf5_entry.desktop share/locale/pl/LC_MESSAGES/kconfigwidgets5.mo share/locale/pl/kf5_entry.desktop share/locale/ps/LC_MESSAGES/kconfigwidgets5.mo share/locale/ps/kf5_entry.desktop share/locale/pt/LC_MESSAGES/kconfigwidgets5.mo share/locale/pt/kf5_entry.desktop share/locale/pt_BR/LC_MESSAGES/kconfigwidgets5.mo share/locale/pt_BR/kf5_entry.desktop share/locale/ro/LC_MESSAGES/kconfigwidgets5.mo share/locale/ro/kf5_entry.desktop share/locale/ru/LC_MESSAGES/kconfigwidgets5.mo share/locale/ru/kf5_entry.desktop share/locale/se/LC_MESSAGES/kconfigwidgets5.mo share/locale/se/kf5_entry.desktop share/locale/si/LC_MESSAGES/kconfigwidgets5.mo share/locale/si/kf5_entry.desktop share/locale/sk/LC_MESSAGES/kconfigwidgets5.mo share/locale/sk/kf5_entry.desktop share/locale/sl/LC_MESSAGES/kconfigwidgets5.mo share/locale/sl/kf5_entry.desktop share/locale/sq/LC_MESSAGES/kconfigwidgets5.mo share/locale/sq/kf5_entry.desktop share/locale/sr/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr/kf5_entry.desktop share/locale/sr@ijekavian/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@ijekavian/kf5_entry.desktop share/locale/sr@ijekavianlatin/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@ijekavianlatin/kf5_entry.desktop share/locale/sr@latin/LC_MESSAGES/kconfigwidgets5.mo share/locale/sr@latin/kf5_entry.desktop share/locale/sv/LC_MESSAGES/kconfigwidgets5.mo share/locale/sv/kf5_entry.desktop share/locale/ta/LC_MESSAGES/kconfigwidgets5.mo share/locale/ta/kf5_entry.desktop share/locale/te/LC_MESSAGES/kconfigwidgets5.mo share/locale/te/kf5_entry.desktop share/locale/tg/LC_MESSAGES/kconfigwidgets5.mo share/locale/tg/kf5_entry.desktop share/locale/th/LC_MESSAGES/kconfigwidgets5.mo share/locale/th/kf5_entry.desktop +share/locale/tok/kf5_entry.desktop share/locale/tr/LC_MESSAGES/kconfigwidgets5.mo share/locale/tr/kf5_entry.desktop share/locale/tt/LC_MESSAGES/kconfigwidgets5.mo share/locale/tt/kf5_entry.desktop share/locale/ug/LC_MESSAGES/kconfigwidgets5.mo share/locale/ug/kf5_entry.desktop share/locale/uk/LC_MESSAGES/kconfigwidgets5.mo share/locale/uk/kf5_entry.desktop share/locale/uz/LC_MESSAGES/kconfigwidgets5.mo share/locale/uz/kf5_entry.desktop share/locale/uz@cyrillic/LC_MESSAGES/kconfigwidgets5.mo share/locale/uz@cyrillic/kf5_entry.desktop share/locale/vi/LC_MESSAGES/kconfigwidgets5.mo share/locale/vi/kf5_entry.desktop share/locale/wa/LC_MESSAGES/kconfigwidgets5.mo share/locale/wa/kf5_entry.desktop share/locale/xh/LC_MESSAGES/kconfigwidgets5.mo share/locale/xh/kf5_entry.desktop share/locale/zh_CN/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_CN/kf5_entry.desktop share/locale/zh_HK/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_HK/kf5_entry.desktop share/locale/zh_TW/LC_MESSAGES/kconfigwidgets5.mo share/locale/zh_TW/kf5_entry.desktop share/qlogging-categories5/kconfigwidgets.categories share/qlogging-categories5/kconfigwidgets.renamecategories diff --git a/x11-toolkits/kf5-kdesignerplugin/distinfo b/x11-toolkits/kf5-kdesignerplugin/distinfo index 5fe7a5550404..fa85e0a14d9c 100644 --- a/x11-toolkits/kf5-kdesignerplugin/distinfo +++ b/x11-toolkits/kf5-kdesignerplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111341 -SHA256 (KDE/frameworks/5.94.0/kdesignerplugin-5.94.0.tar.xz) = 6bd051e47f3a9f301e26b876036b1a36ccf2a2c7e6747f3a96a157c0c3a78a03 -SIZE (KDE/frameworks/5.94.0/kdesignerplugin-5.94.0.tar.xz) = 75608 +TIMESTAMP = 1654981268 +SHA256 (KDE/frameworks/5.95.0/kdesignerplugin-5.95.0.tar.xz) = fc5d31b2d6af56a2f5848573e078b0eddac70b4b28c320289745f7c60495e1ff +SIZE (KDE/frameworks/5.95.0/kdesignerplugin-5.95.0.tar.xz) = 75664 diff --git a/x11-toolkits/kf5-kguiaddons/distinfo b/x11-toolkits/kf5-kguiaddons/distinfo index dae49573775c..296463b5c435 100644 --- a/x11-toolkits/kf5-kguiaddons/distinfo +++ b/x11-toolkits/kf5-kguiaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936494 -SHA256 (KDE/frameworks/5.94.0/kguiaddons-5.94.0.tar.xz) = f23182a7268d37cbc32eaa77bdc9dddc6429a8eff912f57841f6d96c71973873 -SIZE (KDE/frameworks/5.94.0/kguiaddons-5.94.0.tar.xz) = 73120 +TIMESTAMP = 1654981269 +SHA256 (KDE/frameworks/5.95.0/kguiaddons-5.95.0.tar.xz) = c7f2a9bb97c4a262f0175e1a3734b689b8adb803c9b44cbd39b78712ec0ef20c +SIZE (KDE/frameworks/5.95.0/kguiaddons-5.95.0.tar.xz) = 73412 diff --git a/x11-toolkits/kf5-kirigami2/distinfo b/x11-toolkits/kf5-kirigami2/distinfo index f51aa7a5e3e2..432c5b674347 100644 --- a/x11-toolkits/kf5-kirigami2/distinfo +++ b/x11-toolkits/kf5-kirigami2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111343 -SHA256 (KDE/frameworks/5.94.0/kirigami2-5.94.0.tar.xz) = d7f27da3325feb339f4e1a3db78df44f05e4f505f36e15c7caeac04da0428e39 -SIZE (KDE/frameworks/5.94.0/kirigami2-5.94.0.tar.xz) = 356500 +TIMESTAMP = 1654981270 +SHA256 (KDE/frameworks/5.95.0/kirigami2-5.95.0.tar.xz) = ef9cbf1a59d058e874757059934dfba2fd106811f344367bd316cce449a80e1d +SIZE (KDE/frameworks/5.95.0/kirigami2-5.95.0.tar.xz) = 357640 diff --git a/x11-toolkits/kf5-kirigami2/pkg-plist b/x11-toolkits/kf5-kirigami2/pkg-plist index 9539da203a3c..542dd9320830 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/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/RefreshableScrollView.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/PassiveNotification.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ScrollView.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/ast/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/az/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/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 cc0a1bb425dd..9f33aac03430 100644 --- a/x11-toolkits/kf5-kitemviews/distinfo +++ b/x11-toolkits/kf5-kitemviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111343 -SHA256 (KDE/frameworks/5.94.0/kitemviews-5.94.0.tar.xz) = 5b75334b719ce07f4aa33236ef4bd11829504ff381670818ef57a7526938b52e -SIZE (KDE/frameworks/5.94.0/kitemviews-5.94.0.tar.xz) = 77360 +TIMESTAMP = 1654981271 +SHA256 (KDE/frameworks/5.95.0/kitemviews-5.95.0.tar.xz) = 72db4070df861b03eb64ff10c48c244e9b60caa30510f0fad5c9cb6e21db22fe +SIZE (KDE/frameworks/5.95.0/kitemviews-5.95.0.tar.xz) = 77332 diff --git a/x11-toolkits/kf5-kjobwidgets/distinfo b/x11-toolkits/kf5-kjobwidgets/distinfo index 833d3b6f3e8e..0cf549890baf 100644 --- a/x11-toolkits/kf5-kjobwidgets/distinfo +++ b/x11-toolkits/kf5-kjobwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111344 -SHA256 (KDE/frameworks/5.94.0/kjobwidgets-5.94.0.tar.xz) = 014f45fca82886af463956c533f5ba868700ac7ec61733f35a7fabad0042b007 -SIZE (KDE/frameworks/5.94.0/kjobwidgets-5.94.0.tar.xz) = 101632 +TIMESTAMP = 1654981272 +SHA256 (KDE/frameworks/5.95.0/kjobwidgets-5.95.0.tar.xz) = 2e5ffafc60bc00bdbe8ebf7b98e5b5b478a870017c30b75c0c9ecd2ab921146d +SIZE (KDE/frameworks/5.95.0/kjobwidgets-5.95.0.tar.xz) = 101616 diff --git a/x11-toolkits/kf5-ktextwidgets/distinfo b/x11-toolkits/kf5-ktextwidgets/distinfo index 19c50cd756a4..a47c4a9e6392 100644 --- a/x11-toolkits/kf5-ktextwidgets/distinfo +++ b/x11-toolkits/kf5-ktextwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111345 -SHA256 (KDE/frameworks/5.94.0/ktextwidgets-5.94.0.tar.xz) = 44fceedacb526f4c3c66c1d55257bb39881c7dcca55dae0deccefd84399ed866 -SIZE (KDE/frameworks/5.94.0/ktextwidgets-5.94.0.tar.xz) = 329296 +TIMESTAMP = 1654981272 +SHA256 (KDE/frameworks/5.95.0/ktextwidgets-5.95.0.tar.xz) = 9d8c22c99bd3ea5d702aacd0258979330a0a2f2d7f348375efe4216b01c25e6e +SIZE (KDE/frameworks/5.95.0/ktextwidgets-5.95.0.tar.xz) = 329372 diff --git a/x11-toolkits/kf5-kwidgetsaddons/distinfo b/x11-toolkits/kf5-kwidgetsaddons/distinfo index 6b8f2956dd16..625d0ee95999 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/distinfo +++ b/x11-toolkits/kf5-kwidgetsaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111346 -SHA256 (KDE/frameworks/5.94.0/kwidgetsaddons-5.94.0.tar.xz) = 678eed15c65d6298a5f720bc6dec1a6eed4e742431f7210a1d6bad261a003d32 -SIZE (KDE/frameworks/5.94.0/kwidgetsaddons-5.94.0.tar.xz) = 2317872 +TIMESTAMP = 1654981273 +SHA256 (KDE/frameworks/5.95.0/kwidgetsaddons-5.95.0.tar.xz) = 837b6f87e3615bb4e63a43256d0ebe59f7c574a4b820786dfab72462ee21712c +SIZE (KDE/frameworks/5.95.0/kwidgetsaddons-5.95.0.tar.xz) = 2312580 diff --git a/x11-toolkits/kf5-kxmlgui/distinfo b/x11-toolkits/kf5-kxmlgui/distinfo index fe863a41f99d..aa2a0e32cb44 100644 --- a/x11-toolkits/kf5-kxmlgui/distinfo +++ b/x11-toolkits/kf5-kxmlgui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111347 -SHA256 (KDE/frameworks/5.94.0/kxmlgui-5.94.0.tar.xz) = 43a31730ff0ed113320817aa35a04e53b6ec647ab94320cf3b075adc38619dd6 -SIZE (KDE/frameworks/5.94.0/kxmlgui-5.94.0.tar.xz) = 898380 +TIMESTAMP = 1654981274 +SHA256 (KDE/frameworks/5.95.0/kxmlgui-5.95.0.tar.xz) = 1065d4517a9fb5c7b94143004ce372077fb33374b2e202c61b5e018b960b339b +SIZE (KDE/frameworks/5.95.0/kxmlgui-5.95.0.tar.xz) = 897948 diff --git a/x11/kf5-frameworkintegration/distinfo b/x11/kf5-frameworkintegration/distinfo index c34641681ada..15c83476f553 100644 --- a/x11/kf5-frameworkintegration/distinfo +++ b/x11/kf5-frameworkintegration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936500 -SHA256 (KDE/frameworks/5.94.0/frameworkintegration-5.94.0.tar.xz) = 9a64abebf8d242765ae759611fc9819a03403047ed56b8dd71aba7a0bbb4faa6 -SIZE (KDE/frameworks/5.94.0/frameworkintegration-5.94.0.tar.xz) = 1758292 +TIMESTAMP = 1654981275 +SHA256 (KDE/frameworks/5.95.0/frameworkintegration-5.95.0.tar.xz) = a5c4c53f1afe035c087b093c3ccc88ae087861e6b4002c7dd6593ec954f0bf11 +SIZE (KDE/frameworks/5.95.0/frameworkintegration-5.95.0.tar.xz) = 1758292 diff --git a/x11/kf5-kactivities-stats/distinfo b/x11/kf5-kactivities-stats/distinfo index ae439a3c4271..ac9f559cbaf8 100644 --- a/x11/kf5-kactivities-stats/distinfo +++ b/x11/kf5-kactivities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936502 -SHA256 (KDE/frameworks/5.94.0/kactivities-stats-5.94.0.tar.xz) = 83fe7d109d830f348f18432949902700ee8a6a934cbaf3f89ae7bbfb28ef2340 -SIZE (KDE/frameworks/5.94.0/kactivities-stats-5.94.0.tar.xz) = 84580 +TIMESTAMP = 1654981278 +SHA256 (KDE/frameworks/5.95.0/kactivities-stats-5.95.0.tar.xz) = 5256a3aab210b3ff68d2fab6a7e1888ed1568189e47d452aeb8d3400336aca53 +SIZE (KDE/frameworks/5.95.0/kactivities-stats-5.95.0.tar.xz) = 84560 diff --git a/x11/kf5-kactivities/distinfo b/x11/kf5-kactivities/distinfo index eec20fb26554..d851b335a07d 100644 --- a/x11/kf5-kactivities/distinfo +++ b/x11/kf5-kactivities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936501 -SHA256 (KDE/frameworks/5.94.0/kactivities-5.94.0.tar.xz) = 52dd5eba3daeb2a9bbb3a1865b3219277b3ca6357c2870c3570dfac10f445adf -SIZE (KDE/frameworks/5.94.0/kactivities-5.94.0.tar.xz) = 73788 +TIMESTAMP = 1654981277 +SHA256 (KDE/frameworks/5.95.0/kactivities-5.95.0.tar.xz) = e3c12269b60a815dab2cba3a3e035f479a9dc0a8f9c04a2a9dafa91c3cafb4d7 +SIZE (KDE/frameworks/5.95.0/kactivities-5.95.0.tar.xz) = 73800 diff --git a/x11/kf5-kded/distinfo b/x11/kf5-kded/distinfo index 8b2a3a8a196c..bcd28ee4157c 100644 --- a/x11/kf5-kded/distinfo +++ b/x11/kf5-kded/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111351 -SHA256 (KDE/frameworks/5.94.0/kded-5.94.0.tar.xz) = 2f4d61a3e8c64f81e5916558d48e381d0a3890c5ad388f27934944136c44f3c5 -SIZE (KDE/frameworks/5.94.0/kded-5.94.0.tar.xz) = 39316 +TIMESTAMP = 1654981279 +SHA256 (KDE/frameworks/5.95.0/kded-5.95.0.tar.xz) = 991b881483097d78097f741e914bbe6c7ba14f2009a731a4994c1b433deaae41 +SIZE (KDE/frameworks/5.95.0/kded-5.95.0.tar.xz) = 39340 diff --git a/x11/kf5-kdelibs4support/distinfo b/x11/kf5-kdelibs4support/distinfo index 4f280d34e80b..6086a892f92f 100644 --- a/x11/kf5-kdelibs4support/distinfo +++ b/x11/kf5-kdelibs4support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111352 -SHA256 (KDE/frameworks/5.94.0/kdelibs4support-5.94.0.tar.xz) = d726ebb00766d3d5ed39603601c4b9541659bebc4bb7b755eec25bffd8a76033 -SIZE (KDE/frameworks/5.94.0/kdelibs4support-5.94.0.tar.xz) = 3651300 +TIMESTAMP = 1654981280 +SHA256 (KDE/frameworks/5.95.0/kdelibs4support-5.95.0.tar.xz) = d6a4528a9305335896e4c481ba7ffda889d251bea249573cdb5238933844d55e +SIZE (KDE/frameworks/5.95.0/kdelibs4support-5.95.0.tar.xz) = 3652484 diff --git a/x11/kf5-kglobalaccel/distinfo b/x11/kf5-kglobalaccel/distinfo index 380ced8afefd..a0a3f9e92cab 100644 --- a/x11/kf5-kglobalaccel/distinfo +++ b/x11/kf5-kglobalaccel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111353 -SHA256 (KDE/frameworks/5.94.0/kglobalaccel-5.94.0.tar.xz) = a34b00116a72d0973cdeb203a5d237da63cc307e9e294dfaedb00ff0a36835e9 -SIZE (KDE/frameworks/5.94.0/kglobalaccel-5.94.0.tar.xz) = 95840 +TIMESTAMP = 1654981281 +SHA256 (KDE/frameworks/5.95.0/kglobalaccel-5.95.0.tar.xz) = 93ca1e46cac137dec3ee83d7fcd704d8a8a786bd60c499e46c06b263a95904cb +SIZE (KDE/frameworks/5.95.0/kglobalaccel-5.95.0.tar.xz) = 96196 diff --git a/x11/kf5-kinit/distinfo b/x11/kf5-kinit/distinfo index 9057fb720f3a..88795b35fc0e 100644 --- a/x11/kf5-kinit/distinfo +++ b/x11/kf5-kinit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111354 -SHA256 (KDE/frameworks/5.94.0/kinit-5.94.0.tar.xz) = ee98f909cea837dc0e8cae363fda5891fac89de388aaf75388e3ae9f3e1ebc61 -SIZE (KDE/frameworks/5.94.0/kinit-5.94.0.tar.xz) = 119280 +TIMESTAMP = 1654981282 +SHA256 (KDE/frameworks/5.95.0/kinit-5.95.0.tar.xz) = cc5be7ad9c11aeff434a81bfca26400154a835f7f4a4a558118c1271a49bf07b +SIZE (KDE/frameworks/5.95.0/kinit-5.95.0.tar.xz) = 119288 diff --git a/x11/kf5-krunner/distinfo b/x11/kf5-krunner/distinfo index 089e76643e19..874658d6e5fd 100644 --- a/x11/kf5-krunner/distinfo +++ b/x11/kf5-krunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651936507 -SHA256 (KDE/frameworks/5.94.0/krunner-5.94.0.tar.xz) = 32b0bcda190884f9de2f8a598c854ed2d29cab199dda5d341364913321b7cbd1 -SIZE (KDE/frameworks/5.94.0/krunner-5.94.0.tar.xz) = 86244 +TIMESTAMP = 1654981283 +SHA256 (KDE/frameworks/5.95.0/krunner-5.95.0.tar.xz) = 60d1408a5e32af268e563da31bf0fbdec31ea9f1331a1aae7e6b990814601670 +SIZE (KDE/frameworks/5.95.0/krunner-5.95.0.tar.xz) = 87344 diff --git a/x11/kf5-kwayland/distinfo b/x11/kf5-kwayland/distinfo index 206b6735d242..443e71e04dae 100644 --- a/x11/kf5-kwayland/distinfo +++ b/x11/kf5-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652480694 -SHA256 (KDE/frameworks/5.94.0/kwayland-5.94.0.tar.xz) = b2a4d8e1b4d81ce798c991cfb34210ba095f6406a37f4714ae3ab64abaca2636 -SIZE (KDE/frameworks/5.94.0/kwayland-5.94.0.tar.xz) = 335524 +TIMESTAMP = 1654981284 +SHA256 (KDE/frameworks/5.95.0/kwayland-5.95.0.tar.xz) = 2b8fa6f1cb0e5663cfdec98bb6ebcbe5ceec5e39f71ed0c8fbac5c7cd20c472d +SIZE (KDE/frameworks/5.95.0/kwayland-5.95.0.tar.xz) = 335624 diff --git a/x11/kf5-kwindowsystem/distinfo b/x11/kf5-kwindowsystem/distinfo index 6aacafd5daf6..3decd4da0cc9 100644 --- a/x11/kf5-kwindowsystem/distinfo +++ b/x11/kf5-kwindowsystem/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111357 -SHA256 (KDE/frameworks/5.94.0/kwindowsystem-5.94.0.tar.xz) = 52ebb7d4e9ac3f24fadfd5265ff8cc390efbccf6fa6d084e5a573c3b2aa43c78 -SIZE (KDE/frameworks/5.94.0/kwindowsystem-5.94.0.tar.xz) = 182240 +TIMESTAMP = 1654981285 +SHA256 (KDE/frameworks/5.95.0/kwindowsystem-5.95.0.tar.xz) = f16bbf922a093fc7f029cf1cde64fd5311a1f133d8487fcb7bdb6e2e5184bbf3 +SIZE (KDE/frameworks/5.95.0/kwindowsystem-5.95.0.tar.xz) = 182340 diff --git a/x11/kf5-plasma-framework/distinfo b/x11/kf5-plasma-framework/distinfo index ae420c995cec..dadccaf79225 100644 --- a/x11/kf5-plasma-framework/distinfo +++ b/x11/kf5-plasma-framework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1652111358 -SHA256 (KDE/frameworks/5.94.0/plasma-framework-5.94.0.tar.xz) = 6cebfb9e7b61062194119bf7c4ef0e9529cd7321c8e06fb68b68fa518815ed2a -SIZE (KDE/frameworks/5.94.0/plasma-framework-5.94.0.tar.xz) = 3137928 +TIMESTAMP = 1655267318 +SHA256 (KDE/frameworks/5.95.0/plasma-framework-5.95.0.tar.xz) = 5f5b6c95985e60b2e1d0b155fcb90bfc20186cb56f87d13c4b946f57fd22a55f +SIZE (KDE/frameworks/5.95.0/plasma-framework-5.95.0.tar.xz) = 3139008