diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 68df4d296808..029e3ed80370 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,911 +1,911 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.24.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.93.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 22.04.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.20.0 +KDE_APPLICATIONS_VERSION?= 22.04.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.20.1 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 22.04.0 +KDE_APPLICATIONS_SHLIB_G_VER?= 22.04.1 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools_build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index baebc2a2bb3e..1ecb42972b8d 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101797 -SHA256 (KDE/release-service/22.04.0/kmag-22.04.0.tar.xz) = e65aaaa3e480c215384bae721afb36d7e50a7f8ab27aa4013eb46de1f43d97af -SIZE (KDE/release-service/22.04.0/kmag-22.04.0.tar.xz) = 707668 +TIMESTAMP = 1652179723 +SHA256 (KDE/release-service/22.04.1/kmag-22.04.1.tar.xz) = ff2341c12d3f4eeced74339912079120266a3830451e8486a810ffedf2e3316a +SIZE (KDE/release-service/22.04.1/kmag-22.04.1.tar.xz) = 707616 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index ee1a39e31cd7..f245bd207cac 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101795 -SHA256 (KDE/release-service/22.04.0/kmousetool-22.04.0.tar.xz) = 650167d0c87f4c114c517fdef23a01ba7ab4b7a5e7ec0edb64a3972400660f28 -SIZE (KDE/release-service/22.04.0/kmousetool-22.04.0.tar.xz) = 121608 +TIMESTAMP = 1652179724 +SHA256 (KDE/release-service/22.04.1/kmousetool-22.04.1.tar.xz) = 9b91ec1db660c0dbd45199254fa0bc877fdeed2086a2de935bc1f21aa27d8f42 +SIZE (KDE/release-service/22.04.1/kmousetool-22.04.1.tar.xz) = 121688 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index a49f20c98751..9b64a37cfe09 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101796 -SHA256 (KDE/release-service/22.04.0/kmouth-22.04.0.tar.xz) = 3feabab5b75ddf54d017185b6b998ff1cbccf0cb1a23a8ccf6a546435f766017 -SIZE (KDE/release-service/22.04.0/kmouth-22.04.0.tar.xz) = 2104452 +TIMESTAMP = 1652179725 +SHA256 (KDE/release-service/22.04.1/kmouth-22.04.1.tar.xz) = 03f2e00e9103a9491b095e18d81e8ee784c498cd344014df93323a27004d4106 +SIZE (KDE/release-service/22.04.1/kmouth-22.04.1.tar.xz) = 2104488 diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 97639f0e54de..6191f7725452 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -1,53 +1,52 @@ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \ cpe qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes PATCH_STRIP= -p1 OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= 7ZIP ZIP DOCS OPTIONS_DEFAULT_i386= RAR OPTIONS_DEFAULT_amd64= RAR OPTIONS_SUB= YES # The 7ZIP and RAR options only need runtime dependencies; # the port builds identically with or without them. 7ZIP_DESC= Support for 7-Zip archives (runtime) 7ZIP_RUN_DEPENDS= 7zz:archivers/7-zip RAR_DESC= Support for RAR archives (runtime) RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip # Override shared library version KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_VERSION} post-patch: ${REINPLACE_CMD} '/Program/s,"7z","7zz",' \ ${WRKSRC}/plugins/cli7zplugin/cliplugin.cpp ${REINPLACE_CMD} 's,"7z","7zz",' \ ${WRKSRC}/plugins/cli7zplugin/kerfuffle_cli7z.json.cmake .include diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 3afc85184096..f0323c0f2126 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101778 -SHA256 (KDE/release-service/22.04.0/ark-22.04.0.tar.xz) = cb074b7d61e202fed8468daaa615724721f38dd3a126cb3071aa0d8380075fde -SIZE (KDE/release-service/22.04.0/ark-22.04.0.tar.xz) = 2777432 +TIMESTAMP = 1652179610 +SHA256 (KDE/release-service/22.04.1/ark-22.04.1.tar.xz) = 765ecb081dbb0aaf3d41f53fabd27152ffee38bfff885bfd73a5b80150e66dc6 +SIZE (KDE/release-service/22.04.1/ark-22.04.1.tar.xz) = 2780660 diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index b16dc0d09c60..c4bb3c747dfb 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,22 +1,21 @@ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= i18n kpublictransport \ ecm_build USE_QT= core declarative gui network quick3d \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS # Override shared library version KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_SHLIB_G_VER} .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 368089f3eae7..5ae898d07a9b 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101792 -SHA256 (KDE/release-service/22.04.0/kosmindoormap-22.04.0.tar.xz) = e17d12f203f0faec9a167ecab53f114d126e555626f2813462b8366f4930bcbf -SIZE (KDE/release-service/22.04.0/kosmindoormap-22.04.0.tar.xz) = 351100 +TIMESTAMP = 1652179710 +SHA256 (KDE/release-service/22.04.1/kosmindoormap-22.04.1.tar.xz) = 21706e13145e8d3455c4e1cf171879140d77c5b60a339c2f4a03348adc51b44e +SIZE (KDE/release-service/22.04.1/kosmindoormap-22.04.1.tar.xz) = 351200 diff --git a/astro/marble/Makefile b/astro/marble/Makefile index a8cbaa130e25..4adfe3e3badc 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -1,47 +1,47 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip1-qt5.so:archivers/quazip USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 shared-mime-info tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets kio newstuff package parts \ plasma-framework plasma-workspace-wallpapers runner service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script serialport sql svg webchannel widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null # We have to set QT_IMPORTS_PATH, as it does not get picked up CMAKE_ARGS= -DMOBILE:BOOL=FALSE \ -DQT_IMPORTS_DIR:PATH=${QT_IMPORTDIR} # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 22.4.0 +KDE_APPLICATIONS_SHLIB_VER= 22.4.1 OPTIONS_DEFINE= GPS DOCS WEBENGINE OPTIONS_DEFAULT=GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libgps WEBENGINE_DESC= Add dependency on qt5-webengine WEBENGINE_USE= QT=webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets .include diff --git a/astro/marble/distinfo b/astro/marble/distinfo index bc904c6c1bdb..c784d8e7408b 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101793 -SHA256 (KDE/release-service/22.04.0/marble-22.04.0.tar.xz) = eb39219936b387dae4743638fe8ac5cf7f5654f4b4aff06a7c7b67e177799962 -SIZE (KDE/release-service/22.04.0/marble-22.04.0.tar.xz) = 53675488 +TIMESTAMP = 1652179709 +SHA256 (KDE/release-service/22.04.1/marble-22.04.1.tar.xz) = 359b14486376c387e990eb4836b058495e03a69791bbafd560f1034af0b9b857 +SIZE (KDE/release-service/22.04.1/marble-22.04.1.tar.xz) = 53674572 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index a926cd9e55a9..18bddc96807a 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101715 -SHA256 (KDE/release-service/22.04.0/audiocd-kio-22.04.0.tar.xz) = d991b44fb9432303c01dc4a72c4a645419730a61df7f45b09172a0874c086c80 -SIZE (KDE/release-service/22.04.0/audiocd-kio-22.04.0.tar.xz) = 523968 +TIMESTAMP = 1652179616 +SHA256 (KDE/release-service/22.04.1/audiocd-kio-22.04.1.tar.xz) = 14e7adc9401b852325aa80b47a666e90a89cd8c62d387fa98904a7e30cb456d5 +SIZE (KDE/release-service/22.04.1/audiocd-kio-22.04.1.tar.xz) = 527336 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index a100548a3fca..62045a2e57f7 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101714 -SHA256 (KDE/release-service/22.04.0/elisa-22.04.0.tar.xz) = b8b379a02a4e8502f7d3333cade2de25b36bf43cb6161f1779669b6623a5a33e -SIZE (KDE/release-service/22.04.0/elisa-22.04.0.tar.xz) = 1747176 +TIMESTAMP = 1652179612 +SHA256 (KDE/release-service/22.04.1/elisa-22.04.1.tar.xz) = 77bea9ed938ccda42818fc89612c86242e391fba435ba4a48a832404be155e05 +SIZE (KDE/release-service/22.04.1/elisa-22.04.1.tar.xz) = 1747180 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 9336927576f2..a63aea960934 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101718 -SHA256 (KDE/release-service/22.04.0/juk-22.04.0.tar.xz) = dd174ff78d318cd9cfdc970429b832258e98abe8687e642edd0a8a01e44d5217 -SIZE (KDE/release-service/22.04.0/juk-22.04.0.tar.xz) = 2014888 +TIMESTAMP = 1652179617 +SHA256 (KDE/release-service/22.04.1/juk-22.04.1.tar.xz) = a0aeeafedacc9b9569152e334e83c76dcd1dbb9b201664ad52f56371da8b2cb1 +SIZE (KDE/release-service/22.04.1/juk-22.04.1.tar.xz) = 2015336 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 899523ebca46..afe4a99aef56 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101713 -SHA256 (KDE/release-service/22.04.0/kmix-22.04.0.tar.xz) = 3f41a53cb7033fde10ae92b693a6b84c0da045e570e83136dbc659afa89e5e7a -SIZE (KDE/release-service/22.04.0/kmix-22.04.0.tar.xz) = 1163708 +TIMESTAMP = 1652179615 +SHA256 (KDE/release-service/22.04.1/kmix-22.04.1.tar.xz) = 5cb779f8c899025d32893913ef5c7b54cb9091b20a7712a161a9ae309b1a8eba +SIZE (KDE/release-service/22.04.1/kmix-22.04.1.tar.xz) = 1163664 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 1b8f1b37bb8c..1cba216961d2 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101716 -SHA256 (KDE/release-service/22.04.0/kwave-22.04.0.tar.xz) = 86857be46eb838aa4efe76c7468bf403c08c331e830c59b12aefa6cbd57f429d -SIZE (KDE/release-service/22.04.0/kwave-22.04.0.tar.xz) = 6925956 +TIMESTAMP = 1652179611 +SHA256 (KDE/release-service/22.04.1/kwave-22.04.1.tar.xz) = fff7b95bbb1d79b2e2104b1c9b7e1606bec4f03924ca4d34f4688d89dd21a882 +SIZE (KDE/release-service/22.04.1/kwave-22.04.1.tar.xz) = 6926340 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 3ccc90979aad..0ea0df28e55a 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101719 -SHA256 (KDE/release-service/22.04.0/libkcddb-22.04.0.tar.xz) = ddc91cc5112c5a749fccf18bb9a6b169279f6d5658fed3b4d60646d9ccbb0775 -SIZE (KDE/release-service/22.04.0/libkcddb-22.04.0.tar.xz) = 436380 +TIMESTAMP = 1652179613 +SHA256 (KDE/release-service/22.04.1/libkcddb-22.04.1.tar.xz) = 10538a73e7e463fb8a7e98f4b43be6c995932402ce4f79345cc5b7779cc30b00 +SIZE (KDE/release-service/22.04.1/libkcddb-22.04.1.tar.xz) = 436224 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 08b50b032cc7..c62e2ec2d388 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101717 -SHA256 (KDE/release-service/22.04.0/libkcompactdisc-22.04.0.tar.xz) = 7f16fd7e95a03fb665723442a2235a905e3338bb2521c32a1dc1b12198c05f94 -SIZE (KDE/release-service/22.04.0/libkcompactdisc-22.04.0.tar.xz) = 97284 +TIMESTAMP = 1652179614 +SHA256 (KDE/release-service/22.04.1/libkcompactdisc-22.04.1.tar.xz) = 869beaaa2097f7bdafd921f89070d4c72eb0ceaf28dd22c6bd30835c7134451b +SIZE (KDE/release-service/22.04.1/libkcompactdisc-22.04.1.tar.xz) = 97240 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 4e2e01678e31..5a1cf9e3056c 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -1,86 +1,85 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt CONFLICTS= akonadi akonadi-kf5-git USES= cmake compiler:c++11-lib gettext gnome kde:5 qt:5 \ shared-mime-info tar:xz USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews \ kio service windowsystem widgetsaddons xmlgui \ designerplugin_build ecm_build \ designerplugin_run USE_QT= concurrent core dbus designer gui network sql testlib widgets xml \ buildtools_build qmake_build CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE OPTIONS_SUB= yes OPTIONS_DEFAULT= MYSQL MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server qt:5 MYSQL_USE= QT=sql-mysql_run MYSQL_CMAKE_BOOL= AKONADI_BUILD_MYSQL PGSQL_DESC= Install PostgreSQL Qt plugin # Do not add a dependency on PostgreSQL server as someone preferring # it over MySQL might like to use some advanced configuration, like a # remote server. #PGSQL_USE= PGSQL=server PGSQL_USES= qt:5 PGSQL_USE= QT=sql-pgsql_run PGSQL_CMAKE_BOOL= AKONADI_BUILD_PGSQL SQLITE_DESC= Enable SQLite backend SQLITE_USES= qt:5 sqlite:3 SQLITE_USE= QT=sql-sqlite3_run SQLITE_CMAKE_BOOL= AKONADI_BUILD_QSQLITE .include # Multiple backends may be enabled, but there can be only # one default. Set a default (the user can change it locally) # based on the selected backends, preferring MySQL (if enabled). # # If you build this port with only a single backend selected, # that one will be the default. This is useful for users of SQLite. .if ${PORT_OPTIONS:MMYSQL} CMAKE_ARGS+= -DDATABASE_BACKEND=MYSQL .else . if ${PORT_OPTIONS:MPGSQL} CMAKE_ARGS+= -DDATABASE_BACKEND=POSTGRES . else . if ${PORT_OPTIONS:MSQLITE} CMAKE_ARGS+= -DDATABASE_BACKEND=SQLITE . else # Nothing else selected, very odd CMAKE_ARGS+= -DDATABASE_BACKEND=MYSQL . endif . endif .endif post-patch: # To avoid overflow, MySQL settings need to be lower than # INT_MAX / kern.hz. This setting assumes kern.hz=2000, and # it's nothing but a temporary hack. ${REINPLACE_CMD} -e '/wait_timeout/ s|31536000|1073741|' \ ${PATCH_WRKSRC}/src/server/storage/*.conf .include diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 94a3339f53ed..8d237f170c2a 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101913 -SHA256 (KDE/release-service/22.04.0/akonadi-22.04.0.tar.xz) = 07c6cce2165b873dcc331e2e961c45c2ab27efd8fd787d5c36ae8c719abd8bec -SIZE (KDE/release-service/22.04.0/akonadi-22.04.0.tar.xz) = 1612416 +TIMESTAMP = 1652179619 +SHA256 (KDE/release-service/22.04.1/akonadi-22.04.1.tar.xz) = daf8cde6cdfe3bebf1b56ffa33705deab479454d0622fcd824e839f89a213981 +SIZE (KDE/release-service/22.04.1/akonadi-22.04.1.tar.xz) = 1612456 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 6cb577a093f0..b5716da453f4 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101822 -SHA256 (KDE/release-service/22.04.0/akonadi-calendar-tools-22.04.0.tar.xz) = 2a4748adf32fdcfdc5a65f656719f777fed46aa55c986bbd41f1016c733ce2e0 -SIZE (KDE/release-service/22.04.0/akonadi-calendar-tools-22.04.0.tar.xz) = 236948 +TIMESTAMP = 1652179702 +SHA256 (KDE/release-service/22.04.1/akonadi-calendar-tools-22.04.1.tar.xz) = b2c751991b3b66befdf572c8d7d9b9cf7e9996bc5a996a51a10cb5594b19c0ea +SIZE (KDE/release-service/22.04.1/akonadi-calendar-tools-22.04.1.tar.xz) = 236996 diff --git a/deskutils/akonadi-import-wizard/Makefile b/deskutils/akonadi-import-wizard/Makefile index 953473c2aa03..591324efb699 100644 --- a/deskutils/akonadi-import-wizard/Makefile +++ b/deskutils/akonadi-import-wizard/Makefile @@ -1,33 +1,32 @@ PORTNAME= akonadi-import-wizard DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import data from other mail clients to KMail LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 \ libqt5keychain.so:security/qtkeychain USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash dbusaddons i18n itemmodels kio service wallet \ widgetsaddons xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ identitymanagement imap libkdepim libkleo mailcommon mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 9734b4fa0aaa..746ceb309e66 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101808 -SHA256 (KDE/release-service/22.04.0/akonadi-import-wizard-22.04.0.tar.xz) = b9b2814f0598164ece31687ee0f965a9476c8919175ddda9d43580da46aaba08 -SIZE (KDE/release-service/22.04.0/akonadi-import-wizard-22.04.0.tar.xz) = 511020 +TIMESTAMP = 1652179684 +SHA256 (KDE/release-service/22.04.1/akonadi-import-wizard-22.04.1.tar.xz) = 7244e9c7a1f61a3ebdfc4b5331ce42ecf678cb483c8f0a06d6dbbd52d0fff761 +SIZE (KDE/release-service/22.04.1/akonadi-import-wizard-22.04.1.tar.xz) = 511004 diff --git a/deskutils/akonadiconsole/Makefile b/deskutils/akonadiconsole/Makefile index c622dc3f88ea..939ea7c13a7b 100644 --- a/deskutils/akonadiconsole/Makefile +++ b/deskutils/akonadiconsole/Makefile @@ -1,39 +1,38 @@ PORTNAME= akonadiconsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Akonadi management and debugging console LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 \ libical.so:devel/libical \ libxapian.so:databases/xapian-core USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadisearch calendarcore calendarsupport contacts \ grantleetheme identitymanagement libkdepim libkleo messagelib mime \ pimcommon pimtextedit USE_QT= concurrent core dbus gui network printsupport sql widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 888faaa9fa32..0da0511ee551 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101807 -SHA256 (KDE/release-service/22.04.0/akonadiconsole-22.04.0.tar.xz) = 800e27cea45191dca55200dc200d62003363ff60243e51ccde526f37d06ba383 -SIZE (KDE/release-service/22.04.0/akonadiconsole-22.04.0.tar.xz) = 200836 +TIMESTAMP = 1652179697 +SHA256 (KDE/release-service/22.04.1/akonadiconsole-22.04.1.tar.xz) = a9af03d117e0e2341598ff7266a2c6319a89b0047de11756ca7758f9331a51fa +SIZE (KDE/release-service/22.04.1/akonadiconsole-22.04.1.tar.xz) = 200896 diff --git a/deskutils/akregator/Makefile b/deskutils/akregator/Makefile index fc2ad10f106d..197fcaef45a4 100644 --- a/deskutils/akregator/Makefile +++ b/deskutils/akregator/Makefile @@ -1,35 +1,34 @@ PORTNAME= akregator DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Feed reader for KDE LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n iconthemes itemmodels jobwidgets kcmutils kio \ notifications notifyconfig parts service solid sonnet texteditor\ textwidgets widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadimime contacts grantleetheme kontactinterface \ libkdepim libkleo messagelib mime pimcommon pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 30b02e278e5d..fe7c89eed182 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101822 -SHA256 (KDE/release-service/22.04.0/akregator-22.04.0.tar.xz) = f187505615e40b5aec7216bf1880c2192c7db90edd23a6806af3bfa22be28a89 -SIZE (KDE/release-service/22.04.0/akregator-22.04.0.tar.xz) = 2253016 +TIMESTAMP = 1652179701 +SHA256 (KDE/release-service/22.04.1/akregator-22.04.1.tar.xz) = e29f8af6c6526591d87feb221481a6ba79141a1bd12ca87fc4af46c609fe56a1 +SIZE (KDE/release-service/22.04.1/akregator-22.04.1.tar.xz) = 2253756 diff --git a/deskutils/grantlee-editor/Makefile b/deskutils/grantlee-editor/Makefile index 7b5832fd429b..6332727f3549 100644 --- a/deskutils/grantlee-editor/Makefile +++ b/deskutils/grantlee-editor/Makefile @@ -1,36 +1,35 @@ PORTNAME= grantlee-editor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Editor for Grantlee themes LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 \ kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons i18n itemmodels jobwidgets \ kio newstuff service solid syntaxhighlighting texteditor \ widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ libkleo messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index df6d439ddb67..7bdd27def39f 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101811 -SHA256 (KDE/release-service/22.04.0/grantlee-editor-22.04.0.tar.xz) = 306e777a9baba05e84295760d8a03666fb4fabc5b42e5bdcc29dc046a0b4cc03 -SIZE (KDE/release-service/22.04.0/grantlee-editor-22.04.0.tar.xz) = 112312 +TIMESTAMP = 1652179708 +SHA256 (KDE/release-service/22.04.1/grantlee-editor-22.04.1.tar.xz) = 84e0a43a6ef72caf3c0a42b2e906a1a63afa258693f3818785e1937e1a3b3a7a +SIZE (KDE/release-service/22.04.1/grantlee-editor-22.04.1.tar.xz) = 112296 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 27a49ed4fe0b..fc33de666ca4 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101821 -SHA256 (KDE/release-service/22.04.0/grantleetheme-22.04.0.tar.xz) = 58f45f21e41cf1588478e8b2b23b4e7b89ec34b9a1e64dc0441203c1a930bdd1 -SIZE (KDE/release-service/22.04.0/grantleetheme-22.04.0.tar.xz) = 61372 +TIMESTAMP = 1652179699 +SHA256 (KDE/release-service/22.04.1/grantleetheme-22.04.1.tar.xz) = 7532503e0a3b090734217db20cc6461140c02cd0d00b85793064724f964e7a2a +SIZE (KDE/release-service/22.04.1/grantleetheme-22.04.1.tar.xz) = 61452 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index ab675752c133..f3cac095463e 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101812 -SHA256 (KDE/release-service/22.04.0/itinerary-22.04.0.tar.xz) = e1680affaadf4d6c2c718065296b80c247a3f727e1f8e82a8d515965eacf4061 -SIZE (KDE/release-service/22.04.0/itinerary-22.04.0.tar.xz) = 499384 +TIMESTAMP = 1652179685 +SHA256 (KDE/release-service/22.04.1/itinerary-22.04.1.tar.xz) = 9e5115333b05ca90a66a275ece02310ad361fce80e8089aec2c1d77a5eaa0026 +SIZE (KDE/release-service/22.04.1/itinerary-22.04.1.tar.xz) = 499492 diff --git a/deskutils/kaddressbook/Makefile b/deskutils/kaddressbook/Makefile index 6ee51c312f15..14ee0692f6a5 100644 --- a/deskutils/kaddressbook/Makefile +++ b/deskutils/kaddressbook/Makefile @@ -1,33 +1,32 @@ PORTNAME= kaddressbook DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE contact manager LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ prison service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme \ imap kontactinterface libkdepim mime pimcommon \ kdepim-runtime5_run USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 1128d425871e..9fecc150378b 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101819 -SHA256 (KDE/release-service/22.04.0/kaddressbook-22.04.0.tar.xz) = c051ee4cb4a456ffa1356640ef39b785a857ea6e7ccf4ce22fc37ba47433436d -SIZE (KDE/release-service/22.04.0/kaddressbook-22.04.0.tar.xz) = 3350076 +TIMESTAMP = 1652179700 +SHA256 (KDE/release-service/22.04.1/kaddressbook-22.04.1.tar.xz) = c0a467b6de83a07ef6b92aa1ff1f7eea8740185a269aaf5a1656e5439c5ae6d8 +SIZE (KDE/release-service/22.04.1/kaddressbook-22.04.1.tar.xz) = 3349884 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 4b8c82b202c4..f45f9331abbc 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101818 -SHA256 (KDE/release-service/22.04.0/kalarm-22.04.0.tar.xz) = 18d511474c82074e88e5e17722e8500de12248f66d53a0a5ef4814ba4e911f94 -SIZE (KDE/release-service/22.04.0/kalarm-22.04.0.tar.xz) = 2317832 +TIMESTAMP = 1652179704 +SHA256 (KDE/release-service/22.04.1/kalarm-22.04.1.tar.xz) = 958106e7c537ee5d006c4bae49d4708eeb8e8a19aa1e8485d1d474feaa478f11 +SIZE (KDE/release-service/22.04.1/kalarm-22.04.1.tar.xz) = 2318516 diff --git a/deskutils/kalendar/distinfo b/deskutils/kalendar/distinfo index 936e6dd133c1..12718550a999 100644 --- a/deskutils/kalendar/distinfo +++ b/deskutils/kalendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650540594 -SHA256 (KDE/release-service/22.04.0/kalendar-22.04.0.tar.xz) = 7f7fa0345aab4eff740e82814fe7b300a19bed5ca34239ab8d7edaa07639aa2e -SIZE (KDE/release-service/22.04.0/kalendar-22.04.0.tar.xz) = 254112 +TIMESTAMP = 1652179689 +SHA256 (KDE/release-service/22.04.1/kalendar-22.04.1.tar.xz) = 56436e5e66b2e9d58d49ae7307fe166f2d9821465fb3574bead90962a3b161ee +SIZE (KDE/release-service/22.04.1/kalendar-22.04.1.tar.xz) = 259100 diff --git a/deskutils/kalendar/pkg-plist b/deskutils/kalendar/pkg-plist index f9ef12568533..f06ffde9965f 100644 --- a/deskutils/kalendar/pkg-plist +++ b/deskutils/kalendar/pkg-plist @@ -1,28 +1,29 @@ bin/kalendar share/applications/org.kde.kalendar.desktop share/icons/hicolor/scalable/apps/org.kde.kalendar.svg share/locale/ar/LC_MESSAGES/kalendar.mo share/locale/az/LC_MESSAGES/kalendar.mo share/locale/ca/LC_MESSAGES/kalendar.mo share/locale/ca@valencia/LC_MESSAGES/kalendar.mo share/locale/cs/LC_MESSAGES/kalendar.mo share/locale/de/LC_MESSAGES/kalendar.mo share/locale/el/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/kalendar.mo share/locale/es/LC_MESSAGES/kalendar.mo share/locale/fi/LC_MESSAGES/kalendar.mo share/locale/fr/LC_MESSAGES/kalendar.mo share/locale/hu/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/kalendar.mo share/locale/ko/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/kalendar.mo share/locale/pl/LC_MESSAGES/kalendar.mo share/locale/pt/LC_MESSAGES/kalendar.mo share/locale/pt_BR/LC_MESSAGES/kalendar.mo share/locale/sk/LC_MESSAGES/kalendar.mo share/locale/sl/LC_MESSAGES/kalendar.mo share/locale/sv/LC_MESSAGES/kalendar.mo +share/locale/ta/LC_MESSAGES/kalendar.mo share/locale/uk/LC_MESSAGES/kalendar.mo share/locale/zh_CN/LC_MESSAGES/kalendar.mo share/metainfo/org.kde.kalendar.appdata.xml share/qlogging-categories5/kalendar.categories diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 5c93c149c101..20f0f9e375d6 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101824 -SHA256 (KDE/release-service/22.04.0/kcharselect-22.04.0.tar.xz) = e1f86d5d1eae7433ef49339d855caa6f9d847460b29f096c634d786640e261ab -SIZE (KDE/release-service/22.04.0/kcharselect-22.04.0.tar.xz) = 373892 +TIMESTAMP = 1652179696 +SHA256 (KDE/release-service/22.04.1/kcharselect-22.04.1.tar.xz) = 69522b00031af8bc564dfcf17472d410683e560a0443e2e41a51370410769c68 +SIZE (KDE/release-service/22.04.1/kcharselect-22.04.1.tar.xz) = 373936 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index ebff65e24278..92b2e3f777c0 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101825 -SHA256 (KDE/release-service/22.04.0/kdeconnect-kde-22.04.0.tar.xz) = 9b2137a2c5540448ac3af7176f30da3c6e790ea217924de7ce685a5a3450ff9f -SIZE (KDE/release-service/22.04.0/kdeconnect-kde-22.04.0.tar.xz) = 608700 +TIMESTAMP = 1652179691 +SHA256 (KDE/release-service/22.04.1/kdeconnect-kde-22.04.1.tar.xz) = 6dd9ba48bb80ba607e73097bf05fb8d914f3ccc1d10f8ea8e279a918c2b0a57a +SIZE (KDE/release-service/22.04.1/kdeconnect-kde-22.04.1.tar.xz) = 608772 diff --git a/deskutils/kdepim-addons/Makefile b/deskutils/kdepim-addons/Makefile index d0a11e1b4d5c..cdc583686298 100644 --- a/deskutils/kdepim-addons/Makefile +++ b/deskutils/kdepim-addons/Makefile @@ -1,43 +1,42 @@ PORTNAME= kdepim-addons DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM addons LICENSE= LGPL21 BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews jobwidgets \ kdeclarative khtml kio parts prison service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadiimportwizard \ akonadimime akonadinotes calendarcore calendarsupport \ calendarutils contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap incidenceeditor \ kaddressbook kitinerary kontactinterface kpkpass libkdepim \ libkleo libksieve mailcommon mailimporter mailtransport \ messagelib mime pimcommon pimtextedit tnef USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 81619f903e02..426d0fbadc3f 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101827 -SHA256 (KDE/release-service/22.04.0/kdepim-addons-22.04.0.tar.xz) = 81e29044a835e766da76daf28852bc7da6f1e15411ad0b253e1766ee81519274 -SIZE (KDE/release-service/22.04.0/kdepim-addons-22.04.0.tar.xz) = 2310692 +TIMESTAMP = 1652179698 +SHA256 (KDE/release-service/22.04.1/kdepim-addons-22.04.1.tar.xz) = ae44004d989328a21476d3226a79c2a39667cd3bc820b779a83adb604df1af64 +SIZE (KDE/release-service/22.04.1/kdepim-addons-22.04.1.tar.xz) = 2310244 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index b6d010f43f32..5ea10158a813 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -1,41 +1,40 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services LICENSE= LGPL21 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 \ libqt5keychain.so:security/qtkeychain USES= cmake:noninja compiler:c++11-lib gettext kde:5 qca qt:5 \ shared-mime-info tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdav kdelibs4support kio \ kross notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes \ akonadicalendar akonadisearch calendarcore \ calendarutils contacts gapi grantleetheme identitymanagement imap \ kontactinterface ldap libkdepim mailtransport mbox mime pimcommon \ pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network networkauth printsupport speech \ script webchannel webengine widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index d9ce1eced558..0f794da2bae6 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101823 -SHA256 (KDE/release-service/22.04.0/kdepim-runtime-22.04.0.tar.xz) = 422e9bf5eeda25c843f4d14c731e8a9b1c741d7f52978232bd16650f0c4843e5 -SIZE (KDE/release-service/22.04.0/kdepim-runtime-22.04.0.tar.xz) = 1771044 +TIMESTAMP = 1652179693 +SHA256 (KDE/release-service/22.04.1/kdepim-runtime-22.04.1.tar.xz) = b5fb61f475ce441a9db5b8258b1cb510b26391d95d95a960305250f569fb903f +SIZE (KDE/release-service/22.04.1/kdepim-runtime-22.04.1.tar.xz) = 1770604 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index d7e88999f2d1..0024904cced9 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101826 -SHA256 (KDE/release-service/22.04.0/keditbookmarks-22.04.0.tar.xz) = d6daabf60acec49cac1401da1019f965a96e8fd41b967694b2c8fd6723b87327 -SIZE (KDE/release-service/22.04.0/keditbookmarks-22.04.0.tar.xz) = 203060 +TIMESTAMP = 1652179688 +SHA256 (KDE/release-service/22.04.1/keditbookmarks-22.04.1.tar.xz) = c22b7649f0779cc51f64ac2dca95174b8e41da2b54f65cef02290ae021413d2e +SIZE (KDE/release-service/22.04.1/keditbookmarks-22.04.1.tar.xz) = 203076 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index db43332ffb04..573f4bea0462 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101805 -SHA256 (KDE/release-service/22.04.0/kfind-22.04.0.tar.xz) = 5133cad0be64fb3fc3f9666b01b4cff8141016f31c244ed39a3e21fc298b6935 -SIZE (KDE/release-service/22.04.0/kfind-22.04.0.tar.xz) = 287616 +TIMESTAMP = 1652179695 +SHA256 (KDE/release-service/22.04.1/kfind-22.04.1.tar.xz) = ac92abee62045f7eb97aaf12b6f8e272e3b066681f6b0f07976a5f456d9639d7 +SIZE (KDE/release-service/22.04.1/kfind-22.04.1.tar.xz) = 287552 diff --git a/deskutils/kmail-account-wizard/Makefile b/deskutils/kmail-account-wizard/Makefile index c42f410304c5..1b273a0d04f3 100644 --- a/deskutils/kmail-account-wizard/Makefile +++ b/deskutils/kmail-account-wizard/Makefile @@ -1,33 +1,32 @@ PORTNAME= kmail-account-wizard DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE mail account wizard LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 \ qt:5 shared-mime-info tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons i18n itemmodels itemviews kcmutils kio kross \ newstuff notifications notifyconfig service texteditor wallet \ widgetsaddons xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadimime identitymanagement ldap libkdepim libkleo \ mailtransport mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network script widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 08e4ca177c76..970977992c38 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101804 -SHA256 (KDE/release-service/22.04.0/kmail-account-wizard-22.04.0.tar.xz) = a789d393fad7ae094368c085ffdc39ecdc02b595efb4dadcd80854133ac26b5f -SIZE (KDE/release-service/22.04.0/kmail-account-wizard-22.04.0.tar.xz) = 171580 +TIMESTAMP = 1652179693 +SHA256 (KDE/release-service/22.04.1/kmail-account-wizard-22.04.1.tar.xz) = d3253e6395e27ef42904b50b8cd7abcc6797351efcf54d45b3ce12b41bba2f85 +SIZE (KDE/release-service/22.04.1/kmail-account-wizard-22.04.1.tar.xz) = 171576 diff --git a/deskutils/kmail/Makefile b/deskutils/kmail/Makefile index f0f3faca5622..9f8d471360e0 100644 --- a/deskutils/kmail/Makefile +++ b/deskutils/kmail/Makefile @@ -1,48 +1,47 @@ PORTNAME= kmail DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE mail client LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 \ libqt5keychain.so:security/qtkeychain RUN_DEPENDS= accountwizard:deskutils/kmail-account-wizard \ akonadiimportwizard:deskutils/akonadi-import-wizard \ mboximporter:deskutils/mbox-importer \ sieveeditor:deskutils/pim-sieve-editor USES= cmake compiler:c++11-lib cpe desktop-file-utils gettext kde:5 qt:5 tar:xz CPE_VENDOR= kde USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes imap \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications notifyconfig parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ calendarutils contacts gravatar grantleetheme \ identitymanagement libkdepim libkleo libksieve \ kontactinterface ldap mailcommon mailtransport messagelib \ mime pimcommon pimtextedit tnef \ kdepim-runtime5_run USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 84e7faaef009..f9c04a22fae1 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101813 -SHA256 (KDE/release-service/22.04.0/kmail-22.04.0.tar.xz) = 79f7e3a2383b00ac6b32a7cd90cb7f49e27bd724ed240258ffd667e2432de6e6 -SIZE (KDE/release-service/22.04.0/kmail-22.04.0.tar.xz) = 7150708 +TIMESTAMP = 1652179686 +SHA256 (KDE/release-service/22.04.1/kmail-22.04.1.tar.xz) = a44043a7c293981494ad5552db29f5aff1d8859013352c96791ccae3d15e93e8 +SIZE (KDE/release-service/22.04.1/kmail-22.04.1.tar.xz) = 7151996 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index b6ffa517249d..6b1f8c3ecd1a 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101820 -SHA256 (KDE/release-service/22.04.0/knotes-22.04.0.tar.xz) = 555357eb9163e056777252221de174c5d8dea366c22070d3bed30bbf59d87908 -SIZE (KDE/release-service/22.04.0/knotes-22.04.0.tar.xz) = 340176 +TIMESTAMP = 1652179705 +SHA256 (KDE/release-service/22.04.1/knotes-22.04.1.tar.xz) = 41b46d073bfa312bd69675d99d7b5b290ddf9d59c1ac21c0ff758c9674742ac0 +SIZE (KDE/release-service/22.04.1/knotes-22.04.1.tar.xz) = 340280 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 4f405ae9ce73..190cdc0d0379 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101806 -SHA256 (KDE/release-service/22.04.0/kontact-22.04.0.tar.xz) = 3b897bacec9f1c208dd361b8c0a85a72a9be5e4277d2c471586b9492bfe257a6 -SIZE (KDE/release-service/22.04.0/kontact-22.04.0.tar.xz) = 825644 +TIMESTAMP = 1652179694 +SHA256 (KDE/release-service/22.04.1/kontact-22.04.1.tar.xz) = 962321abcf6d1f1aeed2368b98159e8afab0f71eef4c81ae7ce48c6267b479a6 +SIZE (KDE/release-service/22.04.1/kontact-22.04.1.tar.xz) = 825508 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 1ac51ba8961f..8babb0973c69 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101814 -SHA256 (KDE/release-service/22.04.0/korganizer-22.04.0.tar.xz) = 51937ec5254e3f5347d5f0b3cab36d831dae430607467e58bea5c4c879b90d8b -SIZE (KDE/release-service/22.04.0/korganizer-22.04.0.tar.xz) = 2309316 +TIMESTAMP = 1652179703 +SHA256 (KDE/release-service/22.04.1/korganizer-22.04.1.tar.xz) = 594ce6973ff95d278f546db012deac6dc454cecc05b92e499eaac88716d45534 +SIZE (KDE/release-service/22.04.1/korganizer-22.04.1.tar.xz) = 2309600 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 2f7e365a862c..e159c2e9925d 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101809 -SHA256 (KDE/release-service/22.04.0/kruler-22.04.0.tar.xz) = f4f189b606813fb2f42e40f7664adafafdcd210e474909b9e93ff30eba18cd45 -SIZE (KDE/release-service/22.04.0/kruler-22.04.0.tar.xz) = 277020 +TIMESTAMP = 1652179690 +SHA256 (KDE/release-service/22.04.1/kruler-22.04.1.tar.xz) = f7848cac9c7a3c6c3d03edc90dc78ff7df97a1beff374e469419f9ca4112e16e +SIZE (KDE/release-service/22.04.1/kruler-22.04.1.tar.xz) = 277028 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index e586c3f05219..1cede1b86a3c 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101810 -SHA256 (KDE/release-service/22.04.0/libkdepim-22.04.0.tar.xz) = 8d59eee1ad8c494cb914d261037a78c0db80767a8931b443a218362aea479891 -SIZE (KDE/release-service/22.04.0/libkdepim-22.04.0.tar.xz) = 254336 +TIMESTAMP = 1652179687 +SHA256 (KDE/release-service/22.04.1/libkdepim-22.04.1.tar.xz) = 963bbeb53f34576354fe5e040e79de80ea536dec342ee59058716b2708f74174 +SIZE (KDE/release-service/22.04.1/libkdepim-22.04.1.tar.xz) = 254384 diff --git a/deskutils/mbox-importer/Makefile b/deskutils/mbox-importer/Makefile index 5e2dfa6deaa9..6b375f9c777e 100644 --- a/deskutils/mbox-importer/Makefile +++ b/deskutils/mbox-importer/Makefile @@ -1,31 +1,30 @@ PORTNAME= mbox-importer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import mbox files to KMail LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemmodels kio service widgetsaddons \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts \ grantleetheme identitymanagement imap libkdepim libkleo mailcommon \ mailimporter messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 9efd8b194475..0dc5aadd3f38 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101815 -SHA256 (KDE/release-service/22.04.0/mbox-importer-22.04.0.tar.xz) = 8a9b71bb60220302685638d71d858fc6cc319ba79d993aea593b481f3f3594c8 -SIZE (KDE/release-service/22.04.0/mbox-importer-22.04.0.tar.xz) = 29080 +TIMESTAMP = 1652179706 +SHA256 (KDE/release-service/22.04.1/mbox-importer-22.04.1.tar.xz) = f1cb566daf97f387afdad7bc951be49cd290b3a261fbff08539ae7f3f92b5492 +SIZE (KDE/release-service/22.04.1/mbox-importer-22.04.1.tar.xz) = 29084 diff --git a/deskutils/pim-data-exporter/Makefile b/deskutils/pim-data-exporter/Makefile index 99b467278571..2d2a60007469 100644 --- a/deskutils/pim-data-exporter/Makefile +++ b/deskutils/pim-data-exporter/Makefile @@ -1,33 +1,32 @@ PORTNAME= pim-data-exporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import and export KDE PIM settings LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n itemmodels itemviews \ jobwidgets kio notifications service solid wallet \ widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes calendarcore contacts \ grantleetheme identitymanagement imap libkdepim libkleo mailcommon \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 2f9d0c7a6137..bf59b492ff29 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101817 -SHA256 (KDE/release-service/22.04.0/pim-data-exporter-22.04.0.tar.xz) = d87780146c585e29dcefd21f4c587eb50e1797e881d95e5da54dc9167734070a -SIZE (KDE/release-service/22.04.0/pim-data-exporter-22.04.0.tar.xz) = 405152 +TIMESTAMP = 1652179692 +SHA256 (KDE/release-service/22.04.1/pim-data-exporter-22.04.1.tar.xz) = 71bde8eb1fde57087a20c63c38b4d774f93f580b7f3a356196b3fb77f0da6b96 +SIZE (KDE/release-service/22.04.1/pim-data-exporter-22.04.1.tar.xz) = 404584 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index f6b4066dd7a8..21624d64f919 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101813 -SHA256 (KDE/release-service/22.04.0/pim-sieve-editor-22.04.0.tar.xz) = 2909dd4dd19f3e6a2e49a92bcdcd43f436fc013a5be3a9683a3ca901ed223cb1 -SIZE (KDE/release-service/22.04.0/pim-sieve-editor-22.04.0.tar.xz) = 452956 +TIMESTAMP = 1652179683 +SHA256 (KDE/release-service/22.04.1/pim-sieve-editor-22.04.1.tar.xz) = f318418586cbab198e8b23811499654bbb9d896228fdf8ecf1a79b0e4631790a +SIZE (KDE/release-service/22.04.1/pim-sieve-editor-22.04.1.tar.xz) = 452876 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index cb918d5ec7cc..e2417b8d326d 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101816 -SHA256 (KDE/release-service/22.04.0/zanshin-22.04.0.tar.xz) = a9be6507ec8c68bafb49dd80885e65abd4797b60b7c3ad90d0bd755267b21ab4 -SIZE (KDE/release-service/22.04.0/zanshin-22.04.0.tar.xz) = 353596 +TIMESTAMP = 1652179707 +SHA256 (KDE/release-service/22.04.1/zanshin-22.04.1.tar.xz) = 6853be6ed76994ce17bc4dab0b290d31631e0450dfdad855bb935747e6513f3b +SIZE (KDE/release-service/22.04.1/zanshin-22.04.1.tar.xz) = 353604 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 96cd8692b223..d8e93d081e7f 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101911 -SHA256 (KDE/release-service/22.04.0/cervisia-22.04.0.tar.xz) = 692785cd8660646d6044efe3b8753db68a4d9e5117940f9bc8cea4a7f0deaf09 -SIZE (KDE/release-service/22.04.0/cervisia-22.04.0.tar.xz) = 1913452 +TIMESTAMP = 1652179586 +SHA256 (KDE/release-service/22.04.1/cervisia-22.04.1.tar.xz) = 5c34bb5447e592c61ae0e56e0f45a028daaad9caa83e0961040b7a1584382737 +SIZE (KDE/release-service/22.04.1/cervisia-22.04.1.tar.xz) = 1913428 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index b4627aa6a60c..0f0b9d26a7e1 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101903 -SHA256 (KDE/release-service/22.04.0/dolphin-plugins-22.04.0.tar.xz) = 1cd12901c8dfe7220e7b5e445ddcbb1cdc375d1379560054e9dce6201c828150 -SIZE (KDE/release-service/22.04.0/dolphin-plugins-22.04.0.tar.xz) = 256164 +TIMESTAMP = 1652179580 +SHA256 (KDE/release-service/22.04.1/dolphin-plugins-22.04.1.tar.xz) = 81220b19a5224fe720a2c5755900519b29b625a89051fd9ce269d611b122b0ff +SIZE (KDE/release-service/22.04.1/dolphin-plugins-22.04.1.tar.xz) = 256196 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 6af8a69bff01..ea2b2a4dd3f1 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101912 -SHA256 (KDE/release-service/22.04.0/kapptemplate-22.04.0.tar.xz) = 57ec258d680e38e164dc0645294e7955a13715e559c8f59598ee60dc6c506a61 -SIZE (KDE/release-service/22.04.0/kapptemplate-22.04.0.tar.xz) = 334496 +TIMESTAMP = 1652179574 +SHA256 (KDE/release-service/22.04.1/kapptemplate-22.04.1.tar.xz) = aed2a45d42e68cd53866c94e5f9bfbf0af679cb48c00e5ac5d7aaa43dabf079b +SIZE (KDE/release-service/22.04.1/kapptemplate-22.04.1.tar.xz) = 334488 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 10757020f386..a96a68bd230f 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101904 -SHA256 (KDE/release-service/22.04.0/kcachegrind-22.04.0.tar.xz) = aed09ea5dc01ace24c76ed69edef5111c47f53992ba45896365b53cd3fc8890d -SIZE (KDE/release-service/22.04.0/kcachegrind-22.04.0.tar.xz) = 867112 +TIMESTAMP = 1652179573 +SHA256 (KDE/release-service/22.04.1/kcachegrind-22.04.1.tar.xz) = 5af150fc24f36f67f4c86ccb7a5a85067619685c4639fa905195136e84a7785b +SIZE (KDE/release-service/22.04.1/kcachegrind-22.04.1.tar.xz) = 869696 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 94d17a40191b..23ef8ebfba98 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101899 -SHA256 (KDE/release-service/22.04.0/kde-dev-scripts-22.04.0.tar.xz) = bd095191bc405079d2b451e66457ac5cd08be28c6a68d6541b857af563d3fb28 -SIZE (KDE/release-service/22.04.0/kde-dev-scripts-22.04.0.tar.xz) = 366496 +TIMESTAMP = 1652179584 +SHA256 (KDE/release-service/22.04.1/kde-dev-scripts-22.04.1.tar.xz) = a3133d9f52e6315078d6e7137d92e18d0df75cc61ff080ef331ad528be972ce9 +SIZE (KDE/release-service/22.04.1/kde-dev-scripts-22.04.1.tar.xz) = 366500 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index b81b5057f3ec..085af10cee81 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101902 -SHA256 (KDE/release-service/22.04.0/kde-dev-utils-22.04.0.tar.xz) = 77ba3b06008d51dad7134122ad583398fbc2667e5a861c8af9664181b84a9189 -SIZE (KDE/release-service/22.04.0/kde-dev-utils-22.04.0.tar.xz) = 68404 +TIMESTAMP = 1652179585 +SHA256 (KDE/release-service/22.04.1/kde-dev-utils-22.04.1.tar.xz) = d9aedb2e4e5a46aa63572fbf579adc62651f1c114da1e30d3ad18b6eaf8928ae +SIZE (KDE/release-service/22.04.1/kde-dev-utils-22.04.1.tar.xz) = 68364 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index d41acda961d1..875fba2a7f0d 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101907 -SHA256 (KDE/release-service/22.04.0/kdesdk-thumbnailers-22.04.0.tar.xz) = 84406e57ac64f1b8361790571704aef95b7b69926713b2b63c463827b05660da -SIZE (KDE/release-service/22.04.0/kdesdk-thumbnailers-22.04.0.tar.xz) = 26412 +TIMESTAMP = 1652179571 +SHA256 (KDE/release-service/22.04.1/kdesdk-thumbnailers-22.04.1.tar.xz) = d1bee6d7dc4f40ccd0432cd3c9624c832adaecc981b3e88213a5f437424ded38 +SIZE (KDE/release-service/22.04.1/kdesdk-thumbnailers-22.04.1.tar.xz) = 26396 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 66434adb9fd9..9ede332c0235 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101905 -SHA256 (KDE/release-service/22.04.0/kdev-php-22.04.0.tar.xz) = be846cf516450e686432062ba41ce04061b9e4587e9d4e955321ab6f57f65502 -SIZE (KDE/release-service/22.04.0/kdev-php-22.04.0.tar.xz) = 1080952 +TIMESTAMP = 1652179584 +SHA256 (KDE/release-service/22.04.1/kdev-php-22.04.1.tar.xz) = 5e40d2412accda564b56710eea25c165c776b0146449b1d79b45751c97ffbbb3 +SIZE (KDE/release-service/22.04.1/kdev-php-22.04.1.tar.xz) = 1080932 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index e6266cb39ec7..34384bad2987 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101910 -SHA256 (KDE/release-service/22.04.0/kdev-python-22.04.0.tar.xz) = 11e527aa0f0a907cf5821efa3cd7e763166fe0421b9485b1e781a1321aa548dc -SIZE (KDE/release-service/22.04.0/kdev-python-22.04.0.tar.xz) = 1090888 +TIMESTAMP = 1652179578 +SHA256 (KDE/release-service/22.04.1/kdev-python-22.04.1.tar.xz) = d9dbb49425f11e6bc9b32f911b73b973ae6feacd4b676aebc2941224ca03a704 +SIZE (KDE/release-service/22.04.1/kdev-python-22.04.1.tar.xz) = 1091100 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 2e4128dc9ad3..2aeba5a183ba 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,63 +1,63 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cmake compiler:c++11-lib desktop-file-utils \ gettext grantlee:5 kde:5 qt:5 shared-mime-info shebangfix tar:xz USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons emoticons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdeclarative \ kio libksysguard newstuff notifications \ notifyconfig package parts plasma-framework purpose \ runner service solid sonnet texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network \ script sql widgets xml buildtools_build qmake_build SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm_build, testlib_build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm USE_QT+= testlib CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW -DLLVM_ROOT=${LOCALBASE}/llvm${LLVM_DEFAULT} # Versioning values, to reduce plist churn PLATFORM_VER= 36 SO_VER= 58 -SO_VER_LONG= 5.8.220400 +SO_VER_LONG= 5.8.220401 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} OPTIONS_DEFINE= WEBENGINE WEBENGINE_DESC= Use WebEngine as help reader WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_USE_OFF= QT=webkit WEBENGINE_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index ab167d316961..d703c6c21644 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101908 -SHA256 (KDE/release-service/22.04.0/kdevelop-22.04.0.tar.xz) = ab7a1828ab67475c85d84f603ab245fa762006d1a4953be42add2dfd23ae4a16 -SIZE (KDE/release-service/22.04.0/kdevelop-22.04.0.tar.xz) = 8423332 +TIMESTAMP = 1652179579 +SHA256 (KDE/release-service/22.04.1/kdevelop-22.04.1.tar.xz) = 22f3f50d2d484c821ca39f66f953d61a7f77e596ce9d38b552a721f48366cdd8 +SIZE (KDE/release-service/22.04.1/kdevelop-22.04.1.tar.xz) = 8421552 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 66d683f60b88..31e5de698d76 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101901 -SHA256 (KDE/release-service/22.04.0/kio-extras-22.04.0.tar.xz) = e6789828e2fb1a38b7633ad1de8ce9ae9296ebee5cfe12f09e8989c06b8472c6 -SIZE (KDE/release-service/22.04.0/kio-extras-22.04.0.tar.xz) = 641616 +TIMESTAMP = 1652179582 +SHA256 (KDE/release-service/22.04.1/kio-extras-22.04.1.tar.xz) = a4475107e06d740e0d3fb9e80fa3c58d389508d48d6434e4ab21d6cac25ff814 +SIZE (KDE/release-service/22.04.1/kio-extras-22.04.1.tar.xz) = 641980 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index c11783d23166..9ad1dcf0a5ed 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101900 -SHA256 (KDE/release-service/22.04.0/kirigami-gallery-22.04.0.tar.xz) = e3cfc3a8ed26ed7085111096aa417014c02ec14fa05fadfe005d9d94a622efbd -SIZE (KDE/release-service/22.04.0/kirigami-gallery-22.04.0.tar.xz) = 338008 +TIMESTAMP = 1652179576 +SHA256 (KDE/release-service/22.04.1/kirigami-gallery-22.04.1.tar.xz) = fed0db12c9639f74afe603d2d3044d5ea1993d51710a35f17f68ccc8360a52fa +SIZE (KDE/release-service/22.04.1/kirigami-gallery-22.04.1.tar.xz) = 337964 diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index c659d1c3a20b..ce085e7cecd9 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,21 +1,20 @@ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative gui network \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS # Override shared library version KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_VERSION} .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 2b8012e922e6..001be9d0dbbb 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101911 -SHA256 (KDE/release-service/22.04.0/kpublictransport-22.04.0.tar.xz) = 2cd710e123067e738ec00723e42e6e50d8392eda3bc9771b5f9c88fcd9f987d9 -SIZE (KDE/release-service/22.04.0/kpublictransport-22.04.0.tar.xz) = 484884 +TIMESTAMP = 1652179583 +SHA256 (KDE/release-service/22.04.1/kpublictransport-22.04.1.tar.xz) = 8f852f0491f0094c7adc1074cc64bd8cf9312700b970f6dbbbf9fe0ecf995a7f +SIZE (KDE/release-service/22.04.1/kpublictransport-22.04.1.tar.xz) = 485784 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 16a1a0f416ec..6d3927ad3cfe 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101906 -SHA256 (KDE/release-service/22.04.0/lokalize-22.04.0.tar.xz) = 8083a6e746bb087a1164757d3a90e42b20fde905835e94463e5261cbe61ad9e4 -SIZE (KDE/release-service/22.04.0/lokalize-22.04.0.tar.xz) = 2064648 +TIMESTAMP = 1652179581 +SHA256 (KDE/release-service/22.04.1/lokalize-22.04.1.tar.xz) = be2686b81091be9e97c7ce0dd76470bf8260bfcb20bfc0f891a593a3154e9f54 +SIZE (KDE/release-service/22.04.1/lokalize-22.04.1.tar.xz) = 2064280 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 2d5362b2420c..c8dbec814fe7 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101909 -SHA256 (KDE/release-service/22.04.0/poxml-22.04.0.tar.xz) = 67269954ce37a6217de8d6fa50570328bc4f32f85c1e095eb7c6582e162ea596 -SIZE (KDE/release-service/22.04.0/poxml-22.04.0.tar.xz) = 44088 +TIMESTAMP = 1652179575 +SHA256 (KDE/release-service/22.04.1/poxml-22.04.1.tar.xz) = 1643982bc33a721cdb86b748e1b745026ba04ea4c86481a436319a7028483c2a +SIZE (KDE/release-service/22.04.1/poxml-22.04.1.tar.xz) = 44100 diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index 0575d8051dea..3df834f89c1c 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -1,30 +1,29 @@ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes init itemviews \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet syntaxhighlighting texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport svg webkit widgets xml \ buildtools_build qmake_build testlib_build OPTIONS_DEFINE= DOCS post-patch: # The CMakeFile sets BUILD_UNITTESTS to 1, not respecting the # value passed via CMAKE_ARGS. ${REINPLACE_CMD} -e '/BUILD_UNITTESTS/s|1|0|' \ ${PATCH_WRKSRC}/CMakeLists.txt .include diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 5ef95ad3e097..34e0a0c83026 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101900 -SHA256 (KDE/release-service/22.04.0/umbrello-22.04.0.tar.xz) = f4f681daedbefdeb0e6b0da0fd718c20031491d3b088e0523ff5bbfab3de72d8 -SIZE (KDE/release-service/22.04.0/umbrello-22.04.0.tar.xz) = 5676484 +TIMESTAMP = 1652179577 +SHA256 (KDE/release-service/22.04.1/umbrello-22.04.1.tar.xz) = bf2d65a6a1d08f695b3ca29c902e4fc52917870cd3d161b3a478e77b021f5306 +SIZE (KDE/release-service/22.04.1/umbrello-22.04.1.tar.xz) = 5676800 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 2383fbb19c55..103f484cbdaa 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101847 -SHA256 (KDE/release-service/22.04.0/kate-22.04.0.tar.xz) = ca90ad237113a846715ee6b6bfb6aff0d2f9031eed15df412632411ce93fc8cb -SIZE (KDE/release-service/22.04.0/kate-22.04.0.tar.xz) = 7573324 +TIMESTAMP = 1652179601 +SHA256 (KDE/release-service/22.04.1/kate-22.04.1.tar.xz) = f46ec33d7edf8032efcd489cc431ebf3f93e703e0e7d88a51e93941fd8509849 +SIZE (KDE/release-service/22.04.1/kate-22.04.1.tar.xz) = 7574272 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 33a6f845e685..f8f708572414 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101746 -SHA256 (KDE/release-service/22.04.0/blinken-22.04.0.tar.xz) = c3c8d9c8c4e2754295aa8afba82c47dce6b4876749a7d94c77268a64cdbd6ba1 -SIZE (KDE/release-service/22.04.0/blinken-22.04.0.tar.xz) = 2714680 +TIMESTAMP = 1652179622 +SHA256 (KDE/release-service/22.04.1/blinken-22.04.1.tar.xz) = 55ac08921958e5c7980b88acfe1c9c621ff340bd515441453a28f6e5765c4c98 +SIZE (KDE/release-service/22.04.1/blinken-22.04.1.tar.xz) = 2714792 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 2989f57b0b25..5eb6f38e6650 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101738 -SHA256 (KDE/release-service/22.04.0/bomber-22.04.0.tar.xz) = dfcf11e0d4d8ca091c7756db900a50f428f8ff8c883faa996257bfda08eb368f -SIZE (KDE/release-service/22.04.0/bomber-22.04.0.tar.xz) = 834504 +TIMESTAMP = 1652179655 +SHA256 (KDE/release-service/22.04.1/bomber-22.04.1.tar.xz) = c91391dbc81301fb66717f80ecd5da7bc9ee75c6148e1dc645a8b2c8b6c05113 +SIZE (KDE/release-service/22.04.1/bomber-22.04.1.tar.xz) = 834556 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index a9f8ad37e469..67b61b89b702 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101731 -SHA256 (KDE/release-service/22.04.0/bovo-22.04.0.tar.xz) = f681df51e3b00a982b10fae9a9e6ac705101f53cacbd418f747c58a5f4ff6653 -SIZE (KDE/release-service/22.04.0/bovo-22.04.0.tar.xz) = 210060 +TIMESTAMP = 1652179639 +SHA256 (KDE/release-service/22.04.1/bovo-22.04.1.tar.xz) = 9afe7a65256da96142cd15b95d3883a19490ba17c035d042bcc07b3737b46e75 +SIZE (KDE/release-service/22.04.1/bovo-22.04.1.tar.xz) = 210100 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 4e6d86c92671..0ea50cafcc28 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101750 -SHA256 (KDE/release-service/22.04.0/granatier-22.04.0.tar.xz) = a49802717fc32e8113c80ec88045e2cffa801d38a158df5a9ac53cbc04f972a1 -SIZE (KDE/release-service/22.04.0/granatier-22.04.0.tar.xz) = 2102624 +TIMESTAMP = 1652179627 +SHA256 (KDE/release-service/22.04.1/granatier-22.04.1.tar.xz) = 0d2f26df27d45e1b78a2a84cf973872db443dc340b4bf5ec918c474954f09f05 +SIZE (KDE/release-service/22.04.1/granatier-22.04.1.tar.xz) = 2102656 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 3d07958941a2..afaa069e25e4 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101755 -SHA256 (KDE/release-service/22.04.0/kanagram-22.04.0.tar.xz) = 9fa2b146d9e855c6e28012bdeb5fc6a04394fb27e63f009070681e98ed4e4a51 -SIZE (KDE/release-service/22.04.0/kanagram-22.04.0.tar.xz) = 8045960 +TIMESTAMP = 1652179644 +SHA256 (KDE/release-service/22.04.1/kanagram-22.04.1.tar.xz) = 4ca66e97bf5cf69c6916dcb4cd2eb236ac042ef26fcb7dad0a2d7ad47d791448 +SIZE (KDE/release-service/22.04.1/kanagram-22.04.1.tar.xz) = 8046476 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 1aa79bbece04..aaff7ffd9b2b 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101726 -SHA256 (KDE/release-service/22.04.0/kapman-22.04.0.tar.xz) = 9e979f6f971b027d98bce7fa1a5a40278aa4f4492efcd1db2a35e3049b0cb328 -SIZE (KDE/release-service/22.04.0/kapman-22.04.0.tar.xz) = 2475768 +TIMESTAMP = 1652179649 +SHA256 (KDE/release-service/22.04.1/kapman-22.04.1.tar.xz) = 730a218d8a2fcd2b7f736b2c3875642ba7fc79590654125ab293d6aeeaafd5a8 +SIZE (KDE/release-service/22.04.1/kapman-22.04.1.tar.xz) = 2475736 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 2922e7dcb38f..6215ebf87b4d 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101733 -SHA256 (KDE/release-service/22.04.0/katomic-22.04.0.tar.xz) = 7268379909019e63bfce2673235d76bbee10aa41675d170fe6c2514f19d9440b -SIZE (KDE/release-service/22.04.0/katomic-22.04.0.tar.xz) = 1438140 +TIMESTAMP = 1652179657 +SHA256 (KDE/release-service/22.04.1/katomic-22.04.1.tar.xz) = 47e43e5e571b762f6f80a513c0ddb2a6ab8ae714e3422c5fcd5fff6b26c2a8a0 +SIZE (KDE/release-service/22.04.1/katomic-22.04.1.tar.xz) = 1438204 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index decb3bc772da..bde3ff90be1b 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101725 -SHA256 (KDE/release-service/22.04.0/kblackbox-22.04.0.tar.xz) = 21e5c6f58a678fe67d8ee457b6ce28743af4ad4f6975b34e458585bb1478f221 -SIZE (KDE/release-service/22.04.0/kblackbox-22.04.0.tar.xz) = 528196 +TIMESTAMP = 1652179636 +SHA256 (KDE/release-service/22.04.1/kblackbox-22.04.1.tar.xz) = 41108bf00f9e4c91e0bf6f1b6f9caa760ad7406a5a5e23f180fcfb3fb9e3ed0d +SIZE (KDE/release-service/22.04.1/kblackbox-22.04.1.tar.xz) = 528016 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 3d44e1e6c7dc..08c49f62ed67 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101730 -SHA256 (KDE/release-service/22.04.0/kblocks-22.04.0.tar.xz) = 8fe15126465a2a21464dc176192aed39c701e12bcef2c89de2e485dd87dfc9a2 -SIZE (KDE/release-service/22.04.0/kblocks-22.04.0.tar.xz) = 2102188 +TIMESTAMP = 1652179635 +SHA256 (KDE/release-service/22.04.1/kblocks-22.04.1.tar.xz) = 6d34f530007087db2ab5dcf0fdfab2946d7075008e99696fb5bb2d27ef5df4b5 +SIZE (KDE/release-service/22.04.1/kblocks-22.04.1.tar.xz) = 2101684 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index c5fd89d2dda2..003840db9232 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101721 -SHA256 (KDE/release-service/22.04.0/kbounce-22.04.0.tar.xz) = 49a567dacfcb488898b952b23e9e2233cd6e9ded43a89f73cdbf4fa1e40d6476 -SIZE (KDE/release-service/22.04.0/kbounce-22.04.0.tar.xz) = 3531736 +TIMESTAMP = 1652179650 +SHA256 (KDE/release-service/22.04.1/kbounce-22.04.1.tar.xz) = 4ae9d8679a0a06f5c135e32e6111a3c18eb44bcb1e1a555f3ffcde565a8925b2 +SIZE (KDE/release-service/22.04.1/kbounce-22.04.1.tar.xz) = 3531052 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 4cd152fc269e..612cc24614e1 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101750 -SHA256 (KDE/release-service/22.04.0/kbreakout-22.04.0.tar.xz) = f42623a4557cfdeb057a404c3e1fd9dc540a5601bd9a2496b00c1ae84b041d7d -SIZE (KDE/release-service/22.04.0/kbreakout-22.04.0.tar.xz) = 2556316 +TIMESTAMP = 1652179628 +SHA256 (KDE/release-service/22.04.1/kbreakout-22.04.1.tar.xz) = 60f1626805bc5526d21ef0edcdd64b4581cdae4b14217e8577e817869a25b33a +SIZE (KDE/release-service/22.04.1/kbreakout-22.04.1.tar.xz) = 2556968 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index fb2a301da843..787c388b43e7 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101722 -SHA256 (KDE/release-service/22.04.0/kdiamond-22.04.0.tar.xz) = 3e4329e4d85e2ed20f23882586cf91f639291f6f2d8c328dc0ab6d81e9cc72e3 -SIZE (KDE/release-service/22.04.0/kdiamond-22.04.0.tar.xz) = 4703500 +TIMESTAMP = 1652179629 +SHA256 (KDE/release-service/22.04.1/kdiamond-22.04.1.tar.xz) = 1db4fabb0c859a9a2711a7697225df2553b40e2d26d8d999c16f9dcf1c0df2a6 +SIZE (KDE/release-service/22.04.1/kdiamond-22.04.1.tar.xz) = 4703524 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index dccf43bb1a41..36b1b696ed27 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101740 -SHA256 (KDE/release-service/22.04.0/kfourinline-22.04.0.tar.xz) = 9d97664d106af4ecb4ed50c9d8d12632b98e909918fd2a53f99f2ca7378d77cf -SIZE (KDE/release-service/22.04.0/kfourinline-22.04.0.tar.xz) = 722428 +TIMESTAMP = 1652179660 +SHA256 (KDE/release-service/22.04.1/kfourinline-22.04.1.tar.xz) = 82c2d6a664debd94412f0216fe0f9d6ccdc624f6a6e8cc5231da24e5c48ec424 +SIZE (KDE/release-service/22.04.1/kfourinline-22.04.1.tar.xz) = 722524 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 1e76d0a09a70..205952a8830a 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101742 -SHA256 (KDE/release-service/22.04.0/kgoldrunner-22.04.0.tar.xz) = 7d29beb6f701eb98be850dee9bacddeaaa303f3a579c017bb44dde4eb513dfb4 -SIZE (KDE/release-service/22.04.0/kgoldrunner-22.04.0.tar.xz) = 4787964 +TIMESTAMP = 1652179662 +SHA256 (KDE/release-service/22.04.1/kgoldrunner-22.04.1.tar.xz) = f5874bae4fef7d5c41e7218e84eea38da9f7de56dc9dcc2c35817b4ad5b84743 +SIZE (KDE/release-service/22.04.1/kgoldrunner-22.04.1.tar.xz) = 4784852 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 42de52aaf528..445767c589d5 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101757 -SHA256 (KDE/release-service/22.04.0/khangman-22.04.0.tar.xz) = 69ab8b28cee12d486e6ebf8274e70783bb112da28f494b75677df5e762cb8436 -SIZE (KDE/release-service/22.04.0/khangman-22.04.0.tar.xz) = 7427104 +TIMESTAMP = 1652179633 +SHA256 (KDE/release-service/22.04.1/khangman-22.04.1.tar.xz) = e60646211fbd4afccd06cc9402e5b4203d58fa0bd14e81c1e43013e1a008bd26 +SIZE (KDE/release-service/22.04.1/khangman-22.04.1.tar.xz) = 7430016 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 25fe83017c49..2ba1c2efdbd4 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101730 -SHA256 (KDE/release-service/22.04.0/kigo-22.04.0.tar.xz) = ef5679642e5d0ba2c3cbed90c7eb0f6e94c7a212a785afee1d237edc85fa1172 -SIZE (KDE/release-service/22.04.0/kigo-22.04.0.tar.xz) = 5254772 +TIMESTAMP = 1652179640 +SHA256 (KDE/release-service/22.04.1/kigo-22.04.1.tar.xz) = 72909556abc6489f6be1a5009e976f9f1e2cb41085f6468cda1f89c3124e9824 +SIZE (KDE/release-service/22.04.1/kigo-22.04.1.tar.xz) = 5253712 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index a8ee11ca1e18..237b0b74a036 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101752 -SHA256 (KDE/release-service/22.04.0/killbots-22.04.0.tar.xz) = 21c98d4344f099a7619ea1e39123ad241d564fcd220b11ac7ad6b03782b85129 -SIZE (KDE/release-service/22.04.0/killbots-22.04.0.tar.xz) = 1197644 +TIMESTAMP = 1652179642 +SHA256 (KDE/release-service/22.04.1/killbots-22.04.1.tar.xz) = 5ed6a852cddbb02547de622165d2044bea6b7674d99a3c12635515c55f8dd54f +SIZE (KDE/release-service/22.04.1/killbots-22.04.1.tar.xz) = 1197604 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 6b46e2e2259b..82b775fed6c7 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101720 -SHA256 (KDE/release-service/22.04.0/kiriki-22.04.0.tar.xz) = 280c73854aac4191245e5b336dc07ac9a9414898dfd2cd4b0824e5a30f8f3d10 -SIZE (KDE/release-service/22.04.0/kiriki-22.04.0.tar.xz) = 365940 +TIMESTAMP = 1652179646 +SHA256 (KDE/release-service/22.04.1/kiriki-22.04.1.tar.xz) = dfce78e4468838aecec225ee38d937e1f28b47fbd915f0efde224b4ac2aa8d57 +SIZE (KDE/release-service/22.04.1/kiriki-22.04.1.tar.xz) = 365940 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index a051da5aaa0f..f4afceb42b0a 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101728 -SHA256 (KDE/release-service/22.04.0/kjumpingcube-22.04.0.tar.xz) = e34e77f5fb43b4ad5ef3b1954ce4dc0b6afe6f102eb766f59751aa5bbdb71ce1 -SIZE (KDE/release-service/22.04.0/kjumpingcube-22.04.0.tar.xz) = 325784 +TIMESTAMP = 1652179621 +SHA256 (KDE/release-service/22.04.1/kjumpingcube-22.04.1.tar.xz) = 4fc1a759acc33ffd0978093668cdadb7719a4991c5bc4baf8698dbe17910ffb9 +SIZE (KDE/release-service/22.04.1/kjumpingcube-22.04.1.tar.xz) = 325808 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 8200c341c5d1..389443005a1c 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101748 -SHA256 (KDE/release-service/22.04.0/klickety-22.04.0.tar.xz) = 5a7ba9b764a5474e5d3b56170c3ad3249a532d1ecf46e3e34397661ce43687ba -SIZE (KDE/release-service/22.04.0/klickety-22.04.0.tar.xz) = 1495720 +TIMESTAMP = 1652179652 +SHA256 (KDE/release-service/22.04.1/klickety-22.04.1.tar.xz) = 2c71691e48b22032e1d669fec78139606003da431eea3b8a9583a7ba3dce56eb +SIZE (KDE/release-service/22.04.1/klickety-22.04.1.tar.xz) = 1495600 diff --git a/games/klines/distinfo b/games/klines/distinfo index 3e92be0f9d61..9862676ae7ee 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101739 -SHA256 (KDE/release-service/22.04.0/klines-22.04.0.tar.xz) = d607601dfc792f794898653760f3500f3ac43957cf3b2063b7ff405a9ec6fb68 -SIZE (KDE/release-service/22.04.0/klines-22.04.0.tar.xz) = 1727312 +TIMESTAMP = 1652179625 +SHA256 (KDE/release-service/22.04.1/klines-22.04.1.tar.xz) = 6e07021f46c2e1c74b3bbefb1ff222b87bbbc19be9bf865fa9677591f24e6acc +SIZE (KDE/release-service/22.04.1/klines-22.04.1.tar.xz) = 1726952 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 5942db6a43fe..194bcb4826ab 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101727 -SHA256 (KDE/release-service/22.04.0/kmahjongg-22.04.0.tar.xz) = 09d7ffae8ddf1914ef7b7d9414ffc71cc0d6a8af6b9ea7084373f5bdd0be40c3 -SIZE (KDE/release-service/22.04.0/kmahjongg-22.04.0.tar.xz) = 4071144 +TIMESTAMP = 1652179637 +SHA256 (KDE/release-service/22.04.1/kmahjongg-22.04.1.tar.xz) = 4a08fd43c52f1c0ae24f5c60362eb11540121625a879e0c5316fa978a0bf8d4d +SIZE (KDE/release-service/22.04.1/kmahjongg-22.04.1.tar.xz) = 4071240 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 1ba320ac4676..03f6e3f8e85c 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101756 -SHA256 (KDE/release-service/22.04.0/kmines-22.04.0.tar.xz) = e4fe63239c3578f59b929e3ec3e743bf3e9cb5084f106a92cdc0e62f728aeeb7 -SIZE (KDE/release-service/22.04.0/kmines-22.04.0.tar.xz) = 994520 +TIMESTAMP = 1652179629 +SHA256 (KDE/release-service/22.04.1/kmines-22.04.1.tar.xz) = 4450fadd3155108e25b308c86b1a5ef82d1080340369ba90528f025abb4f9de5 +SIZE (KDE/release-service/22.04.1/kmines-22.04.1.tar.xz) = 994480 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index d71a4616d81e..71a902eca303 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101757 -SHA256 (KDE/release-service/22.04.0/knavalbattle-22.04.0.tar.xz) = 8918ccf8703fe78e979b9b6d118b3b0cad837dd744124ecc64539fadb7acafc1 -SIZE (KDE/release-service/22.04.0/knavalbattle-22.04.0.tar.xz) = 1379736 +TIMESTAMP = 1652179653 +SHA256 (KDE/release-service/22.04.1/knavalbattle-22.04.1.tar.xz) = 7b889feb2756dfe20ba67b4b2147924275453ef94bd12882f0129a209c702aab +SIZE (KDE/release-service/22.04.1/knavalbattle-22.04.1.tar.xz) = 1379740 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 6b1d5e388fc8..798efbecf622 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101758 -SHA256 (KDE/release-service/22.04.0/knetwalk-22.04.0.tar.xz) = d4e8b8baa387c6c499d547b1832f5c0c8175a44053ce1c4500843e3fecd34973 -SIZE (KDE/release-service/22.04.0/knetwalk-22.04.0.tar.xz) = 1094604 +TIMESTAMP = 1652179634 +SHA256 (KDE/release-service/22.04.1/knetwalk-22.04.1.tar.xz) = 02f74169e4529f7fa206b46744b87f312748defdff43be3629f49b3257f64a5f +SIZE (KDE/release-service/22.04.1/knetwalk-22.04.1.tar.xz) = 1094628 diff --git a/games/knights/distinfo b/games/knights/distinfo index 6fd56425554a..e2925eff0afe 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101737 -SHA256 (KDE/release-service/22.04.0/knights-22.04.0.tar.xz) = aa66bf1e2754f32f7e20d03111c290d819a4ebbdb205901d9dd22717029add35 -SIZE (KDE/release-service/22.04.0/knights-22.04.0.tar.xz) = 3323460 +TIMESTAMP = 1652179651 +SHA256 (KDE/release-service/22.04.1/knights-22.04.1.tar.xz) = 5296758dbaf431283002ba1f5e6262c1835a78710ff339f1391637f88f470e05 +SIZE (KDE/release-service/22.04.1/knights-22.04.1.tar.xz) = 3323408 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index a741a72cf817..ad890debc515 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101724 -SHA256 (KDE/release-service/22.04.0/kolf-22.04.0.tar.xz) = 08d9043c5ffe3f8eaddd66ed897e34501874965f56e6858a0cad3f09174f7244 -SIZE (KDE/release-service/22.04.0/kolf-22.04.0.tar.xz) = 1051656 +TIMESTAMP = 1652179647 +SHA256 (KDE/release-service/22.04.1/kolf-22.04.1.tar.xz) = ae6320f2cbc6f5137aeb7b41638b3f9b85902bcee07339fc3f774d159f685096 +SIZE (KDE/release-service/22.04.1/kolf-22.04.1.tar.xz) = 1050164 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index df65f1fcaa4e..4be26d3faef2 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101751 -SHA256 (KDE/release-service/22.04.0/kollision-22.04.0.tar.xz) = aa7768ac24227c394b7d16cb2d5a397cb967b159fc5e5628cbeba63a713c77a3 -SIZE (KDE/release-service/22.04.0/kollision-22.04.0.tar.xz) = 302792 +TIMESTAMP = 1652179626 +SHA256 (KDE/release-service/22.04.1/kollision-22.04.1.tar.xz) = 2cbd965c31ca11557fdc9d9a7972ccdb0854b9cb42ad7541c8d83a18853dffbc +SIZE (KDE/release-service/22.04.1/kollision-22.04.1.tar.xz) = 302940 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index fc9f7a87a983..322620b75e3c 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101743 -SHA256 (KDE/release-service/22.04.0/konquest-22.04.0.tar.xz) = 3cf8a731540d2c21307bfea592846007fcf4603fb96c14d671584dc4f954f24e -SIZE (KDE/release-service/22.04.0/konquest-22.04.0.tar.xz) = 863564 +TIMESTAMP = 1652179656 +SHA256 (KDE/release-service/22.04.1/konquest-22.04.1.tar.xz) = b901d71ce47fe86c26e92e7d965002371cabc93a802d84cf23fa77e94de45265 +SIZE (KDE/release-service/22.04.1/konquest-22.04.1.tar.xz) = 863584 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 7104669381dc..6ca4c5ca94ac 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101729 -SHA256 (KDE/release-service/22.04.0/kpat-22.04.0.tar.xz) = 275e2e4508980dbc53bd598c7abd05a21dd5c50b255e750436639cc75f67a44d -SIZE (KDE/release-service/22.04.0/kpat-22.04.0.tar.xz) = 3730540 +TIMESTAMP = 1652179648 +SHA256 (KDE/release-service/22.04.1/kpat-22.04.1.tar.xz) = ea9938aa038467e1f5c3356e9e6dd09cf394e6887a69a573ffd4d5d76d11a1f1 +SIZE (KDE/release-service/22.04.1/kpat-22.04.1.tar.xz) = 3730848 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index abbbec72b995..075742cbc1f2 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101749 -SHA256 (KDE/release-service/22.04.0/kreversi-22.04.0.tar.xz) = f8d3da778d0c6daff80c5a608e389f863ec1f97ec5bb35f9f1c88dfddf94fc57 -SIZE (KDE/release-service/22.04.0/kreversi-22.04.0.tar.xz) = 1064076 +TIMESTAMP = 1652179649 +SHA256 (KDE/release-service/22.04.1/kreversi-22.04.1.tar.xz) = 96426cb6dce2bfc5a4890a9913e0ef637c01820cc5e36cc9ebb559971b3f9e4f +SIZE (KDE/release-service/22.04.1/kreversi-22.04.1.tar.xz) = 1064076 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 96dbde76f35d..b0f05dce636b 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101732 -SHA256 (KDE/release-service/22.04.0/kshisen-22.04.0.tar.xz) = 19aececce7cf1016350898990859da7f90a274f0586b3dd38cd416ea95ef2b5c -SIZE (KDE/release-service/22.04.0/kshisen-22.04.0.tar.xz) = 993252 +TIMESTAMP = 1652179659 +SHA256 (KDE/release-service/22.04.1/kshisen-22.04.1.tar.xz) = 774ffe4434fe238a56b6962d135b49b61579d2a1f0e64b00a9dc93eac49f3c42 +SIZE (KDE/release-service/22.04.1/kshisen-22.04.1.tar.xz) = 993332 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 370c4d6f18b0..87d15153815f 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101744 -SHA256 (KDE/release-service/22.04.0/ksirk-22.04.0.tar.xz) = e75aa56b3c2a3cb3278fc0d4ed2a2ca06a16f23df9341f9239cdcf47fc9843fb -SIZE (KDE/release-service/22.04.0/ksirk-22.04.0.tar.xz) = 7006308 +TIMESTAMP = 1652179632 +SHA256 (KDE/release-service/22.04.1/ksirk-22.04.1.tar.xz) = e7df7bb3f603d92a97bae8ea30425ba20e75f6270fa1c1303464caf32731eb93 +SIZE (KDE/release-service/22.04.1/ksirk-22.04.1.tar.xz) = 7005884 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 9a8d055c0bfe..1529503c7697 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101735 -SHA256 (KDE/release-service/22.04.0/ksnakeduel-22.04.0.tar.xz) = d4db735a83b8605b5d10e5f4d83b3f4826189a565a49c59ee2a345877a8f0334 -SIZE (KDE/release-service/22.04.0/ksnakeduel-22.04.0.tar.xz) = 607560 +TIMESTAMP = 1652179620 +SHA256 (KDE/release-service/22.04.1/ksnakeduel-22.04.1.tar.xz) = 35659b88dad1222564dd03cdde51018436dcb8b05bb884bd2ef42fe71b04e7eb +SIZE (KDE/release-service/22.04.1/ksnakeduel-22.04.1.tar.xz) = 607700 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 03823a9ee09a..fcbfd41b983c 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101720 -SHA256 (KDE/release-service/22.04.0/kspaceduel-22.04.0.tar.xz) = 7081448f6ecad557e80318972a11b59400775021b702725cbbbaadcce8a6cb3f -SIZE (KDE/release-service/22.04.0/kspaceduel-22.04.0.tar.xz) = 651924 +TIMESTAMP = 1652179630 +SHA256 (KDE/release-service/22.04.1/kspaceduel-22.04.1.tar.xz) = 4c75ce01681202b26d2f6427f41373e20828679ccb0cb8b4c09af1c011a2aecc +SIZE (KDE/release-service/22.04.1/kspaceduel-22.04.1.tar.xz) = 651940 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 92c6d1d9dc02..3a128e1bacc8 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101723 -SHA256 (KDE/release-service/22.04.0/ksquares-22.04.0.tar.xz) = 68c3ffa86250000176a2cbe5341393d50ea1c91f14d75f513486edbd381f5188 -SIZE (KDE/release-service/22.04.0/ksquares-22.04.0.tar.xz) = 307960 +TIMESTAMP = 1652179631 +SHA256 (KDE/release-service/22.04.1/ksquares-22.04.1.tar.xz) = 31023b17c21d4a9f54f47f0164a449b12305c17c79e2b343820b4e1c135d9ff6 +SIZE (KDE/release-service/22.04.1/ksquares-22.04.1.tar.xz) = 307944 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 14ebf8ba496f..49dae9b7d7ab 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101736 -SHA256 (KDE/release-service/22.04.0/ksudoku-22.04.0.tar.xz) = f8b5c990f6a353900874ce115b1855823c0de7b6c90a48cea12a201bfa9f0b21 -SIZE (KDE/release-service/22.04.0/ksudoku-22.04.0.tar.xz) = 1690348 +TIMESTAMP = 1652179654 +SHA256 (KDE/release-service/22.04.1/ksudoku-22.04.1.tar.xz) = eed5a5964727cff9f200e1fd53a61c68ef33dfe442777fd5da3c763454d5ca0e +SIZE (KDE/release-service/22.04.1/ksudoku-22.04.1.tar.xz) = 1690228 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 011986a660db..5d7406225ad2 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101754 -SHA256 (KDE/release-service/22.04.0/ktuberling-22.04.0.tar.xz) = 18d9a07bb39e2c63a2be090c2a28862b281cf2ff35177c5cdcc3b3ef79bf9da5 -SIZE (KDE/release-service/22.04.0/ktuberling-22.04.0.tar.xz) = 70825192 +TIMESTAMP = 1652179643 +SHA256 (KDE/release-service/22.04.1/ktuberling-22.04.1.tar.xz) = 4522ad76f14d82baff654556d9ef9be0b90d460e586a983e51cb13d7715139ac +SIZE (KDE/release-service/22.04.1/ktuberling-22.04.1.tar.xz) = 70820260 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index df42d4f45b42..31d439e6bf45 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101747 -SHA256 (KDE/release-service/22.04.0/kubrick-22.04.0.tar.xz) = 437d60cd06a22ae3da399e81a0f0ad0a33e8ffb92df8b308c8066c26e824c24c -SIZE (KDE/release-service/22.04.0/kubrick-22.04.0.tar.xz) = 343284 +TIMESTAMP = 1652179623 +SHA256 (KDE/release-service/22.04.1/kubrick-22.04.1.tar.xz) = 5c2492f7de70045c8addf0b937c4bc931dff18931ca477e792dfce96eb1ce38e +SIZE (KDE/release-service/22.04.1/kubrick-22.04.1.tar.xz) = 343176 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 5614ce2b9652..abc2698a1bd9 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101741 -SHA256 (KDE/release-service/22.04.0/libkdegames-22.04.0.tar.xz) = 4dd8d80dbfd2806d420bb6efc2df64a175e8273d9ea34b9c61a0a7daae342e76 -SIZE (KDE/release-service/22.04.0/libkdegames-22.04.0.tar.xz) = 5972900 +TIMESTAMP = 1652179661 +SHA256 (KDE/release-service/22.04.1/libkdegames-22.04.1.tar.xz) = 0ce94753c590ac4019b3f11ca0b4de83d8bb0dc619de15fc73be7f3a820fd9e0 +SIZE (KDE/release-service/22.04.1/libkdegames-22.04.1.tar.xz) = 5991296 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index c9fd4c423e0d..8ac7b94dda07 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101745 -SHA256 (KDE/release-service/22.04.0/libkmahjongg-22.04.0.tar.xz) = 039344f0a490348649054d1777475c55fdb5924d737e1bd34bfc1722f4c4a03c -SIZE (KDE/release-service/22.04.0/libkmahjongg-22.04.0.tar.xz) = 1685576 +TIMESTAMP = 1652179641 +SHA256 (KDE/release-service/22.04.1/libkmahjongg-22.04.1.tar.xz) = ce8de9d665fd72c288dede91488fe390a0123e2b65e50a9e136c1337924d872b +SIZE (KDE/release-service/22.04.1/libkmahjongg-22.04.1.tar.xz) = 1685728 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index faf8c5fe4cbc..b36d6860db3d 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101740 -SHA256 (KDE/release-service/22.04.0/lskat-22.04.0.tar.xz) = 8095128cc7715cb284e9b542b8637171193e39a3e09164f31a1e1af7f244275b -SIZE (KDE/release-service/22.04.0/lskat-22.04.0.tar.xz) = 1234888 +TIMESTAMP = 1652179638 +SHA256 (KDE/release-service/22.04.1/lskat-22.04.1.tar.xz) = e9a8a156991b22c05bb62769b7e75e0f4b15507d3157ae6f03ac30dbfe42cd3f +SIZE (KDE/release-service/22.04.1/lskat-22.04.1.tar.xz) = 1235140 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 3ab914eea0f9..40c849965d1a 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101734 -SHA256 (KDE/release-service/22.04.0/palapeli-22.04.0.tar.xz) = 6dd690a2a370469e7a98a6bed2564b5f84f2f63222588eceaabc827f427e3d72 -SIZE (KDE/release-service/22.04.0/palapeli-22.04.0.tar.xz) = 2097648 +TIMESTAMP = 1652179624 +SHA256 (KDE/release-service/22.04.1/palapeli-22.04.1.tar.xz) = ba116943e9f42983ca71104ae637526655759f0900d9deed281029021e060da9 +SIZE (KDE/release-service/22.04.1/palapeli-22.04.1.tar.xz) = 2097820 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 9cc8b9b763f1..63b7e8c21e8d 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101759 -SHA256 (KDE/release-service/22.04.0/picmi-22.04.0.tar.xz) = c90b56cbcae57f9fe26c58a82131ecda8d0d1de09b190e9c759cf32186cd5c60 -SIZE (KDE/release-service/22.04.0/picmi-22.04.0.tar.xz) = 1538468 +TIMESTAMP = 1652179658 +SHA256 (KDE/release-service/22.04.1/picmi-22.04.1.tar.xz) = 9c6398f5749c1766d26c0b7bd304df7fa4e40a823eeecb961e551c2b92e1378e +SIZE (KDE/release-service/22.04.1/picmi-22.04.1.tar.xz) = 1538004 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 1ab18efe69a6..dc236d82d94c 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101764 -SHA256 (KDE/release-service/22.04.0/gwenview-22.04.0.tar.xz) = 73683096898c59388cd566cc8f71d7677fd0b22a2ab42a6d5f82f1232372ab05 -SIZE (KDE/release-service/22.04.0/gwenview-22.04.0.tar.xz) = 6816308 +TIMESTAMP = 1652179681 +SHA256 (KDE/release-service/22.04.1/gwenview-22.04.1.tar.xz) = f99a8f6eb7c7e2ba8b3f434512a2050cf64e032c48830c3ad80dbbb6d5e9cc4a +SIZE (KDE/release-service/22.04.1/gwenview-22.04.1.tar.xz) = 6819236 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 8d706e6f9c0d..981358a0b76b 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101772 -SHA256 (KDE/release-service/22.04.0/kamera-22.04.0.tar.xz) = 50650803aacadf32031a3c62251cc18b49ad5361c61320d13d1d5d6184a6ae1b -SIZE (KDE/release-service/22.04.0/kamera-22.04.0.tar.xz) = 119088 +TIMESTAMP = 1652179669 +SHA256 (KDE/release-service/22.04.1/kamera-22.04.1.tar.xz) = 4f4349fcad235e802134f2087a8a50108065e9d9b966267682c7dc082f5a3530 +SIZE (KDE/release-service/22.04.1/kamera-22.04.1.tar.xz) = 119128 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 75233c47ccb9..4d5adc6aad50 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101769 -SHA256 (KDE/release-service/22.04.0/kcolorchooser-22.04.0.tar.xz) = d293263a499640d931a0a69d605e26a97b69cbfe49dd58fc89b20fa7f3fbc532 -SIZE (KDE/release-service/22.04.0/kcolorchooser-22.04.0.tar.xz) = 30404 +TIMESTAMP = 1652179674 +SHA256 (KDE/release-service/22.04.1/kcolorchooser-22.04.1.tar.xz) = f9e78bca7ce4ce3cd1cc4503542d9c7e6753aee0ba4fa5146a3fe09e4b3e32e9 +SIZE (KDE/release-service/22.04.1/kcolorchooser-22.04.1.tar.xz) = 30400 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 1ee44e2d80a5..6b6b7002bc27 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101773 -SHA256 (KDE/release-service/22.04.0/kdegraphics-mobipocket-22.04.0.tar.xz) = 33640fcef6d379f1dbfe9bc6ccedeba9b744c3c75f8f929f24795a511c5d364a -SIZE (KDE/release-service/22.04.0/kdegraphics-mobipocket-22.04.0.tar.xz) = 12524 +TIMESTAMP = 1652179673 +SHA256 (KDE/release-service/22.04.1/kdegraphics-mobipocket-22.04.1.tar.xz) = e7e31efa63d478b049aca107bf8fd9731fcc357b67fdc62dab3f3307f4d41f5d +SIZE (KDE/release-service/22.04.1/kdegraphics-mobipocket-22.04.1.tar.xz) = 12536 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index d394ec3535be..b1ac3ea15039 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101767 -SHA256 (KDE/release-service/22.04.0/svgpart-22.04.0.tar.xz) = 923bda29e6610fb4dfd2b4f98e14045271c099ab1ed3988d52fefdc0b408df9a -SIZE (KDE/release-service/22.04.0/svgpart-22.04.0.tar.xz) = 27076 +TIMESTAMP = 1652179677 +SHA256 (KDE/release-service/22.04.1/svgpart-22.04.1.tar.xz) = 5e5b9314e06798177a3b4ada63236cfc6b65e229153b83b69a8c2699a6b8689c +SIZE (KDE/release-service/22.04.1/svgpart-22.04.1.tar.xz) = 27080 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 37e775ae0c44..c0b888b0fcf5 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101767 -SHA256 (KDE/release-service/22.04.0/kdegraphics-thumbnailers-22.04.0.tar.xz) = 31b27975ce88d72f9cad604ed6305cf3492e395ca0905e2eb75a6be61a688dfb -SIZE (KDE/release-service/22.04.0/kdegraphics-thumbnailers-22.04.0.tar.xz) = 48452 +TIMESTAMP = 1652179666 +SHA256 (KDE/release-service/22.04.1/kdegraphics-thumbnailers-22.04.1.tar.xz) = 1706ae5b009cd79c95674ed8fdfb48f6206948cdd280b59074ce7f55b29c19f9 +SIZE (KDE/release-service/22.04.1/kdegraphics-thumbnailers-22.04.1.tar.xz) = 48476 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 79fb6cf61523..72e286f44d4a 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101768 -SHA256 (KDE/release-service/22.04.0/kimagemapeditor-22.04.0.tar.xz) = ddc48178addedcfa26c0ef9823d512e5b85c497a9e9ca5e70d388c79cbd2077a -SIZE (KDE/release-service/22.04.0/kimagemapeditor-22.04.0.tar.xz) = 1089200 +TIMESTAMP = 1652179674 +SHA256 (KDE/release-service/22.04.1/kimagemapeditor-22.04.1.tar.xz) = ba7dd3cde5a0ba2cf24aba1122a50cbd1138e3f5320b13bc6200bb47b67af8d3 +SIZE (KDE/release-service/22.04.1/kimagemapeditor-22.04.1.tar.xz) = 1089392 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 2128d1ffabb3..e86af6ef2a8b 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101766 -SHA256 (KDE/release-service/22.04.0/kipi-plugins-22.04.0.tar.xz) = 1a93de48397153e9f92c20130569ea63f852b9b51c5cd53c0937d2b70b34b633 -SIZE (KDE/release-service/22.04.0/kipi-plugins-22.04.0.tar.xz) = 1523308 +TIMESTAMP = 1652179672 +SHA256 (KDE/release-service/22.04.1/kipi-plugins-22.04.1.tar.xz) = 68d2203f59f59c300a546dd93787c258f51cd8f68679ec2c79b1b36a05bb0715 +SIZE (KDE/release-service/22.04.1/kipi-plugins-22.04.1.tar.xz) = 1523328 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index ffb2f2c72c6b..04dcd425005c 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101774 -SHA256 (KDE/release-service/22.04.0/kolourpaint-22.04.0.tar.xz) = aeb2e439f32d9b1d7556e807c0902c870b90691f84764266e3f7fd92af5d9163 -SIZE (KDE/release-service/22.04.0/kolourpaint-22.04.0.tar.xz) = 5716672 +TIMESTAMP = 1652179675 +SHA256 (KDE/release-service/22.04.1/kolourpaint-22.04.1.tar.xz) = 4d5096c7e40a592583f597ff388b3bc7c64e5b75f1b12e73b18e4bd7b777afeb +SIZE (KDE/release-service/22.04.1/kolourpaint-22.04.1.tar.xz) = 5716732 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index f260e71d1e76..3c38f8c6536a 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101762 -SHA256 (KDE/release-service/22.04.0/kontrast-22.04.0.tar.xz) = 0b57bc598f3ed36f1c507ca98f1b5ede7db6e3b6ac757c2bcc231f94e368f6db -SIZE (KDE/release-service/22.04.0/kontrast-22.04.0.tar.xz) = 125872 +TIMESTAMP = 1652179678 +SHA256 (KDE/release-service/22.04.1/kontrast-22.04.1.tar.xz) = df7ef6f5fbbeef04526c5fcff6a6e4fe2ec4e6d5cb5825d5aba17c2f6756505d +SIZE (KDE/release-service/22.04.1/kontrast-22.04.1.tar.xz) = 125840 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 68e04a13e7f2..3268d00c2d4d 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101761 -SHA256 (KDE/release-service/22.04.0/kqtquickcharts-22.04.0.tar.xz) = c55e6a920f448f79b432f3f4baca3ce2ff5ef605cd17f38c7808b5753962c0de -SIZE (KDE/release-service/22.04.0/kqtquickcharts-22.04.0.tar.xz) = 30152 +TIMESTAMP = 1652179680 +SHA256 (KDE/release-service/22.04.1/kqtquickcharts-22.04.1.tar.xz) = e85918af3a24aaedcabe9ba47c31cc50fd3227dc95ffd1d1a6dc2d1394e62c2c +SIZE (KDE/release-service/22.04.1/kqtquickcharts-22.04.1.tar.xz) = 30144 diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index b718fe088edf..84fd3f7eb555 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -1,24 +1,23 @@ PORTNAME= libkdcraw DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LibRaw interface for KDE LICENSE= GPLv2+ LIB_DEPENDS= libjasper.so:graphics/jasper \ liblcms.so:graphics/lcms \ libxml2.so:textproc/libxml2 \ libraw.so:graphics/libraw USES= cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True .include diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 649f0f0d8fc5..7a730b9b94df 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101765 -SHA256 (KDE/release-service/22.04.0/libkdcraw-22.04.0.tar.xz) = f92cee9a87fdef59f12bde784e1ec2b13b2677c82634e303f20ed8055ddb3e79 -SIZE (KDE/release-service/22.04.0/libkdcraw-22.04.0.tar.xz) = 37408 +TIMESTAMP = 1652179679 +SHA256 (KDE/release-service/22.04.1/libkdcraw-22.04.1.tar.xz) = 62942d392519e86e880e5c5b0dc1bda124f245380546299536d755f4eb12a8a5 +SIZE (KDE/release-service/22.04.1/libkdcraw-22.04.1.tar.xz) = 37404 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 6503b92c5631..19cd96c452df 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101776 -SHA256 (KDE/release-service/22.04.0/libkexiv2-22.04.0.tar.xz) = 9d8f42e37b52faa111cd3b16a1d902b4d45e25ef976973f9dc527c791b957f40 -SIZE (KDE/release-service/22.04.0/libkexiv2-22.04.0.tar.xz) = 59628 +TIMESTAMP = 1652179668 +SHA256 (KDE/release-service/22.04.1/libkexiv2-22.04.1.tar.xz) = 376f38b3391f7a14e9ee1f41e97270b9003227c76ac5c4a9a3eb50d6075ed5da +SIZE (KDE/release-service/22.04.1/libkexiv2-22.04.1.tar.xz) = 59624 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 81e74cc57487..bc70773f7cb7 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101775 -SHA256 (KDE/release-service/22.04.0/libkipi-22.04.0.tar.xz) = 72fe676753d157b1fc4da8ae2543e5d2ff9d1cdda45db188710bb7384b979c75 -SIZE (KDE/release-service/22.04.0/libkipi-22.04.0.tar.xz) = 88444 +TIMESTAMP = 1652179667 +SHA256 (KDE/release-service/22.04.1/libkipi-22.04.1.tar.xz) = ef15b74fed59d10dd584e452925027d927eeb7b738569089cb8da21b1e9c9afd +SIZE (KDE/release-service/22.04.1/libkipi-22.04.1.tar.xz) = 88456 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index c4b3c4f25868..264569968604 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101770 -SHA256 (KDE/release-service/22.04.0/libksane-22.04.0.tar.xz) = 733a83126b4ec22da28da597aaeb7650047b1979913a52a6fbf84f284d1abd14 -SIZE (KDE/release-service/22.04.0/libksane-22.04.0.tar.xz) = 165308 +TIMESTAMP = 1652179671 +SHA256 (KDE/release-service/22.04.1/libksane-22.04.1.tar.xz) = bb755d27682b0a0f4b23af8267165822bf5cad09c03cf24429d8f8b23b226480 +SIZE (KDE/release-service/22.04.1/libksane-22.04.1.tar.xz) = 165752 diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 7f89d7db6ca2..88ed2ab6990e 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -1,44 +1,43 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 cpe pkgconfig qca qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build testlib_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 3bd7720f73f4..9d52ff7981db 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101760 -SHA256 (KDE/release-service/22.04.0/okular-22.04.0.tar.xz) = 47eebac10c3415b245907e572efe810348f6b51b8df89fe96254827aa8b2e3bf -SIZE (KDE/release-service/22.04.0/okular-22.04.0.tar.xz) = 8178256 +TIMESTAMP = 1652179676 +SHA256 (KDE/release-service/22.04.1/okular-22.04.1.tar.xz) = cee20b2df2828728e9208406c9dec7a96b33a10eaac7b26c35788009e077163f +SIZE (KDE/release-service/22.04.1/okular-22.04.1.tar.xz) = 8182156 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 8310ee97b250..793e641115fa 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101763 -SHA256 (KDE/release-service/22.04.0/skanlite-22.04.0.tar.xz) = aeb7ae10bef64d616c7746f1dfd95c8636ef77f9d5c805e351cb7523b030ad94 -SIZE (KDE/release-service/22.04.0/skanlite-22.04.0.tar.xz) = 2440844 +TIMESTAMP = 1652179682 +SHA256 (KDE/release-service/22.04.1/skanlite-22.04.1.tar.xz) = 69f7fe0850459c5f81767b4d3ba4d60ffcb3e495d9a2eaf1461bb95b56f013c8 +SIZE (KDE/release-service/22.04.1/skanlite-22.04.1.tar.xz) = 2440860 diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index e9e3c6cd6bec..97e9377a47af 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,28 +1,27 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libkImageAnnotator.so:graphics/kimageannotator RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons globalaccel i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package purpose service solid wayland \ widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols svg widgets x11extras xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 32ad7ea39b80..8cbb27a63b80 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101771 -SHA256 (KDE/release-service/22.04.0/spectacle-22.04.0.tar.xz) = ac5d30a2ccdd5c81bc6b010bbcc06e00fd1bb1013a7dfdc1634197989e4cbd1d -SIZE (KDE/release-service/22.04.0/spectacle-22.04.0.tar.xz) = 1260416 +TIMESTAMP = 1652179670 +SHA256 (KDE/release-service/22.04.1/spectacle-22.04.1.tar.xz) = 335bc9ab70966d23bdd09614c373d73cf0d8ee09788b22637d5717919e443884 +SIZE (KDE/release-service/22.04.1/spectacle-22.04.1.tar.xz) = 1260976 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index b1bfd768f6c8..b13bda3693bd 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101794 -SHA256 (KDE/release-service/22.04.0/konversation-22.04.0.tar.xz) = f89c3854edd6dabcceff7a3615b532ac34d5b4769be1e125789e41d67e7f9b8a -SIZE (KDE/release-service/22.04.0/konversation-22.04.0.tar.xz) = 4288088 +TIMESTAMP = 1652179550 +SHA256 (KDE/release-service/22.04.1/konversation-22.04.1.tar.xz) = d1b3f3ce151f0cc6a6ed566658ea24120e6b8539e35a15b20620b0b6c50efebf +SIZE (KDE/release-service/22.04.1/konversation-22.04.1.tar.xz) = 4287744 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 62418f939c28..ee6703c7016d 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101779 -SHA256 (KDE/release-service/22.04.0/kiten-22.04.0.tar.xz) = b51b975427bc12be2c2c1e6ed470172236ccd683b61927f4c1ff650119512958 -SIZE (KDE/release-service/22.04.0/kiten-22.04.0.tar.xz) = 11317616 +TIMESTAMP = 1652179618 +SHA256 (KDE/release-service/22.04.1/kiten-22.04.1.tar.xz) = 997ea743cb29481236a839f3404bbaf4d1a63414b8bee180d2dac98a4d12f893 +SIZE (KDE/release-service/22.04.1/kiten-22.04.1.tar.xz) = 11316984 diff --git a/lang/kross-interpreters/Makefile b/lang/kross-interpreters/Makefile index be1e6a781f05..082b4edfdbee 100644 --- a/lang/kross-interpreters/Makefile +++ b/lang/kross-interpreters/Makefile @@ -1,26 +1,25 @@ PORTNAME= kross-interpreters DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Language interpreters to enable in-process scripting with Kross USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= kross \ ecm_build USE_QT= core gui script widgets xml \ buildtools_build qmake_build CFLAGS+= -fdeclspec OPTIONS_DEFINE= RUBY DOCS OPTIONS_SUB= yes OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs RUBY_USE= ruby RUBY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Ruby .include diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 6930131ebe21..c29c7208e58f 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101776 -SHA256 (KDE/release-service/22.04.0/kross-interpreters-22.04.0.tar.xz) = f7ea1af30cc5ede4d5bc2c7337254ae5b5ca2425cbbd65b142d28b33d22cce59 -SIZE (KDE/release-service/22.04.0/kross-interpreters-22.04.0.tar.xz) = 151724 +TIMESTAMP = 1652179570 +SHA256 (KDE/release-service/22.04.1/kross-interpreters-22.04.1.tar.xz) = 16217ceebc71d4772e1a5aab2a9eea17b6602186cbcbabf9880640882a7008ea +SIZE (KDE/release-service/22.04.1/kross-interpreters-22.04.1.tar.xz) = 151724 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 8adba4628ed0..7c9244f1b181 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101777 -SHA256 (KDE/release-service/22.04.0/kturtle-22.04.0.tar.xz) = fd42b1380e7e46d6c1e5bc4cbe538edcf9ed9bfc5abf54141393adc28fe38427 -SIZE (KDE/release-service/22.04.0/kturtle-22.04.0.tar.xz) = 1973144 +TIMESTAMP = 1652179569 +SHA256 (KDE/release-service/22.04.1/kturtle-22.04.1.tar.xz) = 15c6c08d2539e22d62524d0acad713397ddfce7fb7275a8b99eb76ea87c043bf +SIZE (KDE/release-service/22.04.1/kturtle-22.04.1.tar.xz) = 1973120 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 26a94ecfc8fc..a67546e95c50 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101785 -SHA256 (KDE/release-service/22.04.0/analitza-22.04.0.tar.xz) = 0c2b3666982875176bfeb296a9161cc4da2e77673e4f897f9344e8d4533ff15a -SIZE (KDE/release-service/22.04.0/analitza-22.04.0.tar.xz) = 349684 +TIMESTAMP = 1652179540 +SHA256 (KDE/release-service/22.04.1/analitza-22.04.1.tar.xz) = 7274f17ad5da2143e88e69933f6e733412379213d1613455c031df8e5dff1d28 +SIZE (KDE/release-service/22.04.1/analitza-22.04.1.tar.xz) = 349744 diff --git a/math/cantor/Makefile b/math/cantor/Makefile index f41a9a6dfdef..aa092518c408 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,64 +1,63 @@ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 4 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 shared-mime-info tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui help location network \ printsupport sql svg webchannel webengine \ widgets xml xmlpatterns \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake .include diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 929e60357614..76ebba8e493d 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101786 -SHA256 (KDE/release-service/22.04.0/cantor-22.04.0.tar.xz) = b74eda7c7c2dd303fd116b9f2868db1121d428cc721889c8c871a2fab7e147e7 -SIZE (KDE/release-service/22.04.0/cantor-22.04.0.tar.xz) = 9195268 +TIMESTAMP = 1652179546 +SHA256 (KDE/release-service/22.04.1/cantor-22.04.1.tar.xz) = 4caecf00148fec8149a73ebfbc0807fb59e82d97430b53a7e83500f3aeb583d1 +SIZE (KDE/release-service/22.04.1/cantor-22.04.1.tar.xz) = 9196084 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 1e90f9513145..5c69aadc791a 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101791 -SHA256 (KDE/release-service/22.04.0/kalgebra-22.04.0.tar.xz) = 24101ce89806342939c56c283d3f963b9b9b43eb825ff8657202d8d5c796ae9e -SIZE (KDE/release-service/22.04.0/kalgebra-22.04.0.tar.xz) = 1032540 +TIMESTAMP = 1652179544 +SHA256 (KDE/release-service/22.04.1/kalgebra-22.04.1.tar.xz) = a3963f6225f782092a1518b31c564e0770eab03ad4adb3b3de24fb09b19d9e1d +SIZE (KDE/release-service/22.04.1/kalgebra-22.04.1.tar.xz) = 1032496 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index c5da4fc549c7..4d98703efe0b 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101789 -SHA256 (KDE/release-service/22.04.0/kbruch-22.04.0.tar.xz) = 694aa9f4e5be449f6f1a954c0247a0c119e7a85545f4664fa0a46a84e64ff4ce -SIZE (KDE/release-service/22.04.0/kbruch-22.04.0.tar.xz) = 5634044 +TIMESTAMP = 1652179542 +SHA256 (KDE/release-service/22.04.1/kbruch-22.04.1.tar.xz) = 30bcfdebeccb092782fffcd26b7c41ea0a3e33ecd2b60d7a4c72208d2267a0ff +SIZE (KDE/release-service/22.04.1/kbruch-22.04.1.tar.xz) = 5634032 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 3e855a9ead88..4a52550192ac 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101787 -SHA256 (KDE/release-service/22.04.0/kcalc-22.04.0.tar.xz) = 2f57466f9bcdc08854df9a07fced3594b81bde6e3aa4a382ba42ac1d2ae6e7bd -SIZE (KDE/release-service/22.04.0/kcalc-22.04.0.tar.xz) = 388320 +TIMESTAMP = 1652179539 +SHA256 (KDE/release-service/22.04.1/kcalc-22.04.1.tar.xz) = f4b1db0f7f1185e6060ef86538a1467ed25214d063703997e8b2ae026b65ce26 +SIZE (KDE/release-service/22.04.1/kcalc-22.04.1.tar.xz) = 388312 diff --git a/math/kig/distinfo b/math/kig/distinfo index a3f7e504b23d..2a35ba404e68 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101790 -SHA256 (KDE/release-service/22.04.0/kig-22.04.0.tar.xz) = 6dd9e280e3f0bca4c900f9fd8ef2e138eb8f1b021adf4ffe4e29804adddc7965 -SIZE (KDE/release-service/22.04.0/kig-22.04.0.tar.xz) = 3185584 +TIMESTAMP = 1652179541 +SHA256 (KDE/release-service/22.04.1/kig-22.04.1.tar.xz) = 850c826c9823e3abaff4504c03874755565e2d6732982b4bdffcccedd841e2e3 +SIZE (KDE/release-service/22.04.1/kig-22.04.1.tar.xz) = 3185508 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 03f3bb16cad8..0cc8efc0d90b 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101788 -SHA256 (KDE/release-service/22.04.0/kmplot-22.04.0.tar.xz) = fe6ff129c4a1e2a4159fb2d3a3ca638e602197794481b3e5306dca144ced6b18 -SIZE (KDE/release-service/22.04.0/kmplot-22.04.0.tar.xz) = 3044240 +TIMESTAMP = 1652179543 +SHA256 (KDE/release-service/22.04.1/kmplot-22.04.1.tar.xz) = 08d34982559f80746836432529f7ae9212d7f6c06355a439dc35383deef37a3b +SIZE (KDE/release-service/22.04.1/kmplot-22.04.1.tar.xz) = 3044448 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 277ad7bb0ae5..407491b3d90c 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101787 -SHA256 (KDE/release-service/22.04.0/rocs-22.04.0.tar.xz) = a75d426c3f63e801270bb4ef71b28f655f7bb34da630f8c3e2de957e91a500f5 -SIZE (KDE/release-service/22.04.0/rocs-22.04.0.tar.xz) = 1554832 +TIMESTAMP = 1652179545 +SHA256 (KDE/release-service/22.04.1/rocs-22.04.1.tar.xz) = ec5b9b12d824003652610531e0dd266f016f3176e65a377d02633a1de7c88d4a +SIZE (KDE/release-service/22.04.1/rocs-22.04.1.tar.xz) = 1554672 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 934a95689534..76566768760c 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101881 -SHA256 (KDE/release-service/22.04.0/artikulate-22.04.0.tar.xz) = 3880d6bb7986db154bde969b5d8a02bcfdce2e8304d911a989156160f401c453 -SIZE (KDE/release-service/22.04.0/artikulate-22.04.0.tar.xz) = 1094192 +TIMESTAMP = 1652179720 +SHA256 (KDE/release-service/22.04.1/artikulate-22.04.1.tar.xz) = 8c5e6bfe07835ff973ceffc1bfd4924a563f611ad651d91aa7aa27c8f993d89c +SIZE (KDE/release-service/22.04.1/artikulate-22.04.1.tar.xz) = 1094464 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 35892a8ce7c6..fbf3cd4698d1 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101883 -SHA256 (KDE/release-service/22.04.0/kdeedu-data-22.04.0.tar.xz) = 3458eea043991bbd6f3fcb829b807e48eaf6a6800a0ca19c3e25c15435afb808 -SIZE (KDE/release-service/22.04.0/kdeedu-data-22.04.0.tar.xz) = 336076 +TIMESTAMP = 1652179722 +SHA256 (KDE/release-service/22.04.1/kdeedu-data-22.04.1.tar.xz) = c23214612c305fba15807d21018266824b7f60f163f03234fdb289493eb1ecd1 +SIZE (KDE/release-service/22.04.1/kdeedu-data-22.04.1.tar.xz) = 335904 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 85158f9db218..9e9589f70b7d 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101880 -SHA256 (KDE/release-service/22.04.0/kgeography-22.04.0.tar.xz) = a5aadabe42eeb43b9b2d088e9c8a8b69ed2e205b379aacbaa62ff038c056e5b8 -SIZE (KDE/release-service/22.04.0/kgeography-22.04.0.tar.xz) = 11087020 +TIMESTAMP = 1652179721 +SHA256 (KDE/release-service/22.04.1/kgeography-22.04.1.tar.xz) = dc05a8c8574bd7916ae77e3e69ba489c6e22a1342e2088e27934bf359df8ca50 +SIZE (KDE/release-service/22.04.1/kgeography-22.04.1.tar.xz) = 11086528 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 05aa2fa6a7fa..b072bf5dbe57 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101878 -SHA256 (KDE/release-service/22.04.0/klettres-22.04.0.tar.xz) = e32ec97eda3994b6111503a4ba4827dcb7013c747ec696c2f1532ad3b2c007c6 -SIZE (KDE/release-service/22.04.0/klettres-22.04.0.tar.xz) = 47138224 +TIMESTAMP = 1652179720 +SHA256 (KDE/release-service/22.04.1/klettres-22.04.1.tar.xz) = 07995e882d1971ac7c2bf9d15a3b0e3f92dc03358978a327198577f933959eb2 +SIZE (KDE/release-service/22.04.1/klettres-22.04.1.tar.xz) = 47142512 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index f26caf2c81b2..2539e65ae065 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101879 -SHA256 (KDE/release-service/22.04.0/ktouch-22.04.0.tar.xz) = 1076cde2bf6f181fc24e97229816483480c08ae3034eedf9a4d32b68090e190f -SIZE (KDE/release-service/22.04.0/ktouch-22.04.0.tar.xz) = 4981916 +TIMESTAMP = 1652179716 +SHA256 (KDE/release-service/22.04.1/ktouch-22.04.1.tar.xz) = 52cf92c131b75662c27d936a5811f1af13e428766deb4823df766cc07a3ae367 +SIZE (KDE/release-service/22.04.1/ktouch-22.04.1.tar.xz) = 4981964 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 9a85b7a14c59..92439d637c65 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101884 -SHA256 (KDE/release-service/22.04.0/kwordquiz-22.04.0.tar.xz) = e3e891f41c3cdc3a7a91e27e4c10516f1c5797d981bef406d8158284fe0e5a5f -SIZE (KDE/release-service/22.04.0/kwordquiz-22.04.0.tar.xz) = 4208316 +TIMESTAMP = 1652179718 +SHA256 (KDE/release-service/22.04.1/kwordquiz-22.04.1.tar.xz) = 7fa19ae60d27ee14463c1b505ccacfc761e78b36de66b417ff6e8992f9bc8857 +SIZE (KDE/release-service/22.04.1/kwordquiz-22.04.1.tar.xz) = 4208148 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index e849a4f54e2f..063134fa2d55 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101882 -SHA256 (KDE/release-service/22.04.0/libkeduvocdocument-22.04.0.tar.xz) = b0d07b022a1c5780a04c6cc25ac6436d9ebd53c4271fdb102e24666bb7ec9734 -SIZE (KDE/release-service/22.04.0/libkeduvocdocument-22.04.0.tar.xz) = 215056 +TIMESTAMP = 1652179717 +SHA256 (KDE/release-service/22.04.1/libkeduvocdocument-22.04.1.tar.xz) = 51554560748045617b8489b494f33756d615388d0a2ae92b4706082d4f338717 +SIZE (KDE/release-service/22.04.1/libkeduvocdocument-22.04.1.tar.xz) = 215004 diff --git a/misc/parley/Makefile b/misc/parley/Makefile index 059107278198..980fc2ab64b9 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -1,27 +1,26 @@ PORTNAME= parley DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Vocabulary trainer for KDE BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake desktop-file-utils gettext gnome kde:5 qt:5 tar:xz xorg USE_GNOME= libxml2 libxslt USE_KDE= attica auth codecs completion configwidgets coreaddons config \ crash doctools i18n jobwidgets kcmutils kio newstuff \ notifications kross khtml service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ libkeduvocdocument \ ecm_build USE_QT= concurrent core dbus declarative gui location network multimedia \ printsupport script svg webchannel webengine widgets xml \ buildtools_build qmake_build USE_XORG= x11 xrender OPTIONS_DEFINE= DOCS .include diff --git a/misc/parley/distinfo b/misc/parley/distinfo index cd1c00a72530..2802057a8ff3 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101879 -SHA256 (KDE/release-service/22.04.0/parley-22.04.0.tar.xz) = 2865a67cca2cde0261b18509f38098d367ae0f69d0e0724154b9a4de9a9f7272 -SIZE (KDE/release-service/22.04.0/parley-22.04.0.tar.xz) = 8501392 +TIMESTAMP = 1652179717 +SHA256 (KDE/release-service/22.04.1/parley-22.04.1.tar.xz) = 522c17719b0bd55e4be3a1373df7561cb46220864301d472bf0f99b5f5a07577 +SIZE (KDE/release-service/22.04.1/parley-22.04.1.tar.xz) = 8501272 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index a5d7ccd10166..947e8d511604 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101846 -SHA256 (KDE/release-service/22.04.0/dragon-22.04.0.tar.xz) = 9092e771c5c858540cc892bb7fbfe2f11b98b03889c981094bdcf917c7dc4a41 -SIZE (KDE/release-service/22.04.0/dragon-22.04.0.tar.xz) = 1666076 +TIMESTAMP = 1652179551 +SHA256 (KDE/release-service/22.04.1/dragon-22.04.1.tar.xz) = 37bd492b88480569a59f74e9788bf7a24cbda5c2153f33c02f8b2b6f7ca9035b +SIZE (KDE/release-service/22.04.1/dragon-22.04.1.tar.xz) = 1666092 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 365dc565a3b6..74b7f253c329 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101846 -SHA256 (KDE/release-service/22.04.0/kamoso-22.04.0.tar.xz) = fae9859de2c2a905b947aae2eed5c39cdeca53e48ff2f3929da49f44b374f005 -SIZE (KDE/release-service/22.04.0/kamoso-22.04.0.tar.xz) = 225980 +TIMESTAMP = 1652179552 +SHA256 (KDE/release-service/22.04.1/kamoso-22.04.1.tar.xz) = 5b8c58640624701b05cb8534c14b26fdccb43828c50eb347e114da9fb32d3d0d +SIZE (KDE/release-service/22.04.1/kamoso-22.04.1.tar.xz) = 225620 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index ddeb7f3b1430..644388920b6a 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101845 -SHA256 (KDE/release-service/22.04.0/ffmpegthumbs-22.04.0.tar.xz) = b6ca5d6f68a5058df411e6f24b57258cc97b91487fc8dbdd4104f392ac1ee1be -SIZE (KDE/release-service/22.04.0/ffmpegthumbs-22.04.0.tar.xz) = 30372 +TIMESTAMP = 1652179554 +SHA256 (KDE/release-service/22.04.1/ffmpegthumbs-22.04.1.tar.xz) = 8c2f7bdccde8f6ee78f8c6fe77cd6d0558fcc0173fb6605f04fddf453c9d7875 +SIZE (KDE/release-service/22.04.1/ffmpegthumbs-22.04.1.tar.xz) = 30380 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index a8a04f1d08f1..fb7daa5322a9 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101844 -SHA256 (KDE/release-service/22.04.0/kdenlive-22.04.0.tar.xz) = 66147b2f1a2cf6f05eda15e4cc3e9d9b126d2dbcc187ecc6d78dea2c7b2c6d79 -SIZE (KDE/release-service/22.04.0/kdenlive-22.04.0.tar.xz) = 12423528 +TIMESTAMP = 1652179553 +SHA256 (KDE/release-service/22.04.1/kdenlive-22.04.1.tar.xz) = ae879041f18ee89b3fef2dc85cbb6899bf184c433b234d0c2145085767952a4e +SIZE (KDE/release-service/22.04.1/kdenlive-22.04.1.tar.xz) = 12413372 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index 4b2a80b5eb05..0d4ada22b3a5 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,500 +1,501 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/16x16/actions/add-subtitle.svg share/icons/hicolor/16x16/actions/keyframe-add.svg share/icons/hicolor/16x16/actions/keyframe-disable.svg share/icons/hicolor/16x16/actions/keyframe-duplicate.svg share/icons/hicolor/16x16/actions/keyframe-next.svg share/icons/hicolor/16x16/actions/keyframe-previous.svg share/icons/hicolor/16x16/actions/keyframe-record.svg share/icons/hicolor/16x16/actions/keyframe-remove.svg share/icons/hicolor/16x16/actions/keyframe.svg share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/keyframe-add.svg share/icons/hicolor/22x22/actions/keyframe-disable.svg share/icons/hicolor/22x22/actions/keyframe-duplicate.svg share/icons/hicolor/22x22/actions/keyframe-next.svg share/icons/hicolor/22x22/actions/keyframe-previous.svg share/icons/hicolor/22x22/actions/keyframe-record.svg share/icons/hicolor/22x22/actions/keyframe-remove.svg share/icons/hicolor/22x22/actions/keyframe.svg share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/scalable/actions/add-subtitle.svg share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/effect-templates/secondary_color_correction.xml %%DATADIR%%/effect-templates/shut_off.xml %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml +%%DATADIR%%/effects/box_blur.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/spot_remover.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/luts/BLUE_TINT.cube %%DATADIR%%/luts/CINEMATIC.cube %%DATADIR%%/luts/GREEN_TINT.cube %%DATADIR%%/luts/TEAL_ORANGE.cube %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/scripts/checkpackages.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/speech.py %%DATADIR%%/scripts/speechtotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/slideanimations.rc %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_effects.knsrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_luts.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 7285489f91f2..cb6944175613 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101832 -SHA256 (KDE/release-service/22.04.0/kaccounts-integration-22.04.0.tar.xz) = 3e5197c1c7ddce92dd5bdcdcc05492f3c63c468e3c1e743c6e747114d34d08b8 -SIZE (KDE/release-service/22.04.0/kaccounts-integration-22.04.0.tar.xz) = 87528 +TIMESTAMP = 1652179565 +SHA256 (KDE/release-service/22.04.1/kaccounts-integration-22.04.1.tar.xz) = 72ed8df11b396ffaedb5196996ff3101051271432a7347952e19cdfe306144fa +SIZE (KDE/release-service/22.04.1/kaccounts-integration-22.04.1.tar.xz) = 87544 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index a4827b20f7c8..028049d47b1d 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101831 -SHA256 (KDE/release-service/22.04.0/kaccounts-providers-22.04.0.tar.xz) = 297a55bcfa26379e9501b70f17da238a4ae23fd908b3afaa0052853a1cca0e34 -SIZE (KDE/release-service/22.04.0/kaccounts-providers-22.04.0.tar.xz) = 64128 +TIMESTAMP = 1652179560 +SHA256 (KDE/release-service/22.04.1/kaccounts-providers-22.04.1.tar.xz) = b8533965489af122ad8d96d86dea3a0e4f7ff7771e8a1763b9b4b7ef9fb4f056 +SIZE (KDE/release-service/22.04.1/kaccounts-providers-22.04.1.tar.xz) = 64112 diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index daaef173b78e..841eed8faab9 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -1,36 +1,35 @@ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE multi-protocol instant messenger BUILD_DEPENDS= v4l_compat>0:multimedia/v4l_compat LIB_DEPENDS= libidn.so:dns/libidn \ libjasper.so:graphics/jasper \ libotr.so:security/libotr \ libv4l2.so:multimedia/libv4l USES= cmake compiler:c++11-lang desktop-file-utils gnome jpeg kde:5 \ qca qt:5 shebangfix tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd emoticons guiaddons i18n \ iconthemes itemviews jobwidgets js kcmutils kdelibs4support \ khtml kio notifications notifyconfig parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui \ ecm_build # KDE PIM components USE_KDE+= contacts identitymanagement libkleo pimtextedit USE_QT= concurrent core dbus gui network phonon4 printsupport sql widgets xml \ buildtools_build qmake_build testlib_build SHEBANG_FILES= protocols/winpopup/winpopup-install \ protocols/winpopup/winpopup-send \ kopete/kconf_update/*.pl OPTIONS_DEFINE= DOCS .include diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 52be9f10d491..35b813d3c7be 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101833 -SHA256 (KDE/release-service/22.04.0/kopete-22.04.0.tar.xz) = 0810ecf95cb6993e8f4b6f0e642d2da80b83613188e46b0acc2f314442f9c9c3 -SIZE (KDE/release-service/22.04.0/kopete-22.04.0.tar.xz) = 9671260 +TIMESTAMP = 1652179562 +SHA256 (KDE/release-service/22.04.1/kopete-22.04.1.tar.xz) = b3067ee815100b75b7d8c3aab59f04ca6d568ae9a16d623428e622a32d9e1ee6 +SIZE (KDE/release-service/22.04.1/kopete-22.04.1.tar.xz) = 9670764 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index a9842f93b872..0419e12e09fd 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101830 -SHA256 (KDE/release-service/22.04.0/ktp-accounts-kcm-22.04.0.tar.xz) = 83b47fea3e6b910636b5f1c0a232f692a5de8802d871758eaa59ed046e583033 -SIZE (KDE/release-service/22.04.0/ktp-accounts-kcm-22.04.0.tar.xz) = 266672 +TIMESTAMP = 1652179556 +SHA256 (KDE/release-service/22.04.1/ktp-accounts-kcm-22.04.1.tar.xz) = 543b0cd45d290b76ffc8e19c8db244433b342680892d6ee203967b4a1847ac96 +SIZE (KDE/release-service/22.04.1/ktp-accounts-kcm-22.04.1.tar.xz) = 266648 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index ebd636200a0e..825fea64d345 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101838 -SHA256 (KDE/release-service/22.04.0/ktp-approver-22.04.0.tar.xz) = aa035eaae401cf431a85ac5246909e95b3a63c5eecdaa8600bb133ca3488f1fd -SIZE (KDE/release-service/22.04.0/ktp-approver-22.04.0.tar.xz) = 38344 +TIMESTAMP = 1652179563 +SHA256 (KDE/release-service/22.04.1/ktp-approver-22.04.1.tar.xz) = 451e8dbf93290d8d493bb2e5309b7d6f29e3867f28fb37d7490ad8a007cab987 +SIZE (KDE/release-service/22.04.1/ktp-approver-22.04.1.tar.xz) = 38328 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index e9d829a0b9c3..3c639db9ce10 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101841 -SHA256 (KDE/release-service/22.04.0/ktp-auth-handler-22.04.0.tar.xz) = 08ff88a0296a7bc63f37e1cd68b8c9f58b79a36163dbe260d1e75e2236d7c631 -SIZE (KDE/release-service/22.04.0/ktp-auth-handler-22.04.0.tar.xz) = 48092 +TIMESTAMP = 1652179568 +SHA256 (KDE/release-service/22.04.1/ktp-auth-handler-22.04.1.tar.xz) = ebeed01a142a2cebad7f0a1722aa9ec7b777327ab861e87f4556da6c87e4e2ba +SIZE (KDE/release-service/22.04.1/ktp-auth-handler-22.04.1.tar.xz) = 48088 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index c6b81045b49c..0bbe639602ba 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101834 -SHA256 (KDE/release-service/22.04.0/ktp-call-ui-22.04.0.tar.xz) = 17649037d0fcd332123fe3228f6691bb7a0ad5b66c431b504c22c80108d7c63f -SIZE (KDE/release-service/22.04.0/ktp-call-ui-22.04.0.tar.xz) = 99100 +TIMESTAMP = 1652179565 +SHA256 (KDE/release-service/22.04.1/ktp-call-ui-22.04.1.tar.xz) = eb47ff05254ad3f689f22a70b3d68f0408a189815c6118822d6da07f45b1ab4a +SIZE (KDE/release-service/22.04.1/ktp-call-ui-22.04.1.tar.xz) = 99192 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index fe585ae52615..2bed366dac57 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101840 -SHA256 (KDE/release-service/22.04.0/ktp-common-internals-22.04.0.tar.xz) = 7957442388c9f0d86d79246f879625833866e1f9a389c306d95dd11cebe6a5b9 -SIZE (KDE/release-service/22.04.0/ktp-common-internals-22.04.0.tar.xz) = 451208 +TIMESTAMP = 1652179561 +SHA256 (KDE/release-service/22.04.1/ktp-common-internals-22.04.1.tar.xz) = 43859348ddcd596b9cd103c25242e42f15c1bee85d501cc90b0d44d89b36be6e +SIZE (KDE/release-service/22.04.1/ktp-common-internals-22.04.1.tar.xz) = 451308 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 62aa50951111..314121450cbd 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101835 -SHA256 (KDE/release-service/22.04.0/ktp-contact-list-22.04.0.tar.xz) = 49be2e74925e2e7c2213c690b97c56f3ac74373e38a10d84dbe16511303619db -SIZE (KDE/release-service/22.04.0/ktp-contact-list-22.04.0.tar.xz) = 154916 +TIMESTAMP = 1652179566 +SHA256 (KDE/release-service/22.04.1/ktp-contact-list-22.04.1.tar.xz) = fc1255c6c9d31baacb18be122bc578af296c41c27b36f30e4302f56623539fdd +SIZE (KDE/release-service/22.04.1/ktp-contact-list-22.04.1.tar.xz) = 154880 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index a935f0e362e4..d729bf992e94 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101836 -SHA256 (KDE/release-service/22.04.0/ktp-contact-runner-22.04.0.tar.xz) = c83adcd48f265ef2e69d33a0e15165a2220850388af70326122a2ecfca9d2de8 -SIZE (KDE/release-service/22.04.0/ktp-contact-runner-22.04.0.tar.xz) = 44084 +TIMESTAMP = 1652179555 +SHA256 (KDE/release-service/22.04.1/ktp-contact-runner-22.04.1.tar.xz) = fa61270cd854995bdb878779aae21e230ea74c5526a98e69b90b81866a139ec1 +SIZE (KDE/release-service/22.04.1/ktp-contact-runner-22.04.1.tar.xz) = 44076 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 72e5170aa5d3..ecda6aa136b2 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101843 -SHA256 (KDE/release-service/22.04.0/ktp-desktop-applets-22.04.0.tar.xz) = 16d56712a332d125096bdb0caa3e3dc69f7cb34633d5f60f625ac90029a4bbd8 -SIZE (KDE/release-service/22.04.0/ktp-desktop-applets-22.04.0.tar.xz) = 43736 +TIMESTAMP = 1652179564 +SHA256 (KDE/release-service/22.04.1/ktp-desktop-applets-22.04.1.tar.xz) = 86f6374775f85361b1f0265349841d71e96fb5372d16886d048d007583760da6 +SIZE (KDE/release-service/22.04.1/ktp-desktop-applets-22.04.1.tar.xz) = 43784 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index fbee428f8b65..2fe558c9f687 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101835 -SHA256 (KDE/release-service/22.04.0/ktp-filetransfer-handler-22.04.0.tar.xz) = 3b5b0873300d94980cb1178da286ba108248dfb9ba5457aeb76faf6f5aec6105 -SIZE (KDE/release-service/22.04.0/ktp-filetransfer-handler-22.04.0.tar.xz) = 46704 +TIMESTAMP = 1652179557 +SHA256 (KDE/release-service/22.04.1/ktp-filetransfer-handler-22.04.1.tar.xz) = 2a2da3a7050f41af03b7d0c3d778f9fefdf189ae356523455d880fe2058b2899 +SIZE (KDE/release-service/22.04.1/ktp-filetransfer-handler-22.04.1.tar.xz) = 46692 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index ab628c88072c..a5f8d19cbdf6 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101839 -SHA256 (KDE/release-service/22.04.0/ktp-kded-module-22.04.0.tar.xz) = a02167af2fa9562ae178b08d45de14a7e922d28f8f1137fa9e41a27326d53954 -SIZE (KDE/release-service/22.04.0/ktp-kded-module-22.04.0.tar.xz) = 99928 +TIMESTAMP = 1652179567 +SHA256 (KDE/release-service/22.04.1/ktp-kded-module-22.04.1.tar.xz) = c7469b6b0c76088c1df72f45be80b5e22567feb113226951330a93d57de4c6b5 +SIZE (KDE/release-service/22.04.1/ktp-kded-module-22.04.1.tar.xz) = 99864 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index a2b6446f392e..d1a6e8d9da41 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101837 -SHA256 (KDE/release-service/22.04.0/ktp-send-file-22.04.0.tar.xz) = a7bb7b3e303674a48e1baaf5ba06f7971de5611c133d7c3d717ded7805feefec -SIZE (KDE/release-service/22.04.0/ktp-send-file-22.04.0.tar.xz) = 28940 +TIMESTAMP = 1652179559 +SHA256 (KDE/release-service/22.04.1/ktp-send-file-22.04.1.tar.xz) = 349b609f9bd23a1e8edf4c760a2032b782478eab14e4204e53c91c37532a8e6b +SIZE (KDE/release-service/22.04.1/ktp-send-file-22.04.1.tar.xz) = 28936 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 49076b95faa3..669050dac67c 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101842 -SHA256 (KDE/release-service/22.04.0/ktp-text-ui-22.04.0.tar.xz) = f267819a395d164758a5d97b7660b1aa54365694200098b6c04d6b4c19c645ec -SIZE (KDE/release-service/22.04.0/ktp-text-ui-22.04.0.tar.xz) = 475132 +TIMESTAMP = 1652179556 +SHA256 (KDE/release-service/22.04.1/ktp-text-ui-22.04.1.tar.xz) = ce0c30c7a6235b627db5016f273f18e59ad8fa1ba7a4bd232ce1e4aa008eaf51 +SIZE (KDE/release-service/22.04.1/ktp-text-ui-22.04.1.tar.xz) = 475208 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 89b4515cd9e8..868248069f65 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101803 -SHA256 (KDE/release-service/22.04.0/ktorrent-22.04.0.tar.xz) = 62754759a1c6a2a13a539bcd33e4e3d88aff920cec5f8005055a6f09c9ab94f9 -SIZE (KDE/release-service/22.04.0/ktorrent-22.04.0.tar.xz) = 2056992 +TIMESTAMP = 1652179609 +SHA256 (KDE/release-service/22.04.1/ktorrent-22.04.1.tar.xz) = f359d69fd8fd9125b2738d72c55a2ee286556b5c1fd25a0c8fdda1ffda08d8b2 +SIZE (KDE/release-service/22.04.1/ktorrent-22.04.1.tar.xz) = 2059300 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 326eebca572a..72bd65c24e20 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101803 -SHA256 (KDE/release-service/22.04.0/libktorrent-22.04.0.tar.xz) = 30603fdad3489c7a5e5569a6918c71cb912e05f3aab96598245d1b10fd11f075 -SIZE (KDE/release-service/22.04.0/libktorrent-22.04.0.tar.xz) = 606420 +TIMESTAMP = 1652179608 +SHA256 (KDE/release-service/22.04.1/libktorrent-22.04.1.tar.xz) = 57dd46edc9e10127bca69104b0288bdfa5f1dab261f89d8fa4b2161ab7e7ddca +SIZE (KDE/release-service/22.04.1/libktorrent-22.04.1.tar.xz) = 606348 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index f0f29457543f..971b212d740e 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101869 -SHA256 (KDE/release-service/22.04.0/akonadi-calendar-22.04.0.tar.xz) = c1b308be4c7c612e629d4b9e8f04cb56f1acf3a7aa9c8690ac82cec3ff12d95e -SIZE (KDE/release-service/22.04.0/akonadi-calendar-22.04.0.tar.xz) = 364920 +TIMESTAMP = 1652179747 +SHA256 (KDE/release-service/22.04.1/akonadi-calendar-22.04.1.tar.xz) = 359c86f9fe84ea0b66629f143244dda0c14b534e34feacf88971f5170ba111cb +SIZE (KDE/release-service/22.04.1/akonadi-calendar-22.04.1.tar.xz) = 365496 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 5abb852fc518..1dca13db237f 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,155 +1,156 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KF5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KF5/AkonadiCalendar/Akonadi/CalendarBase include/KF5/AkonadiCalendar/Akonadi/CalendarClipboard include/KF5/AkonadiCalendar/Akonadi/ETMCalendar include/KF5/AkonadiCalendar/Akonadi/FetchJobCalendar include/KF5/AkonadiCalendar/Akonadi/FreeBusyManager include/KF5/AkonadiCalendar/Akonadi/FreeBusyProviderBase include/KF5/AkonadiCalendar/Akonadi/History include/KF5/AkonadiCalendar/Akonadi/ICalImporter include/KF5/AkonadiCalendar/Akonadi/ITIPHandler include/KF5/AkonadiCalendar/Akonadi/IncidenceChanger include/KF5/AkonadiCalendar/Akonadi/PublishDialog include/KF5/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KF5/AkonadiCalendar/Akonadi/TodoPurger include/KF5/AkonadiCalendar/akonadi-calendar_version.h include/KF5/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KF5/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KF5/AkonadiCalendar/akonadi/calendarbase.h include/KF5/AkonadiCalendar/akonadi/calendarclipboard.h include/KF5/AkonadiCalendar/akonadi/calendarsettings.h include/KF5/AkonadiCalendar/akonadi/etmcalendar.h include/KF5/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KF5/AkonadiCalendar/akonadi/freebusymanager.h include/KF5/AkonadiCalendar/akonadi/freebusyproviderbase.h include/KF5/AkonadiCalendar/akonadi/history.h include/KF5/AkonadiCalendar/akonadi/icalimporter.h include/KF5/AkonadiCalendar/akonadi/incidencechanger.h include/KF5/AkonadiCalendar/akonadi/itiphandler.h include/KF5/AkonadiCalendar/akonadi/publishdialog.h include/KF5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KF5/AkonadiCalendar/akonadi/todopurger.h lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfig.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfigVersion.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets.cmake lib/libKF5AkonadiCalendar.so lib/libKF5AkonadiCalendar.so.5 lib/libKF5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiCalendar.pri %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications5/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5.mo share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories share/qlogging-categories5/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/Makefile b/net/akonadi-contacts/Makefile index 300df532ed7b..dff84ba2fa33 100644 --- a/net/akonadi-contacts/Makefile +++ b/net/akonadi-contacts/Makefile @@ -1,32 +1,31 @@ PORTNAME= akonadi-contacts DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Libraries and daemons to implement Contact Management in Akonadi LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes itemmodels jobwidgets kcmutils kio \ prison service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadimime calendarcore contacts grantleetheme libkleo mime USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 4bd6a36a89ca..e1036becb619 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101875 -SHA256 (KDE/release-service/22.04.0/akonadi-contacts-22.04.0.tar.xz) = b48ab73e2b74d2a9c68b63352c5a1adee45aae7f5d4ce904b3a8b1a589cc887a -SIZE (KDE/release-service/22.04.0/akonadi-contacts-22.04.0.tar.xz) = 425972 +TIMESTAMP = 1652179749 +SHA256 (KDE/release-service/22.04.1/akonadi-contacts-22.04.1.tar.xz) = cdf2c60ab9d0d197eeddafc558506e3d1862c0e5648baf34eb6e43f87449390e +SIZE (KDE/release-service/22.04.1/akonadi-contacts-22.04.1.tar.xz) = 425992 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index e1cf8d5b3b4a..3dd2a64b8e77 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101849 -SHA256 (KDE/release-service/22.04.0/akonadi-mime-22.04.0.tar.xz) = 31af3ef9c9dba425081cdff3c1cb64ac6804f61bf9e83690afcb7dd651fc2867 -SIZE (KDE/release-service/22.04.0/akonadi-mime-22.04.0.tar.xz) = 145120 +TIMESTAMP = 1652179756 +SHA256 (KDE/release-service/22.04.1/akonadi-mime-22.04.1.tar.xz) = 6f5808f19431c42654da7e8e729a8b0dad0e9ed1d0057efc035fd78c88347d0e +SIZE (KDE/release-service/22.04.1/akonadi-mime-22.04.1.tar.xz) = 145144 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index e41d07aa51b5..13f9f88da2d4 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101860 -SHA256 (KDE/release-service/22.04.0/akonadi-notes-22.04.0.tar.xz) = 414df4a338b4b3dd22aca97c90082d6d5319eb77ad47e8c539a6d8824b3d0d70 -SIZE (KDE/release-service/22.04.0/akonadi-notes-22.04.0.tar.xz) = 27280 +TIMESTAMP = 1652179727 +SHA256 (KDE/release-service/22.04.1/akonadi-notes-22.04.1.tar.xz) = 5363c67945a98bbe8d0c10c42870eb42ee6730efc6cfa59c98316944df3e3a85 +SIZE (KDE/release-service/22.04.1/akonadi-notes-22.04.1.tar.xz) = 27324 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 66b3a379ad36..9846b2b9a3d3 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101870 -SHA256 (KDE/release-service/22.04.0/akonadi-search-22.04.0.tar.xz) = 8217aefce98a2581db1395e1c738e1b1135dd329bcdab28d34d1c3d7ebdb44e5 -SIZE (KDE/release-service/22.04.0/akonadi-search-22.04.0.tar.xz) = 99888 +TIMESTAMP = 1652179733 +SHA256 (KDE/release-service/22.04.1/akonadi-search-22.04.1.tar.xz) = 731ecb9ead8fd2e4cffeb72199bf1b6165c71d69e3dddbb38a75521d4bab3e2b +SIZE (KDE/release-service/22.04.1/akonadi-search-22.04.1.tar.xz) = 99900 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 6a403b600523..fba6cb4ecabc 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101877 -SHA256 (KDE/release-service/22.04.0/calendarsupport-22.04.0.tar.xz) = 54eab1f872ed46e52146a6e0004fe34f00a9dc7ce0ec11da574290e179cdda42 -SIZE (KDE/release-service/22.04.0/calendarsupport-22.04.0.tar.xz) = 767136 +TIMESTAMP = 1652179752 +SHA256 (KDE/release-service/22.04.1/calendarsupport-22.04.1.tar.xz) = 10b395b52c3a892b32ec5ba6663a85536930cfa751d8d01fafb5429d0083aeab +SIZE (KDE/release-service/22.04.1/calendarsupport-22.04.1.tar.xz) = 767032 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 1820acc68c4e..b297ed599f94 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101871 -SHA256 (KDE/release-service/22.04.0/eventviews-22.04.0.tar.xz) = 69343ed776177d88513a9f7ee9e460a734ebe3e0a129260998c94f69fb9834ad -SIZE (KDE/release-service/22.04.0/eventviews-22.04.0.tar.xz) = 456592 +TIMESTAMP = 1652179751 +SHA256 (KDE/release-service/22.04.1/eventviews-22.04.1.tar.xz) = ad0814c2bae3536dfd363f0b7bef7fd629944467a5aece0d033e70cb8f0f6e48 +SIZE (KDE/release-service/22.04.1/eventviews-22.04.1.tar.xz) = 456564 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 3849bc5e9ea5..65b63df21027 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101855 -SHA256 (KDE/release-service/22.04.0/incidenceeditor-22.04.0.tar.xz) = d11c61f2e27170254fb55273c3ebeed04f213ce5ec2fb6f5df3a3e6fae97e9a6 -SIZE (KDE/release-service/22.04.0/incidenceeditor-22.04.0.tar.xz) = 547828 +TIMESTAMP = 1652179730 +SHA256 (KDE/release-service/22.04.1/incidenceeditor-22.04.1.tar.xz) = 832d5332caa888205e1680a6636b31429e77b5a0b0807445234ab74df3936340 +SIZE (KDE/release-service/22.04.1/incidenceeditor-22.04.1.tar.xz) = 548260 diff --git a/net/kcalutils/Makefile b/net/kcalutils/Makefile index cfe13133abf7..c72f265593c4 100644 --- a/net/kcalutils/Makefile +++ b/net/kcalutils/Makefile @@ -1,28 +1,24 @@ PORTNAME= kcalutils DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications -PATCH_SITES= https://invent.kde.org/pim/kcalutils/-/commit/ -PATCHFILES= 494331a28bb722b4ab4c38a2520f305b8f7ad8fa.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE utility and user interface functions for accessing calendar LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons i18n iconthemes kdelibs4support \ widgetsaddons \ ecm_build # pim components USE_KDE+= calendarcore identitymanagement pimtextedit USE_QT= core gui widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 3169f9d39281..a447a5ec734f 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1651127363 -SHA256 (KDE/release-service/22.04.0/kcalutils-22.04.0.tar.xz) = 478237de88282aa074ff6d83d7af7b8e0e9f24e6bad2c1709215455f09abc972 -SIZE (KDE/release-service/22.04.0/kcalutils-22.04.0.tar.xz) = 340596 -SHA256 (KDE/release-service/22.04.0/494331a28bb722b4ab4c38a2520f305b8f7ad8fa.diff) = cceb8b58f1a9bf9073ae1076c4a2993449744a51268d3874e0c08117dd9c5325 -SIZE (KDE/release-service/22.04.0/494331a28bb722b4ab4c38a2520f305b8f7ad8fa.diff) = 880 +TIMESTAMP = 1652196957 +SHA256 (KDE/release-service/22.04.1/kcalutils-22.04.1.tar.xz) = d8ab231623f20d9014d9a77d480b06b4c1639d10d2e122b9e4c2651bfdf8fc6d +SIZE (KDE/release-service/22.04.1/kcalutils-22.04.1.tar.xz) = 340748 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index f987720e4152..049c8078dafd 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101868 -SHA256 (KDE/release-service/22.04.0/kdenetwork-filesharing-22.04.0.tar.xz) = d4bdf540bb31244d271c56caa52c542d7cd019d175eca6dfa0ad525ed87652da -SIZE (KDE/release-service/22.04.0/kdenetwork-filesharing-22.04.0.tar.xz) = 382596 +TIMESTAMP = 1652179755 +SHA256 (KDE/release-service/22.04.1/kdenetwork-filesharing-22.04.1.tar.xz) = 520c6e70624330789d44454c85826bf5e3c30e1f31c7503bf57464b53d80bfc0 +SIZE (KDE/release-service/22.04.1/kdenetwork-filesharing-22.04.1.tar.xz) = 382600 diff --git a/net/kget/Makefile b/net/kget/Makefile index 75e43184d285..6a59cbcf7044 100644 --- a/net/kget/Makefile +++ b/net/kget/Makefile @@ -1,46 +1,45 @@ PORTNAME= kget DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE download manager BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs LIB_DEPENDS= libKF5Torrent.so:net-p2p/libktorrent \ libassuan.so:security/libassuan \ libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qca qt:5 \ shebangfix sqlite tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ kdelibs4support kio notifications notifyconfig parts service \ solid sonnet textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport sql widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null CONFIGURE_ENV= XDG_CONFIG_HOME=/dev/null CONFLICTS_INSTALL= sra-tools # bin/kget OPTIONS_DEFINE= DOCS WORKSPACE OPTIONS_DEFAULT= WORKSPACE WORKSPACE_USE= KDE=plasma-workspace WORKSPACE_DESC= Shutdown on completion support WORKSPACE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibKWorkspace .include diff --git a/net/kget/distinfo b/net/kget/distinfo index a4c79a9768a7..066c6a225cb3 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101863 -SHA256 (KDE/release-service/22.04.0/kget-22.04.0.tar.xz) = adc18801658abe983aa8759f6a1899e69b64a8c4d1a761b0cf101523161e4707 -SIZE (KDE/release-service/22.04.0/kget-22.04.0.tar.xz) = 5432724 +TIMESTAMP = 1652179738 +SHA256 (KDE/release-service/22.04.1/kget-22.04.1.tar.xz) = 2de3cd0cf8d1f4b2a54240b7c4e514acf5388b4573e7502c27dc7266c5d81bed +SIZE (KDE/release-service/22.04.1/kget-22.04.1.tar.xz) = 5441676 diff --git a/net/kget/pkg-plist b/net/kget/pkg-plist index f5e5139cbb8e..1fd9d7677e2e 100644 --- a/net/kget/pkg-plist +++ b/net/kget/pkg-plist @@ -1,93 +1,94 @@ bin/kget lib/libkgetcore.so lib/libkgetcore.so.5 lib/libkgetcore.so.5.0.0 %%QT_PLUGINDIR%%/kget/kcms/kcm_kget_bittorrentfactory.so %%QT_PLUGINDIR%%/kget/kcms/kcm_kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget/kcms/kcm_kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget/kcms/kcm_kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget/kcms/kcm_kget_multisegkiofactory.so %%QT_PLUGINDIR%%/kget/kget_bittorrent.so %%QT_PLUGINDIR%%/kget/kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_kio.so %%QT_PLUGINDIR%%/kget/kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget/kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_multisegkiofactory.so share/applications/org.kde.kget.desktop share/config.kcfg/kget.kcfg share/config.kcfg/kget_checksumsearchfactory.kcfg share/config.kcfg/kget_mirrorsearchfactory.kcfg share/config.kcfg/kget_multisegkiofactory.kcfg share/dbus-1/services/org.kde.kget.service share/icons/hicolor/16x16/apps/kget.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/kget.png share/icons/hicolor/32x32/apps/kget.png share/icons/hicolor/48x48/apps/kget.png share/icons/hicolor/64x64/apps/kget.png share/icons/hicolor/128x128/apps/kget.png %%DATADIR%%/pics/kget_splash.png share/kio/servicemenus/kget_download.desktop share/knotifications5/kget.notifyrc share/kservicetypes5/kget_plugin.desktop share/kxmlgui5/kget/kgetui.rc share/locale/ar/LC_MESSAGES/kget.mo share/locale/be/LC_MESSAGES/kget.mo share/locale/bg/LC_MESSAGES/kget.mo share/locale/bs/LC_MESSAGES/kget.mo share/locale/ca/LC_MESSAGES/kget.mo share/locale/ca@valencia/LC_MESSAGES/kget.mo share/locale/cs/LC_MESSAGES/kget.mo share/locale/da/LC_MESSAGES/kget.mo share/locale/de/LC_MESSAGES/kget.mo share/locale/el/LC_MESSAGES/kget.mo share/locale/en_GB/LC_MESSAGES/kget.mo share/locale/eo/LC_MESSAGES/kget.mo share/locale/es/LC_MESSAGES/kget.mo share/locale/et/LC_MESSAGES/kget.mo share/locale/eu/LC_MESSAGES/kget.mo share/locale/fa/LC_MESSAGES/kget.mo share/locale/fi/LC_MESSAGES/kget.mo share/locale/fr/LC_MESSAGES/kget.mo share/locale/ga/LC_MESSAGES/kget.mo share/locale/gl/LC_MESSAGES/kget.mo share/locale/he/LC_MESSAGES/kget.mo share/locale/hi/LC_MESSAGES/kget.mo share/locale/hr/LC_MESSAGES/kget.mo share/locale/hu/LC_MESSAGES/kget.mo share/locale/ia/LC_MESSAGES/kget.mo +share/locale/id/LC_MESSAGES/kget.mo share/locale/is/LC_MESSAGES/kget.mo share/locale/it/LC_MESSAGES/kget.mo share/locale/ja/LC_MESSAGES/kget.mo share/locale/kk/LC_MESSAGES/kget.mo share/locale/km/LC_MESSAGES/kget.mo share/locale/ko/LC_MESSAGES/kget.mo share/locale/lt/LC_MESSAGES/kget.mo share/locale/lv/LC_MESSAGES/kget.mo share/locale/mr/LC_MESSAGES/kget.mo share/locale/nb/LC_MESSAGES/kget.mo share/locale/nds/LC_MESSAGES/kget.mo share/locale/nl/LC_MESSAGES/kget.mo share/locale/nn/LC_MESSAGES/kget.mo share/locale/pa/LC_MESSAGES/kget.mo share/locale/pl/LC_MESSAGES/kget.mo share/locale/pt/LC_MESSAGES/kget.mo share/locale/pt_BR/LC_MESSAGES/kget.mo share/locale/ro/LC_MESSAGES/kget.mo share/locale/ru/LC_MESSAGES/kget.mo share/locale/se/LC_MESSAGES/kget.mo share/locale/sk/LC_MESSAGES/kget.mo share/locale/sl/LC_MESSAGES/kget.mo share/locale/sq/LC_MESSAGES/kget.mo share/locale/sr/LC_MESSAGES/kget.mo share/locale/sv/LC_MESSAGES/kget.mo share/locale/ta/LC_MESSAGES/kget.mo share/locale/tg/LC_MESSAGES/kget.mo share/locale/tr/LC_MESSAGES/kget.mo share/locale/ug/LC_MESSAGES/kget.mo share/locale/uk/LC_MESSAGES/kget.mo share/locale/vi/LC_MESSAGES/kget.mo share/locale/wa/LC_MESSAGES/kget.mo share/locale/zh_CN/LC_MESSAGES/kget.mo share/locale/zh_TW/LC_MESSAGES/kget.mo share/metainfo/org.kde.kget.appdata.xml share/qlogging-categories5/kget.categories diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 40e404d3102a..7dda628e3102 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101853 -SHA256 (KDE/release-service/22.04.0/kidentitymanagement-22.04.0.tar.xz) = e094329de48e61b11310211833f62d8e856c2fe9cdf28b1e25e3164545c085f7 -SIZE (KDE/release-service/22.04.0/kidentitymanagement-22.04.0.tar.xz) = 159644 +TIMESTAMP = 1652179757 +SHA256 (KDE/release-service/22.04.1/kidentitymanagement-22.04.1.tar.xz) = 746a01e43dae1841ec412257f64cc25dd19139403e9119ff746882883ac80738 +SIZE (KDE/release-service/22.04.1/kidentitymanagement-22.04.1.tar.xz) = 159636 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 7bfecf49fa62..ef2e01c9bdea 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101861 -SHA256 (KDE/release-service/22.04.0/kimap-22.04.0.tar.xz) = ee211f269a9660988424690f2b686e9f9a35c6db6ecf37626cfcd604b174c08a -SIZE (KDE/release-service/22.04.0/kimap-22.04.0.tar.xz) = 130140 +TIMESTAMP = 1652179741 +SHA256 (KDE/release-service/22.04.1/kimap-22.04.1.tar.xz) = 743f7e5b089233654467811008c7b8d4f9d697e26661c5aef2751733c02e2465 +SIZE (KDE/release-service/22.04.1/kimap-22.04.1.tar.xz) = 130128 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index f50046b9bd16..b57f0f37d822 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101851 -SHA256 (KDE/release-service/22.04.0/kio-gdrive-22.04.0.tar.xz) = 9f910baa87f707d1f28c9da5d3f1b104b992f7c7b3ca2ca532cb3646d92c84ec -SIZE (KDE/release-service/22.04.0/kio-gdrive-22.04.0.tar.xz) = 72000 +TIMESTAMP = 1652179737 +SHA256 (KDE/release-service/22.04.1/kio-gdrive-22.04.1.tar.xz) = 06160b034bce0fb29205e8d201a337129010b53137b00ebe30dd596045350b8b +SIZE (KDE/release-service/22.04.1/kio-gdrive-22.04.1.tar.xz) = 72044 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index b0cee6ff1a1a..031e5287efbd 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -1,30 +1,29 @@ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 5 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libphonenumber.so:devel/libphonenumber \ libpoppler.so:graphics/poppler \ libZXing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 \ shared-mime-info ssl tar:xz USE_GNOME= libxml2 USE_KDE= archive coreaddons i18n \ ecm_build # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index d0aada39fa76..661a5bb5ba51 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101872 -SHA256 (KDE/release-service/22.04.0/kitinerary-22.04.0.tar.xz) = a73e3404a7f72a7fe277cd2afd7020c53329f4d02821c20f1f4b49c57ce34de0 -SIZE (KDE/release-service/22.04.0/kitinerary-22.04.0.tar.xz) = 1527352 +TIMESTAMP = 1652179746 +SHA256 (KDE/release-service/22.04.1/kitinerary-22.04.1.tar.xz) = 306a74c9be1b37dbba7e6876d81426b01af52f80ef139087949042bcc6956b7a +SIZE (KDE/release-service/22.04.1/kitinerary-22.04.1.tar.xz) = 1532184 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index ae7357efe285..f85039c8b5eb 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101859 -SHA256 (KDE/release-service/22.04.0/kldap-22.04.0.tar.xz) = 317853dc9a7291c4325336fbfef3003c955de93db00107c11b5f27e6f3acd3fc -SIZE (KDE/release-service/22.04.0/kldap-22.04.0.tar.xz) = 172588 +TIMESTAMP = 1652179748 +SHA256 (KDE/release-service/22.04.1/kldap-22.04.1.tar.xz) = 0bd291d6b2695e97813c00203c94a0d76f19d0898ab7ab70f0a7c59a10d806dc +SIZE (KDE/release-service/22.04.1/kldap-22.04.1.tar.xz) = 172568 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 14768f2de7c9..84ca89d61124 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101851 -SHA256 (KDE/release-service/22.04.0/kmailtransport-22.04.0.tar.xz) = 3b1a47544f958dbd848cc67257d4534908c7a0327726427f31bfd89e92c8f4ad -SIZE (KDE/release-service/22.04.0/kmailtransport-22.04.0.tar.xz) = 174136 +TIMESTAMP = 1652179750 +SHA256 (KDE/release-service/22.04.1/kmailtransport-22.04.1.tar.xz) = 8f1dc26f0dad28e81bce0f8ade3d83c811841bdb56a9b982032b1a233725add2 +SIZE (KDE/release-service/22.04.1/kmailtransport-22.04.1.tar.xz) = 174260 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 232685377410..fef97ad860dc 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101856 -SHA256 (KDE/release-service/22.04.0/kmbox-22.04.0.tar.xz) = 619a292f7738162e15ad74b46d3a5f5ed3b8a696e5f5768845148db1d19752fb -SIZE (KDE/release-service/22.04.0/kmbox-22.04.0.tar.xz) = 28736 +TIMESTAMP = 1652179745 +SHA256 (KDE/release-service/22.04.1/kmbox-22.04.1.tar.xz) = 91b89f23b98a1a86fbf25bac17318364241a05c5601d20bce7b4fdced6af2691 +SIZE (KDE/release-service/22.04.1/kmbox-22.04.1.tar.xz) = 28732 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index d32e5b78b97b..60386e6dfadb 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101867 -SHA256 (KDE/release-service/22.04.0/kmime-22.04.0.tar.xz) = 33b63ab9b2c2017710d5ea3ffa56072335f933da04fa149676570a2a07d72d41 -SIZE (KDE/release-service/22.04.0/kmime-22.04.0.tar.xz) = 156064 +TIMESTAMP = 1652179731 +SHA256 (KDE/release-service/22.04.1/kmime-22.04.1.tar.xz) = a7f94a60d204f7546a711551feafb05549caf25d5831ecb9942cad32caddca05 +SIZE (KDE/release-service/22.04.1/kmime-22.04.1.tar.xz) = 156096 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 576bc8b1f489..ce51bcd9481d 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101862 -SHA256 (KDE/release-service/22.04.0/kontactinterface-22.04.0.tar.xz) = 17cea1cd9ecd88e4874fecc816a04e826a68cdf079b04feb6b28e116d0f21eec -SIZE (KDE/release-service/22.04.0/kontactinterface-22.04.0.tar.xz) = 40564 +TIMESTAMP = 1652179732 +SHA256 (KDE/release-service/22.04.1/kontactinterface-22.04.1.tar.xz) = a30ab91e4b38c691ef5e7f4b81dddb318ec6006faf5cb4a44823bd0ed618ca6b +SIZE (KDE/release-service/22.04.1/kontactinterface-22.04.1.tar.xz) = 40548 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 76f29ec0a0a8..c2bd817bb9e2 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101852 -SHA256 (KDE/release-service/22.04.0/kpimtextedit-22.04.0.tar.xz) = 77a47601727aae891500eae9d69acfc0a64395f4ce389676011e158984f50148 -SIZE (KDE/release-service/22.04.0/kpimtextedit-22.04.0.tar.xz) = 215884 +TIMESTAMP = 1652179753 +SHA256 (KDE/release-service/22.04.1/kpimtextedit-22.04.1.tar.xz) = f6cedefcc351069e01d0f3f15d4eaefe0ecb2865aaab3e17811af54a39f9bfc7 +SIZE (KDE/release-service/22.04.1/kpimtextedit-22.04.1.tar.xz) = 215900 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index a97333db1bd1..5f5235eaa8fd 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101864 -SHA256 (KDE/release-service/22.04.0/krdc-22.04.0.tar.xz) = 250ba52b4d006c60ba27b8c1f2c3a80d071ddc9b238af79b9a6739f25280d3e7 -SIZE (KDE/release-service/22.04.0/krdc-22.04.0.tar.xz) = 1584368 +TIMESTAMP = 1652179740 +SHA256 (KDE/release-service/22.04.1/krdc-22.04.1.tar.xz) = ff233533b9f4381262633f5d390cfbe00bd9b36f4a784210068ba5998b2a8f31 +SIZE (KDE/release-service/22.04.1/krdc-22.04.1.tar.xz) = 1584256 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 31b7adca448e..629f80b73e06 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101860 -SHA256 (KDE/release-service/22.04.0/krfb-22.04.0.tar.xz) = 2ad6c76bd17b1bd6c1c0f6d85d474aed0077dae75222700b616840258a88bc90 -SIZE (KDE/release-service/22.04.0/krfb-22.04.0.tar.xz) = 1302844 +TIMESTAMP = 1652179742 +SHA256 (KDE/release-service/22.04.1/krfb-22.04.1.tar.xz) = 777b12e7abff962aad997377ffb377f46382d5f7265242a8e9643dcb2c1f0401 +SIZE (KDE/release-service/22.04.1/krfb-22.04.1.tar.xz) = 1303020 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 1ef02fec4e33..6fa3e0b3397a 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101857 -SHA256 (KDE/release-service/22.04.0/ksmtp-22.04.0.tar.xz) = 2da40edebd2106265cc8060adcf10eac97dd1ad3ed83b1c3919b096f3a5e6797 -SIZE (KDE/release-service/22.04.0/ksmtp-22.04.0.tar.xz) = 48616 +TIMESTAMP = 1652179743 +SHA256 (KDE/release-service/22.04.1/ksmtp-22.04.1.tar.xz) = f445692c54310c737d6afffeb8a2ce9d6c17164ca6145fc7f983f8adfe79f458 +SIZE (KDE/release-service/22.04.1/ksmtp-22.04.1.tar.xz) = 48576 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index b662c3b6b781..37e406b88c55 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101876 -SHA256 (KDE/release-service/22.04.0/ktnef-22.04.0.tar.xz) = 00465e460d90555d045204836e145183370550f14e648e9bc6099f891c06654e -SIZE (KDE/release-service/22.04.0/ktnef-22.04.0.tar.xz) = 303600 +TIMESTAMP = 1652179728 +SHA256 (KDE/release-service/22.04.1/ktnef-22.04.1.tar.xz) = 8938f4940ef6c65c67da761d1fe6e17bbcf36b37c4704bf6fff0f105258af6e6 +SIZE (KDE/release-service/22.04.1/ktnef-22.04.1.tar.xz) = 303716 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index cfc51f5a0ea3..0a8f4e96ab75 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101874 -SHA256 (KDE/release-service/22.04.0/libgravatar-22.04.0.tar.xz) = 7a45142acc26954a6827646f1743856ba343daa9f0e1e33e5c0eaa68ffd06b7e -SIZE (KDE/release-service/22.04.0/libgravatar-22.04.0.tar.xz) = 35760 +TIMESTAMP = 1652179726 +SHA256 (KDE/release-service/22.04.1/libgravatar-22.04.1.tar.xz) = d6bbb3c449585a881fa49ca82d5ad9d189aabb7b698ca9d59e07ce3e2a14c53b +SIZE (KDE/release-service/22.04.1/libgravatar-22.04.1.tar.xz) = 35804 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 45d962dea5f0..4d3dbcb94734 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101850 -SHA256 (KDE/release-service/22.04.0/libkgapi-22.04.0.tar.xz) = 3c0711cf6316823c30c126028c5ad9e56f16f3950f2b0e02466ee9a26d0c793f -SIZE (KDE/release-service/22.04.0/libkgapi-22.04.0.tar.xz) = 245272 +TIMESTAMP = 1652179734 +SHA256 (KDE/release-service/22.04.1/libkgapi-22.04.1.tar.xz) = 94e05f3a289b2a3db3d7119ea95063dcba0636a4ce148ea9913eeaf5051b0a9f +SIZE (KDE/release-service/22.04.1/libkgapi-22.04.1.tar.xz) = 245504 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index b8dc9d7412d9..fcba8d78f67b 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101869 -SHA256 (KDE/release-service/22.04.0/libksieve-22.04.0.tar.xz) = 7e5b27d4129267c571ab47150944f94f7823bf0e8ecc0573d7743b9d3b637579 -SIZE (KDE/release-service/22.04.0/libksieve-22.04.0.tar.xz) = 576100 +TIMESTAMP = 1652179749 +SHA256 (KDE/release-service/22.04.1/libksieve-22.04.1.tar.xz) = 3dffbb22fcae637c6c458dfea69cd2ae840a79d9dc72ba4af6b2dfda0b8fd71b +SIZE (KDE/release-service/22.04.1/libksieve-22.04.1.tar.xz) = 576072 diff --git a/net/mailcommon/Makefile b/net/mailcommon/Makefile index c88c8a1e3349..778d6e697b1c 100644 --- a/net/mailcommon/Makefile +++ b/net/mailcommon/Makefile @@ -1,35 +1,34 @@ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ i18n iconthemes itemmodels itemviews jobwidgets kio \ service solid sonnet syntaxhighlighting textwidgets wallet \ widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme identitymanagement \ imap ldap libkdepim libkleo mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus network xml designer gui multimedia \ phonon4 testlib uiplugin uitools webkit widgets \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index ef766b0b6d41..cd8329a49ac9 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101866 -SHA256 (KDE/release-service/22.04.0/mailcommon-22.04.0.tar.xz) = 6602f98042f503f720d7a91f1f59f363e12a091732b0d554a48ffa3b6492a27b -SIZE (KDE/release-service/22.04.0/mailcommon-22.04.0.tar.xz) = 739204 +TIMESTAMP = 1652179754 +SHA256 (KDE/release-service/22.04.1/mailcommon-22.04.1.tar.xz) = 5ac134dc7d4ff1c03fd192ff1f709a9839187a7bdd66b6ef033909730d95da75 +SIZE (KDE/release-service/22.04.1/mailcommon-22.04.1.tar.xz) = 738928 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 77406db8a331..0fe1a9ffc091 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101865 -SHA256 (KDE/release-service/22.04.0/mailimporter-22.04.0.tar.xz) = 5a6c5a7decd4eacdf5ab7fd8c985f2289647c3f67aeb46ce6990aa4bbd65331f -SIZE (KDE/release-service/22.04.0/mailimporter-22.04.0.tar.xz) = 559532 +TIMESTAMP = 1652179735 +SHA256 (KDE/release-service/22.04.1/mailimporter-22.04.1.tar.xz) = 866c77c85dbae71f7c6a3bac43d8fd19f1865155955a936660f7ba14d7a3f39d +SIZE (KDE/release-service/22.04.1/mailimporter-22.04.1.tar.xz) = 559644 diff --git a/net/messagelib/Makefile b/net/messagelib/Makefile index 7267819de6d4..83c447c2a161 100644 --- a/net/messagelib/Makefile +++ b/net/messagelib/Makefile @@ -1,42 +1,41 @@ PORTNAME= messagelib DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling messages LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lib cpe gettext grantlee:5 kde:5 qca qt:5 tar:xz CPE_VENDOR= kde USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes imap itemmodels itemviews jobwidgets \ kdewebkit kio service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ contacts grantleetheme gravatar identitymanagement \ ldap libkdepim libkleo mailtransport mbox \ mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport \ uitools webchannel webengine widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes OPTIONS_DEFINE= INOTIFY DOCS OPTIONS_DEFAULT= INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify .include diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 7f85409f1922..aba9237313c0 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101873 -SHA256 (KDE/release-service/22.04.0/messagelib-22.04.0.tar.xz) = 6bcee7def27caab7b44e8100392655ab882f05e20ba454de06712365c4c6c95b -SIZE (KDE/release-service/22.04.0/messagelib-22.04.0.tar.xz) = 10844100 +TIMESTAMP = 1652179744 +SHA256 (KDE/release-service/22.04.1/messagelib-22.04.1.tar.xz) = a8029e5c87b67980952850c84a92a80604b8bf98159096576acfbafdfc2ddf46 +SIZE (KDE/release-service/22.04.1/messagelib-22.04.1.tar.xz) = 10835924 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 9266ae25eac9..db8b8ecafd17 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101854 -SHA256 (KDE/release-service/22.04.0/pimcommon-22.04.0.tar.xz) = 4c8f27b9b004d223ad979472eeb3a6f218765e5e3db9ef8d5708a2ded3f21547 -SIZE (KDE/release-service/22.04.0/pimcommon-22.04.0.tar.xz) = 374972 +TIMESTAMP = 1652179729 +SHA256 (KDE/release-service/22.04.1/pimcommon-22.04.1.tar.xz) = 2a94cdd9e4340a9ed0a793191b87bd50502683b5480db3dae9f360298fb48106 +SIZE (KDE/release-service/22.04.1/pimcommon-22.04.1.tar.xz) = 374896 diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index c02136ea2089..4243b9225884 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101858 -SHA256 (KDE/release-service/22.04.0/zeroconf-ioslave-22.04.0.tar.xz) = e4de39118d09fbc0a6d749c621c700dfeae4a7110b9ce1038d0aab5231c8f75a -SIZE (KDE/release-service/22.04.0/zeroconf-ioslave-22.04.0.tar.xz) = 38932 +TIMESTAMP = 1652179729 +SHA256 (KDE/release-service/22.04.1/zeroconf-ioslave-22.04.1.tar.xz) = b3054b8df47d16f7690a82dcd9de667fdf23bef3125c6e26305736c0659f5caf +SIZE (KDE/release-service/22.04.1/zeroconf-ioslave-22.04.1.tar.xz) = 38936 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 28528ecd5250..dca811481aae 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101916 -SHA256 (KDE/release-service/22.04.0/print-manager-22.04.0.tar.xz) = 09032434380cae2d0879776af766363daa37de7e1a1a392b7f36c66e4fc1043b -SIZE (KDE/release-service/22.04.0/print-manager-22.04.0.tar.xz) = 272108 +TIMESTAMP = 1652179606 +SHA256 (KDE/release-service/22.04.1/print-manager-22.04.1.tar.xz) = f49c063ce442070f386fb1bb480a0c8450184f6c83274205155cff0f6e72b879 +SIZE (KDE/release-service/22.04.1/print-manager-22.04.1.tar.xz) = 272156 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 7364e738fdac..bdfb56dc453f 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101829 -SHA256 (KDE/release-service/22.04.0/kalzium-22.04.0.tar.xz) = bbc13198d41f29c2ea399a8b4ab8f0f4c02f822250bb29079e4873ca68b3f41d -SIZE (KDE/release-service/22.04.0/kalzium-22.04.0.tar.xz) = 24474288 +TIMESTAMP = 1652179604 +SHA256 (KDE/release-service/22.04.1/kalzium-22.04.1.tar.xz) = 6e8c135ca5d61221eea60baddb6a06d8aff1db2f67ffec51b353597881ddc8ba +SIZE (KDE/release-service/22.04.1/kalzium-22.04.1.tar.xz) = 24475024 diff --git a/science/step/Makefile b/science/step/Makefile index b83cc46a992d..b0ab7f764e91 100644 --- a/science/step/Makefile +++ b/science/step/Makefile @@ -1,37 +1,36 @@ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive physics simulator LIB_DEPENDS= libcln.so:math/cln \ libgsl.so:math/gsl \ libqalculate.so:math/libqalculate USES= cmake compiler:c++11-lang desktop-file-utils eigen:3 gettext kde:5 \ pkgconfig python:3.5+ qt:5 shared-mime-info shebangfix tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio newstuff notifications parts \ plotting service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network opengl printsupport svg \ widgets xml \ buildtools_build qmake_build CXXFLAGS_sparc64= -Wno-error=return-type SHEBANG_FILES= step/data/extractxml OPTIONS_DEFINE= DOCS pre-configure: # Avoid building translations, should the user pass # CURRENT_LANG to CMake. ${REINPLACE_CMD} -e '/set(STEP_BUILD_TRANSLATIONS 1)/ d' \ ${WRKSRC}/${PORTNAME}/data/CMakeLists.txt .include diff --git a/science/step/distinfo b/science/step/distinfo index 408612261f5a..ccb4e681c428 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101828 -SHA256 (KDE/release-service/22.04.0/step-22.04.0.tar.xz) = cbe614551808e31c6940c18e7a0d2b4a4eddc15a4d5c3ec671a6bc87de5cff00 -SIZE (KDE/release-service/22.04.0/step-22.04.0.tar.xz) = 938080 +TIMESTAMP = 1652179605 +SHA256 (KDE/release-service/22.04.1/step-22.04.1.tar.xz) = 357c3e0b8768bb8f8c39a41565cb1c7479d5625998e2fad2c14311f43ab9bc0d +SIZE (KDE/release-service/22.04.1/step-22.04.1.tar.xz) = 937916 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 5a1ebd090796..fcc508e6e049 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101798 -SHA256 (KDE/release-service/22.04.0/kgpg-22.04.0.tar.xz) = 89c46c9d7137ef667ee8e1e80b8e25028d463c8355261c7d027b13e569c8e83c -SIZE (KDE/release-service/22.04.0/kgpg-22.04.0.tar.xz) = 2955680 +TIMESTAMP = 1652179715 +SHA256 (KDE/release-service/22.04.1/kgpg-22.04.1.tar.xz) = c5bf5d77538bbb8a7ee6bd1b39cacc71fe67a7d7395799c47c75d57ae018ec35 +SIZE (KDE/release-service/22.04.1/kgpg-22.04.1.tar.xz) = 2955892 diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index 288f3babd033..d08bc480b025 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -1,27 +1,26 @@ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ libkleo mime \ ecm_build USE_QT= core dbus gui network printsupport testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 64f9dc5fe60b..1efa50451bcd 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101801 -SHA256 (KDE/release-service/22.04.0/kleopatra-22.04.0.tar.xz) = 1198ddb263e7849b6250b4ff2f1cc40b9581fe82e9bb3c17455164ef791d5f29 -SIZE (KDE/release-service/22.04.0/kleopatra-22.04.0.tar.xz) = 2234784 +TIMESTAMP = 1652179712 +SHA256 (KDE/release-service/22.04.1/kleopatra-22.04.1.tar.xz) = d30e6335b78c6fce6ad22e5482032d0f8a02740b46fe9fdc3263d39ceaeaae23 +SIZE (KDE/release-service/22.04.1/kleopatra-22.04.1.tar.xz) = 2236248 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 6ca9b13a3a1a..785b678ce8f4 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101802 -SHA256 (KDE/release-service/22.04.0/kpkpass-22.04.0.tar.xz) = 03036288aa35f93f77da3fad3a8a06021d6e85e1689de6584a7aa6fe7842673a -SIZE (KDE/release-service/22.04.0/kpkpass-22.04.0.tar.xz) = 28280 +TIMESTAMP = 1652179711 +SHA256 (KDE/release-service/22.04.1/kpkpass-22.04.1.tar.xz) = 5e5cadca3951f7e3439713f295d549e0ab2f5e4a013c604fb9a703ea9e99411d +SIZE (KDE/release-service/22.04.1/kpkpass-22.04.1.tar.xz) = 28284 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index d9eb06a60c8d..503eae27157e 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101799 -SHA256 (KDE/release-service/22.04.0/kwalletmanager-22.04.0.tar.xz) = d33824ae0abc7972fed9d7dad6acea9f67e7274ee5b15c0bb1df72b1a24aec17 -SIZE (KDE/release-service/22.04.0/kwalletmanager-22.04.0.tar.xz) = 800888 +TIMESTAMP = 1652179713 +SHA256 (KDE/release-service/22.04.1/kwalletmanager-22.04.1.tar.xz) = 289e181b2dadb9e2b1068e5ab9e844d5a99d05c6d83f47e492524befd2f70e5a +SIZE (KDE/release-service/22.04.1/kwalletmanager-22.04.1.tar.xz) = 800872 diff --git a/security/libkleo/Makefile b/security/libkleo/Makefile index 58338e6c0738..5ec75b93cf30 100644 --- a/security/libkleo/Makefile +++ b/security/libkleo/Makefile @@ -1,36 +1,35 @@ PORTNAME= libkleo DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libqgpgme.so:security/gpgme-qt5 \ libgpgmepp.so:security/gpgme-cpp RUN_DEPENDS= ${LOCALBASE}/bin/gmd5sum:sysutils/coreutils USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= codecs completion config coreaddons i18n itemmodels \ widgetsaddons windowsystem \ pimtextedit USE_QT= core gui widgets \ buildtools_build qmake_build _CORETOOLS= md5sum sha1sum sha256sum sha512sum OPTIONS_DEFINE= DOCS post-extract: # use the binaries of coreutils . for ct in ${_CORETOOLS} ${REINPLACE_CMD} -e '/create-command/ s#${ct}#g${ct}#' \ -e '/verify-command/ s#${ct}#g${ct}#' \ ${PATCH_WRKSRC}/src/libkleopatrarc.desktop . endfor .include diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index d1f780f9faa7..346e2756a667 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101800 -SHA256 (KDE/release-service/22.04.0/libkleo-22.04.0.tar.xz) = 4ebfae398f813e14c4061fa155e09d0c59ef1ae276a5940816b101c8d1508eef -SIZE (KDE/release-service/22.04.0/libkleo-22.04.0.tar.xz) = 468732 +TIMESTAMP = 1652179714 +SHA256 (KDE/release-service/22.04.1/libkleo-22.04.1.tar.xz) = 96d6058bab59c4b807548443d20dfc950f0a916c02aa84a96bf46ea2ecfe1807 +SIZE (KDE/release-service/22.04.1/libkleo-22.04.1.tar.xz) = 469032 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 5f1fd92df508..59153c6680e3 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101894 -SHA256 (KDE/release-service/22.04.0/baloo-widgets-22.04.0.tar.xz) = 38a607564d81c9b577d06377d5c8b019fc3af7497a4de128cb4acc2a2de5f159 -SIZE (KDE/release-service/22.04.0/baloo-widgets-22.04.0.tar.xz) = 270964 +TIMESTAMP = 1652179597 +SHA256 (KDE/release-service/22.04.1/baloo-widgets-22.04.1.tar.xz) = 680722c0124f9f149227221778fa4f3e30788e5bb6b202ac8cbcfd412d6e73ae +SIZE (KDE/release-service/22.04.1/baloo-widgets-22.04.1.tar.xz) = 271112 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index d4edc35edf3a..b377ffcd1aba 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101890 -SHA256 (KDE/release-service/22.04.0/filelight-22.04.0.tar.xz) = 434fa7439732905c4655cc376d2c89e86a5fcc5371ee6fda16400917a8e4e587 -SIZE (KDE/release-service/22.04.0/filelight-22.04.0.tar.xz) = 687632 +TIMESTAMP = 1652179599 +SHA256 (KDE/release-service/22.04.1/filelight-22.04.1.tar.xz) = b639aef7f2db474367e38b5ed2faee32b6affc7f78595d8d184e9f909172f91b +SIZE (KDE/release-service/22.04.1/filelight-22.04.1.tar.xz) = 692632 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 98e6af3a4f80..03d2477d5892 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101887 -SHA256 (KDE/release-service/22.04.0/k3b-22.04.0.tar.xz) = 5856d71fd5cf7f14eb646107f76e521869b4ac99df3411257c9f3427267b6504 -SIZE (KDE/release-service/22.04.0/k3b-22.04.0.tar.xz) = 10745808 +TIMESTAMP = 1652179596 +SHA256 (KDE/release-service/22.04.1/k3b-22.04.1.tar.xz) = d79037e95c7d567b9e6453f9f6cb72f4d764d43180aa8854ee935a338ed354fb +SIZE (KDE/release-service/22.04.1/k3b-22.04.1.tar.xz) = 10745320 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 1d9e901fde59..df77323204b1 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101886 -SHA256 (KDE/release-service/22.04.0/kbackup-22.04.0.tar.xz) = 1469f8e4b46c0a02695ae5c7c9996f72453d806916380a86f49b6826ec224f88 -SIZE (KDE/release-service/22.04.0/kbackup-22.04.0.tar.xz) = 389684 +TIMESTAMP = 1652179587 +SHA256 (KDE/release-service/22.04.1/kbackup-22.04.1.tar.xz) = e20f83cbe09a7138b35e3a03bf3f2cb8382b640ffabb9f284876e59a235504c1 +SIZE (KDE/release-service/22.04.1/kbackup-22.04.1.tar.xz) = 389852 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 9346df500004..f843a8cb84ba 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101889 -SHA256 (KDE/release-service/22.04.0/kcron-22.04.0.tar.xz) = d8ace47c86633ba677b64c765efe0b6f3de27cb75c17ae2434c498b07f3c0648 -SIZE (KDE/release-service/22.04.0/kcron-22.04.0.tar.xz) = 916032 +TIMESTAMP = 1652179592 +SHA256 (KDE/release-service/22.04.1/kcron-22.04.1.tar.xz) = 550e736e2d21c72bd83dbfb6b7d3bd435bc40bb7ff7b3d2de4ea0382fe98e595 +SIZE (KDE/release-service/22.04.1/kcron-22.04.1.tar.xz) = 915980 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 5a7c1cbfc338..98bd4d76e23c 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101895 -SHA256 (KDE/release-service/22.04.0/kdebugsettings-22.04.0.tar.xz) = 413013e210fc55332bf2684197b82d5418fac951ab0433ab0cc14ce0b7d703ca -SIZE (KDE/release-service/22.04.0/kdebugsettings-22.04.0.tar.xz) = 92560 +TIMESTAMP = 1652179591 +SHA256 (KDE/release-service/22.04.1/kdebugsettings-22.04.1.tar.xz) = 272303485823edda738604e881045f5a4c897a555e4b674b763b2e122cb86091 +SIZE (KDE/release-service/22.04.1/kdebugsettings-22.04.1.tar.xz) = 92544 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 111b1d65e482..9e6216069170 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101898 -SHA256 (KDE/release-service/22.04.0/kdf-22.04.0.tar.xz) = 5ca5c607efece832427b50f11978fa6a4d7d2c092559e06a719cbda74fbdc0f7 -SIZE (KDE/release-service/22.04.0/kdf-22.04.0.tar.xz) = 476828 +TIMESTAMP = 1652179595 +SHA256 (KDE/release-service/22.04.1/kdf-22.04.1.tar.xz) = 774d7e9d09e9497399bb09c33852329fbae7adf4c87a325ce10e81053d22790f +SIZE (KDE/release-service/22.04.1/kdf-22.04.1.tar.xz) = 476912 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 35648d329995..e1ef11a71405 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101897 -SHA256 (KDE/release-service/22.04.0/kdialog-22.04.0.tar.xz) = ac47479b576b87e8a82d62f4b685941b6ab54a44a06391c4c0762db159930589 -SIZE (KDE/release-service/22.04.0/kdialog-22.04.0.tar.xz) = 116584 +TIMESTAMP = 1652179600 +SHA256 (KDE/release-service/22.04.1/kdialog-22.04.1.tar.xz) = 95933b853cfc053c6881e27be945c96419a138994a57a28cf8dddab866de1763 +SIZE (KDE/release-service/22.04.1/kdialog-22.04.1.tar.xz) = 116588 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 3291c7ebed0f..8ecce08e1969 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101888 -SHA256 (KDE/release-service/22.04.0/kfloppy-22.04.0.tar.xz) = adaf3954eecf10d265a1dbdbaa05a86a894fc550e7440619977befe680ef711f -SIZE (KDE/release-service/22.04.0/kfloppy-22.04.0.tar.xz) = 214032 +TIMESTAMP = 1652179593 +SHA256 (KDE/release-service/22.04.1/kfloppy-22.04.1.tar.xz) = 3800fa8a105ca7fb18e8ed8dccab2eb9d029ed4fdd7de9f367c5a58d860089f9 +SIZE (KDE/release-service/22.04.1/kfloppy-22.04.1.tar.xz) = 214004 diff --git a/sysutils/khelpcenter/Makefile b/sysutils/khelpcenter/Makefile index 73aaa6e63792..d2e74caf6d32 100644 --- a/sysutils/khelpcenter/Makefile +++ b/sysutils/khelpcenter/Makefile @@ -1,30 +1,29 @@ PORTNAME= khelpcenter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= sysutils kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 application to show KDE application documentation LIB_DEPENDS= libxapian.so:databases/xapian-core USES= cmake compiler:c++11-lib desktop-file-utils gettext gnome \ grantlee:5 kde:5 qt:5 shebangfix tar:xz USE_GNOME= libxml2 USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons emoticons i18n init \ itemmodels itemviews jobwidgets js kcmutils \ kio khtml parts service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ ecm_build # This port depends on doctools; we need the entities and such for runtime # documentation support, where all the other KDE Plasma parts need it # only for the build-time documentation-generation. USE_KDE+= doctools USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build SHEBANG_FILES= searchhandlers/khc_mansearch.pl OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 774fca57bc4e..1fca453b33d8 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101891 -SHA256 (KDE/release-service/22.04.0/khelpcenter-22.04.0.tar.xz) = f565bfd8bc1c76ea903cc0cef07551a28b7962b1cdad6a52082550840c4ecad9 -SIZE (KDE/release-service/22.04.0/khelpcenter-22.04.0.tar.xz) = 4293140 +TIMESTAMP = 1652179590 +SHA256 (KDE/release-service/22.04.1/khelpcenter-22.04.1.tar.xz) = c87d35c5942d7f13b9889b777ade17c5f8e745b0c52a3173f5e645666b665272 +SIZE (KDE/release-service/22.04.1/khelpcenter-22.04.1.tar.xz) = 4293480 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 6fbfd92e7044..f303701bfb3d 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101892 -SHA256 (KDE/release-service/22.04.0/kpmcore-22.04.0.tar.xz) = b0ef165092fad3bd87d6084c65dee3d3134cc049f86c91793d73217c46f68dbb -SIZE (KDE/release-service/22.04.0/kpmcore-22.04.0.tar.xz) = 599012 +TIMESTAMP = 1652179594 +SHA256 (KDE/release-service/22.04.1/kpmcore-22.04.1.tar.xz) = 70d043cc125bd040d6b2af091e3a038d1780702fa327cda070300e94027c64f8 +SIZE (KDE/release-service/22.04.1/kpmcore-22.04.1.tar.xz) = 598940 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index ea17c66bc6af..4686fe5a1a13 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101893 -SHA256 (KDE/release-service/22.04.0/ksystemlog-22.04.0.tar.xz) = 25525e28756928ddb014ccec6f352c7378473ad417971608989818484b2847a4 -SIZE (KDE/release-service/22.04.0/ksystemlog-22.04.0.tar.xz) = 1968552 +TIMESTAMP = 1652179589 +SHA256 (KDE/release-service/22.04.1/ksystemlog-22.04.1.tar.xz) = d761a1e42d02479311bbe6a57724a2db5c9011615a8ce83813fe63fa9822eb36 +SIZE (KDE/release-service/22.04.1/ksystemlog-22.04.1.tar.xz) = 1968356 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 9b10e66a5fcd..698fc056c58d 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101896 -SHA256 (KDE/release-service/22.04.0/signon-kwallet-extension-22.04.0.tar.xz) = 33d19b1b758a21e568ce508cc168e568e34716f148cd83e214fb8a3f3194d2e8 -SIZE (KDE/release-service/22.04.0/signon-kwallet-extension-22.04.0.tar.xz) = 11176 +TIMESTAMP = 1652179588 +SHA256 (KDE/release-service/22.04.1/signon-kwallet-extension-22.04.1.tar.xz) = 2cecc13cf9316f0697542894f0995ee3bde358ee503c153e0a9072e3df1bd08e +SIZE (KDE/release-service/22.04.1/signon-kwallet-extension-22.04.1.tar.xz) = 11176 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 47eb48d2943f..2ab30a8bd4d7 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101894 -SHA256 (KDE/release-service/22.04.0/sweeper-22.04.0.tar.xz) = 7acd3ba274071adf9b4ca541fd53caa793428559b4c902e7be4d59cc6ec072bb -SIZE (KDE/release-service/22.04.0/sweeper-22.04.0.tar.xz) = 377472 +TIMESTAMP = 1652179598 +SHA256 (KDE/release-service/22.04.1/sweeper-22.04.1.tar.xz) = d011db209fbf929b153757bce42cbfc4ef8cc0dba40363d13458f26b644ee180 +SIZE (KDE/release-service/22.04.1/sweeper-22.04.1.tar.xz) = 377472 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 2245880c58ce..1c660aa62152 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101784 -SHA256 (KDE/release-service/22.04.0/kompare-22.04.0.tar.xz) = e2e0ee484b2eb098d9315ea26a0b68abce64ae02572baab998a5711f609c018d -SIZE (KDE/release-service/22.04.0/kompare-22.04.0.tar.xz) = 943804 +TIMESTAMP = 1652179664 +SHA256 (KDE/release-service/22.04.1/kompare-22.04.1.tar.xz) = 15fc7e13926dd0a994f50edc5b4ff17d7564f2f0781598a2106f6edb8bac534e +SIZE (KDE/release-service/22.04.1/kompare-22.04.1.tar.xz) = 943472 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 5790629a9805..7d967eac2ac4 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101783 -SHA256 (KDE/release-service/22.04.0/libkomparediff2-22.04.0.tar.xz) = 9c9ff478d4e31cc0b0dc980238956d92f683e6ff55dc1c6b67e3212c7e7e0711 -SIZE (KDE/release-service/22.04.0/libkomparediff2-22.04.0.tar.xz) = 172548 +TIMESTAMP = 1652179664 +SHA256 (KDE/release-service/22.04.1/libkomparediff2-22.04.1.tar.xz) = e404db3115a2a669edd3010dcfd2b45b140481c8b98be9df08fae11d8a0ce33f +SIZE (KDE/release-service/22.04.1/libkomparediff2-22.04.1.tar.xz) = 172640 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 27d3241aa5d7..f6a680c91f87 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101782 -SHA256 (KDE/release-service/22.04.0/markdownpart-22.04.0.tar.xz) = fc173afcd73d47d9dd3d0a20c7de71d1538bb2653236d6f2791fde0320a81b8c -SIZE (KDE/release-service/22.04.0/markdownpart-22.04.0.tar.xz) = 29096 +TIMESTAMP = 1652179663 +SHA256 (KDE/release-service/22.04.1/markdownpart-22.04.1.tar.xz) = 85a1bf7fed69e06446629baaf5c51e9d6449ef71d0bdc294d337fa66891d0fc6 +SIZE (KDE/release-service/22.04.1/markdownpart-22.04.1.tar.xz) = 29076 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index b6f01a747d21..bcaf4f40b6c8 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651638674 -SHA256 (KDE/release-service/22.04.0/falkon-22.04.0.tar.xz) = 2401d24df70a4c68ae6adbd634944e6679380d79eeee0be810308a07ba8b8fef -SIZE (KDE/release-service/22.04.0/falkon-22.04.0.tar.xz) = 2492228 +TIMESTAMP = 1652179665 +SHA256 (KDE/release-service/22.04.1/falkon-22.04.1.tar.xz) = 7499780c449e5a0decf96b9f8faa78b6cb5d9a95f74f12cb944e240bc21dc224 +SIZE (KDE/release-service/22.04.1/falkon-22.04.1.tar.xz) = 2492036 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index bc9fe2b21662..8d699ffcb862 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101915 -SHA256 (KDE/release-service/22.04.0/kteatime-22.04.0.tar.xz) = f3098313f7df6de082490c11ae6f840d3f73d2c3be22fb56d4bb0c15baf81df6 -SIZE (KDE/release-service/22.04.0/kteatime-22.04.0.tar.xz) = 301188 +TIMESTAMP = 1652179608 +SHA256 (KDE/release-service/22.04.1/kteatime-22.04.1.tar.xz) = d5bf75bdc3cafe4b7dc9b4ddff9baacf0f7f903d2a97fa45abf7739b9588655b +SIZE (KDE/release-service/22.04.1/kteatime-22.04.1.tar.xz) = 301300 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 0cff36acbce2..979f06c3dcb1 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101914 -SHA256 (KDE/release-service/22.04.0/ktimer-22.04.0.tar.xz) = 9bcbb23b2ba83270ea681ffce5e73699d941bb46fa7ce5d02a697c9ecc84e57d -SIZE (KDE/release-service/22.04.0/ktimer-22.04.0.tar.xz) = 393604 +TIMESTAMP = 1652179607 +SHA256 (KDE/release-service/22.04.1/ktimer-22.04.1.tar.xz) = 3ce7c8f99563b996c22a8b2d1a6438930a942a4bfcbe6eade136bdff5bfe4fe5 +SIZE (KDE/release-service/22.04.1/ktimer-22.04.1.tar.xz) = 393512 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index d29a55dbb549..e116ead3f151 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101884 -SHA256 (KDE/release-service/22.04.0/dolphin-22.04.0.tar.xz) = 58c6cdd0d3b8ac41880e5ea2322cad92380c8c45336150c3c39f9357dfa4f100 -SIZE (KDE/release-service/22.04.0/dolphin-22.04.0.tar.xz) = 5329504 +TIMESTAMP = 1652179548 +SHA256 (KDE/release-service/22.04.1/dolphin-22.04.1.tar.xz) = 9cf51ac21ffc3d12a919e99cca80f3bb14741eed2a3af54b4499332ccd979a7b +SIZE (KDE/release-service/22.04.1/dolphin-22.04.1.tar.xz) = 5329552 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 6407c2ea5b0a..a8b179fd29ae 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101885 -SHA256 (KDE/release-service/22.04.0/konqueror-22.04.0.tar.xz) = db55d614c64294860a7869e6570c10febbc42d4be595cdfdab3c327103710c68 -SIZE (KDE/release-service/22.04.0/konqueror-22.04.0.tar.xz) = 7683308 +TIMESTAMP = 1652179549 +SHA256 (KDE/release-service/22.04.1/konqueror-22.04.1.tar.xz) = 2744e2eaab3ebbd8949699cccfd6f849376b10b8a0f9cef00249207701e947ef +SIZE (KDE/release-service/22.04.1/konqueror-22.04.1.tar.xz) = 7683172 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 9f21efbb4ef3..a6780ed8f85f 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101780 -SHA256 (KDE/release-service/22.04.0/konsole-22.04.0.tar.xz) = bf9b69a0d86ae3c94f01132b9fa8361cee95ff72ddad0002f3b95ce42777dbf3 -SIZE (KDE/release-service/22.04.0/konsole-22.04.0.tar.xz) = 1466296 +TIMESTAMP = 1652179603 +SHA256 (KDE/release-service/22.04.1/konsole-22.04.1.tar.xz) = 8d049888a9be2464ec5c0c961fbab155fea679a714558f9ad6e13720c56822e3 +SIZE (KDE/release-service/22.04.1/konsole-22.04.1.tar.xz) = 1466324 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index b437fcdbb238..9655b900e273 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1650101781 -SHA256 (KDE/release-service/22.04.0/yakuake-22.04.0.tar.xz) = b7f96b48fd5baa75dd8fe53c8886f8cb0628f6a77a33232dc5bf06f45f6b2006 -SIZE (KDE/release-service/22.04.0/yakuake-22.04.0.tar.xz) = 403924 +TIMESTAMP = 1652179602 +SHA256 (KDE/release-service/22.04.1/yakuake-22.04.1.tar.xz) = 53389837706aa62d56d3965bb846b435fc15a3083e3756c75a25aa86ee65c1b0 +SIZE (KDE/release-service/22.04.1/yakuake-22.04.1.tar.xz) = 403940