diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 7014f4de20e9..ee4064704c45 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.6 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.97.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 22.08.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.21.0 +KDE_APPLICATIONS_VERSION?= 22.08.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.21.1 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 22.8.0 +KDE_APPLICATIONS_SHLIB_G_VER?= 22.8.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= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 3aad2a456bfe..d6cda6e741b8 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628664 -SHA256 (KDE/release-service/22.08.0/kmag-22.08.0.tar.xz) = b9a16003d5a6b2a57bef178fdb3eec955dd76825e7519ed83c882459aa0d813a -SIZE (KDE/release-service/22.08.0/kmag-22.08.0.tar.xz) = 710484 +TIMESTAMP = 1662480070 +SHA256 (KDE/release-service/22.08.1/kmag-22.08.1.tar.xz) = faaf71f90f8644fd04539124eb91e1278f05aeaba0775823dafccfd510cae125 +SIZE (KDE/release-service/22.08.1/kmag-22.08.1.tar.xz) = 710452 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 114b9c9b59e4..9f0098333fbe 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628665 -SHA256 (KDE/release-service/22.08.0/kmousetool-22.08.0.tar.xz) = 6e2333c5911dd0538904f1c23e37de096b52c537223fb0aa3240b2f881f299c5 -SIZE (KDE/release-service/22.08.0/kmousetool-22.08.0.tar.xz) = 122208 +TIMESTAMP = 1662480072 +SHA256 (KDE/release-service/22.08.1/kmousetool-22.08.1.tar.xz) = f6ca77cb4d2262c766e849dada39d1c572d65109c2f696ec495cfbfac944f089 +SIZE (KDE/release-service/22.08.1/kmousetool-22.08.1.tar.xz) = 122192 diff --git a/accessibility/kmouth/Makefile b/accessibility/kmouth/Makefile index 1e06fb4f4dee..522cc399c4b0 100644 --- a/accessibility/kmouth/Makefile +++ b/accessibility/kmouth/Makefile @@ -1,23 +1,22 @@ PORTNAME= kmouth DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Speech synthesizer frontend for KDE WWW= https://www.kde.org/applications/utilities/kmouth/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n jobwidgets kio service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport speech widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index dd9c2c1e8b98..30509d02c051 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628666 -SHA256 (KDE/release-service/22.08.0/kmouth-22.08.0.tar.xz) = 2d54c38e4ee309af8bd161b94ae8449c09b588e41d94a28fd282bdf60e884445 -SIZE (KDE/release-service/22.08.0/kmouth-22.08.0.tar.xz) = 2055136 +TIMESTAMP = 1662480074 +SHA256 (KDE/release-service/22.08.1/kmouth-22.08.1.tar.xz) = 1dc8655cb0395f1e3d9f60e156fd514fb55f816a95f57fd18d54e28da303b054 +SIZE (KDE/release-service/22.08.1/kmouth-22.08.1.tar.xz) = 2055104 diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 91d01f5ca7b2..dc9f554df68a 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -1,48 +1,47 @@ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE WWW= https://utils.kde.org/projects/ark/ LICENSE= GPLv2+ USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \ cpe qt:5 tar:xz xorg 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_XORG= x11 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} .include diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 5026707b26ac..e4265e9b4346 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628536 -SHA256 (KDE/release-service/22.08.0/ark-22.08.0.tar.xz) = d9dd766b7c3243edbed29df105b3e198da16e76063576f4eeed9867f0e17e847 -SIZE (KDE/release-service/22.08.0/ark-22.08.0.tar.xz) = 2783000 +TIMESTAMP = 1662479936 +SHA256 (KDE/release-service/22.08.1/ark-22.08.1.tar.xz) = 390d4cd2be6b1a982bf2a85bc2d81cbe7d8c5c8cd4dbdcb8b1ce7c36e98d1a17 +SIZE (KDE/release-service/22.08.1/ark-22.08.1.tar.xz) = 2784252 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 0bc8f9063e03..d710f211d04c 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628649 -SHA256 (KDE/release-service/22.08.0/kosmindoormap-22.08.0.tar.xz) = 6e42aed4bb98de8e9745399a05c55f69234c4ab26baf45b4d99521c355852496 -SIZE (KDE/release-service/22.08.0/kosmindoormap-22.08.0.tar.xz) = 356152 +TIMESTAMP = 1662480052 +SHA256 (KDE/release-service/22.08.1/kosmindoormap-22.08.1.tar.xz) = 7ad842fd81cab90209a7165a4af76cd727fa8251a60287b2d52791a03aef4a10 +SIZE (KDE/release-service/22.08.1/kosmindoormap-22.08.1.tar.xz) = 356208 diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 8d714d6cbe04..b2bfcc247813 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -1,53 +1,52 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= astro education kde kde-applications PATCH_SITES= https://invent.kde.org/education/marble/-/commit/ PATCHFILES= 677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff:-p1 MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE WWW= https://marble.kde.org/ 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 xorg 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_XORG= x11 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= ${KDE_APPLICATIONS_SHLIB_G_VER} 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 6f79efcb57e4..6c5561319dc5 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1662119965 -SHA256 (KDE/release-service/22.08.0/marble-22.08.0.tar.xz) = 02a88a77078d4f73ac6870e075b93740c30dd3d9e8ad31201ce29b44d0faab6e -SIZE (KDE/release-service/22.08.0/marble-22.08.0.tar.xz) = 53662988 -SHA256 (KDE/release-service/22.08.0/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 97b3e42d94091d0d7ba07f7ec1718e386080e613a8d051ed9872c2f012fa0820 -SIZE (KDE/release-service/22.08.0/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 4767 +TIMESTAMP = 1662480051 +SHA256 (KDE/release-service/22.08.1/marble-22.08.1.tar.xz) = 90b603d5c6d8aba728fab94e599c5788702110bae7f418dd5ad909b9dcd6c3e7 +SIZE (KDE/release-service/22.08.1/marble-22.08.1.tar.xz) = 53663748 +SHA256 (KDE/release-service/22.08.1/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 97b3e42d94091d0d7ba07f7ec1718e386080e613a8d051ed9872c2f012fa0820 +SIZE (KDE/release-service/22.08.1/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 4767 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 606ad0712c74..f17c7fa63411 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628543 -SHA256 (KDE/release-service/22.08.0/audiocd-kio-22.08.0.tar.xz) = 78ab8271ad4fa3f2dad7d8716572edc263ef0f9cd7bc6722b86c14e47d9b1493 -SIZE (KDE/release-service/22.08.0/audiocd-kio-22.08.0.tar.xz) = 526640 +TIMESTAMP = 1662479943 +SHA256 (KDE/release-service/22.08.1/audiocd-kio-22.08.1.tar.xz) = 3f15da56d028528d0016abeeef3c25348ccc08469035036cb0bf116b2147c92a +SIZE (KDE/release-service/22.08.1/audiocd-kio-22.08.1.tar.xz) = 526656 diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile index 718790e9bf1a..212f2b536632 100644 --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -1,31 +1,30 @@ PORTNAME= elisa DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Audio player with QML and KDE Plasma integration WWW= https://userbase.kde.org/Elisa LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++14-lang desktop-file-utils gettext kde:5 \ pkgconfig qt:5 tar:xz xorg USE_KDE= auth baloo5 bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons filemetadata i18n iconthemes itemviews \ jobwidgets kcmutils kdeclarative kio kirigami2 package \ service solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 sql svg widgets xml \ buildtools_build declarative-test_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS VLC OPTIONS_DEFAULT= DOCS VLC VLC_DESC= Use VLC instead of QtMultimedia VLC_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LIBVLC VLC_LIB_DEPENDS= libvlc.so:multimedia/vlc .include diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 1cdedb25e35d..583f3f008dda 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628538 -SHA256 (KDE/release-service/22.08.0/elisa-22.08.0.tar.xz) = 3e70a12d0d56e217243b0cefa778999d37a89932335981c891463dfe5f95a193 -SIZE (KDE/release-service/22.08.0/elisa-22.08.0.tar.xz) = 1767876 +TIMESTAMP = 1662479938 +SHA256 (KDE/release-service/22.08.1/elisa-22.08.1.tar.xz) = 378def986147fd9c95785ddd0f5a0e46b759ae0e03fea5327aef7d84a0055415 +SIZE (KDE/release-service/22.08.1/elisa-22.08.1.tar.xz) = 1767740 diff --git a/audio/juk/Makefile b/audio/juk/Makefile index 6ff15e396371..522a885b4de8 100644 --- a/audio/juk/Makefile +++ b/audio/juk/Makefile @@ -1,26 +1,25 @@ PORTNAME= juk DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Jukebox, tagger and music collection manager WWW= https://www.kde.org/applications/multimedia/juk/ LICENSE= GPLv2 LIB_DEPENDS= libtag.so:audio/taglib USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons globalaccel i18n iconthemes itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network phonon4 svg widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/audio/juk/distinfo b/audio/juk/distinfo index a77b3e2e8524..580f9aadb426 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628544 -SHA256 (KDE/release-service/22.08.0/juk-22.08.0.tar.xz) = 6f6dfd55233bfa30616a23c2c6da1cf2c04a759655ac8deae3de6b1fcd4c0182 -SIZE (KDE/release-service/22.08.0/juk-22.08.0.tar.xz) = 2015664 +TIMESTAMP = 1662479944 +SHA256 (KDE/release-service/22.08.1/juk-22.08.1.tar.xz) = aaffc925e724a79914fb50e9254e8fcc9a04d429e64e61ee4eb56b36029f355d +SIZE (KDE/release-service/22.08.1/juk-22.08.1.tar.xz) = 2015624 diff --git a/audio/kmix/Makefile b/audio/kmix/Makefile index 9df18fd46fe3..f4a911d7975d 100644 --- a/audio/kmix/Makefile +++ b/audio/kmix/Makefile @@ -1,40 +1,39 @@ PORTNAME= kmix DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sound mixer for KDE WWW= https://www.kde.org/applications/multimedia/kmix/ LICENSE= GPLv2 LIB_DEPENDS= libasound.so:audio/alsa-lib USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ emoticons globalaccel i18n iconthemes init itemmodels \ itemviews kcmutils kdelibs4support notifications package \ plasma-framework service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= core dbus gui widgets xml \ buildtools_build qmake_build USE_XORG= x11 # we want the KF5 version of kmix CMAKE_ARGS= -DKMIX_KF5_BUILD:BOOL=TRUE OPTIONS_DEFINE= PULSEAUDIO DOCS # TODO: readd ALSA option # # ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib # ALSA_EXTRA_PATCHES_OFF= ${FILESDIR}/extrapatch-no_alsa PULSEAUDIO_LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libpulse.so:audio/pulseaudio PULSEAUDIO_USES= gnome PULSEAUDIO_USE= GNOME=glib20 PULSEAUDIO_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Canberra \ CMAKE_DISABLE_FIND_PACKAGE_PulseAudio .include diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 06a9962ec7e3..035824451114 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628542 -SHA256 (KDE/release-service/22.08.0/kmix-22.08.0.tar.xz) = 45a824abd68e6f88f7f1681a77951180ae0033284f251668a82003c30f310b67 -SIZE (KDE/release-service/22.08.0/kmix-22.08.0.tar.xz) = 1163696 +TIMESTAMP = 1662479942 +SHA256 (KDE/release-service/22.08.1/kmix-22.08.1.tar.xz) = 0d7fe6349375c780dcddb9b0b4562942881786da643fa3bb8d206e340a64acb6 +SIZE (KDE/release-service/22.08.1/kmix-22.08.1.tar.xz) = 1163704 diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index a414dde180f5..5647e0575aa7 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -1,40 +1,39 @@ PORTNAME= kwave DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sound editor for KDE WWW= http://kwave.sourceforge.net/ LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \ libFLAC.so:audio/flac \ libfftw3.so:math/fftw3 \ libid3.so:audio/id3lib \ libmad.so:audio/libmad \ libogg.so:audio/libogg \ libopus.so:audio/opus \ libsamplerate.so:audio/libsamplerate \ libvorbisenc.so:audio/libvorbis USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ localbase:ldflags magick:6,build pkgconfig qt:5 tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n iconthemes itemviews \ jobwidgets kio service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui multimedia network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_GROUP= AUDIOPLUGIN OPTIONS_GROUP_AUDIOPLUGIN= ALSA PULSEAUDIO ALSA_CMAKE_BOOL= WITH_ALSA ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib PULSEAUDIO_CMAKE_BOOL= WITH_PULSEAUDIO PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio OPTIONS_DEFINE= DOCS .include diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 22c68aa2d173..81b61e5d738f 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628537 -SHA256 (KDE/release-service/22.08.0/kwave-22.08.0.tar.xz) = 4ff1c8b34e27887c18d44bc51362c2bc48973bbb08b24456eecc19ead68cc666 -SIZE (KDE/release-service/22.08.0/kwave-22.08.0.tar.xz) = 6956396 +TIMESTAMP = 1662479937 +SHA256 (KDE/release-service/22.08.1/kwave-22.08.1.tar.xz) = f09535a98bc1c8fa5ef6b0c969dfd64bf4f621fe0de20c5d60e0e870f7ad0c28 +SIZE (KDE/release-service/22.08.1/kwave-22.08.1.tar.xz) = 6956384 diff --git a/audio/libkcddb/Makefile b/audio/libkcddb/Makefile index f5839b2a567a..90a6c7d9d82e 100644 --- a/audio/libkcddb/Makefile +++ b/audio/libkcddb/Makefile @@ -1,24 +1,23 @@ PORTNAME= libkcddb DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CDDB library WWW= https://www.kde.org/ LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n jobwidgets kio service solid \ widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 038b6968526e..362cbae8d50c 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628540 -SHA256 (KDE/release-service/22.08.0/libkcddb-22.08.0.tar.xz) = 9e1396fc330979ab593b4070abe81957cd862749f13d0ee3d1aadde7130bfc65 -SIZE (KDE/release-service/22.08.0/libkcddb-22.08.0.tar.xz) = 435720 +TIMESTAMP = 1662479939 +SHA256 (KDE/release-service/22.08.1/libkcddb-22.08.1.tar.xz) = a0f6d05e1c45deb51cb63f744ad83f08fd443fa8f6fd718a3ed821f221a93889 +SIZE (KDE/release-service/22.08.1/libkcddb-22.08.1.tar.xz) = 435760 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 683b19f60c16..c4d1b142f7a7 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628541 -SHA256 (KDE/release-service/22.08.0/libkcompactdisc-22.08.0.tar.xz) = 1298cba2ba9e2e37b2b6cf0e6df664753cb2dba434afdba283419216908cdf38 -SIZE (KDE/release-service/22.08.0/libkcompactdisc-22.08.0.tar.xz) = 97320 +TIMESTAMP = 1662479941 +SHA256 (KDE/release-service/22.08.1/libkcompactdisc-22.08.1.tar.xz) = 9fb4e607ee4e23680a410845ba28919b58757ca73071dcbe7143ea736b4b9c8a +SIZE (KDE/release-service/22.08.1/libkcompactdisc-22.08.1.tar.xz) = 97336 diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 8f271565277c..407721504445 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -1,88 +1,87 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Storage server for KDE-Pim WWW= https://community.kde.org/KDE_PIM/Akonadi 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 xorg 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 USE_XORG= x11 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 5de1d28aa2ff..d488010aa26b 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628546 -SHA256 (KDE/release-service/22.08.0/akonadi-22.08.0.tar.xz) = ed6bda235ff516799bb61f8ef0653c57a7ac747b43e0407d95de1c3673f7fbbd -SIZE (KDE/release-service/22.08.0/akonadi-22.08.0.tar.xz) = 1630904 +TIMESTAMP = 1662479946 +SHA256 (KDE/release-service/22.08.1/akonadi-22.08.1.tar.xz) = 21f91ea4fa10574a2576a3c446dea3e3f145e56b34f5e9e61708473fcd02def9 +SIZE (KDE/release-service/22.08.1/akonadi-22.08.1.tar.xz) = 1631044 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index bc665a5c1553..5374f8860b53 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628641 -SHA256 (KDE/release-service/22.08.0/akonadi-calendar-tools-22.08.0.tar.xz) = 087acfc80f3c4ef7d7e34143f1d900b019d3996dd30d55768e6040627e9c8f1e -SIZE (KDE/release-service/22.08.0/akonadi-calendar-tools-22.08.0.tar.xz) = 238176 +TIMESTAMP = 1662480042 +SHA256 (KDE/release-service/22.08.1/akonadi-calendar-tools-22.08.1.tar.xz) = 0a497d0ff173fb88fc17cb320bb9024d84ea29dfc1d79a5f585a71282c826fc0 +SIZE (KDE/release-service/22.08.1/akonadi-calendar-tools-22.08.1.tar.xz) = 238352 diff --git a/deskutils/akonadi-import-wizard/Makefile b/deskutils/akonadi-import-wizard/Makefile index ea48bcec07dc..20a9693fe51f 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= 2 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@qt5 USES= cmake compiler:c++11-lib gettext grantlee:5 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 8beafa2fb058..5af1df742aed 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628620 -SHA256 (KDE/release-service/22.08.0/akonadi-import-wizard-22.08.0.tar.xz) = c5aafb534498449e5d71144d8cfb6d21a9af6cb661dd27a9b6d418dac631142e -SIZE (KDE/release-service/22.08.0/akonadi-import-wizard-22.08.0.tar.xz) = 512748 +TIMESTAMP = 1662480019 +SHA256 (KDE/release-service/22.08.1/akonadi-import-wizard-22.08.1.tar.xz) = edb224cb7f34cd91b8d182797583239c5e474db5b91262a36753f3c8577778d4 +SIZE (KDE/release-service/22.08.1/akonadi-import-wizard-22.08.1.tar.xz) = 512876 diff --git a/deskutils/akonadiconsole/Makefile b/deskutils/akonadiconsole/Makefile index 3cb30cfc0ac4..14d44e617479 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 grantlee:5 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 83f23094beed..d58117db55a5 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628635 -SHA256 (KDE/release-service/22.08.0/akonadiconsole-22.08.0.tar.xz) = 75188a34c5ac668dd29c8531398597a9148a62741ea28e1a0682a7cc15bd3402 -SIZE (KDE/release-service/22.08.0/akonadiconsole-22.08.0.tar.xz) = 200188 +TIMESTAMP = 1662480037 +SHA256 (KDE/release-service/22.08.1/akonadiconsole-22.08.1.tar.xz) = 377f02acab4fc8729a5d76d24fc5ce43eb7f80b225f639851627c5074fb9f61a +SIZE (KDE/release-service/22.08.1/akonadiconsole-22.08.1.tar.xz) = 200196 diff --git a/deskutils/akregator/Makefile b/deskutils/akregator/Makefile index 69a409305011..b9de3f1264c6 100644 --- a/deskutils/akregator/Makefile +++ b/deskutils/akregator/Makefile @@ -1,37 +1,36 @@ 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 xorg 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_XORG= x11 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 c0a9f9255d8c..f42c56ab5837 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628639 -SHA256 (KDE/release-service/22.08.0/akregator-22.08.0.tar.xz) = e6193f2bafdc1cefd938f0a56abba49ebcda6441be0714676f46ec299ba03a46 -SIZE (KDE/release-service/22.08.0/akregator-22.08.0.tar.xz) = 2253604 +TIMESTAMP = 1662480041 +SHA256 (KDE/release-service/22.08.1/akregator-22.08.1.tar.xz) = ba3075c833fc8243a4380a2260bc8479a7298d4c89495f3ec1f94a0e05f52f07 +SIZE (KDE/release-service/22.08.1/akregator-22.08.1.tar.xz) = 2253940 diff --git a/deskutils/grantlee-editor/Makefile b/deskutils/grantlee-editor/Makefile index c7b98285a683..656b744f6307 100644 --- a/deskutils/grantlee-editor/Makefile +++ b/deskutils/grantlee-editor/Makefile @@ -1,37 +1,36 @@ 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 xorg 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_XORG= x11 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 4404edfbea04..58c6bdf43b6f 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628647 -SHA256 (KDE/release-service/22.08.0/grantlee-editor-22.08.0.tar.xz) = 853150a731a3acd21e196a00e61cbccff2d43a80598ff074ff9604960909b2b1 -SIZE (KDE/release-service/22.08.0/grantlee-editor-22.08.0.tar.xz) = 112628 +TIMESTAMP = 1662480049 +SHA256 (KDE/release-service/22.08.1/grantlee-editor-22.08.1.tar.xz) = 6d838e3e6a2f01b4a7fe9a469cb60e9b0dd3c670b02f2e853fe6bdba306cc5e1 +SIZE (KDE/release-service/22.08.1/grantlee-editor-22.08.1.tar.xz) = 112736 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 808e92ee0bc0..2647e9953ca0 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628637 -SHA256 (KDE/release-service/22.08.0/grantleetheme-22.08.0.tar.xz) = 2cc8f0f0999be68a12e507eae904b4225d43e661f0db52849c796ad9a402aca7 -SIZE (KDE/release-service/22.08.0/grantleetheme-22.08.0.tar.xz) = 61908 +TIMESTAMP = 1662480039 +SHA256 (KDE/release-service/22.08.1/grantleetheme-22.08.1.tar.xz) = c93d584cd3a752b49cdf9c6c02749ecaa9f1224e5b39c7191d243e6bba099a06 +SIZE (KDE/release-service/22.08.1/grantleetheme-22.08.1.tar.xz) = 61960 diff --git a/deskutils/itinerary/Makefile b/deskutils/itinerary/Makefile index 47f3dc41452b..9f0b78680f28 100644 --- a/deskutils/itinerary/Makefile +++ b/deskutils/itinerary/Makefile @@ -1,25 +1,24 @@ PORTNAME= itinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Digital travel assistant for KDE WWW= https://apps.kde.org/en/itinerary USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= calendarcore completion config contacts coreaddons crash \ dbusaddons i18n jobwidgets kio kpkpass notifications kosm \ kitinerary kpublictransport mime qqc2-desktop-style \ service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus declarative gui location network quick3d \ quickcontrols2 \ testlib widgets \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 0bb70f3243ac..0a4862c6242e 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628621 -SHA256 (KDE/release-service/22.08.0/itinerary-22.08.0.tar.xz) = 77d63f719cfe9d38104d6c317c0e4d827e204ffc5bc2899e98247325cfa2f24a -SIZE (KDE/release-service/22.08.0/itinerary-22.08.0.tar.xz) = 566348 +TIMESTAMP = 1662480020 +SHA256 (KDE/release-service/22.08.1/itinerary-22.08.1.tar.xz) = 6adc66151217af0388573dd387985509abe814b9de69d82b438e3ff429a12ff0 +SIZE (KDE/release-service/22.08.1/itinerary-22.08.1.tar.xz) = 571736 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index 5e2de08f810c..de18586ed7a9 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,73 +1,74 @@ bin/itinerary lib/libSolidExtras.so %%QT_PLUGINDIR%%/itinerarythumbnail.so %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/ClockElement.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/ClockFace.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePicker.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePopup.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DesktopDateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/Hand.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/MobileDateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeLabel.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimePicker.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/libitinerary-dateandtimeplugin.so %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/qmldir %%QT_QMLDIR%%/org/kde/solidextras/libsolidextrasqmlplugin.so %%QT_QMLDIR%%/org/kde/solidextras/qmldir share/applications/org.kde.itinerary.desktop share/icons/hicolor/scalable/apps/org.kde.itinerary.svg share/knotifications5/itinerary.notifyrc share/kservices5/itinerarythumbnail.desktop share/locale/ca/LC_MESSAGES/kde-itinerary-android.mo share/locale/ca/LC_MESSAGES/kde-itinerary.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary-android.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary.mo share/locale/cs/LC_MESSAGES/kde-itinerary-android.mo share/locale/cs/LC_MESSAGES/kde-itinerary.mo share/locale/de/LC_MESSAGES/kde-itinerary-android.mo share/locale/de/LC_MESSAGES/kde-itinerary.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary-android.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary.mo share/locale/es/LC_MESSAGES/kde-itinerary-android.mo share/locale/es/LC_MESSAGES/kde-itinerary.mo share/locale/et/LC_MESSAGES/kde-itinerary.mo share/locale/eu/LC_MESSAGES/kde-itinerary.mo share/locale/fi/LC_MESSAGES/kde-itinerary-android.mo share/locale/fi/LC_MESSAGES/kde-itinerary.mo share/locale/fr/LC_MESSAGES/kde-itinerary-android.mo share/locale/fr/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo share/locale/ia/LC_MESSAGES/kde-itinerary-android.mo share/locale/ia/LC_MESSAGES/kde-itinerary.mo share/locale/it/LC_MESSAGES/kde-itinerary-android.mo share/locale/it/LC_MESSAGES/kde-itinerary.mo share/locale/ja/LC_MESSAGES/kde-itinerary.mo share/locale/ko/LC_MESSAGES/kde-itinerary-android.mo share/locale/ko/LC_MESSAGES/kde-itinerary.mo share/locale/lt/LC_MESSAGES/kde-itinerary.mo share/locale/nl/LC_MESSAGES/kde-itinerary-android.mo share/locale/nl/LC_MESSAGES/kde-itinerary.mo share/locale/pl/LC_MESSAGES/kde-itinerary-android.mo share/locale/pl/LC_MESSAGES/kde-itinerary.mo share/locale/pt/LC_MESSAGES/kde-itinerary-android.mo share/locale/pt/LC_MESSAGES/kde-itinerary.mo share/locale/pt_BR/LC_MESSAGES/kde-itinerary-android.mo share/locale/pt_BR/LC_MESSAGES/kde-itinerary.mo share/locale/ru/LC_MESSAGES/kde-itinerary.mo share/locale/sk/LC_MESSAGES/kde-itinerary-android.mo share/locale/sk/LC_MESSAGES/kde-itinerary.mo share/locale/sl/LC_MESSAGES/kde-itinerary-android.mo share/locale/sl/LC_MESSAGES/kde-itinerary.mo share/locale/sv/LC_MESSAGES/kde-itinerary-android.mo share/locale/sv/LC_MESSAGES/kde-itinerary.mo +share/locale/tr/LC_MESSAGES/kde-itinerary-android.mo share/locale/tr/LC_MESSAGES/kde-itinerary.mo share/locale/uk/LC_MESSAGES/kde-itinerary-android.mo share/locale/uk/LC_MESSAGES/kde-itinerary.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary-android.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary.mo share/locale/zh_TW/LC_MESSAGES/kde-itinerary-android.mo share/locale/zh_TW/LC_MESSAGES/kde-itinerary.mo share/metainfo/org.kde.itinerary.appdata.xml share/qlogging-categories5/org_kde_itinerary.categories diff --git a/deskutils/kaddressbook/Makefile b/deskutils/kaddressbook/Makefile index b0f589869cf2..777c9edc1819 100644 --- a/deskutils/kaddressbook/Makefile +++ b/deskutils/kaddressbook/Makefile @@ -1,34 +1,33 @@ 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 xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n iconthemes itemmodels jobwidgets kcmutils kio parts pimtextedit \ 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_XORG= x11 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 4e3309a3eeee..945917cb8140 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628638 -SHA256 (KDE/release-service/22.08.0/kaddressbook-22.08.0.tar.xz) = d823845e4db20b56060f938c3e924b16728a56f139e9611632060338a3852de8 -SIZE (KDE/release-service/22.08.0/kaddressbook-22.08.0.tar.xz) = 3333076 +TIMESTAMP = 1662480040 +SHA256 (KDE/release-service/22.08.1/kaddressbook-22.08.1.tar.xz) = ab6e50ef2b82a4f6d81378ecc9fc6e215e335ac241c7b52f7ddbbef8ee7aff9c +SIZE (KDE/release-service/22.08.1/kaddressbook-22.08.1.tar.xz) = 3334892 diff --git a/deskutils/kalarm/Makefile b/deskutils/kalarm/Makefile index a90cc3127dfb..7bc2428ef868 100644 --- a/deskutils/kalarm/Makefile +++ b/deskutils/kalarm/Makefile @@ -1,35 +1,34 @@ PORTNAME= kalarm DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Personal alarm scheduler LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 \ shebangfix tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications notifyconfig parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime calendarcore \ calendarutils contacts globalaccel grantleetheme holidays identitymanagement \ idletime libkdepim mailcommon mailtransport mime \ pimcommon pimtextedit imap \ kdepim-runtime5_run USE_QT= concurrent core dbus gui network phonon4 printsupport widgets \ x11extras xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index fd7134a42e45..4d225eb2afef 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628643 -SHA256 (KDE/release-service/22.08.0/kalarm-22.08.0.tar.xz) = d925ff809ef6d62846a4b89223002a38f35abf15f863f3757e2d046e6f43d239 -SIZE (KDE/release-service/22.08.0/kalarm-22.08.0.tar.xz) = 2365496 +TIMESTAMP = 1662480044 +SHA256 (KDE/release-service/22.08.1/kalarm-22.08.1.tar.xz) = b388ba63a620c6a58951d271193aeb5e91e13bcb54d0f6adac7b6dc6985d7ecd +SIZE (KDE/release-service/22.08.1/kalarm-22.08.1.tar.xz) = 2365424 diff --git a/deskutils/kalendar/distinfo b/deskutils/kalendar/distinfo index 6356ad6a530a..896d1e5937a2 100644 --- a/deskutils/kalendar/distinfo +++ b/deskutils/kalendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628625 -SHA256 (KDE/release-service/22.08.0/kalendar-22.08.0.tar.xz) = 9484b7d4d450ba9ad22e6e25b0da84f20ff3e2615d08c65adef6638aa0d31eb7 -SIZE (KDE/release-service/22.08.0/kalendar-22.08.0.tar.xz) = 459956 +TIMESTAMP = 1662480024 +SHA256 (KDE/release-service/22.08.1/kalendar-22.08.1.tar.xz) = f2aad134ada0b3c9b8ea5269790b474d75aa9d2a004fb4d614b5fc70cf4f936a +SIZE (KDE/release-service/22.08.1/kalendar-22.08.1.tar.xz) = 465504 diff --git a/deskutils/kalendar/pkg-plist b/deskutils/kalendar/pkg-plist index 9ec1bb21c172..58702fb48745 100644 --- a/deskutils/kalendar/pkg-plist +++ b/deskutils/kalendar/pkg-plist @@ -1,91 +1,93 @@ bin/kalendar %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so %%QT_QMLDIR%%/org/kde/akonadi/qmldir %%QT_QMLDIR%%/org/kde/kalendar/contact/AddressBookCollectionHandler.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactChooserPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactView.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/libkalendar_contact_plugin.so %%QT_QMLDIR%%/org/kde/kalendar/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactListItem.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/DeleteContactAction.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/Header.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/qmldir share/applications/org.kde.kalendar.desktop share/icons/hicolor/scalable/apps/org.kde.kalendar.svg share/kservices5/plasma-applet-org.kde.kalendar.contact.desktop share/locale/ar/LC_MESSAGES/kalendar.mo share/locale/az/LC_MESSAGES/kalendar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca/LC_MESSAGES/kalendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca@valencia/LC_MESSAGES/kalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/cs/LC_MESSAGES/kalendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/de/LC_MESSAGES/kalendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/el/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/es/LC_MESSAGES/kalendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo +share/locale/eu/LC_MESSAGES/kalendar.mo +share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fi/LC_MESSAGES/kalendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fr/LC_MESSAGES/kalendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/hu/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ko/LC_MESSAGES/kalendar.mo share/locale/lv/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pl/LC_MESSAGES/kalendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt/LC_MESSAGES/kalendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt_BR/LC_MESSAGES/kalendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ru/LC_MESSAGES/kalendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sk/LC_MESSAGES/kalendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sl/LC_MESSAGES/kalendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sv/LC_MESSAGES/kalendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ta/LC_MESSAGES/kalendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/tr/LC_MESSAGES/kalendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/uk/LC_MESSAGES/kalendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_CN/LC_MESSAGES/kalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_TW/LC_MESSAGES/kalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/metainfo/org.kde.kalendar.appdata.xml share/metainfo/org.kde.kalendar.contact.appdata.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/config/main.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/resources/fallbackBackground.png share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactListItem.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactsPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/Header.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/QrCodePage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/main.qml share/plasma/plasmoids/org.kde.kalendar.contact/metadata.desktop share/plasma/plasmoids/org.kde.kalendar.contact/metadata.json share/qlogging-categories5/akonadi.quick.categories share/qlogging-categories5/kalendar.categories share/qlogging-categories5/kalendar.contact.categories diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 6914a95fd027..717cbb816dd3 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628634 -SHA256 (KDE/release-service/22.08.0/kcharselect-22.08.0.tar.xz) = 0bf05e97a63f3f2b12414e8cde480668c4328eb878a40249cfd5aa5dc6699581 -SIZE (KDE/release-service/22.08.0/kcharselect-22.08.0.tar.xz) = 375004 +TIMESTAMP = 1662480036 +SHA256 (KDE/release-service/22.08.1/kcharselect-22.08.1.tar.xz) = ab0ca79033cd3f5e71f04284794134110b0aba66add08be593703673f09449bf +SIZE (KDE/release-service/22.08.1/kcharselect-22.08.1.tar.xz) = 375084 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 71647378507a..1af36c53a9ba 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,39 +1,38 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Support for KDE to interface between your phone and your computer WWW= https://community.kde.org/KDEConnect LICENSE= GPLv2 LIB_DEPENDS= libfakekey.so:x11/libfakekey \ libwayland-client.so:graphics/wayland \ libKF5PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= kpeoplevcard>0:net/kpeoplevcard \ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto RUN_DEPENDS= sshpass:security/sshpass \ sshfs:sysutils/fusefs-sshfs \ kpeoplevcard>0:net/kpeoplevcard USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig qca qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons doctools guiaddons i18n iconthemes \ itemviews jobwidgets kcmutils kio kirigami2 notifications \ people qqc2-desktop-style service solid wayland widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 testlib wayland widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect OPTIONS_DEFINE= DOCS KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} .include diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 4250669af95e..17959290c67c 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628628 -SHA256 (KDE/release-service/22.08.0/kdeconnect-kde-22.08.0.tar.xz) = c1f591fa60c004a68038a88aad66ae7ddea191a4f40291adf4caee4959471920 -SIZE (KDE/release-service/22.08.0/kdeconnect-kde-22.08.0.tar.xz) = 618592 +TIMESTAMP = 1662480026 +SHA256 (KDE/release-service/22.08.1/kdeconnect-kde-22.08.1.tar.xz) = f90f3a78f44e69b668ecc8409873354af804bef4f6c75166e3a29fca5e22fdfb +SIZE (KDE/release-service/22.08.1/kdeconnect-kde-22.08.1.tar.xz) = 623912 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 09bade4fd7fc..c6956f2eb1da 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,740 +1,755 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_virtualmonitor.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/plasma-kdeconnect.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-app.mo share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo share/locale/bg/LC_MESSAGES/kdeconnect-core.mo share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/is/LC_MESSAGES/kdeconnect-app.mo +share/locale/is/LC_MESSAGES/kdeconnect-cli.mo +share/locale/is/LC_MESSAGES/kdeconnect-core.mo +share/locale/is/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/is/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/is/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/is/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/is/LC_MESSAGES/kdeconnect-kded.mo +share/locale/is/LC_MESSAGES/kdeconnect-kio.mo +share/locale/is/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/is/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/is/LC_MESSAGES/kdeconnect-settings.mo +share/locale/is/LC_MESSAGES/kdeconnect-sms.mo +share/locale/is/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/VirtualMonitor.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/Makefile b/deskutils/kdepim-addons/Makefile index 0a11c2c65fa0..1bc7302bac13 100644 --- a/deskutils/kdepim-addons/Makefile +++ b/deskutils/kdepim-addons/Makefile @@ -1,45 +1,44 @@ PORTNAME= kdepim-addons DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM addons WWW= https://www.kde.org/ 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 xorg 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 holidays 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_XORG= x11 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 36842f040ea7..e089536c8c06 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628636 -SHA256 (KDE/release-service/22.08.0/kdepim-addons-22.08.0.tar.xz) = b9ad841086bf3708ea64c6b0d9a826d2e79dcc85249a75f02654753bcf3feed8 -SIZE (KDE/release-service/22.08.0/kdepim-addons-22.08.0.tar.xz) = 2289256 +TIMESTAMP = 1662480038 +SHA256 (KDE/release-service/22.08.1/kdepim-addons-22.08.1.tar.xz) = f36f52f7401440cd5242519ba873651316da91498e5e15ebb2e8f03a72c71390 +SIZE (KDE/release-service/22.08.1/kdepim-addons-22.08.1.tar.xz) = 2291108 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index 72f19008f52a..b0d700a8c49f 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -1,43 +1,42 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services WWW= https://www.kde.org/ 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@qt5 USES= cmake:noninja compiler:c++11-lib gettext grantlee:5 \ kde:5 qca qt:5 shared-mime-info tar:xz xorg 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_XORG= x11 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 c84068e51059..70c05833f4f4 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628631 -SHA256 (KDE/release-service/22.08.0/kdepim-runtime-22.08.0.tar.xz) = 18a72a14a9a23dd225d0760741d570be426e5cdc818a2f70d4cfd43f94b36c29 -SIZE (KDE/release-service/22.08.0/kdepim-runtime-22.08.0.tar.xz) = 1796528 +TIMESTAMP = 1662480032 +SHA256 (KDE/release-service/22.08.1/kdepim-runtime-22.08.1.tar.xz) = b692cb7d003b677cee88b22204eab8577e4a28f37c16ba72cdc9d9a38fc0cbbc +SIZE (KDE/release-service/22.08.1/kdepim-runtime-22.08.1.tar.xz) = 1818692 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 264144ecf9e4..c57ed57d4604 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1662 +1,1693 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/pim5/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim5/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_ldap.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ews.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo +share/locale/eu/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/eu/LC_MESSAGES/accountwizard_maildir.mo +share/locale/eu/LC_MESSAGES/accountwizard_pop3.mo +share/locale/eu/LC_MESSAGES/accountwizard_vcard.mo +share/locale/eu/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/eu/LC_MESSAGES/akonadi-filestore.mo +share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/eu/LC_MESSAGES/gid-migrator.mo +share/locale/eu/LC_MESSAGES/kio_akonadi.mo +share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/se/LC_MESSAGES/accountwizard_imap.mo share/locale/se/LC_MESSAGES/accountwizard_kolab.mo share/locale/se/LC_MESSAGES/accountwizard_mailbox.mo share/locale/se/LC_MESSAGES/accountwizard_maildir.mo share/locale/se/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ews.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/Makefile b/deskutils/keditbookmarks/Makefile index fb949d1bd8d3..ab21ada49292 100644 --- a/deskutils/keditbookmarks/Makefile +++ b/deskutils/keditbookmarks/Makefile @@ -1,21 +1,20 @@ PORTNAME= keditbookmarks DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Bookmark Organizer and Editor WWW= https://kde.org USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 304df282eaad..cb2d320b6f69 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628624 -SHA256 (KDE/release-service/22.08.0/keditbookmarks-22.08.0.tar.xz) = 8f437bb6032f0781735930e2f7d9f8ff97581aaae6f280da6b0205370d8494a6 -SIZE (KDE/release-service/22.08.0/keditbookmarks-22.08.0.tar.xz) = 204216 +TIMESTAMP = 1662480023 +SHA256 (KDE/release-service/22.08.1/keditbookmarks-22.08.1.tar.xz) = 63cb12612ef5d931726d1bd2dac89ab696f47a96f2f5ec599073258cf1091936 +SIZE (KDE/release-service/22.08.1/keditbookmarks-22.08.1.tar.xz) = 204300 diff --git a/deskutils/kfind/Makefile b/deskutils/kfind/Makefile index 83593c6d931d..4b59f2a35aa8 100644 --- a/deskutils/kfind/Makefile +++ b/deskutils/kfind/Makefile @@ -1,23 +1,22 @@ PORTNAME= kfind DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Find files and folders WWW= https://www.kde.org/applications/utilities/kfind/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash filemetadata guiaddons i18n iconthemes itemviews \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 4ff6431f1b02..354e4e86eef1 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628633 -SHA256 (KDE/release-service/22.08.0/kfind-22.08.0.tar.xz) = 715d83e42541628c665aee340c59b10c90809c0f3ad351cdf1ca2092c5875bef -SIZE (KDE/release-service/22.08.0/kfind-22.08.0.tar.xz) = 290028 +TIMESTAMP = 1662480034 +SHA256 (KDE/release-service/22.08.1/kfind-22.08.1.tar.xz) = 0c4adbe2a6c87208a2b48086e8fcf6a5611618864309d768e6abe323edf3c65f +SIZE (KDE/release-service/22.08.1/kfind-22.08.1.tar.xz) = 290104 diff --git a/deskutils/kmail-account-wizard/Makefile b/deskutils/kmail-account-wizard/Makefile index 8ded9b9f6f72..e78e90930f92 100644 --- a/deskutils/kmail-account-wizard/Makefile +++ b/deskutils/kmail-account-wizard/Makefile @@ -1,34 +1,33 @@ 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 gl kde:5 \ qt:5 shared-mime-info tar:xz USE_GL= gl 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 cc601dd0af0f..639363dc67e3 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628630 -SHA256 (KDE/release-service/22.08.0/kmail-account-wizard-22.08.0.tar.xz) = a63a0122ac2af5b2b2ee9881c22da0e8c0ce8e3170cfcb5ef7731e613a7da80e -SIZE (KDE/release-service/22.08.0/kmail-account-wizard-22.08.0.tar.xz) = 174812 +TIMESTAMP = 1662480031 +SHA256 (KDE/release-service/22.08.1/kmail-account-wizard-22.08.1.tar.xz) = 6bcc9aa3a0fc4487017f960fdc25e8e644d486ae8d00f02e7f0610d36becb456 +SIZE (KDE/release-service/22.08.1/kmail-account-wizard-22.08.1.tar.xz) = 174892 diff --git a/deskutils/kmail/Makefile b/deskutils/kmail/Makefile index 15b0d6ce5998..cba842f7bf0f 100644 --- a/deskutils/kmail/Makefile +++ b/deskutils/kmail/Makefile @@ -1,50 +1,49 @@ 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@qt5 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 grantlee:5 \ kde:5 qt:5 tar:xz xorg 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_XORG= x11 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 be4030115143..f51524998a5e 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628622 -SHA256 (KDE/release-service/22.08.0/kmail-22.08.0.tar.xz) = 745ed2b0064e93676dafc122edc5ca838e8368b2e818acf60d638759d23fbbfa -SIZE (KDE/release-service/22.08.0/kmail-22.08.0.tar.xz) = 7113776 +TIMESTAMP = 1662480021 +SHA256 (KDE/release-service/22.08.1/kmail-22.08.1.tar.xz) = ebe330e3fba91d45c86b9b1aae07b1b6c1b78ce95facce6113e918f69514ede0 +SIZE (KDE/release-service/22.08.1/kmail-22.08.1.tar.xz) = 7113500 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index d8564e5eb6d1..bbb2514cae47 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628644 -SHA256 (KDE/release-service/22.08.0/knotes-22.08.0.tar.xz) = c6025db801816797b50a3bfe9d9f1e86fb34627b8c2a71fb18227161a2c8c08b -SIZE (KDE/release-service/22.08.0/knotes-22.08.0.tar.xz) = 344868 +TIMESTAMP = 1662480046 +SHA256 (KDE/release-service/22.08.1/knotes-22.08.1.tar.xz) = 103d2e5cca090cf1641c6af2bcd765cfca00cf911ac80abeb1f998cee7e3d91c +SIZE (KDE/release-service/22.08.1/knotes-22.08.1.tar.xz) = 345608 diff --git a/deskutils/kontact/Makefile b/deskutils/kontact/Makefile index e516ac1d5808..b8a44f6adda0 100644 --- a/deskutils/kontact/Makefile +++ b/deskutils/kontact/Makefile @@ -1,29 +1,28 @@ PORTNAME= kontact DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Personal Information Manager LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ guiaddons i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi grantleetheme kontactinterface libkdepim pimcommon \ pimtextedit USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 8271fbd25872..bc7e2d2a687a 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628632 -SHA256 (KDE/release-service/22.08.0/kontact-22.08.0.tar.xz) = 1cabfc0615a60eba6f58d39051d11cccd9cb990cc1b2f181c3903d972c9d494c -SIZE (KDE/release-service/22.08.0/kontact-22.08.0.tar.xz) = 824496 +TIMESTAMP = 1662480033 +SHA256 (KDE/release-service/22.08.1/kontact-22.08.1.tar.xz) = 5b1a03812bfe72c420730caa33dcafcefa0d762ffcb5139c63da448de7c4063d +SIZE (KDE/release-service/22.08.1/kontact-22.08.1.tar.xz) = 824888 diff --git a/deskutils/korganizer/Makefile b/deskutils/korganizer/Makefile index bbd1eb9fa340..d874be825c14 100644 --- a/deskutils/korganizer/Makefile +++ b/deskutils/korganizer/Makefile @@ -1,36 +1,35 @@ PORTNAME= korganizer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar and scheduling Program LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++11-lib desktop-file-utils gettext gl grantlee:5 \ kde:5 qt:5 tar:xz xorg USE_GL= gl USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ newstuff notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadinotes akonadisearch calendarcore calendarsupport \ calendarutils contacts eventviews grantleetheme holidays identitymanagement \ imap incidenceeditor kontactinterface ldap \ libkdepim mailtransport mime pimcommon pimtextedit \ kdepim-runtime5_run USE_QT= concurrent core dbus gui multimedia network phonon4 printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 2123d7f43915..cefbeafe4938 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628642 -SHA256 (KDE/release-service/22.08.0/korganizer-22.08.0.tar.xz) = 6ec1c314ddd12f3c1d94470be4db7a48e7ebeef1e5070ae31b651423a224f47f -SIZE (KDE/release-service/22.08.0/korganizer-22.08.0.tar.xz) = 2320772 +TIMESTAMP = 1662480043 +SHA256 (KDE/release-service/22.08.1/korganizer-22.08.1.tar.xz) = 9df4b91fa1d71d4fe1582cff505af02f5b604ffe17e0b953cdd5a4098a8c9e5d +SIZE (KDE/release-service/22.08.1/korganizer-22.08.1.tar.xz) = 2321272 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 3bfd55c82840..0290f4419281 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628626 -SHA256 (KDE/release-service/22.08.0/kruler-22.08.0.tar.xz) = 780b682364baf75a724c776b06114ae3cdce714b2b0d39cb9b507aeb92080619 -SIZE (KDE/release-service/22.08.0/kruler-22.08.0.tar.xz) = 276372 +TIMESTAMP = 1662480025 +SHA256 (KDE/release-service/22.08.1/kruler-22.08.1.tar.xz) = 8e5314c85bed2ec435fa5ee546783dcdb42ca09d1fa99e72c92626fafc01d109 +SIZE (KDE/release-service/22.08.1/kruler-22.08.1.tar.xz) = 276416 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 6f5003db466e..fdfce6aae818 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628623 -SHA256 (KDE/release-service/22.08.0/libkdepim-22.08.0.tar.xz) = 939dcf7d6f546f65420083a0f0d1b3c429c01090ea77561563229ed04c452b4b -SIZE (KDE/release-service/22.08.0/libkdepim-22.08.0.tar.xz) = 248792 +TIMESTAMP = 1662480022 +SHA256 (KDE/release-service/22.08.1/libkdepim-22.08.1.tar.xz) = 2240c5f5db425f537fef84d90ad0245c0e38b0a6af604fced5a30f94f4b5301e +SIZE (KDE/release-service/22.08.1/libkdepim-22.08.1.tar.xz) = 248832 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 15a5e91cf2bb..2ceb0ba31208 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628645 -SHA256 (KDE/release-service/22.08.0/mbox-importer-22.08.0.tar.xz) = a2e39e93423f753ef44a5f8f2ce56683fd99fac448b06cdc87f5989462b62c9a -SIZE (KDE/release-service/22.08.0/mbox-importer-22.08.0.tar.xz) = 29232 +TIMESTAMP = 1662480047 +SHA256 (KDE/release-service/22.08.1/mbox-importer-22.08.1.tar.xz) = c6445d455643821719435fe3818b818cde9158c7cee4ec1ad56e4f2eebf292d1 +SIZE (KDE/release-service/22.08.1/mbox-importer-22.08.1.tar.xz) = 29252 diff --git a/deskutils/pim-data-exporter/Makefile b/deskutils/pim-data-exporter/Makefile index 19d7779c2fde..f7eaad5c84e5 100644 --- a/deskutils/pim-data-exporter/Makefile +++ b/deskutils/pim-data-exporter/Makefile @@ -1,35 +1,34 @@ 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 grantlee:5 \ kde:5 qt:5 tar:xz xorg 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_XORG= x11 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 16a4ccb9ab7c..57ea0e8cd1c1 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628629 -SHA256 (KDE/release-service/22.08.0/pim-data-exporter-22.08.0.tar.xz) = 5f2be55bbcc212d5071b61b2827d09cb39f1ffd2e42dc3591b2c2c82f005f6e7 -SIZE (KDE/release-service/22.08.0/pim-data-exporter-22.08.0.tar.xz) = 415828 +TIMESTAMP = 1662480028 +SHA256 (KDE/release-service/22.08.1/pim-data-exporter-22.08.1.tar.xz) = 47b951adc6411ab9251ac51a27ff307894b6cb8dbf09914148db300b699db552 +SIZE (KDE/release-service/22.08.1/pim-data-exporter-22.08.1.tar.xz) = 415852 diff --git a/deskutils/pim-sieve-editor/Makefile b/deskutils/pim-sieve-editor/Makefile index 05c48a3d581d..a05678c49b42 100644 --- a/deskutils/pim-sieve-editor/Makefile +++ b/deskutils/pim-sieve-editor/Makefile @@ -1,26 +1,25 @@ PORTNAME= pim-sieve-editor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mail sieve editor LIB_DEPENDS= libqt5keychain.so:security/qtkeychain@qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs config configwidgets coreaddons crash \ dbusaddons i18n iconthemes kio service wallet \ widgetsaddons xmlgui \ ecm_build # pim components USE_KDE+= libksieve mailtransport 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-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index f7ed27fad713..5e23f83ca103 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628619 -SHA256 (KDE/release-service/22.08.0/pim-sieve-editor-22.08.0.tar.xz) = 43c14c833b2b3c9ed312d1f00dcb4e9164ae71b1842fd624772ed46a63ac450e -SIZE (KDE/release-service/22.08.0/pim-sieve-editor-22.08.0.tar.xz) = 458240 +TIMESTAMP = 1662480018 +SHA256 (KDE/release-service/22.08.1/pim-sieve-editor-22.08.1.tar.xz) = 7ea708f26dce417a886569a4c948f58487ebe884185553f3f2bdd6be6db8b941 +SIZE (KDE/release-service/22.08.1/pim-sieve-editor-22.08.1.tar.xz) = 458256 diff --git a/deskutils/zanshin/Makefile b/deskutils/zanshin/Makefile index 58040ce9ea17..adbbc6bfa854 100644 --- a/deskutils/zanshin/Makefile +++ b/deskutils/zanshin/Makefile @@ -1,28 +1,27 @@ PORTNAME= zanshin DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Daily organizer for KDE WWW= https://zanshin.kde.org/ LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++14-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= akonadi auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemmodels \ itemviews jobwidgets kdelibs4support kio notifications package \ parts plasma-framework runner service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui \ # PIM Components USE_KDE+= akonadicalendar akonadicontacts akonadinotes akonadisearch \ calendarcore contacts identitymanagement kontactinterface ldap \ mime pimtextedit \ kdepim-runtime5_run USE_QT= concurrent core dbus declarative gui network printsupport testlib \ widgets xml \ buildtools_build qmake_build USE_XORG= x11 .include diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 71dbd3c8ba27..6efd270d6c79 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628646 -SHA256 (KDE/release-service/22.08.0/zanshin-22.08.0.tar.xz) = 786a05ffc204b1261b3a0f4fdee1cbe189d8ee5911db04d4f13fe5412f4e3cc7 -SIZE (KDE/release-service/22.08.0/zanshin-22.08.0.tar.xz) = 354780 +TIMESTAMP = 1662480048 +SHA256 (KDE/release-service/22.08.1/zanshin-22.08.1.tar.xz) = 1dd03adcaaead55e312c1c04395575bdffcfe303f4009a98099ecf79dc805eb9 +SIZE (KDE/release-service/22.08.1/zanshin-22.08.1.tar.xz) = 354856 diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index a07dcf1bbfe6..a93d22e1f432 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -1,22 +1,21 @@ PORTNAME= cervisia DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= CVS Frontend for KDE USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes init itemviews \ jobwidgets kdesu kio notifications 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_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 2d2409035178..87d43b63cbf4 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628509 -SHA256 (KDE/release-service/22.08.0/cervisia-22.08.0.tar.xz) = 926b320f88579c6730d44340024fbbfb65299d4512cd872c4c7e368a81ca6932 -SIZE (KDE/release-service/22.08.0/cervisia-22.08.0.tar.xz) = 1913900 +TIMESTAMP = 1662479907 +SHA256 (KDE/release-service/22.08.1/cervisia-22.08.1.tar.xz) = 6900897a2a300341b13dce70e35c961e2d245208176be0d3b6cfcc6341ca17c7 +SIZE (KDE/release-service/22.08.1/cervisia-22.08.1.tar.xz) = 1913940 diff --git a/devel/dolphin-plugins/Makefile b/devel/dolphin-plugins/Makefile index 34d4c47b95f2..b0a936a3f64b 100644 --- a/devel/dolphin-plugins/Makefile +++ b/devel/dolphin-plugins/Makefile @@ -1,26 +1,25 @@ PORTNAME= dolphin-plugins DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugins for Dolphin file manager WWW= https://www.kde.org/ BUILD_DEPENDS= dolphin:x11-fm/dolphin RUN_DEPENDS= dolphin:x11-fm/dolphin USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion widgetsaddons \ windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 74d0ee60c446..4d0b423d295f 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628502 -SHA256 (KDE/release-service/22.08.0/dolphin-plugins-22.08.0.tar.xz) = c52493d58aed762b6fd3fb4f41aee62a81893b88beb9f2283812180067e343d3 -SIZE (KDE/release-service/22.08.0/dolphin-plugins-22.08.0.tar.xz) = 257872 +TIMESTAMP = 1662479900 +SHA256 (KDE/release-service/22.08.1/dolphin-plugins-22.08.1.tar.xz) = a378343fcba0cf87a51f54829c726e00ebbcdef4c1a3e98245888980b2f7bc75 +SIZE (KDE/release-service/22.08.1/dolphin-plugins-22.08.1.tar.xz) = 257836 diff --git a/devel/kapptemplate/Makefile b/devel/kapptemplate/Makefile index c2cf8adab3f0..b543925ab069 100644 --- a/devel/kapptemplate/Makefile +++ b/devel/kapptemplate/Makefile @@ -1,23 +1,22 @@ PORTNAME= kapptemplate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE template generator BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth archive codecs completion config configwidgets coreaddons \ doctools i18n jobwidgets kio newstuff service solid \ widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index f2e6570bd1da..718d677e4072 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628495 -SHA256 (KDE/release-service/22.08.0/kapptemplate-22.08.0.tar.xz) = b6e29cfe6b8224ea5e06bb881f4ce99779153a701ca41c903c256f79bcac6aca -SIZE (KDE/release-service/22.08.0/kapptemplate-22.08.0.tar.xz) = 334732 +TIMESTAMP = 1662479893 +SHA256 (KDE/release-service/22.08.1/kapptemplate-22.08.1.tar.xz) = 073fef1b7ba71fedf0d291fc229b928f94d442b1dc8b0f46dab0e5fd3d73fded +SIZE (KDE/release-service/22.08.1/kapptemplate-22.08.1.tar.xz) = 335836 diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index 2213f6159df7..29701e571315 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -1,33 +1,32 @@ PORTNAME= kcachegrind DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Profiler frontend for KDE WWW= https://www.kde.org USES= cmake compiler:c++11-lang desktop-file-utils kde:5 python:run qt:5 \ shebangfix tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons i18n itemviews jobwidgets kio service solid \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 SHEBANG_FILES= converters/dprof2calltree \ converters/hotshot2calltree.in \ converters/memprof2calltree \ converters/op2calltree OPTIONS_DEFINE= DOT VALGRIND DOCS DOT_DESC= Use GraphViz/dot to render call graphs DOT_RUN_DEPENDS= dot:graphics/graphviz VALGRIND_DESC= Install devel/valgrind VALGRIND_RUN_DEPENDS= valgrind:devel/valgrind .include diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 0faccbc70d9d..b1074c49ad1c 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628494 -SHA256 (KDE/release-service/22.08.0/kcachegrind-22.08.0.tar.xz) = 674d0a6d56b3b0f0d37b5fe8f7b976ceded972842297a275f2230af2232f76d6 -SIZE (KDE/release-service/22.08.0/kcachegrind-22.08.0.tar.xz) = 879424 +TIMESTAMP = 1662479892 +SHA256 (KDE/release-service/22.08.1/kcachegrind-22.08.1.tar.xz) = 1a924a5b2d8f7838c37629a34d9725011c0afcc417d8a7ae83ae39a0b1b38c17 +SIZE (KDE/release-service/22.08.1/kcachegrind-22.08.1.tar.xz) = 879428 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 2939d20e792b..7a1eedc12ef9 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628507 -SHA256 (KDE/release-service/22.08.0/kde-dev-scripts-22.08.0.tar.xz) = f95ca15f3d596911a24fecf0b8c4cac0a45482380212b45fa8e2773f456277f6 -SIZE (KDE/release-service/22.08.0/kde-dev-scripts-22.08.0.tar.xz) = 367032 +TIMESTAMP = 1662479904 +SHA256 (KDE/release-service/22.08.1/kde-dev-scripts-22.08.1.tar.xz) = 44bfe6dd5ff1fcc6be0bcd2b568088b226be1bf790f21637ec64669dd3f406d0 +SIZE (KDE/release-service/22.08.1/kde-dev-scripts-22.08.1.tar.xz) = 366976 diff --git a/devel/kde-dev-utils/Makefile b/devel/kde-dev-utils/Makefile index b4b52d671900..2f00a8c6372f 100644 --- a/devel/kde-dev-utils/Makefile +++ b/devel/kde-dev-utils/Makefile @@ -1,22 +1,21 @@ PORTNAME= kde-dev-utils DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE development utilities USES= compiler:c++11-lang cmake desktop-file-utils gl kde:5 \ qt:5 tar:xz xorg USE_GL= gl USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus designer gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 5fbd1dc9ceb9..e9ddf17523ad 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628508 -SHA256 (KDE/release-service/22.08.0/kde-dev-utils-22.08.0.tar.xz) = 920ff42e2f768ff1e7d33c3c32aae49c5e54aa9dc020d81b011b5cb0ecde7cf8 -SIZE (KDE/release-service/22.08.0/kde-dev-utils-22.08.0.tar.xz) = 68548 +TIMESTAMP = 1662479906 +SHA256 (KDE/release-service/22.08.1/kde-dev-utils-22.08.1.tar.xz) = b3e10586c6d90ee5e5c0dd46452c3eaf45a3b13618dfc3ffdd12ebc51f02521e +SIZE (KDE/release-service/22.08.1/kde-dev-utils-22.08.1.tar.xz) = 68584 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 83e5ffb8ce5e..fd9f53f75327 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628493 -SHA256 (KDE/release-service/22.08.0/kdesdk-kio-22.08.0.tar.xz) = b0361063538640874fae4d00a0eabaab67ce0a42c476b6df1fd520ab72140f4a -SIZE (KDE/release-service/22.08.0/kdesdk-kio-22.08.0.tar.xz) = 39644 +TIMESTAMP = 1662479891 +SHA256 (KDE/release-service/22.08.1/kdesdk-kio-22.08.1.tar.xz) = 9bd589bdfd9b5e529edea2e72670b5848e8c4029e50e5e7e84f135bf666beee9 +SIZE (KDE/release-service/22.08.1/kdesdk-kio-22.08.1.tar.xz) = 39656 diff --git a/devel/kdesdk-thumbnailers/Makefile b/devel/kdesdk-thumbnailers/Makefile index f99461ec5c5b..3ba2a7397832 100644 --- a/devel/kdesdk-thumbnailers/Makefile +++ b/devel/kdesdk-thumbnailers/Makefile @@ -1,22 +1,21 @@ PORTNAME= kdesdk-thumbnailers DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE thumbnail generator for gettext po files WWW= https://www.kde.org/ LIB_DEPENDS= libgettextpo.so:devel/gettext-tools USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets \ kio service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index b8707486ca08..ea10e4f6b990 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628492 -SHA256 (KDE/release-service/22.08.0/kdesdk-thumbnailers-22.08.0.tar.xz) = 16ccdfdf01dfca1aa5f2944bb54c5f95c5b7b916b179da087f52874d5988cb51 -SIZE (KDE/release-service/22.08.0/kdesdk-thumbnailers-22.08.0.tar.xz) = 26692 +TIMESTAMP = 1662479890 +SHA256 (KDE/release-service/22.08.1/kdesdk-thumbnailers-22.08.1.tar.xz) = c3774b5905cb003ababc143197df95d1059f1f58588c4c9f161d50e2d2f6fddb +SIZE (KDE/release-service/22.08.1/kdesdk-thumbnailers-22.08.1.tar.xz) = 26672 diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index 416bd390f76a..98d5676d7645 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -1,32 +1,31 @@ PORTNAME= kdev-php DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= PHP support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n itemmodels jobwidgets kcmutils kio parts service solid \ sonnet syntaxhighlighting texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) PLATFORM_VER= 37 PRIVATE_VER= 5.7 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} PRIVATE_VER=${PRIVATE_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index c0a091d04066..a56809a3a38d 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628506 -SHA256 (KDE/release-service/22.08.0/kdev-php-22.08.0.tar.xz) = 834c40aacd78106c59c6aa9f5e8473849b2a1d28bb423dcb9efc138fc2f8c0d7 -SIZE (KDE/release-service/22.08.0/kdev-php-22.08.0.tar.xz) = 1081132 +TIMESTAMP = 1662479904 +SHA256 (KDE/release-service/22.08.1/kdev-php-22.08.1.tar.xz) = ddb066844d43f499e6275be123c0e0c5565c9b52911ce44b48c8eb9a815e2af1 +SIZE (KDE/release-service/22.08.1/kdev-php-22.08.1.tar.xz) = 1081168 diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index 6ea028eaff87..c3f5dc24ea14 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -1,31 +1,30 @@ PORTNAME= kdev-python DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Python support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 python:3.7+ qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ ecm i18n itemmodels jobwidgets kio newstuff parts service \ solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) PLATFORM_VER= 37 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 7d9ee09c81da..3d11afe711ef 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628500 -SHA256 (KDE/release-service/22.08.0/kdev-python-22.08.0.tar.xz) = b5d8b0b1846953e6725d51d7d2363f8aa717276975a7e7e27afc7be5a802b581 -SIZE (KDE/release-service/22.08.0/kdev-python-22.08.0.tar.xz) = 1090916 +TIMESTAMP = 1662479897 +SHA256 (KDE/release-service/22.08.1/kdev-python-22.08.1.tar.xz) = ebb0449b450530f85aa2812e0ae9b25d1ff762cdccfad06d2a7bf29d41c02696 +SIZE (KDE/release-service/22.08.1/kdev-python-22.08.1.tar.xz) = 1090800 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index cb52cafb3ad4..4c9888eee02a 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,67 +1,66 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ 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 xorg 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 syntaxhighlighting texteditor \ textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network printsupport \ script sql widgets xml buildtools_build qmake_build USE_XORG= x11 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= 37 SO_VER= 59 -SO_VER_LONG= 5.9.220800 +SO_VER_LONG= 5.9.220801 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 b8efa2410ccd..6da6ced108d6 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628501 -SHA256 (KDE/release-service/22.08.0/kdevelop-22.08.0.tar.xz) = 5f5a9669699d3b52a4e31f28929d28f0a56675c9a1ed9fee779ff4ae3df5f80a -SIZE (KDE/release-service/22.08.0/kdevelop-22.08.0.tar.xz) = 8445848 +TIMESTAMP = 1662479899 +SHA256 (KDE/release-service/22.08.1/kdevelop-22.08.1.tar.xz) = 616c73f2a72543cbf8069b3121d892ad17a8cefd05989fb5febe43a5c9074891 +SIZE (KDE/release-service/22.08.1/kdevelop-22.08.1.tar.xz) = 8446912 diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index dbccdecadaff..0e6ea23319a2 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,65 +1,64 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO WWW= https://projects.kde.org/projects/kde/workspace/kio-extras LIB_DEPENDS= libtag.so:audio/taglib \ libImath.so:math/Imath \ libkdsoap.so:www/kdsoap USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build USE_XORG= x11 xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 2f945d14af3a..0ceee80a6fd2 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628504 -SHA256 (KDE/release-service/22.08.0/kio-extras-22.08.0.tar.xz) = d65b5e7ef956b0f7941323114d2cfaff40b5d895f324868496a261a1af50f63f -SIZE (KDE/release-service/22.08.0/kio-extras-22.08.0.tar.xz) = 643376 +TIMESTAMP = 1662479902 +SHA256 (KDE/release-service/22.08.1/kio-extras-22.08.1.tar.xz) = 89e140e1e6668754b8cb688b5375108d1dfafe0fad65600dd13694fe6ca53038 +SIZE (KDE/release-service/22.08.1/kio-extras-22.08.1.tar.xz) = 643828 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index b406d6cddfa5..5ddd1338e46b 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628497 -SHA256 (KDE/release-service/22.08.0/kirigami-gallery-22.08.0.tar.xz) = 1f723d7f8d9b3b872067da018f403d5db0d859e2e96279db8a1ff4e3c68010c8 -SIZE (KDE/release-service/22.08.0/kirigami-gallery-22.08.0.tar.xz) = 341972 +TIMESTAMP = 1662479895 +SHA256 (KDE/release-service/22.08.1/kirigami-gallery-22.08.1.tar.xz) = 3a780aca36f0346580304767ea9d0c652e352829c99cdfec1e927b03abb5cf5a +SIZE (KDE/release-service/22.08.1/kirigami-gallery-22.08.1.tar.xz) = 341932 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 86cb644122b0..0a07dc68c15b 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628505 -SHA256 (KDE/release-service/22.08.0/kpublictransport-22.08.0.tar.xz) = 242f06eae5bbf43143814505bb91e2f99b6fde507163450d19da7146c7797086 -SIZE (KDE/release-service/22.08.0/kpublictransport-22.08.0.tar.xz) = 487960 +TIMESTAMP = 1662479903 +SHA256 (KDE/release-service/22.08.1/kpublictransport-22.08.1.tar.xz) = e94d6204c143e192277a6a5a78b4ceab5fc2c20c045da3c9a9252082a3f7ff7c +SIZE (KDE/release-service/22.08.1/kpublictransport-22.08.1.tar.xz) = 488088 diff --git a/devel/lokalize/Makefile b/devel/lokalize/Makefile index fea49df67498..a630de560d92 100644 --- a/devel/lokalize/Makefile +++ b/devel/lokalize/Makefile @@ -1,24 +1,23 @@ PORTNAME= lokalize DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Computer-aided translation system LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n itemviews \ jobwidgets kio kross notifications parts service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network script sql widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 4f3f9a49810c..2350e07490c8 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628503 -SHA256 (KDE/release-service/22.08.0/lokalize-22.08.0.tar.xz) = 3d0162df098618e87114ee70156353b746f4a76338a766a121e283286229e56a -SIZE (KDE/release-service/22.08.0/lokalize-22.08.0.tar.xz) = 2070052 +TIMESTAMP = 1662479901 +SHA256 (KDE/release-service/22.08.1/lokalize-22.08.1.tar.xz) = 2c8508d8cbf0926104bfbd4c6348efadcfe4517b15e92448594898b0808eb63e +SIZE (KDE/release-service/22.08.1/lokalize-22.08.1.tar.xz) = 2070472 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index bff8afcfc18a..44b8e6a984f3 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628496 -SHA256 (KDE/release-service/22.08.0/poxml-22.08.0.tar.xz) = ee4e199186dea8117753ab7ebd9501190b3ce490a9feb57784f40f630ceae9f1 -SIZE (KDE/release-service/22.08.0/poxml-22.08.0.tar.xz) = 44072 +TIMESTAMP = 1662479894 +SHA256 (KDE/release-service/22.08.1/poxml-22.08.1.tar.xz) = 71177db49a3e1c3a0fac1f13e33a1c1fbf4da8e3bb2d8f474c780e45cb2b578e +SIZE (KDE/release-service/22.08.1/poxml-22.08.1.tar.xz) = 44080 diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index e7c05c7a8c3f..676c1b2fb9c8 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -1,32 +1,31 @@ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= UML modeller for KDE WWW= https://umbrello.kde.org/ LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 qt:5 tar:xz xorg 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 USE_XORG= x11 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 f0ea1782cf64..84f652a16de8 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628498 -SHA256 (KDE/release-service/22.08.0/umbrello-22.08.0.tar.xz) = 65bf89439af0faa0e9d16aee2ce03f41b7fafe1f24ae71ce2813e78470028932 -SIZE (KDE/release-service/22.08.0/umbrello-22.08.0.tar.xz) = 5681300 +TIMESTAMP = 1662479896 +SHA256 (KDE/release-service/22.08.1/umbrello-22.08.1.tar.xz) = dd25bf014628835a6808dbbf069ece2d0cad9157c0caaad352eb40f3883df461 +SIZE (KDE/release-service/22.08.1/umbrello-22.08.1.tar.xz) = 5687228 diff --git a/editors/kate/Makefile b/editors/kate/Makefile index 9790adabab61..8e84aed61017 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -1,29 +1,28 @@ PORTNAME= kate DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Basic editor framework for the KDE system WWW= https://kate-editor.org/ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ pkgconfig kde:5 qt:5 tar:xz cpe xorg USE_KDE= activities attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons \ guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets kio newstuff package parts plasma-framework \ service solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver wallet widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network script sql widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 759eb0f8edbd..2865b56e0c04 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628525 -SHA256 (KDE/release-service/22.08.0/kate-22.08.0.tar.xz) = 2fd9b131e13a9598ab8358a5eaa33ea56ce6740a1ce18a5691334827886bb788 -SIZE (KDE/release-service/22.08.0/kate-22.08.0.tar.xz) = 7655384 +TIMESTAMP = 1662479925 +SHA256 (KDE/release-service/22.08.1/kate-22.08.1.tar.xz) = 8355c08fefc87a3d73891535d3a3206988b1b65d51a290497c064decf6c6482f +SIZE (KDE/release-service/22.08.1/kate-22.08.1.tar.xz) = 7663600 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 2d3a6b56e6ef..0b0a125010fa 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1324 +1,1325 @@ bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/ru/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/150x150/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/256x256/apps/kwrite.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/310x310/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/44x44/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/512x512/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svg share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo share/locale/az/LC_MESSAGES/kate.mo share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/az/LC_MESSAGES/katebuild-plugin.mo share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo share/locale/az/LC_MESSAGES/katefiletree.mo share/locale/az/LC_MESSAGES/kategdbplugin.mo share/locale/az/LC_MESSAGES/kategitblameplugin.mo share/locale/az/LC_MESSAGES/katekonsoleplugin.mo share/locale/az/LC_MESSAGES/kateproject.mo share/locale/az/LC_MESSAGES/katesearch.mo share/locale/az/LC_MESSAGES/katesnippetsplugin.mo share/locale/az/LC_MESSAGES/katesql.mo share/locale/az/LC_MESSAGES/katesymbolviewer.mo share/locale/az/LC_MESSAGES/katetextfilter.mo share/locale/az/LC_MESSAGES/katexmlcheck.mo share/locale/az/LC_MESSAGES/katexmltools.mo share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/az/LC_MESSAGES/lspclient.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/az/LC_MESSAGES/tabswitcherplugin.mo share/locale/be/LC_MESSAGES/kate.mo share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo share/locale/be/LC_MESSAGES/katekonsoleplugin.mo share/locale/be/LC_MESSAGES/katesymbolviewer.mo share/locale/be/LC_MESSAGES/katetextfilter.mo share/locale/be/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bg/LC_MESSAGES/katebuild-plugin.mo share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katefiletree.mo share/locale/bg/LC_MESSAGES/kategdbplugin.mo share/locale/bg/LC_MESSAGES/kategitblameplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/katetextfilter.mo share/locale/bg/LC_MESSAGES/katexmlcheck.mo share/locale/bg/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/lspclient.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bg/LC_MESSAGES/tabswitcherplugin.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/kategitblameplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/kategitblameplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/kategitblameplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katecolorpickerplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/kategitblameplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/kategitblameplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo +share/locale/eu/LC_MESSAGES/kategitblameplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/kategitblameplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/kategitblameplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/kategitblameplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmlcheck.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hu/LC_MESSAGES/lspclient.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/kategitblameplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/kategitblameplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/kategitblameplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/kategitblameplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/kategitblameplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/kategitblameplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/kategitblameplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/se/LC_MESSAGES/kate.mo share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo share/locale/se/LC_MESSAGES/katefiletree.mo share/locale/se/LC_MESSAGES/katekonsoleplugin.mo share/locale/se/LC_MESSAGES/katesymbolviewer.mo share/locale/se/LC_MESSAGES/katetextfilter.mo share/locale/se/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/kategitblameplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/kategitblameplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sq/LC_MESSAGES/kate.mo share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sq/LC_MESSAGES/katebuild-plugin.mo share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo share/locale/sq/LC_MESSAGES/katesymbolviewer.mo share/locale/sq/LC_MESSAGES/katetextfilter.mo share/locale/sq/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/kategitblameplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmltools.mo share/locale/tg/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/lspclient.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/kategitblameplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/vi/LC_MESSAGES/kate.mo share/locale/vi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/vi/LC_MESSAGES/katebuild-plugin.mo share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/vi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/vi/LC_MESSAGES/katefiletree.mo share/locale/vi/LC_MESSAGES/kategdbplugin.mo share/locale/vi/LC_MESSAGES/kategitblameplugin.mo share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo share/locale/vi/LC_MESSAGES/kateproject.mo share/locale/vi/LC_MESSAGES/katesearch.mo share/locale/vi/LC_MESSAGES/katesnippetsplugin.mo share/locale/vi/LC_MESSAGES/katesql.mo share/locale/vi/LC_MESSAGES/katesymbolviewer.mo share/locale/vi/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/katexmlcheck.mo share/locale/vi/LC_MESSAGES/katexmltools.mo share/locale/vi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/vi/LC_MESSAGES/lspclient.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations diff --git a/games/blinken/distinfo b/games/blinken/distinfo index 76a9d37268e0..3b82a0cd8a3a 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628549 -SHA256 (KDE/release-service/22.08.0/blinken-22.08.0.tar.xz) = 23151001b8a2d1937d183fdd876dbf8f0732ee64b300216017faffd0f62f7189 -SIZE (KDE/release-service/22.08.0/blinken-22.08.0.tar.xz) = 2715320 +TIMESTAMP = 1662479949 +SHA256 (KDE/release-service/22.08.1/blinken-22.08.1.tar.xz) = e2dd3dab79f5df99614ab894d455717641ac90f5247d799b40e8e6e3436289e1 +SIZE (KDE/release-service/22.08.1/blinken-22.08.1.tar.xz) = 2715984 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 50d783ca9410..546f905fa879 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628586 -SHA256 (KDE/release-service/22.08.0/bomber-22.08.0.tar.xz) = 4ae4662069cca64f5c6e77c9b97a54fd292f50f03cac7f3e5accb290472befe9 -SIZE (KDE/release-service/22.08.0/bomber-22.08.0.tar.xz) = 834608 +TIMESTAMP = 1662479986 +SHA256 (KDE/release-service/22.08.1/bomber-22.08.1.tar.xz) = d52a75258c10270188dd56acc1f26e7edc47e3318792e65f2811866f3fafeb93 +SIZE (KDE/release-service/22.08.1/bomber-22.08.1.tar.xz) = 834276 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 824563dcdf68..9cdf785e5487 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628569 -SHA256 (KDE/release-service/22.08.0/bovo-22.08.0.tar.xz) = c771b6b491d86769532ad21b0fb3dcd3532e5690bc0e6e92341880c441e23435 -SIZE (KDE/release-service/22.08.0/bovo-22.08.0.tar.xz) = 210032 +TIMESTAMP = 1662479969 +SHA256 (KDE/release-service/22.08.1/bovo-22.08.1.tar.xz) = f9db2ef6259a58379611aa35661721f8a5d6c431809bb8ded954c4a47b5e38e4 +SIZE (KDE/release-service/22.08.1/bovo-22.08.1.tar.xz) = 210012 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 8c8056c01b49..215d0d3ec0a5 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628555 -SHA256 (KDE/release-service/22.08.0/granatier-22.08.0.tar.xz) = e16feae763cb3d0eba3067d7774c32c801af2ebb027019ed2cbeaa7a09f9eb48 -SIZE (KDE/release-service/22.08.0/granatier-22.08.0.tar.xz) = 2106436 +TIMESTAMP = 1662479955 +SHA256 (KDE/release-service/22.08.1/granatier-22.08.1.tar.xz) = 0145af64a208e2e9657c6b9e91704ec901845b723d14d6f6c8984e68db5aa2bd +SIZE (KDE/release-service/22.08.1/granatier-22.08.1.tar.xz) = 2106480 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 7decebff7460..5a02e6c55619 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628575 -SHA256 (KDE/release-service/22.08.0/kanagram-22.08.0.tar.xz) = dcf4b2129d7049b63ef6d842b15c1e71939773e746cccdaffbf4149e69380da3 -SIZE (KDE/release-service/22.08.0/kanagram-22.08.0.tar.xz) = 8045552 +TIMESTAMP = 1662479975 +SHA256 (KDE/release-service/22.08.1/kanagram-22.08.1.tar.xz) = 170fca62100f81bab53fd861ec8a666a3e6b85d25c71470a57e4a9d8c0efb8e5 +SIZE (KDE/release-service/22.08.1/kanagram-22.08.1.tar.xz) = 8044560 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 062e9cc2d29a..7ff715f4b98f 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628579 -SHA256 (KDE/release-service/22.08.0/kapman-22.08.0.tar.xz) = b7005add0eea5284cc5f657c5377f136922e5c5b144eaeed0b990bc46a3b64e4 -SIZE (KDE/release-service/22.08.0/kapman-22.08.0.tar.xz) = 2476428 +TIMESTAMP = 1662479979 +SHA256 (KDE/release-service/22.08.1/kapman-22.08.1.tar.xz) = 03f9c3d030d026b4f6c08f56a414acfa03c45bbc6e07981a5e16db974f1abc67 +SIZE (KDE/release-service/22.08.1/kapman-22.08.1.tar.xz) = 2476428 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 6d9e6cdc9793..3e203ba42022 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628589 -SHA256 (KDE/release-service/22.08.0/katomic-22.08.0.tar.xz) = dc29ccf1d8dbebb1e0df30971d8764daa8d9c63a880e3e627f9cb1cee661806d -SIZE (KDE/release-service/22.08.0/katomic-22.08.0.tar.xz) = 1437584 +TIMESTAMP = 1662479988 +SHA256 (KDE/release-service/22.08.1/katomic-22.08.1.tar.xz) = 7f08300244ef908de405877f863e5af69f57072a247e10d364e6c48add771982 +SIZE (KDE/release-service/22.08.1/katomic-22.08.1.tar.xz) = 1437584 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 0f2b5a6fc79b..67520e2ff4fc 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628566 -SHA256 (KDE/release-service/22.08.0/kblackbox-22.08.0.tar.xz) = 2819a153637ec1b8529a94450fb35a283107e804fcd55d1013dde6c7be2ca41d -SIZE (KDE/release-service/22.08.0/kblackbox-22.08.0.tar.xz) = 528480 +TIMESTAMP = 1662479965 +SHA256 (KDE/release-service/22.08.1/kblackbox-22.08.1.tar.xz) = d9fb306e1de8b80d0862842fc6688f39ff1aef11a11249475d711adf8f118d95 +SIZE (KDE/release-service/22.08.1/kblackbox-22.08.1.tar.xz) = 528484 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 73f3c29a050d..70fcbac6237c 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628565 -SHA256 (KDE/release-service/22.08.0/kblocks-22.08.0.tar.xz) = 7535e07aee5b27e7647c56aa9d5d98ce156648db72b8c724607eba2c8da9eab2 -SIZE (KDE/release-service/22.08.0/kblocks-22.08.0.tar.xz) = 2104044 +TIMESTAMP = 1662479964 +SHA256 (KDE/release-service/22.08.1/kblocks-22.08.1.tar.xz) = 2d0fcb570cce35ff0b7e42b522c9f5824a424871ac5fc9d5312b3a26a177c3b7 +SIZE (KDE/release-service/22.08.1/kblocks-22.08.1.tar.xz) = 2104108 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 4bc12e7d3fdf..345fb01ea822 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628581 -SHA256 (KDE/release-service/22.08.0/kbounce-22.08.0.tar.xz) = 1514ad999d09f860bd8835a43e64efeca82808d0532daf29a744a4046f4c8236 -SIZE (KDE/release-service/22.08.0/kbounce-22.08.0.tar.xz) = 3532944 +TIMESTAMP = 1662479981 +SHA256 (KDE/release-service/22.08.1/kbounce-22.08.1.tar.xz) = 854762ae46c29f5e5e214a6a3f2340e7aca3c74b4ce97968117ef986e3b4947c +SIZE (KDE/release-service/22.08.1/kbounce-22.08.1.tar.xz) = 3532380 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 1027087c4853..351a6a5b9c11 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628556 -SHA256 (KDE/release-service/22.08.0/kbreakout-22.08.0.tar.xz) = cb7bd9669dfb374f42925552d9ed26030b8183d8b986868cd204a618508241d8 -SIZE (KDE/release-service/22.08.0/kbreakout-22.08.0.tar.xz) = 2553996 +TIMESTAMP = 1662479956 +SHA256 (KDE/release-service/22.08.1/kbreakout-22.08.1.tar.xz) = b4b7e5dc16ee0a32729ceb61b8576312dc69729b6dee89f854b8fd8463af7a76 +SIZE (KDE/release-service/22.08.1/kbreakout-22.08.1.tar.xz) = 2554312 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 9f912df80626..9a3f390832cc 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628558 -SHA256 (KDE/release-service/22.08.0/kdiamond-22.08.0.tar.xz) = 237fb990e1557a5e42327aa578889e42ef3749ff38bd94cc027ddbbee89670da -SIZE (KDE/release-service/22.08.0/kdiamond-22.08.0.tar.xz) = 4703480 +TIMESTAMP = 1662479957 +SHA256 (KDE/release-service/22.08.1/kdiamond-22.08.1.tar.xz) = 9b1c40ffbd8f197d8d98c5c3bfd69d73905c742ef0ea9dc28826d117c8029ce4 +SIZE (KDE/release-service/22.08.1/kdiamond-22.08.1.tar.xz) = 4703488 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 9d75cc4976be..0f6a0948d4d7 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628592 -SHA256 (KDE/release-service/22.08.0/kfourinline-22.08.0.tar.xz) = 392728ba3e22d5132b87709c414363cc03b722506f535fd02a81a27768d5164b -SIZE (KDE/release-service/22.08.0/kfourinline-22.08.0.tar.xz) = 722396 +TIMESTAMP = 1662479991 +SHA256 (KDE/release-service/22.08.1/kfourinline-22.08.1.tar.xz) = 0a6089492857855e2b1ed18e2daa6d6037579a6e88faeca6bfea80e7fa5a23c7 +SIZE (KDE/release-service/22.08.1/kfourinline-22.08.1.tar.xz) = 722372 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 6f6c24af0d9c..57375098bd41 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628594 -SHA256 (KDE/release-service/22.08.0/kgoldrunner-22.08.0.tar.xz) = bcd3f13af5c16ca9b4d5ab1a91d1c72a8f3f21892fc40ec50ef699670b3d9175 -SIZE (KDE/release-service/22.08.0/kgoldrunner-22.08.0.tar.xz) = 4787852 +TIMESTAMP = 1662479993 +SHA256 (KDE/release-service/22.08.1/kgoldrunner-22.08.1.tar.xz) = b3e754db04cd466b330f13421d4f5d7cb24453d956a7f5e5f2b1fd2298e09842 +SIZE (KDE/release-service/22.08.1/kgoldrunner-22.08.1.tar.xz) = 4787684 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 3983a742ba35..12a769cd813b 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628562 -SHA256 (KDE/release-service/22.08.0/khangman-22.08.0.tar.xz) = 2d6f1f4d1815c8c98964a55185700e89161c17fcbbdb53b55d9c6f85e72b3053 -SIZE (KDE/release-service/22.08.0/khangman-22.08.0.tar.xz) = 7423020 +TIMESTAMP = 1662479962 +SHA256 (KDE/release-service/22.08.1/khangman-22.08.1.tar.xz) = c8dcf3ab64c452d109db67ec0a2289683d06c1147773b7bfab5b8b91ef2ca18a +SIZE (KDE/release-service/22.08.1/khangman-22.08.1.tar.xz) = 7423148 diff --git a/games/kigo/Makefile b/games/kigo/Makefile index 42282e69be7a..3810976a2fb3 100644 --- a/games/kigo/Makefile +++ b/games/kigo/Makefile @@ -1,23 +1,22 @@ PORTNAME= kigo DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/kigo/ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons i18n jobwidgets kio \ libkdegames newstuff notifyconfig service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/kigo/distinfo b/games/kigo/distinfo index b965256517c3..1615dfc931cd 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660832257 -SHA256 (KDE/release-service/22.08.0/kigo-22.08.0.tar.xz) = e15ccd4f24f4f89d5b41ecccc0f35363bce25098be5d11827337ebbd6e39389b -SIZE (KDE/release-service/22.08.0/kigo-22.08.0.tar.xz) = 5256044 +TIMESTAMP = 1662479970 +SHA256 (KDE/release-service/22.08.1/kigo-22.08.1.tar.xz) = e8e10156f3ac85cb83b36bff492d3f2e79162bb2e60ab4947e07523acb72c180 +SIZE (KDE/release-service/22.08.1/kigo-22.08.1.tar.xz) = 5256188 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 413644a060c4..bb8dd7dd0f9f 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628572 -SHA256 (KDE/release-service/22.08.0/killbots-22.08.0.tar.xz) = 2fb3bde420ec00a4a4afc1ee7075b73dfffa7dcf5529f99e5c4b9c4176f62e99 -SIZE (KDE/release-service/22.08.0/killbots-22.08.0.tar.xz) = 1197924 +TIMESTAMP = 1662479972 +SHA256 (KDE/release-service/22.08.1/killbots-22.08.1.tar.xz) = 6fa01cff8bbe297e8d1aa6e218e402a1affb7d88152b91a61137ce63904287d7 +SIZE (KDE/release-service/22.08.1/killbots-22.08.1.tar.xz) = 1197928 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 00160e775123..a4c616f0fe91 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628576 -SHA256 (KDE/release-service/22.08.0/kiriki-22.08.0.tar.xz) = a0aa4444d1f285f21af08de21fa54b119e6a0a16ce27783cf48ccc7a4151093e -SIZE (KDE/release-service/22.08.0/kiriki-22.08.0.tar.xz) = 366136 +TIMESTAMP = 1662479976 +SHA256 (KDE/release-service/22.08.1/kiriki-22.08.1.tar.xz) = 27a965e638b8d9762ec102d2c90b6e790484a6781594619c4eae63c1a9f65b42 +SIZE (KDE/release-service/22.08.1/kiriki-22.08.1.tar.xz) = 366084 diff --git a/games/kjumpingcube/Makefile b/games/kjumpingcube/Makefile index 823f9d2dc095..e73113172402 100644 --- a/games/kjumpingcube/Makefile +++ b/games/kjumpingcube/Makefile @@ -1,23 +1,22 @@ PORTNAME= kjumpingcube DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/kjumpingcube/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews jobwidgets \ kio libkdegames newstuff notifyconfig service solid widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 030aef9d97d2..24cfb8630d99 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628548 -SHA256 (KDE/release-service/22.08.0/kjumpingcube-22.08.0.tar.xz) = d02f272754b558b415f45aec8d96d720ba9acec357031c9a6ad287cb5194a5dd -SIZE (KDE/release-service/22.08.0/kjumpingcube-22.08.0.tar.xz) = 325576 +TIMESTAMP = 1662479948 +SHA256 (KDE/release-service/22.08.1/kjumpingcube-22.08.1.tar.xz) = 54dccf8d36f39dbc34f35ec894e16b7e3f6892d57fb8ea2c05a225493ed008e9 +SIZE (KDE/release-service/22.08.1/kjumpingcube-22.08.1.tar.xz) = 325636 diff --git a/games/klickety/Makefile b/games/klickety/Makefile index 8c3b0b406124..e134fa032597 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -1,25 +1,24 @@ PORTNAME= klickety DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shebangfix tar:xz xorg SHEBANG_FILES= src/klickety-2.0-inherit-ksame-highscore.pl USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n itemviews \ jobwidgets kio libkdegames notifications notifyconfig service \ solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 4c5dcda624b3..77a9a0fec6d0 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628583 -SHA256 (KDE/release-service/22.08.0/klickety-22.08.0.tar.xz) = a089b23df757837c881c8dd965c1067c468b3f37482a1b923ca8160d1d2ca585 -SIZE (KDE/release-service/22.08.0/klickety-22.08.0.tar.xz) = 1495888 +TIMESTAMP = 1662479983 +SHA256 (KDE/release-service/22.08.1/klickety-22.08.1.tar.xz) = 2eb92879f10a9666dcc0842f6050af3d25559c64de6ca75d0dc4ad841593dcd5 +SIZE (KDE/release-service/22.08.1/klickety-22.08.1.tar.xz) = 1496096 diff --git a/games/klines/distinfo b/games/klines/distinfo index 0aad2ce94986..6fbd612f56ac 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628553 -SHA256 (KDE/release-service/22.08.0/klines-22.08.0.tar.xz) = e9a21a42773d761fb1cb13d66e5fecc0b77619de4920268806362dd7aff07494 -SIZE (KDE/release-service/22.08.0/klines-22.08.0.tar.xz) = 1728140 +TIMESTAMP = 1662479952 +SHA256 (KDE/release-service/22.08.1/klines-22.08.1.tar.xz) = 32b48fa8fa6c4b90e0c038a20356ee7b67c2cafd9ef0aa1e719b2cc93c8075c3 +SIZE (KDE/release-service/22.08.1/klines-22.08.1.tar.xz) = 1728116 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index ec038847d37d..c3fe4ed8cace 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628567 -SHA256 (KDE/release-service/22.08.0/kmahjongg-22.08.0.tar.xz) = 20a3747f9c45a31a4f0caf96f90b3305fc8bee4b49e4ef7ee47458b0754ab842 -SIZE (KDE/release-service/22.08.0/kmahjongg-22.08.0.tar.xz) = 4072460 +TIMESTAMP = 1662479966 +SHA256 (KDE/release-service/22.08.1/kmahjongg-22.08.1.tar.xz) = 26f23a45c1e2ea785af3eee060f69612cf3a7a1fad9c573539e85efde9ea52e2 +SIZE (KDE/release-service/22.08.1/kmahjongg-22.08.1.tar.xz) = 4072636 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 83783b19ab60..9c397711f631 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628557 -SHA256 (KDE/release-service/22.08.0/kmines-22.08.0.tar.xz) = 4626bd2adc0506a4e270989a892c630c8b5bf805eb3e68bb6ebf0270e7aa0ca4 -SIZE (KDE/release-service/22.08.0/kmines-22.08.0.tar.xz) = 993468 +TIMESTAMP = 1662479956 +SHA256 (KDE/release-service/22.08.1/kmines-22.08.1.tar.xz) = 319558428e664b2adb608409f47aab1c3957788b044abc2288f579201c7e3505 +SIZE (KDE/release-service/22.08.1/kmines-22.08.1.tar.xz) = 993552 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 16b4a915c258..6e7911701d9d 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628584 -SHA256 (KDE/release-service/22.08.0/knavalbattle-22.08.0.tar.xz) = 876e2bf0f53210ddfd1216a4df96749f963c842114f8fdce68d815cc3ea2d2ee -SIZE (KDE/release-service/22.08.0/knavalbattle-22.08.0.tar.xz) = 1380416 +TIMESTAMP = 1662479984 +SHA256 (KDE/release-service/22.08.1/knavalbattle-22.08.1.tar.xz) = 0c79c7eb18c0892afd70f46767e7914f3d084f697c127c3d67114ddf7c64414d +SIZE (KDE/release-service/22.08.1/knavalbattle-22.08.1.tar.xz) = 1380608 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index cd732c684a99..202ebcdbaf10 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628564 -SHA256 (KDE/release-service/22.08.0/knetwalk-22.08.0.tar.xz) = 500dd1f0157788b4708b671e0e94da3b046eb5551747ca3ff6fe29e7c29599fb -SIZE (KDE/release-service/22.08.0/knetwalk-22.08.0.tar.xz) = 1097464 +TIMESTAMP = 1662479963 +SHA256 (KDE/release-service/22.08.1/knetwalk-22.08.1.tar.xz) = b0b82afa7c73d12ba45aef3b7cc5f47ddccb608ac31ad589062503906eae809e +SIZE (KDE/release-service/22.08.1/knetwalk-22.08.1.tar.xz) = 1097972 diff --git a/games/knights/distinfo b/games/knights/distinfo index 043cd3aa7110..2cb23f5f3098 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628582 -SHA256 (KDE/release-service/22.08.0/knights-22.08.0.tar.xz) = 1cd371896df6d06a44d19a58dc28f896f6d1041755f53bdee1a3e9db1235df99 -SIZE (KDE/release-service/22.08.0/knights-22.08.0.tar.xz) = 3323980 +TIMESTAMP = 1662479982 +SHA256 (KDE/release-service/22.08.1/knights-22.08.1.tar.xz) = d1f396c75e6fc09c8a1073442b10b2c6a322ce38ca86e66cbad8f1c73dd78c46 +SIZE (KDE/release-service/22.08.1/knights-22.08.1.tar.xz) = 3324096 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 9b41cdce5792..ee4795ba412a 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628577 -SHA256 (KDE/release-service/22.08.0/kolf-22.08.0.tar.xz) = 1dd35bc7be781bc2487e3ae68f240c63f125e336317dc72ab0ce46ab4f88b303 -SIZE (KDE/release-service/22.08.0/kolf-22.08.0.tar.xz) = 1050704 +TIMESTAMP = 1662479977 +SHA256 (KDE/release-service/22.08.1/kolf-22.08.1.tar.xz) = 26981eb7498a599e258401955d961cfa1682ccef32eb1ceb0d444e25656b6f55 +SIZE (KDE/release-service/22.08.1/kolf-22.08.1.tar.xz) = 1051800 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index d934654220c9..177b0ae67729 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628554 -SHA256 (KDE/release-service/22.08.0/kollision-22.08.0.tar.xz) = 3e707f092f62131c8629d241e0a509aa8037225824b6694d1bdb1c6155ebddf4 -SIZE (KDE/release-service/22.08.0/kollision-22.08.0.tar.xz) = 303060 +TIMESTAMP = 1662479953 +SHA256 (KDE/release-service/22.08.1/kollision-22.08.1.tar.xz) = 7a769160c00204193a52f270e0da70510287222e31bc77fb0ce0a8ba2f9665b8 +SIZE (KDE/release-service/22.08.1/kollision-22.08.1.tar.xz) = 303084 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 8df69f9b4820..4b9d0fc7730f 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628587 -SHA256 (KDE/release-service/22.08.0/konquest-22.08.0.tar.xz) = 0aa31ab74539b8dc0a3a870d7948cb0be2820e1af454b95d8e5e3e27d9685ade -SIZE (KDE/release-service/22.08.0/konquest-22.08.0.tar.xz) = 862808 +TIMESTAMP = 1662479987 +SHA256 (KDE/release-service/22.08.1/konquest-22.08.1.tar.xz) = d80a7c8dc7a006113e7ce3dfc1007ec7adfb3d490a119c67432edabd122cafbf +SIZE (KDE/release-service/22.08.1/konquest-22.08.1.tar.xz) = 862984 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index bdfcee731b7b..24692e2695ec 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628578 -SHA256 (KDE/release-service/22.08.0/kpat-22.08.0.tar.xz) = 66a1f8697339c5e2b9fc5cabc9ab3f83266d86fde06e54729eb8f23e5043a9e5 -SIZE (KDE/release-service/22.08.0/kpat-22.08.0.tar.xz) = 3731224 +TIMESTAMP = 1662479978 +SHA256 (KDE/release-service/22.08.1/kpat-22.08.1.tar.xz) = 0d24b741e0a9e41d20e8dcc053cc9b6fabbf0bcd7ce583c95bd1c4aa9182bcae +SIZE (KDE/release-service/22.08.1/kpat-22.08.1.tar.xz) = 3731176 diff --git a/games/kreversi/Makefile b/games/kreversi/Makefile index e34d84f1832d..02b412fc0f7a 100644 --- a/games/kreversi/Makefile +++ b/games/kreversi/Makefile @@ -1,23 +1,22 @@ PORTNAME= kreversi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/kreversi/ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n iconthemes itemviews \ jobwidgets kdeclarative kio libkdegames package service \ solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index c8582711cfdb..51b3217ec5e6 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628580 -SHA256 (KDE/release-service/22.08.0/kreversi-22.08.0.tar.xz) = 8025b1484715e2a4c5fe14dea49aa438e00c9181f800d0f8662ca69d4a3ab8ed -SIZE (KDE/release-service/22.08.0/kreversi-22.08.0.tar.xz) = 1063432 +TIMESTAMP = 1662479980 +SHA256 (KDE/release-service/22.08.1/kreversi-22.08.1.tar.xz) = 7452fc92116b3286e58bbb3a50bc3605f68ad6b216ca1908dee0dfb9a13d9703 +SIZE (KDE/release-service/22.08.1/kreversi-22.08.1.tar.xz) = 1063612 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 46eb9d33a8ae..03932d209e6d 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628591 -SHA256 (KDE/release-service/22.08.0/kshisen-22.08.0.tar.xz) = bd1edcdc53869dbe617cf980f24ae4a7ffeb2bc5f00386a3e419fc2037485ba6 -SIZE (KDE/release-service/22.08.0/kshisen-22.08.0.tar.xz) = 993964 +TIMESTAMP = 1662479990 +SHA256 (KDE/release-service/22.08.1/kshisen-22.08.1.tar.xz) = cdbc4ba8a7cc02dc337ca9af744385f9559f182377bd49d5bb9f868e0270905e +SIZE (KDE/release-service/22.08.1/kshisen-22.08.1.tar.xz) = 993960 diff --git a/games/ksirk/Makefile b/games/ksirk/Makefile index 554949cd28fc..81df450c1c60 100644 --- a/games/ksirk/Makefile +++ b/games/ksirk/Makefile @@ -1,21 +1,20 @@ PORTNAME= ksirk DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/ksirk/ USES= cmake compiler:c++11-lang kde:5 qca qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash i18n iconthemes kio libkdegames newstuff \ service wallet widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 svg widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 45f9fa2cf351..27138bb3d6b3 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628561 -SHA256 (KDE/release-service/22.08.0/ksirk-22.08.0.tar.xz) = e17e00b744b2a7abcd9f32b2ae15109eea84377d248a083658991a207802bf5d -SIZE (KDE/release-service/22.08.0/ksirk-22.08.0.tar.xz) = 7007780 +TIMESTAMP = 1662479961 +SHA256 (KDE/release-service/22.08.1/ksirk-22.08.1.tar.xz) = 8bd90c51798c01846348f660551da4343569f65ec24b38035ed5da284f2881e6 +SIZE (KDE/release-service/22.08.1/ksirk-22.08.1.tar.xz) = 7007968 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 6dfe370059d4..2528c8c2749d 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628547 -SHA256 (KDE/release-service/22.08.0/ksnakeduel-22.08.0.tar.xz) = 1b5f0cc260ac8a6c21a723004268356c189e35c7a29ea2bd80bee50664ee40ab -SIZE (KDE/release-service/22.08.0/ksnakeduel-22.08.0.tar.xz) = 608032 +TIMESTAMP = 1662479947 +SHA256 (KDE/release-service/22.08.1/ksnakeduel-22.08.1.tar.xz) = 3f637f4a5860667dbe6aedd14cc7066c3f4eea0575617a523769676d3bcc0e1f +SIZE (KDE/release-service/22.08.1/ksnakeduel-22.08.1.tar.xz) = 608024 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 62ee9c9a53be..0974afc952a7 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628559 -SHA256 (KDE/release-service/22.08.0/kspaceduel-22.08.0.tar.xz) = 9f0bd0a533a1f76450d4a33da755c6b6a806947aff8d663a3fb47e1dd29edaad -SIZE (KDE/release-service/22.08.0/kspaceduel-22.08.0.tar.xz) = 651812 +TIMESTAMP = 1662479958 +SHA256 (KDE/release-service/22.08.1/kspaceduel-22.08.1.tar.xz) = 8a6718f66688d0f4aea27283fdca2addc6af1df24cdf09a9cc46d61d46f3ba94 +SIZE (KDE/release-service/22.08.1/kspaceduel-22.08.1.tar.xz) = 651792 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index b0e9b6e5c7e4..3915c2d0d2d8 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628560 -SHA256 (KDE/release-service/22.08.0/ksquares-22.08.0.tar.xz) = fa5457340bd8e15ca2b0d541e3602de9bb7c25b838fad33430caece0290d0c96 -SIZE (KDE/release-service/22.08.0/ksquares-22.08.0.tar.xz) = 308312 +TIMESTAMP = 1662479959 +SHA256 (KDE/release-service/22.08.1/ksquares-22.08.1.tar.xz) = 35a72827d314a0c607e8867e494803ae1fee952e7a04ca8fb94418d1119be7f6 +SIZE (KDE/release-service/22.08.1/ksquares-22.08.1.tar.xz) = 308292 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 300ff5609f05..562076870fc5 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660832253 -SHA256 (KDE/release-service/22.08.0/ksudoku-22.08.0.tar.xz) = 903a9ba60a4ee5ab9ac1da92a156e6be1edfa9a0e171ed9eaf99c415e6ce7b6e -SIZE (KDE/release-service/22.08.0/ksudoku-22.08.0.tar.xz) = 1689904 +TIMESTAMP = 1662479985 +SHA256 (KDE/release-service/22.08.1/ksudoku-22.08.1.tar.xz) = c44291f9d432d13c8824c93dd3df0f9c47af97e754d3ff861a43084f9b73d029 +SIZE (KDE/release-service/22.08.1/ksudoku-22.08.1.tar.xz) = 1689752 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 8075f059c501..00e357bbc8ea 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628574 -SHA256 (KDE/release-service/22.08.0/ktuberling-22.08.0.tar.xz) = 9f1deee98d854a4f09f6d71398d203ee2b038eb9ac77bad0fa96b44e9a25261c -SIZE (KDE/release-service/22.08.0/ktuberling-22.08.0.tar.xz) = 71429176 +TIMESTAMP = 1662479974 +SHA256 (KDE/release-service/22.08.1/ktuberling-22.08.1.tar.xz) = 0e4f3dbcb4682bf7d5ad1e8aa12f9274f3b66e2ade40bdc4e3a14253e702f0e5 +SIZE (KDE/release-service/22.08.1/ktuberling-22.08.1.tar.xz) = 71415928 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index eb7f56883a87..15b50c08ab9d 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628550 -SHA256 (KDE/release-service/22.08.0/kubrick-22.08.0.tar.xz) = d995aa6a425836348e0cbfa08bddd75cc2e81198eb1304827899c1622e39f705 -SIZE (KDE/release-service/22.08.0/kubrick-22.08.0.tar.xz) = 343432 +TIMESTAMP = 1662479950 +SHA256 (KDE/release-service/22.08.1/kubrick-22.08.1.tar.xz) = e9ae797a6724ad12ca3b2a6f4619a32550e46bcb36b8d5683838d9e7ec972793 +SIZE (KDE/release-service/22.08.1/kubrick-22.08.1.tar.xz) = 343456 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index c7d442260ace..dd9aaa4acb7a 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628593 -SHA256 (KDE/release-service/22.08.0/libkdegames-22.08.0.tar.xz) = ab05833df6b8de50e4b13e23f7dee9b8c7447ce08623b7680d110880f5b8ed80 -SIZE (KDE/release-service/22.08.0/libkdegames-22.08.0.tar.xz) = 5954480 +TIMESTAMP = 1662479992 +SHA256 (KDE/release-service/22.08.1/libkdegames-22.08.1.tar.xz) = a9f3c29e05796fd09d155d9c263dcd7b9a70903994cc56fb12dc8d03145c30aa +SIZE (KDE/release-service/22.08.1/libkdegames-22.08.1.tar.xz) = 5949544 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 2eb9db5626c2..9068ef2b504f 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628571 -SHA256 (KDE/release-service/22.08.0/libkmahjongg-22.08.0.tar.xz) = f063e084b4d62b7fd61656b592b625220f3cea41bd8e1d6108138865a0e55de5 -SIZE (KDE/release-service/22.08.0/libkmahjongg-22.08.0.tar.xz) = 1685516 +TIMESTAMP = 1662479971 +SHA256 (KDE/release-service/22.08.1/libkmahjongg-22.08.1.tar.xz) = 616c33d7c55b0cfd0b0000a4e5888f0c7ee2aec2726431a24b0edb4d018e9b46 +SIZE (KDE/release-service/22.08.1/libkmahjongg-22.08.1.tar.xz) = 1685720 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 9ce2e4be5412..93c2f6d1d776 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628568 -SHA256 (KDE/release-service/22.08.0/lskat-22.08.0.tar.xz) = fa62ea10a9c49067e6212c249f849c884554eacd6fbaf71c670c838f1eee7155 -SIZE (KDE/release-service/22.08.0/lskat-22.08.0.tar.xz) = 1235700 +TIMESTAMP = 1662479967 +SHA256 (KDE/release-service/22.08.1/lskat-22.08.1.tar.xz) = ecd7a01b3cf20a023161ea73866858af402b59b4377fa8a4e5be81ba2dd33222 +SIZE (KDE/release-service/22.08.1/lskat-22.08.1.tar.xz) = 1235348 diff --git a/games/palapeli/Makefile b/games/palapeli/Makefile index cd5f07c16b75..aacb6decca75 100644 --- a/games/palapeli/Makefile +++ b/games/palapeli/Makefile @@ -1,23 +1,22 @@ PORTNAME= palapeli DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://www.kde.org/applications/games/palapeli/ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kio libkdegames notifications service \ solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network svg widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index a2475ecc7a62..bed4e58ab135 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628551 -SHA256 (KDE/release-service/22.08.0/palapeli-22.08.0.tar.xz) = 9bd530821e86b45d37d6058a9d5b08485b093b0c64517b2d869a1ae184368fc9 -SIZE (KDE/release-service/22.08.0/palapeli-22.08.0.tar.xz) = 2102196 +TIMESTAMP = 1662479951 +SHA256 (KDE/release-service/22.08.1/palapeli-22.08.1.tar.xz) = 3fd5b9257d4836cba970f66d24f4e2136bdcdff64dd4ec6ab1dc2404a8e6e33f +SIZE (KDE/release-service/22.08.1/palapeli-22.08.1.tar.xz) = 2102608 diff --git a/games/picmi/Makefile b/games/picmi/Makefile index 898c27727e6c..9109e048b0f8 100644 --- a/games/picmi/Makefile +++ b/games/picmi/Makefile @@ -1,22 +1,21 @@ PORTNAME= picmi DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME:tu}_DESC} WWW= https://games.kde.org/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools i18n jobwidgets kdeclarative kio \ libkdegames newstuff service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network svg testlib widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include <${.CURDIR}/../kdegames/Makefile.common> .include diff --git a/games/picmi/distinfo b/games/picmi/distinfo index c901eb8ee30e..90c00dc891af 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628590 -SHA256 (KDE/release-service/22.08.0/picmi-22.08.0.tar.xz) = 2ab93ed819d463626ad2cf58d182e5d6f0d4d37985ce7a30846a0b8e7a7f1e21 -SIZE (KDE/release-service/22.08.0/picmi-22.08.0.tar.xz) = 1538544 +TIMESTAMP = 1662479989 +SHA256 (KDE/release-service/22.08.1/picmi-22.08.1.tar.xz) = 5766bb982da7bb8300caa2c26293056ba103137e89e7fc769563d1408100f868 +SIZE (KDE/release-service/22.08.1/picmi-22.08.1.tar.xz) = 1538564 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 5a0efbc4cfb1..a238c966421f 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628617 -SHA256 (KDE/release-service/22.08.0/gwenview-22.08.0.tar.xz) = 447d1e8a0c19476fc2879a4e406d7d6af79b59f9e2c7aad28f70d484789ff716 -SIZE (KDE/release-service/22.08.0/gwenview-22.08.0.tar.xz) = 6824968 +TIMESTAMP = 1662480015 +SHA256 (KDE/release-service/22.08.1/gwenview-22.08.1.tar.xz) = 5b4593c50395f4088cb1aa434346558f5c73e2b2ec6a74a50a2bba834adf2a9c +SIZE (KDE/release-service/22.08.1/gwenview-22.08.1.tar.xz) = 6825004 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 37cf3cd4e39f..2ad46b9fceeb 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628602 -SHA256 (KDE/release-service/22.08.0/kamera-22.08.0.tar.xz) = 2d4343ead96f1f7e7033fa54316c96daf0587c7eac6a2f53803e71550ecdd5a1 -SIZE (KDE/release-service/22.08.0/kamera-22.08.0.tar.xz) = 119732 +TIMESTAMP = 1662480001 +SHA256 (KDE/release-service/22.08.1/kamera-22.08.1.tar.xz) = 15bd2f34d4e87467d76a4293481e42ccb630dd758b6bf4c457a6a86128e783b5 +SIZE (KDE/release-service/22.08.1/kamera-22.08.1.tar.xz) = 119920 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index 1003e9b5d35b..908da4c152a7 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,103 +1,104 @@ %%QT_PLUGINDIR%%/kf5/kio/kio_kamera.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kamera.so share/applications/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kio5_kamera.mo share/locale/ast/LC_MESSAGES/kio5_kamera.mo share/locale/az/LC_MESSAGES/kcmkamera.mo share/locale/az/LC_MESSAGES/kio5_kamera.mo share/locale/be/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kio5_kamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kio5_kamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kio5_kamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo +share/locale/is/LC_MESSAGES/kio5_kamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ro/LC_MESSAGES/kio5_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/se/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sl/LC_MESSAGES/kio5_kamera.mo share/locale/sq/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/ta/LC_MESSAGES/kcmkamera.mo share/locale/tg/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kio5_kamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/vi/LC_MESSAGES/kcmkamera.mo share/locale/vi/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml share/solid/actions/solid_camera.desktop diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 2f8fc6d86804..05bba5ef68af 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628609 -SHA256 (KDE/release-service/22.08.0/kcolorchooser-22.08.0.tar.xz) = 827ad0b25d500e0d5507d87daeca2336535fca9f8e062d4876b88f34b36cdd00 -SIZE (KDE/release-service/22.08.0/kcolorchooser-22.08.0.tar.xz) = 31000 +TIMESTAMP = 1662480008 +SHA256 (KDE/release-service/22.08.1/kcolorchooser-22.08.1.tar.xz) = 47cb02808760cdfa822a6bacbaba1842036d9e0ae58606ed8e91a18a56a31d32 +SIZE (KDE/release-service/22.08.1/kcolorchooser-22.08.1.tar.xz) = 31124 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 69e45b007afd..8389c3a3838b 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628607 -SHA256 (KDE/release-service/22.08.0/kdegraphics-mobipocket-22.08.0.tar.xz) = e97201c31eda7ee7dcf3d7596163c5ee0648e62374b3134da3d4d1750dc8d719 -SIZE (KDE/release-service/22.08.0/kdegraphics-mobipocket-22.08.0.tar.xz) = 12596 +TIMESTAMP = 1662480006 +SHA256 (KDE/release-service/22.08.1/kdegraphics-mobipocket-22.08.1.tar.xz) = d618f36b40272b688366200a2e123c59e9964a3646127641a0150e84ebfbbbcf +SIZE (KDE/release-service/22.08.1/kdegraphics-mobipocket-22.08.1.tar.xz) = 12596 diff --git a/graphics/kdegraphics-svgpart/Makefile b/graphics/kdegraphics-svgpart/Makefile index 07f30c7f94c3..56894932afa3 100644 --- a/graphics/kdegraphics-svgpart/Makefile +++ b/graphics/kdegraphics-svgpart/Makefile @@ -1,20 +1,19 @@ PORTNAME= svgpart DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications PKGNAMEPREFIX= kdegraphics- MAINTAINER= kde@FreeBSD.org COMMENT= SVG KPart WWW= https://www.kde.org USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network svg widgets xml \ buildtools_build qmake_build USE_XORG= x11 .include diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index ef52ef7370ac..dd9880fd0016 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628613 -SHA256 (KDE/release-service/22.08.0/svgpart-22.08.0.tar.xz) = 5dfb3651489bb3544bf451629223ebb4b427f656af484f48dcd0fd02f8ace283 -SIZE (KDE/release-service/22.08.0/svgpart-22.08.0.tar.xz) = 27560 +TIMESTAMP = 1662480011 +SHA256 (KDE/release-service/22.08.1/svgpart-22.08.1.tar.xz) = 447a8123e73a4b1ed38bf6581e346ed21b239e928bd8f351677d14a94b99e291 +SIZE (KDE/release-service/22.08.1/svgpart-22.08.1.tar.xz) = 27552 diff --git a/graphics/kdegraphics-thumbnailers/Makefile b/graphics/kdegraphics-thumbnailers/Makefile index 0171b7525e98..481fcbc4ae8e 100644 --- a/graphics/kdegraphics-thumbnailers/Makefile +++ b/graphics/kdegraphics-thumbnailers/Makefile @@ -1,20 +1,19 @@ PORTNAME= kdegraphics-thumbnailers DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Thumbnailers for various graphics file formats WWW= https://www.kde.org LIB_DEPENDS= libqmobipocket.so:graphics/kdegraphics-mobipocket USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= archive completion config coreaddons jobwidgets libkdcraw \ libkexiv2 kio service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network widgets \ buildtools_build qmake_build USE_XORG= x11 .include diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index dfd580afc30e..ac77cbcf48f6 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628599 -SHA256 (KDE/release-service/22.08.0/kdegraphics-thumbnailers-22.08.0.tar.xz) = f0b4f25c514332af9bf912cdc787b17138f6c532dcef5609b3688ceb6bd3b474 -SIZE (KDE/release-service/22.08.0/kdegraphics-thumbnailers-22.08.0.tar.xz) = 49004 +TIMESTAMP = 1662479998 +SHA256 (KDE/release-service/22.08.1/kdegraphics-thumbnailers-22.08.1.tar.xz) = 19b8869dc39a77bfe671147a25a861ebe50267af3e8d815dc5df039e4f10742a +SIZE (KDE/release-service/22.08.1/kdegraphics-thumbnailers-22.08.1.tar.xz) = 48992 diff --git a/graphics/kimagemapeditor/Makefile b/graphics/kimagemapeditor/Makefile index b9ac0bcc866f..82f2d1720460 100644 --- a/graphics/kimagemapeditor/Makefile +++ b/graphics/kimagemapeditor/Makefile @@ -1,23 +1,22 @@ PORTNAME= kimagemapeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE generator of HTML image maps WWW= https://www.kde.org/applications/development/kimagemapeditor/ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets js kdelibs4support khtml kio notifications \ parts service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 38b1b726a7f0..f791b8b34e47 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628608 -SHA256 (KDE/release-service/22.08.0/kimagemapeditor-22.08.0.tar.xz) = f601412a098736c63e2f629f327eb4a49df53605ff52c6f0af02d4752268c0a3 -SIZE (KDE/release-service/22.08.0/kimagemapeditor-22.08.0.tar.xz) = 1090692 +TIMESTAMP = 1662480007 +SHA256 (KDE/release-service/22.08.1/kimagemapeditor-22.08.1.tar.xz) = 6ca156c7a23b3cf145994c2fcd1ac81378d2251e718fd3267cb0643583ad6825 +SIZE (KDE/release-service/22.08.1/kimagemapeditor-22.08.1.tar.xz) = 1090672 diff --git a/graphics/kipi-plugins/Makefile b/graphics/kipi-plugins/Makefile index 5856b32e1531..4de79c49929b 100644 --- a/graphics/kipi-plugins/Makefile +++ b/graphics/kipi-plugins/Makefile @@ -1,35 +1,34 @@ PORTNAME= kipi-plugins DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin architecture for image applications WWW= https://github.com/kde/kipi-plugins LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= kio libkipi solid archive auth bookmarks codecs completion \ config configwidgets coreaddons i18n itemviews jobwidgets \ service widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml xmlpatterns \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS MEDIAWIKI KVKONTAKTE OPTIONS_DEFAULT= ${OPTIONS_DEFINE} OPTIONS_SUB= yes MEDIAWIKI_DESC= MediaWiki Plugin MEDIAWIKI_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5MediaWiki MEDIAWIKI_LIB_DEPENDS= libKF5MediaWiki.so:net/libmediawiki KVKONTAKTE_DESC= vk.com Plugin KVKONTAKTE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Vkontakte KVKONTAKTE_LIB_DEPENDS= libKF5Vkontakte.so:net/libkvkontakte .include diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 9b3219ad25b8..2168fe11e38e 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628605 -SHA256 (KDE/release-service/22.08.0/kipi-plugins-22.08.0.tar.xz) = 56036957692b27fef92baf9e18423fa63e23d462fd3fba14863ba2d04ff151e6 -SIZE (KDE/release-service/22.08.0/kipi-plugins-22.08.0.tar.xz) = 1524316 +TIMESTAMP = 1662480004 +SHA256 (KDE/release-service/22.08.1/kipi-plugins-22.08.1.tar.xz) = 0e8e0b93995c1fee606cd26f6d8134b17b79b66da73c08f9bb5526200a346593 +SIZE (KDE/release-service/22.08.1/kipi-plugins-22.08.1.tar.xz) = 1524384 diff --git a/graphics/kolourpaint/Makefile b/graphics/kolourpaint/Makefile index 703cbfcb97a4..b904fa0b54ac 100644 --- a/graphics/kolourpaint/Makefile +++ b/graphics/kolourpaint/Makefile @@ -1,25 +1,24 @@ PORTNAME= kolourpaint DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE paint program WWW= http://www.kolourpaint.org USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kdelibs4support kio libkexiv2 \ libksane notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= dbus concurrent core gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 7d147c1a4123..cbf8c15fc9df 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628610 -SHA256 (KDE/release-service/22.08.0/kolourpaint-22.08.0.tar.xz) = 7bffb89612f51279b93c727e153f0dc5c7e0c22e95d1fef93341c57dc22f4a8e -SIZE (KDE/release-service/22.08.0/kolourpaint-22.08.0.tar.xz) = 5718448 +TIMESTAMP = 1662480009 +SHA256 (KDE/release-service/22.08.1/kolourpaint-22.08.1.tar.xz) = 7ac8a168245ecef21c7bf68c4d1705abd6e62b7b4097c55d56e9252872f2160b +SIZE (KDE/release-service/22.08.1/kolourpaint-22.08.1.tar.xz) = 5718616 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index d907c1cf5cd8..9cf073966976 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628614 -SHA256 (KDE/release-service/22.08.0/kontrast-22.08.0.tar.xz) = 46c99dd43ac3e558074339749064dd13d175bbcfe06d7eb64c759e5979d2d91c -SIZE (KDE/release-service/22.08.0/kontrast-22.08.0.tar.xz) = 127248 +TIMESTAMP = 1662480012 +SHA256 (KDE/release-service/22.08.1/kontrast-22.08.1.tar.xz) = b7d273e11b350e0a77b2d04ef1177f4b5881fb52e3c21371b5a4ff246ef1c30f +SIZE (KDE/release-service/22.08.1/kontrast-22.08.1.tar.xz) = 127276 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 3bf8660c8903..965d580355e1 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628616 -SHA256 (KDE/release-service/22.08.0/kqtquickcharts-22.08.0.tar.xz) = ae6c02067204943e489360789842e4ad8dece5de29d75f908156080d5a4f5941 -SIZE (KDE/release-service/22.08.0/kqtquickcharts-22.08.0.tar.xz) = 30188 +TIMESTAMP = 1662480014 +SHA256 (KDE/release-service/22.08.1/kqtquickcharts-22.08.1.tar.xz) = 28af0f40d11e8e4e21fc5a52fc64ab788bdcb9b382b6bb82e74ec127f8e32275 +SIZE (KDE/release-service/22.08.1/kqtquickcharts-22.08.1.tar.xz) = 30184 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 33a33f79786b..0600e2027af8 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628606 -SHA256 (KDE/release-service/22.08.0/ksanecore-22.08.0.tar.xz) = 7f4ae07e7396fc11283e971c5465cb52bf384c4995c615d8f71ba41065f7209f -SIZE (KDE/release-service/22.08.0/ksanecore-22.08.0.tar.xz) = 46212 +TIMESTAMP = 1662480005 +SHA256 (KDE/release-service/22.08.1/ksanecore-22.08.1.tar.xz) = f5cb7aa633d82961eda62a0b79bf54912a0e0a6f5b0627b2f5debc929a19d2e5 +SIZE (KDE/release-service/22.08.1/ksanecore-22.08.1.tar.xz) = 46236 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index b2ff454b8b5f..4c754edcba3e 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628615 -SHA256 (KDE/release-service/22.08.0/libkdcraw-22.08.0.tar.xz) = 2aad043bef260df4a8cae20cd47ec94a67e0a62b03b375788d1e45afdc07b6cf -SIZE (KDE/release-service/22.08.0/libkdcraw-22.08.0.tar.xz) = 37452 +TIMESTAMP = 1662480013 +SHA256 (KDE/release-service/22.08.1/libkdcraw-22.08.1.tar.xz) = 0e0ef769c831255ce40200eb7e61b2781af01746f7cf2480c565020d7e43848b +SIZE (KDE/release-service/22.08.1/libkdcraw-22.08.1.tar.xz) = 37424 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 086f98dce871..604a5a2a666b 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628601 -SHA256 (KDE/release-service/22.08.0/libkexiv2-22.08.0.tar.xz) = f94da759b343dfd5b202bc06b4ab74982f898567e4f87b24edceb992feb9622a -SIZE (KDE/release-service/22.08.0/libkexiv2-22.08.0.tar.xz) = 59752 +TIMESTAMP = 1662480000 +SHA256 (KDE/release-service/22.08.1/libkexiv2-22.08.1.tar.xz) = 69330259f09cc0199776cadef646a073cb075f9de97e9db15e8bec7bd3f19747 +SIZE (KDE/release-service/22.08.1/libkexiv2-22.08.1.tar.xz) = 59736 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 353ec5cc870d..08e9d0585959 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628600 -SHA256 (KDE/release-service/22.08.0/libkipi-22.08.0.tar.xz) = 0036c14be0ef564bab97b942d73588af95709bb7d42ad5aad88d1fcac482aa65 -SIZE (KDE/release-service/22.08.0/libkipi-22.08.0.tar.xz) = 88524 +TIMESTAMP = 1662479999 +SHA256 (KDE/release-service/22.08.1/libkipi-22.08.1.tar.xz) = 063d5df547b0dd8c62ed00612ca9818c9af1cea4d64744e684245d04a2e6fe92 +SIZE (KDE/release-service/22.08.1/libkipi-22.08.1.tar.xz) = 88536 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 40baef02d7a6..4e023d710ec0 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628604 -SHA256 (KDE/release-service/22.08.0/libksane-22.08.0.tar.xz) = cf96624426a64d2ce5f1293e02fe882ed1c75f031fdc9ee981c67440ba83658b -SIZE (KDE/release-service/22.08.0/libksane-22.08.0.tar.xz) = 147732 +TIMESTAMP = 1662480003 +SHA256 (KDE/release-service/22.08.1/libksane-22.08.1.tar.xz) = d623391255b7e2b9b202443534e1d359e34e61a79f054e34b1e78229e6e832d5 +SIZE (KDE/release-service/22.08.1/libksane-22.08.1.tar.xz) = 147808 diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 1ebe7d4e5267..8751a13d9f66 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -1,46 +1,45 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer WWW= https://okular.kde.org 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 xorg 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 USE_XORG= x11 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 df9c3771e8f5..3564ae464928 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628611 -SHA256 (KDE/release-service/22.08.0/okular-22.08.0.tar.xz) = 72c0385cfa489043e9ac0318961fee1ee3360684aaf56b6693639d514df45fb7 -SIZE (KDE/release-service/22.08.0/okular-22.08.0.tar.xz) = 8222980 +TIMESTAMP = 1662480010 +SHA256 (KDE/release-service/22.08.1/okular-22.08.1.tar.xz) = 967e5dd1bfcebffa46eb93d97509dde5928cc9e75cc823aabf396ab3b49b2839 +SIZE (KDE/release-service/22.08.1/okular-22.08.1.tar.xz) = 8225648 diff --git a/graphics/skanlite/Makefile b/graphics/skanlite/Makefile index 8c63ea2ea9ad..149affe0e2d1 100644 --- a/graphics/skanlite/Makefile +++ b/graphics/skanlite/Makefile @@ -1,24 +1,23 @@ PORTNAME= skanlite DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Simple image scanning application WWW= https://www.kde.org/applications/graphics/skanlite LICENSE= GPLv2 LIB_DEPENDS= libKF5Sane.so:graphics/libksane \ libpng.so:graphics/png USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth config configwidgets codecs completion \ coreaddons i18n jobwidgets kio \ service solid widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= core concurrent dbus gui network widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 .include diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 512684d6779e..3793f842530f 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628618 -SHA256 (KDE/release-service/22.08.0/skanlite-22.08.0.tar.xz) = 4eaf30c0f061d472da156cb8779afa8e8807c222ea3cd6ec3e09c0c1f8e352b1 -SIZE (KDE/release-service/22.08.0/skanlite-22.08.0.tar.xz) = 2441668 +TIMESTAMP = 1662480016 +SHA256 (KDE/release-service/22.08.1/skanlite-22.08.1.tar.xz) = 3a45dc694552780bb1803214a111505d9ccc79eeb95af58393d6b7ad86a50882 +SIZE (KDE/release-service/22.08.1/skanlite-22.08.1.tar.xz) = 2441652 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 94d1bab67de8..7ec5dcbe21c8 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660855353 -SHA256 (KDE/release-service/22.08.0/skanpage-22.08.0.tar.xz) = 69c8f32b79e701d01f23db61cfc7c2cedf0d068344478ff2e6d9859ecef0f28d -SIZE (KDE/release-service/22.08.0/skanpage-22.08.0.tar.xz) = 1290464 +TIMESTAMP = 1662480017 +SHA256 (KDE/release-service/22.08.1/skanpage-22.08.1.tar.xz) = d0e2be1010bd94c147b33e33e9564d76f0ec19b92eea58bfd5abbdb6d27235ad +SIZE (KDE/release-service/22.08.1/skanpage-22.08.1.tar.xz) = 1290288 diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 1100208dce19..2a99ab4f3884 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,29 +1,28 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program WWW= https://projects.kde.org/projects/kde/kdegraphics/spectacle 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 guiaddons 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 59692c151ce6..5c62a3edcd7b 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628603 -SHA256 (KDE/release-service/22.08.0/spectacle-22.08.0.tar.xz) = 4d1ad5434de8ada175d3c1e8f965ec225611f2601e744bc4add67d3667deb5b6 -SIZE (KDE/release-service/22.08.0/spectacle-22.08.0.tar.xz) = 1254636 +TIMESTAMP = 1662480002 +SHA256 (KDE/release-service/22.08.1/spectacle-22.08.1.tar.xz) = 6cfebb2128689a38f15fc5b7b3e70a1a9e16137b24b3a6b5eb69b052175a8888 +SIZE (KDE/release-service/22.08.1/spectacle-22.08.1.tar.xz) = 1254520 diff --git a/irc/konversation/Makefile b/irc/konversation/Makefile index bb02c7491e50..613f871a3282 100644 --- a/irc/konversation/Makefile +++ b/irc/konversation/Makefile @@ -1,34 +1,33 @@ PORTNAME= konversation DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= irc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= User friendly IRC client for KDE WWW= https://konversation.kde.org LICENSE= GPLv2+ USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext kde:5 \ python:run qca qt:5 shebangfix tar:xz xorg USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools \ emoticons globalaccel i18n iconthemes idletime itemviews \ jobwidgets kio newstuff notifications notifyconfig parts service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build \ init_run USE_QT= concurrent core dbus gui multimedia network phonon4 widgets xml \ buildtools_build qmake_build USE_XORG= x11 SHEBANG_FILES= data/scripts/bug \ data/scripts/cmd \ data/scripts/media \ data/scripts/sayclip \ data/scripts/sysinfo \ data/updaters/*.pl OPTIONS_DEFINE= DOCS .include diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index c4074494ca01..f02d0a8abc67 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628468 -SHA256 (KDE/release-service/22.08.0/konversation-22.08.0.tar.xz) = 1350aa42e10fb33aa50a6e30affc77f0c78070b165f80cbd56d792beeb6bed82 -SIZE (KDE/release-service/22.08.0/konversation-22.08.0.tar.xz) = 4285612 +TIMESTAMP = 1662479867 +SHA256 (KDE/release-service/22.08.1/konversation-22.08.1.tar.xz) = 7b127ac370bd4c8dfaa7e016bcaebe7f3132c5e9c28d625cd29234fb3b0f4729 +SIZE (KDE/release-service/22.08.1/konversation-22.08.1.tar.xz) = 4285916 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 9a1510a04875..91c2271289cd 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628545 -SHA256 (KDE/release-service/22.08.0/kiten-22.08.0.tar.xz) = a9eb2423405f3c2a33845ef45c7857991e6889409ca0ae0bb1d19a7a2a34b896 -SIZE (KDE/release-service/22.08.0/kiten-22.08.0.tar.xz) = 11315748 +TIMESTAMP = 1662479945 +SHA256 (KDE/release-service/22.08.1/kiten-22.08.1.tar.xz) = 381934a00f1b4ed16fee750cc6efa049beb653bb316e7b3117407476c64740b8 +SIZE (KDE/release-service/22.08.1/kiten-22.08.1.tar.xz) = 11315992 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 615db847c83a..085e5ff546c5 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628491 -SHA256 (KDE/release-service/22.08.0/kross-interpreters-22.08.0.tar.xz) = 90d6eff845c4537e7a9768b5e3525310b21691215817245bc491c4d7fe37c1b8 -SIZE (KDE/release-service/22.08.0/kross-interpreters-22.08.0.tar.xz) = 151684 +TIMESTAMP = 1662479889 +SHA256 (KDE/release-service/22.08.1/kross-interpreters-22.08.1.tar.xz) = b9d81f9fe0e389cee1e925f042abdf04ac21ecfe08f65b6047bee7eed04c734e +SIZE (KDE/release-service/22.08.1/kross-interpreters-22.08.1.tar.xz) = 151752 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 8bffc36e78d4..7700cb633015 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628490 -SHA256 (KDE/release-service/22.08.0/kturtle-22.08.0.tar.xz) = cc4384fed4a0d693c9a632b64260f01741d7f33a88dc7e04a2b9f3841b8a3a41 -SIZE (KDE/release-service/22.08.0/kturtle-22.08.0.tar.xz) = 1967784 +TIMESTAMP = 1662479888 +SHA256 (KDE/release-service/22.08.1/kturtle-22.08.1.tar.xz) = 06bf07dd16c642fe978f04f507585c941f2cc4e641ebf9f23f4b3c5a33e72910 +SIZE (KDE/release-service/22.08.1/kturtle-22.08.1.tar.xz) = 1967652 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index bc0dd8562224..f96ba84c10b0 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628458 -SHA256 (KDE/release-service/22.08.0/analitza-22.08.0.tar.xz) = 6ad0be4fb19ddaf380339f89bf411f63d8696a0cecbc772bbbaaffb0852257d8 -SIZE (KDE/release-service/22.08.0/analitza-22.08.0.tar.xz) = 349052 +TIMESTAMP = 1662479854 +SHA256 (KDE/release-service/22.08.1/analitza-22.08.1.tar.xz) = dae381e0ee1e80983a6e3b889c70ac6886ca25929dc167597fd36c26345f550c +SIZE (KDE/release-service/22.08.1/analitza-22.08.1.tar.xz) = 349192 diff --git a/math/cantor/Makefile b/math/cantor/Makefile index 6535b8d54aa0..fc3f23fe6b9c 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,66 +1,65 @@ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE WWW= https://edu.kde.org/cantor 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.7+ qt:5 shared-mime-info tar:xz xorg 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_XORG= x11 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 57a916ef2ba7..dcbd8851d15f 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628465 -SHA256 (KDE/release-service/22.08.0/cantor-22.08.0.tar.xz) = 07f107004b9e2caf173bcb22e22c40016cc214559323d81fa4613e9473f6b504 -SIZE (KDE/release-service/22.08.0/cantor-22.08.0.tar.xz) = 9221012 +TIMESTAMP = 1662479862 +SHA256 (KDE/release-service/22.08.1/cantor-22.08.1.tar.xz) = 678fbf78af2c920cbfa08655570ed2a00070c3786a8e766ff46c35891cee29b1 +SIZE (KDE/release-service/22.08.1/cantor-22.08.1.tar.xz) = 9220772 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index e63ac0b66856..e9136fde1561 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628463 -SHA256 (KDE/release-service/22.08.0/kalgebra-22.08.0.tar.xz) = 4f67d55b449000988abb4440809bd99d1f0131a6f2e4dea9a910fca71290a0bc -SIZE (KDE/release-service/22.08.0/kalgebra-22.08.0.tar.xz) = 1032540 +TIMESTAMP = 1662479859 +SHA256 (KDE/release-service/22.08.1/kalgebra-22.08.1.tar.xz) = fd6f4be101b3c609802fe0f47991bd070c55bb2b05aefdbb6819935eb889360b +SIZE (KDE/release-service/22.08.1/kalgebra-22.08.1.tar.xz) = 1032340 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 159f22e2fd64..fe184f2b1c68 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628461 -SHA256 (KDE/release-service/22.08.0/kbruch-22.08.0.tar.xz) = a08dacbecc57543fc7eaafe1bb5695eccbbf71ab422907f8cd69559e32337ca1 -SIZE (KDE/release-service/22.08.0/kbruch-22.08.0.tar.xz) = 5633692 +TIMESTAMP = 1662479857 +SHA256 (KDE/release-service/22.08.1/kbruch-22.08.1.tar.xz) = 297b2a186c676e29876f734e91d0d4fb9d39f909d04e106e5b0be4a965f25641 +SIZE (KDE/release-service/22.08.1/kbruch-22.08.1.tar.xz) = 5633744 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index b0475a236256..b61ae57042f1 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628457 -SHA256 (KDE/release-service/22.08.0/kcalc-22.08.0.tar.xz) = d6be4d1e00d0bce257fbaef8a0533b7d0144ded776ab3f70437da16f8835d74b -SIZE (KDE/release-service/22.08.0/kcalc-22.08.0.tar.xz) = 394740 +TIMESTAMP = 1662479853 +SHA256 (KDE/release-service/22.08.1/kcalc-22.08.1.tar.xz) = 934a26654c45a36c68088dbd5610c2df1588e7f359fb5a22488b60403c363607 +SIZE (KDE/release-service/22.08.1/kcalc-22.08.1.tar.xz) = 394916 diff --git a/math/kig/Makefile b/math/kig/Makefile index 7f96a09eb33e..1d5309b37c93 100644 --- a/math/kig/Makefile +++ b/math/kig/Makefile @@ -1,30 +1,29 @@ PORTNAME= kig DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive geometry application WWW= https://www.kde.org/applications/education/kig LIB_DEPENDS= ${PY_BOOST} USES= cmake gettext compiler:c++11-lib desktop-file-utils kde:5 \ python:run qt:5 shebangfix tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools emoticons i18n iconthemes init itemmodels \ jobwidgets kdelibs4support kio parts service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build USE_XORG= x11 SHEBANG_FILES= pykig/pykig.py OPTIONS_DEFINE= DOCS post-patch: ${REINPLACE_CMD} '/Python_ADDITIONAL_VERSIONS/s|2.7|${PYTHON_VER};2.7|' \ ${WRKSRC}/cmake/modules/FindBoostPython.cmake .include diff --git a/math/kig/distinfo b/math/kig/distinfo index ebfa41e01a73..e1d81f489f9c 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628460 -SHA256 (KDE/release-service/22.08.0/kig-22.08.0.tar.xz) = 76994b4759b128fb60e162e2789f689e8a7dd09412c19c8a6ed062917e6b35ab -SIZE (KDE/release-service/22.08.0/kig-22.08.0.tar.xz) = 3184484 +TIMESTAMP = 1662479855 +SHA256 (KDE/release-service/22.08.1/kig-22.08.1.tar.xz) = 175b9a36d5a9a7119535fc75cb021c626ac6559bf632c40dccc39277bd7220fe +SIZE (KDE/release-service/22.08.1/kig-22.08.1.tar.xz) = 3184628 diff --git a/math/kmplot/Makefile b/math/kmplot/Makefile index d6d446e6e633..01e0208d702a 100644 --- a/math/kmplot/Makefile +++ b/math/kmplot/Makefile @@ -1,24 +1,23 @@ PORTNAME= kmplot DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical function plotter for KDE WWW= https://www.kde.org/applications/education/kmplot USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 141ea205ebf8..e6ff9299d1d4 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628462 -SHA256 (KDE/release-service/22.08.0/kmplot-22.08.0.tar.xz) = 978e0287800a5aa4760261f3ecb9b1eababc6b6ccdf9e744c48c4f2f7feff7c4 -SIZE (KDE/release-service/22.08.0/kmplot-22.08.0.tar.xz) = 3047220 +TIMESTAMP = 1662479858 +SHA256 (KDE/release-service/22.08.1/kmplot-22.08.1.tar.xz) = 6f3d15edf6c3d715db8ff0e75cef47b1e19a597747a92778b8965fe156824729 +SIZE (KDE/release-service/22.08.1/kmplot-22.08.1.tar.xz) = 3047316 diff --git a/math/rocs/Makefile b/math/rocs/Makefile index fb9c5b288963..c16162269827 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -1,27 +1,26 @@ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Graph theory IDE WWW= https://www.kde.org/applications/education/rocs LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= cmake compiler:c++11-lang desktop-file-utils gettext grantlee:5 kde:5 \ qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kdeclarative kio package parts \ service solid sonnet syntaxhighlighting texteditor textwidgets \ widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus declarative gui network script scripttools svg webkit \ widgets xml xmlpatterns \ buildtools_build qmake_build testlib_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/math/rocs/distinfo b/math/rocs/distinfo index c437829c0328..63e831e0e34b 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628464 -SHA256 (KDE/release-service/22.08.0/rocs-22.08.0.tar.xz) = b3831934f63fb45910e87a9715b8746ae0072e53a0e0f77162e5dcd6128dac1b -SIZE (KDE/release-service/22.08.0/rocs-22.08.0.tar.xz) = 1563380 +TIMESTAMP = 1662479861 +SHA256 (KDE/release-service/22.08.1/rocs-22.08.1.tar.xz) = 1dcbe273f4af9b4316f0a4b8b68bd743709b76993dd770d4a0f3093f14e18698 +SIZE (KDE/release-service/22.08.1/rocs-22.08.1.tar.xz) = 1563804 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index a9da63c729c2..2b550792b9a1 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628661 -SHA256 (KDE/release-service/22.08.0/artikulate-22.08.0.tar.xz) = b9d74953e4c8c95fe872e04bba01da46cb3e6353dc800d55b4754364b1a5eaf0 -SIZE (KDE/release-service/22.08.0/artikulate-22.08.0.tar.xz) = 1096856 +TIMESTAMP = 1662480067 +SHA256 (KDE/release-service/22.08.1/artikulate-22.08.1.tar.xz) = 22a2ee816206e570f4dbaf4ec46a9a47d65a8d58adc92bf28f2248fcddb7ff76 +SIZE (KDE/release-service/22.08.1/artikulate-22.08.1.tar.xz) = 1096964 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 39e2711ff0c6..1b4f4c6cc30b 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628663 -SHA256 (KDE/release-service/22.08.0/kdeedu-data-22.08.0.tar.xz) = 661a15b082a58cc10e6d171bf801922c46f2ab2a472b03a2aa5ae44d883cf302 -SIZE (KDE/release-service/22.08.0/kdeedu-data-22.08.0.tar.xz) = 336180 +TIMESTAMP = 1662480069 +SHA256 (KDE/release-service/22.08.1/kdeedu-data-22.08.1.tar.xz) = be88f949ff40fbf4d6d3b380b5d706e44872b9483250e792233ef3353fd67afd +SIZE (KDE/release-service/22.08.1/kdeedu-data-22.08.1.tar.xz) = 335888 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 8cb69c3aef55..001c6f9edc90 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628662 -SHA256 (KDE/release-service/22.08.0/kgeography-22.08.0.tar.xz) = 4ab99f43493e5b42b65a8e8ebf5c0b8a5ab1eaea8d653c2a9e65ad59c247373e -SIZE (KDE/release-service/22.08.0/kgeography-22.08.0.tar.xz) = 11085304 +TIMESTAMP = 1662480068 +SHA256 (KDE/release-service/22.08.1/kgeography-22.08.1.tar.xz) = 4dc100a5791b013f0010c7abac96df4af80f00ac7f67cbec64d7d716635e44f9 +SIZE (KDE/release-service/22.08.1/kgeography-22.08.1.tar.xz) = 11085312 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 52b83131dc44..da6b3cfa9830 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628660 -SHA256 (KDE/release-service/22.08.0/klettres-22.08.0.tar.xz) = d7ed3c294438bece40369aa0100019ab69e0066e1a8fba18587c9643d173a572 -SIZE (KDE/release-service/22.08.0/klettres-22.08.0.tar.xz) = 47187084 +TIMESTAMP = 1662480066 +SHA256 (KDE/release-service/22.08.1/klettres-22.08.1.tar.xz) = 11602bd1ff9ac03b149b083a11ffe76b477d57a58c2994dcad1bf5455bd58190 +SIZE (KDE/release-service/22.08.1/klettres-22.08.1.tar.xz) = 47187700 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 2b959fcbd336..4811d849d89b 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628656 -SHA256 (KDE/release-service/22.08.0/ktouch-22.08.0.tar.xz) = 290bddd8f6c0ab7706ab167a32720e4cb2854bc78659c1731d8f7636cb171795 -SIZE (KDE/release-service/22.08.0/ktouch-22.08.0.tar.xz) = 4989876 +TIMESTAMP = 1662480060 +SHA256 (KDE/release-service/22.08.1/ktouch-22.08.1.tar.xz) = 9af33a5b912c7e5ae86a7c17fb23cb0638cc6bba765a478097e0a7f07bd67b08 +SIZE (KDE/release-service/22.08.1/ktouch-22.08.1.tar.xz) = 4990320 diff --git a/misc/kwordquiz/Makefile b/misc/kwordquiz/Makefile index c24595bb0ae5..a436bafd0fc9 100644 --- a/misc/kwordquiz/Makefile +++ b/misc/kwordquiz/Makefile @@ -1,25 +1,24 @@ PORTNAME= kwordquiz DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Flash card trainer for KDE Applications WWW= https://www.kde.org/applications/education/kwordquiz USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets kdeclarative \ kdelibs4support kio libkeduvocdocument newstuff notifications \ notifyconfig parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= core dbus gui network phonon4 printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 7b791afe36b2..0c803ba52cf3 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628659 -SHA256 (KDE/release-service/22.08.0/kwordquiz-22.08.0.tar.xz) = d8e45cab9c7906104bdd6dddf70015cec0f1559afe953cd492675ea1fdfe64c1 -SIZE (KDE/release-service/22.08.0/kwordquiz-22.08.0.tar.xz) = 4216064 +TIMESTAMP = 1662480064 +SHA256 (KDE/release-service/22.08.1/kwordquiz-22.08.1.tar.xz) = 01aaf668c1797d526c779004a2b07809992d97668ae3e3bad2be50e3db03666f +SIZE (KDE/release-service/22.08.1/kwordquiz-22.08.1.tar.xz) = 4216632 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index f2f70cdb4711..e18bbf9e7950 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628657 -SHA256 (KDE/release-service/22.08.0/libkeduvocdocument-22.08.0.tar.xz) = b23d6136e04bea1065e413b619e7bd0ba7944320c29144f46b62a03fff5388c5 -SIZE (KDE/release-service/22.08.0/libkeduvocdocument-22.08.0.tar.xz) = 214776 +TIMESTAMP = 1662480062 +SHA256 (KDE/release-service/22.08.1/libkeduvocdocument-22.08.1.tar.xz) = 7fa5109e16f100b38274091f94694d4aec48faea52d8c3aba860e6f021ee2939 +SIZE (KDE/release-service/22.08.1/libkeduvocdocument-22.08.1.tar.xz) = 214776 diff --git a/misc/parley/Makefile b/misc/parley/Makefile index 803b720a53fd..3527971ef06f 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -1,28 +1,27 @@ PORTNAME= parley DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= misc education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Vocabulary trainer for KDE WWW= https://edu.kde.org/applications/all/parley 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= ice sm x11 xext xrender OPTIONS_DEFINE= DOCS .include diff --git a/misc/parley/distinfo b/misc/parley/distinfo index a14de096e266..a0c703de64e6 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628657 -SHA256 (KDE/release-service/22.08.0/parley-22.08.0.tar.xz) = a58cfa4fa7dd01e307fa7be922922226023c59c12121fc8cb20f90a4b4aeaa17 -SIZE (KDE/release-service/22.08.0/parley-22.08.0.tar.xz) = 8484140 +TIMESTAMP = 1662480062 +SHA256 (KDE/release-service/22.08.1/parley-22.08.1.tar.xz) = 29a97a2357b1eb999a90e78e71fb92cd569e64b17992c75b570beca1c2df24e6 +SIZE (KDE/release-service/22.08.1/parley-22.08.1.tar.xz) = 8484452 diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index e663a4a939d8..739c244d4ab5 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -1,28 +1,27 @@ PORTNAME= dragon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMESUFFIX= -player MAINTAINER= kde@FreeBSD.org COMMENT= KDE multimedia player with a focus on simplicity WWW= https://www.kde.org/applications/multimedia/dragonplayer/ LICENSE= GPLv2 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools kio service sonnet textwidgets i18n \ iconthemes jobwidgets notifications parts solid widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network phonon4 widgets xml \ buildtools_build qmake_build USE_XORG= x11 CONFLICTS_INSTALL= dragon # bin/dragon OPTIONS_DEFINE= DOCS .include diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 17a871ba7f15..c5871674198e 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628469 -SHA256 (KDE/release-service/22.08.0/dragon-22.08.0.tar.xz) = b698b2ea0688511defa84ba4d8be1661e367fe50d3aa4ce08a34f85f9cf480f0 -SIZE (KDE/release-service/22.08.0/dragon-22.08.0.tar.xz) = 1666312 +TIMESTAMP = 1662479868 +SHA256 (KDE/release-service/22.08.1/dragon-22.08.1.tar.xz) = 19ea78de22e98604da8f87338458de4bc79f2b55495aa87c5121245c28f5d9f4 +SIZE (KDE/release-service/22.08.1/dragon-22.08.1.tar.xz) = 1666516 diff --git a/multimedia/kamoso/Makefile b/multimedia/kamoso/Makefile index 27ccc09b5b3f..4f50880e77c8 100644 --- a/multimedia/kamoso/Makefile +++ b/multimedia/kamoso/Makefile @@ -1,27 +1,26 @@ PORTNAME= kamoso DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Application to take pictures and videos out of your webcam WWW= https://userbase.kde.org/Kamoso LICENSE= GPLv2 USES= cmake compiler:c++11-lang gettext gl gnome gstreamer kde:5 \ pkgconfig qt:5 tar:xz xorg USE_GL= gl USE_GNOME= glib20 USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio kirigami2 \ notifications purpose service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative graphicaleffects gui network \ quickcontrols widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index f907a3a03253..64445b05bc81 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628470 -SHA256 (KDE/release-service/22.08.0/kamoso-22.08.0.tar.xz) = 3dc54c94f766f6e51bfd524eefd65c22f551962bb941c801fdf829a2fb9c09cc -SIZE (KDE/release-service/22.08.0/kamoso-22.08.0.tar.xz) = 227272 +TIMESTAMP = 1662479870 +SHA256 (KDE/release-service/22.08.1/kamoso-22.08.1.tar.xz) = 38ddff382910cd74907a286a900033961deaa00aad76a87d241dedf4b251909d +SIZE (KDE/release-service/22.08.1/kamoso-22.08.1.tar.xz) = 227252 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/Makefile b/multimedia/kdemultimedia-ffmpegthumbs/Makefile index 9657ec1cb000..5dd46521e569 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/Makefile +++ b/multimedia/kdemultimedia-ffmpegthumbs/Makefile @@ -1,23 +1,22 @@ PORTNAME= ffmpegthumbs DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMEPREFIX= kdemultimedia- MAINTAINER= kde@FreeBSD.org COMMENT= FFmpeg-based thumbnail generator for video files WWW= https://www.kde.org/ LICENSE= GPLv2 LIB_DEPENDS= libswscale.so:multimedia/ffmpeg \ libtag.so:audio/taglib USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kio service solid \ widgetsaddons windowsystem USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 .include diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index d2e015f53b49..fd37f634e599 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628473 -SHA256 (KDE/release-service/22.08.0/ffmpegthumbs-22.08.0.tar.xz) = 83f41200978b47fad94e0692513abc42d6982e992873cefcff5ffef4deab28ed -SIZE (KDE/release-service/22.08.0/ffmpegthumbs-22.08.0.tar.xz) = 30788 +TIMESTAMP = 1662479872 +SHA256 (KDE/release-service/22.08.1/ffmpegthumbs-22.08.1.tar.xz) = 0d054c276a5f93ba74716c021aa6ed753a05826fab295e1b77c0f910fe634c0c +SIZE (KDE/release-service/22.08.1/ffmpegthumbs-22.08.1.tar.xz) = 30776 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 3f6959d5716a..28ef1985abf6 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628472 -SHA256 (KDE/release-service/22.08.0/kdenlive-22.08.0.tar.xz) = a2639f89fb37759839791a73d6bed4471c131b7f86908937d35d30ada8ac8840 -SIZE (KDE/release-service/22.08.0/kdenlive-22.08.0.tar.xz) = 12427008 +TIMESTAMP = 1662479871 +SHA256 (KDE/release-service/22.08.1/kdenlive-22.08.1.tar.xz) = ca9eff329897c9df699f3a1e5ca56c880116492e1e8d1abe947c9b7e2d60bf40 +SIZE (KDE/release-service/22.08.1/kdenlive-22.08.1.tar.xz) = 12428196 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index c8d5f29ac4c4..eba8fd018217 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628484 -SHA256 (KDE/release-service/22.08.0/kaccounts-integration-22.08.0.tar.xz) = 8e5f85fb916e7cd1544e5c66ec62caaecd1eb34df986291166b36748c6001a76 -SIZE (KDE/release-service/22.08.0/kaccounts-integration-22.08.0.tar.xz) = 88864 +TIMESTAMP = 1662479883 +SHA256 (KDE/release-service/22.08.1/kaccounts-integration-22.08.1.tar.xz) = f4daedc20f94307514086ecfe06558a09511a58c26ca374c7dd3d98983122de0 +SIZE (KDE/release-service/22.08.1/kaccounts-integration-22.08.1.tar.xz) = 88960 diff --git a/net-im/kaccounts-providers/Makefile b/net-im/kaccounts-providers/Makefile index 4ed4898d1ad3..954d5b09cc37 100644 --- a/net-im/kaccounts-providers/Makefile +++ b/net-im/kaccounts-providers/Makefile @@ -1,30 +1,29 @@ PORTNAME= kaccounts-providers DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 11 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= System to administer web accounts for the KDE desktop WWW= https://projects.kde.org/projects/kdereview/kaccounts-providers LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib \ libkaccounts.so:net-im/kaccounts-integration \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libsignon-qt5.so:sysutils/signon-qt5 USES= cmake compiler:c++11-lang gettext gnome kde:5 \ pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= config coreaddons i18n kdeclarative kio package service USE_QT= concurrent core dbus declarative gui location network \ xml webchannel webengine \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS #install to ${LOCALBASE}: pre-configure: ${REINPLACE_CMD} -e 's,/etc,${PREFIX}/etc,' \ ${WRKSRC}/webkit-options/CMakeLists.txt .include diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 8e74edd160d1..ca9b747efa42 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628479 -SHA256 (KDE/release-service/22.08.0/kaccounts-providers-22.08.0.tar.xz) = 9d7121404a0b58d899341e16117f751b7af7e4a26544058cdf748d5935d54eb1 -SIZE (KDE/release-service/22.08.0/kaccounts-providers-22.08.0.tar.xz) = 64616 +TIMESTAMP = 1662479878 +SHA256 (KDE/release-service/22.08.1/kaccounts-providers-22.08.1.tar.xz) = adaede65158dd4158f0789bbede9e213ab7333e9bf6a1c897bca6fb5fc116622 +SIZE (KDE/release-service/22.08.1/kaccounts-providers-22.08.1.tar.xz) = 64592 diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index d948373e3978..0a36e35993ad 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -1,38 +1,37 @@ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE multi-protocol instant messenger WWW= https://apps.kde.org/kopete/ 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 xorg 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 USE_XORG= x11 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 fc31ac5572fd..7fcdbd0ca0f4 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628481 -SHA256 (KDE/release-service/22.08.0/kopete-22.08.0.tar.xz) = 34da299bac98d2440e0bb7019f43552293493531921ce56f66fb57c7ce2a86df -SIZE (KDE/release-service/22.08.0/kopete-22.08.0.tar.xz) = 9665668 +TIMESTAMP = 1662479880 +SHA256 (KDE/release-service/22.08.1/kopete-22.08.1.tar.xz) = 95efa778fdd63227c136775a2c994eb902d5c98ca127373afaaad90db6c33765 +SIZE (KDE/release-service/22.08.1/kopete-22.08.1.tar.xz) = 9666800 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 05cbd4223253..4b325b1b16dc 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628475 -SHA256 (KDE/release-service/22.08.0/ktp-accounts-kcm-22.08.0.tar.xz) = 871fa2f46d634684cb8d8ec5420a81021cc7defbfb6855e49f20bb06b4278646 -SIZE (KDE/release-service/22.08.0/ktp-accounts-kcm-22.08.0.tar.xz) = 266756 +TIMESTAMP = 1662479874 +SHA256 (KDE/release-service/22.08.1/ktp-accounts-kcm-22.08.1.tar.xz) = 54b0416b76c21f1c202e310f6167b3f17bcf3334b54ba5c34b92fccb4390d128 +SIZE (KDE/release-service/22.08.1/ktp-accounts-kcm-22.08.1.tar.xz) = 266812 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index 82bf0d89ed6a..c6d75ca51e52 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628482 -SHA256 (KDE/release-service/22.08.0/ktp-approver-22.08.0.tar.xz) = 43c28a2d1c46a4e061f28d601609f91fc1528e3d6a8a5ff18fd3401f08362ff8 -SIZE (KDE/release-service/22.08.0/ktp-approver-22.08.0.tar.xz) = 38464 +TIMESTAMP = 1662479881 +SHA256 (KDE/release-service/22.08.1/ktp-approver-22.08.1.tar.xz) = d0a48cabe43b1e5efb81d376af25c14a62c6c24d8173166ce2b30fbc03f0a496 +SIZE (KDE/release-service/22.08.1/ktp-approver-22.08.1.tar.xz) = 38464 diff --git a/net-im/ktp-auth-handler/Makefile b/net-im/ktp-auth-handler/Makefile index cabbb3b512e8..6d5bda951a4e 100644 --- a/net-im/ktp-auth-handler/Makefile +++ b/net-im/ktp-auth-handler/Makefile @@ -1,30 +1,29 @@ PORTNAME= ktp-auth-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KWallet integration module for KDE Telepathy WWW= https://community.kde.org/KTp LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration \ libsignon-qt5.so:sysutils/signon-qt5 USES= compiler:c++11-lang cmake gettext kde:5 pkgconfig \ qca qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kdewebkit \ kio wallet service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index a686cfffe4bc..04d91da228b5 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628489 -SHA256 (KDE/release-service/22.08.0/ktp-auth-handler-22.08.0.tar.xz) = 2d4b3c9b967e3d4ac7e8948cd6271037861726893bea5e9b0c41c0b7f7a48cc7 -SIZE (KDE/release-service/22.08.0/ktp-auth-handler-22.08.0.tar.xz) = 48052 +TIMESTAMP = 1662479887 +SHA256 (KDE/release-service/22.08.1/ktp-auth-handler-22.08.1.tar.xz) = f7d345dcd1af30f8317c152664656e769789f23b5e1455a811292c8afabb59eb +SIZE (KDE/release-service/22.08.1/ktp-auth-handler-22.08.1.tar.xz) = 48060 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index 3b6fee8011b4..cbd5c538ef71 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628486 -SHA256 (KDE/release-service/22.08.0/ktp-call-ui-22.08.0.tar.xz) = 60f8b0e665ee2672d960263eaaf3811a5782b7fc14b9971a1cc844962634ed14 -SIZE (KDE/release-service/22.08.0/ktp-call-ui-22.08.0.tar.xz) = 98520 +TIMESTAMP = 1662479884 +SHA256 (KDE/release-service/22.08.1/ktp-call-ui-22.08.1.tar.xz) = 4897d8f4fc9e57a70f93a3d812a32b53a64ca30b312f9a404b02d1ce5c9af2cc +SIZE (KDE/release-service/22.08.1/ktp-call-ui-22.08.1.tar.xz) = 98556 diff --git a/net-im/ktp-common-internals/Makefile b/net-im/ktp-common-internals/Makefile index 597d4e3de342..cdaf8d65d5c5 100644 --- a/net-im/ktp-common-internals/Makefile +++ b/net-im/ktp-common-internals/Makefile @@ -1,38 +1,37 @@ PORTNAME= ktp-common-internals DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Telepathy internal library WWW= https://community.kde.org/KTp LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libsignon-qt5.so:sysutils/signon-qt5 \ libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libotr.so:security/libotr \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration RUN_DEPENDS= ${LOCALBASE}/lib/mission-control-plugins.0/mcp-account-manager-accounts-sso.so:net-im/telepathy-accounts-signon \ ${LOCALBASE}/libexec/mission-control-5:net-im/telepathy-mission-control LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications notifyconfig parts people service solid \ sonnet syntaxhighlighting texteditor textwidgets wallet widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network sql widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 75c2772d48aa..a9b11596f361 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628480 -SHA256 (KDE/release-service/22.08.0/ktp-common-internals-22.08.0.tar.xz) = 89d06d63e482a6b99ac5f0481c9ac1626fea30ff9fb01d79a285d87799f659a8 -SIZE (KDE/release-service/22.08.0/ktp-common-internals-22.08.0.tar.xz) = 451516 +TIMESTAMP = 1662479879 +SHA256 (KDE/release-service/22.08.1/ktp-common-internals-22.08.1.tar.xz) = d30bc46c7e5f3363b40ef836af0ea6d32d33feb6d4dbefee37c12bb808701c96 +SIZE (KDE/release-service/22.08.1/ktp-common-internals-22.08.1.tar.xz) = 451356 diff --git a/net-im/ktp-contact-list/Makefile b/net-im/ktp-contact-list/Makefile index 99395b34b269..6c68edba09cf 100644 --- a/net-im/ktp-contact-list/Makefile +++ b/net-im/ktp-contact-list/Makefile @@ -1,28 +1,27 @@ PORTNAME= ktp-contact-list DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging contact list application WWW= https://community.kde.org/KTp LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals LICENSE= LGPL21+ USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes jobwidgets kcmutils kio \ notifications notifyconfig people service solid wallet widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index b1cd653b8e0d..c8f643d4dfcc 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628487 -SHA256 (KDE/release-service/22.08.0/ktp-contact-list-22.08.0.tar.xz) = ec59a282d6e4982bdf3131aa598401a0ab25879489b915731005e802fd594847 -SIZE (KDE/release-service/22.08.0/ktp-contact-list-22.08.0.tar.xz) = 155632 +TIMESTAMP = 1662479885 +SHA256 (KDE/release-service/22.08.1/ktp-contact-list-22.08.1.tar.xz) = 7c6460865cac0d510cf433dcd45142794fefb429e550a552fe6557d53fc66beb +SIZE (KDE/release-service/22.08.1/ktp-contact-list-22.08.1.tar.xz) = 155772 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index ffcc81dcc308..14948d3ee42c 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628474 -SHA256 (KDE/release-service/22.08.0/ktp-contact-runner-22.08.0.tar.xz) = e572c50cc41dcabbbc53840ef38a70f9b4b1f5b21f657b525e4cdf1646f882bb -SIZE (KDE/release-service/22.08.0/ktp-contact-runner-22.08.0.tar.xz) = 44128 +TIMESTAMP = 1662479873 +SHA256 (KDE/release-service/22.08.1/ktp-contact-runner-22.08.1.tar.xz) = 59d3038bcddd04be98a19fc07d4fdb6df5f61d063357f6d1d4cfc07dc8366339 +SIZE (KDE/release-service/22.08.1/ktp-contact-runner-22.08.1.tar.xz) = 44156 diff --git a/net-im/ktp-desktop-applets/Makefile b/net-im/ktp-desktop-applets/Makefile index fa7807d4c75d..8b7821acc223 100644 --- a/net-im/ktp-desktop-applets/Makefile +++ b/net-im/ktp-desktop-applets/Makefile @@ -1,24 +1,23 @@ PORTNAME= ktp-desktop-applets DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging plasma widgets WWW= https://community.kde.org/KTp LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= plasma-framework windowsystem \ ecm_build USE_QT= core dbus declarative gui network widgets \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index b687b9581723..ccabed26fbcd 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628483 -SHA256 (KDE/release-service/22.08.0/ktp-desktop-applets-22.08.0.tar.xz) = 3add25d3e25fe9cb004c703c793fb3cef476ef4a68ab88e46a4bb8bf53cf125f -SIZE (KDE/release-service/22.08.0/ktp-desktop-applets-22.08.0.tar.xz) = 43752 +TIMESTAMP = 1662479882 +SHA256 (KDE/release-service/22.08.1/ktp-desktop-applets-22.08.1.tar.xz) = 3e1caf4f0ac0513d85da4a26db0085965a600dd0430b8f69df865a71d659369d +SIZE (KDE/release-service/22.08.1/ktp-desktop-applets-22.08.1.tar.xz) = 43748 diff --git a/net-im/ktp-filetransfer-handler/Makefile b/net-im/ktp-filetransfer-handler/Makefile index 301650bb7017..6f2c98c326ce 100644 --- a/net-im/ktp-filetransfer-handler/Makefile +++ b/net-im/ktp-filetransfer-handler/Makefile @@ -1,27 +1,26 @@ PORTNAME= ktp-filetransfer-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer handler WWW= https://community.kde.org/KTp LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio service solid \ wallet widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network xml widgets \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index ee11dc0887b4..696b231ba496 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628477 -SHA256 (KDE/release-service/22.08.0/ktp-filetransfer-handler-22.08.0.tar.xz) = 25a464d388d45e8337d83dde85d6442ff89eb23fcc2dabcc623a2d07a49d1701 -SIZE (KDE/release-service/22.08.0/ktp-filetransfer-handler-22.08.0.tar.xz) = 46668 +TIMESTAMP = 1662479876 +SHA256 (KDE/release-service/22.08.1/ktp-filetransfer-handler-22.08.1.tar.xz) = ee6a45599dbe5b4bd02ac6675bdb16b1a45c1af8224bb9010a3d2f99951e7a21 +SIZE (KDE/release-service/22.08.1/ktp-filetransfer-handler-22.08.1.tar.xz) = 46632 diff --git a/net-im/ktp-kded-module/Makefile b/net-im/ktp-kded-module/Makefile index 6aa31faafe9c..9e7c9a2d9e5c 100644 --- a/net-im/ktp-kded-module/Makefile +++ b/net-im/ktp-kded-module/Makefile @@ -1,26 +1,25 @@ PORTNAME= ktp-kded-module DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Module for integration of instant messaging into KDE Workspaces WWW= https://community.kde.org/KTp LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= activities auth codecs completion config configwidgets coreaddons \ dbusaddons i18n idletime jobwidgets kcmutils kio notifications \ service solid wallet widgetsaddons windowsystem USE_QT= concurrent core dbus gui network sql widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 75ee61d8b329..c64e21be460e 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628488 -SHA256 (KDE/release-service/22.08.0/ktp-kded-module-22.08.0.tar.xz) = 4b192a864a43136cda302e939104c535dbda27e593fcae278449e81bf4667c56 -SIZE (KDE/release-service/22.08.0/ktp-kded-module-22.08.0.tar.xz) = 100464 +TIMESTAMP = 1662479886 +SHA256 (KDE/release-service/22.08.1/ktp-kded-module-22.08.1.tar.xz) = 03938435898f7e2613b59204d957ba57fdaffe8e74447bc88f4bc64f53b6a17b +SIZE (KDE/release-service/22.08.1/ktp-kded-module-22.08.1.tar.xz) = 100608 diff --git a/net-im/ktp-send-file/Makefile b/net-im/ktp-send-file/Makefile index 3fbc806d7e8d..9eb214332261 100644 --- a/net-im/ktp-send-file/Makefile +++ b/net-im/ktp-send-file/Makefile @@ -1,29 +1,28 @@ PORTNAME= ktp-send-file DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE instant messaging file transfer application WWW= https://community.kde.org/KTp LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/lib/libexec/ktp-filetransfer-handler:net-im/ktp-filetransfer-handler \ ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kcmutils kio service solid wallet \ widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index 4b08d80b5c18..25a92abf8cbf 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628478 -SHA256 (KDE/release-service/22.08.0/ktp-send-file-22.08.0.tar.xz) = 560670e2f57e76b4910a34b73ee837109702c3988db5e36812904918771d85cf -SIZE (KDE/release-service/22.08.0/ktp-send-file-22.08.0.tar.xz) = 28868 +TIMESTAMP = 1662479877 +SHA256 (KDE/release-service/22.08.1/ktp-send-file-22.08.1.tar.xz) = 046b43a1795395e5e692cc8aa2ab8d0e9d582d634b23ca40d7c3514fac738da7 +SIZE (KDE/release-service/22.08.1/ktp-send-file-22.08.1.tar.xz) = 28868 diff --git a/net-im/ktp-text-ui/Makefile b/net-im/ktp-text-ui/Makefile index a8f045e6e9a8..a6bded6c509d 100644 --- a/net-im/ktp-text-ui/Makefile +++ b/net-im/ktp-text-ui/Makefile @@ -1,33 +1,32 @@ PORTNAME= ktp-text-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE chat window application WWW= https://community.kde.org/KTp LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes itemviews jobwidgets \ kcmutils kdewebkit kio notifications notifyconfig people \ service solid sonnet textwidgets wallet widgetsaddons windowsystem \ xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui location network \ printsupport speech webchannel webengine widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 36b8f99d6259..10011d71d5be 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628476 -SHA256 (KDE/release-service/22.08.0/ktp-text-ui-22.08.0.tar.xz) = 8dc2d59925e61761cb562fcc927694bb7fe0ec90ef3fd2d632c954f600b85805 -SIZE (KDE/release-service/22.08.0/ktp-text-ui-22.08.0.tar.xz) = 475124 +TIMESTAMP = 1662479875 +SHA256 (KDE/release-service/22.08.1/ktp-text-ui-22.08.1.tar.xz) = 4e73b385b1c6b1eac961d872e0cc8dd7a790710dc52031d47c965332375905ea +SIZE (KDE/release-service/22.08.1/ktp-text-ui-22.08.1.tar.xz) = 475048 diff --git a/net-p2p/ktorrent/Makefile b/net-p2p/ktorrent/Makefile index dfdcb2b22dee..aafd7840a3ef 100644 --- a/net-p2p/ktorrent/Makefile +++ b/net-p2p/ktorrent/Makefile @@ -1,49 +1,48 @@ PORTNAME= ktorrent DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-p2p kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BitTorrent client for KDE WWW= https://kde.org/applications/en/internet/org.kde.ktorrent CONFLICTS_BUILD= libtorrent BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs LIB_DEPENDS= libKF5Torrent.so:net-p2p/libktorrent \ libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libtag.so:audio/taglib USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd i18n iconthemes itemviews \ jobwidgets kcmutils kio kross notifications \ notifyconfig parts plotting service \ solid sonnet syndication textwidgets widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ script webchannel widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS WORKSPACE OPTIONS_DEFAULT= WORKSPACE OPTIONS_SUB= yes WORKSPACE_USE= KDE=plasma-workspace WORKSPACE_DESC= Shutdown on completion support WORKSPACE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibKWorkspace .include .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 PLIST_SUB+= WEBENGINE="" USE_QT+= webengine .else PLIST_SUB+= WEBENGINE="@comment " .endif .include diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 6e905ba5cbf0..3950f3758492 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628535 -SHA256 (KDE/release-service/22.08.0/ktorrent-22.08.0.tar.xz) = 3d8347e9ed6655087707b44e9ba719ef3c75bf71f96625180f56f34d24beeca4 -SIZE (KDE/release-service/22.08.0/ktorrent-22.08.0.tar.xz) = 2055088 +TIMESTAMP = 1662479935 +SHA256 (KDE/release-service/22.08.1/ktorrent-22.08.1.tar.xz) = 82dfd3a1e96de1ded8a228f8a12f1e46fab33e5951ecf080e8166128274636b6 +SIZE (KDE/release-service/22.08.1/ktorrent-22.08.1.tar.xz) = 2055132 diff --git a/net-p2p/libktorrent/Makefile b/net-p2p/libktorrent/Makefile index 7e4b47ae1b6e..9fc374696681 100644 --- a/net-p2p/libktorrent/Makefile +++ b/net-p2p/libktorrent/Makefile @@ -1,24 +1,23 @@ PORTNAME= libktorrent DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net-p2p kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Torrent library from KTorrent project WWW= https://ktorrent.org/ BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp USES= cmake compiler:c++11-lang gettext kde:5 qca qt:5 tar:xz xorg USE_KDE= archive completion config coreaddons crash i18n \ jobwidgets kio service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 7eb4d78327ed..b502323189ec 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628534 -SHA256 (KDE/release-service/22.08.0/libktorrent-22.08.0.tar.xz) = de14deb94699463deba45ffaf271d6c2983b0838bd8f170247e18c41d7026dfe -SIZE (KDE/release-service/22.08.0/libktorrent-22.08.0.tar.xz) = 595492 +TIMESTAMP = 1662479934 +SHA256 (KDE/release-service/22.08.1/libktorrent-22.08.1.tar.xz) = ab95409cbaae40d411b6ee27b2d7c2ab58d1a032a32b7f9bb97cebafe9da553f +SIZE (KDE/release-service/22.08.1/libktorrent-22.08.1.tar.xz) = 595436 diff --git a/net/akonadi-calendar/Makefile b/net/akonadi-calendar/Makefile index 03aec0634e24..bc912289dd14 100644 --- a/net/akonadi-calendar/Makefile +++ b/net/akonadi-calendar/Makefile @@ -1,30 +1,29 @@ PORTNAME= akonadi-calendar DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Akonadi Calendar Integration LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons kdelibs4support i18n iconthemes itemmodels \ jobwidgets kio notifications service solid wallet \ widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadimime calendarcore calendarutils \ contacts grantleetheme identitymanagement mailtransport mime pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 9433f5c77f44..ff9984eb7ab8 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628690 -SHA256 (KDE/release-service/22.08.0/akonadi-calendar-22.08.0.tar.xz) = 58c975c7addc53be6b0eb07e2e4f8cb3091991bb505bce824acf0072e5e9b32f -SIZE (KDE/release-service/22.08.0/akonadi-calendar-22.08.0.tar.xz) = 394632 +TIMESTAMP = 1662480104 +SHA256 (KDE/release-service/22.08.1/akonadi-calendar-22.08.1.tar.xz) = 6547cdf8d13d095fe95828f0d7f17cbab6c3e14c3e0454f502380b7fe3a496f5 +SIZE (KDE/release-service/22.08.1/akonadi-calendar-22.08.1.tar.xz) = 394932 diff --git a/net/akonadi-contacts/Makefile b/net/akonadi-contacts/Makefile index b62fd39ecb3d..26442ae4e4b2 100644 --- a/net/akonadi-contacts/Makefile +++ b/net/akonadi-contacts/Makefile @@ -1,33 +1,32 @@ 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 xorg 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_XORG= x11 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 1f706b87886e..9c591b39a8b5 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628692 -SHA256 (KDE/release-service/22.08.0/akonadi-contacts-22.08.0.tar.xz) = 9f9ae62a3e6abd57136d2311906dfa252eb09b816260b85609cd9b625fbff3da -SIZE (KDE/release-service/22.08.0/akonadi-contacts-22.08.0.tar.xz) = 427236 +TIMESTAMP = 1662480107 +SHA256 (KDE/release-service/22.08.1/akonadi-contacts-22.08.1.tar.xz) = 48704925b418a41dfa2d2910d3be51215e6409854fd0be5c2f23284e44d8f4d7 +SIZE (KDE/release-service/22.08.1/akonadi-contacts-22.08.1.tar.xz) = 427276 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 1ec885ce9e7c..41b88ee19544 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628701 -SHA256 (KDE/release-service/22.08.0/akonadi-mime-22.08.0.tar.xz) = a7f9a27e60694d352da3ca31f5c24ea70377ef8536c09b8d1ffd7bc5ca63040b -SIZE (KDE/release-service/22.08.0/akonadi-mime-22.08.0.tar.xz) = 149604 +TIMESTAMP = 1662480115 +SHA256 (KDE/release-service/22.08.1/akonadi-mime-22.08.1.tar.xz) = 807f9265be361d99fa90a41de93faaf97845ecfaf9f84472f9f4fb09f7748ba7 +SIZE (KDE/release-service/22.08.1/akonadi-mime-22.08.1.tar.xz) = 149736 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index ab519b6d9ec6..7e6044212f7c 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628668 -SHA256 (KDE/release-service/22.08.0/akonadi-notes-22.08.0.tar.xz) = 50be94c51314272b70990a16d8d6a46e1a2d4b698c51233c2d4a2360ce596743 -SIZE (KDE/release-service/22.08.0/akonadi-notes-22.08.0.tar.xz) = 27412 +TIMESTAMP = 1662480079 +SHA256 (KDE/release-service/22.08.1/akonadi-notes-22.08.1.tar.xz) = 9c1fdcf66d9987f0b1573c2a98db1ec6c9fbc92964e749e848bd12ae023c5d17 +SIZE (KDE/release-service/22.08.1/akonadi-notes-22.08.1.tar.xz) = 27420 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index d5c6dd03803a..7d551384ad41 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628675 -SHA256 (KDE/release-service/22.08.0/akonadi-search-22.08.0.tar.xz) = efe53a3ab0316bf9a0e5812fcc80acff7d7531525957d17ac2aa03d689ef53d5 -SIZE (KDE/release-service/22.08.0/akonadi-search-22.08.0.tar.xz) = 99960 +TIMESTAMP = 1662480091 +SHA256 (KDE/release-service/22.08.1/akonadi-search-22.08.1.tar.xz) = cfed563b70da2ba9dd648e0717d6cfd2fb33bb9fc82dabb7a340afd369595719 +SIZE (KDE/release-service/22.08.1/akonadi-search-22.08.1.tar.xz) = 100092 diff --git a/net/calendarsupport/Makefile b/net/calendarsupport/Makefile index e31a83e9354b..058205883ae1 100644 --- a/net/calendarsupport/Makefile +++ b/net/calendarsupport/Makefile @@ -1,31 +1,30 @@ PORTNAME= calendarsupport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar support libraries for KDEPim WWW= https://github.com/KDE/calendarsupport LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ guiaddons i18n iconthemes itemmodels jobwidgets kio service \ solid widgetsaddons windowsystem \ ecm_build # pim components USE_KDE+= akonadi akonadicalendar akonadinotes calendarcore calendarutils \ holidays identitymanagement mime pimcommon \ pimtextedit USE_QT= concurrent core dbus gui network printsupport uitools \ widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 7ee4c47a3262..ac82692a8287 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628696 -SHA256 (KDE/release-service/22.08.0/calendarsupport-22.08.0.tar.xz) = 3d63ad9edf77f5d3427a687075b7c23e314cc33bf2c634ec6b68767c1561e00b -SIZE (KDE/release-service/22.08.0/calendarsupport-22.08.0.tar.xz) = 751184 +TIMESTAMP = 1662480111 +SHA256 (KDE/release-service/22.08.1/calendarsupport-22.08.1.tar.xz) = 778cdcab835005ab3dcd0ee5a0f4f35342ffcc0ab3d0168d5eb5f9c97009da25 +SIZE (KDE/release-service/22.08.1/calendarsupport-22.08.1.tar.xz) = 751516 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 580e629ed191..d06225df4018 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628695 -SHA256 (KDE/release-service/22.08.0/eventviews-22.08.0.tar.xz) = 5261d83ae2025d4508ca49d988a9b7ff32aafeb9ccd5ccd9edb5ee0467351e92 -SIZE (KDE/release-service/22.08.0/eventviews-22.08.0.tar.xz) = 460000 +TIMESTAMP = 1662480110 +SHA256 (KDE/release-service/22.08.1/eventviews-22.08.1.tar.xz) = a13c67556d627a4428b3f65046a89c4c2fe755aa44c2eac92f081702d46e712e +SIZE (KDE/release-service/22.08.1/eventviews-22.08.1.tar.xz) = 461660 diff --git a/net/incidenceeditor/Makefile b/net/incidenceeditor/Makefile index 04c930ffbc15..6ac208774998 100644 --- a/net/incidenceeditor/Makefile +++ b/net/incidenceeditor/Makefile @@ -1,33 +1,32 @@ PORTNAME= incidenceeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Incidence editor libriares for KDEPim WWW= https://github.com/KDE/mailcommon LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libKGantt.so:graphics/kdiagram USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes itemmodels jobwidgets kio service solid sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime calendarcore \ calendarsupport calendarutils contacts eventviews grantleetheme \ identitymanagement imap ldap libkdepim mailtransport mime pimcommon \ pimtextedit USE_QT= concurrent core dbus gui network printsupport uitools \ webkit widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 1786b5708c79..37814a3f1a16 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628671 -SHA256 (KDE/release-service/22.08.0/incidenceeditor-22.08.0.tar.xz) = 56a8c7650c019a8eda4f81830b6c3dc658441abe18b6f9a6b89db3048147f81f -SIZE (KDE/release-service/22.08.0/incidenceeditor-22.08.0.tar.xz) = 560092 +TIMESTAMP = 1662480086 +SHA256 (KDE/release-service/22.08.1/incidenceeditor-22.08.1.tar.xz) = 960e3020b5b5fd0c52330a40e12ba3858c8cd739bb3c06ff4dc7aed92fbecbfe +SIZE (KDE/release-service/22.08.1/incidenceeditor-22.08.1.tar.xz) = 560176 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 5e400a17b32b..4c5a6c2f13a0 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628678 -SHA256 (KDE/release-service/22.08.0/kcalutils-22.08.0.tar.xz) = 78f046ca90f2d07d2639e551a3b54c94e4f3d254c456b974ccdaf2c4378a3199 -SIZE (KDE/release-service/22.08.0/kcalutils-22.08.0.tar.xz) = 348396 +TIMESTAMP = 1662480094 +SHA256 (KDE/release-service/22.08.1/kcalutils-22.08.1.tar.xz) = f83b2eafa7e1929b10433dc752226ec4d7a875e2153f14d422e1d233ac6645f8 +SIZE (KDE/release-service/22.08.1/kcalutils-22.08.1.tar.xz) = 348452 diff --git a/net/kdenetwork-filesharing/Makefile b/net/kdenetwork-filesharing/Makefile index 0ac4ab958ff2..5220311b9a98 100644 --- a/net/kdenetwork-filesharing/Makefile +++ b/net/kdenetwork-filesharing/Makefile @@ -1,19 +1,18 @@ PORTNAME= kdenetwork-filesharing DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Filesharing via Samba USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth completion config coreaddons doctools i18n jobwidgets \ kdeclarative kio package service solid widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus declarative gui network widgets \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 74e2bf8d49b4..c021df99b1d8 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628700 -SHA256 (KDE/release-service/22.08.0/kdenetwork-filesharing-22.08.0.tar.xz) = 018fc1cbcc19d62957224a959d07b4f299723848244fbbb355ab31416e7dd377 -SIZE (KDE/release-service/22.08.0/kdenetwork-filesharing-22.08.0.tar.xz) = 378476 +TIMESTAMP = 1662480114 +SHA256 (KDE/release-service/22.08.1/kdenetwork-filesharing-22.08.1.tar.xz) = 81647131402fddde2b3372d3f10d5e6a9025d48dbe9a48495bb0732ae9ae8588 +SIZE (KDE/release-service/22.08.1/kdenetwork-filesharing-22.08.1.tar.xz) = 378540 diff --git a/net/kget/Makefile b/net/kget/Makefile index 448af9a12151..1fc34ee00b66 100644 --- a/net/kget/Makefile +++ b/net/kget/Makefile @@ -1,46 +1,45 @@ PORTNAME= kget DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 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 xorg 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_XORG= x11 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 756ef05085a8..b9361f3a6979 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628680 -SHA256 (KDE/release-service/22.08.0/kget-22.08.0.tar.xz) = b0bb316b637b6d5da11b58d30b8377d9bb5626476e86a52d3cc5e463f3d40441 -SIZE (KDE/release-service/22.08.0/kget-22.08.0.tar.xz) = 5443680 +TIMESTAMP = 1662480095 +SHA256 (KDE/release-service/22.08.1/kget-22.08.1.tar.xz) = 02a2ebbda976d9314b86635fbb64ca944a22dc90e64a34974925820f0f50fe8e +SIZE (KDE/release-service/22.08.1/kget-22.08.1.tar.xz) = 5443672 diff --git a/net/kidentitymanagement/Makefile b/net/kidentitymanagement/Makefile index 04682069dde8..35c762971a76 100644 --- a/net/kidentitymanagement/Makefile +++ b/net/kidentitymanagement/Makefile @@ -1,27 +1,26 @@ PORTNAME= kidentitymanagement DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE pim identities LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n init itemmodels itemviews jobwidgets \ kdelibs4support kio service solid widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 2b421e563e89..6e372a54dc6e 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628702 -SHA256 (KDE/release-service/22.08.0/kidentitymanagement-22.08.0.tar.xz) = 08e69982140b090a56b16500725897187e4e07037287911ddd86e1bc17b2d979 -SIZE (KDE/release-service/22.08.0/kidentitymanagement-22.08.0.tar.xz) = 159740 +TIMESTAMP = 1662480116 +SHA256 (KDE/release-service/22.08.1/kidentitymanagement-22.08.1.tar.xz) = 22a57afbf3d399b6bca40f98134e3f75c609c3f9a47195206dc46d6a2662e6c0 +SIZE (KDE/release-service/22.08.1/kidentitymanagement-22.08.1.tar.xz) = 159764 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 6982a46b09db..9def8c437378 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628682 -SHA256 (KDE/release-service/22.08.0/kimap-22.08.0.tar.xz) = ac762cb1e1f2f63642520c2e11635206b51354f0c1a16a506409cd51f399afed -SIZE (KDE/release-service/22.08.0/kimap-22.08.0.tar.xz) = 130284 +TIMESTAMP = 1662480097 +SHA256 (KDE/release-service/22.08.1/kimap-22.08.1.tar.xz) = 10e108f9ace870d96f8c445d3523d5c5c0ee9ed74268981791fa834bf9e77ca8 +SIZE (KDE/release-service/22.08.1/kimap-22.08.1.tar.xz) = 130308 diff --git a/net/kio-gdrive/Makefile b/net/kio-gdrive/Makefile index 01187a5bacd2..0e008dd9cb22 100644 --- a/net/kio-gdrive/Makefile +++ b/net/kio-gdrive/Makefile @@ -1,29 +1,28 @@ PORTNAME= kio-gdrive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE IOSlave for accessing gdrive WWW= https://www.kde.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqt5keychain.so:security/qtkeychain@qt5 \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration RUN_DEPENDS= kaccounts-providers>=0:net-im/kaccounts-providers USES= cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= completion config coreaddons i18n jobwidgets kio \ notifications service solid widgetsaddons windowsystem \ gapi \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index f8d0bf154a9f..052f552c79a5 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628679 -SHA256 (KDE/release-service/22.08.0/kio-gdrive-22.08.0.tar.xz) = 77d72d8f0b4faa4aa3791413d16f959d2df5aab4a4e4a73a79b84426e9ee3775 -SIZE (KDE/release-service/22.08.0/kio-gdrive-22.08.0.tar.xz) = 73148 +TIMESTAMP = 1662480094 +SHA256 (KDE/release-service/22.08.1/kio-gdrive-22.08.1.tar.xz) = 317635b45fc6af563d81d7136a42a700596cd526badc618cf3a0fbf8a31ebaa6 +SIZE (KDE/release-service/22.08.1/kio-gdrive-22.08.1.tar.xz) = 73136 diff --git a/net/kio-zeroconf/Makefile b/net/kio-zeroconf/Makefile index 5657b65a4bc9..0d848d543b86 100644 --- a/net/kio-zeroconf/Makefile +++ b/net/kio-zeroconf/Makefile @@ -1,17 +1,16 @@ PORTNAME= kio-zeroconf DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Network monitor for DNS-SD services (Zeroconf) USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons dbusaddons dnssd i18n kio service USE_QT= concurrent core dbus network \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 6203f150672c..870258d5398a 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628684 -SHA256 (KDE/release-service/22.08.0/kio-zeroconf-22.08.0.tar.xz) = 5ab27cab3f334b321be202b9bd860e43ff1f6580195e5614c4bc6cf501195288 -SIZE (KDE/release-service/22.08.0/kio-zeroconf-22.08.0.tar.xz) = 39496 +TIMESTAMP = 1662480099 +SHA256 (KDE/release-service/22.08.1/kio-zeroconf-22.08.1.tar.xz) = 91fe4ed8a8b4c3bb837b1194b9952bc5c284be1d85a32f6c27a9e34b73b7b7a5 +SIZE (KDE/release-service/22.08.1/kio-zeroconf-22.08.1.tar.xz) = 39508 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index 238a8b338d9b..19bbd4ef6cbc 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -1,30 +1,29 @@ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 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 codecs 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 abe643e3a311..92eff3791555 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628689 -SHA256 (KDE/release-service/22.08.0/kitinerary-22.08.0.tar.xz) = 2fd35f322c48723b61c98006a2d10010eaf528360f93971d11d07d35168133cb -SIZE (KDE/release-service/22.08.0/kitinerary-22.08.0.tar.xz) = 1688912 +TIMESTAMP = 1662480103 +SHA256 (KDE/release-service/22.08.1/kitinerary-22.08.1.tar.xz) = 43fb0897ec452204b175b80ce884fc4ca3660605e4288ff5769bc81a93f5ddce +SIZE (KDE/release-service/22.08.1/kitinerary-22.08.1.tar.xz) = 1689756 diff --git a/net/kldap/Makefile b/net/kldap/Makefile index 07f9be6ce654..76eec80cacc1 100644 --- a/net/kldap/Makefile +++ b/net/kldap/Makefile @@ -1,28 +1,27 @@ PORTNAME= kldap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LDAP access API for KDE LICENSE= LGPL21 LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ libqt5keychain.so:security/qtkeychain@qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons i18n kio widgetsaddons service \ ecm_build # pim components USE_KDE+= mbox USE_QT= concurrent core dbus gui network widgets \ buildtools_build qmake_build USE_OPENLDAP= yes USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 8336855d0da5..8caeaaae2273 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628691 -SHA256 (KDE/release-service/22.08.0/kldap-22.08.0.tar.xz) = bb4e0ede2c56068dfc12ce82924120a42eb7242af81cfe153df44261e87e4a10 -SIZE (KDE/release-service/22.08.0/kldap-22.08.0.tar.xz) = 173020 +TIMESTAMP = 1662480106 +SHA256 (KDE/release-service/22.08.1/kldap-22.08.1.tar.xz) = 34a2526db98557af35184d207484891bb1fba0bd89ff989d58588b9646721b43 +SIZE (KDE/release-service/22.08.1/kldap-22.08.1.tar.xz) = 173056 diff --git a/net/kmailtransport/Makefile b/net/kmailtransport/Makefile index 320bcb37c865..12e51dbf86e9 100644 --- a/net/kmailtransport/Makefile +++ b/net/kmailtransport/Makefile @@ -1,29 +1,28 @@ PORTNAME= kmailtransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library to managing mail transport LICENSE= LGPL21 LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ libqt5keychain.so:security/qtkeychain@qt5 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ itemmodels jobwidgets kcmutils kio service solid wallet \ widgetsaddons windowsystem # pim components USE_KDE+= akonadi akonadimime gapi ksmtp mime pimcommon USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index f857b9ca1158..915f8b014d4b 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628694 -SHA256 (KDE/release-service/22.08.0/kmailtransport-22.08.0.tar.xz) = 20cb6b180e6ba7b4a07987ffb2077edc0b83958cc7506e93ecf1ca50b785557f -SIZE (KDE/release-service/22.08.0/kmailtransport-22.08.0.tar.xz) = 177880 +TIMESTAMP = 1662480109 +SHA256 (KDE/release-service/22.08.1/kmailtransport-22.08.1.tar.xz) = afa5039bb8ced87be14428bcbf78d4ad08566cbcb0ebea388ffe2937430d0d42 +SIZE (KDE/release-service/22.08.1/kmailtransport-22.08.1.tar.xz) = 178036 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index d45f6c81878d..80c7d51108a6 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628688 -SHA256 (KDE/release-service/22.08.0/kmbox-22.08.0.tar.xz) = 298d1b625f61f3810529d214f77bc20c77e2fed2d2f017d1c68e86644a203c53 -SIZE (KDE/release-service/22.08.0/kmbox-22.08.0.tar.xz) = 28832 +TIMESTAMP = 1662480102 +SHA256 (KDE/release-service/22.08.1/kmbox-22.08.1.tar.xz) = d7d49aed9288a69d3a5762f8e6529cd808e798b7fb935212ad1090ee1fee8958 +SIZE (KDE/release-service/22.08.1/kmbox-22.08.1.tar.xz) = 28852 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index ad496b1a344c..0482b09bc6c8 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628673 -SHA256 (KDE/release-service/22.08.0/kmime-22.08.0.tar.xz) = a69b64da138f2fee2ad084b607f014a7da8f6d3a5ce3ed1f47844c3d0869acfa -SIZE (KDE/release-service/22.08.0/kmime-22.08.0.tar.xz) = 156296 +TIMESTAMP = 1662480088 +SHA256 (KDE/release-service/22.08.1/kmime-22.08.1.tar.xz) = 0456cbdcec1d6e92147f4688ceb974b0ddee15bad68aee50a785313b067fe5ef +SIZE (KDE/release-service/22.08.1/kmime-22.08.1.tar.xz) = 156412 diff --git a/net/kontactinterface/Makefile b/net/kontactinterface/Makefile index 0d3f393e3cd3..6a7280390a55 100644 --- a/net/kontactinterface/Makefile +++ b/net/kontactinterface/Makefile @@ -1,26 +1,25 @@ PORTNAME= kontactinterface DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE glue for embedding KParts into Kontact LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 83924aa21ef0..8a55b236fe5d 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628674 -SHA256 (KDE/release-service/22.08.0/kontactinterface-22.08.0.tar.xz) = 83eac5da93cd052b2ff413a0a261fc1b15f4a54afa00ecb0e97bb77625d189c8 -SIZE (KDE/release-service/22.08.0/kontactinterface-22.08.0.tar.xz) = 40476 +TIMESTAMP = 1662480090 +SHA256 (KDE/release-service/22.08.1/kontactinterface-22.08.1.tar.xz) = da11284a0808c1c2cacc32b261250da89b916251b894ea4e3d1f4961c464ec48 +SIZE (KDE/release-service/22.08.1/kontactinterface-22.08.1.tar.xz) = 40512 diff --git a/net/kpimtextedit/Makefile b/net/kpimtextedit/Makefile index 734af221337e..9eeb4135c6ca 100644 --- a/net/kpimtextedit/Makefile +++ b/net/kpimtextedit/Makefile @@ -1,26 +1,25 @@ PORTNAME= kpimtextedit DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for PIM-specific text editing utilities LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio service solid sonnet syntaxhighlighting textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network speech widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 08bd4f97d42e..8648eef25916 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628697 -SHA256 (KDE/release-service/22.08.0/kpimtextedit-22.08.0.tar.xz) = 238d15ea40d43a4fa840eec1bf93dc153863c7e32c2096ce684e8977dc1a097e -SIZE (KDE/release-service/22.08.0/kpimtextedit-22.08.0.tar.xz) = 216192 +TIMESTAMP = 1662480112 +SHA256 (KDE/release-service/22.08.1/kpimtextedit-22.08.1.tar.xz) = 81af87db01b217d216e3a9e1022f3b477fad7c826f092014dcb66b8dafa6adb7 +SIZE (KDE/release-service/22.08.1/kpimtextedit-22.08.1.tar.xz) = 216188 diff --git a/net/krdc/Makefile b/net/krdc/Makefile index b3f62d034369..0d247605984f 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -1,35 +1,34 @@ PORTNAME= krdc DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= RDP and VNC client for KDE WWW= https://kde.org/applications/internet/krdc/ LIB_DEPENDS= libvncserver.so:net/libvncserver \ libssh.so:security/libssh USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dnssd doctools i18n iconthemes kcmutils \ notifications notifyconfig service wallet widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes CMAKE_ON= WITH_VNC OPTIONS_DEFINE= FREERDP DOCS OPTIONS_DEFAULT= FREERDP OPTIONS_SUB= yes FREERDP_CMAKE_BOOL= WITH_FREERDP FREERDP_DESC= Remote Desktop support via FreeRDP FREERDP_BUILD_DEPENDS= xfreerdp:net/freerdp FREERDP_RUN_DEPENDS= xfreerdp:net/freerdp .include diff --git a/net/krdc/distinfo b/net/krdc/distinfo index ff385668badb..f138e028f372 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628681 -SHA256 (KDE/release-service/22.08.0/krdc-22.08.0.tar.xz) = 8cf3feab48df179ecd6ead20fc10de4c27cf8a833617258ff1c064ac1f295c67 -SIZE (KDE/release-service/22.08.0/krdc-22.08.0.tar.xz) = 1576880 +TIMESTAMP = 1662480096 +SHA256 (KDE/release-service/22.08.1/krdc-22.08.1.tar.xz) = 060067a775ea5eac3562e1216f56e578e602f6839bd6ac98ef9d5bd97139b912 +SIZE (KDE/release-service/22.08.1/krdc-22.08.1.tar.xz) = 1576876 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 59cdd2b7a673..686ae51d514e 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628683 -SHA256 (KDE/release-service/22.08.0/krfb-22.08.0.tar.xz) = dea3751559a07b2ecbdf164f5287221202faf12eb307f52c0df89be426964b04 -SIZE (KDE/release-service/22.08.0/krfb-22.08.0.tar.xz) = 1295968 +TIMESTAMP = 1662480098 +SHA256 (KDE/release-service/22.08.1/krfb-22.08.1.tar.xz) = 452b5ce2092b6e0c6d9271eb7e27a417fd4d9e324e8a0ac7ecf5f7706b3b6b9d +SIZE (KDE/release-service/22.08.1/krfb-22.08.1.tar.xz) = 1295960 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 7ad50520d002..1e8fc2483430 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628685 -SHA256 (KDE/release-service/22.08.0/ksmtp-22.08.0.tar.xz) = 3f89256eca09d81e537e86a0dbaf31376ab576e118fb0306b1b5af0beb5b5137 -SIZE (KDE/release-service/22.08.0/ksmtp-22.08.0.tar.xz) = 49052 +TIMESTAMP = 1662480100 +SHA256 (KDE/release-service/22.08.1/ksmtp-22.08.1.tar.xz) = 839ed297add363d09022e2a576750ed303c91d4a929b7207caa3c69b46b6cb8f +SIZE (KDE/release-service/22.08.1/ksmtp-22.08.1.tar.xz) = 49092 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 745081bfb548..213b2b21964a 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628669 -SHA256 (KDE/release-service/22.08.0/ktnef-22.08.0.tar.xz) = 93ba86e0e9b39529adb86c157a7b9b615570f75f4d1a758da9a953c8c0c75513 -SIZE (KDE/release-service/22.08.0/ktnef-22.08.0.tar.xz) = 303772 +TIMESTAMP = 1662480082 +SHA256 (KDE/release-service/22.08.1/ktnef-22.08.1.tar.xz) = c61b1ecc06c3a0f6d042bb2035cd70d496706b95d0b2173b2797e4462ad02c17 +SIZE (KDE/release-service/22.08.1/ktnef-22.08.1.tar.xz) = 303944 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 398b228e6c11..64ff2bf5b677 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628667 -SHA256 (KDE/release-service/22.08.0/libgravatar-22.08.0.tar.xz) = fd0389bee470abd6ca0cba998e46e9546f1eb82bdff6815de24f821f49ae96e0 -SIZE (KDE/release-service/22.08.0/libgravatar-22.08.0.tar.xz) = 35944 +TIMESTAMP = 1662480076 +SHA256 (KDE/release-service/22.08.1/libgravatar-22.08.1.tar.xz) = 2c932cf5740dea0d1a59fe8eccdec2f565f3b032a5e292a92b3673fc04ed15fa +SIZE (KDE/release-service/22.08.1/libgravatar-22.08.1.tar.xz) = 35932 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index cec7e737fd56..5d7f03328497 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628676 -SHA256 (KDE/release-service/22.08.0/libkgapi-22.08.0.tar.xz) = ed836ea573b5bd8563f926cc2893069cd3c72c4c2d3973f7913bfcd000e2193a -SIZE (KDE/release-service/22.08.0/libkgapi-22.08.0.tar.xz) = 242504 +TIMESTAMP = 1662480092 +SHA256 (KDE/release-service/22.08.1/libkgapi-22.08.1.tar.xz) = 6a020fd01633256c2ba1383a2267b595173b9f6f72806fc9f5fc18ba6a20a418 +SIZE (KDE/release-service/22.08.1/libkgapi-22.08.1.tar.xz) = 242524 diff --git a/net/libksieve/Makefile b/net/libksieve/Makefile index c2ef68964fac..be629d39419c 100644 --- a/net/libksieve/Makefile +++ b/net/libksieve/Makefile @@ -1,32 +1,31 @@ PORTNAME= libksieve DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Sieve libriares for KDEPim LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio newstuff service \ solid sonnet syntaxhighlighting wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi identitymanagement libkdepim mailtransport 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_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 7f90a996bf49..93f556b9cde4 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628693 -SHA256 (KDE/release-service/22.08.0/libksieve-22.08.0.tar.xz) = 7b06a87a4180e0331cb2fdbcc1126ff0c6ea208b2cefa47213bbd4fcf26635db -SIZE (KDE/release-service/22.08.0/libksieve-22.08.0.tar.xz) = 576924 +TIMESTAMP = 1662480108 +SHA256 (KDE/release-service/22.08.1/libksieve-22.08.1.tar.xz) = 66da3cd852c8755fe4b03bc28ab3665082e2e21c80f8416b1bd5a78eba7c41c5 +SIZE (KDE/release-service/22.08.1/libksieve-22.08.1.tar.xz) = 576896 diff --git a/net/mailcommon/Makefile b/net/mailcommon/Makefile index a08992ea10b8..ced308aaecbc 100644 --- a/net/mailcommon/Makefile +++ b/net/mailcommon/Makefile @@ -1,37 +1,36 @@ PORTNAME= mailcommon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Common libriares for KDEPim WWW= https://github.com/KDE/mailcommon 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 grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ guiaddons 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_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index c32659d65051..f0a4eca71015 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628698 -SHA256 (KDE/release-service/22.08.0/mailcommon-22.08.0.tar.xz) = 097fd928b8cf7c3b59018777ae0fdbdc38c03e69eb60794e2fb4dc5c99835dad -SIZE (KDE/release-service/22.08.0/mailcommon-22.08.0.tar.xz) = 743692 +TIMESTAMP = 1662480113 +SHA256 (KDE/release-service/22.08.1/mailcommon-22.08.1.tar.xz) = b248f6a0bcec5462a79a18c18ed67de73f9f56f12a9b27d98314952b2473f6d2 +SIZE (KDE/release-service/22.08.1/mailcommon-22.08.1.tar.xz) = 745480 diff --git a/net/mailimporter/Makefile b/net/mailimporter/Makefile index d79f20c2b68f..b4500437c4cd 100644 --- a/net/mailimporter/Makefile +++ b/net/mailimporter/Makefile @@ -1,27 +1,26 @@ PORTNAME= mailimporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Import mbox files to KMail LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth archive codecs config configwidgets coreaddons i18n itemmodels \ kio service widgetsaddons \ ecm_build # pim components USE_KDE+= akonadi akonadimime libkdepim mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network uitools widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index e2369d944580..42eb41312f45 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628677 -SHA256 (KDE/release-service/22.08.0/mailimporter-22.08.0.tar.xz) = e05fcce62a9bcd8b8139e7c1b5f44720c7a7a876f005d14aedc94c253c27ff70 -SIZE (KDE/release-service/22.08.0/mailimporter-22.08.0.tar.xz) = 559488 +TIMESTAMP = 1662480093 +SHA256 (KDE/release-service/22.08.1/mailimporter-22.08.1.tar.xz) = 29e676f104443b68a74b4b58f30a37fe0cf742e4dd2b44d81847c2cd9ee2efcc +SIZE (KDE/release-service/22.08.1/mailimporter-22.08.1.tar.xz) = 559528 diff --git a/net/messagelib/Makefile b/net/messagelib/Makefile index 56e5192c2eb6..150b05e8fa60 100644 --- a/net/messagelib/Makefile +++ b/net/messagelib/Makefile @@ -1,45 +1,44 @@ PORTNAME= messagelib DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for handling messages WWW= https://github.com/KDE/messagelib 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 xorg CPE_VENDOR= kde USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes imap itemmodels itemviews jobwidgets \ kdewebkit kio notifications 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_XORG= x11 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 69bc0153e727..751ee54fe376 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628686 -SHA256 (KDE/release-service/22.08.0/messagelib-22.08.0.tar.xz) = 14ace2036621eff61710ffd8829c9408d549a1b23613c3523cf9671b31e6d977 -SIZE (KDE/release-service/22.08.0/messagelib-22.08.0.tar.xz) = 10781480 +TIMESTAMP = 1662480101 +SHA256 (KDE/release-service/22.08.1/messagelib-22.08.1.tar.xz) = e2d21d361e6006bb93ad9328139eced6066153a3ca5985f38b038e470c500177 +SIZE (KDE/release-service/22.08.1/messagelib-22.08.1.tar.xz) = 10762260 diff --git a/net/pimcommon/Makefile b/net/pimcommon/Makefile index ac24cf835253..024727a04f06 100644 --- a/net/pimcommon/Makefile +++ b/net/pimcommon/Makefile @@ -1,32 +1,31 @@ PORTNAME= pimcommon 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 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons emoticons i18n init iconthemes itemmodels itemviews \ jobwidgets kcmutils kio newstuff service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui \ ecm_build # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme imap ldap \ libkdepim mime pimtextedit purpose USE_QT= concurrent core dbus designer gui network printsupport script testlib \ uiplugin uitools webkit widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 16c4ed343b19..f3b3ad150f72 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628670 -SHA256 (KDE/release-service/22.08.0/pimcommon-22.08.0.tar.xz) = 348a7295380d0d8939a4f589e27695cbfad8177ad41c3c773eb1f33643aa75fa -SIZE (KDE/release-service/22.08.0/pimcommon-22.08.0.tar.xz) = 371040 +TIMESTAMP = 1662480084 +SHA256 (KDE/release-service/22.08.1/pimcommon-22.08.1.tar.xz) = 3e059686c1ed0ef5aad7d5c433f370a5705a2f33307d429e3ab7752440d8fd01 +SIZE (KDE/release-service/22.08.1/pimcommon-22.08.1.tar.xz) = 371092 diff --git a/print/print-manager/Makefile b/print/print-manager/Makefile index 2df6d6ef5b2c..15fe820453fe 100644 --- a/print/print-manager/Makefile +++ b/print/print-manager/Makefile @@ -1,26 +1,25 @@ PORTNAME= print-manager DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= print kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Printer manager for KDE WWW= https://www.kde.org LIB_DEPENDS= libcups.so:print/cups USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications plasma-framework service solid widgetsaddons \ windowsystem \ ecm_build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 post-patch: ${REINPLACE_CMD} '/CUPS_DATADIR/s|/usr/share/cups|${LOCALBASE}/share/cups|' \ ${PATCH_WRKSRC}/libkcups/KCupsRequest.cpp .include diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 7f429c0d08e0..d4dc33a2e5af 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628531 -SHA256 (KDE/release-service/22.08.0/print-manager-22.08.0.tar.xz) = 291dba0f0a4220405b3048869dc52cc51b47169578fa03fa6f0a9cca58907ca9 -SIZE (KDE/release-service/22.08.0/print-manager-22.08.0.tar.xz) = 275720 +TIMESTAMP = 1662479930 +SHA256 (KDE/release-service/22.08.1/print-manager-22.08.1.tar.xz) = 90ac85e7adfaeddf691af256016525e3c56e20f270552ec2318c0f8a887c9166 +SIZE (KDE/release-service/22.08.1/print-manager-22.08.1.tar.xz) = 278132 diff --git a/print/print-manager/pkg-plist b/print/print-manager/pkg-plist index a9a4375b2f22..95909ba93b15 100644 --- a/print/print-manager/pkg-plist +++ b/print/print-manager/pkg-plist @@ -1,120 +1,121 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kf5/kded/printmanager.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_printer_manager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/kcm_printer_manager.desktop share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/applications/org.kde.kde-add-printer.desktop share/knotifications5/printmanager.notifyrc share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ast/LC_MESSAGES/print-manager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/az/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/id/LC_MESSAGES/print-manager.mo +share/locale/is/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ta/LC_MESSAGES/print-manager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tg/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.plasma.printmanager.appdata.xml share/metainfo/org.kde.print-manager.metainfo.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json diff --git a/science/kalzium/Makefile b/science/kalzium/Makefile index 3c793c794b16..c8c86f84505d 100644 --- a/science/kalzium/Makefile +++ b/science/kalzium/Makefile @@ -1,39 +1,38 @@ PORTNAME= kalzium DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Periodic table of elements for KDE WWW= https://www.kde.org/applications/education/kalzium LICENSE= GPLv2 LGPL20 GFDL LICENSE_COMB= multi LIB_DEPENDS= libopenbabel.so:science/openbabel \ libAvogadroCore.so:science/avogadrolibs BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/facile/facile.a:math/facile \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:5 \ pkgconfig qt:5 tar:xz xorg USE_GL= gl glew glu USE_KDE= auth archive attica bookmarks codecs completion config configwidgets \ coreaddons crash doctools emoticons guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets js kdelibs4support \ khtml kio newstuff notifications parts plotting service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem \ xmlgui \ ecm_build USE_OCAML= yes NO_OCAML_RUNDEPENDS= yes USE_QT= concurrent core dbus declarative gui network opengl printsupport script svg \ widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 59f14d832453..4d61cc40be9b 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628529 -SHA256 (KDE/release-service/22.08.0/kalzium-22.08.0.tar.xz) = 2f9e6cff9b36f7227880f5d6baf621f90f6ddf2bb571e925b1aa150b290b9e84 -SIZE (KDE/release-service/22.08.0/kalzium-22.08.0.tar.xz) = 24453392 +TIMESTAMP = 1662479928 +SHA256 (KDE/release-service/22.08.1/kalzium-22.08.1.tar.xz) = 5a15aaf5006a0b40c619ba8968c9d1aa20a9b979e0704602864d066920d38b2a +SIZE (KDE/release-service/22.08.1/kalzium-22.08.1.tar.xz) = 24453900 diff --git a/science/step/Makefile b/science/step/Makefile index 8dd1c86b12eb..7db083b0caba 100644 --- a/science/step/Makefile +++ b/science/step/Makefile @@ -1,39 +1,38 @@ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive physics simulator WWW= https://edu.kde.org/step 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 xorg 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 USE_XORG= x11 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 366472035e82..59d12290af16 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628530 -SHA256 (KDE/release-service/22.08.0/step-22.08.0.tar.xz) = fec34221af6d8075c1143aeb17a7b17898a01c1b378ed005e05f8835cfd91ac3 -SIZE (KDE/release-service/22.08.0/step-22.08.0.tar.xz) = 937168 +TIMESTAMP = 1662479929 +SHA256 (KDE/release-service/22.08.1/step-22.08.1.tar.xz) = 33817a1ac7bbc7f085bbb407b3ecae15a9f3cdd9a92d14ab1ca7a37543e4af56 +SIZE (KDE/release-service/22.08.1/step-22.08.1.tar.xz) = 937652 diff --git a/security/kgpg/Makefile b/security/kgpg/Makefile index 35788324b005..59d92f97c6c8 100644 --- a/security/kgpg/Makefile +++ b/security/kgpg/Makefile @@ -1,26 +1,25 @@ PORTNAME= kgpg DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Encryption tool for KDE WWW= https://utils.kde.org/projects/kgpg/ RUN_DEPENDS= gpg2:security/gnupg USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext grantlee:5 \ kde:5 qt:5 tar:xz xorg USE_KDE= akonadi akonadicontacts archive auth bookmarks codecs \ completion config configwidgets contacts coreaddons crash \ dbusaddons doctools grantleetheme i18n iconthemes itemmodels itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 4c21727f12e3..81fd71306721 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628655 -SHA256 (KDE/release-service/22.08.0/kgpg-22.08.0.tar.xz) = bd84963df78a3710bc1bda5b756dd9304ca451bcaf9b5231ede7598bd7b765ff -SIZE (KDE/release-service/22.08.0/kgpg-22.08.0.tar.xz) = 2953100 +TIMESTAMP = 1662480059 +SHA256 (KDE/release-service/22.08.1/kgpg-22.08.1.tar.xz) = 664cfc0878abf2f0bf91bccbfb91e26fd128d9f395b39091fe7060dea9e140f7 +SIZE (KDE/release-service/22.08.1/kgpg-22.08.1.tar.xz) = 2953124 diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index ea33c9307738..35cd6ede9d87 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -1,30 +1,29 @@ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE WWW= https://www.kde.org/applications/utilities/kleopatra/ 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 \ shared-mime-info qt:5 tar:xz xorg 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 USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index df7817ef1a8e..094d91a80c93 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628652 -SHA256 (KDE/release-service/22.08.0/kleopatra-22.08.0.tar.xz) = 2f86f65754d2466f5b91522c8017f7932265d34f8ee10c59854441862d9588db -SIZE (KDE/release-service/22.08.0/kleopatra-22.08.0.tar.xz) = 2377296 +TIMESTAMP = 1662480055 +SHA256 (KDE/release-service/22.08.1/kleopatra-22.08.1.tar.xz) = c8a73c1cc40eea9b8f9a4d7dac27bf5286cdf3f987e50c9ec787869e1b335eed +SIZE (KDE/release-service/22.08.1/kleopatra-22.08.1.tar.xz) = 2377672 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 244b155c06bd..d2ef610d0911 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628650 -SHA256 (KDE/release-service/22.08.0/kpkpass-22.08.0.tar.xz) = 70a8006a191e163558b157ea57d5e5a4a8824c01dea1a1d7ce99d5dddbc55e84 -SIZE (KDE/release-service/22.08.0/kpkpass-22.08.0.tar.xz) = 28884 +TIMESTAMP = 1662480054 +SHA256 (KDE/release-service/22.08.1/kpkpass-22.08.1.tar.xz) = eb651b6d2f8aedf669a63a6af563da2e9d3a9d86f27b50e773cebaa7ed618626 +SIZE (KDE/release-service/22.08.1/kpkpass-22.08.1.tar.xz) = 28888 diff --git a/security/kwalletmanager/Makefile b/security/kwalletmanager/Makefile index a0852bd408dd..04c411968044 100644 --- a/security/kwalletmanager/Makefile +++ b/security/kwalletmanager/Makefile @@ -1,24 +1,23 @@ PORTNAME= kwalletmanager DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Password manager for KDE WWW= https://utils.kde.org/projects/kwalletmanager/ USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= archive auth codecs config configwidgets coreaddons crash \ dbusaddons doctools emoticons i18n iconthemes init \ itemmodels itemviews kcmutils kdelibs4support kio \ jobwidgets notifications service wallet widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 139cb6155f01..e8663873d100 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628653 -SHA256 (KDE/release-service/22.08.0/kwalletmanager-22.08.0.tar.xz) = d6fdb03268b0bcd0e413d4bd2d982577a77db887f33d04cee9161cbae942bc9c -SIZE (KDE/release-service/22.08.0/kwalletmanager-22.08.0.tar.xz) = 802452 +TIMESTAMP = 1662480056 +SHA256 (KDE/release-service/22.08.1/kwalletmanager-22.08.1.tar.xz) = c00e452006f38fd2154e0df1874afda3bd7f39432ddd1eab3ab0fc595bf807b4 +SIZE (KDE/release-service/22.08.1/kwalletmanager-22.08.1.tar.xz) = 802796 diff --git a/security/kwalletmanager/pkg-plist b/security/kwalletmanager/pkg-plist index 62e5070a6b91..efed0832cdd2 100644 --- a/security/kwalletmanager/pkg-plist +++ b/security/kwalletmanager/pkg-plist @@ -1,142 +1,143 @@ bin/kwalletmanager5 lib/libexec/kauth/kcm_kwallet_helper5 %%QT_PLUGINDIR%%/kcm_kwallet5.so share/applications/kwalletmanager5-kwalletd.desktop share/applications/org.kde.kwalletmanager5.desktop share/dbus-1/services/org.kde.kwalletmanager5.service share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service share/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwalletmanager.png share/icons/hicolor/22x22/actions/wallet-closed.png share/icons/hicolor/22x22/actions/wallet-open.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwalletmanager.png share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/128x128/apps/kwalletmanager.png share/kservices5/kwalletconfig5.desktop share/kservices5/kwalletmanager5_show.desktop share/locale/ar/LC_MESSAGES/kcmkwallet.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo share/locale/az/LC_MESSAGES/kcmkwallet.mo share/locale/az/LC_MESSAGES/kwalletmanager.mo share/locale/be/LC_MESSAGES/kcmkwallet.mo share/locale/be/LC_MESSAGES/kwalletmanager.mo share/locale/bg/LC_MESSAGES/kcmkwallet.mo share/locale/bg/LC_MESSAGES/kwalletmanager.mo share/locale/bs/LC_MESSAGES/kcmkwallet.mo share/locale/bs/LC_MESSAGES/kwalletmanager.mo share/locale/ca/LC_MESSAGES/kcmkwallet.mo share/locale/ca/LC_MESSAGES/kwalletmanager.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwallet.mo share/locale/ca@valencia/LC_MESSAGES/kwalletmanager.mo share/locale/cs/LC_MESSAGES/kcmkwallet.mo share/locale/cs/LC_MESSAGES/kwalletmanager.mo share/locale/da/LC_MESSAGES/kcmkwallet.mo share/locale/da/LC_MESSAGES/kwalletmanager.mo share/locale/de/LC_MESSAGES/kcmkwallet.mo share/locale/de/LC_MESSAGES/kwalletmanager.mo share/locale/el/LC_MESSAGES/kcmkwallet.mo share/locale/el/LC_MESSAGES/kwalletmanager.mo share/locale/en_GB/LC_MESSAGES/kcmkwallet.mo share/locale/en_GB/LC_MESSAGES/kwalletmanager.mo share/locale/eo/LC_MESSAGES/kcmkwallet.mo share/locale/eo/LC_MESSAGES/kwalletmanager.mo share/locale/es/LC_MESSAGES/kcmkwallet.mo share/locale/es/LC_MESSAGES/kwalletmanager.mo share/locale/et/LC_MESSAGES/kcmkwallet.mo share/locale/et/LC_MESSAGES/kwalletmanager.mo share/locale/eu/LC_MESSAGES/kcmkwallet.mo share/locale/eu/LC_MESSAGES/kwalletmanager.mo share/locale/fa/LC_MESSAGES/kcmkwallet.mo share/locale/fa/LC_MESSAGES/kwalletmanager.mo share/locale/fi/LC_MESSAGES/kcmkwallet.mo share/locale/fi/LC_MESSAGES/kwalletmanager.mo share/locale/fr/LC_MESSAGES/kcmkwallet.mo share/locale/fr/LC_MESSAGES/kwalletmanager.mo share/locale/ga/LC_MESSAGES/kcmkwallet.mo share/locale/ga/LC_MESSAGES/kwalletmanager.mo share/locale/gl/LC_MESSAGES/kcmkwallet.mo share/locale/gl/LC_MESSAGES/kwalletmanager.mo share/locale/hi/LC_MESSAGES/kcmkwallet.mo share/locale/hi/LC_MESSAGES/kwalletmanager.mo share/locale/hr/LC_MESSAGES/kcmkwallet.mo share/locale/hr/LC_MESSAGES/kwalletmanager.mo share/locale/hu/LC_MESSAGES/kcmkwallet.mo share/locale/hu/LC_MESSAGES/kwalletmanager.mo share/locale/ia/LC_MESSAGES/kcmkwallet.mo share/locale/ia/LC_MESSAGES/kwalletmanager.mo share/locale/id/LC_MESSAGES/kcmkwallet.mo share/locale/id/LC_MESSAGES/kwalletmanager.mo share/locale/is/LC_MESSAGES/kcmkwallet.mo share/locale/is/LC_MESSAGES/kwalletmanager.mo share/locale/it/LC_MESSAGES/kcmkwallet.mo share/locale/it/LC_MESSAGES/kwalletmanager.mo share/locale/ja/LC_MESSAGES/kcmkwallet.mo share/locale/ja/LC_MESSAGES/kwalletmanager.mo share/locale/kk/LC_MESSAGES/kcmkwallet.mo share/locale/kk/LC_MESSAGES/kwalletmanager.mo share/locale/km/LC_MESSAGES/kcmkwallet.mo share/locale/km/LC_MESSAGES/kwalletmanager.mo share/locale/ko/LC_MESSAGES/kcmkwallet.mo share/locale/ko/LC_MESSAGES/kwalletmanager.mo share/locale/lt/LC_MESSAGES/kcmkwallet.mo share/locale/lt/LC_MESSAGES/kwalletmanager.mo share/locale/lv/LC_MESSAGES/kcmkwallet.mo share/locale/lv/LC_MESSAGES/kwalletmanager.mo share/locale/mr/LC_MESSAGES/kcmkwallet.mo share/locale/mr/LC_MESSAGES/kwalletmanager.mo share/locale/nb/LC_MESSAGES/kcmkwallet.mo share/locale/nb/LC_MESSAGES/kwalletmanager.mo share/locale/nds/LC_MESSAGES/kcmkwallet.mo share/locale/nds/LC_MESSAGES/kwalletmanager.mo share/locale/nl/LC_MESSAGES/kcmkwallet.mo share/locale/nl/LC_MESSAGES/kwalletmanager.mo share/locale/nn/LC_MESSAGES/kcmkwallet.mo share/locale/nn/LC_MESSAGES/kwalletmanager.mo share/locale/pa/LC_MESSAGES/kcmkwallet.mo share/locale/pa/LC_MESSAGES/kwalletmanager.mo share/locale/pl/LC_MESSAGES/kcmkwallet.mo share/locale/pl/LC_MESSAGES/kwalletmanager.mo share/locale/pt/LC_MESSAGES/kcmkwallet.mo share/locale/pt/LC_MESSAGES/kwalletmanager.mo share/locale/pt_BR/LC_MESSAGES/kcmkwallet.mo share/locale/pt_BR/LC_MESSAGES/kwalletmanager.mo share/locale/ro/LC_MESSAGES/kcmkwallet.mo share/locale/ro/LC_MESSAGES/kwalletmanager.mo share/locale/ru/LC_MESSAGES/kcmkwallet.mo share/locale/ru/LC_MESSAGES/kwalletmanager.mo share/locale/se/LC_MESSAGES/kcmkwallet.mo share/locale/se/LC_MESSAGES/kwalletmanager.mo share/locale/sk/LC_MESSAGES/kcmkwallet.mo share/locale/sk/LC_MESSAGES/kwalletmanager.mo share/locale/sl/LC_MESSAGES/kcmkwallet.mo share/locale/sl/LC_MESSAGES/kwalletmanager.mo share/locale/sq/LC_MESSAGES/kcmkwallet.mo share/locale/sq/LC_MESSAGES/kwalletmanager.mo share/locale/sr/LC_MESSAGES/kcmkwallet.mo share/locale/sr/LC_MESSAGES/kwalletmanager.mo share/locale/sv/LC_MESSAGES/kcmkwallet.mo share/locale/sv/LC_MESSAGES/kwalletmanager.mo share/locale/ta/LC_MESSAGES/kcmkwallet.mo share/locale/ta/LC_MESSAGES/kwalletmanager.mo share/locale/tg/LC_MESSAGES/kcmkwallet.mo share/locale/tg/LC_MESSAGES/kwalletmanager.mo share/locale/tr/LC_MESSAGES/kcmkwallet.mo share/locale/tr/LC_MESSAGES/kwalletmanager.mo share/locale/ug/LC_MESSAGES/kcmkwallet.mo share/locale/ug/LC_MESSAGES/kwalletmanager.mo share/locale/uk/LC_MESSAGES/kcmkwallet.mo share/locale/uk/LC_MESSAGES/kwalletmanager.mo +share/locale/vi/LC_MESSAGES/kcmkwallet.mo share/locale/zh_CN/LC_MESSAGES/kcmkwallet.mo share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo share/locale/zh_TW/LC_MESSAGES/kcmkwallet.mo share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo share/metainfo/org.kde.kwalletmanager5.appdata.xml share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy share/qlogging-categories5/kwalletmanager.categories diff --git a/security/libkleo/Makefile b/security/libkleo/Makefile index 5ee1cdc23970..e653245426bf 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 WWW= https://www.kde.org/applications/utilities/kleopatra/ 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= auth codecs completion config configwidgets coreaddons \ i18n itemmodels pimtextedit widgetsaddons windowsystem USE_QT= core gui widgets xml \ 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 edd13c3c46cc..02c5380417a8 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628654 -SHA256 (KDE/release-service/22.08.0/libkleo-22.08.0.tar.xz) = b1f30c0f031eeb7f7875172f4f8ccd1db5e220325b69247eee5e0d3d613365b8 -SIZE (KDE/release-service/22.08.0/libkleo-22.08.0.tar.xz) = 469776 +TIMESTAMP = 1662480057 +SHA256 (KDE/release-service/22.08.1/libkleo-22.08.1.tar.xz) = 0a159fc5174e7cdeefd0cb528dba2171a9ae8754ae0c09c5c83054eb797ed717 +SIZE (KDE/release-service/22.08.1/libkleo-22.08.1.tar.xz) = 469916 diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index f910bb8ff359..9ea6f51b3a3e 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -1,23 +1,19 @@ PORTNAME= baloo-widgets DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= sysutils kde kde-applications -PATCH_SITES= https://invent.kde.org/libraries/baloo-widgets/commit/ -PATCHFILES= 7ff54ae9b68ca0edf3d6cd57c3eefb6cf072b6f8.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library WWW= https://projects.kde.org/projects/kde/kdelibs/baloo USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= baloo completion config coreaddons emoticons filemetadata \ i18n init itemmodels jobwidgets kio service solid \ widgetsaddons windowsystem \ ecm_build USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_XORG= x11 USE_LDCONFIG= yes .include diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 0bea047a1b32..292c9e845f13 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1661104210 -SHA256 (KDE/release-service/22.08.0/baloo-widgets-22.08.0.tar.xz) = 38f799fde70b1d3fad21593caee97338d226c2ccfe0602ef7d96ea5a0c9689fa -SIZE (KDE/release-service/22.08.0/baloo-widgets-22.08.0.tar.xz) = 272688 -SHA256 (KDE/release-service/22.08.0/7ff54ae9b68ca0edf3d6cd57c3eefb6cf072b6f8.diff) = 5c79308a2f8bc7fc47b620a541b2054a154952af71e7015cbca3db612ff98c94 -SIZE (KDE/release-service/22.08.0/7ff54ae9b68ca0edf3d6cd57c3eefb6cf072b6f8.diff) = 706 +TIMESTAMP = 1662481968 +SHA256 (KDE/release-service/22.08.1/baloo-widgets-22.08.1.tar.xz) = b61e9fb76e73360d1f96c8862871d7ad1d8baf2b14b8f32a02697a4d1edae40a +SIZE (KDE/release-service/22.08.1/baloo-widgets-22.08.1.tar.xz) = 272720 diff --git a/sysutils/filelight/Makefile b/sysutils/filelight/Makefile index fd149863f6aa..291bb81ebe1f 100644 --- a/sysutils/filelight/Makefile +++ b/sysutils/filelight/Makefile @@ -1,26 +1,25 @@ PORTNAME= filelight DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Map of concentric segmented-rings representing file system WWW= https://utils.kde.org/projects/filelight/ 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 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kdeclarative kio package parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ script svg widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 443b0da8e9f4..c92fb77704aa 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628523 -SHA256 (KDE/release-service/22.08.0/filelight-22.08.0.tar.xz) = 70561010c84a4f59d8e8cbd24ec31a55e85dc9af0dc4924058c7ddfb9e5004b7 -SIZE (KDE/release-service/22.08.0/filelight-22.08.0.tar.xz) = 698188 +TIMESTAMP = 1662479922 +SHA256 (KDE/release-service/22.08.1/filelight-22.08.1.tar.xz) = 3c26588ec81cb3ce334c7d70ccb28cd443eb7d333274aa68b1cbfe56f0ad0fbb +SIZE (KDE/release-service/22.08.1/filelight-22.08.1.tar.xz) = 698364 diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index 15b4a179ce3c..657adafaee36 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -1,57 +1,56 @@ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite WWW= https://www.k3b.org/ LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 shared-mime-info tar:xz xorg USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build USE_XORG= x11 # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index fc5f323db8d5..a81613e4cdcb 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628520 -SHA256 (KDE/release-service/22.08.0/k3b-22.08.0.tar.xz) = e58936a021fd9550b81b005da8590a7af12ac456e3bb0745364e4bd1c541adb3 -SIZE (KDE/release-service/22.08.0/k3b-22.08.0.tar.xz) = 10747644 +TIMESTAMP = 1662479919 +SHA256 (KDE/release-service/22.08.1/k3b-22.08.1.tar.xz) = f1af8904e4edcbaba0bc828b27b424d29480cf71729a1fb59da63de459ff9854 +SIZE (KDE/release-service/22.08.1/k3b-22.08.1.tar.xz) = 10762800 diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index d5e8f51cd30e..5b6139edfcf0 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,537 +1,540 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libexec/kauth/k3bhelper lib/libk3bdevice.so lib/libk3bdevice.so.8 lib/libk3bdevice.so.8.0.0 lib/libk3blib.so lib/libk3blib.so.8 lib/libk3blib.so.8.0.0 %%QT_PLUGINDIR%%/k3b_plugins/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bwavedecoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo share/locale/be/LC_MESSAGES/k3b.mo share/locale/be/LC_MESSAGES/kio_videodvd.mo share/locale/be/LC_MESSAGES/libk3b.mo share/locale/be/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo +share/locale/id/LC_MESSAGES/k3b.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo +share/locale/id/LC_MESSAGES/libk3b.mo +share/locale/id/LC_MESSAGES/libk3bdevice.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/se/LC_MESSAGES/k3b.mo share/locale/se/LC_MESSAGES/libk3b.mo share/locale/se/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sq/LC_MESSAGES/k3b.mo share/locale/sq/LC_MESSAGES/kio_videodvd.mo share/locale/sq/LC_MESSAGES/libk3b.mo share/locale/sq/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop diff --git a/sysutils/kbackup/Makefile b/sysutils/kbackup/Makefile index ee90ab46647c..258db6352445 100644 --- a/sysutils/kbackup/Makefile +++ b/sysutils/kbackup/Makefile @@ -1,22 +1,21 @@ PORTNAME= kbackup DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Backup program with an easy to use user interface WWW= https://utils.kde.org/projects/kbackup/ USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ qt:5 shared-mime-info tar:xz xorg USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes itemviews jobwidgets kio \ notifications service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 247d33644904..57f9a5e35218 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628510 -SHA256 (KDE/release-service/22.08.0/kbackup-22.08.0.tar.xz) = a6b9919d24ca3f2affab7e6b151989bd07b87e15791346bec5fdecfa690213cb -SIZE (KDE/release-service/22.08.0/kbackup-22.08.0.tar.xz) = 392460 +TIMESTAMP = 1662479909 +SHA256 (KDE/release-service/22.08.1/kbackup-22.08.1.tar.xz) = 73b051aac012ffd8858a5ffb98f72cf0f45a1887e5b5b29ad41a2709c06c1f30 +SIZE (KDE/release-service/22.08.1/kbackup-22.08.1.tar.xz) = 392444 diff --git a/sysutils/kcron/Makefile b/sysutils/kcron/Makefile index 622f6fa47b60..23b5a09dacfb 100644 --- a/sysutils/kcron/Makefile +++ b/sysutils/kcron/Makefile @@ -1,24 +1,23 @@ PORTNAME= kcron DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE task scheduler WWW= https://www.kde.org BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes jobwidgets kio service solid widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index e8bad6b3ff09..9bc77ee93d04 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628515 -SHA256 (KDE/release-service/22.08.0/kcron-22.08.0.tar.xz) = 35fd6a596f5b8f197e724328e3fd682c6a7cb55c18b5faee541fab85694d0a93 -SIZE (KDE/release-service/22.08.0/kcron-22.08.0.tar.xz) = 916688 +TIMESTAMP = 1662479914 +SHA256 (KDE/release-service/22.08.1/kcron-22.08.1.tar.xz) = 89333ed6eaa51bc4e6974079d02bb3a41b08eef624bdee475e2ba05682e27438 +SIZE (KDE/release-service/22.08.1/kcron-22.08.1.tar.xz) = 916688 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 185c58a0027e..7b85b568aa4a 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628514 -SHA256 (KDE/release-service/22.08.0/kdebugsettings-22.08.0.tar.xz) = fa4451aef2028f6321fec47d6ab0198b191eadc54c26eca67189be65597ca10d -SIZE (KDE/release-service/22.08.0/kdebugsettings-22.08.0.tar.xz) = 94176 +TIMESTAMP = 1662479913 +SHA256 (KDE/release-service/22.08.1/kdebugsettings-22.08.1.tar.xz) = 4857fdc0425173a1c1815b5833a232344a830f1e98d9c2bef87f24f62b3b3851 +SIZE (KDE/release-service/22.08.1/kdebugsettings-22.08.1.tar.xz) = 94220 diff --git a/sysutils/kdf/Makefile b/sysutils/kdf/Makefile index 2b25be54db93..18329d61fa0a 100644 --- a/sysutils/kdf/Makefile +++ b/sysutils/kdf/Makefile @@ -1,20 +1,19 @@ PORTNAME= kdf DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Shows free space of devices for KDE WWW= https://utils.kde.org/projects/kdf/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ i18n iconthemes jobwidgets kcmutils kio notifications service solid \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index d83454554e72..d654286223e8 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628519 -SHA256 (KDE/release-service/22.08.0/kdf-22.08.0.tar.xz) = 98ce00717cb7ed01fba57bd8017b4b449b97fb55dec9c9cda610c6c462895116 -SIZE (KDE/release-service/22.08.0/kdf-22.08.0.tar.xz) = 477272 +TIMESTAMP = 1662479918 +SHA256 (KDE/release-service/22.08.1/kdf-22.08.1.tar.xz) = 0588f79831e26a264d040d1a98053dcc52961ec60b2d0feb2587c12b1ac5f15c +SIZE (KDE/release-service/22.08.1/kdf-22.08.1.tar.xz) = 477404 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 0208115e9ef8..e19784b1a171 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628524 -SHA256 (KDE/release-service/22.08.0/kdialog-22.08.0.tar.xz) = 75dde2ffde0e7a95387ebf63e2ee8154956bd505915d7c0a7fe26bb0dbd163cb -SIZE (KDE/release-service/22.08.0/kdialog-22.08.0.tar.xz) = 116720 +TIMESTAMP = 1662479923 +SHA256 (KDE/release-service/22.08.1/kdialog-22.08.1.tar.xz) = 1dd2e5eb5b02295d2ba71e081f6eff4159a8e7882026d594c9d88457ac831fd3 +SIZE (KDE/release-service/22.08.1/kdialog-22.08.1.tar.xz) = 116688 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 0ad129fd5c4d..0f277bc2306f 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628517 -SHA256 (KDE/release-service/22.08.0/kfloppy-22.08.0.tar.xz) = fef7591b80f5dc0fd01154624bb06676730cd8ffc3e1eae80510e788308a8bb5 -SIZE (KDE/release-service/22.08.0/kfloppy-22.08.0.tar.xz) = 213736 +TIMESTAMP = 1662479915 +SHA256 (KDE/release-service/22.08.1/kfloppy-22.08.1.tar.xz) = a8f848f4a414c7ba563eea1175b73003718fcadd043e225bdeeb3c95b12766d5 +SIZE (KDE/release-service/22.08.1/kfloppy-22.08.1.tar.xz) = 213816 diff --git a/sysutils/khelpcenter/Makefile b/sysutils/khelpcenter/Makefile index a9c43ca31a50..5e61988ec62d 100644 --- a/sysutils/khelpcenter/Makefile +++ b/sysutils/khelpcenter/Makefile @@ -1,32 +1,31 @@ PORTNAME= khelpcenter DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 application to show KDE application documentation WWW= https://projects.kde.org/projects/kde/workspace/khelpcenter 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 xorg 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 USE_XORG= x11 SHEBANG_FILES= searchhandlers/khc_mansearch.pl OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 04378dae3e61..842108a3163f 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628513 -SHA256 (KDE/release-service/22.08.0/khelpcenter-22.08.0.tar.xz) = 0e37ed8d53baa3bd9ab60e75900a5d44c193d70c3c6e1c7d5bb879cb023b1cb8 -SIZE (KDE/release-service/22.08.0/khelpcenter-22.08.0.tar.xz) = 4309872 +TIMESTAMP = 1662479912 +SHA256 (KDE/release-service/22.08.1/khelpcenter-22.08.1.tar.xz) = 663bf97100940cbcd0d2f555e4966572cb8ce8d64e5accba6264de66f119b191 +SIZE (KDE/release-service/22.08.1/khelpcenter-22.08.1.tar.xz) = 4310428 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 52c031cb1195..a739232ac72b 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628518 -SHA256 (KDE/release-service/22.08.0/kpmcore-22.08.0.tar.xz) = 5acdb484a5f68837647b9c8104a5ee915503e0e9cb7f53a6c25856fa35172f6e -SIZE (KDE/release-service/22.08.0/kpmcore-22.08.0.tar.xz) = 594864 +TIMESTAMP = 1662479917 +SHA256 (KDE/release-service/22.08.1/kpmcore-22.08.1.tar.xz) = eadac5e69750f81cb060aabd3bd867ef2bcbea7463003a4956724ebbaa6d48f8 +SIZE (KDE/release-service/22.08.1/kpmcore-22.08.1.tar.xz) = 594808 diff --git a/sysutils/ksystemlog/Makefile b/sysutils/ksystemlog/Makefile index db55d13fc4fd..9a93f214e47c 100644 --- a/sysutils/ksystemlog/Makefile +++ b/sysutils/ksystemlog/Makefile @@ -1,22 +1,21 @@ PORTNAME= ksystemlog DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application WWW= https://kde.org/applications/system/ksystemlog/ USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= archive auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes itemviews jobwidgets kio \ service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport testlib widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 7cc5031cfb19..b7b3b3df8b8c 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628512 -SHA256 (KDE/release-service/22.08.0/ksystemlog-22.08.0.tar.xz) = 5988085046ad210b7f4cadb426f43a6bba59c9f70b78361303377345a0d41b03 -SIZE (KDE/release-service/22.08.0/ksystemlog-22.08.0.tar.xz) = 1969720 +TIMESTAMP = 1662479911 +SHA256 (KDE/release-service/22.08.1/ksystemlog-22.08.1.tar.xz) = 9eade8f92d6e23c0cec492ffdf008c480cbef2e8ac1dd416806f1149002a364c +SIZE (KDE/release-service/22.08.1/ksystemlog-22.08.1.tar.xz) = 1969980 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 04907eeca8fc..34cff0bab5b0 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628511 -SHA256 (KDE/release-service/22.08.0/signon-kwallet-extension-22.08.0.tar.xz) = 34be37cefe8c89dd308bf209acc29719d0b1816a08691fe1a6ed1e496db41742 -SIZE (KDE/release-service/22.08.0/signon-kwallet-extension-22.08.0.tar.xz) = 11180 +TIMESTAMP = 1662479910 +SHA256 (KDE/release-service/22.08.1/signon-kwallet-extension-22.08.1.tar.xz) = 1e2b90b05ca7cb8fc9035bc190be9666fc53cb1049fb0874fa2ea3c906c4a20c +SIZE (KDE/release-service/22.08.1/signon-kwallet-extension-22.08.1.tar.xz) = 11180 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f04131d3d5f2..0bc963bcfe45 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628522 -SHA256 (KDE/release-service/22.08.0/sweeper-22.08.0.tar.xz) = 4e6b36b38ea37705d4e2b0870800b2b7c7081ece88b84706cbd57a88a19eb01e -SIZE (KDE/release-service/22.08.0/sweeper-22.08.0.tar.xz) = 377956 +TIMESTAMP = 1662479921 +SHA256 (KDE/release-service/22.08.1/sweeper-22.08.1.tar.xz) = 7cada3a5445a5e311b70360199460b652c158b6fcd8ea7308ec54ac49dafe869 +SIZE (KDE/release-service/22.08.1/sweeper-22.08.1.tar.xz) = 377920 diff --git a/textproc/kompare/Makefile b/textproc/kompare/Makefile index 771bd66fe607..18f8020a0ceb 100644 --- a/textproc/kompare/Makefile +++ b/textproc/kompare/Makefile @@ -1,24 +1,23 @@ PORTNAME= kompare DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= textproc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Diff/Patch Frontend LIB_DEPENDS= libkomparediff2.so:textproc/libkomparediff2 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes jobwidgets kio parts service \ solid sonnet syntaxhighlighting texteditor textwidgets widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index ad170446d8f9..8685a42f9d81 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628597 -SHA256 (KDE/release-service/22.08.0/kompare-22.08.0.tar.xz) = c93aa427f3350c1deabcc94b9aa5758fd8dc4fcfb8b492e70e02c0f1aeec5d93 -SIZE (KDE/release-service/22.08.0/kompare-22.08.0.tar.xz) = 950768 +TIMESTAMP = 1662479997 +SHA256 (KDE/release-service/22.08.1/kompare-22.08.1.tar.xz) = 95708640970150637109a16d2f058f03ea7e6f2d803bd3293e5daa2b77483263 +SIZE (KDE/release-service/22.08.1/kompare-22.08.1.tar.xz) = 950904 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 1fe10eec010c..11d9d226b768 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628596 -SHA256 (KDE/release-service/22.08.0/libkomparediff2-22.08.0.tar.xz) = 5d841c92d909e522e2f4a5bb452edc6ab3ab9d780b5a02a7b3b33998020bede8 -SIZE (KDE/release-service/22.08.0/libkomparediff2-22.08.0.tar.xz) = 169672 +TIMESTAMP = 1662479996 +SHA256 (KDE/release-service/22.08.1/libkomparediff2-22.08.1.tar.xz) = 694f535f77a803c18c11bd9754b253c037a70f3a78ab20102d4037b01dec5d42 +SIZE (KDE/release-service/22.08.1/libkomparediff2-22.08.1.tar.xz) = 169736 diff --git a/textproc/markdownpart/Makefile b/textproc/markdownpart/Makefile index 811c625f2523..a9844062ac88 100644 --- a/textproc/markdownpart/Makefile +++ b/textproc/markdownpart/Makefile @@ -1,21 +1,20 @@ PORTNAME= markdownpart DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= textproc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KPart for rendering Markdown content WWW= https://invent.kde.org/utilities/markdownpart USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ jobwidgets kio parts service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index b9cc06125ffc..3f2ba1a991cd 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628595 -SHA256 (KDE/release-service/22.08.0/markdownpart-22.08.0.tar.xz) = 3cc7317a421f88a8bbe0f3ae6ab8422c3b0ce2c2fedcbb7d16501760304397b0 -SIZE (KDE/release-service/22.08.0/markdownpart-22.08.0.tar.xz) = 30052 +TIMESTAMP = 1662479994 +SHA256 (KDE/release-service/22.08.1/markdownpart-22.08.1.tar.xz) = 633d3f6604cb7f3a34a16096b6fdb67a8dd034bb0264a6fb7f675578da9f946c +SIZE (KDE/release-service/22.08.1/markdownpart-22.08.1.tar.xz) = 30052 diff --git a/www/falkon/Makefile b/www/falkon/Makefile index 28786afaff12..27b8179ef6d1 100644 --- a/www/falkon/Makefile +++ b/www/falkon/Makefile @@ -1,49 +1,48 @@ PORTNAME= falkon DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Web browser based on Webengine and Qt Framework WWW= https://www.falkon.org/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake desktop-file-utils kde:5 qt:5 ssl tar:xz xorg USE_KDE= archive i18n \ ecm_build USE_QT= concurrent core dbus declarative gui location network printsupport \ sql webchannel webengine widgets x11extras sql-sqlite3_run \ buildtools_build qmake_build USE_XORG= x11 xcb USE_LDCONFIG= yes CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PySide2 FLAVORS= default qtonly FLAVOR?= default default_CONFLICTS_INSTALL= ${PORTNAME}-qtonly qtonly_PKGNAMESUFFIX= -qtonly qtonly_CONFLICTS_INSTALL= ${PORTNAME} .if ${FLAVOR} != qtonly CMAKE_ON+= ENABLE_KDE_FRAMEWORKS_INTEGRATION_PLUGIN USE_KDE+= completion config coreaddons crash jobwidgets kio purpose service solid wallet widgetsaddons windowsystem PLIST_SUB= KDEINTEGRATION="" .else PLIST_SUB= KDEINTEGRATION="@comment " COMMENT= Web browser based on WebEngine (no integration with KDE Plasma) .endif OPTIONS_DEFINE= GNOMEKEYRING OPTIONS_SUB= YES GNOMEKEYRING_CMAKE_BOOL= BUILD_KEYRING GNOMEKEYRING_USE= GNOME=glib20 GNOMEKEYRING_USES= gnome pkgconfig GNOMEKEYRING_LIB_DEPENDS= libgnome-keyring.so:security/libgnome-keyring .include diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 8876e7db1eb1..89ec3148fc38 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628598 -SHA256 (KDE/release-service/22.08.0/falkon-22.08.0.tar.xz) = 0d462bded6c1d66e078807910a20a894f1161ab16efa98f2576d2a3996c91bcb -SIZE (KDE/release-service/22.08.0/falkon-22.08.0.tar.xz) = 2498728 +TIMESTAMP = 1662479997 +SHA256 (KDE/release-service/22.08.1/falkon-22.08.1.tar.xz) = b02af9a271b692ae9d0c8301025b76501c4648f007d50e9470ddb7288d30ebd1 +SIZE (KDE/release-service/22.08.1/falkon-22.08.1.tar.xz) = 2502656 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index 24c1a0f4af47..d61fa2297036 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,757 +1,763 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/is/LC_MESSAGES/falkon_hellopython.mo +share/locale/is/LC_MESSAGES/falkon_helloqml.mo share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/is/LC_MESSAGES/falkon_middleclickloader.mo share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm +share/locale/is/LC_MESSAGES/falkon_runaction.mo share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/is/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ro/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ro/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ro/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ro/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ro/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ta/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 03fbfb514667..78b876a662a4 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628533 -SHA256 (KDE/release-service/22.08.0/kteatime-22.08.0.tar.xz) = 72299291bbb871ea6cf720e2831058b22213e66ede2408e020bcd4f9b937b073 -SIZE (KDE/release-service/22.08.0/kteatime-22.08.0.tar.xz) = 302744 +TIMESTAMP = 1662479933 +SHA256 (KDE/release-service/22.08.1/kteatime-22.08.1.tar.xz) = 1faa6ad2bf7489adad7b011d292cb36d01e2d847d1ed64ffe4afee9b32b3fb55 +SIZE (KDE/release-service/22.08.1/kteatime-22.08.1.tar.xz) = 302800 diff --git a/x11-clocks/ktimer/Makefile b/x11-clocks/ktimer/Makefile index 79714bde1b7c..58a5e28f7555 100644 --- a/x11-clocks/ktimer/Makefile +++ b/x11-clocks/ktimer/Makefile @@ -1,21 +1,20 @@ PORTNAME= ktimer DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-clocks kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Countdown launcher for KDE WWW= https://utils.kde.org/projects/ktimer/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes jobwidgets kio \ notifications service solid widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index a33e39db0f56..93045d9f94d7 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628532 -SHA256 (KDE/release-service/22.08.0/ktimer-22.08.0.tar.xz) = 5a44ed466d2419a6b6a92eadef66dc91c244427f8059a7f7101447e7158142b5 -SIZE (KDE/release-service/22.08.0/ktimer-22.08.0.tar.xz) = 395136 +TIMESTAMP = 1662479932 +SHA256 (KDE/release-service/22.08.1/ktimer-22.08.1.tar.xz) = 42648dd925337fe496c3f585a4133c68f0fe84bb44e49de9c9e804cdfb75f45a +SIZE (KDE/release-service/22.08.1/ktimer-22.08.1.tar.xz) = 395168 diff --git a/x11-fm/dolphin/Makefile b/x11-fm/dolphin/Makefile index afd358e82258..a481b7ae3147 100644 --- a/x11-fm/dolphin/Makefile +++ b/x11-fm/dolphin/Makefile @@ -1,37 +1,36 @@ PORTNAME= dolphin DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-fm kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE filemanager dolphin WWW= https://userbase.kde.org/Dolphin LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${QT_PLUGINDIR}/ffmpegthumbs.so:multimedia/kdemultimedia-ffmpegthumbs \ ${QT_PLUGINDIR}/gsthumbnail.so:graphics/kdegraphics-thumbnailers \ ${QT_PLUGINDIR}/kf5/kio/thumbnail.so:devel/kio-extras USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= activities attica auth baloo baloo-widgets bookmarks codecs \ completion config configwidgets coreaddons crash dbusaddons \ emoticons filemetadata i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kde-cli-tools \ kio newstuff notifications parts service \ solid sonnet texteditor textwidgets widgetsaddons \ windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network phonon4 widgets xml \ buildtools_build qmake_build USE_XORG= x11 SHLIB_VER= 5.0.0 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" \ SHLIB_SHVER="${SHLIB_VER:R:R}" OPTIONS_DEFINE= DOCS .include diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index e0155da2a3a3..e6f398fc6e3e 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628466 -SHA256 (KDE/release-service/22.08.0/dolphin-22.08.0.tar.xz) = 03458f878b70d82f0a55396bb0bfe7409be867e77d31fb42b310888bd1f16682 -SIZE (KDE/release-service/22.08.0/dolphin-22.08.0.tar.xz) = 5368812 +TIMESTAMP = 1662479864 +SHA256 (KDE/release-service/22.08.1/dolphin-22.08.1.tar.xz) = 067bef1d24c411ba2bad2aee62ed10dd584c4c43184cbddfbefa775c9a1c9be9 +SIZE (KDE/release-service/22.08.1/dolphin-22.08.1.tar.xz) = 5368972 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 83c25e0c00f6..959335671c9a 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628467 -SHA256 (KDE/release-service/22.08.0/konqueror-22.08.0.tar.xz) = 4a13cf0304bbc97468a59e0ce2da875e5318aa911fa26d4ffe6d0874001f626e -SIZE (KDE/release-service/22.08.0/konqueror-22.08.0.tar.xz) = 7668492 +TIMESTAMP = 1662479866 +SHA256 (KDE/release-service/22.08.1/konqueror-22.08.1.tar.xz) = df1345f8cf506591b7f20d1315bed64faf3ae3e5cf09b96af5e91012e508c161 +SIZE (KDE/release-service/22.08.1/konqueror-22.08.1.tar.xz) = 7669004 diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index a137e9d83710..1b10294ae516 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,32 +1,31 @@ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator WWW= https://konsole.kde.org/ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz xorg USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel guiaddons i18n \ iconthemes init itemmodels jobwidgets kio \ newstuff notifications notifyconfig parts pty service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ widgets xml \ buildtools_build qmake_build USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index b0de56bc7eb1..fa7f007b3c44 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628527 -SHA256 (KDE/release-service/22.08.0/konsole-22.08.0.tar.xz) = bbcc5ce567dbffaea6722fe43682b68f2b54bb6c6a2b6eeb2f4b86809d3551d6 -SIZE (KDE/release-service/22.08.0/konsole-22.08.0.tar.xz) = 1501744 +TIMESTAMP = 1662479927 +SHA256 (KDE/release-service/22.08.1/konsole-22.08.1.tar.xz) = f124954979cdc58b44b70a3500eaecef83421a652cae73f8bef961184fdc2101 +SIZE (KDE/release-service/22.08.1/konsole-22.08.1.tar.xz) = 1502288 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 59c0d161b89b..197bb145ac1e 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1660628526 -SHA256 (KDE/release-service/22.08.0/yakuake-22.08.0.tar.xz) = deec2a5483092a1c4cb6c90be632f7399f3f3769f5dadb750017b095ac152ff1 -SIZE (KDE/release-service/22.08.0/yakuake-22.08.0.tar.xz) = 413520 +TIMESTAMP = 1662479926 +SHA256 (KDE/release-service/22.08.1/yakuake-22.08.1.tar.xz) = e33a0b939c1f200afabce68b0457a1ecd662a9c1ee3d7f118c5ed74ade372ae1 +SIZE (KDE/release-service/22.08.1/yakuake-22.08.1.tar.xz) = 413616