diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 41d136b92b33..f3da0622304a 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,924 +1,924 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.27.9 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. -KDE_FRAMEWORKS_VERSION?= 5.110.0 -KDE_FRAMEWORKS_BRANCH?= stable +KDE_FRAMEWORKS_VERSION?= 5.111.0 +KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 23.08.2 KDE_APPLICATIONS_SHLIB_VER?= 5.24.2 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS_SHLIB_G_VER?= 23.8.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_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_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 oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma5-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_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 kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma5-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PORT= deskutils/plasma5-xdg-desktop-portal-kde # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF5TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= 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 4dc07d8069d7..98a315801115 100644 --- a/archivers/kf5-karchive/distinfo +++ b/archivers/kf5-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025505 -SHA256 (KDE/frameworks/5.110.0/karchive-5.110.0.tar.xz) = fcc6583c0be5abbb9744bfad8d3e673a5b0907bd0787f7da338cc3d989040cdf -SIZE (KDE/frameworks/5.110.0/karchive-5.110.0.tar.xz) = 1022448 +TIMESTAMP = 1697220918 +SHA256 (KDE/frameworks/5.111.0/karchive-5.111.0.tar.xz) = e00e3d492882788e4289d62c6bde25e56178197de92f232a5850864ff6c2cd2d +SIZE (KDE/frameworks/5.111.0/karchive-5.111.0.tar.xz) = 1023832 diff --git a/archivers/kf5-karchive/pkg-plist b/archivers/kf5-karchive/pkg-plist index 8e102529d337..788bc45426ef 100644 --- a/archivers/kf5-karchive/pkg-plist +++ b/archivers/kf5-karchive/pkg-plist @@ -1,67 +1,68 @@ include/KF5/KArchive/K7Zip include/KF5/KArchive/KAr include/KF5/KArchive/KArchive include/KF5/KArchive/KArchiveDirectory include/KF5/KArchive/KArchiveEntry include/KF5/KArchive/KArchiveFile include/KF5/KArchive/KCompressionDevice include/KF5/KArchive/KFilterBase include/KF5/KArchive/KFilterDev include/KF5/KArchive/KRcc include/KF5/KArchive/KTar include/KF5/KArchive/KZip include/KF5/KArchive/KZipFileEntry include/KF5/KArchive/k7zip.h include/KF5/KArchive/kar.h include/KF5/KArchive/karchive.h include/KF5/KArchive/karchive_export.h include/KF5/KArchive/karchive_version.h include/KF5/KArchive/karchivedirectory.h include/KF5/KArchive/karchiveentry.h include/KF5/KArchive/karchivefile.h include/KF5/KArchive/kcompressiondevice.h include/KF5/KArchive/kfilterbase.h include/KF5/KArchive/kfilterdev.h include/KF5/KArchive/krcc.h include/KF5/KArchive/ktar.h include/KF5/KArchive/kzip.h include/KF5/KArchive/kzipfileentry.h lib/cmake/KF5Archive/KF5ArchiveConfig.cmake lib/cmake/KF5Archive/KF5ArchiveConfigVersion.cmake lib/cmake/KF5Archive/KF5ArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Archive/KF5ArchiveTargets.cmake lib/libKF5Archive.so lib/libKF5Archive.so.5 lib/libKF5Archive.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KArchive.pri share/locale/ar/LC_MESSAGES/karchive5_qt.qm share/locale/ca/LC_MESSAGES/karchive5_qt.qm share/locale/ca@valencia/LC_MESSAGES/karchive5_qt.qm share/locale/cs/LC_MESSAGES/karchive5_qt.qm share/locale/de/LC_MESSAGES/karchive5_qt.qm share/locale/en_GB/LC_MESSAGES/karchive5_qt.qm +share/locale/eo/LC_MESSAGES/karchive5_qt.qm share/locale/es/LC_MESSAGES/karchive5_qt.qm share/locale/fi/LC_MESSAGES/karchive5_qt.qm share/locale/fr/LC_MESSAGES/karchive5_qt.qm share/locale/gl/LC_MESSAGES/karchive5_qt.qm share/locale/ia/LC_MESSAGES/karchive5_qt.qm share/locale/id/LC_MESSAGES/karchive5_qt.qm share/locale/it/LC_MESSAGES/karchive5_qt.qm share/locale/ja/LC_MESSAGES/karchive5_qt.qm share/locale/ka/LC_MESSAGES/karchive5_qt.qm share/locale/ko/LC_MESSAGES/karchive5_qt.qm share/locale/lt/LC_MESSAGES/karchive5_qt.qm share/locale/nl/LC_MESSAGES/karchive5_qt.qm share/locale/nn/LC_MESSAGES/karchive5_qt.qm share/locale/pl/LC_MESSAGES/karchive5_qt.qm share/locale/pt/LC_MESSAGES/karchive5_qt.qm share/locale/ru/LC_MESSAGES/karchive5_qt.qm share/locale/sk/LC_MESSAGES/karchive5_qt.qm share/locale/sl/LC_MESSAGES/karchive5_qt.qm share/locale/sv/LC_MESSAGES/karchive5_qt.qm share/locale/tr/LC_MESSAGES/karchive5_qt.qm share/locale/uk/LC_MESSAGES/karchive5_qt.qm share/locale/zh_CN/LC_MESSAGES/karchive5_qt.qm share/locale/zh_TW/LC_MESSAGES/karchive5_qt.qm share/qlogging-categories5/karchive.categories share/qlogging-categories5/karchive.renamecategories diff --git a/devel/kf5-extra-cmake-modules/distinfo b/devel/kf5-extra-cmake-modules/distinfo index 31ad71a347f2..1deab83e1ac1 100644 --- a/devel/kf5-extra-cmake-modules/distinfo +++ b/devel/kf5-extra-cmake-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025507 -SHA256 (KDE/frameworks/5.110.0/extra-cmake-modules-5.110.0.tar.xz) = 7746f5db3e230ee2485e603580cc4c7cec636c3258c0a909766fb281913f6438 -SIZE (KDE/frameworks/5.110.0/extra-cmake-modules-5.110.0.tar.xz) = 331584 +TIMESTAMP = 1697220919 +SHA256 (KDE/frameworks/5.111.0/extra-cmake-modules-5.111.0.tar.xz) = 555d3c1dfa6727b4e64a35d3f01724c9fcd6209c2a41f2b2297c39ed7aabea9a +SIZE (KDE/frameworks/5.111.0/extra-cmake-modules-5.111.0.tar.xz) = 331980 diff --git a/devel/kf5-kapidox/distinfo b/devel/kf5-kapidox/distinfo index 4baf06d76f4c..00cefbf6d4af 100644 --- a/devel/kf5-kapidox/distinfo +++ b/devel/kf5-kapidox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025508 -SHA256 (KDE/frameworks/5.110.0/kapidox-5.110.0.tar.xz) = 44b44232934e4b8b16bf1eb80e1b9201b8381ea4e8e0720debfa014e35ab22e2 -SIZE (KDE/frameworks/5.110.0/kapidox-5.110.0.tar.xz) = 198852 +TIMESTAMP = 1697220919 +SHA256 (KDE/frameworks/5.111.0/kapidox-5.111.0.tar.xz) = 7fe92bf87c16cc61e20619447e0cd4440b06a8970103d83c7b953fb97cd42468 +SIZE (KDE/frameworks/5.111.0/kapidox-5.111.0.tar.xz) = 198884 diff --git a/devel/kf5-kauth/distinfo b/devel/kf5-kauth/distinfo index 6a072f1abf08..b627f149704f 100644 --- a/devel/kf5-kauth/distinfo +++ b/devel/kf5-kauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025510 -SHA256 (KDE/frameworks/5.110.0/kauth-5.110.0.tar.xz) = e1b357b36f5388ecd96430bb98780d8429d00cccca0a56fc6d3c3f0cb7afd5fb -SIZE (KDE/frameworks/5.110.0/kauth-5.110.0.tar.xz) = 2307544 +TIMESTAMP = 1697220920 +SHA256 (KDE/frameworks/5.111.0/kauth-5.111.0.tar.xz) = e5cc81fa581dd7906e28ef1a53a3c37362e76a2ed9316d61167107369583bbb3 +SIZE (KDE/frameworks/5.111.0/kauth-5.111.0.tar.xz) = 2307312 diff --git a/devel/kf5-kbookmarks/distinfo b/devel/kf5-kbookmarks/distinfo index 5ab64dca98ec..c6dc1be5d74b 100644 --- a/devel/kf5-kbookmarks/distinfo +++ b/devel/kf5-kbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025512 -SHA256 (KDE/frameworks/5.110.0/kbookmarks-5.110.0.tar.xz) = 7013f696f643c3518f40041e4132edddf184c2c177bec231c16fecc81cab04cc -SIZE (KDE/frameworks/5.110.0/kbookmarks-5.110.0.tar.xz) = 1125036 +TIMESTAMP = 1697220921 +SHA256 (KDE/frameworks/5.111.0/kbookmarks-5.111.0.tar.xz) = 1bbae865cf2243ed0a97efe6019309889eabbfda497c3c99fd428a6b368ae098 +SIZE (KDE/frameworks/5.111.0/kbookmarks-5.111.0.tar.xz) = 1125068 diff --git a/devel/kf5-kcmutils/distinfo b/devel/kf5-kcmutils/distinfo index 3df58be2efd5..b72908f61a33 100644 --- a/devel/kf5-kcmutils/distinfo +++ b/devel/kf5-kcmutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025514 -SHA256 (KDE/frameworks/5.110.0/kcmutils-5.110.0.tar.xz) = 58fd9b69052cdb585d1e226013c69d311abc7dd2814bb52d4888f3534ecb8f31 -SIZE (KDE/frameworks/5.110.0/kcmutils-5.110.0.tar.xz) = 2483528 +TIMESTAMP = 1697220922 +SHA256 (KDE/frameworks/5.111.0/kcmutils-5.111.0.tar.xz) = e0f888952a8653355eb93e80f1aa87a0fa548fee0a9e9cae5214c14a962ccd26 +SIZE (KDE/frameworks/5.111.0/kcmutils-5.111.0.tar.xz) = 2483556 diff --git a/devel/kf5-kconfig/distinfo b/devel/kf5-kconfig/distinfo index 8843cf2e90da..3953cd4431f8 100644 --- a/devel/kf5-kconfig/distinfo +++ b/devel/kf5-kconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025516 -SHA256 (KDE/frameworks/5.110.0/kconfig-5.110.0.tar.xz) = ad2b88bdbb788ed0df5cbdc95ebd24c197d0fee35c08f78acf3e2398016c31c5 -SIZE (KDE/frameworks/5.110.0/kconfig-5.110.0.tar.xz) = 294168 +TIMESTAMP = 1697220923 +SHA256 (KDE/frameworks/5.111.0/kconfig-5.111.0.tar.xz) = 9ac079ad4a7311fd04ff5fc8a5989ef8e066b2dee8de1e2bd923bd202c140135 +SIZE (KDE/frameworks/5.111.0/kconfig-5.111.0.tar.xz) = 294176 diff --git a/devel/kf5-kcoreaddons/distinfo b/devel/kf5-kcoreaddons/distinfo index 68c36dfdff9d..f367e5788a4e 100644 --- a/devel/kf5-kcoreaddons/distinfo +++ b/devel/kf5-kcoreaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025517 -SHA256 (KDE/frameworks/5.110.0/kcoreaddons-5.110.0.tar.xz) = 6e8de80ccc003606af7f89c354719d012bdab5dde156c5505df32861e0158d75 -SIZE (KDE/frameworks/5.110.0/kcoreaddons-5.110.0.tar.xz) = 2609812 +TIMESTAMP = 1697220924 +SHA256 (KDE/frameworks/5.111.0/kcoreaddons-5.111.0.tar.xz) = dbd4e7fa640b1ef85d7e47c2e381c68835f371f5feba60156ef64eb2e377256e +SIZE (KDE/frameworks/5.111.0/kcoreaddons-5.111.0.tar.xz) = 2609652 diff --git a/devel/kf5-kcrash/Makefile b/devel/kf5-kcrash/Makefile index 75de887b78f5..7bd096dd83ae 100644 --- a/devel/kf5-kcrash/Makefile +++ b/devel/kf5-kcrash/Makefile @@ -1,16 +1,15 @@ PORTNAME= kcrash DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to handle crash analysis and bug report from apps USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= coreaddons \ ecm:build USE_QT= core gui x11extras \ buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xext .include diff --git a/devel/kf5-kcrash/distinfo b/devel/kf5-kcrash/distinfo index 1a7cfc2b78c7..5604c5e7a9d2 100644 --- a/devel/kf5-kcrash/distinfo +++ b/devel/kf5-kcrash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025519 -SHA256 (KDE/frameworks/5.110.0/kcrash-5.110.0.tar.xz) = cf40d5bb8308820db78f89a7011dc2f32504e811f91010c8f31430a74c064796 -SIZE (KDE/frameworks/5.110.0/kcrash-5.110.0.tar.xz) = 28300 +TIMESTAMP = 1697220925 +SHA256 (KDE/frameworks/5.111.0/kcrash-5.111.0.tar.xz) = dc2198a8435ef2f3c87cc2345627b55de10cf511b1e2b352c1abb0009cb57c31 +SIZE (KDE/frameworks/5.111.0/kcrash-5.111.0.tar.xz) = 28304 diff --git a/devel/kf5-kdbusaddons/distinfo b/devel/kf5-kdbusaddons/distinfo index 0b43f6b1f838..90ef15aa2426 100644 --- a/devel/kf5-kdbusaddons/distinfo +++ b/devel/kf5-kdbusaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025520 -SHA256 (KDE/frameworks/5.110.0/kdbusaddons-5.110.0.tar.xz) = 10ad0ec26b1a7076110a0fd431e5a4a26dbcf62da070888e93b9b3028f999f46 -SIZE (KDE/frameworks/5.110.0/kdbusaddons-5.110.0.tar.xz) = 48916 +TIMESTAMP = 1697220926 +SHA256 (KDE/frameworks/5.111.0/kdbusaddons-5.111.0.tar.xz) = 61a9f2921976cd727a5a9e87fdc89d9a403fd51bd4541d51885bc7b38e0a18b5 +SIZE (KDE/frameworks/5.111.0/kdbusaddons-5.111.0.tar.xz) = 48908 diff --git a/devel/kf5-kdeclarative/distinfo b/devel/kf5-kdeclarative/distinfo index 86653af03fce..375b27f751e5 100644 --- a/devel/kf5-kdeclarative/distinfo +++ b/devel/kf5-kdeclarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025522 -SHA256 (KDE/frameworks/5.110.0/kdeclarative-5.110.0.tar.xz) = 525ac4f4754680f86d70382af3c0cf3c9bc8cf0b57d0b84be5274549496c98ed -SIZE (KDE/frameworks/5.110.0/kdeclarative-5.110.0.tar.xz) = 2492408 +TIMESTAMP = 1697220927 +SHA256 (KDE/frameworks/5.111.0/kdeclarative-5.111.0.tar.xz) = 1cda65b32a9bea0235150056fd6557366afc034668388cca363d6b07e670532e +SIZE (KDE/frameworks/5.111.0/kdeclarative-5.111.0.tar.xz) = 2492200 diff --git a/devel/kf5-kdoctools/distinfo b/devel/kf5-kdoctools/distinfo index 83280191315f..eec6621b5dd9 100644 --- a/devel/kf5-kdoctools/distinfo +++ b/devel/kf5-kdoctools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025524 -SHA256 (KDE/frameworks/5.110.0/kdoctools-5.110.0.tar.xz) = 923c7e2edbe948275317014ac3c57897ebc657f556a1d0c353f363c3ee7d05bc -SIZE (KDE/frameworks/5.110.0/kdoctools-5.110.0.tar.xz) = 465388 +TIMESTAMP = 1697220928 +SHA256 (KDE/frameworks/5.111.0/kdoctools-5.111.0.tar.xz) = 39a9126a8f4067afc02b4d9afdc6cfa5fe870843678428dd3a4f14e1d2104ebe +SIZE (KDE/frameworks/5.111.0/kdoctools-5.111.0.tar.xz) = 465380 diff --git a/devel/kf5-kfilemetadata/Makefile b/devel/kf5-kfilemetadata/Makefile index dac3a84912fd..9226120a4239 100644 --- a/devel/kf5-kfilemetadata/Makefile +++ b/devel/kf5-kfilemetadata/Makefile @@ -1,31 +1,30 @@ PORTNAME= kfilemetadata DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for extracting file metadata LIB_DEPENDS= libavutil.so:multimedia/ffmpeg \ libepub.so:textproc/ebook-tools \ libexiv2.so:graphics/exiv2 \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libtag.so:audio/taglib # TODO: maybe depend on textproc/catdoc USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= archive config coreaddons i18n \ ecm:build USE_QT= core gui xml \ buildtools:build qmake:build OPTIONS_DEFINE= MOBIPOCKET OPTIONS_DEFAULT= ${OPTIONS_DEFINE} OPTIONS_SUB= yes MOBIPOCKET_DESC= Mobipocket plugin to handle metadata MOBIPOCKET_LIB_DEPENDS= libqmobipocket.so:graphics/kdegraphics-mobipocket .include diff --git a/devel/kf5-kfilemetadata/distinfo b/devel/kf5-kfilemetadata/distinfo index a07b92e5f27d..52ec3bb98d0f 100644 --- a/devel/kf5-kfilemetadata/distinfo +++ b/devel/kf5-kfilemetadata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025525 -SHA256 (KDE/frameworks/5.110.0/kfilemetadata-5.110.0.tar.xz) = 892ec8817ab6f75ff5bc86c7efa6ee10e76155d2a3421dd290f6ee822322aa1e -SIZE (KDE/frameworks/5.110.0/kfilemetadata-5.110.0.tar.xz) = 472980 +TIMESTAMP = 1697220929 +SHA256 (KDE/frameworks/5.111.0/kfilemetadata-5.111.0.tar.xz) = 8f46dc99401ddddf3518ce7bda4ec8d2c7630f5bedd948fc5718c5ef99d96dc7 +SIZE (KDE/frameworks/5.111.0/kfilemetadata-5.111.0.tar.xz) = 472952 diff --git a/devel/kf5-ki18n/Makefile b/devel/kf5-ki18n/Makefile index af056817b4b1..1cdc28ab5aa9 100644 --- a/devel/kf5-ki18n/Makefile +++ b/devel/kf5-ki18n/Makefile @@ -1,18 +1,17 @@ PORTNAME= ki18n DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced internationalization framework BUILD_DEPENDS= iso-codes>=0:misc/iso-codes RUN_DEPENDS= iso-codes>=0:misc/iso-codes USES= cmake compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm:build USE_QT= core declarative network \ buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-ki18n/distinfo b/devel/kf5-ki18n/distinfo index 170ff4172b33..c3d96978f714 100644 --- a/devel/kf5-ki18n/distinfo +++ b/devel/kf5-ki18n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025531 -SHA256 (KDE/frameworks/5.110.0/ki18n-5.110.0.tar.xz) = bceaa4c861de372b77da5e850a50edf2815afe93d9d7f1b9c05f6d6667d2130f -SIZE (KDE/frameworks/5.110.0/ki18n-5.110.0.tar.xz) = 3129428 +TIMESTAMP = 1697220930 +SHA256 (KDE/frameworks/5.111.0/ki18n-5.111.0.tar.xz) = 4d0a27bdc89c9111888930ab17cb1f8416450f0baceffb6d52571e135c85df27 +SIZE (KDE/frameworks/5.111.0/ki18n-5.111.0.tar.xz) = 3129392 diff --git a/devel/kf5-kidletime/Makefile b/devel/kf5-kidletime/Makefile index b37bdb979481..ff24b481409f 100644 --- a/devel/kf5-kidletime/Makefile +++ b/devel/kf5-kidletime/Makefile @@ -1,18 +1,17 @@ PORTNAME= kidletime DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for monitoring user activity BUILD_DEPENDS= wayland-protocols>=1.27:graphics/wayland-protocols LIB_DEPENDS= libwayland-client.so:graphics/wayland USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= ecm:build plasma-wayland-protocols USE_QT= core dbus gui wayland x11extras \ buildtools:build qmake:build USE_XORG= ice sm x11 xext xcb xscrnsaver .include diff --git a/devel/kf5-kidletime/distinfo b/devel/kf5-kidletime/distinfo index e3c82f14c25d..6f217df6b972 100644 --- a/devel/kf5-kidletime/distinfo +++ b/devel/kf5-kidletime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025536 -SHA256 (KDE/frameworks/5.110.0/kidletime-5.110.0.tar.xz) = 84fc1f0f6b7d1a551aaa5f758cc4d0dcaed28663a85c8d49dd608686ce018341 -SIZE (KDE/frameworks/5.110.0/kidletime-5.110.0.tar.xz) = 30932 +TIMESTAMP = 1697220931 +SHA256 (KDE/frameworks/5.111.0/kidletime-5.111.0.tar.xz) = 3b8af333383b4f54ceb93b9802c91f9288c1ff8e1464277f41e6eb5c47ab0ad4 +SIZE (KDE/frameworks/5.111.0/kidletime-5.111.0.tar.xz) = 30936 diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile index ec9417098732..a586e18f332b 100644 --- a/devel/kf5-kio/Makefile +++ b/devel/kf5-kio/Makefile @@ -1,26 +1,22 @@ PORTNAME= kio DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks -PATCH_SITES= https://invent.kde.org/frameworks/kio/-/commit/ -PATCHFILES= 48322f44323a1fc09305d66d9093fe6c3780709e.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KF5 resource and network access abstraction USES= cmake compiler:c++11-lib desktop-file-utils \ gettext gnome kde:5 cpe qt:5 ssl tar:xz xorg USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools guiaddons \ i18n iconthemes itemviews jobwidgets kded \ notifications service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network \ widgets x11extras xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo index 793a5f5cdcda..abad2cd70d64 100644 --- a/devel/kf5-kio/distinfo +++ b/devel/kf5-kio/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1695098979 -SHA256 (KDE/frameworks/5.110.0/kio-5.110.0.tar.xz) = 228f9abcdfce1b23deacca97e9dd68d019e6b20607ddfe2295050333e90fc96b -SIZE (KDE/frameworks/5.110.0/kio-5.110.0.tar.xz) = 3795996 -SHA256 (KDE/frameworks/5.110.0/48322f44323a1fc09305d66d9093fe6c3780709e.diff) = ab2b438a510d6fb074b97a7ef3ad475581ca499ef971e953ecf1ba3fe15c1902 -SIZE (KDE/frameworks/5.110.0/48322f44323a1fc09305d66d9093fe6c3780709e.diff) = 621 +TIMESTAMP = 1697470396 +SHA256 (KDE/frameworks/5.111.0/kio-5.111.0.tar.xz) = 51bfd270942bcd80d8c3bfb72ee299d4d04a257f496b1843d9335d0db9afd045 +SIZE (KDE/frameworks/5.111.0/kio-5.111.0.tar.xz) = 3798160 diff --git a/devel/kf5-kitemmodels/distinfo b/devel/kf5-kitemmodels/distinfo index 48865d2c0d9b..cf3afa1437e3 100644 --- a/devel/kf5-kitemmodels/distinfo +++ b/devel/kf5-kitemmodels/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025546 -SHA256 (KDE/frameworks/5.110.0/kitemmodels-5.110.0.tar.xz) = 123a7f4511f74f4a20aebf4d7194bfe46c71bdf3d3c3cc4864d71262c6a8fe19 -SIZE (KDE/frameworks/5.110.0/kitemmodels-5.110.0.tar.xz) = 407364 +TIMESTAMP = 1697220933 +SHA256 (KDE/frameworks/5.111.0/kitemmodels-5.111.0.tar.xz) = 55361b811dfc7d48dcff3ce6d5f749ba53710dcccd460d32f20de4403d539cc4 +SIZE (KDE/frameworks/5.111.0/kitemmodels-5.111.0.tar.xz) = 407388 diff --git a/devel/kf5-knewstuff/Makefile b/devel/kf5-knewstuff/Makefile index 59c7a45c6999..64ae230ccfc1 100644 --- a/devel/kf5-knewstuff/Makefile +++ b/devel/kf5-knewstuff/Makefile @@ -1,19 +1,18 @@ PORTNAME= knewstuff DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks 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 xorg USE_KDE= archive attica5 auth codecs completion config \ configwidgets coreaddons i18n iconthemes itemviews \ jobwidgets kio kirigami2 package service syndication \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/kf5-knewstuff/distinfo b/devel/kf5-knewstuff/distinfo index cc0376bd08dd..8d86fd9d9356 100644 --- a/devel/kf5-knewstuff/distinfo +++ b/devel/kf5-knewstuff/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025550 -SHA256 (KDE/frameworks/5.110.0/knewstuff-5.110.0.tar.xz) = 74ad95ea18b42b00f4b3d51bfe0bdcfebf5e40c26a27c569c3c0fce365448d62 -SIZE (KDE/frameworks/5.110.0/knewstuff-5.110.0.tar.xz) = 3386288 +TIMESTAMP = 1697220934 +SHA256 (KDE/frameworks/5.111.0/knewstuff-5.111.0.tar.xz) = 65747d7806df8c2b99bd4a2c2f0527b41352354047b4c7de33c97afea4b91b6a +SIZE (KDE/frameworks/5.111.0/knewstuff-5.111.0.tar.xz) = 3387768 diff --git a/devel/kf5-knotifications/Makefile b/devel/kf5-knotifications/Makefile index 04ed49831e91..146b866c0948 100644 --- a/devel/kf5-knotifications/Makefile +++ b/devel/kf5-knotifications/Makefile @@ -1,27 +1,26 @@ PORTNAME= knotifications DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction for system notifications LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ libcanberra.so:audio/libcanberra USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons windowsystem \ ecm:build USE_QT= core dbus declarative gui linguisttools network widgets x11extras \ buildtools:build qmake:build USE_XORG= x11 xtst OPTIONS_DEFINE= AUDIO OPTIONS_DEFAULT= AUDIO AUDIO_DESC= Audio notifications/text-to-speech support AUDIO_LIB_DEPENDS= libcanberra-gtk3.so:audio/libcanberra-gtk3 AUDIO_USE= QT=speech AUDIO_USES= pkgconfig .include diff --git a/devel/kf5-knotifications/distinfo b/devel/kf5-knotifications/distinfo index 3e95a69f7b39..013a85fcc012 100644 --- a/devel/kf5-knotifications/distinfo +++ b/devel/kf5-knotifications/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025557 -SHA256 (KDE/frameworks/5.110.0/knotifications-5.110.0.tar.xz) = f5195f2d6de921e4529239f58411c0d03d7bb930495edeee58f8b5b4cd68a37e -SIZE (KDE/frameworks/5.110.0/knotifications-5.110.0.tar.xz) = 2372852 +TIMESTAMP = 1697220935 +SHA256 (KDE/frameworks/5.111.0/knotifications-5.111.0.tar.xz) = 0d39a534d966dc2ab92ee1e384b71643dadc17febe77482ca8d9daf840f3ad6c +SIZE (KDE/frameworks/5.111.0/knotifications-5.111.0.tar.xz) = 2373008 diff --git a/devel/kf5-knotifyconfig/Makefile b/devel/kf5-knotifyconfig/Makefile index b5f3d2a65f02..30c267b294a0 100644 --- a/devel/kf5-knotifyconfig/Makefile +++ b/devel/kf5-knotifyconfig/Makefile @@ -1,25 +1,24 @@ PORTNAME= knotifyconfig DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 configuration system for KNotify LIB_DEPENDS= libcanberra.so:audio/libcanberra USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kio \ service solid widgetsaddons windowsystem \ ecm:build USE_QT= concurrent core dbus gui network widgets \ buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= AUDIO OPTIONS_DEFAULT= AUDIO AUDIO_DESC= Audio notifications/text-to-speech support AUDIO_USE= QT=speech .include diff --git a/devel/kf5-knotifyconfig/distinfo b/devel/kf5-knotifyconfig/distinfo index 549be93be315..4d54d92e79fe 100644 --- a/devel/kf5-knotifyconfig/distinfo +++ b/devel/kf5-knotifyconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025563 -SHA256 (KDE/frameworks/5.110.0/knotifyconfig-5.110.0.tar.xz) = 971f6b08715d383514bdf7e5bbd484f17ab4f48fb28d5533ba98a2ad00cca198 -SIZE (KDE/frameworks/5.110.0/knotifyconfig-5.110.0.tar.xz) = 2402024 +TIMESTAMP = 1697220936 +SHA256 (KDE/frameworks/5.111.0/knotifyconfig-5.111.0.tar.xz) = 949b31d6943bee1ed7c0c29d202498b9bc5dd21b9da3c95ddfb54454a58a445c +SIZE (KDE/frameworks/5.111.0/knotifyconfig-5.111.0.tar.xz) = 2402068 diff --git a/devel/kf5-kpackage/Makefile b/devel/kf5-kpackage/Makefile index cb2314f98e8a..01d74dbfd397 100644 --- a/devel/kf5-kpackage/Makefile +++ b/devel/kf5-kpackage/Makefile @@ -1,15 +1,14 @@ PORTNAME= kpackage DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to load and install packages USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive coreaddons i18n \ doctools:build ecm:build USE_QT= core dbus \ buildtools:build qmake:build .include diff --git a/devel/kf5-kpackage/distinfo b/devel/kf5-kpackage/distinfo index a3c1cc2258ed..a0c99226cf2f 100644 --- a/devel/kf5-kpackage/distinfo +++ b/devel/kf5-kpackage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025568 -SHA256 (KDE/frameworks/5.110.0/kpackage-5.110.0.tar.xz) = 2d26444dcd801616b72001c7995741dd46bdb9b622feb14c4b50fd7e4f2da8c9 -SIZE (KDE/frameworks/5.110.0/kpackage-5.110.0.tar.xz) = 187512 +TIMESTAMP = 1697220937 +SHA256 (KDE/frameworks/5.111.0/kpackage-5.111.0.tar.xz) = 573311cd9f73b84491f1da7a410d3f993100842314c3b4fc2d7cc994d722cfdd +SIZE (KDE/frameworks/5.111.0/kpackage-5.111.0.tar.xz) = 187472 diff --git a/devel/kf5-kparts/Makefile b/devel/kf5-kparts/Makefile index 74278da6f7b0..726177da4062 100644 --- a/devel/kf5-kparts/Makefile +++ b/devel/kf5-kparts/Makefile @@ -1,18 +1,17 @@ PORTNAME= kparts DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 document centric plugin system USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio service \ solid textwidgets widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/kf5-kparts/distinfo b/devel/kf5-kparts/distinfo index 3cb8eb5a2f05..214157514f7e 100644 --- a/devel/kf5-kparts/distinfo +++ b/devel/kf5-kparts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025574 -SHA256 (KDE/frameworks/5.110.0/kparts-5.110.0.tar.xz) = 23a381ee316730ee5fcc7caee9d71b0f0d8cd09256bd6ed1f67bbd37c5465b8d -SIZE (KDE/frameworks/5.110.0/kparts-5.110.0.tar.xz) = 2473804 +TIMESTAMP = 1697220938 +SHA256 (KDE/frameworks/5.111.0/kparts-5.111.0.tar.xz) = 0137d33cbc5f16f76ffa9a07b0144e707370c5f321404f0deba27aa59c3060ee +SIZE (KDE/frameworks/5.111.0/kparts-5.111.0.tar.xz) = 2473580 diff --git a/devel/kf5-kpeople/Makefile b/devel/kf5-kpeople/Makefile index 5feda89f4f92..cb2fff9dbe02 100644 --- a/devel/kf5-kpeople/Makefile +++ b/devel/kf5-kpeople/Makefile @@ -1,15 +1,14 @@ PORTNAME= kpeople DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing access to contacts USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons i18n itemviews service widgetsaddons \ ecm:build USE_QT= core dbus declarative gui network sql widgets \ buildtools:build qmake:build .include diff --git a/devel/kf5-kpeople/distinfo b/devel/kf5-kpeople/distinfo index 2803bf3b0667..bf30d471622c 100644 --- a/devel/kf5-kpeople/distinfo +++ b/devel/kf5-kpeople/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025580 -SHA256 (KDE/frameworks/5.110.0/kpeople-5.110.0.tar.xz) = f700e48269fc5dfb5f56e84556f5484d5b0b0f589d45a769831800cea463b981 -SIZE (KDE/frameworks/5.110.0/kpeople-5.110.0.tar.xz) = 63280 +TIMESTAMP = 1697220939 +SHA256 (KDE/frameworks/5.111.0/kpeople-5.111.0.tar.xz) = 29978f730bbe9b79e0956037219118ab53c83912804ef32acf01fe35b3175e1f +SIZE (KDE/frameworks/5.111.0/kpeople-5.111.0.tar.xz) = 63284 diff --git a/devel/kf5-kpty/distinfo b/devel/kf5-kpty/distinfo index a5f826814594..c5b26ad615b8 100644 --- a/devel/kf5-kpty/distinfo +++ b/devel/kf5-kpty/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025585 -SHA256 (KDE/frameworks/5.110.0/kpty-5.110.0.tar.xz) = fa8ab4e0329a60e257cdff5bad5f3700e055d783e9f3b436f08afe14bfe6a9b3 -SIZE (KDE/frameworks/5.110.0/kpty-5.110.0.tar.xz) = 2416804 +TIMESTAMP = 1697220940 +SHA256 (KDE/frameworks/5.111.0/kpty-5.111.0.tar.xz) = 78682fca44e01b30ab9c2b31ac61c602b83ae818544e97923a0a1cca58bf1c13 +SIZE (KDE/frameworks/5.111.0/kpty-5.111.0.tar.xz) = 2417168 diff --git a/devel/kf5-kservice/Makefile b/devel/kf5-kservice/Makefile index fd261808ffc1..31b71e51a734 100644 --- a/devel/kf5-kservice/Makefile +++ b/devel/kf5-kservice/Makefile @@ -1,18 +1,17 @@ PORTNAME= kservice DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced plugin and service introspection USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons i18n \ doctools:build ecm:build USE_QT= core dbus xml \ buildtools:build qmake:build # Make the applications.menu file not conflict with KDE4. CMAKE_ARGS= -DAPPLICATIONS_MENU_NAME:STRING="kf5-applications.menu" .include diff --git a/devel/kf5-kservice/distinfo b/devel/kf5-kservice/distinfo index d10f20d22b61..702d373bb232 100644 --- a/devel/kf5-kservice/distinfo +++ b/devel/kf5-kservice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025588 -SHA256 (KDE/frameworks/5.110.0/kservice-5.110.0.tar.xz) = efc1d6e3338812b2170a7a9319da1006a1709e295c23fedb28bcb26ad2363666 -SIZE (KDE/frameworks/5.110.0/kservice-5.110.0.tar.xz) = 2539228 +TIMESTAMP = 1697220941 +SHA256 (KDE/frameworks/5.111.0/kservice-5.111.0.tar.xz) = 6cd0b7eabec1f8deff92cf2436e35eb0b59d543fc6f70ba6d392a41ec4ad2e12 +SIZE (KDE/frameworks/5.111.0/kservice-5.111.0.tar.xz) = 2538960 diff --git a/devel/kf5-ktexteditor/distinfo b/devel/kf5-ktexteditor/distinfo index 0d348a2bc27e..dbe60d41238d 100644 --- a/devel/kf5-ktexteditor/distinfo +++ b/devel/kf5-ktexteditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025590 -SHA256 (KDE/frameworks/5.110.0/ktexteditor-5.110.0.tar.xz) = 8abee8fb575dc9d99580eac5b21370ccb1bdd2ef9504b5db44b98e3a43e19f47 -SIZE (KDE/frameworks/5.110.0/ktexteditor-5.110.0.tar.xz) = 2789296 +TIMESTAMP = 1697220942 +SHA256 (KDE/frameworks/5.111.0/ktexteditor-5.111.0.tar.xz) = 28443a71d07f80c886dac682a3d5cece283c9f3db364403e9e0c7d6bb30bc329 +SIZE (KDE/frameworks/5.111.0/ktexteditor-5.111.0.tar.xz) = 2789588 diff --git a/devel/kf5-kunitconversion/Makefile b/devel/kf5-kunitconversion/Makefile index 1e993d187798..eb4702e1f2aa 100644 --- a/devel/kf5-kunitconversion/Makefile +++ b/devel/kf5-kunitconversion/Makefile @@ -1,15 +1,14 @@ PORTNAME= kunitconversion DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for unit conversion USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= i18n \ ecm:build USE_QT= core network \ buildtools:build qmake:build .include diff --git a/devel/kf5-kunitconversion/distinfo b/devel/kf5-kunitconversion/distinfo index 29b3e3537654..dfc83ac941f7 100644 --- a/devel/kf5-kunitconversion/distinfo +++ b/devel/kf5-kunitconversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025593 -SHA256 (KDE/frameworks/5.110.0/kunitconversion-5.110.0.tar.xz) = aafd3fbbf77a3ae1a9600c1b8199531c15ccf1c07e80fa317a429e12fe037c20 -SIZE (KDE/frameworks/5.110.0/kunitconversion-5.110.0.tar.xz) = 931736 +TIMESTAMP = 1697220943 +SHA256 (KDE/frameworks/5.111.0/kunitconversion-5.111.0.tar.xz) = 054062cc779ae51e78776a4d748ffffc9e3d3dc2d7bb300342319c714ec02321 +SIZE (KDE/frameworks/5.111.0/kunitconversion-5.111.0.tar.xz) = 931636 diff --git a/devel/kf5-solid/Makefile b/devel/kf5-solid/Makefile index 0276de1be40f..82191d4ff6ec 100644 --- a/devel/kf5-solid/Makefile +++ b/devel/kf5-solid/Makefile @@ -1,25 +1,24 @@ PORTNAME= solid DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 hardware integration and detection RUN_DEPENDS= bsdisks:sysutils/bsdisks USES= bison cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm:build USE_QT= core dbus declarative gui linguisttools \ network xml \ buildtools:build qmake:build testlib:build OPTIONS_DEFINE= IMOBILE IMOBILE_DESC= Apple iPhone/iPod Touch support IMOBILE_LIB_DEPENDS= libimobiledevice-1.0.so:comms/libimobiledevice \ libplist-2.0.so:devel/libplist IMOBILE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IMobileDevice \ CMAKE_DISABLE_FIND_PACKAGE_PList .include diff --git a/devel/kf5-solid/distinfo b/devel/kf5-solid/distinfo index 8ee84a61cf71..ada68e2ab355 100644 --- a/devel/kf5-solid/distinfo +++ b/devel/kf5-solid/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025599 -SHA256 (KDE/frameworks/5.110.0/solid-5.110.0.tar.xz) = 6db3e60bc1d579bcce2d3eeb38f8edba5bb7d549e17116449cdd1ecd2966c4cc -SIZE (KDE/frameworks/5.110.0/solid-5.110.0.tar.xz) = 306088 +TIMESTAMP = 1697220944 +SHA256 (KDE/frameworks/5.111.0/solid-5.111.0.tar.xz) = b97d2b8eaeff0400f6fe18a6824751f32cd0604b9f2593b365a3764c851819f3 +SIZE (KDE/frameworks/5.111.0/solid-5.111.0.tar.xz) = 306228 diff --git a/devel/kf5-threadweaver/distinfo b/devel/kf5-threadweaver/distinfo index cad6d1466fdd..10f5c5e31344 100644 --- a/devel/kf5-threadweaver/distinfo +++ b/devel/kf5-threadweaver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025604 -SHA256 (KDE/frameworks/5.110.0/threadweaver-5.110.0.tar.xz) = a0ea5936aafa0226648b89d8c12c25557ae42c975ad08fefd6cb67f04f25be20 -SIZE (KDE/frameworks/5.110.0/threadweaver-5.110.0.tar.xz) = 1413132 +TIMESTAMP = 1697220945 +SHA256 (KDE/frameworks/5.111.0/threadweaver-5.111.0.tar.xz) = 8b1b6ceb38d3f3b32cead7ff8883dab3521cdca0ece8cc8e10ad6d59b46db766 +SIZE (KDE/frameworks/5.111.0/threadweaver-5.111.0.tar.xz) = 1413092 diff --git a/dns/kf5-kdnssd/distinfo b/dns/kf5-kdnssd/distinfo index 7ca300c2f86d..c25897c7db2d 100644 --- a/dns/kf5-kdnssd/distinfo +++ b/dns/kf5-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025609 -SHA256 (KDE/frameworks/5.110.0/kdnssd-5.110.0.tar.xz) = 8548054b3d45e6871997a5c77092cd53e44319554e9146a244508953ec83aa76 -SIZE (KDE/frameworks/5.110.0/kdnssd-5.110.0.tar.xz) = 2280888 +TIMESTAMP = 1697220946 +SHA256 (KDE/frameworks/5.111.0/kdnssd-5.111.0.tar.xz) = 00eabea81224983f941bb378f633e4563be7a8955b877bd198165c84def94d6b +SIZE (KDE/frameworks/5.111.0/kdnssd-5.111.0.tar.xz) = 2280980 diff --git a/graphics/kf5-kimageformats/Makefile b/graphics/kf5-kimageformats/Makefile index 8e062f603460..087f960c7cf9 100644 --- a/graphics/kf5-kimageformats/Makefile +++ b/graphics/kf5-kimageformats/Makefile @@ -1,42 +1,41 @@ PORTNAME= kimageformats DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing support for additional image formats LIB_DEPENDS= libImath.so:math/Imath USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive \ ecm:build USE_QT= core gui printsupport widgets \ buildtools:build qmake:build CFLAGS+= -I${LOCALBASE}/include/Imath OPTIONS_DEFINE= AVIF JXL HEIF OPENEXR RAW OPTIONS_DEFAULT= AVIF JXL HEIF OPENEXR RAW OPTIONS_SUB= yes AVIF_LIB_DEPENDS= libavif.so:graphics/libavif AVIF_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libavif JXL_LIB_DEPENDS= libjxl.so:graphics/libjxl JXL_CMAKE_BOOL= KIMAGEFORMATS_JXL HEIF_LIB_DEPENDS= libheif.so:graphics/libheif HEIF_CMAKE_BOOL= KIMAGEFORMATS_HEIF OPENEXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR RAW_LIB_DEPENDS= libraw.so:graphics/libraw RAW_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libraw post-patch: ${REINPLACE_CMD} s,Imf::Int64,uint64_t, \ ${WRKSRC}/src/imageformats/exr.cpp .include diff --git a/graphics/kf5-kimageformats/distinfo b/graphics/kf5-kimageformats/distinfo index b9a858c2f4ff..ebb355f47a7a 100644 --- a/graphics/kf5-kimageformats/distinfo +++ b/graphics/kf5-kimageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025615 -SHA256 (KDE/frameworks/5.110.0/kimageformats-5.110.0.tar.xz) = 8d69fbd8a8fb6212bc35ee5cba45c1b5b6b3e0e864010bf235a2bd2998d07347 -SIZE (KDE/frameworks/5.110.0/kimageformats-5.110.0.tar.xz) = 15652452 +TIMESTAMP = 1697220949 +SHA256 (KDE/frameworks/5.111.0/kimageformats-5.111.0.tar.xz) = a27a96588f8841b424e71528b6ba35e261b19f85868ef524361313cc5e4ba69d +SIZE (KDE/frameworks/5.111.0/kimageformats-5.111.0.tar.xz) = 15650164 diff --git a/graphics/kf5-kplotting/distinfo b/graphics/kf5-kplotting/distinfo index b836fb742aa3..144711ff644c 100644 --- a/graphics/kf5-kplotting/distinfo +++ b/graphics/kf5-kplotting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025619 -SHA256 (KDE/frameworks/5.110.0/kplotting-5.110.0.tar.xz) = 7335888e62b3fae10b10d654e07d006cd0aab0432cb4a6313224f40766f27fb9 -SIZE (KDE/frameworks/5.110.0/kplotting-5.110.0.tar.xz) = 33736 +TIMESTAMP = 1697220950 +SHA256 (KDE/frameworks/5.111.0/kplotting-5.111.0.tar.xz) = 93254a437a698ca98c65eebb9edca5de75345d10afba0841616a81c33eef449e +SIZE (KDE/frameworks/5.111.0/kplotting-5.111.0.tar.xz) = 33760 diff --git a/graphics/kf5-kquickcharts/distinfo b/graphics/kf5-kquickcharts/distinfo index 65b009cc672e..3e59354d58e8 100644 --- a/graphics/kf5-kquickcharts/distinfo +++ b/graphics/kf5-kquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025623 -SHA256 (KDE/frameworks/5.110.0/kquickcharts-5.110.0.tar.xz) = bbc897c701dc6d356a316d17e4f71cd90bc62dffadd5ea8ee5a68a0eabb61d69 -SIZE (KDE/frameworks/5.110.0/kquickcharts-5.110.0.tar.xz) = 113408 +TIMESTAMP = 1697220951 +SHA256 (KDE/frameworks/5.111.0/kquickcharts-5.111.0.tar.xz) = 5be25af0c5a4e4c3d2319be761a194f47ce558129f41406fc5c1eb64292a5727 +SIZE (KDE/frameworks/5.111.0/kquickcharts-5.111.0.tar.xz) = 113372 diff --git a/graphics/kf5-prison/Makefile b/graphics/kf5-prison/Makefile index 9c3ca8334d45..318a481f68fc 100644 --- a/graphics/kf5-prison/Makefile +++ b/graphics/kf5-prison/Makefile @@ -1,18 +1,17 @@ PORTNAME= prison DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= API to produce barcodes LIB_DEPENDS= libdmtx.so:graphics/libdmtx \ libqrencode.so:graphics/libqrencode \ libZXing.so:textproc/zxing-cpp USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm:build USE_QT= core declarative gui multimedia network \ buildtools:build qmake:build testlib:build widgets:build .include diff --git a/graphics/kf5-prison/distinfo b/graphics/kf5-prison/distinfo index aa03464defaf..9f648d4e1db3 100644 --- a/graphics/kf5-prison/distinfo +++ b/graphics/kf5-prison/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025629 -SHA256 (KDE/frameworks/5.110.0/prison-5.110.0.tar.xz) = 677170740a5cd8c80917b301f3e874fef7e8ca1aad1507d558f6e087c21f2a05 -SIZE (KDE/frameworks/5.110.0/prison-5.110.0.tar.xz) = 55248 +TIMESTAMP = 1697220952 +SHA256 (KDE/frameworks/5.111.0/prison-5.111.0.tar.xz) = ec25f821d2e641960d477c88bdb99b5147ae5f808620abfc6c28f946ffb6deff +SIZE (KDE/frameworks/5.111.0/prison-5.111.0.tar.xz) = 55276 diff --git a/lang/kf5-kross/distinfo b/lang/kf5-kross/distinfo index 50eea736151c..13af46d8ab89 100644 --- a/lang/kf5-kross/distinfo +++ b/lang/kf5-kross/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025637 -SHA256 (KDE/frameworks/5.110.0/kross-5.110.0.tar.xz) = a517e17b2cb87acb4024e1d00711b2f0e1a1040dae72a08ded65b75573d73f99 -SIZE (KDE/frameworks/5.110.0/kross-5.110.0.tar.xz) = 2440032 +TIMESTAMP = 1697220953 +SHA256 (KDE/frameworks/5.111.0/kross-5.111.0.tar.xz) = 2d35882a0181cce02e178f02067a7d350aab009baf3da41e4db2af236f74b640 +SIZE (KDE/frameworks/5.111.0/kross-5.111.0.tar.xz) = 2440020 diff --git a/misc/kf5-purpose/Makefile b/misc/kf5-purpose/Makefile index 3fe0ae6961b8..87517ba4ae08 100644 --- a/misc/kf5-purpose/Makefile +++ b/misc/kf5-purpose/Makefile @@ -1,24 +1,23 @@ PORTNAME= purpose DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= misc kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= Offers available actions for a specific purpose LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration RUN_DEPENDS= accounts-qml-module>=0:sysutils/accounts-qml-module USES= cmake compiler:c++11-lang gettext gnome \ kde:5 pkgconfig qt:5 tar:xz xorg USE_GNOME= intltool USE_KDE= config completion coreaddons i18n kio \ kirigami2 notifications jobwidgets prison service solid \ widgetsaddons windowsystem \ ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 .include diff --git a/misc/kf5-purpose/distinfo b/misc/kf5-purpose/distinfo index 725da3a71341..a460c2034598 100644 --- a/misc/kf5-purpose/distinfo +++ b/misc/kf5-purpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025644 -SHA256 (KDE/frameworks/5.110.0/purpose-5.110.0.tar.xz) = 4ce763bec127bbdd1cb2526a4d615ab6f420ab2c2a700cb09571b0220fc4865a -SIZE (KDE/frameworks/5.110.0/purpose-5.110.0.tar.xz) = 180760 +TIMESTAMP = 1697220954 +SHA256 (KDE/frameworks/5.111.0/purpose-5.111.0.tar.xz) = 311d1857dd1d548a7e11d13515e942484374bf3f23036aee65625ef33163efa9 +SIZE (KDE/frameworks/5.111.0/purpose-5.111.0.tar.xz) = 180796 diff --git a/multimedia/kf5-kmediaplayer/distinfo b/multimedia/kf5-kmediaplayer/distinfo index 5fed677dc76e..5e5c1d0a4310 100644 --- a/multimedia/kf5-kmediaplayer/distinfo +++ b/multimedia/kf5-kmediaplayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025652 -SHA256 (KDE/frameworks/5.110.0/kmediaplayer-5.110.0.tar.xz) = e30bb4b2a91bcdb331bb78b3744b8e5cd8de6af8363cae618622aeb8f41b10ca -SIZE (KDE/frameworks/5.110.0/kmediaplayer-5.110.0.tar.xz) = 9956 +TIMESTAMP = 1697220955 +SHA256 (KDE/frameworks/5.111.0/kmediaplayer-5.111.0.tar.xz) = ea47adfa69694a9853c60e03537dde15440d18a22ca0615555822951242a196a +SIZE (KDE/frameworks/5.111.0/kmediaplayer-5.111.0.tar.xz) = 9952 diff --git a/net/kf5-kcalendarcore/distinfo b/net/kf5-kcalendarcore/distinfo index 5f6bdf8c6b9e..aacd7f2aa83a 100644 --- a/net/kf5-kcalendarcore/distinfo +++ b/net/kf5-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025660 -SHA256 (KDE/frameworks/5.110.0/kcalendarcore-5.110.0.tar.xz) = a250fb1ba0091352d8850a06ebb2032097a952970b1aafd8261ec745c90beba7 -SIZE (KDE/frameworks/5.110.0/kcalendarcore-5.110.0.tar.xz) = 269040 +TIMESTAMP = 1697220956 +SHA256 (KDE/frameworks/5.111.0/kcalendarcore-5.111.0.tar.xz) = 466cc27087421fcb171f599ecd291e6fca41f7aaa2b4d593d0bde3dc8b30aaa1 +SIZE (KDE/frameworks/5.111.0/kcalendarcore-5.111.0.tar.xz) = 269388 diff --git a/net/kf5-kcontacts/distinfo b/net/kf5-kcontacts/distinfo index 91242ecce497..8b7973a016a5 100644 --- a/net/kf5-kcontacts/distinfo +++ b/net/kf5-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025666 -SHA256 (KDE/frameworks/5.110.0/kcontacts-5.110.0.tar.xz) = 840c0322610f11dfd8ba7b5c91495a8df8dd3955c66ddc3c5c33151da9452b3e -SIZE (KDE/frameworks/5.110.0/kcontacts-5.110.0.tar.xz) = 213944 +TIMESTAMP = 1697220957 +SHA256 (KDE/frameworks/5.111.0/kcontacts-5.111.0.tar.xz) = 49a3970b35d6c89db85677ee5cb29a5bc5208241c9b65984474c5973c3fe7e68 +SIZE (KDE/frameworks/5.111.0/kcontacts-5.111.0.tar.xz) = 213924 diff --git a/net/kf5-kdav/Makefile b/net/kf5-kdav/Makefile index a975718ed8e7..df46ebf854ac 100644 --- a/net/kf5-kdav/Makefile +++ b/net/kf5-kdav/Makefile @@ -1,19 +1,18 @@ PORTNAME= kdav DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= DAV protocol implementation with KJobs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kio service \ ecm:build USE_QT= concurrent core dbus gui network xml \ buildtools:build qmake:build testlib:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr .include diff --git a/net/kf5-kdav/distinfo b/net/kf5-kdav/distinfo index b8ff71cda5eb..0b9ee97b1d17 100644 --- a/net/kf5-kdav/distinfo +++ b/net/kf5-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025672 -SHA256 (KDE/frameworks/5.110.0/kdav-5.110.0.tar.xz) = ca748facfcf92a993da5c01ebdb3b7db0096fb3cb071c2cf0f7387e8128ee563 -SIZE (KDE/frameworks/5.110.0/kdav-5.110.0.tar.xz) = 66184 +TIMESTAMP = 1697220958 +SHA256 (KDE/frameworks/5.111.0/kdav-5.111.0.tar.xz) = 88f31fa60a0332f059093a2f8d5e772d6d64bdc665e9b3d830a63ddf4aab145a +SIZE (KDE/frameworks/5.111.0/kdav-5.111.0.tar.xz) = 66172 diff --git a/net/kf5-kholidays/Makefile b/net/kf5-kholidays/Makefile index 53a34d4a33c0..958e5b840de5 100644 --- a/net/kf5-kholidays/Makefile +++ b/net/kf5-kholidays/Makefile @@ -1,18 +1,17 @@ PORTNAME= kholidays DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for calendar holidays LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= init \ ecm:build USE_QT= core declarative network \ buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/net/kf5-kholidays/distinfo b/net/kf5-kholidays/distinfo index d93d44ce713d..0753188f4e12 100644 --- a/net/kf5-kholidays/distinfo +++ b/net/kf5-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025676 -SHA256 (KDE/frameworks/5.110.0/kholidays-5.110.0.tar.xz) = 4c56346b5047c722e43a5449e1fef7dad2a68371b71894fcc37c2416ab54337e -SIZE (KDE/frameworks/5.110.0/kholidays-5.110.0.tar.xz) = 255492 +TIMESTAMP = 1697220959 +SHA256 (KDE/frameworks/5.111.0/kholidays-5.111.0.tar.xz) = 570cb98429334fa37b876cf9c1f325bd604aa90b1c8d505a39d5cca7af191277 +SIZE (KDE/frameworks/5.111.0/kholidays-5.111.0.tar.xz) = 255548 diff --git a/net/kf5-kxmlrpcclient/Makefile b/net/kf5-kxmlrpcclient/Makefile index d29f63d2d8ff..8eb6d5f32441 100644 --- a/net/kf5-kxmlrpcclient/Makefile +++ b/net/kf5-kxmlrpcclient/Makefile @@ -1,15 +1,14 @@ PORTNAME= kxmlrpcclient DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 interaction with XMLRPC services USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kio service \ doctools:build ecm:build USE_QT= concurrent core dbus network xml \ buildtools:build qmake:build .include diff --git a/net/kf5-kxmlrpcclient/distinfo b/net/kf5-kxmlrpcclient/distinfo index f0991d26075d..c2db137819e1 100644 --- a/net/kf5-kxmlrpcclient/distinfo +++ b/net/kf5-kxmlrpcclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025680 -SHA256 (KDE/frameworks/5.110.0/kxmlrpcclient-5.110.0.tar.xz) = 5ddf1227f49e9be2f0e248858ca336baa0e3f0676f398449e18b4821ab4aed3b -SIZE (KDE/frameworks/5.110.0/kxmlrpcclient-5.110.0.tar.xz) = 32224 +TIMESTAMP = 1697220960 +SHA256 (KDE/frameworks/5.111.0/kxmlrpcclient-5.111.0.tar.xz) = 784b53395bbade12679482a69eda82ab269622683ab9f75ede9168abc56d2fe9 +SIZE (KDE/frameworks/5.111.0/kxmlrpcclient-5.111.0.tar.xz) = 32224 diff --git a/net/kf5-syndication/distinfo b/net/kf5-syndication/distinfo index ffc97770732e..df9089b4d731 100644 --- a/net/kf5-syndication/distinfo +++ b/net/kf5-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025684 -SHA256 (KDE/frameworks/5.110.0/syndication-5.110.0.tar.xz) = 4da373fab1f75892d94d066d9cbed06e2d7ad48a39dfb7b26d2e6d3759014d37 -SIZE (KDE/frameworks/5.110.0/syndication-5.110.0.tar.xz) = 510492 +TIMESTAMP = 1697220961 +SHA256 (KDE/frameworks/5.111.0/syndication-5.111.0.tar.xz) = 42876d7f36c7acf5e120282afd83719753d3f9f0eb1d002887120e3a52974481 +SIZE (KDE/frameworks/5.111.0/syndication-5.111.0.tar.xz) = 510540 diff --git a/security/kf5-kdesu/Makefile b/security/kf5-kdesu/Makefile index e3b43054a21c..d85704214a54 100644 --- a/security/kf5-kdesu/Makefile +++ b/security/kf5-kdesu/Makefile @@ -1,16 +1,15 @@ PORTNAME= kdesu DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration with su for elevated privileges USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons i18n pty service \ ecm:build USE_QT= core \ buildtools:build qmake:build USE_XORG= ice sm x11 xext .include diff --git a/security/kf5-kdesu/distinfo b/security/kf5-kdesu/distinfo index c6b1c8b878f5..ec828a3c8cde 100644 --- a/security/kf5-kdesu/distinfo +++ b/security/kf5-kdesu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025686 -SHA256 (KDE/frameworks/5.110.0/kdesu-5.110.0.tar.xz) = 29671f196e3881307d44d12654b2f86ec6af31f053f062065b64077b29998552 -SIZE (KDE/frameworks/5.110.0/kdesu-5.110.0.tar.xz) = 56808 +TIMESTAMP = 1697220961 +SHA256 (KDE/frameworks/5.111.0/kdesu-5.111.0.tar.xz) = c62f8681ceda26600fa7aa8e444cfeeddaff13b24210d28a2248b9c90acba178 +SIZE (KDE/frameworks/5.111.0/kdesu-5.111.0.tar.xz) = 56796 diff --git a/sysutils/kf5-baloo/distinfo b/sysutils/kf5-baloo/distinfo index df073ab73935..f3fe42197623 100644 --- a/sysutils/kf5-baloo/distinfo +++ b/sysutils/kf5-baloo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025689 -SHA256 (KDE/frameworks/5.110.0/baloo-5.110.0.tar.xz) = 36a85d71cacc7384531e84f7f363cbf4ad0c41637ca1678f9a35dc7faeb7e22d -SIZE (KDE/frameworks/5.110.0/baloo-5.110.0.tar.xz) = 310248 +TIMESTAMP = 1697220962 +SHA256 (KDE/frameworks/5.111.0/baloo-5.111.0.tar.xz) = 4f8cc972f7760cb3b95ec7358b82555ef96e5fbd12b646250a98cc3685e0f811 +SIZE (KDE/frameworks/5.111.0/baloo-5.111.0.tar.xz) = 312920 diff --git a/sysutils/kf5-baloo/pkg-plist b/sysutils/kf5-baloo/pkg-plist index 2b3e68474529..8b370c1302d2 100644 --- a/sysutils/kf5-baloo/pkg-plist +++ b/sysutils/kf5-baloo/pkg-plist @@ -1,501 +1,506 @@ 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%% lib/libexec/baloo_file lib/libexec/baloo_file_extractor %%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 lib/systemd/user/kde-baloo.service libdata/pkgconfig/Baloo.pc 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/baloo_file5.mo share/locale/ar/LC_MESSAGES/baloo_file_extractor5.mo 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/az/LC_MESSAGES/baloo_file5.mo share/locale/az/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/bg/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/ca/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/ca@valencia/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/cs/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/de/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/en_GB/LC_MESSAGES/baloo_file_extractor5.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/eo/LC_MESSAGES/baloo_file5.mo share/locale/eo/LC_MESSAGES/baloo_file_extractor5.mo +share/locale/eo/LC_MESSAGES/balooctl5.mo +share/locale/eo/LC_MESSAGES/baloodb5.mo +share/locale/eo/LC_MESSAGES/balooengine5.mo +share/locale/eo/LC_MESSAGES/baloosearch5.mo +share/locale/eo/LC_MESSAGES/balooshow5.mo share/locale/eo/LC_MESSAGES/kio5_baloosearch.mo share/locale/eo/LC_MESSAGES/kio5_tags.mo share/locale/eo/LC_MESSAGES/kio5_timeline.mo share/locale/es/LC_MESSAGES/baloo_file5.mo share/locale/es/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/eu/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/fi/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/fr/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/gl/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/ia/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/it/LC_MESSAGES/baloo_file_extractor5.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/ka/LC_MESSAGES/baloo_file5.mo share/locale/ka/LC_MESSAGES/baloo_file_extractor5.mo share/locale/ka/LC_MESSAGES/balooctl5.mo share/locale/ka/LC_MESSAGES/baloodb5.mo share/locale/ka/LC_MESSAGES/balooengine5.mo share/locale/ka/LC_MESSAGES/baloosearch5.mo share/locale/ka/LC_MESSAGES/balooshow5.mo share/locale/ka/LC_MESSAGES/kio5_baloosearch.mo share/locale/ka/LC_MESSAGES/kio5_tags.mo share/locale/ka/LC_MESSAGES/kio5_timeline.mo share/locale/ko/LC_MESSAGES/baloo_file5.mo share/locale/ko/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/lt/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/nl/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/nn/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/pl/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/pt/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/pt_BR/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/ru/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/sk/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/sl/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/sv/LC_MESSAGES/baloo_file_extractor5.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/balooctl5.mo share/locale/ta/LC_MESSAGES/baloodb5.mo share/locale/ta/LC_MESSAGES/balooengine5.mo share/locale/ta/LC_MESSAGES/baloosearch5.mo share/locale/ta/LC_MESSAGES/balooshow5.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/baloo_file5.mo share/locale/tr/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/uk/LC_MESSAGES/baloo_file_extractor5.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/baloo_file5.mo share/locale/zh_CN/LC_MESSAGES/baloo_file_extractor5.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 0d4b64adaa03..b9505def78ea 100644 --- a/sysutils/kf5-kwallet/distinfo +++ b/sysutils/kf5-kwallet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025691 -SHA256 (KDE/frameworks/5.110.0/kwallet-5.110.0.tar.xz) = 1f4fbbfcc157ca9cd59e85d358a839a49a25f4d5d7f6e2fde047efbf19f2e555 -SIZE (KDE/frameworks/5.110.0/kwallet-5.110.0.tar.xz) = 349616 +TIMESTAMP = 1697220963 +SHA256 (KDE/frameworks/5.111.0/kwallet-5.111.0.tar.xz) = 3169c65b8cbbcebdaa339bbab1a5d8ed4257043630670584a9edd4146fdd97bf +SIZE (KDE/frameworks/5.111.0/kwallet-5.111.0.tar.xz) = 349692 diff --git a/textproc/kf5-kcodecs/distinfo b/textproc/kf5-kcodecs/distinfo index 93f0007a3247..a74e8414daee 100644 --- a/textproc/kf5-kcodecs/distinfo +++ b/textproc/kf5-kcodecs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025692 -SHA256 (KDE/frameworks/5.110.0/kcodecs-5.110.0.tar.xz) = 3b6c8f315fb23479c15fc369bb5f4e10c34a607a5bb6f4ba16c7b6f026c225c4 -SIZE (KDE/frameworks/5.110.0/kcodecs-5.110.0.tar.xz) = 2506168 +TIMESTAMP = 1697220964 +SHA256 (KDE/frameworks/5.111.0/kcodecs-5.111.0.tar.xz) = 869345ce9192a7d8346dcc5e55bec67493776e8a3d2139668ad088548526a6b4 +SIZE (KDE/frameworks/5.111.0/kcodecs-5.111.0.tar.xz) = 2505992 diff --git a/textproc/kf5-sonnet/distinfo b/textproc/kf5-sonnet/distinfo index c8ae630b6c98..1f1165089dd3 100644 --- a/textproc/kf5-sonnet/distinfo +++ b/textproc/kf5-sonnet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025696 -SHA256 (KDE/frameworks/5.110.0/sonnet-5.110.0.tar.xz) = 1114a1fe84f390fbadd03cf434c1f741b75a4ffe18014633f903f8e0fd30139b -SIZE (KDE/frameworks/5.110.0/sonnet-5.110.0.tar.xz) = 2438240 +TIMESTAMP = 1697220965 +SHA256 (KDE/frameworks/5.111.0/sonnet-5.111.0.tar.xz) = 70ec214af09105a07dd418f10de5ff6590b13442ee170914ad01a9da32c06a35 +SIZE (KDE/frameworks/5.111.0/sonnet-5.111.0.tar.xz) = 2438056 diff --git a/textproc/kf5-syntax-highlighting/distinfo b/textproc/kf5-syntax-highlighting/distinfo index 5fbd900ef31c..f2f42ea71707 100644 --- a/textproc/kf5-syntax-highlighting/distinfo +++ b/textproc/kf5-syntax-highlighting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025699 -SHA256 (KDE/frameworks/5.110.0/syntax-highlighting-5.110.0.tar.xz) = 85277cab858cd04f3b4861daf5d885706e0e9da3e081e098849d7806ac7a753d -SIZE (KDE/frameworks/5.110.0/syntax-highlighting-5.110.0.tar.xz) = 3430736 +TIMESTAMP = 1697220966 +SHA256 (KDE/frameworks/5.111.0/syntax-highlighting-5.111.0.tar.xz) = c0a66ad2bf892792cf1f37ccc8df2607e2ad6753ae7e4023c7213c40f0425867 +SIZE (KDE/frameworks/5.111.0/syntax-highlighting-5.111.0.tar.xz) = 3432472 diff --git a/www/kf5-kdewebkit/distinfo b/www/kf5-kdewebkit/distinfo index fdb192e22190..5eeee24d2251 100644 --- a/www/kf5-kdewebkit/distinfo +++ b/www/kf5-kdewebkit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025703 -SHA256 (KDE/frameworks/5.110.0/kdewebkit-5.110.0.tar.xz) = bb9887ac621603614351ed7c3604f1abf378889821553a4291a36b76fca2095c -SIZE (KDE/frameworks/5.110.0/kdewebkit-5.110.0.tar.xz) = 29788 +TIMESTAMP = 1697220967 +SHA256 (KDE/frameworks/5.111.0/kdewebkit-5.111.0.tar.xz) = 0dff2ab69e41f375d8ffaadc3513d56be26d815d2e219c455fa3acbbc48805fe +SIZE (KDE/frameworks/5.111.0/kdewebkit-5.111.0.tar.xz) = 29784 diff --git a/www/kf5-khtml/distinfo b/www/kf5-khtml/distinfo index e4ffb19ce8e0..b21d97fa77d4 100644 --- a/www/kf5-khtml/distinfo +++ b/www/kf5-khtml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025706 -SHA256 (KDE/frameworks/5.110.0/khtml-5.110.0.tar.xz) = 361e86f7d0f565f85033b09b583b79b82a25c848f4a71634b0558c1ae53ea89d -SIZE (KDE/frameworks/5.110.0/khtml-5.110.0.tar.xz) = 4011536 +TIMESTAMP = 1697220968 +SHA256 (KDE/frameworks/5.111.0/khtml-5.111.0.tar.xz) = fdbbecf23cff80b125cb2b9b7869f8a09bd371aa5e04ba83957807eb85e7577f +SIZE (KDE/frameworks/5.111.0/khtml-5.111.0.tar.xz) = 4011640 diff --git a/www/kf5-kjs/distinfo b/www/kf5-kjs/distinfo index 1277357a2474..e9ce5c89fb8a 100644 --- a/www/kf5-kjs/distinfo +++ b/www/kf5-kjs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025709 -SHA256 (KDE/frameworks/5.110.0/kjs-5.110.0.tar.xz) = 256c527e77e00cf6c2531b02e171f1485062e55ea7227890bbb11c8d4f6c9376 -SIZE (KDE/frameworks/5.110.0/kjs-5.110.0.tar.xz) = 339808 +TIMESTAMP = 1697220969 +SHA256 (KDE/frameworks/5.111.0/kjs-5.111.0.tar.xz) = 0f947fb59a418362ac7bde8c4183775353c31544213c4ee45c0e3d779831cf23 +SIZE (KDE/frameworks/5.111.0/kjs-5.111.0.tar.xz) = 339816 diff --git a/www/kf5-kjsembed/Makefile b/www/kf5-kjsembed/Makefile index 237df996e091..bad17b0bab2b 100644 --- a/www/kf5-kjsembed/Makefile +++ b/www/kf5-kjsembed/Makefile @@ -1,16 +1,15 @@ PORTNAME= kjsembed DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for binding JavaScript objects to QObjects USES= cmake compiler:c++11-lib gettext gl kde:5 qt:5 tar:xz USE_GL= gl USE_KDE= i18n js \ doctools:build ecm:build USE_QT= core gui svg uiplugin uitools widgets xml \ buildtools:build qmake:build .include diff --git a/www/kf5-kjsembed/distinfo b/www/kf5-kjsembed/distinfo index 728872514f4e..b186c951f635 100644 --- a/www/kf5-kjsembed/distinfo +++ b/www/kf5-kjsembed/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025711 -SHA256 (KDE/frameworks/5.110.0/kjsembed-5.110.0.tar.xz) = 15bb3f6b4d8ee29bcdc8464437c3af3c6ba98fe3e34b0abeac2abdc41492d5fa -SIZE (KDE/frameworks/5.110.0/kjsembed-5.110.0.tar.xz) = 2491320 +TIMESTAMP = 1697220970 +SHA256 (KDE/frameworks/5.111.0/kjsembed-5.111.0.tar.xz) = e2a14751256326b3d8bc99bcafdb9a62d6b31ef077297f9f172369a556582e74 +SIZE (KDE/frameworks/5.111.0/kjsembed-5.111.0.tar.xz) = 2490952 diff --git a/x11-themes/kf5-breeze-icons/distinfo b/x11-themes/kf5-breeze-icons/distinfo index d9d1f3c9d0bc..4984d590505a 100644 --- a/x11-themes/kf5-breeze-icons/distinfo +++ b/x11-themes/kf5-breeze-icons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025714 -SHA256 (KDE/frameworks/5.110.0/breeze-icons-5.110.0.tar.xz) = 1a3ced17ac34f7b7cb165017e6ceee71a0184a645ff962ace39bc69dcf43bfd4 -SIZE (KDE/frameworks/5.110.0/breeze-icons-5.110.0.tar.xz) = 2173008 +TIMESTAMP = 1697220971 +SHA256 (KDE/frameworks/5.111.0/breeze-icons-5.111.0.tar.xz) = 4c570e4c5f75a30f911db6fe5d907dfb58a02d2afbd160d81b51bfc8dc5b3aef +SIZE (KDE/frameworks/5.111.0/breeze-icons-5.111.0.tar.xz) = 2172892 diff --git a/x11-themes/kf5-kemoticons/Makefile b/x11-themes/kf5-kemoticons/Makefile index 782cea5a46a3..adeba8095134 100644 --- a/x11-themes/kf5-kemoticons/Makefile +++ b/x11-themes/kf5-kemoticons/Makefile @@ -1,15 +1,14 @@ PORTNAME= kemoticons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to convert emoticons USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons service \ ecm:build USE_QT= core dbus gui xml \ buildtools:build qmake:build .include diff --git a/x11-themes/kf5-kemoticons/distinfo b/x11-themes/kf5-kemoticons/distinfo index 151300a007e4..d3ec8f9a8607 100644 --- a/x11-themes/kf5-kemoticons/distinfo +++ b/x11-themes/kf5-kemoticons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025717 -SHA256 (KDE/frameworks/5.110.0/kemoticons-5.110.0.tar.xz) = 22f80fae0c356128d30f2eeda333a9d53298966091789ef01c867f6ef81c2de4 -SIZE (KDE/frameworks/5.110.0/kemoticons-5.110.0.tar.xz) = 1700720 +TIMESTAMP = 1697220972 +SHA256 (KDE/frameworks/5.111.0/kemoticons-5.111.0.tar.xz) = f3f77083651e0b6a085cd75f83f97555c0cce973d9e53629a6df3a0d53214aaa +SIZE (KDE/frameworks/5.111.0/kemoticons-5.111.0.tar.xz) = 1700724 diff --git a/x11-themes/kf5-kiconthemes/Makefile b/x11-themes/kf5-kiconthemes/Makefile index 20da6b56e7d9..bc5175c066cf 100644 --- a/x11-themes/kf5-kiconthemes/Makefile +++ b/x11-themes/kf5-kiconthemes/Makefile @@ -1,21 +1,20 @@ PORTNAME= kiconthemes DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for handling icons in applications USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons \ i18n widgetsaddons \ ecm:build USE_QT= core dbus gui svg widgets xml \ buildtools:build qmake:build OPTIONS_DEFINE= ICONS OPTIONS_DEFAULT= ICONS ICONS_DESC= Install Breeze Icons ICONS_USE= KDE=breeze-icons:run .include diff --git a/x11-themes/kf5-kiconthemes/distinfo b/x11-themes/kf5-kiconthemes/distinfo index 1c05811ebea1..3cdbfcd00cfa 100644 --- a/x11-themes/kf5-kiconthemes/distinfo +++ b/x11-themes/kf5-kiconthemes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025719 -SHA256 (KDE/frameworks/5.110.0/kiconthemes-5.110.0.tar.xz) = 0d84a2106d68fe040458ea31a8fb63673d0cc48892e606a5875edaa9e4c9662d -SIZE (KDE/frameworks/5.110.0/kiconthemes-5.110.0.tar.xz) = 1312164 +TIMESTAMP = 1697220973 +SHA256 (KDE/frameworks/5.111.0/kiconthemes-5.111.0.tar.xz) = a56f6eb0219eb1bc91f2477ccac47597af116c596b718654bc51eed10e14bb1d +SIZE (KDE/frameworks/5.111.0/kiconthemes-5.111.0.tar.xz) = 1312240 diff --git a/x11-themes/kf5-oxygen-icons5/distinfo b/x11-themes/kf5-oxygen-icons5/distinfo index eed4888102d9..2a2c8d37c320 100644 --- a/x11-themes/kf5-oxygen-icons5/distinfo +++ b/x11-themes/kf5-oxygen-icons5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025742 -SHA256 (KDE/frameworks/5.110.0/oxygen-icons5-5.110.0.tar.xz) = 42c56983b59c0bf66ea489f7b8dd95eb15ca2d0945ce94d6f580ae870a79b1b6 -SIZE (KDE/frameworks/5.110.0/oxygen-icons5-5.110.0.tar.xz) = 238635952 +TIMESTAMP = 1697220994 +SHA256 (KDE/frameworks/5.111.0/oxygen-icons5-5.111.0.tar.xz) = fabc69b3b1357274f8e7d03646db04f6b707ac8b698abb221ed433121a84e4ae +SIZE (KDE/frameworks/5.111.0/oxygen-icons5-5.111.0.tar.xz) = 238636228 diff --git a/x11-themes/kf5-qqc2-desktop-style/Makefile b/x11-themes/kf5-qqc2-desktop-style/Makefile index 1eace1b7a698..457cfdfaa05d 100644 --- a/x11-themes/kf5-qqc2-desktop-style/Makefile +++ b/x11-themes/kf5-qqc2-desktop-style/Makefile @@ -1,16 +1,15 @@ PORTNAME= qqc2-desktop-style DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= Qt QuickControl2 style for KDE USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons iconthemes \ kirigami2 sonnet widgetsaddons \ ecm:build USE_QT= core dbus declarative gui network widgets xml \ buildtools:build qmake:build .include diff --git a/x11-themes/kf5-qqc2-desktop-style/distinfo b/x11-themes/kf5-qqc2-desktop-style/distinfo index 9433be8da17b..15904d87d029 100644 --- a/x11-themes/kf5-qqc2-desktop-style/distinfo +++ b/x11-themes/kf5-qqc2-desktop-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025746 -SHA256 (KDE/frameworks/5.110.0/qqc2-desktop-style-5.110.0.tar.xz) = 6f3c2f73b283c7373b695f33eaa2479349dae135fdba2efd04fcab843285fe12 -SIZE (KDE/frameworks/5.110.0/qqc2-desktop-style-5.110.0.tar.xz) = 69460 +TIMESTAMP = 1697220995 +SHA256 (KDE/frameworks/5.111.0/qqc2-desktop-style-5.111.0.tar.xz) = 6c81864a58a2e9e9fdeee8af5a51c8b06537de6550832b824765cb17110c05c4 +SIZE (KDE/frameworks/5.111.0/qqc2-desktop-style-5.111.0.tar.xz) = 69456 diff --git a/x11-toolkits/kf5-attica/distinfo b/x11-toolkits/kf5-attica/distinfo index ab4a544217c9..d86ba240fedc 100644 --- a/x11-toolkits/kf5-attica/distinfo +++ b/x11-toolkits/kf5-attica/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025751 -SHA256 (KDE/frameworks/5.110.0/attica-5.110.0.tar.xz) = a6f5abb1834afa0bcc12e3315489377a492b18a26fbac0d91c695f3b32f0e7d2 -SIZE (KDE/frameworks/5.110.0/attica-5.110.0.tar.xz) = 69476 +TIMESTAMP = 1697220996 +SHA256 (KDE/frameworks/5.111.0/attica-5.111.0.tar.xz) = 847628865c03bdcf7f80bfc0a7d05e37585577619382d0723266d0820a3fb73d +SIZE (KDE/frameworks/5.111.0/attica-5.111.0.tar.xz) = 69476 diff --git a/x11-toolkits/kf5-kcompletion/distinfo b/x11-toolkits/kf5-kcompletion/distinfo index 1f7c7aabd4e6..c8eab5a61609 100644 --- a/x11-toolkits/kf5-kcompletion/distinfo +++ b/x11-toolkits/kf5-kcompletion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025754 -SHA256 (KDE/frameworks/5.110.0/kcompletion-5.110.0.tar.xz) = 4f04f1a41f4e49a15b06a60304d75f7945b506b12d65f03b27073c37d3353429 -SIZE (KDE/frameworks/5.110.0/kcompletion-5.110.0.tar.xz) = 2337804 +TIMESTAMP = 1697220997 +SHA256 (KDE/frameworks/5.111.0/kcompletion-5.111.0.tar.xz) = 537d1213be9d75e38044565e9a713d52b989be89dd9f92f9d288e9e57a0f2fba +SIZE (KDE/frameworks/5.111.0/kcompletion-5.111.0.tar.xz) = 2337412 diff --git a/x11-toolkits/kf5-kconfigwidgets/distinfo b/x11-toolkits/kf5-kconfigwidgets/distinfo index 1a12679712ce..72368e89c7b2 100644 --- a/x11-toolkits/kf5-kconfigwidgets/distinfo +++ b/x11-toolkits/kf5-kconfigwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025758 -SHA256 (KDE/frameworks/5.110.0/kconfigwidgets-5.110.0.tar.xz) = 4f0fc941bae4eb41436a2b5dbc45bf3116268f7e98b15aedc347dfd603e1b412 -SIZE (KDE/frameworks/5.110.0/kconfigwidgets-5.110.0.tar.xz) = 2613772 +TIMESTAMP = 1697220998 +SHA256 (KDE/frameworks/5.111.0/kconfigwidgets-5.111.0.tar.xz) = 63df2e357f0f957bcc8ad15cd49524a8d37a26c8e320ea936aae45bef37701fe +SIZE (KDE/frameworks/5.111.0/kconfigwidgets-5.111.0.tar.xz) = 2613984 diff --git a/x11-toolkits/kf5-kdesignerplugin/Makefile b/x11-toolkits/kf5-kdesignerplugin/Makefile index 9816a4f2c14b..0b0775b01f7b 100644 --- a/x11-toolkits/kf5-kdesignerplugin/Makefile +++ b/x11-toolkits/kf5-kdesignerplugin/Makefile @@ -1,14 +1,13 @@ PORTNAME= kdesignerplugin DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration of Frameworks widgets in Qt Designer/Creator USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons \ doctools:build ecm:build USE_QT= core buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-kdesignerplugin/distinfo b/x11-toolkits/kf5-kdesignerplugin/distinfo index a311c45bea65..26cbdbb02505 100644 --- a/x11-toolkits/kf5-kdesignerplugin/distinfo +++ b/x11-toolkits/kf5-kdesignerplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025761 -SHA256 (KDE/frameworks/5.110.0/kdesignerplugin-5.110.0.tar.xz) = cc124e9e0a867b62175ca280afb96f61d8862246e40314fa0050aa9c9345d190 -SIZE (KDE/frameworks/5.110.0/kdesignerplugin-5.110.0.tar.xz) = 2286860 +TIMESTAMP = 1697220999 +SHA256 (KDE/frameworks/5.111.0/kdesignerplugin-5.111.0.tar.xz) = 4252a4e2c6861f063f39b1597b4f89956bb1621d03ea6938d8baa7facbefbae2 +SIZE (KDE/frameworks/5.111.0/kdesignerplugin-5.111.0.tar.xz) = 2286968 diff --git a/x11-toolkits/kf5-kguiaddons/Makefile b/x11-toolkits/kf5-kguiaddons/Makefile index 99f6c0c92756..e6710d42af97 100644 --- a/x11-toolkits/kf5-kguiaddons/Makefile +++ b/x11-toolkits/kf5-kguiaddons/Makefile @@ -1,18 +1,17 @@ PORTNAME= kguiaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtGui LIB_DEPENDS= libwayland-client.so:graphics/wayland USES= cmake compiler:c++11-lib desktop-file-utils kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= ecm:build plasma-wayland-protocols:build USE_QT= core dbus gui wayland x11extras \ buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext .include diff --git a/x11-toolkits/kf5-kguiaddons/distinfo b/x11-toolkits/kf5-kguiaddons/distinfo index eda60770708b..b9e0103e7f04 100644 --- a/x11-toolkits/kf5-kguiaddons/distinfo +++ b/x11-toolkits/kf5-kguiaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025764 -SHA256 (KDE/frameworks/5.110.0/kguiaddons-5.110.0.tar.xz) = 2ca155dec16b7a3d7968c3b7dc01ba71c1c11d4e9a98c6217146476891ec552a -SIZE (KDE/frameworks/5.110.0/kguiaddons-5.110.0.tar.xz) = 78360 +TIMESTAMP = 1697221000 +SHA256 (KDE/frameworks/5.111.0/kguiaddons-5.111.0.tar.xz) = f7deb0fd5f4ab6eb78b78357b95f0d93b8008253793315d94f5aa6688a0699c5 +SIZE (KDE/frameworks/5.111.0/kguiaddons-5.111.0.tar.xz) = 78384 diff --git a/x11-toolkits/kf5-kirigami2/Makefile b/x11-toolkits/kf5-kirigami2/Makefile index 1cd3d3de0497..296dbd176040 100644 --- a/x11-toolkits/kf5-kirigami2/Makefile +++ b/x11-toolkits/kf5-kirigami2/Makefile @@ -1,23 +1,22 @@ PORTNAME= kirigami2 DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= QtQuick based components set USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm:build USE_QT= core concurrent dbus declarative graphicaleffects gui \ linguisttools network quickcontrols2 svg widgets \ buildtools:build qmake:build testlib:build .include .if ${OSVERSION} < 1300016 # src/imagecolors.cpp:317:9: error: statement after '#pragma omp parallel for' # must be a for loop CFLAGS+= -fopenmp-version=50 .endif .include diff --git a/x11-toolkits/kf5-kirigami2/distinfo b/x11-toolkits/kf5-kirigami2/distinfo index adacc01b74cc..ca6ff94c5245 100644 --- a/x11-toolkits/kf5-kirigami2/distinfo +++ b/x11-toolkits/kf5-kirigami2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025769 -SHA256 (KDE/frameworks/5.110.0/kirigami2-5.110.0.tar.xz) = fd3dd9b0220570ee734cee50a18c7f5746ecd51a44ce77d549980f052df8498e -SIZE (KDE/frameworks/5.110.0/kirigami2-5.110.0.tar.xz) = 382524 +TIMESTAMP = 1697221001 +SHA256 (KDE/frameworks/5.111.0/kirigami2-5.111.0.tar.xz) = 20546033ea24d72db8d7abf3800dfa271c6595a5c1d0d3b9a588e01d2fdba611 +SIZE (KDE/frameworks/5.111.0/kirigami2-5.111.0.tar.xz) = 382896 diff --git a/x11-toolkits/kf5-kitemviews/distinfo b/x11-toolkits/kf5-kitemviews/distinfo index e230eb812f02..c5259c1b87a5 100644 --- a/x11-toolkits/kf5-kitemviews/distinfo +++ b/x11-toolkits/kf5-kitemviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025772 -SHA256 (KDE/frameworks/5.110.0/kitemviews-5.110.0.tar.xz) = d763b6939662dc9f23781c318bdce2282f5c1174e0a7d091c26a6506ecf50bdb -SIZE (KDE/frameworks/5.110.0/kitemviews-5.110.0.tar.xz) = 2264824 +TIMESTAMP = 1697221002 +SHA256 (KDE/frameworks/5.111.0/kitemviews-5.111.0.tar.xz) = db1fedb5604aab02ef28584b6a609a12414b6fe7db26c97624f6381598a8d183 +SIZE (KDE/frameworks/5.111.0/kitemviews-5.111.0.tar.xz) = 2264796 diff --git a/x11-toolkits/kf5-kjobwidgets/distinfo b/x11-toolkits/kf5-kjobwidgets/distinfo index 86641529d931..1ee7e4ca84ec 100644 --- a/x11-toolkits/kf5-kjobwidgets/distinfo +++ b/x11-toolkits/kf5-kjobwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025774 -SHA256 (KDE/frameworks/5.110.0/kjobwidgets-5.110.0.tar.xz) = 02861c662ab3b70e137eb805395601c93b231dd245bf5855bc31c03ad58b87ae -SIZE (KDE/frameworks/5.110.0/kjobwidgets-5.110.0.tar.xz) = 2301408 +TIMESTAMP = 1697221003 +SHA256 (KDE/frameworks/5.111.0/kjobwidgets-5.111.0.tar.xz) = 6a8ff4e3506bd06d85a890debe1d6e8e5072c406051d8405690aae4017f9bb21 +SIZE (KDE/frameworks/5.111.0/kjobwidgets-5.111.0.tar.xz) = 2301276 diff --git a/x11-toolkits/kf5-ktextwidgets/Makefile b/x11-toolkits/kf5-ktextwidgets/Makefile index 09479b6f6c38..9f26be43bc22 100644 --- a/x11-toolkits/kf5-ktextwidgets/Makefile +++ b/x11-toolkits/kf5-ktextwidgets/Makefile @@ -1,22 +1,21 @@ PORTNAME= ktextwidgets DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced text editing widgets USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n service sonnet widgetsaddons \ ecm:build USE_QT= core gui widgets xml \ buildtools:build qmake:build OPTIONS_DEFINE= AUDIO OPTIONS_DEFAULT= AUDIO AUDIO_DESC= Audio notifications/speech support AUDIO_USE= QT=speech .include diff --git a/x11-toolkits/kf5-ktextwidgets/distinfo b/x11-toolkits/kf5-ktextwidgets/distinfo index 238284c94cbb..45f89d839317 100644 --- a/x11-toolkits/kf5-ktextwidgets/distinfo +++ b/x11-toolkits/kf5-ktextwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025777 -SHA256 (KDE/frameworks/5.110.0/ktextwidgets-5.110.0.tar.xz) = f85c994925eb53a21fd94aa63e63552071206fc81a62af7d43224d5551b12733 -SIZE (KDE/frameworks/5.110.0/ktextwidgets-5.110.0.tar.xz) = 2552540 +TIMESTAMP = 1697221004 +SHA256 (KDE/frameworks/5.111.0/ktextwidgets-5.111.0.tar.xz) = dc4fd96570957872bf8d0ba0555227b25d61903c7e637f19fdcbeec403f811a9 +SIZE (KDE/frameworks/5.111.0/ktextwidgets-5.111.0.tar.xz) = 2552644 diff --git a/x11-toolkits/kf5-kwidgetsaddons/Makefile b/x11-toolkits/kf5-kwidgetsaddons/Makefile index 995d817a6083..d9299401654d 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/Makefile +++ b/x11-toolkits/kf5-kwidgetsaddons/Makefile @@ -1,14 +1,13 @@ PORTNAME= kwidgetsaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtWidgets USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm:build USE_QT= core gui linguisttools uiplugin uitools widgets \ buildtools:build qmake:build testlib:build .include diff --git a/x11-toolkits/kf5-kwidgetsaddons/distinfo b/x11-toolkits/kf5-kwidgetsaddons/distinfo index ece195900330..0f3ca94bfa8f 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/distinfo +++ b/x11-toolkits/kf5-kwidgetsaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025781 -SHA256 (KDE/frameworks/5.110.0/kwidgetsaddons-5.110.0.tar.xz) = ca74b0e9b1a937ee6f91ced70f16b41489d4bab1aba6c8ef485bc8928186d7b3 -SIZE (KDE/frameworks/5.110.0/kwidgetsaddons-5.110.0.tar.xz) = 4270960 +TIMESTAMP = 1697221005 +SHA256 (KDE/frameworks/5.111.0/kwidgetsaddons-5.111.0.tar.xz) = 4e6679ba421e7d3738569af605b79c337225612bb2d7c9f6db19a3d89fd50d69 +SIZE (KDE/frameworks/5.111.0/kwidgetsaddons-5.111.0.tar.xz) = 4270436 diff --git a/x11-toolkits/kf5-kxmlgui/Makefile b/x11-toolkits/kf5-kxmlgui/Makefile index 34ef26da3651..781f316c34db 100644 --- a/x11-toolkits/kf5-kxmlgui/Makefile +++ b/x11-toolkits/kf5-kxmlgui/Makefile @@ -1,17 +1,16 @@ PORTNAME= kxmlgui DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 user configurable main windows USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons \ globalaccel guiaddons i18n iconthemes itemviews \ widgetsaddons \ ecm:build USE_QT= core dbus gui network printsupport widgets xml \ buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-kxmlgui/distinfo b/x11-toolkits/kf5-kxmlgui/distinfo index a6494448ae8e..ea611174616b 100644 --- a/x11-toolkits/kf5-kxmlgui/distinfo +++ b/x11-toolkits/kf5-kxmlgui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025785 -SHA256 (KDE/frameworks/5.110.0/kxmlgui-5.110.0.tar.xz) = 58766ebb700fa186f70a02ba374f895900a3e5b54fd0cdccc167ebd4a3281bc9 -SIZE (KDE/frameworks/5.110.0/kxmlgui-5.110.0.tar.xz) = 2953508 +TIMESTAMP = 1697221006 +SHA256 (KDE/frameworks/5.111.0/kxmlgui-5.111.0.tar.xz) = 5592862de2db95f4767b50f1be7760cf6c8048996c942b25fb848479acc2e88d +SIZE (KDE/frameworks/5.111.0/kxmlgui-5.111.0.tar.xz) = 2953172 diff --git a/x11/kf5-frameworkintegration/Makefile b/x11/kf5-frameworkintegration/Makefile index d5926c872dcf..0a4fb0be3ff4 100644 --- a/x11/kf5-frameworkintegration/Makefile +++ b/x11/kf5-frameworkintegration/Makefile @@ -1,18 +1,17 @@ PORTNAME= frameworkintegration DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 workspace and cross-framework integration plugins USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= auth attica codecs config configwidgets coreaddons i18n \ iconthemes newstuff notifications oxygen-sounds widgetsaddons \ ecm:build USE_QT= core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= xcb xcursor .include diff --git a/x11/kf5-frameworkintegration/distinfo b/x11/kf5-frameworkintegration/distinfo index 5ac42ccfe22e..57118f4f31d8 100644 --- a/x11/kf5-frameworkintegration/distinfo +++ b/x11/kf5-frameworkintegration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025787 -SHA256 (KDE/frameworks/5.110.0/frameworkintegration-5.110.0.tar.xz) = 58837f80e86ad1d18cfcc6cdb94146e9020a16c15cfacfcb914d8e17c02d143e -SIZE (KDE/frameworks/5.110.0/frameworkintegration-5.110.0.tar.xz) = 1760436 +TIMESTAMP = 1697221007 +SHA256 (KDE/frameworks/5.111.0/frameworkintegration-5.111.0.tar.xz) = 61af726451b4d8eeef78ee9355717faa689da5215969cc60e9ac7dc42f511161 +SIZE (KDE/frameworks/5.111.0/frameworkintegration-5.111.0.tar.xz) = 1760432 diff --git a/x11/kf5-frameworks/Makefile b/x11/kf5-frameworks/Makefile index 6b701343d589..c011a8d59bc2 100644 --- a/x11/kf5-frameworks/Makefile +++ b/x11/kf5-frameworks/Makefile @@ -1,17 +1,16 @@ PORTNAME= frameworks DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde PKGNAMEPREFIX= kf5- MAINTAINER= kde@FreeBSD.org COMMENT= KF5 frameworks meta port WWW= https://api.kde.org/frameworks/index.html USES= metaport kde:5 qt:5 # remove bluez-qt as we do not have bluez USE_KDE= ${_USE_FRAMEWORKS_ALL:Nbluez-qt:Nkdewebkit} # pull bsd.qt.mk for QT_PLUGINDIR in the kf5-dependencies USE_QT= # .include diff --git a/x11/kf5-kactivities-stats/distinfo b/x11/kf5-kactivities-stats/distinfo index a43556c17db6..9486fc8af079 100644 --- a/x11/kf5-kactivities-stats/distinfo +++ b/x11/kf5-kactivities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025792 -SHA256 (KDE/frameworks/5.110.0/kactivities-stats-5.110.0.tar.xz) = a47fc4501f5277666e53074f6b6d78c841f21a4eae119edefd99beba5ed3f8a9 -SIZE (KDE/frameworks/5.110.0/kactivities-stats-5.110.0.tar.xz) = 84484 +TIMESTAMP = 1697221009 +SHA256 (KDE/frameworks/5.111.0/kactivities-stats-5.111.0.tar.xz) = ad6df4582da64816098440136ef2838559b7a93299b2c717dd7990073af5add7 +SIZE (KDE/frameworks/5.111.0/kactivities-stats-5.111.0.tar.xz) = 84508 diff --git a/x11/kf5-kactivities/Makefile b/x11/kf5-kactivities/Makefile index 09d2651cb99a..f68d685f4f3b 100644 --- a/x11/kf5-kactivities/Makefile +++ b/x11/kf5-kactivities/Makefile @@ -1,17 +1,16 @@ PORTNAME= kactivities DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 runtime and library to organize work in separate activities BUILD_DEPENDS= boost-libs>1.53:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz USE_KDE= config coreaddons service windowsystem \ ecm:build USE_QT= core dbus declarative gui network sql \ buildtools:build qmake:build .include diff --git a/x11/kf5-kactivities/distinfo b/x11/kf5-kactivities/distinfo index c13abb7e1bbe..be9350de6e65 100644 --- a/x11/kf5-kactivities/distinfo +++ b/x11/kf5-kactivities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025790 -SHA256 (KDE/frameworks/5.110.0/kactivities-5.110.0.tar.xz) = 4565f8216f8134b91d58a0697d5892e0c6675fbe6fd639a8a0ece8c1a42924b0 -SIZE (KDE/frameworks/5.110.0/kactivities-5.110.0.tar.xz) = 73556 +TIMESTAMP = 1697221008 +SHA256 (KDE/frameworks/5.111.0/kactivities-5.111.0.tar.xz) = 55b5241df2a5ab14a94f5308f55e46133e5111dec983fc3f1f2e0e3c09e5400c +SIZE (KDE/frameworks/5.111.0/kactivities-5.111.0.tar.xz) = 73580 diff --git a/x11/kf5-kded/distinfo b/x11/kf5-kded/distinfo index cc0280088c90..4342d149b5eb 100644 --- a/x11/kf5-kded/distinfo +++ b/x11/kf5-kded/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025796 -SHA256 (KDE/frameworks/5.110.0/kded-5.110.0.tar.xz) = d4bfecd640bed1abdcbd5008e505ba8cea1f807ad362a8ceaaa4670cf9fc10d9 -SIZE (KDE/frameworks/5.110.0/kded-5.110.0.tar.xz) = 41012 +TIMESTAMP = 1697221010 +SHA256 (KDE/frameworks/5.111.0/kded-5.111.0.tar.xz) = a738c41b8887abbd507c696ae3180d6dc3ec7edede31a757b9e788c995fe13ad +SIZE (KDE/frameworks/5.111.0/kded-5.111.0.tar.xz) = 41040 diff --git a/x11/kf5-kdelibs4support/distinfo b/x11/kf5-kdelibs4support/distinfo index b48152a38667..08f9a91ed226 100644 --- a/x11/kf5-kdelibs4support/distinfo +++ b/x11/kf5-kdelibs4support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025800 -SHA256 (KDE/frameworks/5.110.0/kdelibs4support-5.110.0.tar.xz) = c42931af396a5d089a626cf6a23a0e94d18e567a9766ea4afe5318e400833085 -SIZE (KDE/frameworks/5.110.0/kdelibs4support-5.110.0.tar.xz) = 3722220 +TIMESTAMP = 1697221011 +SHA256 (KDE/frameworks/5.111.0/kdelibs4support-5.111.0.tar.xz) = 2ebab32f04ec69fd1e6098a32a2342ed15e7b64cbcb70114cca479d69f91d4f8 +SIZE (KDE/frameworks/5.111.0/kdelibs4support-5.111.0.tar.xz) = 3721876 diff --git a/x11/kf5-kglobalaccel/Makefile b/x11/kf5-kglobalaccel/Makefile index 1fbba89839e1..d3691f18463a 100644 --- a/x11/kf5-kglobalaccel/Makefile +++ b/x11/kf5-kglobalaccel/Makefile @@ -1,19 +1,18 @@ PORTNAME= kglobalaccel DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to add support for global workspace shortcuts LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons crash dbusaddons service \ windowsystem \ ecm:build USE_QT= core dbus gui linguisttools widgets x11extras \ buildtools:build qmake:build testlib:build USE_XORG= x11 xcb .include diff --git a/x11/kf5-kglobalaccel/distinfo b/x11/kf5-kglobalaccel/distinfo index da452855aec4..9f59e8b920a1 100644 --- a/x11/kf5-kglobalaccel/distinfo +++ b/x11/kf5-kglobalaccel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025804 -SHA256 (KDE/frameworks/5.110.0/kglobalaccel-5.110.0.tar.xz) = f75325f5f7b9e6d254e82c58ec4395091514d1759b050235fbf78099fd1682c7 -SIZE (KDE/frameworks/5.110.0/kglobalaccel-5.110.0.tar.xz) = 2339028 +TIMESTAMP = 1697221012 +SHA256 (KDE/frameworks/5.111.0/kglobalaccel-5.111.0.tar.xz) = 7fad873c7d17a1ee0f17ef7b8e2b35f85f545f79e7286c12bbb2b508fc8c7b82 +SIZE (KDE/frameworks/5.111.0/kglobalaccel-5.111.0.tar.xz) = 2339176 diff --git a/x11/kf5-kinit/distinfo b/x11/kf5-kinit/distinfo index 537dbd58464e..7d79cf43242d 100644 --- a/x11/kf5-kinit/distinfo +++ b/x11/kf5-kinit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025807 -SHA256 (KDE/frameworks/5.110.0/kinit-5.110.0.tar.xz) = 65d338ef945a2108b0f9b88b5ad966abd525e9228b8593f4db5e00075312425f -SIZE (KDE/frameworks/5.110.0/kinit-5.110.0.tar.xz) = 2404984 +TIMESTAMP = 1697221013 +SHA256 (KDE/frameworks/5.111.0/kinit-5.111.0.tar.xz) = 38e5deb0c312f6b63af98a572a99ced4f831963446d62b936f91d82c22fee9f2 +SIZE (KDE/frameworks/5.111.0/kinit-5.111.0.tar.xz) = 2404872 diff --git a/x11/kf5-krunner/Makefile b/x11/kf5-krunner/Makefile index 036ce18d2c11..44680e411b27 100644 --- a/x11/kf5-krunner/Makefile +++ b/x11/kf5-krunner/Makefile @@ -1,16 +1,15 @@ PORTNAME= krunner DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 parallelized query system USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= activities config coreaddons i18n kio package plasma-framework \ service threadweaver \ ecm:build USE_QT= concurrent core dbus declarative gui network widgets \ buildtools:build qmake:build .include diff --git a/x11/kf5-krunner/distinfo b/x11/kf5-krunner/distinfo index 09650482b787..28bf063be4cb 100644 --- a/x11/kf5-krunner/distinfo +++ b/x11/kf5-krunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025810 -SHA256 (KDE/frameworks/5.110.0/krunner-5.110.0.tar.xz) = a18c18e252f8a36bb866b0df8846d55d670336fd11f6d97291d872cd04867260 -SIZE (KDE/frameworks/5.110.0/krunner-5.110.0.tar.xz) = 88708 +TIMESTAMP = 1697221014 +SHA256 (KDE/frameworks/5.111.0/krunner-5.111.0.tar.xz) = 895c178e710e7c710bb11cb41eabc6a6cdc5e9ae3b67995977eeb36a371a22c8 +SIZE (KDE/frameworks/5.111.0/krunner-5.111.0.tar.xz) = 88696 diff --git a/x11/kf5-kwayland/distinfo b/x11/kf5-kwayland/distinfo index 7e09986f0758..7f6c409924a9 100644 --- a/x11/kf5-kwayland/distinfo +++ b/x11/kf5-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025814 -SHA256 (KDE/frameworks/5.110.0/kwayland-5.110.0.tar.xz) = 0565041ef0ab6aec2d2afbe513c79d5c56c07d03c98233ca82103abcb9dffd3d -SIZE (KDE/frameworks/5.110.0/kwayland-5.110.0.tar.xz) = 337456 +TIMESTAMP = 1697221015 +SHA256 (KDE/frameworks/5.111.0/kwayland-5.111.0.tar.xz) = 7369467980c0680df5b1c1a263ca574bf459d8328235002b63e06c831b942904 +SIZE (KDE/frameworks/5.111.0/kwayland-5.111.0.tar.xz) = 337520 diff --git a/x11/kf5-kwindowsystem/distinfo b/x11/kf5-kwindowsystem/distinfo index 138212c6fc16..05d3cf7d220f 100644 --- a/x11/kf5-kwindowsystem/distinfo +++ b/x11/kf5-kwindowsystem/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025817 -SHA256 (KDE/frameworks/5.110.0/kwindowsystem-5.110.0.tar.xz) = e00860e592fcee42c18e6da351b310cbb1358a45d9424f31ffe9e33fb29d6a50 -SIZE (KDE/frameworks/5.110.0/kwindowsystem-5.110.0.tar.xz) = 2406276 +TIMESTAMP = 1697221016 +SHA256 (KDE/frameworks/5.111.0/kwindowsystem-5.111.0.tar.xz) = 344fbaf62c1bf3032210993da00811b4d2ff54d95898a6676bc77e6f92ece49c +SIZE (KDE/frameworks/5.111.0/kwindowsystem-5.111.0.tar.xz) = 2406712 diff --git a/x11/kf5-plasma-framework/Makefile b/x11/kf5-plasma-framework/Makefile index 098903c55d2c..fd21e01547a4 100644 --- a/x11/kf5-plasma-framework/Makefile +++ b/x11/kf5-plasma-framework/Makefile @@ -1,22 +1,21 @@ PORTNAME= plasma-framework DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin based UI runtime used to write user interfaces USES= cmake compiler:c++11-lib gettext gl kde:5 pkgconfig qt:5 \ tar:xz xorg USE_GL= egl gl USE_KDE= activities archive auth codecs completion config configwidgets \ coreaddons dbusaddons globalaccel guiaddons i18n iconthemes \ jobwidgets kdeclarative kio kirigami2 notifications package \ service solid wayland widgetsaddons windowsystem xmlgui \ doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network sql svg widgets \ x11extras xml \ buildtools:build qmake:build USE_XORG= ice sm x11 xcb xext xrandr .include diff --git a/x11/kf5-plasma-framework/distinfo b/x11/kf5-plasma-framework/distinfo index 32f0d32833d2..86de50433adc 100644 --- a/x11/kf5-plasma-framework/distinfo +++ b/x11/kf5-plasma-framework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694025820 -SHA256 (KDE/frameworks/5.110.0/plasma-framework-5.110.0.tar.xz) = 8e1d7055f2c590f40e70620cc67311cfc8560d2f325e44219e96d59f29b2d449 -SIZE (KDE/frameworks/5.110.0/plasma-framework-5.110.0.tar.xz) = 3310724 +TIMESTAMP = 1697221017 +SHA256 (KDE/frameworks/5.111.0/plasma-framework-5.111.0.tar.xz) = 7bfbf2d6bfcb1e315259e897741ffc05a3a6767def734d645263983f80f30c7e +SIZE (KDE/frameworks/5.111.0/plasma-framework-5.111.0.tar.xz) = 3310696