Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 481850) +++ head/Mk/Uses/kde.mk (revision 481851) @@ -1,1033 +1,1033 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 4 5 # # 4: Depend on KDE4 components and variables. # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KDE4/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-frameworks: part of frameworks release # kde-kde4: part of kde4 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. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 4 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 #' . endif _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Old KDE desktop. KDE4_VERSION?= 4.14.3 KDE4_KDELIBS_VERSION= 4.14.38 KDE4_ACTIVITIES_VERSION= 4.13.3 KDE4_WORKSPACE_VERSION= 4.11.22 KDE4_KDEPIM_VERSION?= 4.14.10 # Applications version for the kde4-applications. KDE4_APPLICATIONS_BRANCH?= Attic KDE4_APPLICATIONS_VERSION?= 15.04.3 KDE4_BRANCH?= stable # Current KDE desktop. KDE_PLASMA_VERSION?= 5.12.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.50.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 18.08.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.9.1 +KDE_APPLICATIONS_VERSION?= 18.08.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.9.2 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable KDEVELOP_VERSION?= 4.7.4 KDEVELOP_BRANCH?= stable KTP_VERSION?= 0.9.0 KTP_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-kde4 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 . 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-kde4} PORTVERSION?= ${KDE4_VERSION} MASTER_SITES?= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR?= KDE/${KDE4_VERSION} PKGNAMESUFFIX= -kde4 CONFLICTS_INSTALL= ${PORTNAME} . elif ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} . if ${_KDE_VERSION:M4} CONFLICTS_INSTALL?= ${PORTNAME}-[0-9]* PKGNAMESUFFIX?= -kde4 . else CONFLICTS_INSTALL?= ${PORTNAME}-kde4 . endif # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${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. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # 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}" . endif DIST_SUBDIR?= KDE/applications/${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 khtml kmediaplayer kross . 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) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*4*} CMAKE_ARGS+= -DKDE4_BUILD_TESTS:BOOL=OFF . elif ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === 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}" # For KDE4 applications provide KDE4 version numbers. . if ${_KDE_VERSION:M*4*} PLIST_SUB+= KDE4_VERSION="${KDE4_VERSION}" \ KDE4_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NON_GENERIC_LIB_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} \ KDE4_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION} \ KDE4_NG_KDELIBS_VERSION=${KDE4_KDELIBS_VERSION:S,^4,5,} . elif ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble _USE_KDE4_ALL= baseapps kactivities kdelibs \ kfilemetadata korundum \ libkonq nepomuk-core nepomuk-widgets \ oxygen-icons5 perlkde perlqt pimlibs pykde4 \ pykdeuic4 qtruby runtime smokegen smokekde smokeqt \ workspace # These components are not part of the Software Compilation. _USE_KDE4_ALL+= automoc4 ontologies qimageblitz soprano \ strigi _USE_KDE4_ALL+= ${_USE_KDE_BOTH} # 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 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 kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration # 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} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ breeze-kde4 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 libkscreen \ libksysguard milou oxygen plasma-desktop \ plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail account-wizard mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer mbox-importer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== kde4 components ======================================= baseapps_PORT= x11/kde-baseapps-kde4 baseapps_PATH= ${KDE_PREFIX}/bin/kfmclient baseapps_TYPE= run kactivities_PORT= x11/kactivities kactivities_LIB= libkactivities.so kdelibs_PORT= x11/kdelibs-kde4 kdelibs_LIB= libkdecore.so kfilemetadata_PORT= sysutils/kfilemetadata-kde4 kfilemetadata_LIB= libkfilemetadata.so korundum_PORT= devel/ruby-korundum-kde4 korundum_PATH= ${KDE_PREFIX}/lib/kde4/krubypluginfactory.so korundum_TYPE= run libkonq_PORT= x11/libkonq-kde4 libkonq_LIB= libkonq.so nepomuk-core_PORT= sysutils/nepomuk-core-kde4 nepomuk-core_LIB= libnepomukcore.so nepomuk-widgets_PORT= sysutils/nepomuk-widgets-kde4 nepomuk-widgets_LIB= libnepomukwidgets.so perlkde_PORT= devel/p5-perlkde-kde4 perlkde_PATH= ${KDE_PREFIX}/lib/kde4/kperlpluginfactory.so perlkde_TYPE= run perlqt_PORT= devel/p5-perlqt-kde4 perlqt_PATH= ${KDE_PREFIX}/bin/puic4 pimlibs_PORT= deskutils/kdepimlibs-kde4 pimlibs_LIB= libkpimutils.so pykde4_PORT= devel/py-pykde4-kde4 pykde4_PATH= ${KDE_PREFIX}/lib/kde4/kpythonpluginfactory.so pykde4_TYPE= run pykdeuic4_PORT= devel/py-pykdeuic4-kde4 pykdeuic4_PATH= ${LOCALBASE}/bin/pykdeuic4 pykdeuic4_TYPE= run qtruby_PORT= devel/ruby-qtruby-kde4 qtruby_LIB= libqtruby4shared.so runtime_PORT= x11/kde-runtime-kde4 runtime_PATH= ${KDE_PREFIX}/bin/knotify4 runtime_TYPE= run smokegen_PORT= devel/smokegen-kde4 smokegen_LIB= libsmokebase.so smokekde_PORT= devel/smokekde-kde4 smokekde_LIB= libsmokekdecore.so smokeqt_PORT= devel/smokeqt-kde4 smokeqt_LIB= libsmokeqtcore.so workspace_PORT= x11/kde-workspace-kde4 workspace_LIB= libkworkspace.so # Non-Software Compilation components automoc4_PORT= devel/automoc4 automoc4_PATH= ${LOCALBASE}/bin/automoc4 automoc4_TYPE= build ontologies_PORT= x11-toolkits/shared-desktop-ontologies ontologies_PATH= ${LOCALBASE}/share/ontology/core/rdf.ontology qimageblitz_PORT= x11/qimageblitz qimageblitz_LIB= libqimageblitz.so soprano_PORT= textproc/soprano soprano_LIB= libsoprano.so strigi_PORT= deskutils/libstreamanalyzer strigi_LIB= libstreamanalyzer.so.0 # ====================== end of kde4 components ================================ # ====================== frameworks components ================================= activities_PORT= x11/kf5-kactivities activities_LIB= libKF5Activities.so activities-stats_PORT= x11/kf5-kactivities-stats activities-stats_LIB= libKF5ActivitiesStats.so apidox_PORT= devel/kf5-kapidox apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate apidox_TYPE= run archive_PORT= archivers/kf5-karchive archive_LIB= libKF5Archive.so attica5_PORT= x11-toolkits/kf5-attica attica5_LIB= libKF5Attica.so auth_PORT= devel/kf5-kauth auth_LIB= libKF5Auth.so baloo5_PORT= sysutils/kf5-baloo baloo5_LIB= libKF5Baloo.so bookmarks_PORT= devel/kf5-kbookmarks bookmarks_LIB= libKF5Bookmarks.so breeze-icons_PORT= x11-themes/kf5-breeze-icons breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme breeze-icons_TYPE= run codecs_PORT= textproc/kf5-kcodecs codecs_LIB= libKF5Codecs.so completion_PORT= x11-toolkits/kf5-kcompletion completion_LIB= libKF5Completion.so config_PORT= devel/kf5-kconfig config_LIB= libKF5ConfigCore.so configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets configwidgets_LIB= libKF5ConfigWidgets.so coreaddons_PORT= devel/kf5-kcoreaddons coreaddons_LIB= libKF5CoreAddons.so crash_PORT= devel/kf5-kcrash crash_LIB= libKF5Crash.so dbusaddons_PORT= devel/kf5-kdbusaddons dbusaddons_LIB= libKF5DBusAddons.so designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so designerplugin_TYPE= run dnssd_PORT= dns/kf5-kdnssd dnssd_LIB= libKF5DNSSD.so doctools_PORT= devel/kf5-kdoctools doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 ecm_PORT= devel/kf5-extra-cmake-modules ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake emoticons_PORT= x11-themes/kf5-kemoticons emoticons_LIB= libKF5Emoticons.so filemetadata_PORT= devel/kf5-kfilemetadata filemetadata_LIB= libKF5FileMetaData.so frameworkintegration_PORT= x11/kf5-frameworkintegration frameworkintegration_LIB= libKF5Style.so globalaccel_PORT= x11/kf5-kglobalaccel globalaccel_LIB= libKF5GlobalAccel.so guiaddons_PORT= x11-toolkits/kf5-kguiaddons guiaddons_LIB= libKF5GuiAddons.so holidays_PORT= net/kf5-kholidays holidays_LIB= libKF5Holidays.so i18n_PORT= devel/kf5-ki18n i18n_LIB= libKF5I18n.so iconthemes_PORT= x11-themes/kf5-kiconthemes iconthemes_LIB= libKF5IconThemes.so idletime_PORT= devel/kf5-kidletime idletime_LIB= libKF5IdleTime.so init_PORT= x11/kf5-kinit init_PATH= ${KDE_PREFIX}/bin/kdeinit5 itemmodels_PORT= devel/kf5-kitemmodels itemmodels_LIB= libKF5ItemModels.so itemviews_PORT= x11-toolkits/kf5-kitemviews itemviews_LIB= libKF5ItemViews.so jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets jobwidgets_LIB= libKF5JobWidgets.so js_PORT= www/kf5-kjs js_LIB= libKF5JS.so jsembed_PORT= www/kf5-kjsembed jsembed_LIB= libKF5JsEmbed.so kcmutils_PORT= devel/kf5-kcmutils kcmutils_LIB= libKF5KCMUtils.so kdeclarative_PORT= devel/kf5-kdeclarative kdeclarative_LIB= libKF5Declarative.so kded_PORT= x11/kf5-kded kded_LIB= libkdeinit5_kded5.so kdelibs4support_PORT= x11/kf5-kdelibs4support kdelibs4support_LIB= libKF5KDELibs4Support.so kdesu_PORT= security/kf5-kdesu kdesu_LIB= libKF5Su.so kdewebkit_PORT= www/kf5-kdewebkit kdewebkit_LIB= libKF5WebKit.so khtml_PORT= www/kf5-khtml khtml_LIB= libKF5KHtml.so kimageformats_PORT= graphics/kf5-kimageformats kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kimageformats_TYPE= run kio_PORT= devel/kf5-kio kio_LIB= libKF5KIOCore.so kirigami2_PORT= x11-toolkits/kf5-kirigami2 kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kross_PORT= lang/kf5-kross kross_LIB= libKF5KrossCore.so mediaplayer_PORT= multimedia/kf5-kmediaplayer mediaplayer_LIB= libKF5MediaPlayer.so.5 newstuff_PORT= devel/kf5-knewstuff newstuff_LIB= libKF5NewStuff.so notifications_PORT= devel/kf5-knotifications notifications_LIB= libKF5Notifications.so notifyconfig_PORT= devel/kf5-knotifyconfig notifyconfig_LIB= libKF5NotifyConfig.so # This is a KF5 port used by KDE4 as well, but it's architecture-independent # and only contains icons. oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme oxygen-icons5_TYPE= run package_PORT= devel/kf5-kpackage package_LIB= libKF5Package.so parts_PORT= devel/kf5-kparts parts_LIB= libKF5Parts.so people_PORT= devel/kf5-kpeople people_LIB= libKF5People.so plasma-framework_PORT= x11/kf5-plasma-framework plasma-framework_LIB= libKF5Plasma.so plotting_PORT= graphics/kf5-kplotting plotting_LIB= libKF5Plotting.so prison_PORT= graphics/kf5-prison prison_LIB= libKF5Prison.so pty_PORT= devel/kf5-kpty pty_LIB= libKF5Pty.so purpose_PORT= misc/kf5-purpose purpose_LIB= libKF5Purpose.so qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so runner_PORT= x11/kf5-krunner runner_LIB= libKF5Runner.so service_PORT= devel/kf5-kservice service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 solid_PORT= devel/kf5-solid solid_LIB= libKF5Solid.so sonnet_PORT= textproc/kf5-sonnet sonnet_LIB= libKF5SonnetCore.so syndication_PORT= net/kf5-syndication syndication_LIB= libKF5Syndication.so syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so texteditor_PORT= devel/kf5-ktexteditor texteditor_LIB= libKF5TextEditor.so textwidgets_PORT= x11-toolkits/kf5-ktextwidgets textwidgets_LIB= libKF5TextWidgets.so threadweaver_PORT= devel/kf5-threadweaver threadweaver_LIB= libKF5ThreadWeaver.so unitconversion_PORT= devel/kf5-kunitconversion unitconversion_LIB= libKF5UnitConversion.so wallet_PORT= sysutils/kf5-kwallet wallet_LIB= libKF5Wallet.so wayland_PORT= x11/kf5-kwayland wayland_LIB= libKF5WaylandClient.so widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons widgetsaddons_LIB= libKF5WidgetsAddons.so windowsystem_PORT= x11/kf5-kwindowsystem windowsystem_LIB= libKF5WindowSystem.so xmlgui_PORT= x11-toolkits/kf5-kxmlgui xmlgui_LIB= libKF5XmlGui.so xmlrpcclient_PORT= net/kf5-kxmlrpcclient xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== activitymanagerd_PORT= x11/plasma5-kactivitymanagerd activitymanagerd_LIB= libkactivitymanagerd_plugin.so breeze_PORT= x11-themes/plasma5-breeze breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 breeze-kde4_PORT= x11-themes/plasma5-breeze-kde4 breeze-kde4_PATH= ${KDE_PREFIX}/lib/kde4/kstyle_breeze_config.so decoration_PORT= x11-wm/plasma5-kdecoration decoration_LIB= libkdecorations2.so discover_PORT= sysutils/plasma5-discover discover_PATH= ${KDE_PREFIX}/bin/plasma-discover drkonqi_PORT= sysutils/plasma5-drkonqi drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi hotkeys_PORT= devel/plasma5-khotkeys hotkeys_LIB= libkhotkeysprivate.so.5 infocenter_PORT= sysutils/plasma5-kinfocenter infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kgamma5_PORT= x11/plasma5-kgamma5 kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kmenuedit_PORT= sysutils/plasma5-kmenuedit kmenuedit_LIB= libkdeinit5_kmenuedit.so kscreen_PORT= x11/plasma5-kscreen kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kscreenlocker_PORT= security/plasma5-kscreenlocker kscreenlocker_LIB= libKScreenLocker.so ksshaskpass_PORT= security/plasma5-ksshaskpass ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass ksysguard_PORT= sysutils/plasma5-ksysguard ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kwallet-pam_PORT= security/plasma5-kwallet-pam kwallet-pam_PATH= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kwayland-integration_PORT= x11/plasma5-kwayland-integration kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kwin_PORT= x11-wm/plasma5-kwin kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kwrited_PORT= devel/plasma5-kwrited kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so libkscreen_PORT= x11/plasma5-libkscreen libkscreen_LIB= libKF5Screen.so libksysguard_PORT= sysutils/plasma5-libksysguard libksysguard_LIB= libksgrd.so milou_PORT= deskutils/plasma5-milou milou_LIB= libmilou.so.5 oxygen_PORT= x11-themes/plasma5-oxygen oxygen_LIB= liboxygenstyle5.so plasma-desktop_PORT= x11/plasma5-plasma-desktop plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb plasma-integration_PORT= x11/plasma5-plasma-integration plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so plasma-pa_PORT= audio/plasma5-plasma-pa plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so plasma-sdk_PORT= devel/plasma5-plasma-sdk plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer plasma-workspace_PORT= x11/plasma5-plasma-workspace plasma-workspace_LIB= libkdeinit5_kcminit.so plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 powerdevil_PORT= sysutils/plasma5-powerdevil powerdevil_LIB= libpowerdevilcore.so systemsettings_PORT= sysutils/plasma5-systemsettings systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 user-manager_PORT= sysutils/plasma5-user-manager user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= akonadicontacts_PORT= net/akonadi-contacts akonadicontacts_LIB= libKF5AkonadiContact.so akonadiimportwizard_PORT= deskutils/akonadi-import-wizard akonadiimportwizard_LIB= libKPimImportWizard.so akonadimime_PORT= net/akonadi-mime akonadimime_LIB= libKF5AkonadiMime.so akonadinotes_PORT= net/akonadi-notes akonadinotes_LIB= libKF5AkonadiNotes.so akonadicalendar_PORT= net/akonadi-calendar akonadicalendar_LIB= libKF5AkonadiCalendar.so akonadisearch_PORT= net/akonadi-search akonadisearch_LIB= libKF5AkonadiSearchCore.so alarmcalendar_PORT= net/kalarmcal alarmcalendar_LIB= libKF5AlarmCalendar.so blog_PORT= net/kblog blog_LIB= libKF5Blog.so calendarsupport_PORT= net/calendarsupport calendarsupport_LIB= libKF5CalendarSupport.so calendarcore_PORT= net/kcalcore calendarcore_LIB= libKF5CalendarCore.so calendarutils_PORT= net/kcalutils calendarutils_LIB= libKF5CalendarUtils.so contacts_PORT= net/kcontacts contacts_LIB= libKF5Contacts.so eventviews_PORT= net/eventviews eventviews_LIB= libKF5EventViews.so gapi_PORT= net/libkgapi gapi_LIB= libKPimGAPICore.so grantleetheme_PORT= deskutils/grantleetheme grantleetheme_LIB= libKF5GrantleeTheme.so gravatar_PORT= net/libgravatar gravatar_LIB= libKF5Gravatar.so identitymanagement_PORT= net/kidentitymanagement identitymanagement_LIB= libKF5IdentityManagement.so imap_PORT= net/kimap imap_LIB= libKF5IMAP.so incidenceeditor_PORT= net/incidenceeditor incidenceeditor_LIB= libKF5IncidenceEditor.so kdepim-addons_PORT= deskutils/kdepim-addons kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kdepim-apps-libs_LIB= libKF5SendLater.so kdepim-runtime5_PORT= deskutils/kdepim-runtime kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kitinerary_PORT= net/kitinerary kitinerary_LIB= libKPimItinerary.so kontactinterface_PORT= net/kontactinterface kontactinterface_LIB= libKF5KontactInterface.so kpimdav_PORT= net/kdav kpimdav_LIB= libKPimKDAV.so kpkpass_PORT= security/kpkpass kpkpass_LIB= libKPimPkPass.so ksmtp_PORT= net/ksmtp ksmtp_LIB= libKPimSMTP.so ldap_PORT= net/kldap ldap_LIB= libKF5Ldap.so libkdepim_PORT= deskutils/libkdepim libkdepim_LIB= libKF5Libkdepim.so libkleo_PORT= security/libkleo libkleo_LIB= libKF5Libkleo.so libksieve_PORT= net/libksieve libksieve_LIB= libKF5KSieve.so mailcommon_PORT= net/mailcommon mailcommon_LIB= libKF5MailCommon.so mailimporter_PORT= net/mailimporter mailimporter_LIB= libKF5MailImporter.so mailtransport_PORT= net/kmailtransport mailtransport_LIB= libKF5MailTransport.so mbox_PORT= net/kmbox mbox_LIB= libKF5Mbox.so messagelib_PORT= net/messagelib messagelib_LIB= libKF5MessageList.so mime_PORT= net/kmime mime_LIB= libKF5Mime.so pimcommon_PORT= net/pimcommon pimcommon_LIB= libKF5PimCommon.so pimtextedit_PORT= net/kpimtextedit pimtextedit_LIB= libKF5PimTextEdit.so tnef_PORT= net/ktnef tnef_LIB= libKF5Tnef.so # PIM Applications akonadiconsole_PORT= deskutils/akonadiconsole akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole akregator_PORT= deskutils/akregator akregator_PATH= ${KDE_PREFIX}/bin/akregator grantlee-editor_PORT= deskutils/grantlee-editor grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kaddressbook_PORT= deskutils/kaddressbook kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kalarm_PORT= deskutils/kalarm kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kmail_PORT= deskutils/kmail kmail_PATH= ${KDE_PREFIX}/bin/kmail kmail-account-wizard_PORT= deskutils/kmail-account-wizard kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard knotes_PORT= deskutils/knotes knotex_PATH= ${KDE_PREFIX}/bin/knotes kontact_PORT= deskutils/kontact kontact_PATH= ${KDE_PREFIX}/bin/kontact korganizer_PORT= deskutils/korganizer korganizer_PATH= ${KDE_PREFIX}/bin/korganizer mbox-importer_PORT= deskutils/mbox-importer mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter pim-data-exporter_PORT= deskutils/pim-data-exporter pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimsettingexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ akonadi4_PORT= databases/akonadi-kde4 akonadi4_LIB= libakonadiprotocolinternals.so akonadi5_PORT= databases/akonadi akonadi5_LIB= libKF5AkonadiPrivate.so attica4_PORT= x11-toolkits/attica attica4_LIB= libattica.so baloo4_PORT= sysutils/baloo-kde4 baloo4_LIB= libbaloocore.so # baloo5 defined above, under KDE5 components baloo-widgets4_PORT= sysutils/baloo-widgets-kde4 baloo-widgets4_LIB= libbaloowidgets.so baloo-widgets5_PORT= sysutils/baloo-widgets baloo-widgets5_LIB= libKF5BalooWidgets.so kate4_PORT= editors/kate-kde4 kate4_LIB= libkateinterfaces.so kate5_PORT= editors/kate kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so libkcddb4_PORT= audio/libkcddb-kde4 libkcddb4_LIB= libkcddb.so libkcddb5_PORT= audio/libkcddb libkcddb5_LIB= libKF5Cddb.so libkcompactdisc4_PORT= audio/libkcompactdisc-kde4 libkcompactdisc4_LIB= libkcompactdisc.so libkcompactdisc5_PORT= audio/libkcompactdisc-kde5 libkcompactdisc5_LIB= libKF5CompactDisc.so libkdcraw4_PORT= graphics/libkdcraw-kde4 libkdcraw4_LIB= libkdcraw.so libkdcraw5_PORT= graphics/libkdcraw libkdcraw5_LIB= libKF5KDcraw.so libkdegames4_PORT= games/libkdegames-kde4 libkdegames4_LIB= libkdegames.so libkdegames5_PORT= games/libkdegames libkdegames5_LIB= libKF5KDEGames.so libkeduvocdocument4_PORT= misc/libkdeedu-kde4 libkeduvocdocument4_LIB= libkeduvocdocument.so libkeduvocdocument5_PORT= misc/libkeduvocdocument libkeduvocdocument5_LIB= libKEduVocDocument.so libkexiv24_PORT= graphics/libkexiv2-kde4 libkexiv24_LIB= libkexiv2.so libkexiv25_PORT= graphics/libkexiv2 libkexiv25_LIB= libKF5KExiv2.so libkipi4_PORT= graphics/libkipi-kde4 libkipi4_LIB= libkipi.so libkipi5_PORT= graphics/libkipi libkipi5_LIB= libKF5Kipi.so libksane4_PORT= graphics/libksane-kde4 libksane4_LIB= libksane.so libksane5_PORT= graphics/libksane libksane5_LIB= libKF5Sane.so marble4_PORT= astro/marble-kde4 marble4_LIB= libmarblewidget.so marble5_PORT= astro/marble marble5_LIB= libmarblewidget-qt5.so okular4_PORT= graphics/okular-kde4 okular4_LIB= libokularcore.so okular5_PORT= graphics/okular okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} ${comp}_PORT= ${${comp}${_KDE_VERSION}_PORT} . if defined(${comp}${_KDE_VERSION}_LIB) ${comp}_LIB= ${${comp}${_KDE_VERSION}_LIB} . else . if defined(${comp}${_KDE_VERSION}_PATH}) ${comp}_PATH= ${${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(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" ${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" ${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(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${KDE_PREFIX}/lib/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${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 Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 481850) +++ head/accessibility/kmag/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kmag-18.08.1.tar.xz) = 22fa51d9d45c41f6d1cdcded043447a523e482abefaa33f8c7d9413f0ead3da8 -SIZE (KDE/applications/18.08.1/kmag-18.08.1.tar.xz) = 628548 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kmag-18.08.2.tar.xz) = 67bfdbaf1ff63624e15ef2394604e608c1dab2670f4255daf09e4bfca2ae70b0 +SIZE (KDE/applications/18.08.2/kmag-18.08.2.tar.xz) = 628396 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 481850) +++ head/accessibility/kmousetool/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kmousetool-18.08.1.tar.xz) = 9fdfe3ccf7cb46be83ac795daddcb26a8d9793e3a020502a27b20f9f75fb3737 -SIZE (KDE/applications/18.08.1/kmousetool-18.08.1.tar.xz) = 113064 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kmousetool-18.08.2.tar.xz) = 516b14658ab5cf127d337e601e8d8902b7be2461882ec7463786d057e0c676db +SIZE (KDE/applications/18.08.2/kmousetool-18.08.2.tar.xz) = 113040 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 481850) +++ head/accessibility/kmouth/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kmouth-18.08.1.tar.xz) = 27d50ddb31d0b91f4f4f3fd612f2521eb7467a2f621dadf546607012cc6f8a7b -SIZE (KDE/applications/18.08.1/kmouth-18.08.1.tar.xz) = 1767208 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kmouth-18.08.2.tar.xz) = bc848cef91cee84f8420e7e75151a26dc0558d93e1b473e25aff45bfb9302f31 +SIZE (KDE/applications/18.08.2/kmouth-18.08.2.tar.xz) = 1767112 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 481850) +++ head/archivers/ark/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/ark-18.08.1.tar.xz) = 981100d5dfbb8797762585595ce09c8c7f600d523cbaeb6d03f17562a5c525cd -SIZE (KDE/applications/18.08.1/ark-18.08.1.tar.xz) = 2580104 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/ark-18.08.2.tar.xz) = 2354d6f3fd2adabfe6203240a0b7a6692bd08c8b50470b81b472d16ec7507ae7 +SIZE (KDE/applications/18.08.2/ark-18.08.2.tar.xz) = 2580240 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 481850) +++ head/archivers/ark/pkg-plist (revision 481851) @@ -1,95 +1,95 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.18.8.1 +lib/libkerfuffle.so.18.8.2 %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/kxmlgui5/ark/ark_viewer.rc share/locale/ar/LC_MESSAGES/ark.mo share/locale/ast/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml Index: head/astro/libkgeomap/distinfo =================================================================== --- head/astro/libkgeomap/distinfo (revision 481850) +++ head/astro/libkgeomap/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/libkgeomap-18.08.1.tar.xz) = c41e3d809969696f15c1f7f2ea87fdd6ce1f0f6b165ec87480ddd379d720ced6 -SIZE (KDE/applications/18.08.1/libkgeomap-18.08.1.tar.xz) = 151032 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/libkgeomap-18.08.2.tar.xz) = 25822ce321a051bfd48c5b33b715864cfee0727418e9b70f1574ea9ca2405b5b +SIZE (KDE/applications/18.08.2/libkgeomap-18.08.2.tar.xz) = 150956 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 481850) +++ head/astro/marble/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/marble-18.08.1.tar.xz) = 974cb5c0d0bbee079fbd4efa613fe1247205c92e29a156ef66b6e1ed90a186ed -SIZE (KDE/applications/18.08.1/marble-18.08.1.tar.xz) = 52419928 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/marble-18.08.2.tar.xz) = 600ce8d9427ab702536a4846d69e2289355b92e1e1b75bd2371e3cfa4e911d7f +SIZE (KDE/applications/18.08.2/marble-18.08.2.tar.xz) = 52420668 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 481850) +++ head/audio/audiocd-kio/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/audiocd-kio-18.08.1.tar.xz) = 113e00515260a289ed06debd22b0d1076e6f437ad0315b104d4e2218e92b9f87 -SIZE (KDE/applications/18.08.1/audiocd-kio-18.08.1.tar.xz) = 249100 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/audiocd-kio-18.08.2.tar.xz) = 40db7b9ba4850e266de089247e6d1cbb1c87f380cb22dce534b631c2e0365e24 +SIZE (KDE/applications/18.08.2/audiocd-kio-18.08.2.tar.xz) = 248904 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 481850) +++ head/audio/juk/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/juk-18.08.1.tar.xz) = ac12d0e2cf5c11738b232a584b5d73bc6b2874ae71b8083c31cc86c0f5a3be9e -SIZE (KDE/applications/18.08.1/juk-18.08.1.tar.xz) = 1874100 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/juk-18.08.2.tar.xz) = c423a930932cea94371d94880617a60bf5ea0e5bd5f674f9dd33cddd3aec683d +SIZE (KDE/applications/18.08.2/juk-18.08.2.tar.xz) = 1874392 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 481850) +++ head/audio/kmix/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/kmix-18.08.1.tar.xz) = f281ad91f1acae72e463215d7b8fd2f351b44914b13e2a314bb46a946b7bbcc4 -SIZE (KDE/applications/18.08.1/kmix-18.08.1.tar.xz) = 1072948 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/kmix-18.08.2.tar.xz) = 066f71e6a47bae97397a5d90569ac130173282d5780a0f708b015f604cff8de5 +SIZE (KDE/applications/18.08.2/kmix-18.08.2.tar.xz) = 1073048 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 481850) +++ head/audio/kwave/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/kwave-18.08.1.tar.xz) = e6c4fbfb7e49c4f71ac79cc4deccf13c88eff744b4ad46b4e1ebc888dcfd5dbf -SIZE (KDE/applications/18.08.1/kwave-18.08.1.tar.xz) = 6214968 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/kwave-18.08.2.tar.xz) = 0215baffaec3af2d1e1390801e22c4e3da628c99775242511927fcc5b73d222c +SIZE (KDE/applications/18.08.2/kwave-18.08.2.tar.xz) = 6215428 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 481850) +++ head/audio/libkcddb/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/libkcddb-18.08.1.tar.xz) = c15acb786fee3ca6aa450532f67a677cbc2c2987f5c76d7e9c391e9b5afcc3e3 -SIZE (KDE/applications/18.08.1/libkcddb-18.08.1.tar.xz) = 427108 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/libkcddb-18.08.2.tar.xz) = a403ddab8b7a6666a3d83fd98e7068478a3287f144df35494b47f0a32783998d +SIZE (KDE/applications/18.08.2/libkcddb-18.08.2.tar.xz) = 427004 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 481850) +++ head/audio/libkcompactdisc/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/libkcompactdisc-18.08.1.tar.xz) = 537199c9cf86e46378d708e25f3ce05c8b3f1fdcd69abdfee38191755f40b11c -SIZE (KDE/applications/18.08.1/libkcompactdisc-18.08.1.tar.xz) = 88704 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/libkcompactdisc-18.08.2.tar.xz) = a3bc15461060fc697fc8eb77e08d0965e44b02f443e96faf1960110da8d7f030 +SIZE (KDE/applications/18.08.2/libkcompactdisc-18.08.2.tar.xz) = 88668 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 481850) +++ head/databases/akonadi/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175946 -SHA256 (KDE/applications/18.08.1/akonadi-18.08.1.tar.xz) = 71296a35b0cf6cb1b603685da6cd59ad45ebd0b8a3ba7e933b13bf65fbf8373a -SIZE (KDE/applications/18.08.1/akonadi-18.08.1.tar.xz) = 1538372 +TIMESTAMP = 1539116195 +SHA256 (KDE/applications/18.08.2/akonadi-18.08.2.tar.xz) = ada4dc79d4df129d7f6a205da7c90c8e1fe51e8e78c31274917dcc5d63330a08 +SIZE (KDE/applications/18.08.2/akonadi-18.08.2.tar.xz) = 1538140 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 481850) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175935 -SHA256 (KDE/applications/18.08.1/akonadi-calendar-tools-18.08.1.tar.xz) = f408062f840799c3f641b9dc48ee269cad54893e5573ce82730bc014796f91d0 -SIZE (KDE/applications/18.08.1/akonadi-calendar-tools-18.08.1.tar.xz) = 226084 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/akonadi-calendar-tools-18.08.2.tar.xz) = 9fdf264a3c43e6fa5491624b2d52c3a62e0c58fd804118d224834090b62340ad +SIZE (KDE/applications/18.08.2/akonadi-calendar-tools-18.08.2.tar.xz) = 225988 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 481850) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175937 -SHA256 (KDE/applications/18.08.1/akonadi-import-wizard-18.08.1.tar.xz) = 5a9c2e0141aadc5b1ea3afc48844538874bbf2bb500583f66edc390294b30075 -SIZE (KDE/applications/18.08.1/akonadi-import-wizard-18.08.1.tar.xz) = 439496 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/akonadi-import-wizard-18.08.2.tar.xz) = d396a8235ab3e0df5a08a0bda78216d21d0949cf41fcd16901fb85c9098cfe25 +SIZE (KDE/applications/18.08.2/akonadi-import-wizard-18.08.2.tar.xz) = 439460 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 481850) +++ head/deskutils/akonadiconsole/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/akonadiconsole-18.08.1.tar.xz) = 766a2967f3fffd6121d95e7c7d8234ae88566b1ef54f29b1d97960b173562f0c -SIZE (KDE/applications/18.08.1/akonadiconsole-18.08.1.tar.xz) = 193812 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/akonadiconsole-18.08.2.tar.xz) = c523c6bc8a47fe4565d6b4ec6546205b86a4803a8c619dd203e44a22e4972dd9 +SIZE (KDE/applications/18.08.2/akonadiconsole-18.08.2.tar.xz) = 193808 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 481850) +++ head/deskutils/akregator/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175937 -SHA256 (KDE/applications/18.08.1/akregator-18.08.1.tar.xz) = 88931fa15031132e9143f2ce2776a282fbb54a84bf7cf5a4bf404278fe7246cb -SIZE (KDE/applications/18.08.1/akregator-18.08.1.tar.xz) = 2254228 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/akregator-18.08.2.tar.xz) = bef2ff8ff8242eb5bbfb6461b1051c3d1899834c4f03894c158db99fc865843f +SIZE (KDE/applications/18.08.2/akregator-18.08.2.tar.xz) = 2254248 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 481850) +++ head/deskutils/grantlee-editor/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/grantlee-editor-18.08.1.tar.xz) = 383d90d01c925bf46175169f7fe95880cf54843d5bb36ddc543d403e448c8872 -SIZE (KDE/applications/18.08.1/grantlee-editor-18.08.1.tar.xz) = 111508 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/grantlee-editor-18.08.2.tar.xz) = cd955d3aaee06759b52b92047d254de7fd1815883b9e460c6b92052d393e8b7f +SIZE (KDE/applications/18.08.2/grantlee-editor-18.08.2.tar.xz) = 111436 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 481850) +++ head/deskutils/grantleetheme/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175935 -SHA256 (KDE/applications/18.08.1/grantleetheme-18.08.1.tar.xz) = f634c62e990cc29dfe8d1a27b30af1bac646adeea952c6dfa6a4465d7542b1f9 -SIZE (KDE/applications/18.08.1/grantleetheme-18.08.1.tar.xz) = 51768 +TIMESTAMP = 1539116186 +SHA256 (KDE/applications/18.08.2/grantleetheme-18.08.2.tar.xz) = 9bc9d10e0a7fe9bc881585e87ecbae1716fc72fa600e8aba35542d6c8964d2ad +SIZE (KDE/applications/18.08.2/grantleetheme-18.08.2.tar.xz) = 51768 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 481850) +++ head/deskutils/kaddressbook/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175937 -SHA256 (KDE/applications/18.08.1/kaddressbook-18.08.1.tar.xz) = d642cdc03e342eb361393c5b528388a58a8bff77a746a4ed6cea6d2bea692724 -SIZE (KDE/applications/18.08.1/kaddressbook-18.08.1.tar.xz) = 538052 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/kaddressbook-18.08.2.tar.xz) = acf2fb483f85e322861c3985d9f2905042c9f744908041085d5dbc76366beb8b +SIZE (KDE/applications/18.08.2/kaddressbook-18.08.2.tar.xz) = 537952 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 481850) +++ head/deskutils/kalarm/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175933 -SHA256 (KDE/applications/18.08.1/kalarm-18.08.1.tar.xz) = 3c5ca02ac86f4ee32ca0b0e5e1fe6eb935b2eabb2e956925bf42281234b5a894 -SIZE (KDE/applications/18.08.1/kalarm-18.08.1.tar.xz) = 1813428 +TIMESTAMP = 1539116185 +SHA256 (KDE/applications/18.08.2/kalarm-18.08.2.tar.xz) = 7c143d86b24d6cfb80866109c2dc46dfa17dd0a145943f151eda6f06e149603b +SIZE (KDE/applications/18.08.2/kalarm-18.08.2.tar.xz) = 1813832 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 481850) +++ head/deskutils/kcharselect/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/kcharselect-18.08.1.tar.xz) = 4b46a90dbed3caf4011bc869184a14ec0e6392ea1cacdb80c61f009d07c0291b -SIZE (KDE/applications/18.08.1/kcharselect-18.08.1.tar.xz) = 355220 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/kcharselect-18.08.2.tar.xz) = f84ab2cb06cb6119089461b03c6470a84e1dc675f471d5e5249f0b39bbd68b9f +SIZE (KDE/applications/18.08.2/kcharselect-18.08.2.tar.xz) = 355512 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 481850) +++ head/deskutils/kdepim-addons/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175933 -SHA256 (KDE/applications/18.08.1/kdepim-addons-18.08.1.tar.xz) = f265a957db6f09ec98aaa24e7c5dd2a4782a5fcf4a4aa220071e13da007eef39 -SIZE (KDE/applications/18.08.1/kdepim-addons-18.08.1.tar.xz) = 2133692 +TIMESTAMP = 1539116185 +SHA256 (KDE/applications/18.08.2/kdepim-addons-18.08.2.tar.xz) = 98ace1101cc55efa527af76534284a92574baaa4d84409e4f4e8a737dd468527 +SIZE (KDE/applications/18.08.2/kdepim-addons-18.08.2.tar.xz) = 2133644 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 481850) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175936 -SHA256 (KDE/applications/18.08.1/kdepim-apps-libs-18.08.1.tar.xz) = 1c0adbb3949c5a7b7522a3b8eb31904486ecc5729205e3eaceb4aa0065de9b6c -SIZE (KDE/applications/18.08.1/kdepim-apps-libs-18.08.1.tar.xz) = 72904 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/kdepim-apps-libs-18.08.2.tar.xz) = 10ac6453b8bd961c6ad0a2fde1e7f4893bec25fe13307f34bb1fb6d82ce8b15a +SIZE (KDE/applications/18.08.2/kdepim-apps-libs-18.08.2.tar.xz) = 80576 Index: head/deskutils/kdepim-apps-libs/pkg-plist =================================================================== --- head/deskutils/kdepim-apps-libs/pkg-plist (revision 481850) +++ head/deskutils/kdepim-apps-libs/pkg-plist (revision 481851) @@ -1,167 +1,178 @@ etc/xdg/kdepim-apps-lib.categories etc/xdg/kdepim-apps-lib.renamecategories include/KF5/FollowupReminder/FollowUpReminderInfo include/KF5/FollowupReminder/FollowUpReminderUtil include/KF5/KAddressBookImportExport/KAddressBookContactSelectionDialog include/KF5/KAddressBookImportExport/KAddressBookContactSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookExportSelectionWidget include/KF5/KAddressBookImportExport/KAddressBookImportExportContactList include/KF5/KAddressBookImportExport/KAddressBookImportExportPlugin include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginInterface include/KF5/KAddressBookImportExport/KAddressBookImportExportPluginManager include/KF5/KaddressbookGrantlee/GrantleeContactFormatter include/KF5/KaddressbookGrantlee/GrantleeContactGroupFormatter include/KF5/KaddressbookGrantlee/GrantleeContactViewer include/KF5/KaddressbookGrantlee/GrantleePrint include/KF5/KdepimDBusInterfaces/ReminderClient include/KF5/KdepimDBusInterfaces/UriHandler include/KF5/SendLater/SendLaterDialog include/KF5/SendLater/SendLaterInfo include/KF5/SendLater/SendLaterUtil include/KF5/followupreminder/followupreminder_export.h include/KF5/followupreminder/followupreminderagentsettings.h include/KF5/followupreminder/followupreminderinfo.h include/KF5/followupreminder/followupreminderutil.h include/KF5/followupreminder_version.h include/KF5/kaddressbookgrantlee/grantleecontactformatter.h include/KF5/kaddressbookgrantlee/grantleecontactgroupformatter.h include/KF5/kaddressbookgrantlee/grantleecontactviewer.h include/KF5/kaddressbookgrantlee/grantleeprint.h include/KF5/kaddressbookgrantlee/kaddressbook_grantlee_export.h include/KF5/kaddressbookgrantlee_version.h include/KF5/kaddressbookimportexport/kaddressbook_importexport_export.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectiondialog.h include/KF5/kaddressbookimportexport/kaddressbookcontactselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookexportselectionwidget.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactfields.h include/KF5/kaddressbookimportexport/kaddressbookimportexportcontactlist.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugin.h include/KF5/kaddressbookimportexport/kaddressbookimportexportplugininterface.h include/KF5/kaddressbookimportexport/kaddressbookimportexportpluginmanager.h include/KF5/kaddressbookimportexport_version.h include/KF5/kdepimdbusinterfaces/kdepimdbusinterfaces_export.h include/KF5/kdepimdbusinterfaces/reminderclient.h include/KF5/kdepimdbusinterfaces/urihandler.h include/KF5/kdepimdbusinterfaces_version.h include/KF5/sendlater/sendlater_export.h include/KF5/sendlater/sendlateragentsettings.h include/KF5/sendlater/sendlaterdialog.h include/KF5/sendlater/sendlaterinfo.h include/KF5/sendlater/sendlaterutil.h include/KF5/sendlater_version.h lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfig.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderConfigVersion.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5FollowupReminder/KF5FollowupReminderTargets.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfig.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeConfigVersion.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookGrantlee/KF5KaddressbookGrantleeTargets.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfig.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportConfigVersion.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KaddressbookImportExport/KF5KaddressbookImportExportTargets.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfig.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesConfigVersion.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KdepimDBusInterfaces/KF5KdepimDBusInterfacesTargets.cmake lib/cmake/KF5SendLater/KF5SendLaterConfig.cmake lib/cmake/KF5SendLater/KF5SendLaterConfigVersion.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SendLater/KF5SendLaterTargets.cmake lib/libKF5FollowupReminder.so lib/libKF5FollowupReminder.so.5 lib/libKF5FollowupReminder.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookGrantlee.so lib/libKF5KaddressbookGrantlee.so.5 lib/libKF5KaddressbookGrantlee.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KaddressbookImportExport.so lib/libKF5KaddressbookImportExport.so.5 lib/libKF5KaddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KdepimDBusInterfaces.so lib/libKF5KdepimDBusInterfaces.so.5 lib/libKF5KdepimDBusInterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5SendLater.so lib/libKF5SendLater.so.5 lib/libKF5SendLater.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_FollowupReminder.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookGrantlee.pri %%QT_MKSPECDIR%%/modules/qt_KaddressbookImportExport.pri %%QT_MKSPECDIR%%/modules/qt_KdepimDBusInterfaces.pri %%QT_MKSPECDIR%%/modules/qt_SendLater.pri share/locale/ar/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ar/LC_MESSAGES/libsendlater.mo share/locale/ast/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ast/LC_MESSAGES/libsendlater.mo share/locale/bs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/bs/LC_MESSAGES/libsendlater.mo +share/locale/ca/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca/LC_MESSAGES/libsendlater.mo +share/locale/ca@valencia/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ca@valencia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ca@valencia/LC_MESSAGES/libsendlater.mo +share/locale/cs/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/cs/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/cs/LC_MESSAGES/libsendlater.mo share/locale/da/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/da/LC_MESSAGES/libsendlater.mo share/locale/de/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/de/LC_MESSAGES/libsendlater.mo share/locale/el/LC_MESSAGES/libsendlater.mo share/locale/en_GB/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/en_GB/LC_MESSAGES/libsendlater.mo +share/locale/es/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/es/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/es/LC_MESSAGES/libsendlater.mo share/locale/et/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/et/LC_MESSAGES/libsendlater.mo share/locale/fi/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fi/LC_MESSAGES/libsendlater.mo share/locale/fr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/fr/LC_MESSAGES/libsendlater.mo share/locale/gl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/gl/LC_MESSAGES/libsendlater.mo share/locale/hu/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/hu/LC_MESSAGES/libsendlater.mo share/locale/ia/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ia/LC_MESSAGES/libsendlater.mo +share/locale/it/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/it/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/it/LC_MESSAGES/libsendlater.mo share/locale/ja/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ja/LC_MESSAGES/libsendlater.mo share/locale/kk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/kk/LC_MESSAGES/libsendlater.mo share/locale/ko/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ko/LC_MESSAGES/libsendlater.mo share/locale/lt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/lt/LC_MESSAGES/libsendlater.mo share/locale/nb/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nb/LC_MESSAGES/libsendlater.mo share/locale/nds/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nds/LC_MESSAGES/libsendlater.mo +share/locale/nl/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/nl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/nl/LC_MESSAGES/libsendlater.mo share/locale/pl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pl/LC_MESSAGES/libsendlater.mo +share/locale/pt/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/pt/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt/LC_MESSAGES/libsendlater.mo share/locale/pt_BR/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/pt_BR/LC_MESSAGES/libsendlater.mo share/locale/ro/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ro/LC_MESSAGES/libsendlater.mo +share/locale/ru/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/ru/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/ru/LC_MESSAGES/libsendlater.mo +share/locale/sk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sk/LC_MESSAGES/libsendlater.mo share/locale/sl/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sl/LC_MESSAGES/libsendlater.mo share/locale/sr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/sr/LC_MESSAGES/libsendlater.mo share/locale/sv/LC_MESSAGES/libkaddressbookgrantlee.mo +share/locale/sv/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/sv/LC_MESSAGES/libsendlater.mo share/locale/tr/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/tr/LC_MESSAGES/libsendlater.mo share/locale/ug/LC_MESSAGES/libsendlater.mo +share/locale/uk/LC_MESSAGES/libkaddressbookimportexport.mo share/locale/uk/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/uk/LC_MESSAGES/libsendlater.mo share/locale/zh_CN/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_CN/LC_MESSAGES/libsendlater.mo share/locale/zh_TW/LC_MESSAGES/libkaddressbookgrantlee.mo share/locale/zh_TW/LC_MESSAGES/libsendlater.mo Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 481850) +++ head/deskutils/kdepim-runtime/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175934 -SHA256 (KDE/applications/18.08.1/kdepim-runtime-18.08.1.tar.xz) = 92cf5dad62236af2b7a7eddd19e11c9b7d41de45574c59c2fbefb9f00d6a6304 -SIZE (KDE/applications/18.08.1/kdepim-runtime-18.08.1.tar.xz) = 1749284 +TIMESTAMP = 1539116185 +SHA256 (KDE/applications/18.08.2/kdepim-runtime-18.08.2.tar.xz) = 629e05fd910b9633cf8f9b227248b46325c1a18cf3854b98c159aaeec66a0357 +SIZE (KDE/applications/18.08.2/kdepim-runtime-18.08.2.tar.xz) = 1752836 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 481850) +++ head/deskutils/keditbookmarks/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175934 -SHA256 (KDE/applications/18.08.1/keditbookmarks-18.08.1.tar.xz) = 4e1b58f5cf6337c41f4a04974577c9c6228d20066261168da8000715bd86df82 -SIZE (KDE/applications/18.08.1/keditbookmarks-18.08.1.tar.xz) = 184080 +TIMESTAMP = 1539116186 +SHA256 (KDE/applications/18.08.2/keditbookmarks-18.08.2.tar.xz) = 2f8c96abad9feb0f7a62ed274f5569bc12bf00b388aa3e2b541922d9494d4dfa +SIZE (KDE/applications/18.08.2/keditbookmarks-18.08.2.tar.xz) = 184012 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 481850) +++ head/deskutils/kfind/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175935 -SHA256 (KDE/applications/18.08.1/kfind-18.08.1.tar.xz) = 79ea2aff98965358273dbdf2d97c8f3e2f6a7db795acae9c77de97f177638497 -SIZE (KDE/applications/18.08.1/kfind-18.08.1.tar.xz) = 210392 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/kfind-18.08.2.tar.xz) = 1658242e7452b2e8bd13bfea7da29426e62da28f2be1606f03c8fb80ec7a3a90 +SIZE (KDE/applications/18.08.2/kfind-18.08.2.tar.xz) = 210268 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 481850) +++ head/deskutils/kmail/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175934 -SHA256 (KDE/applications/18.08.1/kmail-18.08.1.tar.xz) = 747eac028620da6c6aaf9b00d0d6ab3eabea23dcbad294b26ebff4c6ac3c0988 -SIZE (KDE/applications/18.08.1/kmail-18.08.1.tar.xz) = 4778308 +TIMESTAMP = 1539116186 +SHA256 (KDE/applications/18.08.2/kmail-18.08.2.tar.xz) = 46645d6174ec7ef769b6828848b65a07d2606b6a28f6650a46e56d8abd7cf565 +SIZE (KDE/applications/18.08.2/kmail-18.08.2.tar.xz) = 4777920 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 481850) +++ head/deskutils/kmail-account-wizard/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175934 -SHA256 (KDE/applications/18.08.1/kmail-account-wizard-18.08.1.tar.xz) = df341f1125567f2a02f45f66b0f7b3cf4107ee93b764a1f57b5a027c80c5f84b -SIZE (KDE/applications/18.08.1/kmail-account-wizard-18.08.1.tar.xz) = 156192 +TIMESTAMP = 1539116186 +SHA256 (KDE/applications/18.08.2/kmail-account-wizard-18.08.2.tar.xz) = bb98ec03be36f8606f58a03efe3d95ff79bf82d5c41e730568ea8f3e1033bf73 +SIZE (KDE/applications/18.08.2/kmail-account-wizard-18.08.2.tar.xz) = 156140 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 481850) +++ head/deskutils/knotes/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175937 -SHA256 (KDE/applications/18.08.1/knotes-18.08.1.tar.xz) = 9b496dc3687468f9a7e28b8b05cb155c2f3e2343d0f817d029bfc0ad985530b2 -SIZE (KDE/applications/18.08.1/knotes-18.08.1.tar.xz) = 338588 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/knotes-18.08.2.tar.xz) = cf066bb07688820e255c7524e1d49ddc76053d070153f093517e873bf10e33f6 +SIZE (KDE/applications/18.08.2/knotes-18.08.2.tar.xz) = 338548 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 481850) +++ head/deskutils/kontact/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175933 -SHA256 (KDE/applications/18.08.1/kontact-18.08.1.tar.xz) = 784b5db77ee95ece82d0bffe0cacb25766f679b8854152186d4c38fe4c76da8c -SIZE (KDE/applications/18.08.1/kontact-18.08.1.tar.xz) = 864416 +TIMESTAMP = 1539116185 +SHA256 (KDE/applications/18.08.2/kontact-18.08.2.tar.xz) = eb191f4826032071a788c357eb08269ec123d554ef9c8d30a64d50003cfa5e1c +SIZE (KDE/applications/18.08.2/kontact-18.08.2.tar.xz) = 864308 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 481850) +++ head/deskutils/korganizer/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175936 -SHA256 (KDE/applications/18.08.1/korganizer-18.08.1.tar.xz) = 1bd0042ea5b4ba1b6e0299eec63b480234eb1a0272ad3e625cc811939564b771 -SIZE (KDE/applications/18.08.1/korganizer-18.08.1.tar.xz) = 2278304 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/korganizer-18.08.2.tar.xz) = 29f4195146adc0317f5b867751bfeb53df7a85de9e683489aebcdc34f20cfb16 +SIZE (KDE/applications/18.08.2/korganizer-18.08.2.tar.xz) = 2278476 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 481850) +++ head/deskutils/kruler/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/kruler-18.08.1.tar.xz) = 69aa3e065f06660ca2cf9cf9f80c1db857b2f0ba8e28b24bd49bda5b51d5f38d -SIZE (KDE/applications/18.08.1/kruler-18.08.1.tar.xz) = 296100 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/kruler-18.08.2.tar.xz) = 692f671563d6df66e1f50999dda353bf7651710d99dc8c30a24177c15809270e +SIZE (KDE/applications/18.08.2/kruler-18.08.2.tar.xz) = 296088 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 481850) +++ head/deskutils/libkdepim/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175933 -SHA256 (KDE/applications/18.08.1/libkdepim-18.08.1.tar.xz) = c93f27a11b2a51ba186851f02043002140df013a37d6b0934639b41272f10767 -SIZE (KDE/applications/18.08.1/libkdepim-18.08.1.tar.xz) = 336756 +TIMESTAMP = 1539116185 +SHA256 (KDE/applications/18.08.2/libkdepim-18.08.2.tar.xz) = b297c762f3b8dae50be804aa6f70ae26f3c60b269ae4f4bb37583154e5075213 +SIZE (KDE/applications/18.08.2/libkdepim-18.08.2.tar.xz) = 336712 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 481850) +++ head/deskutils/mbox-importer/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175936 -SHA256 (KDE/applications/18.08.1/mbox-importer-18.08.1.tar.xz) = 58716e4e31d26f7a91082538cb7d98f4cf6644a9f5a73fcd99897502480816eb -SIZE (KDE/applications/18.08.1/mbox-importer-18.08.1.tar.xz) = 33612 +TIMESTAMP = 1539116187 +SHA256 (KDE/applications/18.08.2/mbox-importer-18.08.2.tar.xz) = 2b2e2cc06ccf8fed4694ed48d749bc08187c5cfb73e22b83c45061f89a887d89 +SIZE (KDE/applications/18.08.2/mbox-importer-18.08.2.tar.xz) = 33584 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 481850) +++ head/deskutils/pim-data-exporter/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175938 -SHA256 (KDE/applications/18.08.1/pim-data-exporter-18.08.1.tar.xz) = c7f363dbeff8d44c7a39d70671c35e3607a9f5d7999a6660a03a0fede8585707 -SIZE (KDE/applications/18.08.1/pim-data-exporter-18.08.1.tar.xz) = 269264 +TIMESTAMP = 1539116188 +SHA256 (KDE/applications/18.08.2/pim-data-exporter-18.08.2.tar.xz) = 18d50f2d57a0521b5b9df7f6a54587564c59ded9885baa03b73511d93762b005 +SIZE (KDE/applications/18.08.2/pim-data-exporter-18.08.2.tar.xz) = 269564 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 481850) +++ head/deskutils/pim-sieve-editor/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175935 -SHA256 (KDE/applications/18.08.1/pim-sieve-editor-18.08.1.tar.xz) = 4d10f19564d3761826695648d9e9018bafba31b9363421c0f867fed740e0d726 -SIZE (KDE/applications/18.08.1/pim-sieve-editor-18.08.1.tar.xz) = 447916 +TIMESTAMP = 1539116186 +SHA256 (KDE/applications/18.08.2/pim-sieve-editor-18.08.2.tar.xz) = 1f07607a3f6549ffd66ec1d4405706b56fee293c37aa843e5a39d8931c791a05 +SIZE (KDE/applications/18.08.2/pim-sieve-editor-18.08.2.tar.xz) = 448028 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 481850) +++ head/devel/cervisia/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/cervisia-18.08.1.tar.xz) = f05ec4f23e863696599859df49124e42a947716f18c1893c9d527a91b54639c2 -SIZE (KDE/applications/18.08.1/cervisia-18.08.1.tar.xz) = 1906612 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/cervisia-18.08.2.tar.xz) = 237f7ae6d6f08ea6f95bbe18a6787b0955a48264bcfa17851d142a491627e65c +SIZE (KDE/applications/18.08.2/cervisia-18.08.2.tar.xz) = 1906572 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 481850) +++ head/devel/dolphin-plugins/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/dolphin-plugins-18.08.1.tar.xz) = 6d2af38e61a1daa5cfc7bb395035c04a48ae96f7bb595d6c1ead14d1874d4071 -SIZE (KDE/applications/18.08.1/dolphin-plugins-18.08.1.tar.xz) = 193248 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/dolphin-plugins-18.08.2.tar.xz) = 7497ca4c86839b45d3ca6138d720ebd045af9f426977dcbafbf53adb4e70bad6 +SIZE (KDE/applications/18.08.2/dolphin-plugins-18.08.2.tar.xz) = 193176 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 481850) +++ head/devel/kapptemplate/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kapptemplate-18.08.1.tar.xz) = 1ca59f5290e12f572dccb56e29082bb4d908a358de6d8e477b09d60fc340e9b6 -SIZE (KDE/applications/18.08.1/kapptemplate-18.08.1.tar.xz) = 317492 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kapptemplate-18.08.2.tar.xz) = 61aaf5c20adf7b5ae583c446109fd17d2ff091c8504d9c7b7a0401afa0453ff9 +SIZE (KDE/applications/18.08.2/kapptemplate-18.08.2.tar.xz) = 317464 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 481850) +++ head/devel/kcachegrind/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kcachegrind-18.08.1.tar.xz) = 9519853ca2833cad1cdc2e014cc672c8681ce0ad59b06ee3e8dc4080e3af9852 -SIZE (KDE/applications/18.08.1/kcachegrind-18.08.1.tar.xz) = 809864 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kcachegrind-18.08.2.tar.xz) = 75483bc988b48ceb2d8759983d56bc28e439caf7613d042f2f89a90911a5f549 +SIZE (KDE/applications/18.08.2/kcachegrind-18.08.2.tar.xz) = 809920 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 481850) +++ head/devel/kde-dev-scripts/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kde-dev-scripts-18.08.1.tar.xz) = 2549317ca43b85fbdbe642c82f4512ffc72aa8124b6ea4f86020de5a2c1726f8 -SIZE (KDE/applications/18.08.1/kde-dev-scripts-18.08.1.tar.xz) = 377816 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kde-dev-scripts-18.08.2.tar.xz) = 37be9617661a0e100cbd1538e120ded300b2275c5b5fef075e6fe0b744700e83 +SIZE (KDE/applications/18.08.2/kde-dev-scripts-18.08.2.tar.xz) = 377768 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 481850) +++ head/devel/kde-dev-utils/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kde-dev-utils-18.08.1.tar.xz) = e5c1bb64bd1c8699b34836ed8b9d558755d804b4823416bbea4ac5a20f3fb9f0 -SIZE (KDE/applications/18.08.1/kde-dev-utils-18.08.1.tar.xz) = 61560 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kde-dev-utils-18.08.2.tar.xz) = eb1412f2d41c8e6f1e913613ead659476ddceea19d6955c27f9542e5e5bedf4a +SIZE (KDE/applications/18.08.2/kde-dev-utils-18.08.2.tar.xz) = 61504 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 481850) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kdesdk-thumbnailers-18.08.1.tar.xz) = a96bb1ebf70adacec1b3a614348192aba23c26bffa46c6e07f532687891d23b0 -SIZE (KDE/applications/18.08.1/kdesdk-thumbnailers-18.08.1.tar.xz) = 17408 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kdesdk-thumbnailers-18.08.2.tar.xz) = 6193c202b8dbcd2e23445a2390e6814edcb68e33a27782725c3673bb04eff130 +SIZE (KDE/applications/18.08.2/kdesdk-thumbnailers-18.08.2.tar.xz) = 17412 Index: head/devel/kio-extras/Makefile =================================================================== --- head/devel/kio-extras/Makefile (revision 481850) +++ head/devel/kio-extras/Makefile (revision 481851) @@ -1,66 +1,65 @@ # $FreeBSD$ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libHalf.so:graphics/ilmbase USES= cmake:outsource compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= core dbus gui location network phonon4 printsupport qml quick \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build SHEBANG_FILES= info/kde-info2html OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH WEBENGINE TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH WEBENGINE TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib WEBENGINE_DESC= Needed to build the html thumbnailer WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=webengine .include Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 481850) +++ head/devel/kio-extras/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175927 -SHA256 (KDE/applications/18.08.1/kio-extras-18.08.1.tar.xz) = dc3f185908c05e02c555f36b7ef182e6a935b990e28d71f835c5e051d842060f -SIZE (KDE/applications/18.08.1/kio-extras-18.08.1.tar.xz) = 552308 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kio-extras-18.08.2.tar.xz) = 25e89675d9036bc0740f91e44c0a912e9a06247753ab5081740f67e3616044b3 +SIZE (KDE/applications/18.08.2/kio-extras-18.08.2.tar.xz) = 552276 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 481850) +++ head/devel/lokalize/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/lokalize-18.08.1.tar.xz) = 3626456adb770373b49d45a4110bbbcc593dae94aec16017616de36de5b0bbcc -SIZE (KDE/applications/18.08.1/lokalize-18.08.1.tar.xz) = 2893308 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/lokalize-18.08.2.tar.xz) = fca199b3281e1f1569ce85879fd201d43eaf78a23736bcdf942e7ce208836f1f +SIZE (KDE/applications/18.08.2/lokalize-18.08.2.tar.xz) = 2893204 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 481850) +++ head/devel/poxml/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/poxml-18.08.1.tar.xz) = a832bcf97915e08604eef0d304508318b746e4e3658db1cba230224960ef5ffd -SIZE (KDE/applications/18.08.1/poxml-18.08.1.tar.xz) = 43216 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/poxml-18.08.2.tar.xz) = 2d46deefbd713469ab66528d0917d4218133b60144aba683d5181488270ca448 +SIZE (KDE/applications/18.08.2/poxml-18.08.2.tar.xz) = 43156 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 481850) +++ head/devel/umbrello/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/umbrello-18.08.1.tar.xz) = 391a5be46918b83aa31df48499c19842c365c674899d182220b2ecf2e540e29a -SIZE (KDE/applications/18.08.1/umbrello-18.08.1.tar.xz) = 3047172 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/umbrello-18.08.2.tar.xz) = 1fe7a245bb4df0c645cc68eb8a5d3aace0481f6e368721d1c01355136ae75301 +SIZE (KDE/applications/18.08.2/umbrello-18.08.2.tar.xz) = 3048412 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 481850) +++ head/editors/kate/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kate-18.08.1.tar.xz) = 4afb79472935ed172e74a72e0008a0b9078523a07d831e16736638e7a4994dcb -SIZE (KDE/applications/18.08.1/kate-18.08.1.tar.xz) = 5657336 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/kate-18.08.2.tar.xz) = 448cd535c91ccc89e0a8012c116f7b9ccbb6871cfe034fa406dc47a1fffdcee5 +SIZE (KDE/applications/18.08.2/kate-18.08.2.tar.xz) = 5657696 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 481850) +++ head/games/blinken/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/blinken-18.08.1.tar.xz) = 790981f8794f42554da69385067d405f950e2a00cbd006008dba94fc5a43f377 -SIZE (KDE/applications/18.08.1/blinken-18.08.1.tar.xz) = 2507716 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/blinken-18.08.2.tar.xz) = 6e8ebf55872262f694f8ebdf9ac396c064485bd4fee1477115f5ec6abc10a570 +SIZE (KDE/applications/18.08.2/blinken-18.08.2.tar.xz) = 2507632 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 481850) +++ head/games/bomber/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/bomber-18.08.1.tar.xz) = c7aab315cb993f099f6426be3033aa7760959cf7715095525e0ad22994439f74 -SIZE (KDE/applications/18.08.1/bomber-18.08.1.tar.xz) = 819452 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/bomber-18.08.2.tar.xz) = ad493e4deb273c6c7e9f2669bedb454fa373c52ba0e1500c8e7eeac7d9a7769a +SIZE (KDE/applications/18.08.2/bomber-18.08.2.tar.xz) = 819384 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 481850) +++ head/games/bovo/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/bovo-18.08.1.tar.xz) = 22df49fb9998b16ba63509684e50fe80634c6a589b92d7e75ec8c336254f98cb -SIZE (KDE/applications/18.08.1/bovo-18.08.1.tar.xz) = 199616 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/bovo-18.08.2.tar.xz) = cb6fe9e5e5a47903fef7c730291a068fc5460609e2fca24fcf6d402e6c0245e6 +SIZE (KDE/applications/18.08.2/bovo-18.08.2.tar.xz) = 199564 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 481850) +++ head/games/granatier/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/granatier-18.08.1.tar.xz) = c014f833c6fb3dc49dabc9c5cf9805f9258160b15dcc636c0a69069b86815818 -SIZE (KDE/applications/18.08.1/granatier-18.08.1.tar.xz) = 1943044 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/granatier-18.08.2.tar.xz) = 3ec8b7546d9f2d1a142ea81d8e82b21cbfd4ed4dcb0f356d77397a08d69ca29b +SIZE (KDE/applications/18.08.2/granatier-18.08.2.tar.xz) = 1943100 Index: head/games/kajongg/distinfo =================================================================== --- head/games/kajongg/distinfo (revision 481850) +++ head/games/kajongg/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kajongg-18.08.1.tar.xz) = bf0d00d588b3e49b4884f7bb82709ef973bc44cc1bc21ca9dddb270c5ef3f22a -SIZE (KDE/applications/18.08.1/kajongg-18.08.1.tar.xz) = 4467228 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kajongg-18.08.2.tar.xz) = 8cf41127757afee100a11b9c48d9ca15fb00c47869fd11e884c4f04d2fdd0e1e +SIZE (KDE/applications/18.08.2/kajongg-18.08.2.tar.xz) = 4467160 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 481850) +++ head/games/kanagram/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kanagram-18.08.1.tar.xz) = bf8500b44bdf7bea8a28bbdca38ff60127bacbfdf0d3ff23ec0a0cbb77c60857 -SIZE (KDE/applications/18.08.1/kanagram-18.08.1.tar.xz) = 7432164 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kanagram-18.08.2.tar.xz) = 302d5a50273cf90bbfb495a584230fa15398a9f374edf1c0c0d2454571099d36 +SIZE (KDE/applications/18.08.2/kanagram-18.08.2.tar.xz) = 7432104 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 481850) +++ head/games/kapman/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kapman-18.08.1.tar.xz) = 6d28ebb1b26688b30e76826823af7880d2236b1a9614d3e93142a94ba94f383f -SIZE (KDE/applications/18.08.1/kapman-18.08.1.tar.xz) = 2525716 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kapman-18.08.2.tar.xz) = c30e20ec46e9adb9285a7cde7b850ce21d56118a03340e93b03f4d087eda191c +SIZE (KDE/applications/18.08.2/kapman-18.08.2.tar.xz) = 2525656 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 481850) +++ head/games/katomic/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/katomic-18.08.1.tar.xz) = cd2458e77514359350c75183b3776e22f4767ec7f68080af2eb92764e1a1a831 -SIZE (KDE/applications/18.08.1/katomic-18.08.1.tar.xz) = 1422872 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/katomic-18.08.2.tar.xz) = 41808e1527621cbcc5a219659b0e09074587e3c05608e6cc09d61a03fe6c0de3 +SIZE (KDE/applications/18.08.2/katomic-18.08.2.tar.xz) = 1422844 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 481850) +++ head/games/kblackbox/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kblackbox-18.08.1.tar.xz) = 9c0db62809240ba1cac89b8565f9e7b1e1ce5c47115621435e32d466d334ad03 -SIZE (KDE/applications/18.08.1/kblackbox-18.08.1.tar.xz) = 444688 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kblackbox-18.08.2.tar.xz) = 40211cee7be3e831d70ba1a78a7af53f0a270db8537e44b2d9589b115613d596 +SIZE (KDE/applications/18.08.2/kblackbox-18.08.2.tar.xz) = 444624 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 481850) +++ head/games/kblocks/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kblocks-18.08.1.tar.xz) = 571476a09025198331f0a5aba12ef2f60d5c78d827991ceabc32de9c56773079 -SIZE (KDE/applications/18.08.1/kblocks-18.08.1.tar.xz) = 1921816 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kblocks-18.08.2.tar.xz) = 1d9ad17a684bd3350d48dbc68eaee81f6da1d3a34e71264dc178fa2b08b3be9e +SIZE (KDE/applications/18.08.2/kblocks-18.08.2.tar.xz) = 1921040 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 481850) +++ head/games/kbounce/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kbounce-18.08.1.tar.xz) = f1ceeacf49820acd2b15ad1e085dcc34d4661d491a42f335ec94ea5161ab58cc -SIZE (KDE/applications/18.08.1/kbounce-18.08.1.tar.xz) = 3465900 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kbounce-18.08.2.tar.xz) = 2459883a6da3172d45ea1e1c9a266effa7f65f3e7a084071bd0e1f8c87c1552a +SIZE (KDE/applications/18.08.2/kbounce-18.08.2.tar.xz) = 3465948 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 481850) +++ head/games/kbreakout/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/kbreakout-18.08.1.tar.xz) = 5998a7310b533fbb209d7174d285e0d4bafc7b3a6d8a123adaee3c7f8f81bd1a -SIZE (KDE/applications/18.08.1/kbreakout-18.08.1.tar.xz) = 2274216 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/kbreakout-18.08.2.tar.xz) = 80a879b12b09e380576ebb51677ee19ab11eff81a275f9a9d4c16a7bb14019b0 +SIZE (KDE/applications/18.08.2/kbreakout-18.08.2.tar.xz) = 2274008 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 481850) +++ head/games/kdiamond/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/kdiamond-18.08.1.tar.xz) = 62b376a47da4174e1bfd24061ef1f2b8fb18617a462dc5bced75cdb49a6a986d -SIZE (KDE/applications/18.08.1/kdiamond-18.08.1.tar.xz) = 4718832 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kdiamond-18.08.2.tar.xz) = 802187dee43f0b885dbf321eadb9f59e0adee17324e3e875014f83e0cc33da46 +SIZE (KDE/applications/18.08.2/kdiamond-18.08.2.tar.xz) = 4718784 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 481850) +++ head/games/kfourinline/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kfourinline-18.08.1.tar.xz) = 3751f662e101fb173df8d883f879475aa0e1504dd05372f1c48e04213478e80d -SIZE (KDE/applications/18.08.1/kfourinline-18.08.1.tar.xz) = 635584 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kfourinline-18.08.2.tar.xz) = 04a359f761130d3b5368792fe06208f9e2262228ed117aefa9f5d4f19acb3eda +SIZE (KDE/applications/18.08.2/kfourinline-18.08.2.tar.xz) = 635672 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 481850) +++ head/games/kgoldrunner/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kgoldrunner-18.08.1.tar.xz) = 1e4846d702fc45d1fd03223df117fe6e3277d6e4a08d60adc7083bc0adca6df1 -SIZE (KDE/applications/18.08.1/kgoldrunner-18.08.1.tar.xz) = 4406416 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kgoldrunner-18.08.2.tar.xz) = dcb247aea77d1339868fe19aeb96c11c78d6752cdcb741bd318af2f78148095a +SIZE (KDE/applications/18.08.2/kgoldrunner-18.08.2.tar.xz) = 4409132 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 481850) +++ head/games/khangman/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/khangman-18.08.1.tar.xz) = 1e8780724576007f0d7edfa8f3d9ad8a97d631f4b2454335562473dae5a289d9 -SIZE (KDE/applications/18.08.1/khangman-18.08.1.tar.xz) = 7260932 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/khangman-18.08.2.tar.xz) = ec05d789ec464e8ecb615de52d9ee38144fbe83a2891ddf9f0dfbc2f42486525 +SIZE (KDE/applications/18.08.2/khangman-18.08.2.tar.xz) = 7264092 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 481850) +++ head/games/kigo/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kigo-18.08.1.tar.xz) = 8a80a955bd12ce7372ec1b3e1813b815c3debd2d096dbbe6e5e390b82a1babb6 -SIZE (KDE/applications/18.08.1/kigo-18.08.1.tar.xz) = 5224276 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kigo-18.08.2.tar.xz) = be35e9b96b422e0dd239ac8d306a10c28cbab77588189ae317d26a3492a0839f +SIZE (KDE/applications/18.08.2/kigo-18.08.2.tar.xz) = 5224336 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 481850) +++ head/games/killbots/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/killbots-18.08.1.tar.xz) = c024c94f41a59ca5b0d3068613b449d0ee31591ea1257342f25f227773a48fa0 -SIZE (KDE/applications/18.08.1/killbots-18.08.1.tar.xz) = 1165252 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/killbots-18.08.2.tar.xz) = 6a74c40ce56160469575be7f4e282f25223f57d20d5e4bfc4d7dfbc592fad197 +SIZE (KDE/applications/18.08.2/killbots-18.08.2.tar.xz) = 1165152 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 481850) +++ head/games/kiriki/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kiriki-18.08.1.tar.xz) = 1f625912e87dbcf03a4d39a888e971c7fb3ac0ac67dafd5596d16dec2e7582cd -SIZE (KDE/applications/18.08.1/kiriki-18.08.1.tar.xz) = 371884 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kiriki-18.08.2.tar.xz) = b7ccdc73712ec6bf948bc9255c8872417f439de4fa80df8f41baacb07ff60b9b +SIZE (KDE/applications/18.08.2/kiriki-18.08.2.tar.xz) = 371844 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 481850) +++ head/games/kjumpingcube/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kjumpingcube-18.08.1.tar.xz) = aba0aaf72134a764f1fa363c0a4ee52ac045b16abd78e7c1d2dfa07657f3dfe1 -SIZE (KDE/applications/18.08.1/kjumpingcube-18.08.1.tar.xz) = 286756 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kjumpingcube-18.08.2.tar.xz) = 0c3b9bcb691196f5d52ddc9834204b263a71b86def131c13bd60e5fa46807590 +SIZE (KDE/applications/18.08.2/kjumpingcube-18.08.2.tar.xz) = 286776 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 481850) +++ head/games/klickety/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/klickety-18.08.1.tar.xz) = 22a55a1aa9e41c40f073f67f031efc8b0043d34dd2c15adf72d93d762171a7ff -SIZE (KDE/applications/18.08.1/klickety-18.08.1.tar.xz) = 1388944 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/klickety-18.08.2.tar.xz) = f9a8fddebfb70d984f9494288efb5d2862aa4f0848ef6baf9e1e2343f76e227e +SIZE (KDE/applications/18.08.2/klickety-18.08.2.tar.xz) = 1388932 Index: head/games/klickety/pkg-plist =================================================================== --- head/games/klickety/pkg-plist (revision 481850) +++ head/games/klickety/pkg-plist (revision 481851) @@ -1,71 +1,73 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop share/icons/hicolor/128x128/apps/klickety.png share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svg %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svg %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svg %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png share/kxmlgui5/klickety/klicketyui.rc share/locale/ast/LC_MESSAGES/klickety.mo share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo +share/metainfo/org.kde.klickety.appdata.xml +share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 481850) +++ head/games/klines/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/klines-18.08.1.tar.xz) = 2cbf40c6025676a46b83ee7822fd68ac8b211d2de65dee871e4076a8f9fe9bf3 -SIZE (KDE/applications/18.08.1/klines-18.08.1.tar.xz) = 1781760 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/klines-18.08.2.tar.xz) = cd09ebe39e3d17854e23b1ed274514a941f07faa91a19a7a10058b40cf1ef3b6 +SIZE (KDE/applications/18.08.2/klines-18.08.2.tar.xz) = 1781340 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 481850) +++ head/games/kmahjongg/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kmahjongg-18.08.1.tar.xz) = 818369b18774b0bff609dd03d2602c52f3abc117c79882c81b36d53653afb1e5 -SIZE (KDE/applications/18.08.1/kmahjongg-18.08.1.tar.xz) = 4064200 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kmahjongg-18.08.2.tar.xz) = 37d6a508aaafe9ee1e078a28044b9d6b2e25f0ec8cb78649595c141ab7b2ec2c +SIZE (KDE/applications/18.08.2/kmahjongg-18.08.2.tar.xz) = 4064220 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 481850) +++ head/games/kmines/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/kmines-18.08.1.tar.xz) = 608dd24364d31c18cae98721a5774d4e72cfb12c6c0e93c037524aa34dc85233 -SIZE (KDE/applications/18.08.1/kmines-18.08.1.tar.xz) = 901464 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kmines-18.08.2.tar.xz) = 209546e11fd5a5c6a571eff92f6d819f8295ba498d33bf6251eeb703f017cf49 +SIZE (KDE/applications/18.08.2/kmines-18.08.2.tar.xz) = 901460 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 481850) +++ head/games/knavalbattle/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/knavalbattle-18.08.1.tar.xz) = 39a975b5720cf5040f8990e180f3b404ada40c1c2fba072a5552fb6ac07ebf4b -SIZE (KDE/applications/18.08.1/knavalbattle-18.08.1.tar.xz) = 1280332 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/knavalbattle-18.08.2.tar.xz) = 40a07e350cf5b48d2e190cf0634012cfe114d1dbd420fbb218ba766653edafd1 +SIZE (KDE/applications/18.08.2/knavalbattle-18.08.2.tar.xz) = 1280324 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 481850) +++ head/games/knetwalk/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/knetwalk-18.08.1.tar.xz) = 5dad9cefe1afbdfc792f5cb13487646ec85e2123d9657e990863c12da392e4ad -SIZE (KDE/applications/18.08.1/knetwalk-18.08.1.tar.xz) = 1036676 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/knetwalk-18.08.2.tar.xz) = e5473ca29f4b628b69b42fc9cb4c444bfe24a59e0c6ab7cde1fd9665a9aa9de4 +SIZE (KDE/applications/18.08.2/knetwalk-18.08.2.tar.xz) = 1036576 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 481850) +++ head/games/kolf/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kolf-18.08.1.tar.xz) = cbb475d3e3813b737337d4e2c8779eba79182f7dd71944bccbe1900e6995ffd9 -SIZE (KDE/applications/18.08.1/kolf-18.08.1.tar.xz) = 923492 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kolf-18.08.2.tar.xz) = 4704217a8c24b58eebcf0fa339a1795e9420949e026d5d30b5970bcaf24ad9f6 +SIZE (KDE/applications/18.08.2/kolf-18.08.2.tar.xz) = 925276 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 481850) +++ head/games/kollision/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/kollision-18.08.1.tar.xz) = 22f6509fae1289f56f363d91c9c1793aefc9853b4ab071dc1d4523fe531d4647 -SIZE (KDE/applications/18.08.1/kollision-18.08.1.tar.xz) = 280712 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kollision-18.08.2.tar.xz) = 72d5c5b3424eb15d4698fddffa684f8ddef2149c8fec0e5f9dec244bfa6beb06 +SIZE (KDE/applications/18.08.2/kollision-18.08.2.tar.xz) = 280688 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 481850) +++ head/games/konquest/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/konquest-18.08.1.tar.xz) = 9dd278915206ae6fd1dcfaa0797c71f486bbba7e03f298263ee475a1ec746af8 -SIZE (KDE/applications/18.08.1/konquest-18.08.1.tar.xz) = 658704 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/konquest-18.08.2.tar.xz) = 14ddeacfef3e0797f2f929c790ea42814999d6063d957f7928fae77c7f1cbe1f +SIZE (KDE/applications/18.08.2/konquest-18.08.2.tar.xz) = 658756 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 481850) +++ head/games/kpat/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kpat-18.08.1.tar.xz) = c57cba6389c0546c658db8429d787de99a411bd3d2310909e69cb38b5a75ad32 -SIZE (KDE/applications/18.08.1/kpat-18.08.1.tar.xz) = 3568364 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kpat-18.08.2.tar.xz) = 9fcebc7ddad4f23f77f0d1fd6eee6364cf6337957989cc4ba699651a305889b0 +SIZE (KDE/applications/18.08.2/kpat-18.08.2.tar.xz) = 3568460 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 481850) +++ head/games/kreversi/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kreversi-18.08.1.tar.xz) = 0b48a289a8807812e68ecd5395dd6428ada071a237bd69aba58f56b83e3336eb -SIZE (KDE/applications/18.08.1/kreversi-18.08.1.tar.xz) = 943456 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kreversi-18.08.2.tar.xz) = c50190e2e11dcf74d04e9c727515130c55744cfd25090596b4f41491eb9ddcc0 +SIZE (KDE/applications/18.08.2/kreversi-18.08.2.tar.xz) = 943440 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 481850) +++ head/games/kshisen/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/kshisen-18.08.1.tar.xz) = a4320a8212d34ebfc697d69dc17da176d7705307488769255c11414ef4cd871f -SIZE (KDE/applications/18.08.1/kshisen-18.08.1.tar.xz) = 821184 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kshisen-18.08.2.tar.xz) = 00e8ea2763a531f9ce0d47bc1230e9d85c091bc33d6ec5c2e134a8c914556b61 +SIZE (KDE/applications/18.08.2/kshisen-18.08.2.tar.xz) = 821112 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 481850) +++ head/games/ksirk/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/ksirk-18.08.1.tar.xz) = 8944e85188718b6ea6fe08a7a24885454d5ad1769e66400fe8acae65b3eb1267 -SIZE (KDE/applications/18.08.1/ksirk-18.08.1.tar.xz) = 6982328 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/ksirk-18.08.2.tar.xz) = ebc9eac545ed82a1bf8bbe2d67e3138679f4b4503a93a123282005f12d300df9 +SIZE (KDE/applications/18.08.2/ksirk-18.08.2.tar.xz) = 6987300 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 481850) +++ head/games/ksnakeduel/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/ksnakeduel-18.08.1.tar.xz) = 18acba2b793cdf4312fd51ec8f40f3383abe6f13161f8187561f91d42b490b50 -SIZE (KDE/applications/18.08.1/ksnakeduel-18.08.1.tar.xz) = 605604 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/ksnakeduel-18.08.2.tar.xz) = f0057dfcc2d758c2e4f760b2a9e927e19d52f759c1944d51bd7954659b9f3057 +SIZE (KDE/applications/18.08.2/ksnakeduel-18.08.2.tar.xz) = 605456 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 481850) +++ head/games/kspaceduel/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kspaceduel-18.08.1.tar.xz) = 5dfc24ad304b5ef1b84762fb98f6761f706c134a26f120c6fb7f8ae3440453ba -SIZE (KDE/applications/18.08.1/kspaceduel-18.08.1.tar.xz) = 611244 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/kspaceduel-18.08.2.tar.xz) = 4e27fb93f2184a55ac617ea2532d1cd7ae17e141f95d6d08490a118bdc79706b +SIZE (KDE/applications/18.08.2/kspaceduel-18.08.2.tar.xz) = 611252 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 481850) +++ head/games/ksquares/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/ksquares-18.08.1.tar.xz) = 4deba1f77bfd7771b917b7338c166104a740c593d52ec51daf32410e07f76054 -SIZE (KDE/applications/18.08.1/ksquares-18.08.1.tar.xz) = 259040 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/ksquares-18.08.2.tar.xz) = c443d75e77c980d25f4fb149c32a6942fac00d05933ee945bf3380032aa3cdd0 +SIZE (KDE/applications/18.08.2/ksquares-18.08.2.tar.xz) = 259008 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 481850) +++ head/games/ksudoku/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/ksudoku-18.08.1.tar.xz) = 01fd5031ade7cce971d3051f75091cd7c76315760b83ea652ab1ca7c130040d5 -SIZE (KDE/applications/18.08.1/ksudoku-18.08.1.tar.xz) = 1642964 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/ksudoku-18.08.2.tar.xz) = 2c7d11b0cb7d6cb270925c677d6617b751754081d637759e6a5befe9d6990f70 +SIZE (KDE/applications/18.08.2/ksudoku-18.08.2.tar.xz) = 1643064 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 481850) +++ head/games/ktuberling/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/ktuberling-18.08.1.tar.xz) = c82b8534abdef3b8c75ba8ea5ef72cea2074785c4d983dc7b702449b126fce9c -SIZE (KDE/applications/18.08.1/ktuberling-18.08.1.tar.xz) = 32800416 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/ktuberling-18.08.2.tar.xz) = 4ce7f2ca4f0267aa925cf16f278976540559aa6caf5adbd8b0226a6cba467c86 +SIZE (KDE/applications/18.08.2/ktuberling-18.08.2.tar.xz) = 32798608 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 481850) +++ head/games/kubrick/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/kubrick-18.08.1.tar.xz) = c0ac2104e7804cde189d859cf3ac56f43cf2c4dad5c2b9255fbf9d9e91058d5b -SIZE (KDE/applications/18.08.1/kubrick-18.08.1.tar.xz) = 308392 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/kubrick-18.08.2.tar.xz) = 281233577865dc0d75b93dc75dc3cf21a789d244ec262d6f7ddd35555b738403 +SIZE (KDE/applications/18.08.2/kubrick-18.08.2.tar.xz) = 308544 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 481850) +++ head/games/libkdegames/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/libkdegames-18.08.1.tar.xz) = 1c8f0e8cff49d2238d8b5f457134db4e0050a4a78b071c5a21ed21f0c0abb817 -SIZE (KDE/applications/18.08.1/libkdegames-18.08.1.tar.xz) = 5954476 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/libkdegames-18.08.2.tar.xz) = 250463ce73d3a2e5f33bab758491fad09125d121230659cfa6c8968bb4855a6f +SIZE (KDE/applications/18.08.2/libkdegames-18.08.2.tar.xz) = 6385580 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 481850) +++ head/games/libkmahjongg/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/libkmahjongg-18.08.1.tar.xz) = e952050eadf50e68302e859dde7d0ddefd385622d81ebb91a0ab68712ba8756f -SIZE (KDE/applications/18.08.1/libkmahjongg-18.08.1.tar.xz) = 1683808 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/libkmahjongg-18.08.2.tar.xz) = 88857eb2d60f6b007e02c58305c0be18c0289a6e5069b08dcd76878838b6ed15 +SIZE (KDE/applications/18.08.2/libkmahjongg-18.08.2.tar.xz) = 1683996 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 481850) +++ head/games/lskat/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/lskat-18.08.1.tar.xz) = d7eb8c24c851a65526a6f141213b28e3211525a04dfee6d8b4046a5635955687 -SIZE (KDE/applications/18.08.1/lskat-18.08.1.tar.xz) = 1218024 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/lskat-18.08.2.tar.xz) = f77ac85d1279472e21b1c4f37643ba6e4721687b08e55ba521b41ff4041a8bd4 +SIZE (KDE/applications/18.08.2/lskat-18.08.2.tar.xz) = 1217728 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 481850) +++ head/games/palapeli/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175941 -SHA256 (KDE/applications/18.08.1/palapeli-18.08.1.tar.xz) = 14ba3f8b9643a40f8ee44a54693f953a6fd1f3f747a84eeeb6d6a22f2bed869d -SIZE (KDE/applications/18.08.1/palapeli-18.08.1.tar.xz) = 2061460 +TIMESTAMP = 1539116191 +SHA256 (KDE/applications/18.08.2/palapeli-18.08.2.tar.xz) = 022d262f8daef302b99a26aca8bb2e6e0e9698c94a089069a199ffbc85a3a4f4 +SIZE (KDE/applications/18.08.2/palapeli-18.08.2.tar.xz) = 2061676 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 481850) +++ head/games/picmi/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175942 -SHA256 (KDE/applications/18.08.1/picmi-18.08.1.tar.xz) = 058cc5937bdada880543ffd2879fcfc882001603acaf3b70ccce078a8bfe832d -SIZE (KDE/applications/18.08.1/picmi-18.08.1.tar.xz) = 1356164 +TIMESTAMP = 1539116192 +SHA256 (KDE/applications/18.08.2/picmi-18.08.2.tar.xz) = 6597906bace183e733a523439a866a0e8890f0d031f3c5425d99bad464e78275 +SIZE (KDE/applications/18.08.2/picmi-18.08.2.tar.xz) = 1356112 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 481850) +++ head/graphics/gwenview/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/gwenview-18.08.1.tar.xz) = e9d6d335f314ae9f39bec7e2fefdb287a28741e2d883bf8324b8fc277cda625c -SIZE (KDE/applications/18.08.1/gwenview-18.08.1.tar.xz) = 6177620 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/gwenview-18.08.2.tar.xz) = f0b1a67b321864e88ae9509fcf4697460890fcc46b122c7ee64c83649fbb4dd5 +SIZE (KDE/applications/18.08.2/gwenview-18.08.2.tar.xz) = 6177924 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 481850) +++ head/graphics/kamera/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/kamera-18.08.1.tar.xz) = 9395a02dcd2ea5e6811c3e1a2ad798b1359ac7daf3ddb76a0af935c8be22e90e -SIZE (KDE/applications/18.08.1/kamera-18.08.1.tar.xz) = 97624 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kamera-18.08.2.tar.xz) = 1e28d702a97dd16c098711702a0731fc04bba9c2cc4d4edadbf321ae466f1c78 +SIZE (KDE/applications/18.08.2/kamera-18.08.2.tar.xz) = 97544 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 481850) +++ head/graphics/kcolorchooser/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/kcolorchooser-18.08.1.tar.xz) = ee32f33950120a9c4a3ea1d5967b2cb72573c8bd56ba9c1bb79bd20ae474ea08 -SIZE (KDE/applications/18.08.1/kcolorchooser-18.08.1.tar.xz) = 17076 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kcolorchooser-18.08.2.tar.xz) = 0fa7493844bc72623d20dee6ac10123254a934d8751338d27079ac4a370c5d43 +SIZE (KDE/applications/18.08.2/kcolorchooser-18.08.2.tar.xz) = 17024 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 481850) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/kdegraphics-mobipocket-18.08.1.tar.xz) = f69fa0dd72b584533dc0bc60625b44a154d3b40d118afcda3724313eec135c8e -SIZE (KDE/applications/18.08.1/kdegraphics-mobipocket-18.08.1.tar.xz) = 13472 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kdegraphics-mobipocket-18.08.2.tar.xz) = dca306ae117e5f7146b5d2b9f57232229052ef8c36f6ff45bffdd1bd4cb44bc7 +SIZE (KDE/applications/18.08.2/kdegraphics-mobipocket-18.08.2.tar.xz) = 13468 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 481850) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/svgpart-18.08.1.tar.xz) = ab5e3c6cc3605e500a418d7c9b504ce7e871e1602a9c7c7ac954d3d2fe2eb51e -SIZE (KDE/applications/18.08.1/svgpart-18.08.1.tar.xz) = 21060 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/svgpart-18.08.2.tar.xz) = 39cc085d2750312c0208dfa71e4e7196ef42342c6955188bcd4897faedb7be3c +SIZE (KDE/applications/18.08.2/svgpart-18.08.2.tar.xz) = 21004 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 481850) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/kdegraphics-thumbnailers-18.08.1.tar.xz) = 6092ab56b3f30c7c4c8f5202e939ebfdb696cd395e0fd8d763b2ca15502b3041 -SIZE (KDE/applications/18.08.1/kdegraphics-thumbnailers-18.08.1.tar.xz) = 41268 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/kdegraphics-thumbnailers-18.08.2.tar.xz) = 9e3bf5c42ebdbaadb27361b9610f6dcd0821a8f5126ff647d7c9093685c7ac15 +SIZE (KDE/applications/18.08.2/kdegraphics-thumbnailers-18.08.2.tar.xz) = 41288 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 481850) +++ head/graphics/kimagemapeditor/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/kimagemapeditor-18.08.1.tar.xz) = cd0ca97fc4d915950e2fed21af0e8dfc29e5cc38c9802ab426fd3854ae8d1ef0 -SIZE (KDE/applications/18.08.1/kimagemapeditor-18.08.1.tar.xz) = 1056996 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/kimagemapeditor-18.08.2.tar.xz) = 970bc1c3ba496f901cfbf0e3b1b6968fa0efcbb2b745eed64b19b77b42c95aeb +SIZE (KDE/applications/18.08.2/kimagemapeditor-18.08.2.tar.xz) = 1056964 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 481850) +++ head/graphics/kolourpaint/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/kolourpaint-18.08.1.tar.xz) = 9596f6298ed6782b1fd76b0941d9977785ab576a49e738113600d01950fa3b80 -SIZE (KDE/applications/18.08.1/kolourpaint-18.08.1.tar.xz) = 5548748 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/kolourpaint-18.08.2.tar.xz) = 5bc9072dba7238f8bdef2d344a7e8e82207a290ea0d7991b2ee68c3a2ab705e2 +SIZE (KDE/applications/18.08.2/kolourpaint-18.08.2.tar.xz) = 5548524 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 481850) +++ head/graphics/libkdcraw/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/libkdcraw-18.08.1.tar.xz) = 2d4cdb8dc4c2b5527ba08afdd670d33e77e377fda231b44ba4a90eee920ee03a -SIZE (KDE/applications/18.08.1/libkdcraw-18.08.1.tar.xz) = 42196 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/libkdcraw-18.08.2.tar.xz) = f752be30e3c7b2326d4ae3d4bb44237ea9a873232a66d1be8102212f3485dcef +SIZE (KDE/applications/18.08.2/libkdcraw-18.08.2.tar.xz) = 42200 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 481850) +++ head/graphics/libkexiv2/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/libkexiv2-18.08.1.tar.xz) = 94c8f55b2f3a4e816087c24563301e0e1a4550ff13dcd7275a7a5e098d300f6c -SIZE (KDE/applications/18.08.1/libkexiv2-18.08.1.tar.xz) = 64504 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/libkexiv2-18.08.2.tar.xz) = 79eb7031c73e95d83f4076f130009864562aecefe8823f7b82af635f50f9fe7f +SIZE (KDE/applications/18.08.2/libkexiv2-18.08.2.tar.xz) = 64532 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 481850) +++ head/graphics/libkipi/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175940 -SHA256 (KDE/applications/18.08.1/libkipi-18.08.1.tar.xz) = 2c268c3bc65ceeca1d54b2853b5bc59bbd7796bef629c66207c363c38593d698 -SIZE (KDE/applications/18.08.1/libkipi-18.08.1.tar.xz) = 103628 +TIMESTAMP = 1539116190 +SHA256 (KDE/applications/18.08.2/libkipi-18.08.2.tar.xz) = 0b0948082a3f41fa404e285656ada0eb3cd9a5bb3686f74fea3be944531b4b58 +SIZE (KDE/applications/18.08.2/libkipi-18.08.2.tar.xz) = 103632 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 481850) +++ head/graphics/libksane/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/libksane-18.08.1.tar.xz) = c13d6c8240228a4058af73cc9df9409c59fb7ed12e2697f21ad5d289e09d206e -SIZE (KDE/applications/18.08.1/libksane-18.08.1.tar.xz) = 137660 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/libksane-18.08.2.tar.xz) = 0a1f2e5872cb3b36d75dfe4501d78133b82aab098179284f3b0cff2a7e63edbf +SIZE (KDE/applications/18.08.2/libksane-18.08.2.tar.xz) = 137620 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 481850) +++ head/graphics/okular/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/okular-18.08.1.tar.xz) = 536aa48e324bbfc6eb8c13988179ab50e43ecd4b66e7a59ce098e438d428c0c6 -SIZE (KDE/applications/18.08.1/okular-18.08.1.tar.xz) = 5768144 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/okular-18.08.2.tar.xz) = 1bc4e539348053550aa05c7d73465130502b2ee11866cf2d253edde20d1846f9 +SIZE (KDE/applications/18.08.2/okular-18.08.2.tar.xz) = 5768108 Index: head/graphics/spectacle/Makefile =================================================================== --- head/graphics/spectacle/Makefile (revision 481850) +++ head/graphics/spectacle/Makefile (revision 481851) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util USES= cmake:outsource gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package service widgetsaddons \ windowsystem xmlgui USE_QT= core concurrent dbus gui network printsupport qml quick \ quickcontrols widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 481850) +++ head/graphics/spectacle/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175939 -SHA256 (KDE/applications/18.08.1/spectacle-18.08.1.tar.xz) = a705852a00ac7c22af7abb8e5a77dd199890cff51626bcdb58f5897000357c77 -SIZE (KDE/applications/18.08.1/spectacle-18.08.1.tar.xz) = 1047920 +TIMESTAMP = 1539116189 +SHA256 (KDE/applications/18.08.2/spectacle-18.08.2.tar.xz) = e57a86c7d34701a5c4d41ad034bcb7c0930ce3bf8aad7d9d1ea944ba662da55e +SIZE (KDE/applications/18.08.2/spectacle-18.08.2.tar.xz) = 1048504 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 481850) +++ head/japanese/kiten/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175946 -SHA256 (KDE/applications/18.08.1/kiten-18.08.1.tar.xz) = c226de7df27d673bde849dbec29515ff180d18cd66a531d7920562b6bb7b37c4 -SIZE (KDE/applications/18.08.1/kiten-18.08.1.tar.xz) = 11556344 +TIMESTAMP = 1539116195 +SHA256 (KDE/applications/18.08.2/kiten-18.08.2.tar.xz) = ab40567e774245fd080e2b199b783aec13ce3fd66c93437ae86b30ed29d3bbf5 +SIZE (KDE/applications/18.08.2/kiten-18.08.2.tar.xz) = 11555696 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 481850) +++ head/lang/kross-interpreters/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175946 -SHA256 (KDE/applications/18.08.1/kross-interpreters-18.08.1.tar.xz) = 022e4c47b0c24c08729d056cc1df489cff629e632ca3b1da5a568d5236896aee -SIZE (KDE/applications/18.08.1/kross-interpreters-18.08.1.tar.xz) = 144836 +TIMESTAMP = 1539116195 +SHA256 (KDE/applications/18.08.2/kross-interpreters-18.08.2.tar.xz) = 1923011c5ead9a5bb40143c8385b83a6415bae0ad0a06f99245fd99834b6acc0 +SIZE (KDE/applications/18.08.2/kross-interpreters-18.08.2.tar.xz) = 144812 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 481850) +++ head/lang/kturtle/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175946 -SHA256 (KDE/applications/18.08.1/kturtle-18.08.1.tar.xz) = 4c7052d86c1e57dc3393907a65b177ddb5d14f7d1c2423493ac409fe172c7ce4 -SIZE (KDE/applications/18.08.1/kturtle-18.08.1.tar.xz) = 1608484 +TIMESTAMP = 1539116195 +SHA256 (KDE/applications/18.08.2/kturtle-18.08.2.tar.xz) = 9bafb19bc7f6fd9a64d714663d2329f362949c56b549279d9c0a44a6ff87231f +SIZE (KDE/applications/18.08.2/kturtle-18.08.2.tar.xz) = 1608196 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 481850) +++ head/math/analitza/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/analitza-18.08.1.tar.xz) = c27d78e1a41be311f9408fc87b06285a0f841570eedfff94bc4b3a41e5cbff87 -SIZE (KDE/applications/18.08.1/analitza-18.08.1.tar.xz) = 331652 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/analitza-18.08.2.tar.xz) = 97e6f074231d6f62583943f43c3ee36086a2f62507d3823e36ae488d142bcd6d +SIZE (KDE/applications/18.08.2/analitza-18.08.2.tar.xz) = 331484 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 481850) +++ head/math/cantor/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/cantor-18.08.1.tar.xz) = 6b6dbe616606f4160987d4eef578a2a325263a723e3c96714170d3135cf69b15 -SIZE (KDE/applications/18.08.1/cantor-18.08.1.tar.xz) = 2179892 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/cantor-18.08.2.tar.xz) = 50b8d22845a3d574fda844fe3bab1ffd95e7c4fc9d476297431943054855d7ae +SIZE (KDE/applications/18.08.2/cantor-18.08.2.tar.xz) = 2179900 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 481850) +++ head/math/kalgebra/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kalgebra-18.08.1.tar.xz) = fc006c6cd68d46fa726e0474eab05aa34e2e5d9f82872494af7bdeb5d9da26a5 -SIZE (KDE/applications/18.08.1/kalgebra-18.08.1.tar.xz) = 707120 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kalgebra-18.08.2.tar.xz) = 7455373e9d17ce21fe3b21d24694f8b556d3a38e5dd8d8bd4bc35014b70cf8b9 +SIZE (KDE/applications/18.08.2/kalgebra-18.08.2.tar.xz) = 707168 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 481850) +++ head/math/kbruch/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kbruch-18.08.1.tar.xz) = 2ff564589d8a8b6aebc1fab905c668c4e8b10c2b1fc9c78ec6132b71710f9554 -SIZE (KDE/applications/18.08.1/kbruch-18.08.1.tar.xz) = 5604072 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kbruch-18.08.2.tar.xz) = 746619805848d8d99b549c00aa7335b6fb6fd4702ddfea0dddd9c42f51f56a99 +SIZE (KDE/applications/18.08.2/kbruch-18.08.2.tar.xz) = 5604052 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 481850) +++ head/math/kcalc/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kcalc-18.08.1.tar.xz) = 044c8650e3525bc370b38b3dc04ad5cd7444709f89fa0311309ea5190694378d -SIZE (KDE/applications/18.08.1/kcalc-18.08.1.tar.xz) = 362244 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kcalc-18.08.2.tar.xz) = 22b68db6596267737bdb893ae19982513b040e22fd035339707dc899dac128d2 +SIZE (KDE/applications/18.08.2/kcalc-18.08.2.tar.xz) = 362128 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 481850) +++ head/math/kig/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kig-18.08.1.tar.xz) = e23c517e8caf42ec369fafd2dd1047045042d2fcccf91e9d02d1f91679104ec1 -SIZE (KDE/applications/18.08.1/kig-18.08.1.tar.xz) = 3597036 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kig-18.08.2.tar.xz) = d7f86078028c39d1f8d380b3dffe4483c6550695115c573af23238602d2e5844 +SIZE (KDE/applications/18.08.2/kig-18.08.2.tar.xz) = 3597016 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 481850) +++ head/math/kmplot/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kmplot-18.08.1.tar.xz) = 6fdf8690847b78c335942f480710c43ce2b48d108865819bdad85122cabc0789 -SIZE (KDE/applications/18.08.1/kmplot-18.08.1.tar.xz) = 3028852 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kmplot-18.08.2.tar.xz) = 74041e41965efdad22f8fb5a8e19c1027e62782745b3ec27c46c46443284066a +SIZE (KDE/applications/18.08.2/kmplot-18.08.2.tar.xz) = 3028852 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 481850) +++ head/math/rocs/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/rocs-18.08.1.tar.xz) = 561cde0e24ae5792ffce8250c655658eac67aa2838200acc753f093ce48d90cd -SIZE (KDE/applications/18.08.1/rocs-18.08.1.tar.xz) = 1514132 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/rocs-18.08.2.tar.xz) = c916878d9dfbd68a5a35ad4a277313bf6abc8801cc00a8d7c4d19cdb5452ea92 +SIZE (KDE/applications/18.08.2/rocs-18.08.2.tar.xz) = 1513984 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 481850) +++ head/misc/artikulate/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/artikulate-18.08.1.tar.xz) = beb67dde1e5eefdc7536a118cc297c81669ad0f77bc8a31e784fc842aa366db3 -SIZE (KDE/applications/18.08.1/artikulate-18.08.1.tar.xz) = 3747624 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/artikulate-18.08.2.tar.xz) = dbf9dfa541d607311838bc302a0fb8815d64fa236835200f0c8b29614a3149bb +SIZE (KDE/applications/18.08.2/artikulate-18.08.2.tar.xz) = 3748372 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 481850) +++ head/misc/kdeedu-data/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kdeedu-data-18.08.1.tar.xz) = 0cf6f3f6c3659f612813618c812279b7cd794410fdf31b6e682172ae140cef3e -SIZE (KDE/applications/18.08.1/kdeedu-data-18.08.1.tar.xz) = 327996 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kdeedu-data-18.08.2.tar.xz) = bd9766e053eba94aade7a816cf6358f1310d560146ddb6a8f77f158cb6bf060d +SIZE (KDE/applications/18.08.2/kdeedu-data-18.08.2.tar.xz) = 327856 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 481850) +++ head/misc/kgeography/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/kgeography-18.08.1.tar.xz) = 23d11c0838684dd7539bd85d428b2f6e527513321e17943b62bf4584a6161adf -SIZE (KDE/applications/18.08.1/kgeography-18.08.1.tar.xz) = 10932480 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/kgeography-18.08.2.tar.xz) = 15af8c2b0898798dc16d1b6af6bc5b713f9a5b3e982d867b960854bf149d5372 +SIZE (KDE/applications/18.08.2/kgeography-18.08.2.tar.xz) = 10932172 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 481850) +++ head/misc/klettres/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/klettres-18.08.1.tar.xz) = 49061e5e5432a90afa45989361772c38fdce46e8768070f4772535c0934cac4c -SIZE (KDE/applications/18.08.1/klettres-18.08.1.tar.xz) = 21713488 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/klettres-18.08.2.tar.xz) = e59fded82f8c535fdb8b755c1b03d84516ea98b73b9919db9872d94e1eb08b0c +SIZE (KDE/applications/18.08.2/klettres-18.08.2.tar.xz) = 21713308 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 481850) +++ head/misc/ktouch/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/ktouch-18.08.1.tar.xz) = 6c5f6a812a9b85c93667ab44c981b8f6e81f2ee4424c67be1a2b0c6de08943fc -SIZE (KDE/applications/18.08.1/ktouch-18.08.1.tar.xz) = 5105840 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/ktouch-18.08.2.tar.xz) = b7b299bb07313a3a79cb2dcaa1e7c3f760aa877259be817d045fd6da61c768c2 +SIZE (KDE/applications/18.08.2/ktouch-18.08.2.tar.xz) = 5105364 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 481850) +++ head/misc/kwordquiz/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kwordquiz-18.08.1.tar.xz) = 35b5b3f47db5954f4c4cdd00a21eeb71d12220efad16500f9a2213f304df7d2e -SIZE (KDE/applications/18.08.1/kwordquiz-18.08.1.tar.xz) = 4168492 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/kwordquiz-18.08.2.tar.xz) = f13bc4cfb2b137ae64de0206035731b8ffc9d4299c2dd08bf9b74b7b376df4bf +SIZE (KDE/applications/18.08.2/kwordquiz-18.08.2.tar.xz) = 4168388 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 481850) +++ head/misc/libkeduvocdocument/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/libkeduvocdocument-18.08.1.tar.xz) = 56cd46788e3587af7444e477c086c49bf1a234f351af61d757fbb15c6e5490d9 -SIZE (KDE/applications/18.08.1/libkeduvocdocument-18.08.1.tar.xz) = 206752 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/libkeduvocdocument-18.08.2.tar.xz) = 8b3fd6dacae28365a86a358ebbc2baff7c4b89eea8ab7721dc5f0d250eaf312a +SIZE (KDE/applications/18.08.2/libkeduvocdocument-18.08.2.tar.xz) = 206752 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 481850) +++ head/misc/parley/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/parley-18.08.1.tar.xz) = 1948f640022ca9241e23b7deb100ed68085fbaf96aebe04eb1e3898a0d4092af -SIZE (KDE/applications/18.08.1/parley-18.08.1.tar.xz) = 8825316 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/parley-18.08.2.tar.xz) = 20d855fb73dc0b2c53c794fdd349204b22819a1686dbaee6c97b2008b2da281a +SIZE (KDE/applications/18.08.2/parley-18.08.2.tar.xz) = 8825436 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 481850) +++ head/multimedia/dragon/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/dragon-18.08.1.tar.xz) = fa301d4302882f901ea717664c0de78c65b9c7f6217e53083be7854c546c3fe5 -SIZE (KDE/applications/18.08.1/dragon-18.08.1.tar.xz) = 1729556 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/dragon-18.08.2.tar.xz) = 4401a65b1ccc68cd8b2366377c16e4b2d161c825a33d51feccbbbada60408487 +SIZE (KDE/applications/18.08.2/dragon-18.08.2.tar.xz) = 1729500 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 481850) +++ head/multimedia/kamoso/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kamoso-18.08.1.tar.xz) = 0b93a2efa966549b3ba09a74b39c9fed2ea6eb4b15c7aa458539f4b105461586 -SIZE (KDE/applications/18.08.1/kamoso-18.08.1.tar.xz) = 183260 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kamoso-18.08.2.tar.xz) = f47d50022e9b815e75f94622fe04d131b6777191e9bd4682a529aef23e50e0e8 +SIZE (KDE/applications/18.08.2/kamoso-18.08.2.tar.xz) = 183228 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 481850) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/ffmpegthumbs-18.08.1.tar.xz) = 6cc219f28d38e10f18d8d75d048180d59c50b7eb5812a0ca27b199ea06cffc85 -SIZE (KDE/applications/18.08.1/ffmpegthumbs-18.08.1.tar.xz) = 21852 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/ffmpegthumbs-18.08.2.tar.xz) = 9ee67594e3e9405d2423ec77ac2d63580a4fb437a9fd01a3a92565a4b7a07c15 +SIZE (KDE/applications/18.08.2/ffmpegthumbs-18.08.2.tar.xz) = 21836 Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 481850) +++ head/multimedia/kdenlive/Makefile (revision 481851) @@ -1,65 +1,64 @@ # $FreeBSD$ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite LICENSE= GPLv2 LIB_DEPENDS= libmlt.so:multimedia/mlt BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake:outsource desktop-file-utils gettext-tools pkgconfig \ qt:5 shared-mime-info kde:5 tar:xz USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm filemetadata \ guiaddons i18n iconthemes kio itemviews jobwidgets newstuff \ notifications notifyconfig service solid sonnet textwidgets \ widgetsaddons xmlgui \ init_run USE_QT= concurrent core dbus gui network xml \ buildtools_build qmake_build \ qml quick quickcontrols_run script svg webkit widgets USE_XORG= x11 CFLAGS+= -I${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FREI0R LADSPA SCREENCAST V4L XINE OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 481850) +++ head/multimedia/kdenlive/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175930 -SHA256 (KDE/applications/18.08.1/kdenlive-18.08.1.tar.xz) = ee521740bd3b10d966fd102116cdadbf3f383025575912eba0080fdba9dcb7aa -SIZE (KDE/applications/18.08.1/kdenlive-18.08.1.tar.xz) = 9397052 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kdenlive-18.08.2.tar.xz) = ec8ecc49a4ac83f6d4234416dedda4e47463f64fecb2485c52b7d2899ba173e1 +SIZE (KDE/applications/18.08.2/kdenlive-18.08.2.tar.xz) = 9399120 Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 481850) +++ head/net/akonadi-calendar/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175925 -SHA256 (KDE/applications/18.08.1/akonadi-calendar-18.08.1.tar.xz) = 9ad5b90f156d811ccd689b579376652988d946be61e01bac7223581c34cadcce -SIZE (KDE/applications/18.08.1/akonadi-calendar-18.08.1.tar.xz) = 334956 +TIMESTAMP = 1539116178 +SHA256 (KDE/applications/18.08.2/akonadi-calendar-18.08.2.tar.xz) = 79dbc2114788b149ae359948c7b62d80f528722eed549e65b8e1a4f718eecca6 +SIZE (KDE/applications/18.08.2/akonadi-calendar-18.08.2.tar.xz) = 334900 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 481850) +++ head/net/akonadi-contacts/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175924 -SHA256 (KDE/applications/18.08.1/akonadi-contacts-18.08.1.tar.xz) = b63b28d7df350311e8a4e990a7ff5e7a0cfa2ffeffb802248ce7197b9c48e1dc -SIZE (KDE/applications/18.08.1/akonadi-contacts-18.08.1.tar.xz) = 390264 +TIMESTAMP = 1539116178 +SHA256 (KDE/applications/18.08.2/akonadi-contacts-18.08.2.tar.xz) = 03fb98021b58d4dd5ae73b4d23ac1067fc1bd320e75794d6b111acc28692842c +SIZE (KDE/applications/18.08.2/akonadi-contacts-18.08.2.tar.xz) = 390372 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 481850) +++ head/net/akonadi-mime/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175924 -SHA256 (KDE/applications/18.08.1/akonadi-mime-18.08.1.tar.xz) = af606127e9454568e9e8554942c5102d5eefe6b6a3875e1579c583e1d62cae13 -SIZE (KDE/applications/18.08.1/akonadi-mime-18.08.1.tar.xz) = 136884 +TIMESTAMP = 1539116177 +SHA256 (KDE/applications/18.08.2/akonadi-mime-18.08.2.tar.xz) = 7416e2811351eb94d4ff914119ca070a986047f83c11b5396f25308e00ead3f1 +SIZE (KDE/applications/18.08.2/akonadi-mime-18.08.2.tar.xz) = 136864 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 481850) +++ head/net/akonadi-notes/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175927 -SHA256 (KDE/applications/18.08.1/akonadi-notes-18.08.1.tar.xz) = da6adf8766f7e9e418ec3195718689a881a10271e2f5ac806c00d733fc5167c5 -SIZE (KDE/applications/18.08.1/akonadi-notes-18.08.1.tar.xz) = 24676 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/akonadi-notes-18.08.2.tar.xz) = 3fd3eb69e3780547a720692865d86c6ff966a83cfa16f2d574762049a2492ee4 +SIZE (KDE/applications/18.08.2/akonadi-notes-18.08.2.tar.xz) = 24644 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 481850) +++ head/net/akonadi-search/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175921 -SHA256 (KDE/applications/18.08.1/akonadi-search-18.08.1.tar.xz) = fc63226503b40dd39404335f47358767a6f59db3af5c15f3f0d3fc84a5e3eb64 -SIZE (KDE/applications/18.08.1/akonadi-search-18.08.1.tar.xz) = 82772 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/akonadi-search-18.08.2.tar.xz) = fb533f4e78f2abbfee1d0f41cbee2091a0b9040eae1ad79d2fc7bb5ac1bc0fd9 +SIZE (KDE/applications/18.08.2/akonadi-search-18.08.2.tar.xz) = 82880 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 481850) +++ head/net/calendarsupport/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175927 -SHA256 (KDE/applications/18.08.1/calendarsupport-18.08.1.tar.xz) = d88115a91b9ca2d0d67839a38e224ded1c20ca3b4283eb52851e331850960842 -SIZE (KDE/applications/18.08.1/calendarsupport-18.08.1.tar.xz) = 647596 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/calendarsupport-18.08.2.tar.xz) = 4c975356eced1b54e5d83f54dbd7781c711fb89b714f6c42554babb7ea53e910 +SIZE (KDE/applications/18.08.2/calendarsupport-18.08.2.tar.xz) = 647628 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 481850) +++ head/net/eventviews/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175926 -SHA256 (KDE/applications/18.08.1/eventviews-18.08.1.tar.xz) = 7e288ac5cc12a9460980463b020c71b9ac4cfa1241162335960f56cdacc4aa40 -SIZE (KDE/applications/18.08.1/eventviews-18.08.1.tar.xz) = 441932 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/eventviews-18.08.2.tar.xz) = d9e816cf27b00510e946fad5f1e8c601dc14715c35f7c5475cb4458d39d345a5 +SIZE (KDE/applications/18.08.2/eventviews-18.08.2.tar.xz) = 441768 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 481850) +++ head/net/incidenceeditor/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175920 -SHA256 (KDE/applications/18.08.1/incidenceeditor-18.08.1.tar.xz) = a9ff05bc90fdcdc47a92009e3039ad4272075bc2a2b3ce4b56725f63d4924135 -SIZE (KDE/applications/18.08.1/incidenceeditor-18.08.1.tar.xz) = 522376 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/incidenceeditor-18.08.2.tar.xz) = 78a4197a2a5bc14d1dd816197f4d19a74103a92ecb9220cb5d90757212b75524 +SIZE (KDE/applications/18.08.2/incidenceeditor-18.08.2.tar.xz) = 522040 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 481850) +++ head/net/kalarmcal/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175922 -SHA256 (KDE/applications/18.08.1/kalarmcal-18.08.1.tar.xz) = 0ee0f3a579991acb2d95f39f3a597632bbf2edd853d87227d132bb822ab9500b -SIZE (KDE/applications/18.08.1/kalarmcal-18.08.1.tar.xz) = 573540 +TIMESTAMP = 1539116176 +SHA256 (KDE/applications/18.08.2/kalarmcal-18.08.2.tar.xz) = 7d47e6ce7494bd28285676ee39e40be30fc5b3b8a6be237d6399de699781b270 +SIZE (KDE/applications/18.08.2/kalarmcal-18.08.2.tar.xz) = 573452 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 481850) +++ head/net/kblog/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175920 -SHA256 (KDE/applications/18.08.1/kblog-18.08.1.tar.xz) = 11e98ab8f2142daf6c5d96361fca368ea33f273907818150ff28017f3eec9345 -SIZE (KDE/applications/18.08.1/kblog-18.08.1.tar.xz) = 73056 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/kblog-18.08.2.tar.xz) = 0e64b6be146ec4cef55bfff97ae7d760a426aa211f497c1d80821a1bd22472b1 +SIZE (KDE/applications/18.08.2/kblog-18.08.2.tar.xz) = 73020 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 481850) +++ head/net/kcalcore/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175918 -SHA256 (KDE/applications/18.08.1/kcalcore-18.08.1.tar.xz) = 563239f2bfc7c4727add80f621781917a1f280c545c4e19d8e98a68a6b14c94d -SIZE (KDE/applications/18.08.1/kcalcore-18.08.1.tar.xz) = 252396 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/kcalcore-18.08.2.tar.xz) = a70ea203e35188185fa06066ea6f7edc7886d3c4ad8d91d6b2e1a980d4cc3d86 +SIZE (KDE/applications/18.08.2/kcalcore-18.08.2.tar.xz) = 252088 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 481850) +++ head/net/kcalutils/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175920 -SHA256 (KDE/applications/18.08.1/kcalutils-18.08.1.tar.xz) = 90c3876c9ba4fea7481ee768fb7c38b1fa0f4b1f53b5c0125e6347abd23464fc -SIZE (KDE/applications/18.08.1/kcalutils-18.08.1.tar.xz) = 325012 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/kcalutils-18.08.2.tar.xz) = 6c86919ec250aac42aebc84c50f36c1a0bcab6cca13c53a8aff34abe3902b530 +SIZE (KDE/applications/18.08.2/kcalutils-18.08.2.tar.xz) = 324908 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 481850) +++ head/net/kcontacts/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175923 -SHA256 (KDE/applications/18.08.1/kcontacts-18.08.1.tar.xz) = a2648dd9fc0d3232268ac291c47991f81a637226bfe3bc08c21ed6640fcf0df8 -SIZE (KDE/applications/18.08.1/kcontacts-18.08.1.tar.xz) = 207388 +TIMESTAMP = 1539116177 +SHA256 (KDE/applications/18.08.2/kcontacts-18.08.2.tar.xz) = 628b5640f8a404e96913b647c01c30a9fbe3421d03c3ddd8ef5002d35090967c +SIZE (KDE/applications/18.08.2/kcontacts-18.08.2.tar.xz) = 207272 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 481850) +++ head/net/kdav/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175917 -SHA256 (KDE/applications/18.08.1/kdav-18.08.1.tar.xz) = 5dacebd734bc2ddde760e23365f03778804c875b31179b01ee3c31b69f38d010 -SIZE (KDE/applications/18.08.1/kdav-18.08.1.tar.xz) = 49788 +TIMESTAMP = 1539116173 +SHA256 (KDE/applications/18.08.2/kdav-18.08.2.tar.xz) = 768cb9437ee51c12555855a5cc955d8dd8e67dbdd336a4aa919fd9e5cf5b7395 +SIZE (KDE/applications/18.08.2/kdav-18.08.2.tar.xz) = 49748 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 481850) +++ head/net/kdenetwork-filesharing/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175927 -SHA256 (KDE/applications/18.08.1/kdenetwork-filesharing-18.08.1.tar.xz) = 4da4b52dbe35970054a824dbd263ae4ebf0b2ead9ea11c5e5cd8f5d04e99d8ad -SIZE (KDE/applications/18.08.1/kdenetwork-filesharing-18.08.1.tar.xz) = 313084 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/kdenetwork-filesharing-18.08.2.tar.xz) = fc1b6b6032cbb7082d9e6db70cccf6c62e5e6f296f2c46a5ab8760a2fd734fd9 +SIZE (KDE/applications/18.08.2/kdenetwork-filesharing-18.08.2.tar.xz) = 313036 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 481850) +++ head/net/kget/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175921 -SHA256 (KDE/applications/18.08.1/kget-18.08.1.tar.xz) = 2809afb51798e321c9a1225f77bf50e8580be040a0bb02ae3ee3fd7d67d3a6ab -SIZE (KDE/applications/18.08.1/kget-18.08.1.tar.xz) = 5212916 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/kget-18.08.2.tar.xz) = 8e8bce7179b175b04e9c74382fd822f048c5b1c55f2ec985dba973ac329e66c1 +SIZE (KDE/applications/18.08.2/kget-18.08.2.tar.xz) = 5212884 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 481850) +++ head/net/kidentitymanagement/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175919 -SHA256 (KDE/applications/18.08.1/kidentitymanagement-18.08.1.tar.xz) = 9fc7e3a1a65a4e9eed4210ab445a1bf9c83300fe38b53d6831cb092c99ab3470 -SIZE (KDE/applications/18.08.1/kidentitymanagement-18.08.1.tar.xz) = 148236 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/kidentitymanagement-18.08.2.tar.xz) = d17a736e0531f7767919cee59628e4702267534c4764ea4f1801274a9a6447dd +SIZE (KDE/applications/18.08.2/kidentitymanagement-18.08.2.tar.xz) = 148252 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 481850) +++ head/net/kimap/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175923 -SHA256 (KDE/applications/18.08.1/kimap-18.08.1.tar.xz) = cdddc81961bb53e04993a81b43a99ff3ad5516275ebafe67182252716d194159 -SIZE (KDE/applications/18.08.1/kimap-18.08.1.tar.xz) = 119812 +TIMESTAMP = 1539116177 +SHA256 (KDE/applications/18.08.2/kimap-18.08.2.tar.xz) = 4c04f7294f58bc469591990c5ca85e4e80e0c49fe4280d66dc4d2519e1de9aea +SIZE (KDE/applications/18.08.2/kimap-18.08.2.tar.xz) = 119868 Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 481850) +++ head/net/kitinerary/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175917 -SHA256 (KDE/applications/18.08.1/kitinerary-18.08.1.tar.xz) = d4a0c3cfd08ab5fa097a09b2451c3607ad430d6949f4edf6a080551139b7612f -SIZE (KDE/applications/18.08.1/kitinerary-18.08.1.tar.xz) = 622920 +TIMESTAMP = 1539116173 +SHA256 (KDE/applications/18.08.2/kitinerary-18.08.2.tar.xz) = f88b3a8e52ebafc6dcefa410212d911280053da53deb4155ea3670588e7d2691 +SIZE (KDE/applications/18.08.2/kitinerary-18.08.2.tar.xz) = 622880 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 481850) +++ head/net/kldap/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175924 -SHA256 (KDE/applications/18.08.1/kldap-18.08.1.tar.xz) = 3909dec763e6cb8616db00cf5f82b2212499cb284895f28d912a87087930cece -SIZE (KDE/applications/18.08.1/kldap-18.08.1.tar.xz) = 156548 +TIMESTAMP = 1539116177 +SHA256 (KDE/applications/18.08.2/kldap-18.08.2.tar.xz) = 55a4a4b41d503ffd53f13b7cdda94897853f37e2b6a4c5adaf780dbf21e96c89 +SIZE (KDE/applications/18.08.2/kldap-18.08.2.tar.xz) = 156488 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 481850) +++ head/net/kmailtransport/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175926 -SHA256 (KDE/applications/18.08.1/kmailtransport-18.08.1.tar.xz) = b607d02448b2ab0520aad9e57ec08653db52a0427e137bb157e132fced92cca4 -SIZE (KDE/applications/18.08.1/kmailtransport-18.08.1.tar.xz) = 166024 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/kmailtransport-18.08.2.tar.xz) = de777ede945768c055ad2812cd9e7231bd733dcfd1c10cb1197eaaa93d137429 +SIZE (KDE/applications/18.08.2/kmailtransport-18.08.2.tar.xz) = 165992 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 481850) +++ head/net/kmbox/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175924 -SHA256 (KDE/applications/18.08.1/kmbox-18.08.1.tar.xz) = 2abac9ea56a92a4cbf1bba544138887f2fb98bb882b64ba7dcbd892c1931546a -SIZE (KDE/applications/18.08.1/kmbox-18.08.1.tar.xz) = 24576 +TIMESTAMP = 1539116178 +SHA256 (KDE/applications/18.08.2/kmbox-18.08.2.tar.xz) = 2e6971afdbf81a40624fcb1950a76df78b4258fd2ebe00222c927942414d2978 +SIZE (KDE/applications/18.08.2/kmbox-18.08.2.tar.xz) = 24572 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 481850) +++ head/net/kmime/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175921 -SHA256 (KDE/applications/18.08.1/kmime-18.08.1.tar.xz) = dd14d7813199f4f859cb112dc34113269196c62fd9f05359e889913eb9d55d02 -SIZE (KDE/applications/18.08.1/kmime-18.08.1.tar.xz) = 147016 +TIMESTAMP = 1539116176 +SHA256 (KDE/applications/18.08.2/kmime-18.08.2.tar.xz) = 2796457f5b5818c5e26edf47623438a9b49384603a50d63377de1cfb6ed3a8eb +SIZE (KDE/applications/18.08.2/kmime-18.08.2.tar.xz) = 146924 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 481850) +++ head/net/kontactinterface/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175918 -SHA256 (KDE/applications/18.08.1/kontactinterface-18.08.1.tar.xz) = 6bee6b0dd27140f4da98fa4abff7f7187d5830bb41d5a82c7ccac659b2e726f1 -SIZE (KDE/applications/18.08.1/kontactinterface-18.08.1.tar.xz) = 32892 +TIMESTAMP = 1539116173 +SHA256 (KDE/applications/18.08.2/kontactinterface-18.08.2.tar.xz) = 2643d849babe6d514a4c7c3bbe2bd01ba891a8016744f8ac8fe54abe9eb78f74 +SIZE (KDE/applications/18.08.2/kontactinterface-18.08.2.tar.xz) = 33068 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 481850) +++ head/net/kpimtextedit/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175922 -SHA256 (KDE/applications/18.08.1/kpimtextedit-18.08.1.tar.xz) = 127460008ea9b7759ea815b4694cf465766c4831cf62bdfcc06bf46dd382876c -SIZE (KDE/applications/18.08.1/kpimtextedit-18.08.1.tar.xz) = 142980 +TIMESTAMP = 1539116176 +SHA256 (KDE/applications/18.08.2/kpimtextedit-18.08.2.tar.xz) = 64384fe9f2caeb6614958eba6b61c81ff6d7f8b8ef394c33c58a3f8e8874867e +SIZE (KDE/applications/18.08.2/kpimtextedit-18.08.2.tar.xz) = 142948 Index: head/net/kpimtextedit/pkg-plist =================================================================== --- head/net/kpimtextedit/pkg-plist (revision 481850) +++ head/net/kpimtextedit/pkg-plist (revision 481851) @@ -1,127 +1,125 @@ etc/xdg/kpimtextedit.categories include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonTextEditAction -include/KF5/KPIMTextEdit/KPIMTextEdit/InsertHtmlDialog include/KF5/KPIMTextEdit/KPIMTextEdit/InsertImageDialog include/KF5/KPIMTextEdit/KPIMTextEdit/InsertImageWidget include/KF5/KPIMTextEdit/KPIMTextEdit/InsertTableDialog include/KF5/KPIMTextEdit/KPIMTextEdit/InsertTableWidget include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposer include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer include/KF5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog include/KF5/KPIMTextEdit/KPIMTextEdit/SlideContainer include/KF5/KPIMTextEdit/KPIMTextEdit/TableActionMenu include/KF5/KPIMTextEdit/KPIMTextEdit/TableCellFormatDialog include/KF5/KPIMTextEdit/KPIMTextEdit/TableFormatDialog include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter include/KF5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeech include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/config-kpimtextedit.h include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h include/KF5/KPIMTextEdit/kpimtextedit/emoticontexteditaction.h -include/KF5/KPIMTextEdit/kpimtextedit/inserthtmldialog.h include/KF5/KPIMTextEdit/kpimtextedit/insertimagedialog.h include/KF5/KPIMTextEdit/kpimtextedit/insertimagewidget.h include/KF5/KPIMTextEdit/kpimtextedit/inserttabledialog.h include/KF5/KPIMTextEdit/kpimtextedit/inserttablewidget.h include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h include/KF5/KPIMTextEdit/kpimtextedit/slidecontainer.h include/KF5/KPIMTextEdit/kpimtextedit/tableactionmenu.h include/KF5/KPIMTextEdit/kpimtextedit/tablecellformatdialog.h include/KF5/KPIMTextEdit/kpimtextedit/tableformatdialog.h include/KF5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h include/KF5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h include/KF5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeech.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechactions.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechwidget.h include/KF5/KPIMTextEdit/kpimtextedit/textutils.h include/KF5/kpimtextedit_version.h lib/cmake/KF5PimTextEdit/KF5PimTextEditConfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditConfigVersion.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake lib/libKF5PimTextEdit.so lib/libKF5PimTextEdit.so.5 lib/libKF5PimTextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KPIMTextEdit.pri %%QT_PLUGINDIR%%/designer/kpimtexteditwidgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo share/locale/ast/LC_MESSAGES/libkpimtextedit.mo share/locale/bs/LC_MESSAGES/libkpimtextedit.mo share/locale/ca/LC_MESSAGES/libkpimtextedit.mo share/locale/ca@valencia/LC_MESSAGES/libkpimtextedit.mo share/locale/cs/LC_MESSAGES/libkpimtextedit.mo share/locale/da/LC_MESSAGES/libkpimtextedit.mo share/locale/de/LC_MESSAGES/libkpimtextedit.mo share/locale/el/LC_MESSAGES/libkpimtextedit.mo share/locale/en_GB/LC_MESSAGES/libkpimtextedit.mo share/locale/eo/LC_MESSAGES/libkpimtextedit.mo share/locale/es/LC_MESSAGES/libkpimtextedit.mo share/locale/et/LC_MESSAGES/libkpimtextedit.mo share/locale/fi/LC_MESSAGES/libkpimtextedit.mo share/locale/fr/LC_MESSAGES/libkpimtextedit.mo share/locale/ga/LC_MESSAGES/libkpimtextedit.mo share/locale/gl/LC_MESSAGES/libkpimtextedit.mo share/locale/hu/LC_MESSAGES/libkpimtextedit.mo share/locale/ia/LC_MESSAGES/libkpimtextedit.mo share/locale/it/LC_MESSAGES/libkpimtextedit.mo share/locale/ja/LC_MESSAGES/libkpimtextedit.mo share/locale/kk/LC_MESSAGES/libkpimtextedit.mo share/locale/km/LC_MESSAGES/libkpimtextedit.mo share/locale/ko/LC_MESSAGES/libkpimtextedit.mo share/locale/lt/LC_MESSAGES/libkpimtextedit.mo share/locale/lv/LC_MESSAGES/libkpimtextedit.mo share/locale/mr/LC_MESSAGES/libkpimtextedit.mo share/locale/nb/LC_MESSAGES/libkpimtextedit.mo share/locale/nds/LC_MESSAGES/libkpimtextedit.mo share/locale/nl/LC_MESSAGES/libkpimtextedit.mo share/locale/nn/LC_MESSAGES/libkpimtextedit.mo share/locale/pa/LC_MESSAGES/libkpimtextedit.mo share/locale/pl/LC_MESSAGES/libkpimtextedit.mo share/locale/pt/LC_MESSAGES/libkpimtextedit.mo share/locale/pt_BR/LC_MESSAGES/libkpimtextedit.mo share/locale/ro/LC_MESSAGES/libkpimtextedit.mo share/locale/ru/LC_MESSAGES/libkpimtextedit.mo share/locale/sk/LC_MESSAGES/libkpimtextedit.mo share/locale/sl/LC_MESSAGES/libkpimtextedit.mo share/locale/sr/LC_MESSAGES/libkpimtextedit.mo share/locale/sv/LC_MESSAGES/libkpimtextedit.mo share/locale/tr/LC_MESSAGES/libkpimtextedit.mo share/locale/ug/LC_MESSAGES/libkpimtextedit.mo share/locale/uk/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_CN/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_TW/LC_MESSAGES/libkpimtextedit.mo Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 481850) +++ head/net/krdc/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175921 -SHA256 (KDE/applications/18.08.1/krdc-18.08.1.tar.xz) = e9bdf8a3551cf91766d0716d80a0b3b83bc1a6423074e4f1ce77c74019bfd315 -SIZE (KDE/applications/18.08.1/krdc-18.08.1.tar.xz) = 1561256 +TIMESTAMP = 1539116175 +SHA256 (KDE/applications/18.08.2/krdc-18.08.2.tar.xz) = 7e8b779e894038e678b336babb1b1f2875a22f83dd4a5d346c3c30ad7a72f026 +SIZE (KDE/applications/18.08.2/krdc-18.08.2.tar.xz) = 1561220 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 481850) +++ head/net/krfb/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175922 -SHA256 (KDE/applications/18.08.1/krfb-18.08.1.tar.xz) = 7ca6990ea9d81e42fa170d48acb04e4c7a69a141108cad23dc3d28df10f5925c -SIZE (KDE/applications/18.08.1/krfb-18.08.1.tar.xz) = 994808 +TIMESTAMP = 1539116176 +SHA256 (KDE/applications/18.08.2/krfb-18.08.2.tar.xz) = 952d35a8e4be0a701eac511f2641e33c48555fc3545f65414b9a0cc6f689baf7 +SIZE (KDE/applications/18.08.2/krfb-18.08.2.tar.xz) = 994796 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 481850) +++ head/net/ksmtp/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175925 -SHA256 (KDE/applications/18.08.1/ksmtp-18.08.1.tar.xz) = 8927a740e2993b014f8ad6906d5ce62a9d193c770ff38e197073ec8543aff64f -SIZE (KDE/applications/18.08.1/ksmtp-18.08.1.tar.xz) = 38948 +TIMESTAMP = 1539116178 +SHA256 (KDE/applications/18.08.2/ksmtp-18.08.2.tar.xz) = 7451ddf2c64f29b5d957ee5fe403a02ea6041236f0be0769791f0b6fd2d636a5 +SIZE (KDE/applications/18.08.2/ksmtp-18.08.2.tar.xz) = 38920 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 481850) +++ head/net/ktnef/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175918 -SHA256 (KDE/applications/18.08.1/ktnef-18.08.1.tar.xz) = e2c3238f5d500b2f67b1ad2b91cd480650d8004e514efa69e6551596f2d391a0 -SIZE (KDE/applications/18.08.1/ktnef-18.08.1.tar.xz) = 300444 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/ktnef-18.08.2.tar.xz) = 4b852ff356d2a032e28b7283cc355ea9c444e22673bbe3efd6dbee000d1bbeab +SIZE (KDE/applications/18.08.2/ktnef-18.08.2.tar.xz) = 300396 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 481850) +++ head/net/libgravatar/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175925 -SHA256 (KDE/applications/18.08.1/libgravatar-18.08.1.tar.xz) = eed122bc6900e1e4ecd2ee5d25a638249522253401444744201aaa026f71b52b -SIZE (KDE/applications/18.08.1/libgravatar-18.08.1.tar.xz) = 30444 +TIMESTAMP = 1539116178 +SHA256 (KDE/applications/18.08.2/libgravatar-18.08.2.tar.xz) = a70f75994e14bb8f49df1f9e306ffd5f4101e52a953a79b43b88644c44b26ed3 +SIZE (KDE/applications/18.08.2/libgravatar-18.08.2.tar.xz) = 30416 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 481850) +++ head/net/libkgapi/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175919 -SHA256 (KDE/applications/18.08.1/libkgapi-18.08.1.tar.xz) = f9b8ef27a5f264fb113b800213c19e568d414db0913ebbc319f5984f2c9a4e67 -SIZE (KDE/applications/18.08.1/libkgapi-18.08.1.tar.xz) = 215824 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/libkgapi-18.08.2.tar.xz) = 894924b08c34d073bda2b84e9b119fc361e15d8317abda7f07a269254bdfa606 +SIZE (KDE/applications/18.08.2/libkgapi-18.08.2.tar.xz) = 215828 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 481850) +++ head/net/libksieve/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175926 -SHA256 (KDE/applications/18.08.1/libksieve-18.08.1.tar.xz) = 40bc8dd1e1df65a1dd3f1165e78652d2515ca18ad0581b41d7a51039798a4f19 -SIZE (KDE/applications/18.08.1/libksieve-18.08.1.tar.xz) = 550216 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/libksieve-18.08.2.tar.xz) = 6247998712efae2c2b82c9d03da28ce561c970207440ba14295704da4f7ffd6f +SIZE (KDE/applications/18.08.2/libksieve-18.08.2.tar.xz) = 550136 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 481850) +++ head/net/mailcommon/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175926 -SHA256 (KDE/applications/18.08.1/mailcommon-18.08.1.tar.xz) = 9deffe72c2c9fb924c1303d9b6ca1ee2e586beee2bcb87c5042aad9201bc219d -SIZE (KDE/applications/18.08.1/mailcommon-18.08.1.tar.xz) = 691384 +TIMESTAMP = 1539116179 +SHA256 (KDE/applications/18.08.2/mailcommon-18.08.2.tar.xz) = d0d7e641c340c25bc6510e732469a281cf0e499e0a99ba54a029cdba3854d38e +SIZE (KDE/applications/18.08.2/mailcommon-18.08.2.tar.xz) = 691252 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 481850) +++ head/net/mailimporter/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175919 -SHA256 (KDE/applications/18.08.1/mailimporter-18.08.1.tar.xz) = 69597592423a845f63b1d89abd663308e16392d4506c8977a53b2952a283d5e6 -SIZE (KDE/applications/18.08.1/mailimporter-18.08.1.tar.xz) = 540772 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/mailimporter-18.08.2.tar.xz) = 3f57096a93d3e781d3182b3fa8a1f8d60414787df24f033d5d2a9e425700e4e3 +SIZE (KDE/applications/18.08.2/mailimporter-18.08.2.tar.xz) = 540740 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 481850) +++ head/net/messagelib/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175923 -SHA256 (KDE/applications/18.08.1/messagelib-18.08.1.tar.xz) = ba67915f8930fa607b016c3a76f8f2f2ca27fdd6d0aca1e97d9f43db8061e89f -SIZE (KDE/applications/18.08.1/messagelib-18.08.1.tar.xz) = 10449228 +TIMESTAMP = 1539116177 +SHA256 (KDE/applications/18.08.2/messagelib-18.08.2.tar.xz) = 2e735c18641498232d40e60fe7d56d87cb80c0cea2a4b57d393c27ef90357e20 +SIZE (KDE/applications/18.08.2/messagelib-18.08.2.tar.xz) = 10423480 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 481850) +++ head/net/pimcommon/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175921 -SHA256 (KDE/applications/18.08.1/pimcommon-18.08.1.tar.xz) = d72087c5f0316e8a372a7887673bbeb7b1d6c2e3e9533748b5c9d9b6c8190f41 -SIZE (KDE/applications/18.08.1/pimcommon-18.08.1.tar.xz) = 293316 +TIMESTAMP = 1539116176 +SHA256 (KDE/applications/18.08.2/pimcommon-18.08.2.tar.xz) = 4173676fff5ce4d8197660aa0493b0ec911bc4f2f5a315a55ddabea581425c02 +SIZE (KDE/applications/18.08.2/pimcommon-18.08.2.tar.xz) = 292792 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 481850) +++ head/net/zeroconf-ioslave/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175919 -SHA256 (KDE/applications/18.08.1/zeroconf-ioslave-18.08.1.tar.xz) = 51dfe79f72f6fa5d6d72e2a617e744d9aed9704336406b744fe4437642853e54 -SIZE (KDE/applications/18.08.1/zeroconf-ioslave-18.08.1.tar.xz) = 39028 +TIMESTAMP = 1539116174 +SHA256 (KDE/applications/18.08.2/zeroconf-ioslave-18.08.2.tar.xz) = 0ff97f14f55d3ae63b07d835e70648755800d2d57b19f63fd994b077e63f0e44 +SIZE (KDE/applications/18.08.2/zeroconf-ioslave-18.08.2.tar.xz) = 38976 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 481850) +++ head/net-im/kaccounts-integration/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kaccounts-integration-18.08.1.tar.xz) = fa6322ceca6c49a8ed75d45f07f93f971a70553c8bc832fcdf1d4ee53791cba2 -SIZE (KDE/applications/18.08.1/kaccounts-integration-18.08.1.tar.xz) = 71264 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/kaccounts-integration-18.08.2.tar.xz) = a28f1310d8acf273da7a23a73ae1d0156c170a522fb44c46c1f8c3eaee054fe4 +SIZE (KDE/applications/18.08.2/kaccounts-integration-18.08.2.tar.xz) = 71240 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 481850) +++ head/net-im/kaccounts-providers/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kaccounts-providers-18.08.1.tar.xz) = a7ad762e925d1ce97abbd2d6a0b0b1b1b3f25910a6aee8b430cbb8eecaf6f179 -SIZE (KDE/applications/18.08.1/kaccounts-providers-18.08.1.tar.xz) = 31928 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/kaccounts-providers-18.08.2.tar.xz) = 847e77e0eb0c9b8b4ad5cb645e08f6619b0218f8ca62cf9b6985c069dd2a69f6 +SIZE (KDE/applications/18.08.2/kaccounts-providers-18.08.2.tar.xz) = 31876 Index: head/net-im/kopete/Makefile =================================================================== --- head/net-im/kopete/Makefile (revision 481850) +++ head/net-im/kopete/Makefile (revision 481851) @@ -1,40 +1,39 @@ # $FreeBSD$ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE multi-protocol instant messenger BUILD_DEPENDS= v4l_compat>0:multimedia/v4l_compat LIB_DEPENDS= libidn.so:dns/libidn \ libjasper.so:graphics/jasper \ libotr.so:security/libotr \ libqca-qt5.so:devel/qca@qt5 \ libv4l2.so:multimedia/libv4l USES= cmake:outsource jpeg kde:5 qt:5 shebangfix tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd ecm emoticons guiaddons i18n \ iconthemes itemviews jobwidgets js kcmutils kdelibs4support \ khtml kio notifications notifyconfig parts service solid sonnet \ texteditor textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui # KDE PIM components USE_KDE+= contacts identitymanagement libkleo pimtextedit USE_QT= core dbus gui network phonon4 printsupport sql widgets xml \ buildtools_build qmake_build # See #228640: temporary work around to fix the build on Current with ld being lld. LLD_UNSAFE= yes SHEBANG_FILES= protocols/winpopup/winpopup-install \ protocols/winpopup/winpopup-send \ kopete/kconf_update/*.pl OPTIONS_DEFINE= DOCS .include Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 481850) +++ head/net-im/kopete/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kopete-18.08.1.tar.xz) = 93fc1c360cce2471eae7286b1fb72b112e6192fee78ef68cda3ce270ed866844 -SIZE (KDE/applications/18.08.1/kopete-18.08.1.tar.xz) = 9381772 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/kopete-18.08.2.tar.xz) = ec2479eb7be28cf335e2539ffcd0c1bccf47a225242f87f3acfc5077f5cc9b57 +SIZE (KDE/applications/18.08.2/kopete-18.08.2.tar.xz) = 9382348 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 481850) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-accounts-kcm-18.08.1.tar.xz) = 29f0cd703306dbd3504103b607462adef7accc88538be2baa543ff2d7730d8de -SIZE (KDE/applications/18.08.1/ktp-accounts-kcm-18.08.1.tar.xz) = 264400 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-accounts-kcm-18.08.2.tar.xz) = 31adbad526a9b7d7b08eb642f1f7b57913b60cfd376f76a65f8123557a7f7c18 +SIZE (KDE/applications/18.08.2/ktp-accounts-kcm-18.08.2.tar.xz) = 264216 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 481850) +++ head/net-im/ktp-approver/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-approver-18.08.1.tar.xz) = 22cfb0fb42b7bb4e5b247328b0b4bdd17d8dc0f598ddc5742cf03aa6733ab76b -SIZE (KDE/applications/18.08.1/ktp-approver-18.08.1.tar.xz) = 37156 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-approver-18.08.2.tar.xz) = 3cae5d7610b8e813386f700acc74d1d4013c401a8ea7e5e06ee91d0d60e627ef +SIZE (KDE/applications/18.08.2/ktp-approver-18.08.2.tar.xz) = 37108 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 481850) +++ head/net-im/ktp-auth-handler/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/ktp-auth-handler-18.08.1.tar.xz) = b45772d5051ed0162adcca1be9cb5ad6e0a5c9214379408214007280a37396a2 -SIZE (KDE/applications/18.08.1/ktp-auth-handler-18.08.1.tar.xz) = 46404 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-auth-handler-18.08.2.tar.xz) = 8186c116dfe1bce999e6ac8ac4e76a8b54dad335aa834b4169d6eea5af6bede1 +SIZE (KDE/applications/18.08.2/ktp-auth-handler-18.08.2.tar.xz) = 46400 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 481850) +++ head/net-im/ktp-call-ui/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-call-ui-18.08.1.tar.xz) = b75129491b214beb1f8ccba9d227891372bc3f2f8cd94fa16b0b1bf4e9e20fd7 -SIZE (KDE/applications/18.08.1/ktp-call-ui-18.08.1.tar.xz) = 97028 +TIMESTAMP = 1539116195 +SHA256 (KDE/applications/18.08.2/ktp-call-ui-18.08.2.tar.xz) = d98cbd6e3995c274530b07531b6bd2a16a84576ff521545383b4246ae9df6ca3 +SIZE (KDE/applications/18.08.2/ktp-call-ui-18.08.2.tar.xz) = 96996 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 481850) +++ head/net-im/ktp-common-internals/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/ktp-common-internals-18.08.1.tar.xz) = 345e88454e88155872d112d20a11ee5b98d435d51a92ff146f545f88f0618ae4 -SIZE (KDE/applications/18.08.1/ktp-common-internals-18.08.1.tar.xz) = 443920 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-common-internals-18.08.2.tar.xz) = a598d470af47060b95625af5f7ca68d07530718938d1fd61f7e1b61f1311503c +SIZE (KDE/applications/18.08.2/ktp-common-internals-18.08.2.tar.xz) = 443796 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 481850) +++ head/net-im/ktp-contact-list/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/ktp-contact-list-18.08.1.tar.xz) = 2c151cbd42b4a9739a552d7a9967f01af5fed666678fc65ce807a47a21aeee27 -SIZE (KDE/applications/18.08.1/ktp-contact-list-18.08.1.tar.xz) = 147024 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-contact-list-18.08.2.tar.xz) = 0ab55fad610fd1c5eebcd757d5bb50e3b58489b1400c1c8d633154fed211a5cb +SIZE (KDE/applications/18.08.2/ktp-contact-list-18.08.2.tar.xz) = 146980 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 481850) +++ head/net-im/ktp-contact-runner/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/ktp-contact-runner-18.08.1.tar.xz) = bd9057ed544fe7333288564a41e2e2c3a9f2269883fee1ed340fbb39c52e6633 -SIZE (KDE/applications/18.08.1/ktp-contact-runner-18.08.1.tar.xz) = 42792 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-contact-runner-18.08.2.tar.xz) = 6c007113271c5d8c671543c21139dd63a7199b81fae788f17aede8ea97209848 +SIZE (KDE/applications/18.08.2/ktp-contact-runner-18.08.2.tar.xz) = 42716 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 481850) +++ head/net-im/ktp-desktop-applets/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-desktop-applets-18.08.1.tar.xz) = 5e745166771d713e2bfa5e5fce024722bf50891d421b92ce2e767e43ba9df312 -SIZE (KDE/applications/18.08.1/ktp-desktop-applets-18.08.1.tar.xz) = 43252 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-desktop-applets-18.08.2.tar.xz) = badfb17ff4acb4be45d4bffb5149109395b85d3121003884975462fe16e7b2e4 +SIZE (KDE/applications/18.08.2/ktp-desktop-applets-18.08.2.tar.xz) = 43188 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 481850) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-filetransfer-handler-18.08.1.tar.xz) = 1bfde019d9c8d5bc7c95ddf61003334ee708773512e687af6922a90b9b2fa21e -SIZE (KDE/applications/18.08.1/ktp-filetransfer-handler-18.08.1.tar.xz) = 46264 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-filetransfer-handler-18.08.2.tar.xz) = 119e18a44b124d07549fb3e47598a8e4eb274fb691e38aa7a7509093640b6d54 +SIZE (KDE/applications/18.08.2/ktp-filetransfer-handler-18.08.2.tar.xz) = 46220 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 481850) +++ head/net-im/ktp-kded-module/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/ktp-kded-module-18.08.1.tar.xz) = 752da0aff83c0afe0c177b9c04733df2fff5a6374ef3fb68f6881f78b71a1539 -SIZE (KDE/applications/18.08.1/ktp-kded-module-18.08.1.tar.xz) = 94700 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-kded-module-18.08.2.tar.xz) = 162b74521b8f3bf9e9d9b9095eeaad6cff7419a557ac1aba25048ade7d75d4d8 +SIZE (KDE/applications/18.08.2/ktp-kded-module-18.08.2.tar.xz) = 94656 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 481850) +++ head/net-im/ktp-send-file/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-send-file-18.08.1.tar.xz) = af6a5d04e141a05972a3ea943c8e2bbe4822497c0da8909bd164f6ec6b1733b5 -SIZE (KDE/applications/18.08.1/ktp-send-file-18.08.1.tar.xz) = 28868 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-send-file-18.08.2.tar.xz) = 2c233134d64edaab8da054e3734749337b32b63b550a58a6dd933b0cc2b3a714 +SIZE (KDE/applications/18.08.2/ktp-send-file-18.08.2.tar.xz) = 28816 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 481850) +++ head/net-im/ktp-text-ui/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175945 -SHA256 (KDE/applications/18.08.1/ktp-text-ui-18.08.1.tar.xz) = a42f6e562d63e1668cc058b619db1289b9569a8954587375df6677f134cfcd1f -SIZE (KDE/applications/18.08.1/ktp-text-ui-18.08.1.tar.xz) = 470236 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/ktp-text-ui-18.08.2.tar.xz) = 696e14459ad25b009508a9877b33117f82e6120b40ae9ed8120c4a3f8933dc70 +SIZE (KDE/applications/18.08.2/ktp-text-ui-18.08.2.tar.xz) = 470000 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 481850) +++ head/print/print-manager/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/print-manager-18.08.1.tar.xz) = ce36b35cc1c891e783ad227067959800984180e98959c3821ce18e4ac2adaa47 -SIZE (KDE/applications/18.08.1/print-manager-18.08.1.tar.xz) = 238808 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/print-manager-18.08.2.tar.xz) = 3ec78d21ab9c823a07eba57a77bfec4cc9600a0d38b96324f658f1e0e588819e +SIZE (KDE/applications/18.08.2/print-manager-18.08.2.tar.xz) = 238756 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 481850) +++ head/science/kalzium/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kalzium-18.08.1.tar.xz) = 85ff859d878d5c0aeb3a21fb91fa5af4c41994c747877f5fe8f17692624fe86a -SIZE (KDE/applications/18.08.1/kalzium-18.08.1.tar.xz) = 24377360 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/kalzium-18.08.2.tar.xz) = 50e7194db4b6d2b9123dd4907e6fb642a6061a0d3188e10cda274126cdc26a61 +SIZE (KDE/applications/18.08.2/kalzium-18.08.2.tar.xz) = 24378012 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 481850) +++ head/science/step/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/step-18.08.1.tar.xz) = 1fe17592420254b54344dca51596c99630b44ba0eb2d78c57978bad560deecac -SIZE (KDE/applications/18.08.1/step-18.08.1.tar.xz) = 860584 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/step-18.08.2.tar.xz) = b53031a4f57667291a571bcacd4f5387821cf7b50a506775ca7634532b77950b +SIZE (KDE/applications/18.08.2/step-18.08.2.tar.xz) = 860376 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 481850) +++ head/security/kgpg/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/kgpg-18.08.1.tar.xz) = 65716ad78d51a3f581a11535d48be149ece55a37dbdeb72ddfdec289423f6fc4 -SIZE (KDE/applications/18.08.1/kgpg-18.08.1.tar.xz) = 2857000 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kgpg-18.08.2.tar.xz) = 833831b651a49a45fbb1d03f5756d73a7fcc8a6e6674733974efed4fefa8ddf3 +SIZE (KDE/applications/18.08.2/kgpg-18.08.2.tar.xz) = 2857376 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 481850) +++ head/security/kleopatra/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175932 -SHA256 (KDE/applications/18.08.1/kleopatra-18.08.1.tar.xz) = 1e69345056ca88e510ffb69ef4edc24188e05542ebbeed0c82f4856d7ec7c53c -SIZE (KDE/applications/18.08.1/kleopatra-18.08.1.tar.xz) = 1930564 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kleopatra-18.08.2.tar.xz) = 758c5ffa491749ca8ebf774c92a2ed1653680932d996b0b440c31a5f0124eefa +SIZE (KDE/applications/18.08.2/kleopatra-18.08.2.tar.xz) = 1930380 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 481850) +++ head/security/kpkpass/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175917 -SHA256 (KDE/applications/18.08.1/kpkpass-18.08.1.tar.xz) = 9326886a15d3539f0c44a9faf489d2f969d5a3fa2b773de125e496d17211a185 -SIZE (KDE/applications/18.08.1/kpkpass-18.08.1.tar.xz) = 22928 +TIMESTAMP = 1539116173 +SHA256 (KDE/applications/18.08.2/kpkpass-18.08.2.tar.xz) = aa2fdc4cd3a9186860a04cf75fae0b1f9d0b00d86be0bb0cfbc2cd3f65873b91 +SIZE (KDE/applications/18.08.2/kpkpass-18.08.2.tar.xz) = 22936 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 481850) +++ head/security/kwalletmanager/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/kwalletmanager-18.08.1.tar.xz) = f8dcb54cd8ca330304f872f1dcf3c2194dc5637fc2ab7b6fac6bf966623c1922 -SIZE (KDE/applications/18.08.1/kwalletmanager-18.08.1.tar.xz) = 786812 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/kwalletmanager-18.08.2.tar.xz) = b807453fba5da9676b8965f157a990f340cf95eb85f5d77f75f2e0b454113f85 +SIZE (KDE/applications/18.08.2/kwalletmanager-18.08.2.tar.xz) = 787152 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 481850) +++ head/security/libkleo/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/libkleo-18.08.1.tar.xz) = 86b9f151818382a7cd0c62bb7084258a0bcfd38cc74cd22b1453c09acb183ae0 -SIZE (KDE/applications/18.08.1/libkleo-18.08.1.tar.xz) = 336156 +TIMESTAMP = 1539116184 +SHA256 (KDE/applications/18.08.2/libkleo-18.08.2.tar.xz) = 2ecb5b2dc7dbbeadc98d91c72356348223967b65722a615de522cdf16fd248c4 +SIZE (KDE/applications/18.08.2/libkleo-18.08.2.tar.xz) = 336048 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 481850) +++ head/sysutils/baloo-widgets/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/baloo-widgets-18.08.1.tar.xz) = b7f3bf10e2aa8e30ae7230c781c2d3cd1e71290e1df6f126dee8d7a9803468a9 -SIZE (KDE/applications/18.08.1/baloo-widgets-18.08.1.tar.xz) = 244788 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/baloo-widgets-18.08.2.tar.xz) = 0fa393bd12bbb709ce242a604fc1649992a4cb2dca0d6c9b055610f123c42d27 +SIZE (KDE/applications/18.08.2/baloo-widgets-18.08.2.tar.xz) = 244776 Index: head/sysutils/baloo-widgets/pkg-plist =================================================================== --- head/sysutils/baloo-widgets/pkg-plist (revision 481850) +++ head/sysutils/baloo-widgets/pkg-plist (revision 481851) @@ -1,64 +1,64 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 -lib/libKF5BalooWidgets.so.18.8.1 +lib/libKF5BalooWidgets.so.18.8.2 %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 481850) +++ head/sysutils/filelight/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/filelight-18.08.1.tar.xz) = 17d544c56d608961d67c4e08f0078a25b222446cd16d7884206bf0f3ed0a5f0f -SIZE (KDE/applications/18.08.1/filelight-18.08.1.tar.xz) = 659392 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/filelight-18.08.2.tar.xz) = 89c0f08aeadf59240a117e80a0d8bef0e00d29b2fa58f62652270dda714ce116 +SIZE (KDE/applications/18.08.2/filelight-18.08.2.tar.xz) = 659676 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 481850) +++ head/sysutils/k3b/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/k3b-18.08.1.tar.xz) = ca58a7e0888c35821fa4d442012a5633099cff0abb0e732a3a47ee1143be67ef -SIZE (KDE/applications/18.08.1/k3b-18.08.1.tar.xz) = 10598048 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/k3b-18.08.2.tar.xz) = a799969d229c6ddde74e1f30f469f2371b00111c747d2f6e254150e368be3181 +SIZE (KDE/applications/18.08.2/k3b-18.08.2.tar.xz) = 10597972 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 481850) +++ head/sysutils/kbackup/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kbackup-18.08.1.tar.xz) = 66b3c85900ff838b2d58ae65d105aad83b5d20ecec263124e0b1471ee32aa797 -SIZE (KDE/applications/18.08.1/kbackup-18.08.1.tar.xz) = 351076 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/kbackup-18.08.2.tar.xz) = 710bcfe70e28b9e7b1d7bdb095864283b9c305ee7a4a92c81ca545916f571835 +SIZE (KDE/applications/18.08.2/kbackup-18.08.2.tar.xz) = 351324 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 481850) +++ head/sysutils/kcron/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kcron-18.08.1.tar.xz) = 3549b006a10151f3fdb7af2aa99dcbd95482e4ca8a713b5958289a8562a48aae -SIZE (KDE/applications/18.08.1/kcron-18.08.1.tar.xz) = 1056760 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/kcron-18.08.2.tar.xz) = f562d8e2bd1541e23cf644e4e33a614a2b865453f9eb3660a5c0f209e2a33ffc +SIZE (KDE/applications/18.08.2/kcron-18.08.2.tar.xz) = 1056672 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 481850) +++ head/sysutils/kdebugsettings/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/kdebugsettings-18.08.1.tar.xz) = 04cd86b9e7e3b48a0d4b24bc32298a244cb5b3066a36ce694c6f005419dbd458 -SIZE (KDE/applications/18.08.1/kdebugsettings-18.08.1.tar.xz) = 52516 +TIMESTAMP = 1539116180 +SHA256 (KDE/applications/18.08.2/kdebugsettings-18.08.2.tar.xz) = 18d2a718473320065d405fdbe2d66f549ef700d848c86d3fc65aa7357c3fe3e8 +SIZE (KDE/applications/18.08.2/kdebugsettings-18.08.2.tar.xz) = 52532 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 481850) +++ head/sysutils/kdf/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kdf-18.08.1.tar.xz) = 392f282c6a66796b4fd46da31f899feda3e407f37fafa9743c70c6fda1e3b0d4 -SIZE (KDE/applications/18.08.1/kdf-18.08.1.tar.xz) = 556364 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/kdf-18.08.2.tar.xz) = f144014bdf6aa241af83a1c751f709c27bb9d3b84ab9ea7559114502ccc55aa8 +SIZE (KDE/applications/18.08.2/kdf-18.08.2.tar.xz) = 556560 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 481850) +++ head/sysutils/kdialog/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kdialog-18.08.1.tar.xz) = 39433f3b30784d3a38b39b8ca63b5c36e9f05ea426a3381c45d843a9911f0a69 -SIZE (KDE/applications/18.08.1/kdialog-18.08.1.tar.xz) = 96820 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/kdialog-18.08.2.tar.xz) = e473f1e3808b7f78a07e0a519a72bebf3f1d289e0f5247a71cf69245c0d5445a +SIZE (KDE/applications/18.08.2/kdialog-18.08.2.tar.xz) = 96780 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 481850) +++ head/sysutils/kfloppy/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kfloppy-18.08.1.tar.xz) = 66f6b781a71754dc5e2acf30e4ce851d92fb193cc2433e55d2481c1e25c1631f -SIZE (KDE/applications/18.08.1/kfloppy-18.08.1.tar.xz) = 199868 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/kfloppy-18.08.2.tar.xz) = 04ef2d6411c268dd0b6c16a87164a0faf2bb1ed68309f56dae44d1926ed4e182 +SIZE (KDE/applications/18.08.2/kfloppy-18.08.2.tar.xz) = 199800 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 481850) +++ head/sysutils/khelpcenter/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175928 -SHA256 (KDE/applications/18.08.1/khelpcenter-18.08.1.tar.xz) = 9137b8e76941715b2f3bbb3e0f796b46e3b8a1ff4740b4c00492de792df6c0cc -SIZE (KDE/applications/18.08.1/khelpcenter-18.08.1.tar.xz) = 3841636 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/khelpcenter-18.08.2.tar.xz) = 6aa449cadceda3f303012a3cea4a2d38b5a1286ccd4c62cf779d25e168780bcb +SIZE (KDE/applications/18.08.2/khelpcenter-18.08.2.tar.xz) = 3841656 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 481850) +++ head/sysutils/ksystemlog/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/ksystemlog-18.08.1.tar.xz) = de7a823d96d3b8179fe814a9e91669bcf826c70f397a6b9e3aaf8662f17f0530 -SIZE (KDE/applications/18.08.1/ksystemlog-18.08.1.tar.xz) = 1966736 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/ksystemlog-18.08.2.tar.xz) = a194fcbb50cc270d34b28b7aa9bfa8e1129dfecf1f890f72d366eecb948ed553 +SIZE (KDE/applications/18.08.2/ksystemlog-18.08.2.tar.xz) = 1966492 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 481850) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/signon-kwallet-extension-18.08.1.tar.xz) = 6432e7ca277d85db6a1ccc6a9306dbc52f2a845d9c5ccbf92e16fb2e9debc9f1 -SIZE (KDE/applications/18.08.1/signon-kwallet-extension-18.08.1.tar.xz) = 10628 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/signon-kwallet-extension-18.08.2.tar.xz) = c7ef8cc741bda9ab1bb626a8af05c30d37dd1e7f42abac115e88d080b72ead45 +SIZE (KDE/applications/18.08.2/signon-kwallet-extension-18.08.2.tar.xz) = 10628 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 481850) +++ head/sysutils/sweeper/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/sweeper-18.08.1.tar.xz) = c4b71c5dcf842cb97317d8fdc2c43c9201298860ed08f60a05120f20d198adee -SIZE (KDE/applications/18.08.1/sweeper-18.08.1.tar.xz) = 368312 +TIMESTAMP = 1539116181 +SHA256 (KDE/applications/18.08.2/sweeper-18.08.2.tar.xz) = f5bdf52c5f6c4921f4180da8cbbfb17bfd40edb98a43c4040b16f0216b201e70 +SIZE (KDE/applications/18.08.2/sweeper-18.08.2.tar.xz) = 368308 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 481850) +++ head/textproc/kompare/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/kompare-18.08.1.tar.xz) = 1b6706700ec7216f6674544716a33c63fe3b4a5411a28732c0300f6558714d4f -SIZE (KDE/applications/18.08.1/kompare-18.08.1.tar.xz) = 802248 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/kompare-18.08.2.tar.xz) = 69d822d3f2c4c6d7babdcea153aa465a9bb990e465a19d3c451ad6a78fc2249e +SIZE (KDE/applications/18.08.2/kompare-18.08.2.tar.xz) = 802264 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 481850) +++ head/textproc/libkomparediff2/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/libkomparediff2-18.08.1.tar.xz) = 41777a633311ce8a587ea65a0d0d397dd75a0e682933325df12086d1581f9c84 -SIZE (KDE/applications/18.08.1/libkomparediff2-18.08.1.tar.xz) = 173720 +TIMESTAMP = 1539116194 +SHA256 (KDE/applications/18.08.2/libkomparediff2-18.08.2.tar.xz) = d2d9d48c7ce34471aced23f67c7b6e191c52c192d8c894e0eb96eacad98aa51d +SIZE (KDE/applications/18.08.2/libkomparediff2-18.08.2.tar.xz) = 173684 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 481850) +++ head/x11/konsole/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175931 -SHA256 (KDE/applications/18.08.1/konsole-18.08.1.tar.xz) = ed087d8c3f55947f22fbfa95fc806e49ed99ead1a5ce896934fe3e4ff8ac2916 -SIZE (KDE/applications/18.08.1/konsole-18.08.1.tar.xz) = 1076536 +TIMESTAMP = 1539116183 +SHA256 (KDE/applications/18.08.2/konsole-18.08.2.tar.xz) = 1a2ba04dc7893234b5795e9b769d023cf65865378bf48117a14fcc4906bca08b +SIZE (KDE/applications/18.08.2/konsole-18.08.2.tar.xz) = 1076752 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 481850) +++ head/x11-clocks/kteatime/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/kteatime-18.08.1.tar.xz) = f52dc05a42cd61b846e7fcdd6fa44926f74e3a0f8bd98eb5ab76f329ecbb3f5f -SIZE (KDE/applications/18.08.1/kteatime-18.08.1.tar.xz) = 298016 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/kteatime-18.08.2.tar.xz) = 5e7ef9e5d8b82733868e7223ae28ea3f620461e2a422ea27a86bc6f824baa967 +SIZE (KDE/applications/18.08.2/kteatime-18.08.2.tar.xz) = 298028 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 481850) +++ head/x11-clocks/ktimer/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175929 -SHA256 (KDE/applications/18.08.1/ktimer-18.08.1.tar.xz) = 172eecb093bb6da95d64023cf8de205f17a41b1d66fa7845568fb4140ced932f -SIZE (KDE/applications/18.08.1/ktimer-18.08.1.tar.xz) = 509296 +TIMESTAMP = 1539116182 +SHA256 (KDE/applications/18.08.2/ktimer-18.08.2.tar.xz) = 90750eeb166df117e24c63df44f711f8925b93395fccbcfe2c8970cefb220684 +SIZE (KDE/applications/18.08.2/ktimer-18.08.2.tar.xz) = 509456 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 481850) +++ head/x11-fm/dolphin/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175944 -SHA256 (KDE/applications/18.08.1/dolphin-18.08.1.tar.xz) = d29f2cb3db040f042d4a0c8fcc6712e55d350bb77e3527c1b7b5bc59c2081cb9 -SIZE (KDE/applications/18.08.1/dolphin-18.08.1.tar.xz) = 4859496 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/dolphin-18.08.2.tar.xz) = 5d79d289735822dfc27917917ee7c92284d1f846696773ed66da2102617e9451 +SIZE (KDE/applications/18.08.2/dolphin-18.08.2.tar.xz) = 4859700 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 481850) +++ head/x11-fm/konqueror/distinfo (revision 481851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536175943 -SHA256 (KDE/applications/18.08.1/konqueror-18.08.1.tar.xz) = c72330483d6bd3a50186a86f96aee9b97830dc84c4909e61f4a766f694dfe92f -SIZE (KDE/applications/18.08.1/konqueror-18.08.1.tar.xz) = 7744228 +TIMESTAMP = 1539116193 +SHA256 (KDE/applications/18.08.2/konqueror-18.08.2.tar.xz) = 80390703d31b8e5160e37e8668e4afe5b69f67ac067c181864586ab2eeea40ac +SIZE (KDE/applications/18.08.2/konqueror-18.08.2.tar.xz) = 7743608