diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index b27971ef0d7e..683d09858710 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,909 +1,909 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.22.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.85.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 21.08.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.18.0 +KDE_APPLICATIONS_VERSION?= 21.08.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.18.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 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 alarmcalendar \ 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/controls/libchartscontrolsplugin.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_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/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-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= libkdeinit5_kcminit.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-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index a1483bbf2913..01dabb5b0ddc 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244075 -SHA256 (KDE/release-service/21.08.0/kmag-21.08.0.tar.xz) = 1a54ad02c834553036e0e2fa2df78118fdb8d99e48837c598fdd078c05cc0e91 -SIZE (KDE/release-service/21.08.0/kmag-21.08.0.tar.xz) = 706160 +TIMESTAMP = 1630583817 +SHA256 (KDE/release-service/21.08.1/kmag-21.08.1.tar.xz) = ccd088dc143ed5366585cc81c1efdfce38e40fd6e1c2d4c06fca6c199467b2c1 +SIZE (KDE/release-service/21.08.1/kmag-21.08.1.tar.xz) = 706256 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 4d1f7faf6bb0..2a35d74f5370 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244076 -SHA256 (KDE/release-service/21.08.0/kmousetool-21.08.0.tar.xz) = 1bd8f52800d9a6acbf98bb3d9d6b04be094aa7d2906ca2abbc93cd28f923e4e7 -SIZE (KDE/release-service/21.08.0/kmousetool-21.08.0.tar.xz) = 121652 +TIMESTAMP = 1630583817 +SHA256 (KDE/release-service/21.08.1/kmousetool-21.08.1.tar.xz) = 017730069b5ee86fd10e9460c0e1f78a1dc90ec3c33de4dace5b23f27afe4511 +SIZE (KDE/release-service/21.08.1/kmousetool-21.08.1.tar.xz) = 121708 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index d33f0fd49696..b8df0e2732af 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244077 -SHA256 (KDE/release-service/21.08.0/kmouth-21.08.0.tar.xz) = 21bb20349eb634a67368ab7ffb1629586484be4213025c99e22b75e213790b45 -SIZE (KDE/release-service/21.08.0/kmouth-21.08.0.tar.xz) = 2100612 +TIMESTAMP = 1630583818 +SHA256 (KDE/release-service/21.08.1/kmouth-21.08.1.tar.xz) = 99df0592e517294f7b8f9641a3a21d003840c87d4db3616e3f2c3329ebbdb8e6 +SIZE (KDE/release-service/21.08.1/kmouth-21.08.1.tar.xz) = 2100700 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index bdacdf4c4336..4b7d7e7e5485 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244078 -SHA256 (KDE/release-service/21.08.0/ark-21.08.0.tar.xz) = dd7daf89f1821edcb03bbe41344f85198f5709135a8d4d273fe7ba611230f522 -SIZE (KDE/release-service/21.08.0/ark-21.08.0.tar.xz) = 2769680 +TIMESTAMP = 1630583819 +SHA256 (KDE/release-service/21.08.1/ark-21.08.1.tar.xz) = 60db7649f94a8a083f22a04a2c86263b8af27a1a033908c92c623cf8231e43eb +SIZE (KDE/release-service/21.08.1/ark-21.08.1.tar.xz) = 2769696 diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 4de97ec79541..cf830559b9fb 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,21 +1,21 @@ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= i18n kpublictransport \ ecm_build USE_QT= core declarative gui network quick3d \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.8.0 +KDE_APPLICATIONS_SHLIB_VER= 21.8.1 .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 04caa7ac11aa..59f8edfb065f 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244079 -SHA256 (KDE/release-service/21.08.0/kosmindoormap-21.08.0.tar.xz) = 271dea33dc9ecee016ecf0eaa25c63e21c42dd83fe197b6e9774f36a4ee47ed1 -SIZE (KDE/release-service/21.08.0/kosmindoormap-21.08.0.tar.xz) = 339076 +TIMESTAMP = 1630583820 +SHA256 (KDE/release-service/21.08.1/kosmindoormap-21.08.1.tar.xz) = abc71e0549ee375c6ff74e59bda6cf0c346b1005ff0c353b4969a582666461ec +SIZE (KDE/release-service/21.08.1/kosmindoormap-21.08.1.tar.xz) = 340568 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index d33950ee521f..8b60bb6d771d 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244080 -SHA256 (KDE/release-service/21.08.0/marble-21.08.0.tar.xz) = f40b5386f5502803f72a4551652e06be7b9f779e28113e058f08de9b9f11569f -SIZE (KDE/release-service/21.08.0/marble-21.08.0.tar.xz) = 52396820 +TIMESTAMP = 1630583821 +SHA256 (KDE/release-service/21.08.1/marble-21.08.1.tar.xz) = fcc7d3bbeed31a43a36db4f2ec94f742ef40edea73ddd0df9dd4fdf4391f0e06 +SIZE (KDE/release-service/21.08.1/marble-21.08.1.tar.xz) = 52420536 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 2614c41c06c7..bbdd529e26b1 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244081 -SHA256 (KDE/release-service/21.08.0/audiocd-kio-21.08.0.tar.xz) = 3aa5082ff1d20cdb535deb5006f87c855d2cce0618fe5f5e41e7eaf0c50cd78b -SIZE (KDE/release-service/21.08.0/audiocd-kio-21.08.0.tar.xz) = 522936 +TIMESTAMP = 1630583822 +SHA256 (KDE/release-service/21.08.1/audiocd-kio-21.08.1.tar.xz) = 91a24e454acb5a5ee045d0c09b63f48b096ce8b25772f9685153ffeb6f7d1fab +SIZE (KDE/release-service/21.08.1/audiocd-kio-21.08.1.tar.xz) = 523144 diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile index 077043632e09..6000e8cd4044 100644 --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -1,32 +1,28 @@ PORTNAME= elisa DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-applications -PATCH_SITES= https://invent.kde.org/multimedia/elisa/-/commit/ -PATCHFILES= 618cf9b589ef9dd58e3ec3dd7450a80f10e118f8.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= Audio player with QML and KDE Plasma integration LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++14-lang desktop-file-utils gettext kde:5 \ pkgconfig qt:5 tar:xz 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= buildtools_build qmake_build testlib_build \ concurrent core dbus declarative gui multimedia network \ quickcontrols2 sql svg widgets xml 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 67c402a95cc6..63b9e7eb302a 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1629951678 -SHA256 (KDE/release-service/21.08.0/elisa-21.08.0.tar.xz) = d57b46c0d1518b50f2875c5eca20006389f64e91560146fda7f0a87852e7f493 -SIZE (KDE/release-service/21.08.0/elisa-21.08.0.tar.xz) = 1738180 -SHA256 (KDE/release-service/21.08.0/618cf9b589ef9dd58e3ec3dd7450a80f10e118f8.diff) = cbf8f206f5b827caaaa1c7aadb8160f299763e574972ab205fffe4ceab3723c3 -SIZE (KDE/release-service/21.08.0/618cf9b589ef9dd58e3ec3dd7450a80f10e118f8.diff) = 327 +TIMESTAMP = 1630587653 +SHA256 (KDE/release-service/21.08.1/elisa-21.08.1.tar.xz) = f9f92b3e167bf385a6579875edc3358f4ffb2b072d1ab985afed15dea32a798a +SIZE (KDE/release-service/21.08.1/elisa-21.08.1.tar.xz) = 1738088 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 89e9c99ffaf7..304d71a47e8e 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244083 -SHA256 (KDE/release-service/21.08.0/juk-21.08.0.tar.xz) = c5017e4ed567993d052de4c0588cd9457b7992013706e62e1bf9309dfc53098f -SIZE (KDE/release-service/21.08.0/juk-21.08.0.tar.xz) = 2014036 +TIMESTAMP = 1630583824 +SHA256 (KDE/release-service/21.08.1/juk-21.08.1.tar.xz) = cb08fa50dfd2a262ac7fe73912c1f16a40f319a48fdbbc148448347172185860 +SIZE (KDE/release-service/21.08.1/juk-21.08.1.tar.xz) = 2013976 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index e8a137154387..695a47ae28bf 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244084 -SHA256 (KDE/release-service/21.08.0/kmix-21.08.0.tar.xz) = 18977879e11bf1e70cd1d5b5417848c20e40022fed522c95ce58f0a5d516b7ad -SIZE (KDE/release-service/21.08.0/kmix-21.08.0.tar.xz) = 1163440 +TIMESTAMP = 1630583825 +SHA256 (KDE/release-service/21.08.1/kmix-21.08.1.tar.xz) = 6ec70d841101bb3233742c541812265af32c9bdb2cd4f3c157e73d3164588049 +SIZE (KDE/release-service/21.08.1/kmix-21.08.1.tar.xz) = 1163664 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 5061c91f524f..2fffbf010a10 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244085 -SHA256 (KDE/release-service/21.08.0/kwave-21.08.0.tar.xz) = 074bf7b44a7dab14f85d6436383a604625e3fbd8e1c58a0b67aa156a3bf3275e -SIZE (KDE/release-service/21.08.0/kwave-21.08.0.tar.xz) = 6898596 +TIMESTAMP = 1630583826 +SHA256 (KDE/release-service/21.08.1/kwave-21.08.1.tar.xz) = 9463383c6e0f6a25d7bef2ae39842a490c72de4c28614b7b1a3e5d788c9d87b6 +SIZE (KDE/release-service/21.08.1/kwave-21.08.1.tar.xz) = 6899204 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index e556d421d786..6f82138f8cc3 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244086 -SHA256 (KDE/release-service/21.08.0/libkcddb-21.08.0.tar.xz) = fb328c07c5a471ed4eab362daf0c25a016de6c05a0d355268b603e4e494ddf00 -SIZE (KDE/release-service/21.08.0/libkcddb-21.08.0.tar.xz) = 430120 +TIMESTAMP = 1630583827 +SHA256 (KDE/release-service/21.08.1/libkcddb-21.08.1.tar.xz) = f8c756a4832ad4f984c0ec69cc4593cb5265bb4430629048dce9b1ae750e0421 +SIZE (KDE/release-service/21.08.1/libkcddb-21.08.1.tar.xz) = 430208 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 43bbbe494125..e8b7ebc3f08b 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244087 -SHA256 (KDE/release-service/21.08.0/libkcompactdisc-21.08.0.tar.xz) = 3a92155c3d3647a65787fbbedbea175b9aa041faded496f8d52536929fc9ec39 -SIZE (KDE/release-service/21.08.0/libkcompactdisc-21.08.0.tar.xz) = 97140 +TIMESTAMP = 1630583828 +SHA256 (KDE/release-service/21.08.1/libkcompactdisc-21.08.1.tar.xz) = 365e060f396ef6bdfd8f40877e05a53a96fd301d24791d0cab72e3695a4503e1 +SIZE (KDE/release-service/21.08.1/libkcompactdisc-21.08.1.tar.xz) = 97196 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 861dc593bb91..6e8371c74498 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244088 -SHA256 (KDE/release-service/21.08.0/akonadi-21.08.0.tar.xz) = 7a697427e198fcef19718a73f0c4459467e2a3bdc880f63ab46de41802464f62 -SIZE (KDE/release-service/21.08.0/akonadi-21.08.0.tar.xz) = 1607848 +TIMESTAMP = 1630583829 +SHA256 (KDE/release-service/21.08.1/akonadi-21.08.1.tar.xz) = a6d588534579dc6dc4e19399215a1c9e6b802591cdd2165f064359deebd04b09 +SIZE (KDE/release-service/21.08.1/akonadi-21.08.1.tar.xz) = 1607852 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index acf763a2b60e..7737eac5a52f 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244089 -SHA256 (KDE/release-service/21.08.0/akonadi-calendar-tools-21.08.0.tar.xz) = ddedd7bec9674bfef28a65684fbc63becd0c8e94109b973d9ea7d203db4afadf -SIZE (KDE/release-service/21.08.0/akonadi-calendar-tools-21.08.0.tar.xz) = 236428 +TIMESTAMP = 1630583829 +SHA256 (KDE/release-service/21.08.1/akonadi-calendar-tools-21.08.1.tar.xz) = 6fef7da4eda9216eb3f4ee161dce74277af26cb57ae6bb5f66c4f4253a600c49 +SIZE (KDE/release-service/21.08.1/akonadi-calendar-tools-21.08.1.tar.xz) = 236424 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 2581722a5920..d92561509007 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244090 -SHA256 (KDE/release-service/21.08.0/akonadi-import-wizard-21.08.0.tar.xz) = a8e49d801634a2b00f973fa1051c08826f581899d696fb38241f39439f5696dd -SIZE (KDE/release-service/21.08.0/akonadi-import-wizard-21.08.0.tar.xz) = 511040 +TIMESTAMP = 1630583830 +SHA256 (KDE/release-service/21.08.1/akonadi-import-wizard-21.08.1.tar.xz) = 1a5b4c675f34f267f2b00140b4d2997f68a351dc9a0749ba84ca1a2fa3fa16ec +SIZE (KDE/release-service/21.08.1/akonadi-import-wizard-21.08.1.tar.xz) = 511128 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 8c5c17d1049f..073820768e55 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244091 -SHA256 (KDE/release-service/21.08.0/akonadiconsole-21.08.0.tar.xz) = 0b86860fd8ff97c03b6cdf85a20f6b0504f31d3c479f200ec706c5b4b31c006b -SIZE (KDE/release-service/21.08.0/akonadiconsole-21.08.0.tar.xz) = 200736 +TIMESTAMP = 1630583831 +SHA256 (KDE/release-service/21.08.1/akonadiconsole-21.08.1.tar.xz) = d3f9ffbab8193b9838a36d7381cf3275849944b710d3bf04d297bef1cdbaf4b6 +SIZE (KDE/release-service/21.08.1/akonadiconsole-21.08.1.tar.xz) = 200720 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 5707b0166dad..454129c6b58f 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244092 -SHA256 (KDE/release-service/21.08.0/akregator-21.08.0.tar.xz) = 6df9ea5bf442eef839b67d830389ae787746d1c8d7f20e02299a3dadedaeed18 -SIZE (KDE/release-service/21.08.0/akregator-21.08.0.tar.xz) = 2246372 +TIMESTAMP = 1630583832 +SHA256 (KDE/release-service/21.08.1/akregator-21.08.1.tar.xz) = b5c6bbeb9c5ad0ae3d0b55391fa940da084175ffcbd6e6244036efe3464d3b0f +SIZE (KDE/release-service/21.08.1/akregator-21.08.1.tar.xz) = 2246468 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index ad622cd02a84..d6721fa4c3b6 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244093 -SHA256 (KDE/release-service/21.08.0/grantlee-editor-21.08.0.tar.xz) = f937f12783279f596f73373e0ee333071517462e5a881c30ec9dccf4d65fc3c9 -SIZE (KDE/release-service/21.08.0/grantlee-editor-21.08.0.tar.xz) = 110760 +TIMESTAMP = 1630583833 +SHA256 (KDE/release-service/21.08.1/grantlee-editor-21.08.1.tar.xz) = cd8b19f271bb030042e336199f53b2072513708a4714a89e8f12ee6933f5d8d9 +SIZE (KDE/release-service/21.08.1/grantlee-editor-21.08.1.tar.xz) = 110772 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index a6ffa0c4851f..ad08ea7a59ca 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244094 -SHA256 (KDE/release-service/21.08.0/grantleetheme-21.08.0.tar.xz) = 45c5b4435555d8713bf49133304dadd49be940c4cbdc761be8ac13ad2c275493 -SIZE (KDE/release-service/21.08.0/grantleetheme-21.08.0.tar.xz) = 59960 +TIMESTAMP = 1630583834 +SHA256 (KDE/release-service/21.08.1/grantleetheme-21.08.1.tar.xz) = 953eec15e9b47f699d73b1a0346505c4801c1ef5a02ccc3ec8e115b438584c7f +SIZE (KDE/release-service/21.08.1/grantleetheme-21.08.1.tar.xz) = 60012 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index df9f53822fa8..040ac538f87f 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244095 -SHA256 (KDE/release-service/21.08.0/itinerary-21.08.0.tar.xz) = 481df2773b95a9be9ad214f59cedb7eb7f738c0b08036a1535560d233e378efd -SIZE (KDE/release-service/21.08.0/itinerary-21.08.0.tar.xz) = 414320 +TIMESTAMP = 1630583835 +SHA256 (KDE/release-service/21.08.1/itinerary-21.08.1.tar.xz) = da15487913d8a5c61e1a3f5344855fc45a7156f550daacb1f8a279447c380805 +SIZE (KDE/release-service/21.08.1/itinerary-21.08.1.tar.xz) = 415140 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index adf392441e59..0ffe07d92bf3 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,37 +1,37 @@ bin/itinerary lib/libSolidExtras.so %%QT_QMLDIR%%/org/kde/solidextras/libsolidextrasqmlplugin.so %%QT_QMLDIR%%/org/kde/solidextras/qmldir share/applications/org.kde.itinerary.desktop -share/icons/hicolor/48x48/apps/itinerary.svg +share/icons/hicolor/scalable/apps/org.kde.itinerary.svg share/knotifications5/itinerary.notifyrc share/locale/ca/LC_MESSAGES/kde-itinerary.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary.mo share/locale/cs/LC_MESSAGES/kde-itinerary.mo share/locale/de/LC_MESSAGES/kde-itinerary.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary.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.mo share/locale/fr/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo share/locale/ia/LC_MESSAGES/kde-itinerary.mo share/locale/it/LC_MESSAGES/kde-itinerary.mo share/locale/ja/LC_MESSAGES/kde-itinerary.mo share/locale/ko/LC_MESSAGES/kde-itinerary.mo share/locale/lt/LC_MESSAGES/kde-itinerary.mo share/locale/nl/LC_MESSAGES/kde-itinerary.mo share/locale/pl/LC_MESSAGES/kde-itinerary.mo share/locale/pt/LC_MESSAGES/kde-itinerary.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.mo share/locale/sl/LC_MESSAGES/kde-itinerary.mo share/locale/sv/LC_MESSAGES/kde-itinerary.mo share/locale/tr/LC_MESSAGES/kde-itinerary.mo share/locale/uk/LC_MESSAGES/kde-itinerary.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary.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/distinfo b/deskutils/kaddressbook/distinfo index b0ab0a58d4e7..7ea28b377a6f 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244096 -SHA256 (KDE/release-service/21.08.0/kaddressbook-21.08.0.tar.xz) = c2db9596b4fc56afe2582789c7ddb4a74ac75265ec07a1b879a13312f0a611fa -SIZE (KDE/release-service/21.08.0/kaddressbook-21.08.0.tar.xz) = 3325940 +TIMESTAMP = 1630583836 +SHA256 (KDE/release-service/21.08.1/kaddressbook-21.08.1.tar.xz) = abe738d5e47b04a10d203c75fd78d7cffbe91dc6e1c40c31fd9a8064d5ea9916 +SIZE (KDE/release-service/21.08.1/kaddressbook-21.08.1.tar.xz) = 3325928 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 3bedfc3856fe..426f73bfca86 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244097 -SHA256 (KDE/release-service/21.08.0/kalarm-21.08.0.tar.xz) = b027fbc459df72a65dab16f14fce277287b67d863b625518c23da9efdb90b2d6 -SIZE (KDE/release-service/21.08.0/kalarm-21.08.0.tar.xz) = 2153904 +TIMESTAMP = 1630583837 +SHA256 (KDE/release-service/21.08.1/kalarm-21.08.1.tar.xz) = d01b474b8ee918f2a1804e4be52bb31eae91d329f242461ed08ac76b64300421 +SIZE (KDE/release-service/21.08.1/kalarm-21.08.1.tar.xz) = 2155996 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 0880bd421c97..30d2004701e8 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244098 -SHA256 (KDE/release-service/21.08.0/kcharselect-21.08.0.tar.xz) = 507d1702b0247481313276d9d6d7a1130db2f4ef4cb0e6cf53d99fa2e329e69b -SIZE (KDE/release-service/21.08.0/kcharselect-21.08.0.tar.xz) = 369268 +TIMESTAMP = 1630583838 +SHA256 (KDE/release-service/21.08.1/kcharselect-21.08.1.tar.xz) = f9234db19f9923f141f941ba66d2e0c6221d5214e318a0e9aa7304f699af7061 +SIZE (KDE/release-service/21.08.1/kcharselect-21.08.1.tar.xz) = 369272 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 42e900f7e749..00b4a1e3ec52 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244099 -SHA256 (KDE/release-service/21.08.0/kdeconnect-kde-21.08.0.tar.xz) = 9a0a31dd1af88735edbb06cfe7e11f4a42b7b31f12afa79c6e7479130060b1e2 -SIZE (KDE/release-service/21.08.0/kdeconnect-kde-21.08.0.tar.xz) = 589272 +TIMESTAMP = 1630583838 +SHA256 (KDE/release-service/21.08.1/kdeconnect-kde-21.08.1.tar.xz) = 6330f74b432ecead1f99f8c74dcc24fd97672ca7009267569ff3bceeb3fedc06 +SIZE (KDE/release-service/21.08.1/kdeconnect-kde-21.08.1.tar.xz) = 589304 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 32d0e44a2394..cbcb0d8a226c 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244100 -SHA256 (KDE/release-service/21.08.0/kdepim-addons-21.08.0.tar.xz) = c224dce2b422e10ea7d908070549dcf7ce956f546ed440d333ee1bdb7f086e39 -SIZE (KDE/release-service/21.08.0/kdepim-addons-21.08.0.tar.xz) = 2278212 +TIMESTAMP = 1630583839 +SHA256 (KDE/release-service/21.08.1/kdepim-addons-21.08.1.tar.xz) = e86f9c697591ef89d771c263ba5c74ea8f72ad22068ecbeb5a29416931937723 +SIZE (KDE/release-service/21.08.1/kdepim-addons-21.08.1.tar.xz) = 2278128 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 4b2a5d2bf8ae..4b4b7a61137e 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244101 -SHA256 (KDE/release-service/21.08.0/kdepim-runtime-21.08.0.tar.xz) = ba8f2678f2a878d2fb08699bdeda2188ce54a5e9137c2e97bc282a8fb642ecdb -SIZE (KDE/release-service/21.08.0/kdepim-runtime-21.08.0.tar.xz) = 1822156 +TIMESTAMP = 1630583840 +SHA256 (KDE/release-service/21.08.1/kdepim-runtime-21.08.1.tar.xz) = a9ee71148307ad532db409367b9742c05cb75d885fc2b52fffb740ed75d9262a +SIZE (KDE/release-service/21.08.1/kdepim-runtime-21.08.1.tar.xz) = 1822704 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 475b045220b3..990db2a4aed6 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244102 -SHA256 (KDE/release-service/21.08.0/keditbookmarks-21.08.0.tar.xz) = 0ee5639aef132899f0de909db8c56536b421273d7dee494fda24efc7410316fc -SIZE (KDE/release-service/21.08.0/keditbookmarks-21.08.0.tar.xz) = 202156 +TIMESTAMP = 1630583841 +SHA256 (KDE/release-service/21.08.1/keditbookmarks-21.08.1.tar.xz) = 9cf82962dfe24cc8986e5732fdc3cefc620c15d77a2fa2554e262d4a072d3549 +SIZE (KDE/release-service/21.08.1/keditbookmarks-21.08.1.tar.xz) = 202368 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 6e8f393a79b2..92ced9f4435b 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244103 -SHA256 (KDE/release-service/21.08.0/kfind-21.08.0.tar.xz) = 8f0a1609f2d6be32e29cb2c427480e05890e3dfba56a25510df337a79d304461 -SIZE (KDE/release-service/21.08.0/kfind-21.08.0.tar.xz) = 286640 +TIMESTAMP = 1630583842 +SHA256 (KDE/release-service/21.08.1/kfind-21.08.1.tar.xz) = ae8c19d207dd1e154f92676ae52ff1b4ddac78cb72157552d094db9f178d7534 +SIZE (KDE/release-service/21.08.1/kfind-21.08.1.tar.xz) = 286596 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 66204f9fb1c2..d4e8c51d1225 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244105 -SHA256 (KDE/release-service/21.08.0/kmail-account-wizard-21.08.0.tar.xz) = 5cd4ba2b893c87136f88954caa758856b7a8d6e27e060046c9e9cad88be85d93 -SIZE (KDE/release-service/21.08.0/kmail-account-wizard-21.08.0.tar.xz) = 165612 +TIMESTAMP = 1630583844 +SHA256 (KDE/release-service/21.08.1/kmail-account-wizard-21.08.1.tar.xz) = 54cd5eb6388cb9fcf7a290200a9f3aca7af29ba2fd584b316785967bc62115f7 +SIZE (KDE/release-service/21.08.1/kmail-account-wizard-21.08.1.tar.xz) = 165916 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index bfef542f8a5f..337efaa494d6 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244104 -SHA256 (KDE/release-service/21.08.0/kmail-21.08.0.tar.xz) = 299486a0a7ffe2782c07b8a74612086a36824817c494c6cde88df0060b7dd4ca -SIZE (KDE/release-service/21.08.0/kmail-21.08.0.tar.xz) = 6920752 +TIMESTAMP = 1630583843 +SHA256 (KDE/release-service/21.08.1/kmail-21.08.1.tar.xz) = 595e895cb5ffc2e1e3d7da4a399477525fd66265bf09f67ae13b3b2b28620723 +SIZE (KDE/release-service/21.08.1/kmail-21.08.1.tar.xz) = 6925836 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index 31304ed113d3..f1c14a9aee01 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,437 +1,441 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_mailmerge_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact5/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_summaryplugin.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_accounts.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_appearance.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_composer.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_misc.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_plugins.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_security.so %%QT_PLUGINDIR%%/pim/kcms/summary/kcmkmailsummary.so %%QT_PLUGINDIR%%/pim/kcms/summary/kcmkontactsummary.so share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/mailmergeagent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.ktnef.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd share/kmail2/pics/pgp-keys.png share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_mailmerge_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/az/LC_MESSAGES/kmail.mo share/locale/be/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/da/LC_MESSAGES/kmail-refresh-settings.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/el/LC_MESSAGES/kmail-refresh-settings.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/et/LC_MESSAGES/kmail-refresh-settings.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo +share/locale/eu/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_mailmerge_agent.mo +share/locale/eu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/se/LC_MESSAGES/kmail.mo share/locale/se/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sq/LC_MESSAGES/kmail.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/ta/LC_MESSAGES/kmail.mo share/locale/tg/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index e3ce3d24a5a2..18f058c77cb3 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244106 -SHA256 (KDE/release-service/21.08.0/knotes-21.08.0.tar.xz) = 8eb65df5c7b4a457c9bd3da36021feef38afad972253a9c08aca9828eade525c -SIZE (KDE/release-service/21.08.0/knotes-21.08.0.tar.xz) = 341968 +TIMESTAMP = 1630583845 +SHA256 (KDE/release-service/21.08.1/knotes-21.08.1.tar.xz) = fbed9c7a7170b53a4f77446adeb235c9cd73d2ce8cfe89ab385f7f01dc1965ab +SIZE (KDE/release-service/21.08.1/knotes-21.08.1.tar.xz) = 341936 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 042cb6438ff0..47f44677591a 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244107 -SHA256 (KDE/release-service/21.08.0/kontact-21.08.0.tar.xz) = 51d7caaec6920115d097281f956fd6f62921f26a675af369bbaf469b4094bbad -SIZE (KDE/release-service/21.08.0/kontact-21.08.0.tar.xz) = 809352 +TIMESTAMP = 1630583846 +SHA256 (KDE/release-service/21.08.1/kontact-21.08.1.tar.xz) = ef67bb6b97d07b5f4f6e8fd199cf787eb0b4f2f2e5d4ab8392dfc2c3eacc1eab +SIZE (KDE/release-service/21.08.1/kontact-21.08.1.tar.xz) = 809428 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 6df70d3db5e1..200fee18ecef 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244108 -SHA256 (KDE/release-service/21.08.0/korganizer-21.08.0.tar.xz) = f57cb016c9931b7d555b548758a251643fc4915df506c3fee6ee691c328dbfb4 -SIZE (KDE/release-service/21.08.0/korganizer-21.08.0.tar.xz) = 2398428 +TIMESTAMP = 1630583847 +SHA256 (KDE/release-service/21.08.1/korganizer-21.08.1.tar.xz) = 7903af441447066a5a094a3beeb5b9222ff86e0e5fd7d3ac5d86480bd8880574 +SIZE (KDE/release-service/21.08.1/korganizer-21.08.1.tar.xz) = 2395920 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 055fa68d0f07..bf87a39b6f80 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244109 -SHA256 (KDE/release-service/21.08.0/kruler-21.08.0.tar.xz) = a4d6e5a8a09ce61139f92d1eaae07d88a71090d1d144f5845b915643ea58e7af -SIZE (KDE/release-service/21.08.0/kruler-21.08.0.tar.xz) = 277044 +TIMESTAMP = 1630583848 +SHA256 (KDE/release-service/21.08.1/kruler-21.08.1.tar.xz) = 644b37d91b594c927606b9408058db8a6c31a0545b3e92805a5d72f9cf84e850 +SIZE (KDE/release-service/21.08.1/kruler-21.08.1.tar.xz) = 276980 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 607de68dd72d..b78d8b3bdd33 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244110 -SHA256 (KDE/release-service/21.08.0/libkdepim-21.08.0.tar.xz) = e36ac18c55213f7f5f79f3fb7d3e1f518ace37f1c561a7fbcc8eeb470ffebebf -SIZE (KDE/release-service/21.08.0/libkdepim-21.08.0.tar.xz) = 253076 +TIMESTAMP = 1630583848 +SHA256 (KDE/release-service/21.08.1/libkdepim-21.08.1.tar.xz) = d0859436f3542e8097a61e7b63bbf8f81197b464c8ce6670822dcae0fe49eb83 +SIZE (KDE/release-service/21.08.1/libkdepim-21.08.1.tar.xz) = 253212 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 53472f9dbcb8..f5f3e90c3c19 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244111 -SHA256 (KDE/release-service/21.08.0/mbox-importer-21.08.0.tar.xz) = d593d574e25b56f79b2ab6e1b5b98f570e9bdbec0d254cd65e911db137f91772 -SIZE (KDE/release-service/21.08.0/mbox-importer-21.08.0.tar.xz) = 28344 +TIMESTAMP = 1630583849 +SHA256 (KDE/release-service/21.08.1/mbox-importer-21.08.1.tar.xz) = 734a2bfd4f380f0293a94f03fe41cbe9b61ba7f8fd274b4fdc20235541f8af1a +SIZE (KDE/release-service/21.08.1/mbox-importer-21.08.1.tar.xz) = 28644 diff --git a/deskutils/mbox-importer/pkg-plist b/deskutils/mbox-importer/pkg-plist index 0071be1d46a7..175ffe04b093 100644 --- a/deskutils/mbox-importer/pkg-plist +++ b/deskutils/mbox-importer/pkg-plist @@ -1,43 +1,44 @@ bin/mboximporter share/applications/org.kde.mboximporter.desktop share/locale/ar/LC_MESSAGES/mboximporter.mo share/locale/bg/LC_MESSAGES/mboximporter.mo share/locale/bs/LC_MESSAGES/mboximporter.mo share/locale/ca/LC_MESSAGES/mboximporter.mo share/locale/ca@valencia/LC_MESSAGES/mboximporter.mo share/locale/cs/LC_MESSAGES/mboximporter.mo share/locale/da/LC_MESSAGES/mboximporter.mo share/locale/de/LC_MESSAGES/mboximporter.mo share/locale/el/LC_MESSAGES/mboximporter.mo share/locale/en_GB/LC_MESSAGES/mboximporter.mo share/locale/es/LC_MESSAGES/mboximporter.mo share/locale/et/LC_MESSAGES/mboximporter.mo +share/locale/eu/LC_MESSAGES/mboximporter.mo share/locale/fi/LC_MESSAGES/mboximporter.mo share/locale/fr/LC_MESSAGES/mboximporter.mo share/locale/gl/LC_MESSAGES/mboximporter.mo share/locale/hi/LC_MESSAGES/mboximporter.mo share/locale/hu/LC_MESSAGES/mboximporter.mo share/locale/ia/LC_MESSAGES/mboximporter.mo share/locale/it/LC_MESSAGES/mboximporter.mo share/locale/ja/LC_MESSAGES/mboximporter.mo share/locale/kk/LC_MESSAGES/mboximporter.mo share/locale/ko/LC_MESSAGES/mboximporter.mo share/locale/lt/LC_MESSAGES/mboximporter.mo share/locale/nb/LC_MESSAGES/mboximporter.mo share/locale/nds/LC_MESSAGES/mboximporter.mo share/locale/nl/LC_MESSAGES/mboximporter.mo share/locale/nn/LC_MESSAGES/mboximporter.mo share/locale/pl/LC_MESSAGES/mboximporter.mo share/locale/pt/LC_MESSAGES/mboximporter.mo share/locale/pt_BR/LC_MESSAGES/mboximporter.mo share/locale/ro/LC_MESSAGES/mboximporter.mo share/locale/ru/LC_MESSAGES/mboximporter.mo share/locale/sk/LC_MESSAGES/mboximporter.mo share/locale/sl/LC_MESSAGES/mboximporter.mo share/locale/sr/LC_MESSAGES/mboximporter.mo share/locale/sv/LC_MESSAGES/mboximporter.mo share/locale/tr/LC_MESSAGES/mboximporter.mo share/locale/ug/LC_MESSAGES/mboximporter.mo share/locale/uk/LC_MESSAGES/mboximporter.mo share/locale/zh_CN/LC_MESSAGES/mboximporter.mo share/locale/zh_TW/LC_MESSAGES/mboximporter.mo diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 317a99a36a38..92ebbbf5bdb3 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244112 -SHA256 (KDE/release-service/21.08.0/pim-data-exporter-21.08.0.tar.xz) = 565f44d9ade051e0a0cd093abb2f9808a6b4d1d770187aed88ba95f755a3ac7d -SIZE (KDE/release-service/21.08.0/pim-data-exporter-21.08.0.tar.xz) = 397188 +TIMESTAMP = 1630583850 +SHA256 (KDE/release-service/21.08.1/pim-data-exporter-21.08.1.tar.xz) = adf67a01dd44357e11c068d0865891a6bef2529f70127c3a8b087300d281a7ef +SIZE (KDE/release-service/21.08.1/pim-data-exporter-21.08.1.tar.xz) = 397276 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index a51e6722ab4f..5f171aea23a6 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244113 -SHA256 (KDE/release-service/21.08.0/pim-sieve-editor-21.08.0.tar.xz) = 38b8c8f7fb68086469ad64a7477f0893768d0926e6ab370c7c0e197b30470a01 -SIZE (KDE/release-service/21.08.0/pim-sieve-editor-21.08.0.tar.xz) = 457440 +TIMESTAMP = 1630583851 +SHA256 (KDE/release-service/21.08.1/pim-sieve-editor-21.08.1.tar.xz) = 19e8bc92e40a159aca5ec10efafa82604518e9d4e916e0a4bb4f4c41e114065e +SIZE (KDE/release-service/21.08.1/pim-sieve-editor-21.08.1.tar.xz) = 457496 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 05c7b09594e1..5f9b8ca8fc68 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244114 -SHA256 (KDE/release-service/21.08.0/cervisia-21.08.0.tar.xz) = d57ae4db3c4ead55bdd111f4c769c6ba66f0e006f590777e129f0a08b2a91c81 -SIZE (KDE/release-service/21.08.0/cervisia-21.08.0.tar.xz) = 1911280 +TIMESTAMP = 1630583852 +SHA256 (KDE/release-service/21.08.1/cervisia-21.08.1.tar.xz) = 54d8038b5ae1b1b27a066d888b47a18df4421716534cccd8f6fdb7fb1f055035 +SIZE (KDE/release-service/21.08.1/cervisia-21.08.1.tar.xz) = 1911348 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 6f935c21dc18..81b8a0f415d3 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244115 -SHA256 (KDE/release-service/21.08.0/dolphin-plugins-21.08.0.tar.xz) = 082e39843d6b9e06bb495617ad19e161e78a272600a1ea0fdfaefc77fbd220b4 -SIZE (KDE/release-service/21.08.0/dolphin-plugins-21.08.0.tar.xz) = 252708 +TIMESTAMP = 1630583853 +SHA256 (KDE/release-service/21.08.1/dolphin-plugins-21.08.1.tar.xz) = 39234026a703e7a1275950334ce31b924571ea27b1d538eeb3b2014fc7c9d53e +SIZE (KDE/release-service/21.08.1/dolphin-plugins-21.08.1.tar.xz) = 252604 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 9e97a1f22dcd..0bbe6ac97640 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244116 -SHA256 (KDE/release-service/21.08.0/kapptemplate-21.08.0.tar.xz) = 7dfa7b27a19a51ae9e91c05c869f011e79c051a82780fdc0ad1547998006f126 -SIZE (KDE/release-service/21.08.0/kapptemplate-21.08.0.tar.xz) = 334052 +TIMESTAMP = 1630583854 +SHA256 (KDE/release-service/21.08.1/kapptemplate-21.08.1.tar.xz) = 852fd768924633c71c530e2ce0d1aa926410efd63771015fbc382591dba034b3 +SIZE (KDE/release-service/21.08.1/kapptemplate-21.08.1.tar.xz) = 334008 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index db7054fdf11a..1464c3144c2e 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244117 -SHA256 (KDE/release-service/21.08.0/kcachegrind-21.08.0.tar.xz) = 7d09007ed2e91fe54e45956f40551938e528238e4f4c0a84ca6285ea497125af -SIZE (KDE/release-service/21.08.0/kcachegrind-21.08.0.tar.xz) = 854808 +TIMESTAMP = 1630583855 +SHA256 (KDE/release-service/21.08.1/kcachegrind-21.08.1.tar.xz) = fb8bbbba0178f33c8a4bdace2fdfe747036822b5fa9013b5905a1de5198def27 +SIZE (KDE/release-service/21.08.1/kcachegrind-21.08.1.tar.xz) = 854804 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 81d17fda30a2..166a96c01e3b 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244117 -SHA256 (KDE/release-service/21.08.0/kde-dev-scripts-21.08.0.tar.xz) = 39d7dee70df1809eb2296cb541c742b94866d3679cf3c51b06cd6c8aae1b10ed -SIZE (KDE/release-service/21.08.0/kde-dev-scripts-21.08.0.tar.xz) = 366272 +TIMESTAMP = 1630583855 +SHA256 (KDE/release-service/21.08.1/kde-dev-scripts-21.08.1.tar.xz) = cc7c5e7eccf33c5a2751f1c6c588b14a81ae584229e525337bb8efdb8fc460df +SIZE (KDE/release-service/21.08.1/kde-dev-scripts-21.08.1.tar.xz) = 366204 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 6064b4c48706..448432859eac 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244118 -SHA256 (KDE/release-service/21.08.0/kde-dev-utils-21.08.0.tar.xz) = 9525394f4bc987345c71f30c163161ddd29e545794b1087f1b589fee227f8c9d -SIZE (KDE/release-service/21.08.0/kde-dev-utils-21.08.0.tar.xz) = 68160 +TIMESTAMP = 1630583856 +SHA256 (KDE/release-service/21.08.1/kde-dev-utils-21.08.1.tar.xz) = d498330b7e84892f56a82cda28fa662e74c5c746f8cc882f027c23d8cb507a0a +SIZE (KDE/release-service/21.08.1/kde-dev-utils-21.08.1.tar.xz) = 68656 diff --git a/devel/kde-dev-utils/pkg-plist b/devel/kde-dev-utils/pkg-plist index 3ee91128baf1..8ba615fe40ba 100644 --- a/devel/kde-dev-utils/pkg-plist +++ b/devel/kde-dev-utils/pkg-plist @@ -1,114 +1,116 @@ bin/kpartloader bin/kuiviewer %%QT_PLUGINDIR%%/kf5/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/128x128/apps/kuiviewer.png share/icons/hicolor/16x16/apps/kuiviewer.png share/icons/hicolor/32x32/apps/kuiviewer.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/64x64/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg share/kservices5/designerthumbnail.desktop share/kservices5/kuiviewer_part.desktop share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/az/LC_MESSAGES/kpartloader.mo share/locale/az/LC_MESSAGES/kuiviewer.mo share/locale/be/LC_MESSAGES/kuiviewer.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo share/locale/bs/LC_MESSAGES/kpartloader.mo share/locale/bs/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kpartloader.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca@valencia/LC_MESSAGES/kpartloader.mo share/locale/ca@valencia/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kpartloader.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo share/locale/hr/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kuiviewer.mo +share/locale/ia/LC_MESSAGES/kpartloader.mo +share/locale/ia/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kpartloader.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/kk/LC_MESSAGES/kpartloader.mo share/locale/kk/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kpartloader.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/ro/LC_MESSAGES/kpartloader.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/se/LC_MESSAGES/kuiviewer.mo share/locale/sk/LC_MESSAGES/kpartloader.mo share/locale/sk/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kpartloader.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sq/LC_MESSAGES/kpartloader.mo share/locale/sq/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/ta/LC_MESSAGES/kuiviewer.mo share/locale/tg/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/ug/LC_MESSAGES/kpartloader.mo share/locale/ug/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo share/metainfo/org.kde.kuiviewer.metainfo.xml share/metainfo/org.kde.kuiviewerpart.metainfo.xml diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 5ef1f1287c5b..14fbed3d717d 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244119 -SHA256 (KDE/release-service/21.08.0/kdesdk-thumbnailers-21.08.0.tar.xz) = 8f827051e2438a236091260e720d0e244d69f7ebd17fbe519f55246e7bacb658 -SIZE (KDE/release-service/21.08.0/kdesdk-thumbnailers-21.08.0.tar.xz) = 26100 +TIMESTAMP = 1630583857 +SHA256 (KDE/release-service/21.08.1/kdesdk-thumbnailers-21.08.1.tar.xz) = 46ce413ee418ab26833432742c42ace956ea1e642b28c7525e787db7c71570b3 +SIZE (KDE/release-service/21.08.1/kdesdk-thumbnailers-21.08.1.tar.xz) = 26124 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 2278c4d2a277..4d995f1af889 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244120 -SHA256 (KDE/release-service/21.08.0/kio-extras-21.08.0.tar.xz) = bd93d748c2883ff4cd64543516bbc90a66744db7b036075861e142d1a655486d -SIZE (KDE/release-service/21.08.0/kio-extras-21.08.0.tar.xz) = 626644 +TIMESTAMP = 1630583858 +SHA256 (KDE/release-service/21.08.1/kio-extras-21.08.1.tar.xz) = 08198b6ae5b91b23403b7fd7d0482ac699285221dd9a101f8bff99c218688f72 +SIZE (KDE/release-service/21.08.1/kio-extras-21.08.1.tar.xz) = 626992 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 3fdf0cdf9260..5d71c36de9e5 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244121 -SHA256 (KDE/release-service/21.08.0/kirigami-gallery-21.08.0.tar.xz) = 487753e629565953799050f4bfaa8bbbc53f7c352127c82ebf02d595155dc4e0 -SIZE (KDE/release-service/21.08.0/kirigami-gallery-21.08.0.tar.xz) = 329200 +TIMESTAMP = 1630583859 +SHA256 (KDE/release-service/21.08.1/kirigami-gallery-21.08.1.tar.xz) = 6d2bbf0390ee4265f03bfa56fec339988a9f77d10dde0a6103af03fc59516135 +SIZE (KDE/release-service/21.08.1/kirigami-gallery-21.08.1.tar.xz) = 329200 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 6be95a73d0e7..1035768b1dde 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244122 -SHA256 (KDE/release-service/21.08.0/kpublictransport-21.08.0.tar.xz) = a265c8ae39da47dfe14189da588db20bbe179ebd20abe953f9ef889f40c9dead -SIZE (KDE/release-service/21.08.0/kpublictransport-21.08.0.tar.xz) = 407844 +TIMESTAMP = 1630583860 +SHA256 (KDE/release-service/21.08.1/kpublictransport-21.08.1.tar.xz) = 1a93ea85fe0426f88ac93d77a7b202119a0a8a0bde53489af95161f873d36bb5 +SIZE (KDE/release-service/21.08.1/kpublictransport-21.08.1.tar.xz) = 407848 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 25777c4cfa50..8f2bcafdc643 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244123 -SHA256 (KDE/release-service/21.08.0/lokalize-21.08.0.tar.xz) = 03a1b47ad320bea47a6bbb9b80c13dd480400e7fcde07d4c8379f95295db9e57 -SIZE (KDE/release-service/21.08.0/lokalize-21.08.0.tar.xz) = 2035540 +TIMESTAMP = 1630583861 +SHA256 (KDE/release-service/21.08.1/lokalize-21.08.1.tar.xz) = f3e84ed3e14db0b5e18cfc45871ce5e481bc9555a8513ce6bb32593e73500746 +SIZE (KDE/release-service/21.08.1/lokalize-21.08.1.tar.xz) = 2036620 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index bf4ad20c2534..474f65fedb61 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244124 -SHA256 (KDE/release-service/21.08.0/poxml-21.08.0.tar.xz) = a91a82053e4a4f739a7969b48e4d8729a4ca0622d459432f9b56c49900b66371 -SIZE (KDE/release-service/21.08.0/poxml-21.08.0.tar.xz) = 43528 +TIMESTAMP = 1630583862 +SHA256 (KDE/release-service/21.08.1/poxml-21.08.1.tar.xz) = 952b858ce9dbb6bdb1ff79fac8dc1834c65dcf823a284f6a38532e0eebca9c83 +SIZE (KDE/release-service/21.08.1/poxml-21.08.1.tar.xz) = 43528 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 26f9aa6a565e..208185e3c65d 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244125 -SHA256 (KDE/release-service/21.08.0/umbrello-21.08.0.tar.xz) = 8005661ae474d2fb205ee4eec5b496a363b8530ad5b005052d3694f58b189e5a -SIZE (KDE/release-service/21.08.0/umbrello-21.08.0.tar.xz) = 5650084 +TIMESTAMP = 1630583862 +SHA256 (KDE/release-service/21.08.1/umbrello-21.08.1.tar.xz) = ec59d5a01e7bb216fab97dadba02018a7de8b88c144553da87f9fae6231c8e74 +SIZE (KDE/release-service/21.08.1/umbrello-21.08.1.tar.xz) = 5650000 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index daeff4aec615..40230f2040d4 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244126 -SHA256 (KDE/release-service/21.08.0/kate-21.08.0.tar.xz) = 49272edb8b649c4ac558bd5e10b891a7c9807075007654397d74cc2b6cd567e8 -SIZE (KDE/release-service/21.08.0/kate-21.08.0.tar.xz) = 7285604 +TIMESTAMP = 1630583863 +SHA256 (KDE/release-service/21.08.1/kate-21.08.1.tar.xz) = 1fccbe483c2562fd870288f01ebb39578880e28fd05193edda45ae573a72334d +SIZE (KDE/release-service/21.08.1/kate-21.08.1.tar.xz) = 7288904 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index af7755cf31e7..04beee99cc60 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244127 -SHA256 (KDE/release-service/21.08.0/blinken-21.08.0.tar.xz) = 45288d7d4d7a03af621edd766fdb3bc8c86673cbaba2f42088778eb916d19844 -SIZE (KDE/release-service/21.08.0/blinken-21.08.0.tar.xz) = 2713576 +TIMESTAMP = 1630583864 +SHA256 (KDE/release-service/21.08.1/blinken-21.08.1.tar.xz) = 07414915ed5cac0419f84889138a6bb6b7bdbff56049c67f6cc472261e8fd3ad +SIZE (KDE/release-service/21.08.1/blinken-21.08.1.tar.xz) = 2713964 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 5ec0112aaba5..5d9ceaf18537 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244128 -SHA256 (KDE/release-service/21.08.0/bomber-21.08.0.tar.xz) = efa142b1ca56061493f7bf4abb3c3bf2c88c61275dca164d35ee6fc9daef7ee6 -SIZE (KDE/release-service/21.08.0/bomber-21.08.0.tar.xz) = 830724 +TIMESTAMP = 1630583865 +SHA256 (KDE/release-service/21.08.1/bomber-21.08.1.tar.xz) = 680c874afbe93ecc2ed7b8865bac0ffd15822631b95fbbd54d3e38cd97b5fade +SIZE (KDE/release-service/21.08.1/bomber-21.08.1.tar.xz) = 830624 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 17835c9b9786..c1fa76bea5fb 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244129 -SHA256 (KDE/release-service/21.08.0/bovo-21.08.0.tar.xz) = 190a9b2244de7bf4df2602b8cd58acb2c1c83cfd9a28bc34082a0ec11970f825 -SIZE (KDE/release-service/21.08.0/bovo-21.08.0.tar.xz) = 208768 +TIMESTAMP = 1630583866 +SHA256 (KDE/release-service/21.08.1/bovo-21.08.1.tar.xz) = 4aa5c5529c1793d31ccd08ffee59ab5e41420f5e091e44f0717b510674334963 +SIZE (KDE/release-service/21.08.1/bovo-21.08.1.tar.xz) = 208820 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 00da51c6538a..1d89d1acc85e 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244130 -SHA256 (KDE/release-service/21.08.0/granatier-21.08.0.tar.xz) = 6bf9ea18c8eba55bff9655bc6ec76e81d5f759a7443200ce21dc995899743685 -SIZE (KDE/release-service/21.08.0/granatier-21.08.0.tar.xz) = 2096532 +TIMESTAMP = 1630583867 +SHA256 (KDE/release-service/21.08.1/granatier-21.08.1.tar.xz) = 9b829bcbc5939c257fe7a095c5159794f9793ee7494d052204a3a010e0dcebd8 +SIZE (KDE/release-service/21.08.1/granatier-21.08.1.tar.xz) = 2096100 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 91a69eb8019f..12b4e07b2cfe 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244131 -SHA256 (KDE/release-service/21.08.0/kanagram-21.08.0.tar.xz) = 3f721216f0ef3800f94d29bc8ce2259ec5596a6ca028934c5a7d05ac73c867aa -SIZE (KDE/release-service/21.08.0/kanagram-21.08.0.tar.xz) = 8039120 +TIMESTAMP = 1630583868 +SHA256 (KDE/release-service/21.08.1/kanagram-21.08.1.tar.xz) = e1cb4fed5af1711abd567e0aa0bdd7a647b665ac279f8075585846d1fcab19cb +SIZE (KDE/release-service/21.08.1/kanagram-21.08.1.tar.xz) = 8039640 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 4f8239154c5c..40896f4f7283 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244132 -SHA256 (KDE/release-service/21.08.0/kapman-21.08.0.tar.xz) = 655324811b544f7d4701a065da9b0e8414ad68044c289d722d0f91188dc12487 -SIZE (KDE/release-service/21.08.0/kapman-21.08.0.tar.xz) = 2471960 +TIMESTAMP = 1630583869 +SHA256 (KDE/release-service/21.08.1/kapman-21.08.1.tar.xz) = 959fbbe3f003d2a016261f25e0520365fd4da7ce2f39aa377748918abb39431c +SIZE (KDE/release-service/21.08.1/kapman-21.08.1.tar.xz) = 2471996 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index e9815515659e..df47c57c9d0f 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244133 -SHA256 (KDE/release-service/21.08.0/katomic-21.08.0.tar.xz) = 9c7beee74592be7b66d1ab4158334a03f68029498016b231ca6d7eb6e227bc7c -SIZE (KDE/release-service/21.08.0/katomic-21.08.0.tar.xz) = 1434180 +TIMESTAMP = 1630583870 +SHA256 (KDE/release-service/21.08.1/katomic-21.08.1.tar.xz) = eb0e543e0bfb115d678de4104a10df8c62027e7edcb0025b5251f0fb35d72595 +SIZE (KDE/release-service/21.08.1/katomic-21.08.1.tar.xz) = 1434120 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index e3fc943e9a5c..c40bc1bdc59b 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244134 -SHA256 (KDE/release-service/21.08.0/kblackbox-21.08.0.tar.xz) = 3e1823e24e94aba27086bcf0365b4ad400f1659c33853b4098ef5d733f623063 -SIZE (KDE/release-service/21.08.0/kblackbox-21.08.0.tar.xz) = 523756 +TIMESTAMP = 1630583871 +SHA256 (KDE/release-service/21.08.1/kblackbox-21.08.1.tar.xz) = ad7a66996e6280e2a46a6dcda26ee8f07b5ccfe85e690abe4735d4ca0d6a3605 +SIZE (KDE/release-service/21.08.1/kblackbox-21.08.1.tar.xz) = 523684 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 1be9c12a82bc..2085b90be018 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244135 -SHA256 (KDE/release-service/21.08.0/kblocks-21.08.0.tar.xz) = 083894f4def771ae116b0c5f635f59cab6d51993913d5d281e0834f79ad0c3c5 -SIZE (KDE/release-service/21.08.0/kblocks-21.08.0.tar.xz) = 2099428 +TIMESTAMP = 1630583871 +SHA256 (KDE/release-service/21.08.1/kblocks-21.08.1.tar.xz) = b26ff8fda06647ab7de67b16f4425178f383a9365c4d833c2a9afd43679c2fbf +SIZE (KDE/release-service/21.08.1/kblocks-21.08.1.tar.xz) = 2099588 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 8dd36a5fcf34..8685d0ddcff3 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244136 -SHA256 (KDE/release-service/21.08.0/kbounce-21.08.0.tar.xz) = 881c11d350e1d199217bc8f6e92fbe250be8a1dff98029e2322b7de0a620022d -SIZE (KDE/release-service/21.08.0/kbounce-21.08.0.tar.xz) = 3527124 +TIMESTAMP = 1630583872 +SHA256 (KDE/release-service/21.08.1/kbounce-21.08.1.tar.xz) = 3dfeb2bd32ff903483f3bfa8220257077ef76c2275da6b8c914956f0bf1f4da3 +SIZE (KDE/release-service/21.08.1/kbounce-21.08.1.tar.xz) = 3528108 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index fbbd17e90884..788489a5f74d 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244137 -SHA256 (KDE/release-service/21.08.0/kbreakout-21.08.0.tar.xz) = 76eb4052243153410b8b86a6f9b9c0196bed6ada08027d5d8c87962d7d9348df -SIZE (KDE/release-service/21.08.0/kbreakout-21.08.0.tar.xz) = 2551952 +TIMESTAMP = 1630583873 +SHA256 (KDE/release-service/21.08.1/kbreakout-21.08.1.tar.xz) = 0f2c8d85e6fe671381936d13e798b72fa9c2039938862f446fd0356a44e2c408 +SIZE (KDE/release-service/21.08.1/kbreakout-21.08.1.tar.xz) = 2554184 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index e8f5699d32cf..528fb0421c03 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244138 -SHA256 (KDE/release-service/21.08.0/kdiamond-21.08.0.tar.xz) = b5ce310a866406f2e517c271163c0d6d57c1d58539d32182b80af1c634979314 -SIZE (KDE/release-service/21.08.0/kdiamond-21.08.0.tar.xz) = 4699884 +TIMESTAMP = 1630583874 +SHA256 (KDE/release-service/21.08.1/kdiamond-21.08.1.tar.xz) = 9fdbb1b255ec8883613f53a7d08d9fcdf7a4465ceace3ac0f5000c0566381f51 +SIZE (KDE/release-service/21.08.1/kdiamond-21.08.1.tar.xz) = 4699848 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 50c22951292d..bf5efe94b416 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244139 -SHA256 (KDE/release-service/21.08.0/kfourinline-21.08.0.tar.xz) = 98cf8c13a06797c2b1251923ed0c89e6a4c81f76350f818d03d15d28e71cc6bc -SIZE (KDE/release-service/21.08.0/kfourinline-21.08.0.tar.xz) = 718848 +TIMESTAMP = 1630583875 +SHA256 (KDE/release-service/21.08.1/kfourinline-21.08.1.tar.xz) = 4c317958f045b1a4bb7cfd4b39aacd9242f98e1fe55890622fb3efee02db3c5a +SIZE (KDE/release-service/21.08.1/kfourinline-21.08.1.tar.xz) = 718912 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index c9f944230a22..9c2820aa9214 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244140 -SHA256 (KDE/release-service/21.08.0/kgoldrunner-21.08.0.tar.xz) = 34d85d948f38d36117c2323538250560ad966e61fc99a6567afaecb1bb395fb4 -SIZE (KDE/release-service/21.08.0/kgoldrunner-21.08.0.tar.xz) = 4761396 +TIMESTAMP = 1630583876 +SHA256 (KDE/release-service/21.08.1/kgoldrunner-21.08.1.tar.xz) = 05f555114b6158a6722d415f35a32f268882cd16f13a244fc28761b71cd1efb5 +SIZE (KDE/release-service/21.08.1/kgoldrunner-21.08.1.tar.xz) = 4768396 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index b2362dd4fdd7..1620230a722d 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244141 -SHA256 (KDE/release-service/21.08.0/khangman-21.08.0.tar.xz) = 1072c76e38260f518aa27e4395943fad1219d252af7c142f487888b6c8fb6a0d -SIZE (KDE/release-service/21.08.0/khangman-21.08.0.tar.xz) = 7428692 +TIMESTAMP = 1630583877 +SHA256 (KDE/release-service/21.08.1/khangman-21.08.1.tar.xz) = f7f2daa14c63ae1392f63447e1e8d6109bb2270bbd83b0c6a127a84fe6da67cb +SIZE (KDE/release-service/21.08.1/khangman-21.08.1.tar.xz) = 7427460 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index afeca0026986..456c2348795c 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244142 -SHA256 (KDE/release-service/21.08.0/kigo-21.08.0.tar.xz) = 3b25433494d8be7cbfb07efbbb0ff434d0d9cd1bbc4f3f028c15c10ee812d5cf -SIZE (KDE/release-service/21.08.0/kigo-21.08.0.tar.xz) = 5251992 +TIMESTAMP = 1630583878 +SHA256 (KDE/release-service/21.08.1/kigo-21.08.1.tar.xz) = 873407690e79c0e2cf6e8d44ca5f573afafae079539fbfca088a3ccb5482eef8 +SIZE (KDE/release-service/21.08.1/kigo-21.08.1.tar.xz) = 5252020 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 7b6784e21af0..3ed3344d3770 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244143 -SHA256 (KDE/release-service/21.08.0/killbots-21.08.0.tar.xz) = fce35c306eee9dbc51983d0c74dbe654b6ad54fe9d9bad970ab150c3396af829 -SIZE (KDE/release-service/21.08.0/killbots-21.08.0.tar.xz) = 1193532 +TIMESTAMP = 1630583879 +SHA256 (KDE/release-service/21.08.1/killbots-21.08.1.tar.xz) = b616938a5cb6570510c56bfa3ace280b517ba420fa9f3d36fe230fc23930300b +SIZE (KDE/release-service/21.08.1/killbots-21.08.1.tar.xz) = 1193472 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 865f4964f060..638fa7ea7591 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244144 -SHA256 (KDE/release-service/21.08.0/kiriki-21.08.0.tar.xz) = 2a0ceb37e1140be9fb21ab824905bc99229ad6e5a112308f7bf343af49607033 -SIZE (KDE/release-service/21.08.0/kiriki-21.08.0.tar.xz) = 365224 +TIMESTAMP = 1630583880 +SHA256 (KDE/release-service/21.08.1/kiriki-21.08.1.tar.xz) = 00c86af5b631f4604b2280b6ae1fd290ee99eb43f565cfdef49c3029fcc0f174 +SIZE (KDE/release-service/21.08.1/kiriki-21.08.1.tar.xz) = 365216 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 8ff778886a6a..6cb19afc8a41 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244145 -SHA256 (KDE/release-service/21.08.0/kjumpingcube-21.08.0.tar.xz) = 8665ccaef46d89c918def85620893320a8efa489648df9f4e5cb282e54b06e73 -SIZE (KDE/release-service/21.08.0/kjumpingcube-21.08.0.tar.xz) = 322612 +TIMESTAMP = 1630583880 +SHA256 (KDE/release-service/21.08.1/kjumpingcube-21.08.1.tar.xz) = 528a7c0a64e2082f030bc476203a53eb86f71fc49951a50d55d4a43a2e9603ce +SIZE (KDE/release-service/21.08.1/kjumpingcube-21.08.1.tar.xz) = 322704 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index d1b1c49d1441..cff95e54dee9 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244146 -SHA256 (KDE/release-service/21.08.0/klickety-21.08.0.tar.xz) = 2fc9e67e12f6e6d6940cd0f2555ea362c7415a8fb1cd93297a1c1a6e2b954a9c -SIZE (KDE/release-service/21.08.0/klickety-21.08.0.tar.xz) = 1491888 +TIMESTAMP = 1630583881 +SHA256 (KDE/release-service/21.08.1/klickety-21.08.1.tar.xz) = 2c30116df7202dad6f75b9de93e6bb296354043e1c1754d032346c4e17c90d65 +SIZE (KDE/release-service/21.08.1/klickety-21.08.1.tar.xz) = 1491916 diff --git a/games/klines/distinfo b/games/klines/distinfo index 9d2ff85aee2d..2cdba9ced6ea 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244147 -SHA256 (KDE/release-service/21.08.0/klines-21.08.0.tar.xz) = 3ee434d4e4b567893aff175713cf0c2de9cb77b126167c1d533f58eb59408238 -SIZE (KDE/release-service/21.08.0/klines-21.08.0.tar.xz) = 1723256 +TIMESTAMP = 1630583882 +SHA256 (KDE/release-service/21.08.1/klines-21.08.1.tar.xz) = c6427639877e6f81039eb80bf7c556acc6feb279561ae7e59ad9597d7548d3c7 +SIZE (KDE/release-service/21.08.1/klines-21.08.1.tar.xz) = 1723040 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 268b91775917..56bbbbe1d857 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244148 -SHA256 (KDE/release-service/21.08.0/kmahjongg-21.08.0.tar.xz) = 37dea4efd5639190f60eeb8e33bc0fff8ff3181d9b7221f2f53978de404cb912 -SIZE (KDE/release-service/21.08.0/kmahjongg-21.08.0.tar.xz) = 4067960 +TIMESTAMP = 1630583883 +SHA256 (KDE/release-service/21.08.1/kmahjongg-21.08.1.tar.xz) = 353ec19d5bcdb6b75ebe46b6cde3889a5d9d26521832157bb1ceb10376f43ff3 +SIZE (KDE/release-service/21.08.1/kmahjongg-21.08.1.tar.xz) = 4068140 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 8645e7a10078..4026907d0b0e 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244149 -SHA256 (KDE/release-service/21.08.0/kmines-21.08.0.tar.xz) = 81dbbde8c98115f0f66f945f711b851d61ba97f945691aa49c2d3f8e27a190ec -SIZE (KDE/release-service/21.08.0/kmines-21.08.0.tar.xz) = 989816 +TIMESTAMP = 1630583884 +SHA256 (KDE/release-service/21.08.1/kmines-21.08.1.tar.xz) = 121b382bad0d4e6cd8f7ae416e06d0a78c7d50f72a339b919219080c1f3ba05b +SIZE (KDE/release-service/21.08.1/kmines-21.08.1.tar.xz) = 989860 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 3144486f2d27..89ca82773ffa 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244150 -SHA256 (KDE/release-service/21.08.0/knavalbattle-21.08.0.tar.xz) = e40874e99f6634e0151e5bbff1a42ece4375a63046cbb6b69e068c04d2f50bb9 -SIZE (KDE/release-service/21.08.0/knavalbattle-21.08.0.tar.xz) = 1375732 +TIMESTAMP = 1630583885 +SHA256 (KDE/release-service/21.08.1/knavalbattle-21.08.1.tar.xz) = a7beed61affe9c0b4241558285d0f5a8a8822a22c6296c3ef0855d2d871078d3 +SIZE (KDE/release-service/21.08.1/knavalbattle-21.08.1.tar.xz) = 1375860 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 917bdd2be48a..2be7e958a77a 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244151 -SHA256 (KDE/release-service/21.08.0/knetwalk-21.08.0.tar.xz) = c23905a33d9a09a69d366c7f83077c8ae7386c574c8160715bb7968131d44d36 -SIZE (KDE/release-service/21.08.0/knetwalk-21.08.0.tar.xz) = 1271536 +TIMESTAMP = 1630583886 +SHA256 (KDE/release-service/21.08.1/knetwalk-21.08.1.tar.xz) = e2fb3ad26d2a3ce1e805ddd41f6a0144efb8c7c51da776ca228754af3c3a7baa +SIZE (KDE/release-service/21.08.1/knetwalk-21.08.1.tar.xz) = 1271368 diff --git a/games/knights/distinfo b/games/knights/distinfo index 97cd050082b4..da693b846dc2 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244152 -SHA256 (KDE/release-service/21.08.0/knights-21.08.0.tar.xz) = 906ca9a31f40162543731a7dff73c58f7cd08d8362c2407cc5b23d764cdd09c3 -SIZE (KDE/release-service/21.08.0/knights-21.08.0.tar.xz) = 3536696 +TIMESTAMP = 1630583887 +SHA256 (KDE/release-service/21.08.1/knights-21.08.1.tar.xz) = a1f10a63fe7ba7c9d03c141d3ce13bc669c5ddf8d2ee0d966f6426c37db600d4 +SIZE (KDE/release-service/21.08.1/knights-21.08.1.tar.xz) = 3536556 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index ba82bacdb418..2aea227eccd1 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244153 -SHA256 (KDE/release-service/21.08.0/kolf-21.08.0.tar.xz) = 27ef69a9e5863e55ce686a8e387e42ddc4e272716d06437c11a1329aa77b5adc -SIZE (KDE/release-service/21.08.0/kolf-21.08.0.tar.xz) = 1040716 +TIMESTAMP = 1630583887 +SHA256 (KDE/release-service/21.08.1/kolf-21.08.1.tar.xz) = ab4f3e2a2cca3803b9c112aa7c695ff31d5a5c0568056d364ce3dd7f05139397 +SIZE (KDE/release-service/21.08.1/kolf-21.08.1.tar.xz) = 1043052 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 3d1c6b571f77..703a1e85d93c 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244154 -SHA256 (KDE/release-service/21.08.0/kollision-21.08.0.tar.xz) = fad8e81e700661dc2b49339100d53a47b1fa40b99ae64ec2b5d9d0172d4a42ef -SIZE (KDE/release-service/21.08.0/kollision-21.08.0.tar.xz) = 291052 +TIMESTAMP = 1630583888 +SHA256 (KDE/release-service/21.08.1/kollision-21.08.1.tar.xz) = ebd2f1e62e43b4a4a483b88174a6b45d28d14f6090c1983b2509242119ebad95 +SIZE (KDE/release-service/21.08.1/kollision-21.08.1.tar.xz) = 291088 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 7f3512ba6049..4d6dbd6f9372 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244154 -SHA256 (KDE/release-service/21.08.0/konquest-21.08.0.tar.xz) = 70698768df845678205f9b0f28da1b43046fd85f0b5ca36493066302f2452250 -SIZE (KDE/release-service/21.08.0/konquest-21.08.0.tar.xz) = 671140 +TIMESTAMP = 1630583889 +SHA256 (KDE/release-service/21.08.1/konquest-21.08.1.tar.xz) = f4831977508eff6cc6f0b6451a21edcb841dce612954a56f0cf546817fa91744 +SIZE (KDE/release-service/21.08.1/konquest-21.08.1.tar.xz) = 671280 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 10866fd95677..b7c6fdd8ac47 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244155 -SHA256 (KDE/release-service/21.08.0/kpat-21.08.0.tar.xz) = 7fe0c679ee8e3f7045f6f125b8dd1b2b35b89a9ed70245a817894aeec4effaf2 -SIZE (KDE/release-service/21.08.0/kpat-21.08.0.tar.xz) = 3728304 +TIMESTAMP = 1630583890 +SHA256 (KDE/release-service/21.08.1/kpat-21.08.1.tar.xz) = d66fd231dd579028af2b32e30cce56fcd537b0b2cb7d7ede9aa2a95a5485b1b7 +SIZE (KDE/release-service/21.08.1/kpat-21.08.1.tar.xz) = 3728480 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index e7e91edbf9bb..ed48c36df1d3 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244156 -SHA256 (KDE/release-service/21.08.0/kreversi-21.08.0.tar.xz) = 9781aa06ab1b2efd1f2e8fd5065c74eb11a166138a8cd429587056fbdef24284 -SIZE (KDE/release-service/21.08.0/kreversi-21.08.0.tar.xz) = 962700 +TIMESTAMP = 1630583891 +SHA256 (KDE/release-service/21.08.1/kreversi-21.08.1.tar.xz) = f2bde796d8a556cddbb8e89515571e836f66980069f93736195540ff31fc07be +SIZE (KDE/release-service/21.08.1/kreversi-21.08.1.tar.xz) = 962740 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 466db37783ff..ae2a7000d97d 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244157 -SHA256 (KDE/release-service/21.08.0/kshisen-21.08.0.tar.xz) = 9ef68d2a88fea86d0673a1d7a152490c511daa192a48789228f1a60945832ed5 -SIZE (KDE/release-service/21.08.0/kshisen-21.08.0.tar.xz) = 987628 +TIMESTAMP = 1630583892 +SHA256 (KDE/release-service/21.08.1/kshisen-21.08.1.tar.xz) = b799eb5e99f7526f5e85b5b6ee856f2780fbcaecfd22136151ffb7699140fe80 +SIZE (KDE/release-service/21.08.1/kshisen-21.08.1.tar.xz) = 987708 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index d9d8329a6fdc..fee00850a104 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244158 -SHA256 (KDE/release-service/21.08.0/ksirk-21.08.0.tar.xz) = 99f07e17fb6e9b14674fe6c3fc27548c261f95e0f5ec9cf3b800dc63fe230f6f -SIZE (KDE/release-service/21.08.0/ksirk-21.08.0.tar.xz) = 6998056 +TIMESTAMP = 1630583893 +SHA256 (KDE/release-service/21.08.1/ksirk-21.08.1.tar.xz) = 41286fcce69a39940ffbe53f2324d2729a6b067410be359b7b902755e375cb50 +SIZE (KDE/release-service/21.08.1/ksirk-21.08.1.tar.xz) = 6998224 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index de3fe2b2916a..1d131504c5a2 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244159 -SHA256 (KDE/release-service/21.08.0/ksnakeduel-21.08.0.tar.xz) = b1923ba5ee85119124006984f0374b2fec776befc90bb0b7a263aec4f10e1792 -SIZE (KDE/release-service/21.08.0/ksnakeduel-21.08.0.tar.xz) = 544832 +TIMESTAMP = 1630583894 +SHA256 (KDE/release-service/21.08.1/ksnakeduel-21.08.1.tar.xz) = 881c27dd1f87d0c5b9de50b9639153328604b1843566834c502a2cf17aab64ca +SIZE (KDE/release-service/21.08.1/ksnakeduel-21.08.1.tar.xz) = 545372 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index d01504743d80..51b143d551b4 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244160 -SHA256 (KDE/release-service/21.08.0/kspaceduel-21.08.0.tar.xz) = b02f306944415a0de5831b8621a266e4d70cb2daf2cd58a21d78966e406742a9 -SIZE (KDE/release-service/21.08.0/kspaceduel-21.08.0.tar.xz) = 621256 +TIMESTAMP = 1630583895 +SHA256 (KDE/release-service/21.08.1/kspaceduel-21.08.1.tar.xz) = 90cd264f4a2dc5a40106a480dc23aac31bb01a47754884aa1d5f3e385bbc5560 +SIZE (KDE/release-service/21.08.1/kspaceduel-21.08.1.tar.xz) = 621616 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index c7474a332349..f43e39414d29 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244161 -SHA256 (KDE/release-service/21.08.0/ksquares-21.08.0.tar.xz) = cc1e5de66089f0489e43fab1baa35d1266b4fd092b3af09eccd6d87424a0259c -SIZE (KDE/release-service/21.08.0/ksquares-21.08.0.tar.xz) = 267904 +TIMESTAMP = 1630583896 +SHA256 (KDE/release-service/21.08.1/ksquares-21.08.1.tar.xz) = d8b1b7d5caf9f95a4eb5de4b7cc348182f2975b58a9e4ddba64bfdf2e22ef07c +SIZE (KDE/release-service/21.08.1/ksquares-21.08.1.tar.xz) = 268168 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 1d1400679c75..ba14571d69fe 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244162 -SHA256 (KDE/release-service/21.08.0/ksudoku-21.08.0.tar.xz) = b2d7be905370a3e6c327c595eed069221fd00dd19ed55a9b03507d469f4707dd -SIZE (KDE/release-service/21.08.0/ksudoku-21.08.0.tar.xz) = 1680216 +TIMESTAMP = 1630583897 +SHA256 (KDE/release-service/21.08.1/ksudoku-21.08.1.tar.xz) = 9782f0d089c2b89b8efd60f209ca24fa95528fbdcb0e531eca5c90c73b095d29 +SIZE (KDE/release-service/21.08.1/ksudoku-21.08.1.tar.xz) = 1681700 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 2dca6bebdc1a..5ed08a4f1d02 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244164 -SHA256 (KDE/release-service/21.08.0/ktuberling-21.08.0.tar.xz) = aac1f84257c6c3c91756f8effe7ecd00eca16225e9ac73f286b244fba7c65297 -SIZE (KDE/release-service/21.08.0/ktuberling-21.08.0.tar.xz) = 70752576 +TIMESTAMP = 1630583898 +SHA256 (KDE/release-service/21.08.1/ktuberling-21.08.1.tar.xz) = 89748bacc65b8ea7ee78ce266f7e2c2878788d6cf275c756ecd011e82c396ab8 +SIZE (KDE/release-service/21.08.1/ktuberling-21.08.1.tar.xz) = 70771860 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 46012d2ed778..f4a65c02ff65 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244165 -SHA256 (KDE/release-service/21.08.0/kubrick-21.08.0.tar.xz) = 056097b7d2e2dfb0084234f4f42369927a6a63b41b6b66d2d1d07d079ec36452 -SIZE (KDE/release-service/21.08.0/kubrick-21.08.0.tar.xz) = 343144 +TIMESTAMP = 1630583899 +SHA256 (KDE/release-service/21.08.1/kubrick-21.08.1.tar.xz) = f2c5ddb78d52189894f8e5e05c13ae02658ab2d44989808ec372e05a8958200e +SIZE (KDE/release-service/21.08.1/kubrick-21.08.1.tar.xz) = 343136 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 53b5f3ebc612..4754c992a5d6 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244166 -SHA256 (KDE/release-service/21.08.0/libkdegames-21.08.0.tar.xz) = 2b55f9e2858cfeabfe8d1a8f3772bb0df88f583c65b4a4e3b0dc2a8db6ac7159 -SIZE (KDE/release-service/21.08.0/libkdegames-21.08.0.tar.xz) = 6403100 +TIMESTAMP = 1630583900 +SHA256 (KDE/release-service/21.08.1/libkdegames-21.08.1.tar.xz) = 51de56a9f714085ceed2d3200852c1e33b7847768336d02524b07ce3f51cdd6d +SIZE (KDE/release-service/21.08.1/libkdegames-21.08.1.tar.xz) = 6404784 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index a2042948449b..cf84591ad59f 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244167 -SHA256 (KDE/release-service/21.08.0/libkmahjongg-21.08.0.tar.xz) = 11d6b4396fd86cb2fd4c2445222bb9ef8aa9522afe2d572880016ff7b5eb5ea3 -SIZE (KDE/release-service/21.08.0/libkmahjongg-21.08.0.tar.xz) = 1680780 +TIMESTAMP = 1630583901 +SHA256 (KDE/release-service/21.08.1/libkmahjongg-21.08.1.tar.xz) = 244da128e0ba2fd469fe24b34537186fc10c6cb4c263c18b958cb514c1e7c667 +SIZE (KDE/release-service/21.08.1/libkmahjongg-21.08.1.tar.xz) = 1681992 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 0d51c983c322..251ab27fbec7 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244168 -SHA256 (KDE/release-service/21.08.0/lskat-21.08.0.tar.xz) = 48e9011ca014dc7c48d44d9746d8a664c97d136176986e8409135c83d93d3192 -SIZE (KDE/release-service/21.08.0/lskat-21.08.0.tar.xz) = 1230168 +TIMESTAMP = 1630583901 +SHA256 (KDE/release-service/21.08.1/lskat-21.08.1.tar.xz) = 2bbdb4504f35014317ad948b6c892666ebcbc7b09a49dab7bd031ca61df609b5 +SIZE (KDE/release-service/21.08.1/lskat-21.08.1.tar.xz) = 1229912 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index b9931c21518a..f9ff6bfcc231 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244169 -SHA256 (KDE/release-service/21.08.0/palapeli-21.08.0.tar.xz) = 5ceb635f2bde6bb0455f1d03a21ad2f9c38851053de4fccc6131bd3aa6d7af86 -SIZE (KDE/release-service/21.08.0/palapeli-21.08.0.tar.xz) = 2077348 +TIMESTAMP = 1630583902 +SHA256 (KDE/release-service/21.08.1/palapeli-21.08.1.tar.xz) = a3f0fc6badcdd7f7954ed6edf866fbbad5d32e3ee27c4829c5db6843c8e6ba26 +SIZE (KDE/release-service/21.08.1/palapeli-21.08.1.tar.xz) = 2077372 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 2f92328a042e..2a698ba44dc1 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244170 -SHA256 (KDE/release-service/21.08.0/picmi-21.08.0.tar.xz) = 05c90f261d18fd315269ee0ad75849c58ffa31c173d29fed50e1527657d45c0a -SIZE (KDE/release-service/21.08.0/picmi-21.08.0.tar.xz) = 1369856 +TIMESTAMP = 1630583903 +SHA256 (KDE/release-service/21.08.1/picmi-21.08.1.tar.xz) = ca4cfbd27483499db4e53ca7903df30b6471fc58f36f0b116780ab85a8e350fb +SIZE (KDE/release-service/21.08.1/picmi-21.08.1.tar.xz) = 1369944 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index c257d0cc5934..e755661df40a 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244171 -SHA256 (KDE/release-service/21.08.0/gwenview-21.08.0.tar.xz) = 8d631791f532b7b674d0c701dd78395ff923c17683948ece5d7e17fe03c06f19 -SIZE (KDE/release-service/21.08.0/gwenview-21.08.0.tar.xz) = 6818232 +TIMESTAMP = 1630583904 +SHA256 (KDE/release-service/21.08.1/gwenview-21.08.1.tar.xz) = 40a1fdb2b940928eda673df641de43c39b8e26c7fd52ba05d800fc7004caeba0 +SIZE (KDE/release-service/21.08.1/gwenview-21.08.1.tar.xz) = 6818428 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 5a40761e6dee..02f9011b2b81 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244172 -SHA256 (KDE/release-service/21.08.0/kamera-21.08.0.tar.xz) = daeb2d757755c723883e3d30bac4e718fa610d2f00f2dac9b2ecf8a966609cff -SIZE (KDE/release-service/21.08.0/kamera-21.08.0.tar.xz) = 116532 +TIMESTAMP = 1630583905 +SHA256 (KDE/release-service/21.08.1/kamera-21.08.1.tar.xz) = fefdf4a97c876a38bc8a141efd5aaed8678c83ccdfae0b665b3826b690bab732 +SIZE (KDE/release-service/21.08.1/kamera-21.08.1.tar.xz) = 116460 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 1dcb4eb2bfa6..c4b8bffbce67 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244173 -SHA256 (KDE/release-service/21.08.0/kcolorchooser-21.08.0.tar.xz) = 27ac1a698ac98a4c78d102f6fa74cb8fb8909f891867c457f5863b6b949bfad2 -SIZE (KDE/release-service/21.08.0/kcolorchooser-21.08.0.tar.xz) = 29492 +TIMESTAMP = 1630583906 +SHA256 (KDE/release-service/21.08.1/kcolorchooser-21.08.1.tar.xz) = 0716f37d7e673db16e891e22acfb059f7f7eb0a15fab3f96dcd47519f5f4ed8f +SIZE (KDE/release-service/21.08.1/kcolorchooser-21.08.1.tar.xz) = 29540 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 625c26d16c7c..3dfee65209be 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244174 -SHA256 (KDE/release-service/21.08.0/kdegraphics-mobipocket-21.08.0.tar.xz) = 88a075ab0a1eef0c1496de2525efbe09525c3d00ec3c8f878a600911fe17e951 -SIZE (KDE/release-service/21.08.0/kdegraphics-mobipocket-21.08.0.tar.xz) = 17108 +TIMESTAMP = 1630583907 +SHA256 (KDE/release-service/21.08.1/kdegraphics-mobipocket-21.08.1.tar.xz) = 62c451a1f60700179451f9a94a87b55155c9e8d9a75251a96a2060545aa9f71b +SIZE (KDE/release-service/21.08.1/kdegraphics-mobipocket-21.08.1.tar.xz) = 17104 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 89908a3ad02f..5a1fc065d3ea 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244175 -SHA256 (KDE/release-service/21.08.0/svgpart-21.08.0.tar.xz) = eea989068102c2fb536fb3a0e1daff205c3d0317bfc6b016658fc5059c7ff102 -SIZE (KDE/release-service/21.08.0/svgpart-21.08.0.tar.xz) = 24512 +TIMESTAMP = 1630583908 +SHA256 (KDE/release-service/21.08.1/svgpart-21.08.1.tar.xz) = db249c2c86548b18a89e75144e640dee199f1bd91172048719ab270aa6b934ea +SIZE (KDE/release-service/21.08.1/svgpart-21.08.1.tar.xz) = 24520 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 79dc901a4541..65fbef651d1a 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244176 -SHA256 (KDE/release-service/21.08.0/kdegraphics-thumbnailers-21.08.0.tar.xz) = 9c3a6cf3c6de3427d4ad7434dd21f77717b5aee94abe05bf29fb96a77e804fab -SIZE (KDE/release-service/21.08.0/kdegraphics-thumbnailers-21.08.0.tar.xz) = 47144 +TIMESTAMP = 1630583909 +SHA256 (KDE/release-service/21.08.1/kdegraphics-thumbnailers-21.08.1.tar.xz) = 9ef6ece5dd587ba501a2c344479cc9f03fb7e01807436ba7f0fb75b3adee0d43 +SIZE (KDE/release-service/21.08.1/kdegraphics-thumbnailers-21.08.1.tar.xz) = 47144 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index d748b7f0d2a9..accbd83664cb 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244177 -SHA256 (KDE/release-service/21.08.0/kimagemapeditor-21.08.0.tar.xz) = 695df026c04b3d57b6a15ec4e903fe4f2c9f5729ffd828075c2e1acbb870ff52 -SIZE (KDE/release-service/21.08.0/kimagemapeditor-21.08.0.tar.xz) = 1088492 +TIMESTAMP = 1630583909 +SHA256 (KDE/release-service/21.08.1/kimagemapeditor-21.08.1.tar.xz) = 4fe2be20a96befa543015fa7e981047d926a2dd8bebc031d239ebf21d2042ed7 +SIZE (KDE/release-service/21.08.1/kimagemapeditor-21.08.1.tar.xz) = 1088536 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 09679c4370ce..514266412775 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244177 -SHA256 (KDE/release-service/21.08.0/kipi-plugins-21.08.0.tar.xz) = 6fdb86bfb2ae1d13a1aa5a779cebfcec2c6331f43e2624b57282f69eba06d675 -SIZE (KDE/release-service/21.08.0/kipi-plugins-21.08.0.tar.xz) = 1544316 +TIMESTAMP = 1630583910 +SHA256 (KDE/release-service/21.08.1/kipi-plugins-21.08.1.tar.xz) = 2d5e023886f36f72fe00c3be1fc73aa886a7ef791e5c6cb62c415a60f9e0daf0 +SIZE (KDE/release-service/21.08.1/kipi-plugins-21.08.1.tar.xz) = 1546204 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 4934f54f3fe5..a77333d68f8c 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244178 -SHA256 (KDE/release-service/21.08.0/kolourpaint-21.08.0.tar.xz) = df2da4a7a1dda0eaaeb1bedc198fecd0a55228d0f5288dae2606d523468bce58 -SIZE (KDE/release-service/21.08.0/kolourpaint-21.08.0.tar.xz) = 5714968 +TIMESTAMP = 1630583911 +SHA256 (KDE/release-service/21.08.1/kolourpaint-21.08.1.tar.xz) = 4aa091e986fc4ae369fbcd078bb47f4aa41b1bbad3ea778209bd2176a2d55a6e +SIZE (KDE/release-service/21.08.1/kolourpaint-21.08.1.tar.xz) = 5715260 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index dcfdd46670be..ef5b9a066180 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244179 -SHA256 (KDE/release-service/21.08.0/kontrast-21.08.0.tar.xz) = 3d3568d2e6d921483b43edfbc624213dc44c4398718cd53baef60f72dfaa0b00 -SIZE (KDE/release-service/21.08.0/kontrast-21.08.0.tar.xz) = 124540 +TIMESTAMP = 1630583912 +SHA256 (KDE/release-service/21.08.1/kontrast-21.08.1.tar.xz) = 6bcfb97f2f002a8092fa7391437ebe13e9641d30bb59754666b7ab5ac03fdc16 +SIZE (KDE/release-service/21.08.1/kontrast-21.08.1.tar.xz) = 125432 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 012d254f8d4e..bd6e6832ddde 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244180 -SHA256 (KDE/release-service/21.08.0/kqtquickcharts-21.08.0.tar.xz) = d79a761709a9537154bf3af146739e122e7b3c98ab1979de6606fb6a2fee8bf4 -SIZE (KDE/release-service/21.08.0/kqtquickcharts-21.08.0.tar.xz) = 29936 +TIMESTAMP = 1630583913 +SHA256 (KDE/release-service/21.08.1/kqtquickcharts-21.08.1.tar.xz) = d0e89c034a9fec0130b55086692d8bd56056c796f0977bdb1ffe6339fcef153e +SIZE (KDE/release-service/21.08.1/kqtquickcharts-21.08.1.tar.xz) = 29928 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 31aa903960c8..8f3c35e38cfc 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244181 -SHA256 (KDE/release-service/21.08.0/libkdcraw-21.08.0.tar.xz) = 8c7244e9a0238a11e9ee9c2fc5592ad078325f55cc392bdf8b6c0a1989b8dc9c -SIZE (KDE/release-service/21.08.0/libkdcraw-21.08.0.tar.xz) = 37212 +TIMESTAMP = 1630583914 +SHA256 (KDE/release-service/21.08.1/libkdcraw-21.08.1.tar.xz) = 95d7c72853e1529391c105b4d2c2ae2dc2a3aeb43f34db6a28a86628e9bb329e +SIZE (KDE/release-service/21.08.1/libkdcraw-21.08.1.tar.xz) = 37188 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index dca7841af1a1..753f624add0f 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244182 -SHA256 (KDE/release-service/21.08.0/libkexiv2-21.08.0.tar.xz) = 94e23d23190cb5c8046dbb6c87853312d2ed1cd59e5865c6549c396189c46555 -SIZE (KDE/release-service/21.08.0/libkexiv2-21.08.0.tar.xz) = 59384 +TIMESTAMP = 1630583915 +SHA256 (KDE/release-service/21.08.1/libkexiv2-21.08.1.tar.xz) = aa1332b4d6abb25372103af72008b7081fd09928a9d816daf8c595b5e39fd772 +SIZE (KDE/release-service/21.08.1/libkexiv2-21.08.1.tar.xz) = 59396 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index a4773b9b6564..693c3c0860d2 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244183 -SHA256 (KDE/release-service/21.08.0/libkipi-21.08.0.tar.xz) = 06341e62c05068f8fda0ac63790bde315e9eed40d4d4a522fb6a04c2cde96120 -SIZE (KDE/release-service/21.08.0/libkipi-21.08.0.tar.xz) = 103372 +TIMESTAMP = 1630583916 +SHA256 (KDE/release-service/21.08.1/libkipi-21.08.1.tar.xz) = ba8a2957763318136f3e60af45f738799be2aae196fa5e73e50d49dff14ba78c +SIZE (KDE/release-service/21.08.1/libkipi-21.08.1.tar.xz) = 103364 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index b7bb9174b7b2..cd9a34858a6d 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244184 -SHA256 (KDE/release-service/21.08.0/libksane-21.08.0.tar.xz) = 1a5fccc52c58927a3a49762cd0a55d0cfe724723014a2929cee69c084bca5b44 -SIZE (KDE/release-service/21.08.0/libksane-21.08.0.tar.xz) = 155336 +TIMESTAMP = 1630583917 +SHA256 (KDE/release-service/21.08.1/libksane-21.08.1.tar.xz) = 7d78ac9fc3c97235a698c6993044c3d8851e413dc7207d4dd6cae2cf5cd39cf4 +SIZE (KDE/release-service/21.08.1/libksane-21.08.1.tar.xz) = 155488 diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 1097e4e9f814..ba64de8ce252 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -1,44 +1,43 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qca qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build 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 ff508a8843c4..41f77c97bda6 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628838133 -SHA256 (KDE/release-service/21.08.0/okular-21.08.0.tar.xz) = dded73111fa78a9b7f544d6089de2cc0c48b1696c723ba76ab2dab8fd9c16a69 -SIZE (KDE/release-service/21.08.0/okular-21.08.0.tar.xz) = 8083288 +TIMESTAMP = 1630583918 +SHA256 (KDE/release-service/21.08.1/okular-21.08.1.tar.xz) = 370ca3b90b8c4b44cee88f07e56cb1649c281c0ef110dce72e0ba00888ad61ee +SIZE (KDE/release-service/21.08.1/okular-21.08.1.tar.xz) = 8087324 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 861af23bde0b..b53360882c4d 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1131 +1,1140 @@ bin/okular include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.9 lib/libOkular5Core.so.9.0.0 %%QT_PLUGINDIR%%/kf5/kio/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/128x128/apps/okular.png share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/kconf_update/okular.upd share/kservices5/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_markdown.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ar/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ast/LC_MESSAGES/okular_chm.mo share/locale/ast/LC_MESSAGES/okular_fax.mo share/locale/ast/LC_MESSAGES/okular_plucker.mo share/locale/ast/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/okular.mo share/locale/az/LC_MESSAGES/okular_chm.mo share/locale/az/LC_MESSAGES/okular_comicbook.mo share/locale/az/LC_MESSAGES/okular_djvu.mo share/locale/az/LC_MESSAGES/okular_dvi.mo share/locale/az/LC_MESSAGES/okular_epub.mo share/locale/az/LC_MESSAGES/okular_fax.mo share/locale/az/LC_MESSAGES/okular_fictionbook.mo share/locale/az/LC_MESSAGES/okular_ghostview.mo share/locale/az/LC_MESSAGES/okular_kimgio.mo share/locale/az/LC_MESSAGES/okular_markdown.mo share/locale/az/LC_MESSAGES/okular_mobi.mo share/locale/az/LC_MESSAGES/okular_plucker.mo share/locale/az/LC_MESSAGES/okular_poppler.mo share/locale/az/LC_MESSAGES/okular_tiff.mo share/locale/az/LC_MESSAGES/okular_txt.mo share/locale/az/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/be/LC_MESSAGES/okular.mo share/locale/be/LC_MESSAGES/okular_chm.mo share/locale/be/LC_MESSAGES/okular_djvu.mo share/locale/be/LC_MESSAGES/okular_dvi.mo share/locale/be/LC_MESSAGES/okular_fictionbook.mo share/locale/be/LC_MESSAGES/okular_ghostview.mo share/locale/be/LC_MESSAGES/okular_kimgio.mo share/locale/be/LC_MESSAGES/okular_plucker.mo share/locale/be/LC_MESSAGES/okular_poppler.mo share/locale/be/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_chm.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo +share/locale/hi/LC_MESSAGES/okular_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo +share/locale/hi/LC_MESSAGES/okular_epub.mo +share/locale/hi/LC_MESSAGES/okular_fax.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo +share/locale/hi/LC_MESSAGES/okular_markdown.mo +share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo +share/locale/hi/LC_MESSAGES/okular_tiff.mo +share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo +share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_tiff.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_chm.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_chm.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_plucker.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sq/LC_MESSAGES/okular_chm.mo share/locale/sq/LC_MESSAGES/okular_comicbook.mo share/locale/sq/LC_MESSAGES/okular_djvu.mo share/locale/sq/LC_MESSAGES/okular_dvi.mo share/locale/sq/LC_MESSAGES/okular_epub.mo share/locale/sq/LC_MESSAGES/okular_fax.mo share/locale/sq/LC_MESSAGES/okular_fictionbook.mo share/locale/sq/LC_MESSAGES/okular_ghostview.mo share/locale/sq/LC_MESSAGES/okular_kimgio.mo share/locale/sq/LC_MESSAGES/okular_mobi.mo share/locale/sq/LC_MESSAGES/okular_plucker.mo share/locale/sq/LC_MESSAGES/okular_poppler.mo share/locale/sq/LC_MESSAGES/okular_xps.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_txt.mo share/locale/tg/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo +share/locale/vi/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml share/qlogging-categories5/okular.categories diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index b230404dadb9..38a2e64670a6 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244186 -SHA256 (KDE/release-service/21.08.0/spectacle-21.08.0.tar.xz) = 8c47d6c7f06ec031020c4e09010cd243d51e4b5b2fb296e36c508050455a30a3 -SIZE (KDE/release-service/21.08.0/spectacle-21.08.0.tar.xz) = 1213020 +TIMESTAMP = 1630583919 +SHA256 (KDE/release-service/21.08.1/spectacle-21.08.1.tar.xz) = dd805571343668959924af6834e07b5503e331ece1f099d6901c244efd1b492f +SIZE (KDE/release-service/21.08.1/spectacle-21.08.1.tar.xz) = 1213424 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index ab41d8044b51..8994bc9c8e66 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244187 -SHA256 (KDE/release-service/21.08.0/konversation-21.08.0.tar.xz) = e8651d0309d4d5bc2f2341837ce2f056f33dca7d2788c2be592790cf126c5998 -SIZE (KDE/release-service/21.08.0/konversation-21.08.0.tar.xz) = 4250228 +TIMESTAMP = 1630583920 +SHA256 (KDE/release-service/21.08.1/konversation-21.08.1.tar.xz) = de6dfb5b983cc70d6e59d801ab9a3d728c7253d3e9e5993ada4a8ec0a4df766c +SIZE (KDE/release-service/21.08.1/konversation-21.08.1.tar.xz) = 4251152 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index e85c2a7c9688..62be91af5bc2 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244188 -SHA256 (KDE/release-service/21.08.0/kiten-21.08.0.tar.xz) = 6210a99889748194cc2773d7c8d5cfacb996110f332d67b1d3dbf018a10f26d9 -SIZE (KDE/release-service/21.08.0/kiten-21.08.0.tar.xz) = 11312572 +TIMESTAMP = 1630583920 +SHA256 (KDE/release-service/21.08.1/kiten-21.08.1.tar.xz) = c30a742b89837de88d66921c56495d985bc4864bb868b83bfac643bd0a777eea +SIZE (KDE/release-service/21.08.1/kiten-21.08.1.tar.xz) = 11312164 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 610f83242051..5b935a270d04 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244189 -SHA256 (KDE/release-service/21.08.0/kross-interpreters-21.08.0.tar.xz) = 4293c063ab9b265d36aff9d0892eaa03332fca6976df025d94402ca94d6aceee -SIZE (KDE/release-service/21.08.0/kross-interpreters-21.08.0.tar.xz) = 151488 +TIMESTAMP = 1630583921 +SHA256 (KDE/release-service/21.08.1/kross-interpreters-21.08.1.tar.xz) = e414afc4a71f5a9474bf6fb9e886fd754e656c011791fcad473afd6a9ecdf6bb +SIZE (KDE/release-service/21.08.1/kross-interpreters-21.08.1.tar.xz) = 151504 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 78ce21eec95c..a8a32dfa283c 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244190 -SHA256 (KDE/release-service/21.08.0/kturtle-21.08.0.tar.xz) = ce187fceaf4c279996c421506d3e85b88b49f0668a3085ea7a654107f9bf4a1e -SIZE (KDE/release-service/21.08.0/kturtle-21.08.0.tar.xz) = 1971864 +TIMESTAMP = 1630583922 +SHA256 (KDE/release-service/21.08.1/kturtle-21.08.1.tar.xz) = b76d95d8c113b0148e7c1cdc6b4c767e9c7985bc4954e6773b432ad7cd34cf96 +SIZE (KDE/release-service/21.08.1/kturtle-21.08.1.tar.xz) = 1971944 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 4b248d64e987..13e30c6adbb9 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244191 -SHA256 (KDE/release-service/21.08.0/analitza-21.08.0.tar.xz) = 94605d454f25335d55cf215663d6f57b7a9444cf679c46b997c1de59da5132db -SIZE (KDE/release-service/21.08.0/analitza-21.08.0.tar.xz) = 346732 +TIMESTAMP = 1630583923 +SHA256 (KDE/release-service/21.08.1/analitza-21.08.1.tar.xz) = c4ae76f8521a61368971611df979472a0bac713abf645389c0aad4dd84644f29 +SIZE (KDE/release-service/21.08.1/analitza-21.08.1.tar.xz) = 346760 diff --git a/math/cantor/Makefile b/math/cantor/Makefile index 8f991be81e13..aa092518c408 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,64 +1,63 @@ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 shared-mime-info tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui help location network \ printsupport sql svg webchannel webengine \ widgets xml xmlpatterns \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake .include diff --git a/math/cantor/distinfo b/math/cantor/distinfo index b239a2b7c2f1..5664cc1a6ee7 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244192 -SHA256 (KDE/release-service/21.08.0/cantor-21.08.0.tar.xz) = f1408908d741ab46c365138df83d1a660413dda76e4b09294e7268504b1ff460 -SIZE (KDE/release-service/21.08.0/cantor-21.08.0.tar.xz) = 9183184 +TIMESTAMP = 1630583924 +SHA256 (KDE/release-service/21.08.1/cantor-21.08.1.tar.xz) = 3c3a0ec134e988be54f6865b3fcac34c279ee629ab682ec9d5c9da8af832f4a1 +SIZE (KDE/release-service/21.08.1/cantor-21.08.1.tar.xz) = 9182148 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 7f110bf8b4b4..249e8ac3eb28 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244193 -SHA256 (KDE/release-service/21.08.0/kalgebra-21.08.0.tar.xz) = 9c3826337d2b3c6b9bbf53e3ec04b6051d5e9ea83b8a1b4eb6ac8a53a0f48136 -SIZE (KDE/release-service/21.08.0/kalgebra-21.08.0.tar.xz) = 1026436 +TIMESTAMP = 1630583925 +SHA256 (KDE/release-service/21.08.1/kalgebra-21.08.1.tar.xz) = bc688acf6a4b4cdc73479dfe1f59a2800077abcdc7c98b54da2265aadbaf1029 +SIZE (KDE/release-service/21.08.1/kalgebra-21.08.1.tar.xz) = 1026428 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 3d5ec8cedb16..95705fbe9b13 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244194 -SHA256 (KDE/release-service/21.08.0/kbruch-21.08.0.tar.xz) = ba2f067140ce6772d35cb2d2ed634565e204d3d73a8f20f6cd583490bd76aa22 -SIZE (KDE/release-service/21.08.0/kbruch-21.08.0.tar.xz) = 5627996 +TIMESTAMP = 1630583926 +SHA256 (KDE/release-service/21.08.1/kbruch-21.08.1.tar.xz) = 64d43b27bf02201cfd07fb0c69f2411c3ce67d9c9c9124feb823d5a1d8e773e5 +SIZE (KDE/release-service/21.08.1/kbruch-21.08.1.tar.xz) = 5628120 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index acdc4843410a..6b393178d7ed 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244195 -SHA256 (KDE/release-service/21.08.0/kcalc-21.08.0.tar.xz) = 03da123c15267c135784476c194f4c559888b76ab5311671f92a90a741b8c391 -SIZE (KDE/release-service/21.08.0/kcalc-21.08.0.tar.xz) = 379344 +TIMESTAMP = 1630583927 +SHA256 (KDE/release-service/21.08.1/kcalc-21.08.1.tar.xz) = 537f6b848b5f9dca66e8228ad3f9bb67f4a977d82e31e88abecfccd5c3ad236a +SIZE (KDE/release-service/21.08.1/kcalc-21.08.1.tar.xz) = 379396 diff --git a/math/kig/distinfo b/math/kig/distinfo index 0363ea7439ab..0311b1a5b162 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244196 -SHA256 (KDE/release-service/21.08.0/kig-21.08.0.tar.xz) = 495129efbbd53e1d54c8562398f5d50d658474bcf05388060902957d59e85cd4 -SIZE (KDE/release-service/21.08.0/kig-21.08.0.tar.xz) = 3175116 +TIMESTAMP = 1630583928 +SHA256 (KDE/release-service/21.08.1/kig-21.08.1.tar.xz) = da50ff5b01b049d8988e260a8887b89d50826ac8622f7470abcadd69eb01773f +SIZE (KDE/release-service/21.08.1/kig-21.08.1.tar.xz) = 3175152 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 2560fa5d4385..3c90c79f0de4 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244197 -SHA256 (KDE/release-service/21.08.0/kmplot-21.08.0.tar.xz) = db87a45f24d2f3d971d4abf9adf52be03fa1bdcda5284bcc02410f8ad79dfaeb -SIZE (KDE/release-service/21.08.0/kmplot-21.08.0.tar.xz) = 3042900 +TIMESTAMP = 1630583929 +SHA256 (KDE/release-service/21.08.1/kmplot-21.08.1.tar.xz) = 81f2bee26538f2d0a1cfd7f9e84fd584a7003ad9cecf478b6f10a50d5ecb6c56 +SIZE (KDE/release-service/21.08.1/kmplot-21.08.1.tar.xz) = 3042744 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index beca5f77f4ef..671ea7b2b35a 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244198 -SHA256 (KDE/release-service/21.08.0/rocs-21.08.0.tar.xz) = fc4cda509c4778bbca235a1cc4e3abd89c3d0376af50aeca612cecd57a5711cb -SIZE (KDE/release-service/21.08.0/rocs-21.08.0.tar.xz) = 1554948 +TIMESTAMP = 1630583930 +SHA256 (KDE/release-service/21.08.1/rocs-21.08.1.tar.xz) = 55b681c98c342dafc4b4fdda1f7742f22fe07894115bef54d7834ccd803da2ac +SIZE (KDE/release-service/21.08.1/rocs-21.08.1.tar.xz) = 1554832 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index affafcb43564..3d3ba837790f 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244199 -SHA256 (KDE/release-service/21.08.0/artikulate-21.08.0.tar.xz) = 0354d5fbb27edf00999f0083e9d6cdcc5226f95897ba58cc79eb94eeb247ee70 -SIZE (KDE/release-service/21.08.0/artikulate-21.08.0.tar.xz) = 1090376 +TIMESTAMP = 1630583930 +SHA256 (KDE/release-service/21.08.1/artikulate-21.08.1.tar.xz) = b3dbad68308135d1ad00f7469e805dda32d0fe134d9be1bbd930f058c2a9e174 +SIZE (KDE/release-service/21.08.1/artikulate-21.08.1.tar.xz) = 1090476 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 959329257edb..5f02faa6f45f 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244200 -SHA256 (KDE/release-service/21.08.0/kdeedu-data-21.08.0.tar.xz) = 8ff0200898569c6c4135d9b66006b504ed7cc9fdd472b7b2cb987c622cc3f3eb -SIZE (KDE/release-service/21.08.0/kdeedu-data-21.08.0.tar.xz) = 335612 +TIMESTAMP = 1630583931 +SHA256 (KDE/release-service/21.08.1/kdeedu-data-21.08.1.tar.xz) = c57824a9737e70806a4363ff9b767692b662612558e6da599e00233e7d4d0ca6 +SIZE (KDE/release-service/21.08.1/kdeedu-data-21.08.1.tar.xz) = 335620 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 9e497e5c03d2..a530c14ba2f5 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244201 -SHA256 (KDE/release-service/21.08.0/kgeography-21.08.0.tar.xz) = 51cd0692bd32b898e8b2bd452968462480858a2bc1c7984998c856ef1abcc007 -SIZE (KDE/release-service/21.08.0/kgeography-21.08.0.tar.xz) = 11001960 +TIMESTAMP = 1630583932 +SHA256 (KDE/release-service/21.08.1/kgeography-21.08.1.tar.xz) = c450d0615d143a112a6882ecb756ef3f601dfeed65e3540703f92248b4a30b73 +SIZE (KDE/release-service/21.08.1/kgeography-21.08.1.tar.xz) = 11001960 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 2e2e3d16fc0d..c21c855317d4 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244202 -SHA256 (KDE/release-service/21.08.0/klettres-21.08.0.tar.xz) = 414541f442c9ed5d6f37b5d85fea21cb46c4db271cc30bfb214d4f9b7438cc99 -SIZE (KDE/release-service/21.08.0/klettres-21.08.0.tar.xz) = 47138900 +TIMESTAMP = 1630583933 +SHA256 (KDE/release-service/21.08.1/klettres-21.08.1.tar.xz) = 95c80723cab063e268a1f819a8f9c7fa47de1ace048a727f6030a8aa39638f69 +SIZE (KDE/release-service/21.08.1/klettres-21.08.1.tar.xz) = 47139816 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 82a1bb941cd1..1f1fec19d574 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244203 -SHA256 (KDE/release-service/21.08.0/ktouch-21.08.0.tar.xz) = aecb35c06692d835be6159545dbc90a369e18506d2ff97eef34ce1040b2e8e7f -SIZE (KDE/release-service/21.08.0/ktouch-21.08.0.tar.xz) = 4964680 +TIMESTAMP = 1630583934 +SHA256 (KDE/release-service/21.08.1/ktouch-21.08.1.tar.xz) = 27ff1312d8baf8686494f9168449383042a510ecb533c0c5b26ae106c0cdfe02 +SIZE (KDE/release-service/21.08.1/ktouch-21.08.1.tar.xz) = 4965000 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index e4d20e962f84..dd658a738519 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244204 -SHA256 (KDE/release-service/21.08.0/kwordquiz-21.08.0.tar.xz) = 557eb9342ea71fb46f9c5485adbf77bb29cf9dcf4c3dd6cbd04493f03ad348d7 -SIZE (KDE/release-service/21.08.0/kwordquiz-21.08.0.tar.xz) = 4209252 +TIMESTAMP = 1630583935 +SHA256 (KDE/release-service/21.08.1/kwordquiz-21.08.1.tar.xz) = 051ffdc2017825cfff3453a8999b8bee4a02eeef6161d3c5346b1da0e9abedd7 +SIZE (KDE/release-service/21.08.1/kwordquiz-21.08.1.tar.xz) = 4209400 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 03a5f9a927fd..ef331c773a43 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244205 -SHA256 (KDE/release-service/21.08.0/libkeduvocdocument-21.08.0.tar.xz) = 8d47469d3392f9451772592e131b472cd16eac10f3e8e6fcb0f268a59a3ba0da -SIZE (KDE/release-service/21.08.0/libkeduvocdocument-21.08.0.tar.xz) = 217668 +TIMESTAMP = 1630583936 +SHA256 (KDE/release-service/21.08.1/libkeduvocdocument-21.08.1.tar.xz) = d4445beef9df336937daca676a9d61192c064125df3567b5e6e61124e0e9de72 +SIZE (KDE/release-service/21.08.1/libkeduvocdocument-21.08.1.tar.xz) = 217708 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 91ddb8f76e48..38e8ca6f6012 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244206 -SHA256 (KDE/release-service/21.08.0/parley-21.08.0.tar.xz) = 2b3d01a475f8ccc7938ea050e8ad7d5b6b4f46d49be14b015250140537bec9e2 -SIZE (KDE/release-service/21.08.0/parley-21.08.0.tar.xz) = 8884420 +TIMESTAMP = 1630583936 +SHA256 (KDE/release-service/21.08.1/parley-21.08.1.tar.xz) = 2bdd6796316f98d6ec5845bd6e920eb23a2c1e4e4cdb184b45c4f9dca47b690b +SIZE (KDE/release-service/21.08.1/parley-21.08.1.tar.xz) = 8884228 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index b45e4ea1ee9f..f8bb3ebb2ebf 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244207 -SHA256 (KDE/release-service/21.08.0/dragon-21.08.0.tar.xz) = d5c4079e3113705c657cb6c1a62a15948d75fa719dc46f677d2000bc9acad334 -SIZE (KDE/release-service/21.08.0/dragon-21.08.0.tar.xz) = 1665632 +TIMESTAMP = 1630583937 +SHA256 (KDE/release-service/21.08.1/dragon-21.08.1.tar.xz) = 5ee20e5284106dacc0b1860b4fdac93a194b2e77a3af6c951366dce87fcc1214 +SIZE (KDE/release-service/21.08.1/dragon-21.08.1.tar.xz) = 1665644 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 8f5c22292e83..1dd2474abcf6 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244208 -SHA256 (KDE/release-service/21.08.0/kamoso-21.08.0.tar.xz) = ee7c28c7e26058635f8408f042defe67bbaacb1e7391a67a570196d061298602 -SIZE (KDE/release-service/21.08.0/kamoso-21.08.0.tar.xz) = 214756 +TIMESTAMP = 1630583938 +SHA256 (KDE/release-service/21.08.1/kamoso-21.08.1.tar.xz) = e6e2f263795039ab5d3aa5700a297c7dc3a37794ab042d9b066e84544ff2d896 +SIZE (KDE/release-service/21.08.1/kamoso-21.08.1.tar.xz) = 214656 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 3b3fb4c3c985..511b82941dbd 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244208 -SHA256 (KDE/release-service/21.08.0/ffmpegthumbs-21.08.0.tar.xz) = b5b8f70cd63b08a5d83b8bc18c0fa516341f7d498a5fb1d98b77c5eeb6b37131 -SIZE (KDE/release-service/21.08.0/ffmpegthumbs-21.08.0.tar.xz) = 36872 +TIMESTAMP = 1630583939 +SHA256 (KDE/release-service/21.08.1/ffmpegthumbs-21.08.1.tar.xz) = 3c04478ed8772c7ef6f4583be98e11ffac8f4531dc290c934b17c8ed52f2658f +SIZE (KDE/release-service/21.08.1/ffmpegthumbs-21.08.1.tar.xz) = 36892 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 36cee5d0b0db..da47435049b2 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628838163 -SHA256 (KDE/release-service/21.08.0/kdenlive-21.08.0.tar.xz) = e441df27deab64cb342f4b1b874313f149950d4baada12f074ad833aa996ce22 -SIZE (KDE/release-service/21.08.0/kdenlive-21.08.0.tar.xz) = 11803416 +TIMESTAMP = 1630583940 +SHA256 (KDE/release-service/21.08.1/kdenlive-21.08.1.tar.xz) = 9fdd7c66e9b528c668f8b1736bc84f51a7e72b2a2a6e5aef6438b803aa0b5b3e +SIZE (KDE/release-service/21.08.1/kdenlive-21.08.1.tar.xz) = 11810280 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 0dad44c1b369..a545e191ec14 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244210 -SHA256 (KDE/release-service/21.08.0/kaccounts-integration-21.08.0.tar.xz) = e67a36b779cd435a5913fd24233dae89368091cbed5bb41bf87c914c47bc034f -SIZE (KDE/release-service/21.08.0/kaccounts-integration-21.08.0.tar.xz) = 86388 +TIMESTAMP = 1630583941 +SHA256 (KDE/release-service/21.08.1/kaccounts-integration-21.08.1.tar.xz) = 1787509bf66f1640f18611c9af834c4280df89ba24bde3c9f8ed4ed6bcb4c0a0 +SIZE (KDE/release-service/21.08.1/kaccounts-integration-21.08.1.tar.xz) = 86368 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index f36302aefa43..c052e7f61b84 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244211 -SHA256 (KDE/release-service/21.08.0/kaccounts-providers-21.08.0.tar.xz) = af86d50851556fb719ad07707ca600a3a247c02034bf04bd285f003f74ddd475 -SIZE (KDE/release-service/21.08.0/kaccounts-providers-21.08.0.tar.xz) = 63496 +TIMESTAMP = 1630583942 +SHA256 (KDE/release-service/21.08.1/kaccounts-providers-21.08.1.tar.xz) = e0365b037483273ccfeef19b4840db2ab9e1d4b9910fc588a3e14ed5913fb3f0 +SIZE (KDE/release-service/21.08.1/kaccounts-providers-21.08.1.tar.xz) = 63456 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index d5fe8930d9c0..719e550d8cd7 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244212 -SHA256 (KDE/release-service/21.08.0/kopete-21.08.0.tar.xz) = f4e1a664e0a36568bf2e702e2f2a19a2c4fd02c7c305bec05edf797e147bf687 -SIZE (KDE/release-service/21.08.0/kopete-21.08.0.tar.xz) = 9663548 +TIMESTAMP = 1630583942 +SHA256 (KDE/release-service/21.08.1/kopete-21.08.1.tar.xz) = a165cf4065b14589a3a7f739e189f96ab22698fa53a2451205ecafc00d8b368c +SIZE (KDE/release-service/21.08.1/kopete-21.08.1.tar.xz) = 9665516 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 316753de2f0f..e4464fc1ee59 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244213 -SHA256 (KDE/release-service/21.08.0/ktp-accounts-kcm-21.08.0.tar.xz) = 0903132d34782106557be5ecb677a2f91f443883b91edcbb535e4ee7f48f4363 -SIZE (KDE/release-service/21.08.0/ktp-accounts-kcm-21.08.0.tar.xz) = 266336 +TIMESTAMP = 1630583943 +SHA256 (KDE/release-service/21.08.1/ktp-accounts-kcm-21.08.1.tar.xz) = 686b710aed6e303c88188238e7cf4b930b690b4035f1a91db75e8b4b7879c85e +SIZE (KDE/release-service/21.08.1/ktp-accounts-kcm-21.08.1.tar.xz) = 266284 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index 403a1af74d38..a1bfec044eb0 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244214 -SHA256 (KDE/release-service/21.08.0/ktp-approver-21.08.0.tar.xz) = 459c76cd927d05a60c6b7f8452f7b83796a5f187a1b4c25931afe3cb1df8f09c -SIZE (KDE/release-service/21.08.0/ktp-approver-21.08.0.tar.xz) = 38148 +TIMESTAMP = 1630583944 +SHA256 (KDE/release-service/21.08.1/ktp-approver-21.08.1.tar.xz) = e3a465e8d5d70154179fff7971d55fbf0ae69b067bdf38ae3a2a0351d2d359e0 +SIZE (KDE/release-service/21.08.1/ktp-approver-21.08.1.tar.xz) = 38140 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 8baa1128457a..ebc2863f3119 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244215 -SHA256 (KDE/release-service/21.08.0/ktp-auth-handler-21.08.0.tar.xz) = 67abea93fe33022c2c4ff514eeca720dcdcef00c300473700d9a9bd223dbe4f1 -SIZE (KDE/release-service/21.08.0/ktp-auth-handler-21.08.0.tar.xz) = 47832 +TIMESTAMP = 1630583945 +SHA256 (KDE/release-service/21.08.1/ktp-auth-handler-21.08.1.tar.xz) = 17116575710f01eea2d7ef6801073fc30b52534375c89a4e6a8345afb116f07b +SIZE (KDE/release-service/21.08.1/ktp-auth-handler-21.08.1.tar.xz) = 47848 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index 50c6e90c1ea7..55a6b3449b09 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244216 -SHA256 (KDE/release-service/21.08.0/ktp-call-ui-21.08.0.tar.xz) = e147d1ab670697fd1442bc67274a0d4e4a8d99e952f95e120c81c09bda84ebd5 -SIZE (KDE/release-service/21.08.0/ktp-call-ui-21.08.0.tar.xz) = 98496 +TIMESTAMP = 1630583946 +SHA256 (KDE/release-service/21.08.1/ktp-call-ui-21.08.1.tar.xz) = 75e820ceb682776931b3f36bc4ae3175361e5da1f9977079da36170f5d1d1d55 +SIZE (KDE/release-service/21.08.1/ktp-call-ui-21.08.1.tar.xz) = 98516 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 1d52bea59fc8..e9aceab4f6a9 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244217 -SHA256 (KDE/release-service/21.08.0/ktp-common-internals-21.08.0.tar.xz) = 5f11d9712ff000d545409f7979aab40d2be4cef15cff1f80ebcf005ccc763b9a -SIZE (KDE/release-service/21.08.0/ktp-common-internals-21.08.0.tar.xz) = 450592 +TIMESTAMP = 1630583947 +SHA256 (KDE/release-service/21.08.1/ktp-common-internals-21.08.1.tar.xz) = 607f4c06a1d694fdfb431f13189701aa7b9ec6adce522b85b11ffacd46764c8a +SIZE (KDE/release-service/21.08.1/ktp-common-internals-21.08.1.tar.xz) = 450604 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 805144bb7951..c2e03690bdaa 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244218 -SHA256 (KDE/release-service/21.08.0/ktp-contact-list-21.08.0.tar.xz) = c81aaa0b67b22a6b3eeafcb00da61f2c6e7258415e59c2782ab0fc551ea098df -SIZE (KDE/release-service/21.08.0/ktp-contact-list-21.08.0.tar.xz) = 153076 +TIMESTAMP = 1630583948 +SHA256 (KDE/release-service/21.08.1/ktp-contact-list-21.08.1.tar.xz) = 940f97255e10b6fb58c802323f9cf82a28f6117b4373ff061b01b114f7028db4 +SIZE (KDE/release-service/21.08.1/ktp-contact-list-21.08.1.tar.xz) = 153132 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index 2788419c3669..cca70e1ae522 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244219 -SHA256 (KDE/release-service/21.08.0/ktp-contact-runner-21.08.0.tar.xz) = ba53863d4565e7e85c86fd978ecce0bdb94a9e376cdb95e552db82f9970f62f3 -SIZE (KDE/release-service/21.08.0/ktp-contact-runner-21.08.0.tar.xz) = 43896 +TIMESTAMP = 1630583949 +SHA256 (KDE/release-service/21.08.1/ktp-contact-runner-21.08.1.tar.xz) = 878afdb19b1503027ceec18af497227c697814f2c2ec77f586f55a77738d5850 +SIZE (KDE/release-service/21.08.1/ktp-contact-runner-21.08.1.tar.xz) = 43860 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 7921b3a9e222..e2c12dbc3f19 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244220 -SHA256 (KDE/release-service/21.08.0/ktp-desktop-applets-21.08.0.tar.xz) = 2a765c550dc36a335fbf4a4f961cc494051d5faa66980d698fec36db49ebf2f3 -SIZE (KDE/release-service/21.08.0/ktp-desktop-applets-21.08.0.tar.xz) = 44480 +TIMESTAMP = 1630583949 +SHA256 (KDE/release-service/21.08.1/ktp-desktop-applets-21.08.1.tar.xz) = d4764ed561ba4c935a8856c0692e11fd4b1661fee581988d665ac9f65448510f +SIZE (KDE/release-service/21.08.1/ktp-desktop-applets-21.08.1.tar.xz) = 44452 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index 14122e092526..8eafac42680d 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244221 -SHA256 (KDE/release-service/21.08.0/ktp-filetransfer-handler-21.08.0.tar.xz) = 2817f55ad454e4f2b3f38fdeebc2555fe49ae030a200e27ada314a7014876e7f -SIZE (KDE/release-service/21.08.0/ktp-filetransfer-handler-21.08.0.tar.xz) = 46420 +TIMESTAMP = 1630583950 +SHA256 (KDE/release-service/21.08.1/ktp-filetransfer-handler-21.08.1.tar.xz) = a8494c6fdf084be324ec20b6e0caf1a8e4770ea427a4111bdb2e0c46e7a3b321 +SIZE (KDE/release-service/21.08.1/ktp-filetransfer-handler-21.08.1.tar.xz) = 46428 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index d25beda5103b..265a2cd115c5 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244222 -SHA256 (KDE/release-service/21.08.0/ktp-kded-module-21.08.0.tar.xz) = 761d7ec40f6fd43e7ce6433ed1667f2493006042dd0061f4ec87945df922699e -SIZE (KDE/release-service/21.08.0/ktp-kded-module-21.08.0.tar.xz) = 99120 +TIMESTAMP = 1630583951 +SHA256 (KDE/release-service/21.08.1/ktp-kded-module-21.08.1.tar.xz) = cf03005ecf58ac4d6428a80becc129a3009c75542b8d99f4bc6bef2810846584 +SIZE (KDE/release-service/21.08.1/ktp-kded-module-21.08.1.tar.xz) = 99172 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index c10cc6511ffe..0d72e827625b 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244223 -SHA256 (KDE/release-service/21.08.0/ktp-send-file-21.08.0.tar.xz) = fd8ec05b4628ae0121f8b240ba179f5310a1779fc5bf37a48d0e53f89b2f6842 -SIZE (KDE/release-service/21.08.0/ktp-send-file-21.08.0.tar.xz) = 28724 +TIMESTAMP = 1630583952 +SHA256 (KDE/release-service/21.08.1/ktp-send-file-21.08.1.tar.xz) = 17c3dae18cdfc39a5122b45017d6e4d8000f0bea24f51cb8451da8ab532dd6ba +SIZE (KDE/release-service/21.08.1/ktp-send-file-21.08.1.tar.xz) = 28744 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 6709aeaf0506..1fb09b0df568 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244224 -SHA256 (KDE/release-service/21.08.0/ktp-text-ui-21.08.0.tar.xz) = e1c4cbded6a460ecba39cd5b54dec4169bab1186a9cef5fedab3969fbf19677f -SIZE (KDE/release-service/21.08.0/ktp-text-ui-21.08.0.tar.xz) = 474600 +TIMESTAMP = 1630583953 +SHA256 (KDE/release-service/21.08.1/ktp-text-ui-21.08.1.tar.xz) = 58d616b6ca57051f106259abfd1d933d9ba41d6d597679fa28a97c899071d631 +SIZE (KDE/release-service/21.08.1/ktp-text-ui-21.08.1.tar.xz) = 474568 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index a459c2d93694..7ccf4b519895 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244225 -SHA256 (KDE/release-service/21.08.0/ktorrent-21.08.0.tar.xz) = 9d30845c765dcb946dcce45aea2e4d52fe1a7cbe21d1dfcd42dcf340f7360ef3 -SIZE (KDE/release-service/21.08.0/ktorrent-21.08.0.tar.xz) = 2090776 +TIMESTAMP = 1630583954 +SHA256 (KDE/release-service/21.08.1/ktorrent-21.08.1.tar.xz) = 356d55f28c52fe1c658c20da1c806c4b878d9fccf0ad269027c97fa2ed20fce4 +SIZE (KDE/release-service/21.08.1/ktorrent-21.08.1.tar.xz) = 2090816 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index ed473ce84b42..a5cf0ac6928e 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244226 -SHA256 (KDE/release-service/21.08.0/libktorrent-21.08.0.tar.xz) = 7db0b3f2abed5bf254fdd49259d8468cd1ce35317bd15549f397b59e3980a78b -SIZE (KDE/release-service/21.08.0/libktorrent-21.08.0.tar.xz) = 607036 +TIMESTAMP = 1630583955 +SHA256 (KDE/release-service/21.08.1/libktorrent-21.08.1.tar.xz) = 3d6c68af94e2596035315d5682dd832c0bc3022558fdab1bca3991077640a878 +SIZE (KDE/release-service/21.08.1/libktorrent-21.08.1.tar.xz) = 606896 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 432a3057c49a..c07f504ab4e6 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244227 -SHA256 (KDE/release-service/21.08.0/akonadi-calendar-21.08.0.tar.xz) = 86c76db4f02e5b5687c385c96a2631042db22e0e095cf3939887ed049ed27738 -SIZE (KDE/release-service/21.08.0/akonadi-calendar-21.08.0.tar.xz) = 352648 +TIMESTAMP = 1630583956 +SHA256 (KDE/release-service/21.08.1/akonadi-calendar-21.08.1.tar.xz) = 2220c2fc7381ea1f6019769aed940bbccb955c1afe365e00bacf4d93bdf215dd +SIZE (KDE/release-service/21.08.1/akonadi-calendar-21.08.1.tar.xz) = 352676 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index a06c971adc3f..e3338157871b 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244228 -SHA256 (KDE/release-service/21.08.0/akonadi-contacts-21.08.0.tar.xz) = 01fba5223b1d495266041f2ac4ade990b8a661ae9bd1af084768e75c9676c02b -SIZE (KDE/release-service/21.08.0/akonadi-contacts-21.08.0.tar.xz) = 420876 +TIMESTAMP = 1630583957 +SHA256 (KDE/release-service/21.08.1/akonadi-contacts-21.08.1.tar.xz) = cc6e84c8d9e8c336028472da3b218f15cecbeabd5709146a3b6f2df2a4f0528f +SIZE (KDE/release-service/21.08.1/akonadi-contacts-21.08.1.tar.xz) = 420940 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index bc77a55d34ab..2a838c77a421 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244229 -SHA256 (KDE/release-service/21.08.0/akonadi-mime-21.08.0.tar.xz) = 33fa3f1ced279192b3aec99666c47765fa33e464478f012752968e8b847d8121 -SIZE (KDE/release-service/21.08.0/akonadi-mime-21.08.0.tar.xz) = 141088 +TIMESTAMP = 1630583957 +SHA256 (KDE/release-service/21.08.1/akonadi-mime-21.08.1.tar.xz) = e5f3780096118ee42f4017f22d4780889f1da2f39e358ac3b610c78688089596 +SIZE (KDE/release-service/21.08.1/akonadi-mime-21.08.1.tar.xz) = 141104 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 20868d2daccf..bb31ee361e91 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244230 -SHA256 (KDE/release-service/21.08.0/akonadi-notes-21.08.0.tar.xz) = 690b267946bf8fba2272f1ed26c4f4c43e977875205502ff68c19c2e0744a191 -SIZE (KDE/release-service/21.08.0/akonadi-notes-21.08.0.tar.xz) = 26420 +TIMESTAMP = 1630583958 +SHA256 (KDE/release-service/21.08.1/akonadi-notes-21.08.1.tar.xz) = 70c0155df4f871bbc32db8bf7eb4fec507d6077abdf9a8f040c18d79fbbe83e4 +SIZE (KDE/release-service/21.08.1/akonadi-notes-21.08.1.tar.xz) = 26452 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index f9414a765b4f..34560146b295 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244231 -SHA256 (KDE/release-service/21.08.0/akonadi-search-21.08.0.tar.xz) = 3af1481e3df9b8b1ba1a3aab1c0b657a799aab77ad8a20d4115f213d81fd766a -SIZE (KDE/release-service/21.08.0/akonadi-search-21.08.0.tar.xz) = 97228 +TIMESTAMP = 1630583959 +SHA256 (KDE/release-service/21.08.1/akonadi-search-21.08.1.tar.xz) = d1d44870fd7b6e96b0915f26d0b5f7945887250a524329aea14d4d9486bebbf0 +SIZE (KDE/release-service/21.08.1/akonadi-search-21.08.1.tar.xz) = 97296 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 56f9b5ad42a0..2c1a8eb421d3 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244232 -SHA256 (KDE/release-service/21.08.0/calendarsupport-21.08.0.tar.xz) = 97597e0e97539693f0532f915c7c33f51e016c1e091f92ff660a7db06133bea1 -SIZE (KDE/release-service/21.08.0/calendarsupport-21.08.0.tar.xz) = 768660 +TIMESTAMP = 1630583960 +SHA256 (KDE/release-service/21.08.1/calendarsupport-21.08.1.tar.xz) = 7c6d2dc1300c232cce4d375e4619bbef228c471a2bd91c1e188530ff1a5f3559 +SIZE (KDE/release-service/21.08.1/calendarsupport-21.08.1.tar.xz) = 764956 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index b9c2784d3fe0..53e2b40bb9bf 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244233 -SHA256 (KDE/release-service/21.08.0/eventviews-21.08.0.tar.xz) = 5a182810cf05c119cf2f6667e99aba0abc1649e28179d8aa1e2b17e68b6e3e1b -SIZE (KDE/release-service/21.08.0/eventviews-21.08.0.tar.xz) = 451404 +TIMESTAMP = 1630583961 +SHA256 (KDE/release-service/21.08.1/eventviews-21.08.1.tar.xz) = 10e6229a08238d4e2069a4b6931f4840d60f0021fc6cded0ed9c75b8c962e513 +SIZE (KDE/release-service/21.08.1/eventviews-21.08.1.tar.xz) = 451532 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 7d2a90290613..6f4ee4e22561 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244234 -SHA256 (KDE/release-service/21.08.0/incidenceeditor-21.08.0.tar.xz) = 809d5d2423c6838ef4f26f353fa47c213c65e54eec31aebc0283649e2b5f337c -SIZE (KDE/release-service/21.08.0/incidenceeditor-21.08.0.tar.xz) = 544292 +TIMESTAMP = 1630583962 +SHA256 (KDE/release-service/21.08.1/incidenceeditor-21.08.1.tar.xz) = 61f0fe35c185a3aa10e54ecb40542d5de56153c7e00d043ec19898c90c08cbf7 +SIZE (KDE/release-service/21.08.1/incidenceeditor-21.08.1.tar.xz) = 544452 diff --git a/net/kalarmcal/distinfo b/net/kalarmcal/distinfo index 596173e2e2dc..526b22cdf365 100644 --- a/net/kalarmcal/distinfo +++ b/net/kalarmcal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244235 -SHA256 (KDE/release-service/21.08.0/kalarmcal-21.08.0.tar.xz) = 0734864f64f18bf8bdce720c323b65e206170758f2385aa4b4f2a021f4c38aec -SIZE (KDE/release-service/21.08.0/kalarmcal-21.08.0.tar.xz) = 629432 +TIMESTAMP = 1630583963 +SHA256 (KDE/release-service/21.08.1/kalarmcal-21.08.1.tar.xz) = ca9d7dd035064141b9ee7448947b50b9699a7b8f6c236f1ab93293e201cc1ee8 +SIZE (KDE/release-service/21.08.1/kalarmcal-21.08.1.tar.xz) = 629340 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 0547d78fba2d..b39ae5628897 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244236 -SHA256 (KDE/release-service/21.08.0/kcalutils-21.08.0.tar.xz) = 3170d850f7586f8b8f8d3f375c79ce70858cea8c000429a6202e1dca68dbe8f9 -SIZE (KDE/release-service/21.08.0/kcalutils-21.08.0.tar.xz) = 337776 +TIMESTAMP = 1630583964 +SHA256 (KDE/release-service/21.08.1/kcalutils-21.08.1.tar.xz) = d554a0cff84136eb5ef514a2e3a231079ba1bf13cea7d5a09799a2bdd17a2ff7 +SIZE (KDE/release-service/21.08.1/kcalutils-21.08.1.tar.xz) = 337700 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 1f6be74a7ca7..cf6e714b119d 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244237 -SHA256 (KDE/release-service/21.08.0/kdenetwork-filesharing-21.08.0.tar.xz) = 4f6dc497ad7a3d56d47738100567967e2d2a2edaeeaa6aee4e40d8e9d811d6de -SIZE (KDE/release-service/21.08.0/kdenetwork-filesharing-21.08.0.tar.xz) = 378448 +TIMESTAMP = 1630583965 +SHA256 (KDE/release-service/21.08.1/kdenetwork-filesharing-21.08.1.tar.xz) = 8ea9996bef0eb654a9a5085ea9140dab3080f3b8bdda36dca224fd67bc8ebce0 +SIZE (KDE/release-service/21.08.1/kdenetwork-filesharing-21.08.1.tar.xz) = 378500 diff --git a/net/kget/distinfo b/net/kget/distinfo index 43e32828ab3a..20a67aec003b 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244238 -SHA256 (KDE/release-service/21.08.0/kget-21.08.0.tar.xz) = 0597001e067280ba4952f68077cb856047c91fe6891a46e8b28f8ef77434804c -SIZE (KDE/release-service/21.08.0/kget-21.08.0.tar.xz) = 5634888 +TIMESTAMP = 1630583966 +SHA256 (KDE/release-service/21.08.1/kget-21.08.1.tar.xz) = d9c4cfd550d64f5929155169941cc1b62bba4fb2fd34ba183eaad0907578961a +SIZE (KDE/release-service/21.08.1/kget-21.08.1.tar.xz) = 5634980 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 239d314d1368..fe9dddf0d6b2 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244239 -SHA256 (KDE/release-service/21.08.0/kidentitymanagement-21.08.0.tar.xz) = 8e7513e4fc8e6581208cd67ce43ddcd88a542747c9446f23b6be31d6c64916cb -SIZE (KDE/release-service/21.08.0/kidentitymanagement-21.08.0.tar.xz) = 157332 +TIMESTAMP = 1630583966 +SHA256 (KDE/release-service/21.08.1/kidentitymanagement-21.08.1.tar.xz) = e6ac20e931b894daa6506b65ad65151f07e9a32bdc808569a7327dc0c7f81376 +SIZE (KDE/release-service/21.08.1/kidentitymanagement-21.08.1.tar.xz) = 157412 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 03928347459f..d5fe24906bd3 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244240 -SHA256 (KDE/release-service/21.08.0/kimap-21.08.0.tar.xz) = 89c08e52c0c59af61f839423242baf6c812148d54af0877252a634e07bebd163 -SIZE (KDE/release-service/21.08.0/kimap-21.08.0.tar.xz) = 127456 +TIMESTAMP = 1630583967 +SHA256 (KDE/release-service/21.08.1/kimap-21.08.1.tar.xz) = 14f627637bf843dab560650c8ebed428681407421b8448316fc1d8bc185768a5 +SIZE (KDE/release-service/21.08.1/kimap-21.08.1.tar.xz) = 127480 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 6277f8f8b75a..596eafee2c62 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244240 -SHA256 (KDE/release-service/21.08.0/kio-gdrive-21.08.0.tar.xz) = 9feefdb711c927bf9dc0af557e10d96b3ffb1dcc3d8b4ca0ccbb794253ab72aa -SIZE (KDE/release-service/21.08.0/kio-gdrive-21.08.0.tar.xz) = 69452 +TIMESTAMP = 1630583968 +SHA256 (KDE/release-service/21.08.1/kio-gdrive-21.08.1.tar.xz) = 7c8795e0052adbbef06500d073a1a26c4d9c74f4a3874fa5f3e1c114d04215ef +SIZE (KDE/release-service/21.08.1/kio-gdrive-21.08.1.tar.xz) = 69576 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index d7930ecacd8e..031e5287efbd 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 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 f6470789ef8a..1abac0843db9 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244241 -SHA256 (KDE/release-service/21.08.0/kitinerary-21.08.0.tar.xz) = 754e10ce09c929adfc75cce55988f19c6bfb9d211420db7236785ca10c45a241 -SIZE (KDE/release-service/21.08.0/kitinerary-21.08.0.tar.xz) = 1840500 +TIMESTAMP = 1630583969 +SHA256 (KDE/release-service/21.08.1/kitinerary-21.08.1.tar.xz) = b1822bc6834c3965e343195d23a00d5ee486ce2e706e3d99762ec17734cbf564 +SIZE (KDE/release-service/21.08.1/kitinerary-21.08.1.tar.xz) = 1842784 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 7939cea64e39..e1604257a7ac 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244242 -SHA256 (KDE/release-service/21.08.0/kldap-21.08.0.tar.xz) = 99b96f321f7905b13e0f9f5cd56b7533ee499eba12dc2c62185b81cb3225e659 -SIZE (KDE/release-service/21.08.0/kldap-21.08.0.tar.xz) = 171764 +TIMESTAMP = 1630583970 +SHA256 (KDE/release-service/21.08.1/kldap-21.08.1.tar.xz) = 8f04badfb568f529e79b10040b8c0203c8c80bca80ff6caeea6dfc5c4d9b22d5 +SIZE (KDE/release-service/21.08.1/kldap-21.08.1.tar.xz) = 171696 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index c0cc0e9de82b..1cba443cfc32 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244243 -SHA256 (KDE/release-service/21.08.0/kmailtransport-21.08.0.tar.xz) = 49816deaecef128c6b29d0807de925029fc48971a18e6c50954ccb76868332f6 -SIZE (KDE/release-service/21.08.0/kmailtransport-21.08.0.tar.xz) = 172688 +TIMESTAMP = 1630583971 +SHA256 (KDE/release-service/21.08.1/kmailtransport-21.08.1.tar.xz) = bb81a2d35a8f99cdace182c1c125fc21795df01c1854877878c32282881ea07d +SIZE (KDE/release-service/21.08.1/kmailtransport-21.08.1.tar.xz) = 172720 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 6fb9b0a84c65..0190ecdb7f0e 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244244 -SHA256 (KDE/release-service/21.08.0/kmbox-21.08.0.tar.xz) = 8aed28b29321f25271e0a3a423eb01164c90795d5951c335ac15b222997844f5 -SIZE (KDE/release-service/21.08.0/kmbox-21.08.0.tar.xz) = 27800 +TIMESTAMP = 1630583971 +SHA256 (KDE/release-service/21.08.1/kmbox-21.08.1.tar.xz) = 831bfd6f1399147eb6d62c80d454acd2ec3631f62e14932f86596b99a939fd08 +SIZE (KDE/release-service/21.08.1/kmbox-21.08.1.tar.xz) = 27808 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 3d956bf67b0c..9e43728a2004 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244245 -SHA256 (KDE/release-service/21.08.0/kmime-21.08.0.tar.xz) = b05789fc3ab2ec2cdce93813315dbc41dd49aed99ada3142cfa43e4357a1e9a5 -SIZE (KDE/release-service/21.08.0/kmime-21.08.0.tar.xz) = 155236 +TIMESTAMP = 1630583972 +SHA256 (KDE/release-service/21.08.1/kmime-21.08.1.tar.xz) = 5c2203ba1ad57cdec197369958c5c7adb6768d5170d6b321652c9a0776ac3a5f +SIZE (KDE/release-service/21.08.1/kmime-21.08.1.tar.xz) = 155184 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 2a46e53435ae..9e2f0d8754fe 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244246 -SHA256 (KDE/release-service/21.08.0/kontactinterface-21.08.0.tar.xz) = bff8684951ab22a7102b632a42f3d0456c3185022e166e03e34e414f844989be -SIZE (KDE/release-service/21.08.0/kontactinterface-21.08.0.tar.xz) = 39612 +TIMESTAMP = 1630583973 +SHA256 (KDE/release-service/21.08.1/kontactinterface-21.08.1.tar.xz) = 49f7030e6f87e2a9664fdbb17d0f9d600b222c43b9889d9f4e623080780e45d0 +SIZE (KDE/release-service/21.08.1/kontactinterface-21.08.1.tar.xz) = 39676 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index f8122e12f433..da31a60825bd 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244247 -SHA256 (KDE/release-service/21.08.0/kpimtextedit-21.08.0.tar.xz) = f26950ff515f2edc51b1468e11dabfdec29b7754e4f44d942e76e52a6dd140e8 -SIZE (KDE/release-service/21.08.0/kpimtextedit-21.08.0.tar.xz) = 204388 +TIMESTAMP = 1630583974 +SHA256 (KDE/release-service/21.08.1/kpimtextedit-21.08.1.tar.xz) = 253b9d0aaf0ad606ad37af3d7880a4285c9ab10332a2ef84982baafb80db4afd +SIZE (KDE/release-service/21.08.1/kpimtextedit-21.08.1.tar.xz) = 204636 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 9da8fd55f2c3..8074ed1aca06 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244248 -SHA256 (KDE/release-service/21.08.0/krdc-21.08.0.tar.xz) = 30613cf039b5e385e00a1442289e5b17e265ca8bce3487d1063cf290e2e84149 -SIZE (KDE/release-service/21.08.0/krdc-21.08.0.tar.xz) = 1582184 +TIMESTAMP = 1630583975 +SHA256 (KDE/release-service/21.08.1/krdc-21.08.1.tar.xz) = db4cce66795f09fbc2ea35661180e8276a16ddcec4c78331c67a8c771f3f150d +SIZE (KDE/release-service/21.08.1/krdc-21.08.1.tar.xz) = 1581968 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 797e8b13ecc3..ccfbf218bc46 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244249 -SHA256 (KDE/release-service/21.08.0/krfb-21.08.0.tar.xz) = ebc61d1b01d9f097128804b7031d1f5a34d426c19ed00faf96a1ccf108808592 -SIZE (KDE/release-service/21.08.0/krfb-21.08.0.tar.xz) = 1293980 +TIMESTAMP = 1630583976 +SHA256 (KDE/release-service/21.08.1/krfb-21.08.1.tar.xz) = dd3a9918d74483a6207271f20b26f8d31d0164e7d7a0dc61dcc6755779a24850 +SIZE (KDE/release-service/21.08.1/krfb-21.08.1.tar.xz) = 1293900 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index bac45596de0a..8f76162c3942 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244250 -SHA256 (KDE/release-service/21.08.0/ksmtp-21.08.0.tar.xz) = 0b7447507d21f2c8f4cdccd4bae48b52216b58256de30ee12aaabf694532b5c6 -SIZE (KDE/release-service/21.08.0/ksmtp-21.08.0.tar.xz) = 46996 +TIMESTAMP = 1630583977 +SHA256 (KDE/release-service/21.08.1/ksmtp-21.08.1.tar.xz) = 66d1fc73cb88a9950c03fd30d7c90f1b69c9fbf30c9a2a35dcad5e28df31815e +SIZE (KDE/release-service/21.08.1/ksmtp-21.08.1.tar.xz) = 47464 diff --git a/net/ksmtp/pkg-plist b/net/ksmtp/pkg-plist index f5db792a0914..49af0c4dbfa8 100644 --- a/net/ksmtp/pkg-plist +++ b/net/ksmtp/pkg-plist @@ -1,59 +1,60 @@ share/qlogging-categories5/ksmtp.categories include/KPim/KSMTP/KSMTP/Job include/KPim/KSMTP/KSMTP/LoginJob include/KPim/KSMTP/KSMTP/SendJob include/KPim/KSMTP/KSMTP/Session include/KPim/KSMTP/KSMTP/SessionUiProxy include/KPim/KSMTP/ksmtp/job.h include/KPim/KSMTP/ksmtp/ksmtp_export.h include/KPim/KSMTP/ksmtp/loginjob.h include/KPim/KSMTP/ksmtp/sendjob.h include/KPim/KSMTP/ksmtp/session.h include/KPim/KSMTP/ksmtp/sessionuiproxy.h include/KPim/ksmtp_version.h lib/cmake/KPimSMTP/KPimSMTPConfig.cmake lib/cmake/KPimSMTP/KPimSMTPConfigVersion.cmake lib/cmake/KPimSMTP/KPimSMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimSMTP/KPimSMTPTargets.cmake lib/libKPimSMTP.so lib/libKPimSMTP.so.5 lib/libKPimSMTP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KSMTP.pri share/locale/ar/LC_MESSAGES/libksmtp5.mo share/locale/bs/LC_MESSAGES/libksmtp5.mo share/locale/ca/LC_MESSAGES/libksmtp5.mo share/locale/ca@valencia/LC_MESSAGES/libksmtp5.mo share/locale/cs/LC_MESSAGES/libksmtp5.mo share/locale/de/LC_MESSAGES/libksmtp5.mo share/locale/en_GB/LC_MESSAGES/libksmtp5.mo share/locale/es/LC_MESSAGES/libksmtp5.mo share/locale/et/LC_MESSAGES/libksmtp5.mo +share/locale/eu/LC_MESSAGES/libksmtp5.mo share/locale/fi/LC_MESSAGES/libksmtp5.mo share/locale/fr/LC_MESSAGES/libksmtp5.mo share/locale/ga/LC_MESSAGES/libksmtp5.mo share/locale/gl/LC_MESSAGES/libksmtp5.mo share/locale/hi/LC_MESSAGES/libksmtp5.mo share/locale/hu/LC_MESSAGES/libksmtp5.mo share/locale/ia/LC_MESSAGES/libksmtp5.mo share/locale/it/LC_MESSAGES/libksmtp5.mo share/locale/ja/LC_MESSAGES/libksmtp5.mo share/locale/km/LC_MESSAGES/libksmtp5.mo share/locale/ko/LC_MESSAGES/libksmtp5.mo share/locale/lt/LC_MESSAGES/libksmtp5.mo share/locale/mr/LC_MESSAGES/libksmtp5.mo share/locale/nds/LC_MESSAGES/libksmtp5.mo share/locale/nl/LC_MESSAGES/libksmtp5.mo share/locale/nn/LC_MESSAGES/libksmtp5.mo share/locale/pl/LC_MESSAGES/libksmtp5.mo share/locale/pt/LC_MESSAGES/libksmtp5.mo share/locale/pt_BR/LC_MESSAGES/libksmtp5.mo share/locale/ru/LC_MESSAGES/libksmtp5.mo share/locale/sk/LC_MESSAGES/libksmtp5.mo share/locale/sl/LC_MESSAGES/libksmtp5.mo share/locale/sr/LC_MESSAGES/libksmtp5.mo share/locale/sv/LC_MESSAGES/libksmtp5.mo share/locale/tr/LC_MESSAGES/libksmtp5.mo share/locale/ug/LC_MESSAGES/libksmtp5.mo share/locale/uk/LC_MESSAGES/libksmtp5.mo share/locale/zh_CN/LC_MESSAGES/libksmtp5.mo share/locale/zh_TW/LC_MESSAGES/libksmtp5.mo diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 9a3648157730..1dd3cb0a4bcc 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244251 -SHA256 (KDE/release-service/21.08.0/ktnef-21.08.0.tar.xz) = d47ca164216d39cb3520b66aaddf7127c5a424d3b848b9ac62131b9fd71de07e -SIZE (KDE/release-service/21.08.0/ktnef-21.08.0.tar.xz) = 305644 +TIMESTAMP = 1630583978 +SHA256 (KDE/release-service/21.08.1/ktnef-21.08.1.tar.xz) = 63cc0ba6d32241f2f71f8cb3bb13729254c488d955a7722def1163adb4269323 +SIZE (KDE/release-service/21.08.1/ktnef-21.08.1.tar.xz) = 305644 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 5fc3c215c362..e83fc6f6b053 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244252 -SHA256 (KDE/release-service/21.08.0/libgravatar-21.08.0.tar.xz) = b6b4d6d7350f7651e220dd6db183d422a1bcb1eaf366d4a8a4d02a385cd9d882 -SIZE (KDE/release-service/21.08.0/libgravatar-21.08.0.tar.xz) = 34828 +TIMESTAMP = 1630583978 +SHA256 (KDE/release-service/21.08.1/libgravatar-21.08.1.tar.xz) = 7bf14758f1ddf7583d89ac4768c2c2ce19a4d4d9c4ea037572dfd8059645b423 +SIZE (KDE/release-service/21.08.1/libgravatar-21.08.1.tar.xz) = 34856 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 247e1f7eff90..432cc4f4c018 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244253 -SHA256 (KDE/release-service/21.08.0/libkgapi-21.08.0.tar.xz) = 79b8834de9cebe68b8059042c775dc9446306919b63a31a082273fa0ca995e38 -SIZE (KDE/release-service/21.08.0/libkgapi-21.08.0.tar.xz) = 247660 +TIMESTAMP = 1630583979 +SHA256 (KDE/release-service/21.08.1/libkgapi-21.08.1.tar.xz) = 7e0f5943e210235f03d380bfe40ad6d2c48ddebc0c37240c105cad2201a19f93 +SIZE (KDE/release-service/21.08.1/libkgapi-21.08.1.tar.xz) = 247684 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index d29bd1fe70d5..6f839984b2f2 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244254 -SHA256 (KDE/release-service/21.08.0/libksieve-21.08.0.tar.xz) = a78d3f5d87e97760fe5db91470cf7fafaa6c94a5785fbd5fe1f54d4047096564 -SIZE (KDE/release-service/21.08.0/libksieve-21.08.0.tar.xz) = 568016 +TIMESTAMP = 1630583980 +SHA256 (KDE/release-service/21.08.1/libksieve-21.08.1.tar.xz) = 7700c60142f6dfef0f65801a1fe7a753f2627bd23fa47f0040ae9cf225ebc994 +SIZE (KDE/release-service/21.08.1/libksieve-21.08.1.tar.xz) = 569872 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 6b6c33f3928d..3a00b099fcc4 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244255 -SHA256 (KDE/release-service/21.08.0/mailcommon-21.08.0.tar.xz) = 61ee90e73a3e5db02ae3336eab7c338ebb5fa13b2c0ad43babdbafcbb6572a2f -SIZE (KDE/release-service/21.08.0/mailcommon-21.08.0.tar.xz) = 729832 +TIMESTAMP = 1630583981 +SHA256 (KDE/release-service/21.08.1/mailcommon-21.08.1.tar.xz) = fc07f8153528a941850888679cbe02a27ee2c2ded09981fa469f40a515f618e4 +SIZE (KDE/release-service/21.08.1/mailcommon-21.08.1.tar.xz) = 730080 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index e7cd3d84c2bb..e8e98923af73 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244256 -SHA256 (KDE/release-service/21.08.0/mailimporter-21.08.0.tar.xz) = 3f1fdc85903cde153b49dcf6251bca35ee128d2b8a591c129b033b380a9d2a8d -SIZE (KDE/release-service/21.08.0/mailimporter-21.08.0.tar.xz) = 558200 +TIMESTAMP = 1630583982 +SHA256 (KDE/release-service/21.08.1/mailimporter-21.08.1.tar.xz) = cea27f3fd0095884d937cd7e4b094f983746497abaac2f7c2e816adbd68f7116 +SIZE (KDE/release-service/21.08.1/mailimporter-21.08.1.tar.xz) = 558172 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 4a0f51e5c236..87f810794055 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244257 -SHA256 (KDE/release-service/21.08.0/messagelib-21.08.0.tar.xz) = 2fa24e72cc2dfedbb9b68e20260b5de46afc57087d6b37b512f2b1c71771aad0 -SIZE (KDE/release-service/21.08.0/messagelib-21.08.0.tar.xz) = 10822756 +TIMESTAMP = 1630583983 +SHA256 (KDE/release-service/21.08.1/messagelib-21.08.1.tar.xz) = f188a42175b56e7da0c76d05984a2113dd87c0a7cff827cdf0bbf81e99c274e4 +SIZE (KDE/release-service/21.08.1/messagelib-21.08.1.tar.xz) = 10798988 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 0700d011591e..07ec47f24bce 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244258 -SHA256 (KDE/release-service/21.08.0/pimcommon-21.08.0.tar.xz) = 9b02dad1b91175d7f469a50143aa6dc7785102ec7accdb98bfef2512b673ce89 -SIZE (KDE/release-service/21.08.0/pimcommon-21.08.0.tar.xz) = 368520 +TIMESTAMP = 1630583984 +SHA256 (KDE/release-service/21.08.1/pimcommon-21.08.1.tar.xz) = 664113437f048e5687eb2bc1e11263647d2d1d87567d37da8c730b1b37a4e98c +SIZE (KDE/release-service/21.08.1/pimcommon-21.08.1.tar.xz) = 368912 diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index 68a3ac2e3199..72876acf73de 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244259 -SHA256 (KDE/release-service/21.08.0/zeroconf-ioslave-21.08.0.tar.xz) = 6f9da13812a0023a8c0dfa0786f63ccbd0f6782f09f0642e2e1740b4e0abdd8e -SIZE (KDE/release-service/21.08.0/zeroconf-ioslave-21.08.0.tar.xz) = 38340 +TIMESTAMP = 1630583985 +SHA256 (KDE/release-service/21.08.1/zeroconf-ioslave-21.08.1.tar.xz) = 9954cb4c25b27f650dfd1395007eaf59f53904b35f13ce593cbdfb8fe9b87a84 +SIZE (KDE/release-service/21.08.1/zeroconf-ioslave-21.08.1.tar.xz) = 38352 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index e3e0304f1d7d..1ba64e66c70f 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244260 -SHA256 (KDE/release-service/21.08.0/print-manager-21.08.0.tar.xz) = 2e638530e7c844adfaceec916377ff79ab8f65f5a36a690c814901729dccec06 -SIZE (KDE/release-service/21.08.0/print-manager-21.08.0.tar.xz) = 270244 +TIMESTAMP = 1630583986 +SHA256 (KDE/release-service/21.08.1/print-manager-21.08.1.tar.xz) = fc7dd10d4bc469253082f69b4a6798b45cb94810451b780cb413e4eaad9cfec3 +SIZE (KDE/release-service/21.08.1/print-manager-21.08.1.tar.xz) = 270196 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 4762fe33eb18..80008aa2f74e 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244261 -SHA256 (KDE/release-service/21.08.0/kalzium-21.08.0.tar.xz) = d9f2d98376a1bef272915c153b4a596ffcf6b74d7709a193198fd75914661d8c -SIZE (KDE/release-service/21.08.0/kalzium-21.08.0.tar.xz) = 24592480 +TIMESTAMP = 1630583987 +SHA256 (KDE/release-service/21.08.1/kalzium-21.08.1.tar.xz) = d7437a48a5026bb327b6f2cbbac9063f92e53f6da6ccdadc4b32f8ecf3f75d46 +SIZE (KDE/release-service/21.08.1/kalzium-21.08.1.tar.xz) = 24592592 diff --git a/science/step/distinfo b/science/step/distinfo index 51f3ae19dd30..0f2a30ba8985 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244262 -SHA256 (KDE/release-service/21.08.0/step-21.08.0.tar.xz) = ff7dd94d1212698df7579d000c2f663a1fc0d189d30ab8e3788d2203dd745e35 -SIZE (KDE/release-service/21.08.0/step-21.08.0.tar.xz) = 975872 +TIMESTAMP = 1630583988 +SHA256 (KDE/release-service/21.08.1/step-21.08.1.tar.xz) = 8810cec594ff1552620b90da261ce20614410b7cb22da9b2ff3b1d92914ce665 +SIZE (KDE/release-service/21.08.1/step-21.08.1.tar.xz) = 975836 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 678d2ca614cb..777e4a89ff47 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244263 -SHA256 (KDE/release-service/21.08.0/kgpg-21.08.0.tar.xz) = e80983209b3f7b934851292238e5dd663b2bc4fb3bd7012d63848b6383b37042 -SIZE (KDE/release-service/21.08.0/kgpg-21.08.0.tar.xz) = 2946120 +TIMESTAMP = 1630583988 +SHA256 (KDE/release-service/21.08.1/kgpg-21.08.1.tar.xz) = ba6b98f13716f2033f4eff4958881222e149ae9f4559c2a77524e300a13a9360 +SIZE (KDE/release-service/21.08.1/kgpg-21.08.1.tar.xz) = 2946184 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 54d512b478a3..dc44b8077907 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244264 -SHA256 (KDE/release-service/21.08.0/kleopatra-21.08.0.tar.xz) = 7979cac5dc4a631c72eb5755ad7c762ebd32ad5fcb01e0d60d2b4577d9e80351 -SIZE (KDE/release-service/21.08.0/kleopatra-21.08.0.tar.xz) = 2129840 +TIMESTAMP = 1630583989 +SHA256 (KDE/release-service/21.08.1/kleopatra-21.08.1.tar.xz) = fd5747063654ef5a1a64f33e0344c0e5bacdfa2422c3ffa9155970b6236a32c8 +SIZE (KDE/release-service/21.08.1/kleopatra-21.08.1.tar.xz) = 2130880 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 5df923fde803..202a8ce27398 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244265 -SHA256 (KDE/release-service/21.08.0/kpkpass-21.08.0.tar.xz) = 500899c5ecd7244ae9cbbe6f30702709200cc2cea0479e48e2d5d1e9f2981315 -SIZE (KDE/release-service/21.08.0/kpkpass-21.08.0.tar.xz) = 27904 +TIMESTAMP = 1630583990 +SHA256 (KDE/release-service/21.08.1/kpkpass-21.08.1.tar.xz) = 7387ab4ef2fa48b839850f3ca1dc852b4551b9e881fc8f703cc3738548990d7d +SIZE (KDE/release-service/21.08.1/kpkpass-21.08.1.tar.xz) = 27892 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index d088522f9c24..dcc5e4134eaa 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244266 -SHA256 (KDE/release-service/21.08.0/kwalletmanager-21.08.0.tar.xz) = 70a2c00b1552384ca182eab9e5bbc2bb891fa7eff18a7266b28f00af40a59963 -SIZE (KDE/release-service/21.08.0/kwalletmanager-21.08.0.tar.xz) = 796904 +TIMESTAMP = 1630583991 +SHA256 (KDE/release-service/21.08.1/kwalletmanager-21.08.1.tar.xz) = bf060a706578347a01524e66b794adca69b304961c73694ca9341380a58a8aa8 +SIZE (KDE/release-service/21.08.1/kwalletmanager-21.08.1.tar.xz) = 796872 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index f74bf7c408d6..082e36358932 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244267 -SHA256 (KDE/release-service/21.08.0/libkleo-21.08.0.tar.xz) = 77aa3100ec9a30c6085b5edc9efb1ebd44c7ae1216bf594c033f0d06e02e2692 -SIZE (KDE/release-service/21.08.0/libkleo-21.08.0.tar.xz) = 435564 +TIMESTAMP = 1630583992 +SHA256 (KDE/release-service/21.08.1/libkleo-21.08.1.tar.xz) = bf9ff39620e06303fba0d9bdf77c4dce19d52a1bcbf48bb014dc021c325336d8 +SIZE (KDE/release-service/21.08.1/libkleo-21.08.1.tar.xz) = 435824 diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index 9547daab6bac..4f257d31c374 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -1,20 +1,20 @@ PORTNAME= baloo-widgets DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz 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_LDCONFIG= yes # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.8.0 +KDE_APPLICATIONS_SHLIB_VER= 21.8.1 .include diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index c296b10eda07..d41c3a73ec92 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244268 -SHA256 (KDE/release-service/21.08.0/baloo-widgets-21.08.0.tar.xz) = 9ef1dc516900e3a4c3e7f382b3cd34df36dcbb4f089d494a28b30b5072a6c741 -SIZE (KDE/release-service/21.08.0/baloo-widgets-21.08.0.tar.xz) = 262680 +TIMESTAMP = 1630583993 +SHA256 (KDE/release-service/21.08.1/baloo-widgets-21.08.1.tar.xz) = 0d721f49a7e486c93df802834b6f62e82c9fa707d17ba3ab1fb673badf85c005 +SIZE (KDE/release-service/21.08.1/baloo-widgets-21.08.1.tar.xz) = 262648 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 1055d7856bb3..f371b2d7fea6 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244269 -SHA256 (KDE/release-service/21.08.0/filelight-21.08.0.tar.xz) = 785066457381086a3fa87e8df423632b029510d3c71efa8e8563e667c63c48f4 -SIZE (KDE/release-service/21.08.0/filelight-21.08.0.tar.xz) = 683532 +TIMESTAMP = 1630583994 +SHA256 (KDE/release-service/21.08.1/filelight-21.08.1.tar.xz) = b147ce4454c6b7e1c19581f3b471dd687e0db99917b43e34811bdcf40edcbb6a +SIZE (KDE/release-service/21.08.1/filelight-21.08.1.tar.xz) = 683588 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 508b68110240..5bd8ceff74cb 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244270 -SHA256 (KDE/release-service/21.08.0/k3b-21.08.0.tar.xz) = 804c0b7932a1788b488c33455b444b8bfc47f64c41668e96c2670e309b790909 -SIZE (KDE/release-service/21.08.0/k3b-21.08.0.tar.xz) = 10746112 +TIMESTAMP = 1630583995 +SHA256 (KDE/release-service/21.08.1/k3b-21.08.1.tar.xz) = 7f2e13a1d75a8f582939c6181f5a3e3d1b1a5960d0cea70758fe5974e25544bf +SIZE (KDE/release-service/21.08.1/k3b-21.08.1.tar.xz) = 10746456 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index f266b41d8ac4..7a3d39362ac8 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244271 -SHA256 (KDE/release-service/21.08.0/kbackup-21.08.0.tar.xz) = a01ee2cfe2a4fe28cf2af61bd0bc43e7895ae90ceb7b77eed3d69b6bb80314f5 -SIZE (KDE/release-service/21.08.0/kbackup-21.08.0.tar.xz) = 384944 +TIMESTAMP = 1630583996 +SHA256 (KDE/release-service/21.08.1/kbackup-21.08.1.tar.xz) = ca1f321cf849008bd9c6c92182cd0351b92ad07a361a13ccbe8e4592412de910 +SIZE (KDE/release-service/21.08.1/kbackup-21.08.1.tar.xz) = 388864 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 9ff61ded8613..07a6fd08e1d0 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244272 -SHA256 (KDE/release-service/21.08.0/kcron-21.08.0.tar.xz) = d3fb112066f30549d3d4173bd93555a26b047141a3e4661bcbbf862444a0e2a4 -SIZE (KDE/release-service/21.08.0/kcron-21.08.0.tar.xz) = 910692 +TIMESTAMP = 1630583997 +SHA256 (KDE/release-service/21.08.1/kcron-21.08.1.tar.xz) = 567547daca9467aa08beeb2ce8aac1e3be757fa08194bb42984d095a691e2d31 +SIZE (KDE/release-service/21.08.1/kcron-21.08.1.tar.xz) = 910708 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index af78e7e18c43..a25d41f0905f 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244273 -SHA256 (KDE/release-service/21.08.0/kdebugsettings-21.08.0.tar.xz) = 66f89eff20e5abadd264ceb540e1be636b4282f4e60207ab51f7ef6ee1b83c28 -SIZE (KDE/release-service/21.08.0/kdebugsettings-21.08.0.tar.xz) = 90052 +TIMESTAMP = 1630583997 +SHA256 (KDE/release-service/21.08.1/kdebugsettings-21.08.1.tar.xz) = 202d9acd655d7a41d5c2ea4795533102b60b4a5ca3dadbba5e9f41fafdaeb6ba +SIZE (KDE/release-service/21.08.1/kdebugsettings-21.08.1.tar.xz) = 90220 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 248b0e2552c2..cf2ce067b1a5 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244274 -SHA256 (KDE/release-service/21.08.0/kdf-21.08.0.tar.xz) = 15060fd51dcf8b1c0676ff9320ad5539cc6d1165ad99c22dd1a3c32021236a68 -SIZE (KDE/release-service/21.08.0/kdf-21.08.0.tar.xz) = 473000 +TIMESTAMP = 1630583998 +SHA256 (KDE/release-service/21.08.1/kdf-21.08.1.tar.xz) = fbead03db2b001c6a413aaa7fe2e940376af38063e1752b8822b49bb603bb6f6 +SIZE (KDE/release-service/21.08.1/kdf-21.08.1.tar.xz) = 473092 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index b0c1d90edcb1..a09c8cea4c44 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244274 -SHA256 (KDE/release-service/21.08.0/kdialog-21.08.0.tar.xz) = d4af3cd41b34a4dc3f3ef23238f9791f1470ce5362c2edbf6354e6ce1b0471de -SIZE (KDE/release-service/21.08.0/kdialog-21.08.0.tar.xz) = 115460 +TIMESTAMP = 1630583999 +SHA256 (KDE/release-service/21.08.1/kdialog-21.08.1.tar.xz) = 24a90bdef85a9e189f080bdc6724d604f4a4d6610d33ba26862dc0525991b5d7 +SIZE (KDE/release-service/21.08.1/kdialog-21.08.1.tar.xz) = 115460 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 21b56389acca..e6c1ba200aef 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244275 -SHA256 (KDE/release-service/21.08.0/kfloppy-21.08.0.tar.xz) = 83e3238dcb0e9db862829e0674ce0654296b8ca0e7a1e254fe9faafdecf56f0e -SIZE (KDE/release-service/21.08.0/kfloppy-21.08.0.tar.xz) = 210900 +TIMESTAMP = 1630584000 +SHA256 (KDE/release-service/21.08.1/kfloppy-21.08.1.tar.xz) = 6fc36ef37058ac4f878a0e76fdc971619ce4ac99972c4812c1eee49d9592b3db +SIZE (KDE/release-service/21.08.1/kfloppy-21.08.1.tar.xz) = 210964 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 7dad7c5c010d..17399855752e 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244276 -SHA256 (KDE/release-service/21.08.0/khelpcenter-21.08.0.tar.xz) = b148f680334fff1cda93fd9ae11e8c9ff8ced4e1db7ea561be24947eb91a2e96 -SIZE (KDE/release-service/21.08.0/khelpcenter-21.08.0.tar.xz) = 4291360 +TIMESTAMP = 1630584001 +SHA256 (KDE/release-service/21.08.1/khelpcenter-21.08.1.tar.xz) = 7ea486e4e4b8a88c9d16b89a3182bdb1abc0352b8aa12a3b189b2cb2267a5e25 +SIZE (KDE/release-service/21.08.1/khelpcenter-21.08.1.tar.xz) = 4291320 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 353207e92166..1a75d7e6c9aa 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244277 -SHA256 (KDE/release-service/21.08.0/ksystemlog-21.08.0.tar.xz) = 4b3dfe9c48985c8dcabe9545b67b571fde6a16107e52f7a665d07a9566e554a2 -SIZE (KDE/release-service/21.08.0/ksystemlog-21.08.0.tar.xz) = 1964092 +TIMESTAMP = 1630584002 +SHA256 (KDE/release-service/21.08.1/ksystemlog-21.08.1.tar.xz) = bbb08a286fa4c20405b7cc3ddf65eb30746c06a3c5235c4146785d3bd6e260ef +SIZE (KDE/release-service/21.08.1/ksystemlog-21.08.1.tar.xz) = 1964320 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 4d1d1b83de54..e9103a185478 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244278 -SHA256 (KDE/release-service/21.08.0/signon-kwallet-extension-21.08.0.tar.xz) = be19939bf032cef9da0c9b314cf2c4a8290549a0e44759e3b0f54a3cc2252f72 -SIZE (KDE/release-service/21.08.0/signon-kwallet-extension-21.08.0.tar.xz) = 10772 +TIMESTAMP = 1630584003 +SHA256 (KDE/release-service/21.08.1/signon-kwallet-extension-21.08.1.tar.xz) = 15194148a06a67a2505e16a8d5994e034a114c2f89b00ea53ed8a68aeb0e38f4 +SIZE (KDE/release-service/21.08.1/signon-kwallet-extension-21.08.1.tar.xz) = 10768 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index d5e235da498a..7bb2b0d479c7 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244279 -SHA256 (KDE/release-service/21.08.0/sweeper-21.08.0.tar.xz) = 91a9efd4482278f153569cfb4cec382d4a2988328dd3cb2b8a23e9ceb63ddabc -SIZE (KDE/release-service/21.08.0/sweeper-21.08.0.tar.xz) = 377420 +TIMESTAMP = 1630584004 +SHA256 (KDE/release-service/21.08.1/sweeper-21.08.1.tar.xz) = 3735906dcee8ffd75a5aa7bef3f460396dd2e4d62a7a165f1ca9d7fed95c455c +SIZE (KDE/release-service/21.08.1/sweeper-21.08.1.tar.xz) = 377412 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 0f663d9341f7..3406ae02c969 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244280 -SHA256 (KDE/release-service/21.08.0/kompare-21.08.0.tar.xz) = 6b2e0b8ab055bc65ebfaadc13aea4e4d81e7e9895703ac7be44abb8ff14b07d4 -SIZE (KDE/release-service/21.08.0/kompare-21.08.0.tar.xz) = 942644 +TIMESTAMP = 1630584005 +SHA256 (KDE/release-service/21.08.1/kompare-21.08.1.tar.xz) = 76c8e4fa59397117da95aed852e47a04f28539a32874cabcc9c7b99098802f6a +SIZE (KDE/release-service/21.08.1/kompare-21.08.1.tar.xz) = 942596 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 1c2bc7a98053..e9da7ca8ca05 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244281 -SHA256 (KDE/release-service/21.08.0/libkomparediff2-21.08.0.tar.xz) = cbe35f706d1e2c2e73cfb6278f0c1f3c537d752c0452af85fd7cdd683784be2c -SIZE (KDE/release-service/21.08.0/libkomparediff2-21.08.0.tar.xz) = 172452 +TIMESTAMP = 1630584005 +SHA256 (KDE/release-service/21.08.1/libkomparediff2-21.08.1.tar.xz) = fdb23c226c11dcaada8eb36d985772de9a791da4c035cc133312cd31aaeadd58 +SIZE (KDE/release-service/21.08.1/libkomparediff2-21.08.1.tar.xz) = 172460 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 0d73cf8f6394..633c98565a21 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244282 -SHA256 (KDE/release-service/21.08.0/markdownpart-21.08.0.tar.xz) = c78498459e779e7aa7ffa7320464b445fe104b5a81148d82edbc8e62048a178d -SIZE (KDE/release-service/21.08.0/markdownpart-21.08.0.tar.xz) = 27900 +TIMESTAMP = 1630584006 +SHA256 (KDE/release-service/21.08.1/markdownpart-21.08.1.tar.xz) = c90da75bb4ebe836830fd20fbadad033f5db8f234da8ff7305c7e665fb14fa75 +SIZE (KDE/release-service/21.08.1/markdownpart-21.08.1.tar.xz) = 28308 diff --git a/textproc/markdownpart/pkg-plist b/textproc/markdownpart/pkg-plist index d57c1b0748d5..6b39a5f9e1c2 100644 --- a/textproc/markdownpart/pkg-plist +++ b/textproc/markdownpart/pkg-plist @@ -1,30 +1,31 @@ %%QT_PLUGINDIR%%/kf5/parts/markdownpart.so share/kservices5/markdownpart.desktop share/locale/ca/LC_MESSAGES/markdownpart.mo share/locale/ca@valencia/LC_MESSAGES/markdownpart.mo share/locale/cs/LC_MESSAGES/markdownpart.mo share/locale/de/LC_MESSAGES/markdownpart.mo share/locale/el/LC_MESSAGES/markdownpart.mo share/locale/en_GB/LC_MESSAGES/markdownpart.mo share/locale/es/LC_MESSAGES/markdownpart.mo share/locale/et/LC_MESSAGES/markdownpart.mo +share/locale/eu/LC_MESSAGES/markdownpart.mo share/locale/fi/LC_MESSAGES/markdownpart.mo share/locale/fr/LC_MESSAGES/markdownpart.mo share/locale/hi/LC_MESSAGES/markdownpart.mo share/locale/it/LC_MESSAGES/markdownpart.mo share/locale/ja/LC_MESSAGES/markdownpart.mo share/locale/ko/LC_MESSAGES/markdownpart.mo share/locale/lt/LC_MESSAGES/markdownpart.mo share/locale/nl/LC_MESSAGES/markdownpart.mo share/locale/nn/LC_MESSAGES/markdownpart.mo share/locale/pl/LC_MESSAGES/markdownpart.mo share/locale/pt/LC_MESSAGES/markdownpart.mo share/locale/pt_BR/LC_MESSAGES/markdownpart.mo share/locale/ro/LC_MESSAGES/markdownpart.mo share/locale/ru/LC_MESSAGES/markdownpart.mo share/locale/sk/LC_MESSAGES/markdownpart.mo share/locale/sl/LC_MESSAGES/markdownpart.mo share/locale/sv/LC_MESSAGES/markdownpart.mo share/locale/uk/LC_MESSAGES/markdownpart.mo share/locale/zh_CN/LC_MESSAGES/markdownpart.mo share/metainfo/org.kde.markdownpart.metainfo.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 3a7133eda969..303c4213cc59 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244283 -SHA256 (KDE/release-service/21.08.0/kteatime-21.08.0.tar.xz) = 2467a7cf001753b97d5c638949a36efa791fbdf439520e7dace2a5b00448b546 -SIZE (KDE/release-service/21.08.0/kteatime-21.08.0.tar.xz) = 299224 +TIMESTAMP = 1630584007 +SHA256 (KDE/release-service/21.08.1/kteatime-21.08.1.tar.xz) = e2acd7c44131988f61ef4c4bf8a210a7f6939fb49011636922602c9b37db563e +SIZE (KDE/release-service/21.08.1/kteatime-21.08.1.tar.xz) = 299280 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 90f37e02321c..3bf00fb7acc6 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244284 -SHA256 (KDE/release-service/21.08.0/ktimer-21.08.0.tar.xz) = 70caf6319fedaba49bf094f273f569bf670345651568ade1baab1df54d50f316 -SIZE (KDE/release-service/21.08.0/ktimer-21.08.0.tar.xz) = 388824 +TIMESTAMP = 1630584008 +SHA256 (KDE/release-service/21.08.1/ktimer-21.08.1.tar.xz) = 4d46e44fbfd2dead19b9188d4cde303634df2bc9dec0b015720f9d675ef6e9d0 +SIZE (KDE/release-service/21.08.1/ktimer-21.08.1.tar.xz) = 388800 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index c2fcdfa83c93..537a039e5c58 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628838149 -SHA256 (KDE/release-service/21.08.0/dolphin-21.08.0.tar.xz) = 5666dce41371192a897a696d82acb0c8628cb8147372c33fc2b4065c572867a1 -SIZE (KDE/release-service/21.08.0/dolphin-21.08.0.tar.xz) = 5298512 +TIMESTAMP = 1630584009 +SHA256 (KDE/release-service/21.08.1/dolphin-21.08.1.tar.xz) = 6e5dce2629f8333b426074d0f35dc96d40b528948db101443f8270ea554cb3ee +SIZE (KDE/release-service/21.08.1/dolphin-21.08.1.tar.xz) = 5301820 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 6ea6ad704feb..e6d85e21981e 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244286 -SHA256 (KDE/release-service/21.08.0/konqueror-21.08.0.tar.xz) = cefb3157b94f983c70ad6fe03cc99f71e3cfb26bb995e4d4e85b876be4e1964a -SIZE (KDE/release-service/21.08.0/konqueror-21.08.0.tar.xz) = 7415776 +TIMESTAMP = 1630584010 +SHA256 (KDE/release-service/21.08.1/konqueror-21.08.1.tar.xz) = f0c0aed44c25928b92e21e55cb76182e64297eba5647797911f9cdd12c62ad94 +SIZE (KDE/release-service/21.08.1/konqueror-21.08.1.tar.xz) = 7417036 diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index c779f254dd2a..5c4bc371e777 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,35 +1,29 @@ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 2 CATEGORIES= x11 kde kde-applications # kde kde-applications-applications -PATCH_SITES= https://invent.kde.org/utilities/konsole/-/commit/ -PATCHFILES= fb7f838fd3138a39aea3bcb2e91f923741587137.diff:-p1 \ - c78edfbac49852cec40efd5cbe73c341bc06c5ab.diff:-p1 \ - f24dd6acc28393ba6f731be1360731c01a9a1ef0.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator 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 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 OPTIONS_DEFINE= DOCS .include diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 8d874412664a..06ee9a1e8124 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,9 +1,3 @@ -TIMESTAMP = 1629538848 -SHA256 (KDE/release-service/21.08.0/konsole-21.08.0.tar.xz) = 5bdd16aadfe3e45a353dfac31c66cc769232f31dea8d4735a6de61f1384abebf -SIZE (KDE/release-service/21.08.0/konsole-21.08.0.tar.xz) = 1373652 -SHA256 (KDE/release-service/21.08.0/fb7f838fd3138a39aea3bcb2e91f923741587137.diff) = 6e384ba94c1f3a2e7b2678a2c87d8c5c524270717f98df722a45afc60dbab4cd -SIZE (KDE/release-service/21.08.0/fb7f838fd3138a39aea3bcb2e91f923741587137.diff) = 1463 -SHA256 (KDE/release-service/21.08.0/c78edfbac49852cec40efd5cbe73c341bc06c5ab.diff) = 14e9408e4244f79e6ada9bc2c62cc10c1ede74329b74ea5663cebf34227f1e67 -SIZE (KDE/release-service/21.08.0/c78edfbac49852cec40efd5cbe73c341bc06c5ab.diff) = 2594 -SHA256 (KDE/release-service/21.08.0/f24dd6acc28393ba6f731be1360731c01a9a1ef0.diff) = 9a9d3a64c4fb2fa614d3b701adaf851f65cb41f0adc500b31517223ff04b7804 -SIZE (KDE/release-service/21.08.0/f24dd6acc28393ba6f731be1360731c01a9a1ef0.diff) = 1099 +TIMESTAMP = 1630586266 +SHA256 (KDE/release-service/21.08.1/konsole-21.08.1.tar.xz) = 5b3ac5407f0c975ce00a2543e59c7e5b795c214db2747281af6b2a4e57f6e46c +SIZE (KDE/release-service/21.08.1/konsole-21.08.1.tar.xz) = 1374720 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 569f953d4733..ea7b690ced5a 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1628244288 -SHA256 (KDE/release-service/21.08.0/yakuake-21.08.0.tar.xz) = e2709a344307125f87153ea2e8bfa609f0a25bfa30e4758a81072027b16ca23e -SIZE (KDE/release-service/21.08.0/yakuake-21.08.0.tar.xz) = 393176 +TIMESTAMP = 1630584012 +SHA256 (KDE/release-service/21.08.1/yakuake-21.08.1.tar.xz) = 8993f4e9e18fecb071bd330ac0b13cfce36f76665484c670e9c839ba679681f4 +SIZE (KDE/release-service/21.08.1/yakuake-21.08.1.tar.xz) = 393208