Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 472129) +++ head/Mk/Uses/kde.mk (revision 472130) @@ -1,1021 +1,1021 @@ # $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.46.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 18.04.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.8.1 +KDE_APPLICATIONS_VERSION?= 18.04.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.8.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= 16.12.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= baloo baloo-widgets 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+= akonadi 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 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 kontactinterface kpimdav \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit syndication 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 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_LIB= libakonadi-filestore.so.5 kontactinterface_PORT= net/kontactinterface kontactinterface_LIB= libKF5KontactInterface.so kpimdav_PORT= net/kdav kpimdav_LIB= libKPimKDAV.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 syndication_PORT= net/syndication syndication_LIB= libKF5Syndication.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 baloo-widgets4_PORT= sysutils/baloo-widgets-kde4 baloo-widgets4_LIB= libbaloowidgets.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 libkcompactdisc4_PORT= audio/libkcompactdisc-kde4 libkcompactdisc4_LIB= libkcompactdisc.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 472129) +++ head/accessibility/kmag/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/kmag-18.04.1.tar.xz) = ed6daeff42306bc035db1f5088282db42c2d5347649a9817c47e76bbba027198 -SIZE (KDE/applications/18.04.1/kmag-18.04.1.tar.xz) = 589236 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kmag-18.04.2.tar.xz) = 5632a75930cc5284a57ddfe6ec80bb35664464b897479c707b7fe99c89b233ba +SIZE (KDE/applications/18.04.2/kmag-18.04.2.tar.xz) = 589336 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 472129) +++ head/accessibility/kmousetool/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/kmousetool-18.04.1.tar.xz) = 1d3f2a6443164b835e3f2753f986c8a96d320c7e30a5fb0f819997e67c9ae521 -SIZE (KDE/applications/18.04.1/kmousetool-18.04.1.tar.xz) = 112588 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kmousetool-18.04.2.tar.xz) = 8f32cd1e6355c4c6d41f1bdc6a9adfb9e1d1a68a44c24793e6d3217b5b6e7047 +SIZE (KDE/applications/18.04.2/kmousetool-18.04.2.tar.xz) = 112840 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 472129) +++ head/accessibility/kmouth/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/kmouth-18.04.1.tar.xz) = 91e567d7021aae55d08116d809e4952fbcea260ee289ad7e34603dd076caa522 -SIZE (KDE/applications/18.04.1/kmouth-18.04.1.tar.xz) = 1766428 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kmouth-18.04.2.tar.xz) = 7c55a27883ad87fec3ee4c6dc1407d7671236045dc16c639b8e24db95c80d27f +SIZE (KDE/applications/18.04.2/kmouth-18.04.2.tar.xz) = 1766928 Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 472129) +++ head/archivers/ark/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/ark-18.04.1.tar.xz) = 63f6bdfb54cdeb99696e64fbc8b5c4e5a83ac8251f20510c7d5e6bfd41aaf781 -SIZE (KDE/applications/18.04.1/ark-18.04.1.tar.xz) = 1971344 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/ark-18.04.2.tar.xz) = 088b1fe8cca84bce022cc012f604280228598c4f70917ac425e95ac8131a8d22 +SIZE (KDE/applications/18.04.2/ark-18.04.2.tar.xz) = 1973540 Index: head/archivers/ark/pkg-plist =================================================================== --- head/archivers/ark/pkg-plist (revision 472129) +++ head/archivers/ark/pkg-plist (revision 472130) @@ -1,95 +1,95 @@ bin/ark etc/xdg/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% -lib/libkerfuffle.so.18.4.1 +lib/libkerfuffle.so.18.4.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 472129) +++ head/astro/libkgeomap/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/libkgeomap-18.04.1.tar.xz) = 6a8b3b5badc6b62add707f750b07448aff22205006bd6c10743a9e1832e23f9b -SIZE (KDE/applications/18.04.1/libkgeomap-18.04.1.tar.xz) = 150284 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/libkgeomap-18.04.2.tar.xz) = 0dc2ea073fb96146dc24198d6fadb54fa55ddaa2b2b6931bf156db03ae9ea2e7 +SIZE (KDE/applications/18.04.2/libkgeomap-18.04.2.tar.xz) = 150316 Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 472129) +++ head/astro/marble/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/marble-18.04.1.tar.xz) = 567aefc51463e97553aa3de41f321fd9aa8c39c5bdc2a107a605956cb1184a11 -SIZE (KDE/applications/18.04.1/marble-18.04.1.tar.xz) = 52439528 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/marble-18.04.2.tar.xz) = 0d22a68498fe3be821b38ac8df24c753b491b50df637ca3e1155ae3897449128 +SIZE (KDE/applications/18.04.2/marble-18.04.2.tar.xz) = 52434940 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 472129) +++ head/audio/audiocd-kio/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/audiocd-kio-18.04.1.tar.xz) = ea3efce65ee939c8f390c0821b72d9d88f14d582ff8355ce7a8e84d58f547cbc -SIZE (KDE/applications/18.04.1/audiocd-kio-18.04.1.tar.xz) = 248696 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/audiocd-kio-18.04.2.tar.xz) = c5a4a2fdc8b1261418a8ac6c9c5bfc3d0e766a0c277f9ca11ed6b298f7787443 +SIZE (KDE/applications/18.04.2/audiocd-kio-18.04.2.tar.xz) = 248924 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 472129) +++ head/audio/juk/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/juk-18.04.1.tar.xz) = 8311375f4701445bca556ba0cca331925490097fae0f849278aa43007aefef07 -SIZE (KDE/applications/18.04.1/juk-18.04.1.tar.xz) = 1872276 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/juk-18.04.2.tar.xz) = ed32d684e439034bfa9c293f691ba36076f2e71a2ad2b4d44df14f597dede35c +SIZE (KDE/applications/18.04.2/juk-18.04.2.tar.xz) = 1872656 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 472129) +++ head/audio/kmix/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kmix-18.04.1.tar.xz) = 8d67f6ada820c4bb2ed69c81b5306511aa9ce725a0d4e58ab2257d6adf0d07cb -SIZE (KDE/applications/18.04.1/kmix-18.04.1.tar.xz) = 1284496 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kmix-18.04.2.tar.xz) = a7d6027fe79948616091e694a1a0284cecde90d50b2cef3b4c7559983bc74fd0 +SIZE (KDE/applications/18.04.2/kmix-18.04.2.tar.xz) = 1284608 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 472129) +++ head/audio/kwave/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kwave-18.04.1.tar.xz) = 5731eb90a967088f8006c4ec2d73c2d3cc67ea9919a006566cddfd0db3f76b2b -SIZE (KDE/applications/18.04.1/kwave-18.04.1.tar.xz) = 4761628 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kwave-18.04.2.tar.xz) = dc11d0d653b82680f5e801e34438ccc4dfa659d24024e5963aecdb3531909911 +SIZE (KDE/applications/18.04.2/kwave-18.04.2.tar.xz) = 4762332 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 472129) +++ head/audio/libkcddb/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/libkcddb-18.04.1.tar.xz) = 0ebda5dfe0a32398d611d6c6bc354aa4c70414ffa41136451bed3f479d06c8da -SIZE (KDE/applications/18.04.1/libkcddb-18.04.1.tar.xz) = 426972 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/libkcddb-18.04.2.tar.xz) = 53ede368694bbe9ed90ae812e3d5b4dd5a5b9f210181095d84170fb53b7b6d14 +SIZE (KDE/applications/18.04.2/libkcddb-18.04.2.tar.xz) = 427096 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 472129) +++ head/audio/libkcompactdisc/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/libkcompactdisc-18.04.1.tar.xz) = 61a320f067163c528f2bfc98c6b5a2c538227b23c3ca8dc8121ed1cd7f1aeb8b -SIZE (KDE/applications/18.04.1/libkcompactdisc-18.04.1.tar.xz) = 88420 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/libkcompactdisc-18.04.2.tar.xz) = 5b51f81a8ea773ed307419efbf1672eefda9560ef3952c27a00b70d02f6a7650 +SIZE (KDE/applications/18.04.2/libkcompactdisc-18.04.2.tar.xz) = 88516 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 472129) +++ head/databases/akonadi/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756104 -SHA256 (KDE/applications/18.04.1/akonadi-18.04.1.tar.xz) = 1b1a569df956f7b44fe5b984d54069c176259f977dfd0456b9f33fab12c9e035 -SIZE (KDE/applications/18.04.1/akonadi-18.04.1.tar.xz) = 1525744 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/akonadi-18.04.2.tar.xz) = 65bc4eaf41f9000e01e323aef30162a3597edd560b599021d977d73843c28acf +SIZE (KDE/applications/18.04.2/akonadi-18.04.2.tar.xz) = 1525976 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 472129) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/akonadi-calendar-tools-18.04.1.tar.xz) = 768b3938f165a0f0d9911b74de055982fa5575cbe77e9b988c480bcc6d6965a4 -SIZE (KDE/applications/18.04.1/akonadi-calendar-tools-18.04.1.tar.xz) = 221120 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/akonadi-calendar-tools-18.04.2.tar.xz) = c2c16a0384b82644d0ba65a65cd0b520f54d54eac410e0c76137af92181d43f5 +SIZE (KDE/applications/18.04.2/akonadi-calendar-tools-18.04.2.tar.xz) = 221200 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 472129) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/akonadi-import-wizard-18.04.1.tar.xz) = 845ab0f0146f860490e8c2bf519abe5de8ecb9b4cffddda36fd3ac674f451194 -SIZE (KDE/applications/18.04.1/akonadi-import-wizard-18.04.1.tar.xz) = 436616 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/akonadi-import-wizard-18.04.2.tar.xz) = 096afa68ad2c60ba2dd049a226c1e3c1ebeb86139f5fe7746717b021c9e0e379 +SIZE (KDE/applications/18.04.2/akonadi-import-wizard-18.04.2.tar.xz) = 436648 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 472129) +++ head/deskutils/akonadiconsole/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/akonadiconsole-18.04.1.tar.xz) = f34a5c7f6014977eebf9279ad646973d4409f7f35ea0b9507fd1453d4b2e590c -SIZE (KDE/applications/18.04.1/akonadiconsole-18.04.1.tar.xz) = 185796 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/akonadiconsole-18.04.2.tar.xz) = cd65f4b598977f1cb8b2f96c2cfb4d04708715f570a871b8968fc56135b35eda +SIZE (KDE/applications/18.04.2/akonadiconsole-18.04.2.tar.xz) = 185772 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 472129) +++ head/deskutils/akregator/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/akregator-18.04.1.tar.xz) = fb7e2319b6fc751adb8ef241e165d1e1a68e2aa81a73ef0d0276a8cef36ab740 -SIZE (KDE/applications/18.04.1/akregator-18.04.1.tar.xz) = 2250984 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/akregator-18.04.2.tar.xz) = 2cf3b1d9c19fe98ae09c8df48b50fef4980b3bf85be771a4bb39af9b68b6afb9 +SIZE (KDE/applications/18.04.2/akregator-18.04.2.tar.xz) = 2251116 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 472129) +++ head/deskutils/grantlee-editor/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/grantlee-editor-18.04.1.tar.xz) = 5a5a9939df563f40bf51d26d25a3ff8469ae521610a5b9779723251fcacc517b -SIZE (KDE/applications/18.04.1/grantlee-editor-18.04.1.tar.xz) = 111092 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/grantlee-editor-18.04.2.tar.xz) = f8899c342ef3f082e25947999197da158e81ccc3b4ee4f4aea006811f6f1335a +SIZE (KDE/applications/18.04.2/grantlee-editor-18.04.2.tar.xz) = 111264 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 472129) +++ head/deskutils/grantleetheme/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/grantleetheme-18.04.1.tar.xz) = 4867a0523e63be88c8bc2bed73742fe53f73cd385cc31002a34663c57deffa3f -SIZE (KDE/applications/18.04.1/grantleetheme-18.04.1.tar.xz) = 51672 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/grantleetheme-18.04.2.tar.xz) = a7dda323a1961594715c81c48286d513cd586c1098434332316db4b386f7a025 +SIZE (KDE/applications/18.04.2/grantleetheme-18.04.2.tar.xz) = 51684 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 472129) +++ head/deskutils/kaddressbook/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/kaddressbook-18.04.1.tar.xz) = a592f780d0e5e7b18240172f1c2618c4fdb95a1be845494b701f4a44137b0270 -SIZE (KDE/applications/18.04.1/kaddressbook-18.04.1.tar.xz) = 547896 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/kaddressbook-18.04.2.tar.xz) = f9e17ace7f4d157c63ceb376535bc14337d00245c0e1f2fa6d6c3c587a79e155 +SIZE (KDE/applications/18.04.2/kaddressbook-18.04.2.tar.xz) = 547860 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 472129) +++ head/deskutils/kalarm/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/kalarm-18.04.1.tar.xz) = 75f6fba9f5130c5d64c82beafd65f529bf876d4fb2f8c8a64c25a5a3bf56d56c -SIZE (KDE/applications/18.04.1/kalarm-18.04.1.tar.xz) = 1796136 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/kalarm-18.04.2.tar.xz) = d21937398975bc04a9f4cd6b5754662c8e2dacd2a42030e17d973c3e011ab0a2 +SIZE (KDE/applications/18.04.2/kalarm-18.04.2.tar.xz) = 1796312 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 472129) +++ head/deskutils/kcharselect/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kcharselect-18.04.1.tar.xz) = 9db75dbff68e574e3d679a4971303d8305df7bf95dc3787fcfe3d8d1c316625f -SIZE (KDE/applications/18.04.1/kcharselect-18.04.1.tar.xz) = 351776 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/kcharselect-18.04.2.tar.xz) = 24e0b69eeca90755fb4a259404943a69e5760c30e4e50dff5f4a43a38297e158 +SIZE (KDE/applications/18.04.2/kcharselect-18.04.2.tar.xz) = 351900 Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 472129) +++ head/deskutils/kdepim-addons/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kdepim-addons-18.04.1.tar.xz) = eb4c1330a0fe65f88637e69a5abe3da8e6797ae05c56dfbb357c560ea9b5d1e2 -SIZE (KDE/applications/18.04.1/kdepim-addons-18.04.1.tar.xz) = 2508620 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kdepim-addons-18.04.2.tar.xz) = a184eede7e6fa6b5155cd8e23fe6a1193b9b0880b4e72d300eea2611105e793c +SIZE (KDE/applications/18.04.2/kdepim-addons-18.04.2.tar.xz) = 2510472 Index: head/deskutils/kdepim-apps-libs/distinfo =================================================================== --- head/deskutils/kdepim-apps-libs/distinfo (revision 472129) +++ head/deskutils/kdepim-apps-libs/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/kdepim-apps-libs-18.04.1.tar.xz) = 8c86f783bdb5072d522fc257465bc28646748129c4c04731112c3f68519d81a8 -SIZE (KDE/applications/18.04.1/kdepim-apps-libs-18.04.1.tar.xz) = 73120 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/kdepim-apps-libs-18.04.2.tar.xz) = fe5487445cef6ed2ab705b0331981e0e528ee83a0e64412ee9ec6e3af27a1800 +SIZE (KDE/applications/18.04.2/kdepim-apps-libs-18.04.2.tar.xz) = 73240 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 472129) +++ head/deskutils/kdepim-runtime/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/kdepim-runtime-18.04.1.tar.xz) = 812783eec4861acac67a556dd639e6f844c0a66494f96f5e1ee1dfaee6e4823e -SIZE (KDE/applications/18.04.1/kdepim-runtime-18.04.1.tar.xz) = 1749484 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/kdepim-runtime-18.04.2.tar.xz) = d7a1fc6e5a62649915e9e2580d4a27e0a9a5ba0e4a570ee637c1e6266afb5da3 +SIZE (KDE/applications/18.04.2/kdepim-runtime-18.04.2.tar.xz) = 1751204 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 472129) +++ head/deskutils/keditbookmarks/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/keditbookmarks-18.04.1.tar.xz) = c457b0197c05fd405b6fe66c229ffbe3e0525612b0f08db789a4259d64f128e2 -SIZE (KDE/applications/18.04.1/keditbookmarks-18.04.1.tar.xz) = 183996 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/keditbookmarks-18.04.2.tar.xz) = d236763c985c967f95132d27ec3436cac20eada7b1373b065adcdbb9f749ccb5 +SIZE (KDE/applications/18.04.2/keditbookmarks-18.04.2.tar.xz) = 184120 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 472129) +++ head/deskutils/kfind/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/kfind-18.04.1.tar.xz) = 93506279e4062e0709ca8cda2a21ed5e7a1f13b70b347526b00869002651d095 -SIZE (KDE/applications/18.04.1/kfind-18.04.1.tar.xz) = 209980 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/kfind-18.04.2.tar.xz) = 4df698d16872939acb88b8ea0f52b4fdf9ed890658ebe57bfac919e769e6aa48 +SIZE (KDE/applications/18.04.2/kfind-18.04.2.tar.xz) = 210260 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 472129) +++ head/deskutils/kmail/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/kmail-18.04.1.tar.xz) = cf713c00492d8dd45503cef5d86bcc8547e973a9f3045becbcc0b5acdf11e714 -SIZE (KDE/applications/18.04.1/kmail-18.04.1.tar.xz) = 4758416 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/kmail-18.04.2.tar.xz) = d118a518282b42f947e1e6f2607e406c60f2ff45b99cef7ec03fb05c4ae43856 +SIZE (KDE/applications/18.04.2/kmail-18.04.2.tar.xz) = 4757740 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 472129) +++ head/deskutils/kmail-account-wizard/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/kmail-account-wizard-18.04.1.tar.xz) = 5c163f5eca02e54cfc4e7d47326e6234d42351cb103780a3abc8d74c810a7e62 -SIZE (KDE/applications/18.04.1/kmail-account-wizard-18.04.1.tar.xz) = 154864 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/kmail-account-wizard-18.04.2.tar.xz) = 0996733dda057b6d078f31371d9d02cd97701b257c3565c7268346f2815d40ee +SIZE (KDE/applications/18.04.2/kmail-account-wizard-18.04.2.tar.xz) = 154980 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 472129) +++ head/deskutils/knotes/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/knotes-18.04.1.tar.xz) = 8c908c6b3b67ede8e0425c6ba052a55e81ca938ffa95a3f24570e5c7edad8949 -SIZE (KDE/applications/18.04.1/knotes-18.04.1.tar.xz) = 335916 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/knotes-18.04.2.tar.xz) = 3b6ea1db20cb9740c9178ac583c1514e6a6875b177d6ad0e20b13e6269924074 +SIZE (KDE/applications/18.04.2/knotes-18.04.2.tar.xz) = 336128 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 472129) +++ head/deskutils/kontact/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kontact-18.04.1.tar.xz) = a2805f419446040e9dacaa590a8550c01dca924d570adc6d4f036e67dd8faa03 -SIZE (KDE/applications/18.04.1/kontact-18.04.1.tar.xz) = 862660 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kontact-18.04.2.tar.xz) = b84a971a7a5f3a47c18fc4ac996081bcc6137ee9e2f7ec4ce59ce95f73fa5a3c +SIZE (KDE/applications/18.04.2/kontact-18.04.2.tar.xz) = 862824 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 472129) +++ head/deskutils/korganizer/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/korganizer-18.04.1.tar.xz) = a2fb87e878680b416d58a2893fb477180fa50735041c4f64eee94800c40076f4 -SIZE (KDE/applications/18.04.1/korganizer-18.04.1.tar.xz) = 2267120 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/korganizer-18.04.2.tar.xz) = 65512042e815c7d03e7e5af998b52116e7ca2e0919cbbf7ee6d61cc7d9b5c41a +SIZE (KDE/applications/18.04.2/korganizer-18.04.2.tar.xz) = 2266972 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 472129) +++ head/deskutils/kruler/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/kruler-18.04.1.tar.xz) = e60cd515023288c47115ce6ee6f111d82d8e797ebe0f493e870295212a0b6e2e -SIZE (KDE/applications/18.04.1/kruler-18.04.1.tar.xz) = 296076 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/kruler-18.04.2.tar.xz) = 64758eeacecb3f4a9f9708679e8a8e13648c92b3472ea02c622fd7f5f646d87a +SIZE (KDE/applications/18.04.2/kruler-18.04.2.tar.xz) = 296076 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 472129) +++ head/deskutils/libkdepim/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/libkdepim-18.04.1.tar.xz) = a6b347ab3246faae602a8dc9723e7e1342e5238430fb79eec74d1803839d990b -SIZE (KDE/applications/18.04.1/libkdepim-18.04.1.tar.xz) = 341364 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/libkdepim-18.04.2.tar.xz) = 8f5e8397d1bf67a4503922aa48cae170de72ec78f4cb1f74e8d04ddc0c685ee7 +SIZE (KDE/applications/18.04.2/libkdepim-18.04.2.tar.xz) = 341376 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 472129) +++ head/deskutils/mbox-importer/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756096 -SHA256 (KDE/applications/18.04.1/mbox-importer-18.04.1.tar.xz) = 9afc7247a7e66d2706c96b6df8dd3740a43f1bbee7a04cc7bdb998118028e318 -SIZE (KDE/applications/18.04.1/mbox-importer-18.04.1.tar.xz) = 33608 +TIMESTAMP = 1528216940 +SHA256 (KDE/applications/18.04.2/mbox-importer-18.04.2.tar.xz) = 867af82a8ea5fbd0a2c4cc9468116fa2d7f6531833ba9fd25b62967ad8e3b5fa +SIZE (KDE/applications/18.04.2/mbox-importer-18.04.2.tar.xz) = 33700 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 472129) +++ head/deskutils/pim-data-exporter/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756097 -SHA256 (KDE/applications/18.04.1/pim-data-exporter-18.04.1.tar.xz) = 8fbd699958ccae6be7e61866fb02c87edbe5c5840f3e6dc3ab55587065b5c94c -SIZE (KDE/applications/18.04.1/pim-data-exporter-18.04.1.tar.xz) = 270208 +TIMESTAMP = 1528216941 +SHA256 (KDE/applications/18.04.2/pim-data-exporter-18.04.2.tar.xz) = 83c87c44e4d63951cff92a23258167a4876e1f9264b3ae0047ad284ab4e6226a +SIZE (KDE/applications/18.04.2/pim-data-exporter-18.04.2.tar.xz) = 270236 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 472129) +++ head/deskutils/pim-sieve-editor/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756095 -SHA256 (KDE/applications/18.04.1/pim-sieve-editor-18.04.1.tar.xz) = dd019794cae762f8f68a4b02d0cc72a109d035454855fe86b5c150a4e2fcd01c -SIZE (KDE/applications/18.04.1/pim-sieve-editor-18.04.1.tar.xz) = 447240 +TIMESTAMP = 1528216939 +SHA256 (KDE/applications/18.04.2/pim-sieve-editor-18.04.2.tar.xz) = 9aa999803e7864f7ec070445c10fe7b42e509250f74c68a1b3924d4462cb5894 +SIZE (KDE/applications/18.04.2/pim-sieve-editor-18.04.2.tar.xz) = 447292 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 472129) +++ head/devel/cervisia/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/cervisia-18.04.1.tar.xz) = 41003b0c0b16149f281c05d458230bfc5430d22218a5d9c671879c09c69c540f -SIZE (KDE/applications/18.04.1/cervisia-18.04.1.tar.xz) = 1906476 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/cervisia-18.04.2.tar.xz) = a98e862d76adb4e3c6c6bb49bfdaa932288c4e2443d6a4dcbb24507c7ebe005d +SIZE (KDE/applications/18.04.2/cervisia-18.04.2.tar.xz) = 1906876 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 472129) +++ head/devel/dolphin-plugins/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/dolphin-plugins-18.04.1.tar.xz) = cc5dd1c6b31b09b4972c0372304857fd75bed8a00448afb6300dc08ebcbf5f01 -SIZE (KDE/applications/18.04.1/dolphin-plugins-18.04.1.tar.xz) = 189840 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/dolphin-plugins-18.04.2.tar.xz) = db47a16f5fd8fb67940bb7104d75a139561346a8d4a28c65cab454c92458b886 +SIZE (KDE/applications/18.04.2/dolphin-plugins-18.04.2.tar.xz) = 189956 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 472129) +++ head/devel/kapptemplate/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kapptemplate-18.04.1.tar.xz) = 4bcb9e56df50e595ae01a33fe6697383ab3c2bf2cac3f4d8bca2d4355de09718 -SIZE (KDE/applications/18.04.1/kapptemplate-18.04.1.tar.xz) = 352540 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kapptemplate-18.04.2.tar.xz) = ace6eb0285e52c1f7d14b4d25041b4b12946575e5e5f074f3c7f4ecae113bfb4 +SIZE (KDE/applications/18.04.2/kapptemplate-18.04.2.tar.xz) = 352708 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 472129) +++ head/devel/kcachegrind/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kcachegrind-18.04.1.tar.xz) = cf1c826076ed3c23514a17cf40e6c796258e7828d5adeaa9e67bf0636a3f2fd6 -SIZE (KDE/applications/18.04.1/kcachegrind-18.04.1.tar.xz) = 811640 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kcachegrind-18.04.2.tar.xz) = 248a45a8351593f4ea4d411221b700e090ea0e48af63204f880d60a0d25878ae +SIZE (KDE/applications/18.04.2/kcachegrind-18.04.2.tar.xz) = 812156 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 472129) +++ head/devel/kde-dev-scripts/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kde-dev-scripts-18.04.1.tar.xz) = 2503e3f7c34a36c617f842b4f1214a24431177af83a639c8debb524260909a23 -SIZE (KDE/applications/18.04.1/kde-dev-scripts-18.04.1.tar.xz) = 377620 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kde-dev-scripts-18.04.2.tar.xz) = 82d3b8ccc4e45f3ff9490a3646e52600399b7f53083a3f497c9871b4626a4921 +SIZE (KDE/applications/18.04.2/kde-dev-scripts-18.04.2.tar.xz) = 377808 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 472129) +++ head/devel/kde-dev-utils/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kde-dev-utils-18.04.1.tar.xz) = 2a393d8eaa63f49d74c217124e27315a1da756a4734ade760867d4993b51978f -SIZE (KDE/applications/18.04.1/kde-dev-utils-18.04.1.tar.xz) = 61240 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kde-dev-utils-18.04.2.tar.xz) = 1ac2ba52c7ec5cb6a7f89bea80e5dbcd28d2d9bf43c61bf958532b6b23808e33 +SIZE (KDE/applications/18.04.2/kde-dev-utils-18.04.2.tar.xz) = 61388 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 472129) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kdesdk-thumbnailers-18.04.1.tar.xz) = 32f6f0a5b935917447f28cf078f05a4d8a64851948fcac30e0020aea66810768 -SIZE (KDE/applications/18.04.1/kdesdk-thumbnailers-18.04.1.tar.xz) = 17140 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kdesdk-thumbnailers-18.04.2.tar.xz) = 6efcefc7fe61d529a5a653a648b30364749d8e6e186eacaadbf0928a073fe94c +SIZE (KDE/applications/18.04.2/kdesdk-thumbnailers-18.04.2.tar.xz) = 17216 Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 472129) +++ head/devel/kio-extras/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kio-extras-18.04.1.tar.xz) = 30074c5914dba7be9c259f231ed43d523b9c634a1d017eb574aac440aa8a6518 -SIZE (KDE/applications/18.04.1/kio-extras-18.04.1.tar.xz) = 549832 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/kio-extras-18.04.2.tar.xz) = 165ec5528bcd1d52f21bb364dbda4181be768f9b2b0ff0ab8efdad566077b6ce +SIZE (KDE/applications/18.04.2/kio-extras-18.04.2.tar.xz) = 550488 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 472129) +++ head/devel/lokalize/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/lokalize-18.04.1.tar.xz) = 497bb600e026c606f50f1132a67143627ab21645c828c2a4c08df9a5c0a07ceb -SIZE (KDE/applications/18.04.1/lokalize-18.04.1.tar.xz) = 2861644 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/lokalize-18.04.2.tar.xz) = 97fe1e12f93f5245788a87bf2e0bf2f3ddc430d95374fb7a1dd406b3d7daf95b +SIZE (KDE/applications/18.04.2/lokalize-18.04.2.tar.xz) = 2863048 Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 472129) +++ head/devel/poxml/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/poxml-18.04.1.tar.xz) = 01be86f3da34092f22317f13fc47b43fce995a8b603d5fb64d4600228b6f41c1 -SIZE (KDE/applications/18.04.1/poxml-18.04.1.tar.xz) = 43172 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/poxml-18.04.2.tar.xz) = 2b2ac0e88eed1cc3bb67b1be78d20264e5e2edb0ddb004a9d00c635ff36cd096 +SIZE (KDE/applications/18.04.2/poxml-18.04.2.tar.xz) = 43268 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 472129) +++ head/devel/umbrello/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/umbrello-18.04.1.tar.xz) = 1e6251c232dfea2fee825899a7eeed54efb59938b153a0f0d8b79e6a8bbf88ef -SIZE (KDE/applications/18.04.1/umbrello-18.04.1.tar.xz) = 3019540 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/umbrello-18.04.2.tar.xz) = adace35eb1e8e1e4f8521fb57661d0d61888e3065322bf40e81b960077b3243e +SIZE (KDE/applications/18.04.2/umbrello-18.04.2.tar.xz) = 3019532 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 472129) +++ head/editors/kate/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/kate-18.04.1.tar.xz) = 48f17a1fae34da0076c93e784e7dab5297f5a82babe58d5463bdc672b59c6cf5 -SIZE (KDE/applications/18.04.1/kate-18.04.1.tar.xz) = 5639500 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kate-18.04.2.tar.xz) = 1678accdb134b02312c03556b07be6184e69db98d7669a4ccef5d4bf3f27c880 +SIZE (KDE/applications/18.04.2/kate-18.04.2.tar.xz) = 5641048 Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 472129) +++ head/games/blinken/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/blinken-18.04.1.tar.xz) = 1270fa0efed45cf3530ca60b4a3fd8488b14c0dd876421fd8c4ef2effa8dea69 -SIZE (KDE/applications/18.04.1/blinken-18.04.1.tar.xz) = 2507668 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/blinken-18.04.2.tar.xz) = 9ea5055b415990ac2c6f55a20260fcb601f6e66816c064b3249ff6ea4154033b +SIZE (KDE/applications/18.04.2/blinken-18.04.2.tar.xz) = 2507808 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 472129) +++ head/games/bomber/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/bomber-18.04.1.tar.xz) = 5459da2aade872224d0edf18ce673cb44228391bba4975db2606092c05593b8e -SIZE (KDE/applications/18.04.1/bomber-18.04.1.tar.xz) = 754460 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/bomber-18.04.2.tar.xz) = dfffd156039a5791e0e7ec6ff4010c466394fd97bbd315ba12668b9941c68ba4 +SIZE (KDE/applications/18.04.2/bomber-18.04.2.tar.xz) = 754712 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 472129) +++ head/games/bovo/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/bovo-18.04.1.tar.xz) = 76e10463e5c1aa9878adcac63fb1574f5793b519b4e79928a68fb8ca7631a4d2 -SIZE (KDE/applications/18.04.1/bovo-18.04.1.tar.xz) = 186436 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/bovo-18.04.2.tar.xz) = b7a066cdb1690ab9641bd8fac0bcfc1dc80bc23ec9881c335b454eb0d843bb38 +SIZE (KDE/applications/18.04.2/bovo-18.04.2.tar.xz) = 186572 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 472129) +++ head/games/granatier/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/granatier-18.04.1.tar.xz) = ffd3d362289872b289ea79c01c1a0b69a27208d376b22bcfb41890bf0417aa60 -SIZE (KDE/applications/18.04.1/granatier-18.04.1.tar.xz) = 1961324 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/granatier-18.04.2.tar.xz) = 1e19c9aaffec63540d7164593ce65c96a88aa223bcd24fff0baf6847b50170ce +SIZE (KDE/applications/18.04.2/granatier-18.04.2.tar.xz) = 1961320 Index: head/games/kajongg/distinfo =================================================================== --- head/games/kajongg/distinfo (revision 472129) +++ head/games/kajongg/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kajongg-18.04.1.tar.xz) = 01116501899ddc8e24c69c6765f9e90413b921b81312e4719eea7eea0591f3ee -SIZE (KDE/applications/18.04.1/kajongg-18.04.1.tar.xz) = 4241840 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kajongg-18.04.2.tar.xz) = 7692642a84db0f6bb30172ee126ad9e573954410531467c2fa124a8df07965ff +SIZE (KDE/applications/18.04.2/kajongg-18.04.2.tar.xz) = 4241864 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 472129) +++ head/games/kanagram/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kanagram-18.04.1.tar.xz) = eb8dacd1940a0d48f9d52ab01f6e78725df35fdc6ed9f445e23b610942ae9f3c -SIZE (KDE/applications/18.04.1/kanagram-18.04.1.tar.xz) = 7523608 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kanagram-18.04.2.tar.xz) = 7d687bda6187a27af4d651128fad20bf14d2e73b7ccc4368840ba603ba8d8926 +SIZE (KDE/applications/18.04.2/kanagram-18.04.2.tar.xz) = 7522612 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 472129) +++ head/games/kapman/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kapman-18.04.1.tar.xz) = 85dfa374d3605bc7bf514800ccb07d397cc4662a3d44bd4779d4a60cca9b4293 -SIZE (KDE/applications/18.04.1/kapman-18.04.1.tar.xz) = 2525664 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kapman-18.04.2.tar.xz) = db248c7a1aa3721faaf057ca3c7d447126409fc0be1fcb3525924b2f4dfb462e +SIZE (KDE/applications/18.04.2/kapman-18.04.2.tar.xz) = 2525836 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 472129) +++ head/games/katomic/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/katomic-18.04.1.tar.xz) = 86bb1850d1b4d7f9d9a219b9ab3012fcba539ac2f928f9fa2f6f76fb569c733c -SIZE (KDE/applications/18.04.1/katomic-18.04.1.tar.xz) = 1237068 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/katomic-18.04.2.tar.xz) = 600668e3e4262941d3e807f8b14f52f512f9f25535f0a266eac9eb8ed206006c +SIZE (KDE/applications/18.04.2/katomic-18.04.2.tar.xz) = 1237164 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 472129) +++ head/games/kblackbox/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kblackbox-18.04.1.tar.xz) = f0e87a60049929b21327b4b0944fea2767fd147574831fd87208f92678fc6643 -SIZE (KDE/applications/18.04.1/kblackbox-18.04.1.tar.xz) = 404568 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kblackbox-18.04.2.tar.xz) = f072c833afc13800a3fdbbadb4e7a03ffe7e388a08d1a02544f50eddf48194f6 +SIZE (KDE/applications/18.04.2/kblackbox-18.04.2.tar.xz) = 404608 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 472129) +++ head/games/kblocks/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kblocks-18.04.1.tar.xz) = 5cd33012278ebadf0ae1bc71bb5fe0917b73f1ac7806a1d2c3038ef3824b6388 -SIZE (KDE/applications/18.04.1/kblocks-18.04.1.tar.xz) = 1750872 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kblocks-18.04.2.tar.xz) = 547d7cf699d44b0deba6f4ae8148d8a085b0ea2bbefa12d1c7559e4a1d45d23e +SIZE (KDE/applications/18.04.2/kblocks-18.04.2.tar.xz) = 1750420 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 472129) +++ head/games/kbounce/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kbounce-18.04.1.tar.xz) = 8cdb76435ebc8373b0e66a041b0efa26c332af00d0fb8ed7beab6ff664fd4b62 -SIZE (KDE/applications/18.04.1/kbounce-18.04.1.tar.xz) = 3485172 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kbounce-18.04.2.tar.xz) = f4c153f50abd1afdef55f5ff952e794706d70d19a721887d3f29196fc3bb7181 +SIZE (KDE/applications/18.04.2/kbounce-18.04.2.tar.xz) = 3486176 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 472129) +++ head/games/kbreakout/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kbreakout-18.04.1.tar.xz) = 2e2e04435dcd9eafde737d18ddfbea8e6c970bf6d1feacae882edcc62987297b -SIZE (KDE/applications/18.04.1/kbreakout-18.04.1.tar.xz) = 2023968 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kbreakout-18.04.2.tar.xz) = 6e6b63d00fa88be2fd0006baf664fd5f84cc957b6038c10864bf0f5dcd688078 +SIZE (KDE/applications/18.04.2/kbreakout-18.04.2.tar.xz) = 2023828 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 472129) +++ head/games/kdiamond/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kdiamond-18.04.1.tar.xz) = 81315ffadbab50410fe390a1d1e1e0a2e3775d60ba155bbdd59f368538d9e08b -SIZE (KDE/applications/18.04.1/kdiamond-18.04.1.tar.xz) = 4607692 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kdiamond-18.04.2.tar.xz) = 51aa70485ea0d0ad7cff88f5d92b7f6cfcfd3f71a18a8723a7ae59c09a5c1343 +SIZE (KDE/applications/18.04.2/kdiamond-18.04.2.tar.xz) = 4607796 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 472129) +++ head/games/kfourinline/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kfourinline-18.04.1.tar.xz) = e68bcdb0e25d1dc4b16f04bb8efc79f2ebcc8d988f7c5b37a3d1da141fd2a83e -SIZE (KDE/applications/18.04.1/kfourinline-18.04.1.tar.xz) = 573848 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kfourinline-18.04.2.tar.xz) = 63e3852df4bcda0aee701ce6592c61623cc2536e6151750f93cf2fc9d28dba09 +SIZE (KDE/applications/18.04.2/kfourinline-18.04.2.tar.xz) = 573656 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 472129) +++ head/games/kgoldrunner/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kgoldrunner-18.04.1.tar.xz) = 815151d7b55bc0cecde77cdcbb182fb5800f24cdbabc677e64f9860ceebd3b70 -SIZE (KDE/applications/18.04.1/kgoldrunner-18.04.1.tar.xz) = 4405508 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kgoldrunner-18.04.2.tar.xz) = a47ec6249943acdf7e28ce7e6fb20c16abe8136b694cd321700369f76d7f56e5 +SIZE (KDE/applications/18.04.2/kgoldrunner-18.04.2.tar.xz) = 4405424 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 472129) +++ head/games/khangman/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/khangman-18.04.1.tar.xz) = 84c3f3a0fd87884d62e4d5db60d846de627fdd78133664e7f30dfc37ee2b99ed -SIZE (KDE/applications/18.04.1/khangman-18.04.1.tar.xz) = 6464020 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/khangman-18.04.2.tar.xz) = 3c87f5af5df0d831ac0655fcbb02b0b91276aa2506655af9c06ee11784a9d1ef +SIZE (KDE/applications/18.04.2/khangman-18.04.2.tar.xz) = 6463248 Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 472129) +++ head/games/kigo/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kigo-18.04.1.tar.xz) = 19467079ca241f4abc424220be99a0455ff8e4208de3fa80333fceb2656f4bd0 -SIZE (KDE/applications/18.04.1/kigo-18.04.1.tar.xz) = 5224124 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kigo-18.04.2.tar.xz) = a1c8a480c2318ffd4c40e2a7134d87fe6a786114f606839a065cc60e5dea79ba +SIZE (KDE/applications/18.04.2/kigo-18.04.2.tar.xz) = 5224476 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 472129) +++ head/games/killbots/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/killbots-18.04.1.tar.xz) = 9cdec1b544d985cb392780ee1fe7f04a8ae6ce2fb2890c97fb01f01ca17a781b -SIZE (KDE/applications/18.04.1/killbots-18.04.1.tar.xz) = 1165244 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/killbots-18.04.2.tar.xz) = 1f77064e229f57bf20e6f777c74edac20199e2516ff708e8cba3b152850def5e +SIZE (KDE/applications/18.04.2/killbots-18.04.2.tar.xz) = 1165280 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 472129) +++ head/games/kiriki/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kiriki-18.04.1.tar.xz) = be4066758d56e4808141f628be5b4ccb151dcd8b13e38f4e5a8f9506f7424558 -SIZE (KDE/applications/18.04.1/kiriki-18.04.1.tar.xz) = 327084 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kiriki-18.04.2.tar.xz) = 1e867af14495efd3bbdf1608e0f82277a3de189378be6a69b0239e122752ea2a +SIZE (KDE/applications/18.04.2/kiriki-18.04.2.tar.xz) = 327204 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 472129) +++ head/games/kjumpingcube/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kjumpingcube-18.04.1.tar.xz) = 964a794d07b82bd1f3439387bf1fe75c6f7d29fdcc15b26c83cd5e02b955955c -SIZE (KDE/applications/18.04.1/kjumpingcube-18.04.1.tar.xz) = 293976 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kjumpingcube-18.04.2.tar.xz) = 8f130791dd4bf6f9959925f944723dba92de7c8270e501afbdc27954d7448352 +SIZE (KDE/applications/18.04.2/kjumpingcube-18.04.2.tar.xz) = 294072 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 472129) +++ head/games/klickety/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/klickety-18.04.1.tar.xz) = 952020d20c482692c65cf6a1b15b2806bf2fdcd060f88731faa1d587147966f2 -SIZE (KDE/applications/18.04.1/klickety-18.04.1.tar.xz) = 1411016 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/klickety-18.04.2.tar.xz) = 13809ed05d1ec594686291cbb557249ebc5d00bc358744246402d3a931972a71 +SIZE (KDE/applications/18.04.2/klickety-18.04.2.tar.xz) = 1411244 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 472129) +++ head/games/klines/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/klines-18.04.1.tar.xz) = ee4d05bc535cec38ae2ea7db89c9f9b68800880c679a84d289674878e353547f -SIZE (KDE/applications/18.04.1/klines-18.04.1.tar.xz) = 1670904 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/klines-18.04.2.tar.xz) = ef7ddd44015519a2f35bfdb9ad5b468b6e5e7f30bc9e4d90be018c91891eb6f1 +SIZE (KDE/applications/18.04.2/klines-18.04.2.tar.xz) = 1671072 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 472129) +++ head/games/kmahjongg/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kmahjongg-18.04.1.tar.xz) = d701d71452bbab132f7a499fe1d4087ca372065cedd1889b175f9b7751ae81fe -SIZE (KDE/applications/18.04.1/kmahjongg-18.04.1.tar.xz) = 4086480 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kmahjongg-18.04.2.tar.xz) = 0c1692ba9fa02e05d77fc9615b40b89c0ec010d6897293fcbfa76bbfe6c829a8 +SIZE (KDE/applications/18.04.2/kmahjongg-18.04.2.tar.xz) = 4086472 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 472129) +++ head/games/kmines/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kmines-18.04.1.tar.xz) = 873fc8eb93ac85e4adf2ed3d7186ff6226dc5f81cfc488387cb1a3200fbb0845 -SIZE (KDE/applications/18.04.1/kmines-18.04.1.tar.xz) = 882500 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kmines-18.04.2.tar.xz) = 6a9d0c0f64c3d5f6123f38daba169f1b47c8cc0817ea6f0d95d1cfbb6d79305c +SIZE (KDE/applications/18.04.2/kmines-18.04.2.tar.xz) = 882576 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 472129) +++ head/games/knavalbattle/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/knavalbattle-18.04.1.tar.xz) = bc075c479355a6c638d89805ce3f17b95fbc16c380c1c74588e714b22a3e23cf -SIZE (KDE/applications/18.04.1/knavalbattle-18.04.1.tar.xz) = 1221288 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/knavalbattle-18.04.2.tar.xz) = 15c3d94318f93f0a5da1b820d11352965f470f0381a0e134c963bd32d53304d1 +SIZE (KDE/applications/18.04.2/knavalbattle-18.04.2.tar.xz) = 1221364 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 472129) +++ head/games/knetwalk/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/knetwalk-18.04.1.tar.xz) = 5e3280e0df8b5b8e17caae9a1b8742077e9d6158f572dd7b9bca39bf56b3f70b -SIZE (KDE/applications/18.04.1/knetwalk-18.04.1.tar.xz) = 981420 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/knetwalk-18.04.2.tar.xz) = d14d6381ecf73d3006c892aa0962100182a917bcb53006bb9defeb64e7146c6f +SIZE (KDE/applications/18.04.2/knetwalk-18.04.2.tar.xz) = 981508 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 472129) +++ head/games/kolf/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kolf-18.04.1.tar.xz) = 338a94aa07b5f5021f56e035bd50e9097076b9efd2de9e91f7764edd50da50ad -SIZE (KDE/applications/18.04.1/kolf-18.04.1.tar.xz) = 924316 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kolf-18.04.2.tar.xz) = de443ec9a86807642e2495af3be9e9de237fd53147802462882d6261b42a7431 +SIZE (KDE/applications/18.04.2/kolf-18.04.2.tar.xz) = 925316 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 472129) +++ head/games/kollision/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kollision-18.04.1.tar.xz) = cab2ff589823ba24ed65776dc7e012c4c4a925183afa15cc69e7dc6e6372245f -SIZE (KDE/applications/18.04.1/kollision-18.04.1.tar.xz) = 272544 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kollision-18.04.2.tar.xz) = 7a8b4212f1d3f7a326f04538f7990e030a68f4abd5010cec0056a4838ab9c500 +SIZE (KDE/applications/18.04.2/kollision-18.04.2.tar.xz) = 272596 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 472129) +++ head/games/konquest/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/konquest-18.04.1.tar.xz) = 64bf1a8b9ece36320b45ce9104f240b60894e8ad253a74c2655ae9562f3dc340 -SIZE (KDE/applications/18.04.1/konquest-18.04.1.tar.xz) = 658768 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/konquest-18.04.2.tar.xz) = 2496046a72ed140a015c4d787e58317c1be19bc781390530f0dc5a1df654ed1e +SIZE (KDE/applications/18.04.2/konquest-18.04.2.tar.xz) = 658928 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 472129) +++ head/games/kpat/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kpat-18.04.1.tar.xz) = 1b9cbbd36c87fd9b284b927d18b7fe2b36213623784b18529a6697841a3b9eba -SIZE (KDE/applications/18.04.1/kpat-18.04.1.tar.xz) = 3564944 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kpat-18.04.2.tar.xz) = 669210fab2c7281b87e9de309649c7345df522027d2bb8c00735151249c30f5b +SIZE (KDE/applications/18.04.2/kpat-18.04.2.tar.xz) = 3564884 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 472129) +++ head/games/kreversi/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kreversi-18.04.1.tar.xz) = 6454d1d04e3ce4a90a95167f5172fc24a6ce3fc3e4b184cbfa8f4452f461d23c -SIZE (KDE/applications/18.04.1/kreversi-18.04.1.tar.xz) = 913484 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/kreversi-18.04.2.tar.xz) = e2e9a5862554b75f85487e464a6b6ccc1f96d5a836312db132f65a2d4e666690 +SIZE (KDE/applications/18.04.2/kreversi-18.04.2.tar.xz) = 913760 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 472129) +++ head/games/kshisen/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kshisen-18.04.1.tar.xz) = c79dd3ca61fd751f0cf9c473b4b2736506343c7cd12334cabe607212e3c71825 -SIZE (KDE/applications/18.04.1/kshisen-18.04.1.tar.xz) = 710728 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/kshisen-18.04.2.tar.xz) = 83c69c32e76e8a37f9666e2f7ba7407009e3829fa755268a0888a14c3d6b5bdf +SIZE (KDE/applications/18.04.2/kshisen-18.04.2.tar.xz) = 710944 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 472129) +++ head/games/ksirk/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/ksirk-18.04.1.tar.xz) = 58031f65a1bd3bc4995f464e13a0033ac2a98e3453c76ee12ba3a866ee26b257 -SIZE (KDE/applications/18.04.1/ksirk-18.04.1.tar.xz) = 6985308 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/ksirk-18.04.2.tar.xz) = af879556df4e319b257b0d2ad21338fa31daa10b453a62f5d0ace6f462cc85fe +SIZE (KDE/applications/18.04.2/ksirk-18.04.2.tar.xz) = 6984936 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 472129) +++ head/games/ksnakeduel/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/ksnakeduel-18.04.1.tar.xz) = e3d02fa061ed4280398e26eaacb5a3e11998641e3095ccfaff9e8d9e68b4e91e -SIZE (KDE/applications/18.04.1/ksnakeduel-18.04.1.tar.xz) = 605440 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/ksnakeduel-18.04.2.tar.xz) = ea6c02989fbf09cfb89570d88df45a5e63f6072e50ce8e9432b3e1d0617c3285 +SIZE (KDE/applications/18.04.2/ksnakeduel-18.04.2.tar.xz) = 605648 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 472129) +++ head/games/kspaceduel/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/kspaceduel-18.04.1.tar.xz) = f6781a143f6439d7aacdf48036323a26a4d7635bbc3c0b888c01af420f095929 -SIZE (KDE/applications/18.04.1/kspaceduel-18.04.1.tar.xz) = 611112 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kspaceduel-18.04.2.tar.xz) = 3ca9622c35d5d0484eaefed8b63f6fe04a6f826b05cc2d7e74fad015e481e121 +SIZE (KDE/applications/18.04.2/kspaceduel-18.04.2.tar.xz) = 611224 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 472129) +++ head/games/ksquares/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/ksquares-18.04.1.tar.xz) = 6cb06ee83f8260bcf7af4721595569049fae6c958d005ff0e6323b0962eb29ef -SIZE (KDE/applications/18.04.1/ksquares-18.04.1.tar.xz) = 216720 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/ksquares-18.04.2.tar.xz) = 02f384909abf8ff964a86873b043a6ce52476457eef5e34773faeb45d81388f5 +SIZE (KDE/applications/18.04.2/ksquares-18.04.2.tar.xz) = 216836 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 472129) +++ head/games/ksudoku/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/ksudoku-18.04.1.tar.xz) = d6ec4435e27e5d7369ed97b294158cdbfaea2d1a18830361457dd4c387d64b41 -SIZE (KDE/applications/18.04.1/ksudoku-18.04.1.tar.xz) = 1638940 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/ksudoku-18.04.2.tar.xz) = d40acfb93c2c148f066c238316ba35b44c753ad59090c64f53ecac35da710b3a +SIZE (KDE/applications/18.04.2/ksudoku-18.04.2.tar.xz) = 1639064 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 472129) +++ head/games/ktuberling/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/ktuberling-18.04.1.tar.xz) = 4c2b89c644184f2322fbbfa2f74327616f170548052b7385776d189a0955fbe6 -SIZE (KDE/applications/18.04.1/ktuberling-18.04.1.tar.xz) = 32796220 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/ktuberling-18.04.2.tar.xz) = 58d4aedf2bcd68398a3bca3a25b71d50ecef07f9196ed52a5d2d5c4da57d02b1 +SIZE (KDE/applications/18.04.2/ktuberling-18.04.2.tar.xz) = 32794900 Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 472129) +++ head/games/kubrick/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/kubrick-18.04.1.tar.xz) = b92f3a8f2d51db0b8e2b8b3060cf6e89995121d767aa11cb7f2651fb107316bf -SIZE (KDE/applications/18.04.1/kubrick-18.04.1.tar.xz) = 308268 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/kubrick-18.04.2.tar.xz) = b84afa70dfd8a80c8a82b5f3fc8aab3ba51b312e4c6a31b82e230aa653f5fefc +SIZE (KDE/applications/18.04.2/kubrick-18.04.2.tar.xz) = 308348 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 472129) +++ head/games/libkdegames/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/libkdegames-18.04.1.tar.xz) = d55ccbb5db49a85374a9c969484cc1fa6b285aacee51c21e0b7f215bafb74e0d -SIZE (KDE/applications/18.04.1/libkdegames-18.04.1.tar.xz) = 5957092 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/libkdegames-18.04.2.tar.xz) = 2270d3bc090aaac4adb3b8d652cbe674f3c437b44b836a95797cbe854e910e8c +SIZE (KDE/applications/18.04.2/libkdegames-18.04.2.tar.xz) = 5956504 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 472129) +++ head/games/libkmahjongg/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/libkmahjongg-18.04.1.tar.xz) = a02eeb3ebe5964078a340d072cffa011c69082d2a6c7c24d1f13a2e67b885827 -SIZE (KDE/applications/18.04.1/libkmahjongg-18.04.1.tar.xz) = 1683632 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/libkmahjongg-18.04.2.tar.xz) = c4b10ac354829fa8ae236fd099d241c0d3e651923f21260eec059e8198ce7f3d +SIZE (KDE/applications/18.04.2/libkmahjongg-18.04.2.tar.xz) = 1684528 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 472129) +++ head/games/lskat/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756101 -SHA256 (KDE/applications/18.04.1/lskat-18.04.1.tar.xz) = 9296ec7cf5b8fb7945570b44c273f391bb872c08a2ecc6c459248e34574c5e47 -SIZE (KDE/applications/18.04.1/lskat-18.04.1.tar.xz) = 1217908 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/lskat-18.04.2.tar.xz) = 815725ceee9195b0d85b5138efd4d0cd84311dcdb05e562197af22ba8c9bdc63 +SIZE (KDE/applications/18.04.2/lskat-18.04.2.tar.xz) = 1217768 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 472129) +++ head/games/palapeli/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/palapeli-18.04.1.tar.xz) = acc4cc87a0669c0baf3e360bb337d75d7675d84103d9d1183d1c2da66eece106 -SIZE (KDE/applications/18.04.1/palapeli-18.04.1.tar.xz) = 2061720 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/palapeli-18.04.2.tar.xz) = 4e5cd6d32ec9c4f03310411015d3ecf203403c71e2057d8716d4fe6bb60e7639 +SIZE (KDE/applications/18.04.2/palapeli-18.04.2.tar.xz) = 2061884 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 472129) +++ head/games/picmi/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756100 -SHA256 (KDE/applications/18.04.1/picmi-18.04.1.tar.xz) = b15e4840831fe06188985767171299d7d140a9567bdcb5f6056f82362da9bd24 -SIZE (KDE/applications/18.04.1/picmi-18.04.1.tar.xz) = 1146724 +TIMESTAMP = 1528216944 +SHA256 (KDE/applications/18.04.2/picmi-18.04.2.tar.xz) = 6c0e6e1e9b7b5859db4a7360b1d4febc000d1dcc1472446716d4cfb11b504477 +SIZE (KDE/applications/18.04.2/picmi-18.04.2.tar.xz) = 1146788 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 472129) +++ head/graphics/gwenview/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/gwenview-18.04.1.tar.xz) = 71216a4622fe4b706ebd27a54552ac475aa4680ffed18320f9d65be134e6dd73 -SIZE (KDE/applications/18.04.1/gwenview-18.04.1.tar.xz) = 6054732 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/gwenview-18.04.2.tar.xz) = 8443982c880e2dff038383195e9fe2bb33dbc4ea4a9de17a96c0f738ba402cce +SIZE (KDE/applications/18.04.2/gwenview-18.04.2.tar.xz) = 6055820 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 472129) +++ head/graphics/kamera/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kamera-18.04.1.tar.xz) = 0f2af766ce1b03d5ec871ea5a79f05f2d1eacdf45997baf15fd33aa3778347e5 -SIZE (KDE/applications/18.04.1/kamera-18.04.1.tar.xz) = 97416 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kamera-18.04.2.tar.xz) = a84e0c53d374f3d8b62c9f1e2b0c20eb5460a4a2c59388d0fc9d0ee292b38709 +SIZE (KDE/applications/18.04.2/kamera-18.04.2.tar.xz) = 97464 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 472129) +++ head/graphics/kcolorchooser/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kcolorchooser-18.04.1.tar.xz) = 75e949a12e25759b3f4769e06e7b665a290762741477bc5ee55c827f874afef3 -SIZE (KDE/applications/18.04.1/kcolorchooser-18.04.1.tar.xz) = 16892 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kcolorchooser-18.04.2.tar.xz) = 020abccf25b18af3e11f67d787be4d3b6df0107ab8f15c946cc00a8804fc1154 +SIZE (KDE/applications/18.04.2/kcolorchooser-18.04.2.tar.xz) = 16952 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 472129) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kdegraphics-mobipocket-18.04.1.tar.xz) = a1ec320fcfb9fe4e66c7e0fe789ad83cbd82413d91f20380863ee6bbae952bf9 -SIZE (KDE/applications/18.04.1/kdegraphics-mobipocket-18.04.1.tar.xz) = 13476 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kdegraphics-mobipocket-18.04.2.tar.xz) = 155f7db31cc0c044686cae57b565643fd21f20fb07674337da4bf5ae28efb8de +SIZE (KDE/applications/18.04.2/kdegraphics-mobipocket-18.04.2.tar.xz) = 13476 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 472129) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/svgpart-18.04.1.tar.xz) = a97a8a85f126c4f1b6999269818dac1a22fe7774709b8f136968befd5c4f0e93 -SIZE (KDE/applications/18.04.1/svgpart-18.04.1.tar.xz) = 20948 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/svgpart-18.04.2.tar.xz) = 5e86f3b37d72102c0a3fe8a7d8c10644c92ae2d9b679d7db75e2452f693edede +SIZE (KDE/applications/18.04.2/svgpart-18.04.2.tar.xz) = 21036 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 472129) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kdegraphics-thumbnailers-18.04.1.tar.xz) = 0a86cb68995bf68eed8fb42fdd7105f167374afbfcc5a886db5d34df3944e918 -SIZE (KDE/applications/18.04.1/kdegraphics-thumbnailers-18.04.1.tar.xz) = 41300 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kdegraphics-thumbnailers-18.04.2.tar.xz) = 74f9c3fdae91d1e79e31322b31cae36bcd72e71c109589ee3bb56180da20aad8 +SIZE (KDE/applications/18.04.2/kdegraphics-thumbnailers-18.04.2.tar.xz) = 41288 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 472129) +++ head/graphics/kimagemapeditor/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/kimagemapeditor-18.04.1.tar.xz) = c1422a30c264c5505637ac534095fa0bf8622d4ad37684d1317d30ad7efa8484 -SIZE (KDE/applications/18.04.1/kimagemapeditor-18.04.1.tar.xz) = 1054836 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kimagemapeditor-18.04.2.tar.xz) = 4c9e806cb1e01a97265c06409b7f3a7641c4eb4237e8c6c15ba3703e475580da +SIZE (KDE/applications/18.04.2/kimagemapeditor-18.04.2.tar.xz) = 1056192 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 472129) +++ head/graphics/kolourpaint/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/kolourpaint-18.04.1.tar.xz) = fe73b63961b011552a8eb179afe907662c4c67e800ba4b0a914871b8d3acdbd1 -SIZE (KDE/applications/18.04.1/kolourpaint-18.04.1.tar.xz) = 5549048 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/kolourpaint-18.04.2.tar.xz) = 7984f37be3248d19f80768eb9ac6a6284a7e64b6eb76661d4f43c2168387390f +SIZE (KDE/applications/18.04.2/kolourpaint-18.04.2.tar.xz) = 5549144 Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 472129) +++ head/graphics/libkdcraw/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/libkdcraw-18.04.1.tar.xz) = d15442ee45bcf80e9399126eeb02d277f06e50c0a6fd101330a8969e054a3804 -SIZE (KDE/applications/18.04.1/libkdcraw-18.04.1.tar.xz) = 42088 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/libkdcraw-18.04.2.tar.xz) = eb846bb85535f4168b497b1495bc39388ecd0282b5dcc1e49ae2a464dc59cd84 +SIZE (KDE/applications/18.04.2/libkdcraw-18.04.2.tar.xz) = 42112 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 472129) +++ head/graphics/libkexiv2/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/libkexiv2-18.04.1.tar.xz) = 898ce53298569298f206dc9bd6eeeb4336574d2c7fbc0b005640b61de1abd060 -SIZE (KDE/applications/18.04.1/libkexiv2-18.04.1.tar.xz) = 64524 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/libkexiv2-18.04.2.tar.xz) = f37eec77a432ed7b03c87e78dc4af5f6de7d0868d2a31de194b6e38a174317b3 +SIZE (KDE/applications/18.04.2/libkexiv2-18.04.2.tar.xz) = 64532 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 472129) +++ head/graphics/libkipi/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756099 -SHA256 (KDE/applications/18.04.1/libkipi-18.04.1.tar.xz) = f3a29c4f732cf92dca7e6c65694e8b5a86b232b9cef76dbf55a9880c6f413d27 -SIZE (KDE/applications/18.04.1/libkipi-18.04.1.tar.xz) = 103640 +TIMESTAMP = 1528216943 +SHA256 (KDE/applications/18.04.2/libkipi-18.04.2.tar.xz) = 16700d690bb827660760935750a6fdb4e9a4755f28b3405a3cbb109ce9d2adad +SIZE (KDE/applications/18.04.2/libkipi-18.04.2.tar.xz) = 103632 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 472129) +++ head/graphics/libksane/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/libksane-18.04.1.tar.xz) = ec70af08066beddb88f78bc1e7e66e833f00d4e7ebfbeafb81eab197e2742ecc -SIZE (KDE/applications/18.04.1/libksane-18.04.1.tar.xz) = 137396 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/libksane-18.04.2.tar.xz) = be057f47750d5ae8b9b5bacb332af1b9c603e1636f96b8e8117e49d9be0a8c3a +SIZE (KDE/applications/18.04.2/libksane-18.04.2.tar.xz) = 137488 Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 472129) +++ head/graphics/okular/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/okular-18.04.1.tar.xz) = 0fa82f9a31de184966303395148dd03f627c64be2d5a2eb070bf13c5a95c0e3a -SIZE (KDE/applications/18.04.1/okular-18.04.1.tar.xz) = 5784656 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/okular-18.04.2.tar.xz) = bf9e4e9ce6cc6f7fae3dfe021ea7954403c7bab77a33434974eb3efe999999c9 +SIZE (KDE/applications/18.04.2/okular-18.04.2.tar.xz) = 5786132 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 472129) +++ head/graphics/spectacle/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756098 -SHA256 (KDE/applications/18.04.1/spectacle-18.04.1.tar.xz) = ec65c06ad86dd5363f96211375261c626066684a1fea5b1c909a54fed2a11b4d -SIZE (KDE/applications/18.04.1/spectacle-18.04.1.tar.xz) = 1070616 +TIMESTAMP = 1528216942 +SHA256 (KDE/applications/18.04.2/spectacle-18.04.2.tar.xz) = 3660713df10d901e9c1f27ac5de402751b32203e190dc812a38d50ae27bedfb7 +SIZE (KDE/applications/18.04.2/spectacle-18.04.2.tar.xz) = 1070964 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 472129) +++ head/japanese/kiten/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756104 -SHA256 (KDE/applications/18.04.1/kiten-18.04.1.tar.xz) = 4c2d48fb598b1d0c705d266bb1a219ccc33171381d81cbe0eecffca8b52adfb8 -SIZE (KDE/applications/18.04.1/kiten-18.04.1.tar.xz) = 11555176 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/kiten-18.04.2.tar.xz) = 8985170511940dd07f848fa0a0ace6fbdc0bb7586676ca61517f5b0ec072462e +SIZE (KDE/applications/18.04.2/kiten-18.04.2.tar.xz) = 11555704 Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 472129) +++ head/lang/kross-interpreters/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756104 -SHA256 (KDE/applications/18.04.1/kross-interpreters-18.04.1.tar.xz) = 6a2325359a8c3ab34cd07591dfb7e311903b037433aa7e345655091cdb71cbbf -SIZE (KDE/applications/18.04.1/kross-interpreters-18.04.1.tar.xz) = 144844 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/kross-interpreters-18.04.2.tar.xz) = b808319d6183d9e1664a538512c232c46e35b106037f9d7f7039716c2c0fd9d8 +SIZE (KDE/applications/18.04.2/kross-interpreters-18.04.2.tar.xz) = 144868 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 472129) +++ head/lang/kturtle/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756104 -SHA256 (KDE/applications/18.04.1/kturtle-18.04.1.tar.xz) = 53868faf115839683d026fed351214a1b12c3d097010f61008c3b04fad2156e8 -SIZE (KDE/applications/18.04.1/kturtle-18.04.1.tar.xz) = 1608868 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/kturtle-18.04.2.tar.xz) = a876e989f6bf2fec7a3478fa80c8c2072e5d6161dfb9208a6e47f208080ede25 +SIZE (KDE/applications/18.04.2/kturtle-18.04.2.tar.xz) = 1608920 Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 472129) +++ head/math/analitza/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/analitza-18.04.1.tar.xz) = d836cbc3f9d95414c2b7c629f4c6ff14d42cc3e9ac8108ac2d9a0dfbcdffc327 -SIZE (KDE/applications/18.04.1/analitza-18.04.1.tar.xz) = 331612 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/analitza-18.04.2.tar.xz) = a35910c80e5b3447c77cb716e614fb02ca5d61d2c9623ae89dd6a5d895783fd5 +SIZE (KDE/applications/18.04.2/analitza-18.04.2.tar.xz) = 331656 Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 472129) +++ head/math/cantor/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/cantor-18.04.1.tar.xz) = 08b8f33fbc963a89f7724b617d4678570863df2156f585cd9f487f5fca718dc1 -SIZE (KDE/applications/18.04.1/cantor-18.04.1.tar.xz) = 1070188 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/cantor-18.04.2.tar.xz) = aab96ae512c3ddfaaf288ca0531b685c689a40a31222326441501b9a18bc320d +SIZE (KDE/applications/18.04.2/cantor-18.04.2.tar.xz) = 1071952 Index: head/math/cantor/pkg-plist =================================================================== --- head/math/cantor/pkg-plist (revision 472129) +++ head/math/cantor/pkg-plist (revision 472130) @@ -1,157 +1,158 @@ bin/cantor bin/cantor_python3server +bin/cantor_scripteditor %%R%%bin/cantor_rserver etc/xdg/cantor.knsrc etc/xdg/cantor_kalgebra.knsrc %%LUAJIT%%etc/xdg/cantor_lua.knsrc etc/xdg/cantor_maxima.knsrc etc/xdg/cantor_octave.knsrc etc/xdg/cantor_python3.knsrc etc/xdg/cantor_qalculate.knsrc %%R%%etc/xdg/cantor_r.knsrc etc/xdg/cantor_sage.knsrc etc/xdg/cantor_scilab.knsrc include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/helpresult.h include/cantor/imageresult.h include/cantor/latexresult.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/libcantor_config.so lib/libcantor_pythonbackend.so lib/libcantorlibs.so lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_nullbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_python3backend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/libcantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/cantor_advancedplot_assistant.rc %%DATADIR%%/cantor_create_matrix_assistant.rc %%DATADIR%%/cantor_differentiate_assistant.rc %%DATADIR%%/cantor_eigenvalues_assistant.rc %%DATADIR%%/cantor_eigenvectors_assistant.rc %%DATADIR%%/cantor_import_package_assistant.rc %%DATADIR%%/cantor_integrate_assistant.rc %%DATADIR%%/cantor_invert_matrix_assistant.rc %%DATADIR%%/cantor_plot2d_assistant.rc %%DATADIR%%/cantor_plot3d_assistant.rc %%DATADIR%%/cantor_qalculateplotassistant.rc %%DATADIR%%/cantor_runscript_assistant.rc %%DATADIR%%/cantor_solve_assistant.rc %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg share/config.kcfg/kalgebrabackend.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg share/config.kcfg/python3backend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/locale/ast/LC_MESSAGES/cantor.mo share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 472129) +++ head/math/kalgebra/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kalgebra-18.04.1.tar.xz) = ceef5d46f33bb2ca93432aa6f8fe297a0575e721889452b3efd9dac7c872e13d -SIZE (KDE/applications/18.04.1/kalgebra-18.04.1.tar.xz) = 708588 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kalgebra-18.04.2.tar.xz) = 1c4abdcc0229a80bb2da83b063f4e76983597ac7f791b7afb462388538c3c3ee +SIZE (KDE/applications/18.04.2/kalgebra-18.04.2.tar.xz) = 708844 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 472129) +++ head/math/kbruch/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kbruch-18.04.1.tar.xz) = d386403c9b5ab18650e35ab033b32de1d01c952653482d449f6d7c28853b8b23 -SIZE (KDE/applications/18.04.1/kbruch-18.04.1.tar.xz) = 5604428 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kbruch-18.04.2.tar.xz) = 565408c1bc2f6c825c03c85fc15e2fe99c94044584f9e090560677ab1bcf26f7 +SIZE (KDE/applications/18.04.2/kbruch-18.04.2.tar.xz) = 5604760 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 472129) +++ head/math/kcalc/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/kcalc-18.04.1.tar.xz) = be5fea8d2838fdd86568ee3d9fe79f7d95bfb877f1e53f34d515b33078e24292 -SIZE (KDE/applications/18.04.1/kcalc-18.04.1.tar.xz) = 362036 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/kcalc-18.04.2.tar.xz) = db0d350bd7e0318d8f015b9a0bc840e1b75713a8c22a738c515afb2d538c3ea7 +SIZE (KDE/applications/18.04.2/kcalc-18.04.2.tar.xz) = 362280 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 472129) +++ head/math/kig/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kig-18.04.1.tar.xz) = fcdb22cc25a1ec0144e9446f43f693ba705564c6c789cf79f79cf8e3ebcbc2e7 -SIZE (KDE/applications/18.04.1/kig-18.04.1.tar.xz) = 3592016 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kig-18.04.2.tar.xz) = fc0111dc2b57cb347375031a0ef6c0dea8525bddda6369f5e6fd4dddd59a1245 +SIZE (KDE/applications/18.04.2/kig-18.04.2.tar.xz) = 3592260 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 472129) +++ head/math/kmplot/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/kmplot-18.04.1.tar.xz) = 30a0004496fee280294481f3efd6a34a53936c217c2128aae6da305908b33d07 -SIZE (KDE/applications/18.04.1/kmplot-18.04.1.tar.xz) = 3028864 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/kmplot-18.04.2.tar.xz) = 90bf19d87540edeace9fd6f3b78c96485b95048941d94440ff6468d338bb584c +SIZE (KDE/applications/18.04.2/kmplot-18.04.2.tar.xz) = 3029056 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 472129) +++ head/math/rocs/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756094 -SHA256 (KDE/applications/18.04.1/rocs-18.04.1.tar.xz) = 1fd9b5c5a405ebe922b9ca171e6d3d31eb28a99753206309cca2a73be50c55af -SIZE (KDE/applications/18.04.1/rocs-18.04.1.tar.xz) = 1535884 +TIMESTAMP = 1528216938 +SHA256 (KDE/applications/18.04.2/rocs-18.04.2.tar.xz) = b744554b22da6e2f02f087fd22c590505825f7931688d05a2e4655d55d8f19b0 +SIZE (KDE/applications/18.04.2/rocs-18.04.2.tar.xz) = 1536088 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 472129) +++ head/misc/artikulate/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756092 -SHA256 (KDE/applications/18.04.1/artikulate-18.04.1.tar.xz) = fb768b5b05e8fd47e754f5a81292eb8dd713d57ce9efebcbc567452ce359372f -SIZE (KDE/applications/18.04.1/artikulate-18.04.1.tar.xz) = 3748636 +TIMESTAMP = 1528216936 +SHA256 (KDE/applications/18.04.2/artikulate-18.04.2.tar.xz) = 8ab0241662a978ed6df4c924dc274391427d2be51961ac9b8bad14fe599581cc +SIZE (KDE/applications/18.04.2/artikulate-18.04.2.tar.xz) = 3747856 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 472129) +++ head/misc/kdeedu-data/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/kdeedu-data-18.04.1.tar.xz) = b234f2a0dd920f14b5ce0171405c678a64c0427a7c0de31e648239d1e4428eb1 -SIZE (KDE/applications/18.04.1/kdeedu-data-18.04.1.tar.xz) = 327888 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kdeedu-data-18.04.2.tar.xz) = 5a53a428035c061224c5454144f4de5ed88a1b4a34fdf610acaf61b939a3130f +SIZE (KDE/applications/18.04.2/kdeedu-data-18.04.2.tar.xz) = 328076 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 472129) +++ head/misc/kgeography/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756092 -SHA256 (KDE/applications/18.04.1/kgeography-18.04.1.tar.xz) = 5e0a5c031cdb3430f6a507d8c37174bb9c4ce01369c05b46ee8449245b7c8299 -SIZE (KDE/applications/18.04.1/kgeography-18.04.1.tar.xz) = 10932516 +TIMESTAMP = 1528216936 +SHA256 (KDE/applications/18.04.2/kgeography-18.04.2.tar.xz) = 6fa5699c673f48a01c5d2ccbbf0e1a40ae4688202128028e454ed71503d7a66a +SIZE (KDE/applications/18.04.2/kgeography-18.04.2.tar.xz) = 10932792 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 472129) +++ head/misc/klettres/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756092 -SHA256 (KDE/applications/18.04.1/klettres-18.04.1.tar.xz) = 8b46896ace48606db2bff6e0c0c575189fab222c8d12f2e67896886adc45f9ef -SIZE (KDE/applications/18.04.1/klettres-18.04.1.tar.xz) = 21713056 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/klettres-18.04.2.tar.xz) = 7baa0cc8646ab087136090317c5762330d7752df84ce83f0ba48fa071ded3472 +SIZE (KDE/applications/18.04.2/klettres-18.04.2.tar.xz) = 21713472 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 472129) +++ head/misc/ktouch/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/ktouch-18.04.1.tar.xz) = c10abc99bf569411648e7652c42d977e720af822f7e863a9f28842821be7f1a2 -SIZE (KDE/applications/18.04.1/ktouch-18.04.1.tar.xz) = 5110224 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/ktouch-18.04.2.tar.xz) = 5018c75a262e13ed4f0c6fcc7a346e93ef423c4af930b7c49c8241448fa82674 +SIZE (KDE/applications/18.04.2/ktouch-18.04.2.tar.xz) = 5110664 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 472129) +++ head/misc/kwordquiz/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756092 -SHA256 (KDE/applications/18.04.1/kwordquiz-18.04.1.tar.xz) = 1915c89c3c47a0ea61bb43e2c3b51686b8165aa7f03b6acfe4ee6545abb31efb -SIZE (KDE/applications/18.04.1/kwordquiz-18.04.1.tar.xz) = 4168780 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kwordquiz-18.04.2.tar.xz) = 2785dee6eeef52a05b24ce0a7f5152d30e6f4e0c554ac466f54b6c4213febe1d +SIZE (KDE/applications/18.04.2/kwordquiz-18.04.2.tar.xz) = 4168848 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 472129) +++ head/misc/libkeduvocdocument/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/libkeduvocdocument-18.04.1.tar.xz) = f95f7d1a149dd7364ce0c56973a6badf76b96b116fe6e2c15f694ce5242f2292 -SIZE (KDE/applications/18.04.1/libkeduvocdocument-18.04.1.tar.xz) = 210484 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/libkeduvocdocument-18.04.2.tar.xz) = f5c7901bdb6a0ad528f54844a6d7952952e9c06527d46c110840052793d46f9d +SIZE (KDE/applications/18.04.2/libkeduvocdocument-18.04.2.tar.xz) = 210508 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 472129) +++ head/misc/parley/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/parley-18.04.1.tar.xz) = e53368f410c7754979b7388e77467bd9508d7b6f93ded36c6e08ef85c65b07e2 -SIZE (KDE/applications/18.04.1/parley-18.04.1.tar.xz) = 8829876 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/parley-18.04.2.tar.xz) = 1b02f7a710d1a08a605978e0549ecf732ea8d17130465237760f208827596a31 +SIZE (KDE/applications/18.04.2/parley-18.04.2.tar.xz) = 8829752 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 472129) +++ head/multimedia/dragon/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/dragon-18.04.1.tar.xz) = 80ca965fdd17d49ef28f9aae6530e2eec5aa61887efb035e6d21f471b57e19de -SIZE (KDE/applications/18.04.1/dragon-18.04.1.tar.xz) = 1729096 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/dragon-18.04.2.tar.xz) = 150abe323dc6d2962e4fe3cc9edc8cf6d47ea0234a0d27a1687433bcd2348f7d +SIZE (KDE/applications/18.04.2/dragon-18.04.2.tar.xz) = 1729252 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 472129) +++ head/multimedia/kamoso/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/kamoso-18.04.1.tar.xz) = 4725043190557eae4ecbb676676054edc9d7c0d49d3289703f53f47f8841a0e5 -SIZE (KDE/applications/18.04.1/kamoso-18.04.1.tar.xz) = 185156 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kamoso-18.04.2.tar.xz) = 6639c28b993e7ad8b367969d970b5e3ea09e474e7de08637aa9ff81cd53398bf +SIZE (KDE/applications/18.04.2/kamoso-18.04.2.tar.xz) = 185260 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 472129) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/ffmpegthumbs-18.04.1.tar.xz) = d662902d84af794fb565f50f7c464f8b184e38096a0db60e23cceed779189a1a -SIZE (KDE/applications/18.04.1/ffmpegthumbs-18.04.1.tar.xz) = 21228 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/ffmpegthumbs-18.04.2.tar.xz) = 678e6a9a1701ea5be61057567f2eb18b5353883fe114d4e2f1e88cad26e08a06 +SIZE (KDE/applications/18.04.2/ffmpegthumbs-18.04.2.tar.xz) = 21220 Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 472129) +++ head/multimedia/kdenlive/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526728138 -SHA256 (KDE/applications/18.04.1/kdenlive-18.04.1.tar.xz) = 8376586b85690df13848958aea87e845421e742bbddb55c5203ce46197c73d15 -SIZE (KDE/applications/18.04.1/kdenlive-18.04.1.tar.xz) = 9391408 +TIMESTAMP = 1528216935 +SHA256 (KDE/applications/18.04.2/kdenlive-18.04.2.tar.xz) = 31bb2809c43537224eef0a7d71fd8f474eef05648adb7f9379012bc0b943be21 +SIZE (KDE/applications/18.04.2/kdenlive-18.04.2.tar.xz) = 9398952 Index: head/multimedia/kdenlive/pkg-plist =================================================================== --- head/multimedia/kdenlive/pkg-plist (revision 472129) +++ head/multimedia/kdenlive/pkg-plist (revision 472130) @@ -1,358 +1,359 @@ bin/kdenlive bin/kdenlive_render etc/xdg/kdenlive.categories etc/xdg/kdenlive_renderprofiles.knsrc etc/xdg/kdenlive_titles.knsrc etc/xdg/kdenlive_wipes.knsrc %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/banner.png %%DATADIR%%/blacklisted_effects.txt %%DATADIR%%/blacklisted_transitions.txt %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/selectivecolor.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/metadata.properties %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo +share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml -share/mime/packages/kdenlive.xml +share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 472129) +++ head/net/akonadi-calendar/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/akonadi-calendar-18.04.1.tar.xz) = 58bcdbd33c1f7dff1342a640fda79520cb6ed808c81bac0073aa20d68ef1d52a -SIZE (KDE/applications/18.04.1/akonadi-calendar-18.04.1.tar.xz) = 335936 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/akonadi-calendar-18.04.2.tar.xz) = 020e93f98a48881fc07bc6454c8ba015136d261280425b0c6f57255b9a9b6d69 +SIZE (KDE/applications/18.04.2/akonadi-calendar-18.04.2.tar.xz) = 335948 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 472129) +++ head/net/akonadi-contacts/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/akonadi-contacts-18.04.1.tar.xz) = b7b2ab94e05ce070f0d70106ae18f7b5a0d0acb3fc3244408cf0b6ac9b6538f8 -SIZE (KDE/applications/18.04.1/akonadi-contacts-18.04.1.tar.xz) = 392028 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/akonadi-contacts-18.04.2.tar.xz) = 79c1664f9cf87a9e8ac239e303ffb75783a515ea1afd4206fda1d70d3cb36913 +SIZE (KDE/applications/18.04.2/akonadi-contacts-18.04.2.tar.xz) = 392336 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 472129) +++ head/net/akonadi-mime/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/akonadi-mime-18.04.1.tar.xz) = bc3e0c793fa700749d825ec03bda2478513c4a23ba77f47cbbde0a88725eee7a -SIZE (KDE/applications/18.04.1/akonadi-mime-18.04.1.tar.xz) = 137320 +TIMESTAMP = 1528216930 +SHA256 (KDE/applications/18.04.2/akonadi-mime-18.04.2.tar.xz) = 1ecaecedb2d1d3d5f3cae8c16561852555fe66b59d3315f9e7314bea84af5ee7 +SIZE (KDE/applications/18.04.2/akonadi-mime-18.04.2.tar.xz) = 137372 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 472129) +++ head/net/akonadi-notes/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/akonadi-notes-18.04.1.tar.xz) = ed32ec5ddb96e382aba58133bdfdf0c8abcfda571cd4b30d7133967f34359838 -SIZE (KDE/applications/18.04.1/akonadi-notes-18.04.1.tar.xz) = 24608 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/akonadi-notes-18.04.2.tar.xz) = 5c1f10d8d45e9058bb76cc2d6b7ad4e0f8b57c131734c2fa72895a81590241dd +SIZE (KDE/applications/18.04.2/akonadi-notes-18.04.2.tar.xz) = 24676 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 472129) +++ head/net/akonadi-search/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/akonadi-search-18.04.1.tar.xz) = 5463f92b61641cf3fe63076580a3abee2e5db3931412b99764b3f439f491ae06 -SIZE (KDE/applications/18.04.1/akonadi-search-18.04.1.tar.xz) = 82436 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/akonadi-search-18.04.2.tar.xz) = 3349d22ab31100e83368a3053696a12705c6a592bc664082c6a33befc5ab4c4e +SIZE (KDE/applications/18.04.2/akonadi-search-18.04.2.tar.xz) = 82516 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 472129) +++ head/net/calendarsupport/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/calendarsupport-18.04.1.tar.xz) = ea1ce7a34e516707c37169271ed307b52a27bddab27b0bde0a03788e3d0cfc0b -SIZE (KDE/applications/18.04.1/calendarsupport-18.04.1.tar.xz) = 647072 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/calendarsupport-18.04.2.tar.xz) = 6aa27bb9c8a06e798016314da518b53e8fa10c4cad092bed9fc708bcd45ce9ca +SIZE (KDE/applications/18.04.2/calendarsupport-18.04.2.tar.xz) = 647164 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 472129) +++ head/net/eventviews/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/eventviews-18.04.1.tar.xz) = 803c443ced05398b67f652ab1b49547c51df12a96dc1af67e04411736253014b -SIZE (KDE/applications/18.04.1/eventviews-18.04.1.tar.xz) = 441512 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/eventviews-18.04.2.tar.xz) = f4a15b6d9b6d52a72ceccc0427542fec5ec23f45d7106ca4bc5e22a23b3dcdb9 +SIZE (KDE/applications/18.04.2/eventviews-18.04.2.tar.xz) = 441572 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 472129) +++ head/net/incidenceeditor/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/incidenceeditor-18.04.1.tar.xz) = e490dc2698ea33a77b1b0310fb323bb8d76608af263d6057b2b0a642eb45814d -SIZE (KDE/applications/18.04.1/incidenceeditor-18.04.1.tar.xz) = 526728 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/incidenceeditor-18.04.2.tar.xz) = ca941bdf3d7b5eac3e1f417687b9f3b014ee6c8b685f49421b25380e2d36ad01 +SIZE (KDE/applications/18.04.2/incidenceeditor-18.04.2.tar.xz) = 526600 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 472129) +++ head/net/kalarmcal/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/kalarmcal-18.04.1.tar.xz) = 53ee46abcad06576129f220601108d1428ab51a54878b4a04948bc6d56e304c8 -SIZE (KDE/applications/18.04.1/kalarmcal-18.04.1.tar.xz) = 548224 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/kalarmcal-18.04.2.tar.xz) = 268bb1e48232de79c0b9d84f61e089f0f8eb61838ec2307a69d422977d99494f +SIZE (KDE/applications/18.04.2/kalarmcal-18.04.2.tar.xz) = 548360 Index: head/net/kblog/distinfo =================================================================== --- head/net/kblog/distinfo (revision 472129) +++ head/net/kblog/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/kblog-18.04.1.tar.xz) = 79f25c16ac78dcb769106a543088608b726175e9f1d6ae5ae002fee0ed76cdbe -SIZE (KDE/applications/18.04.1/kblog-18.04.1.tar.xz) = 72524 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/kblog-18.04.2.tar.xz) = b4af8bcc91fe03468e79090dcbbb21ecfc3921409d8225b8571694995231d09f +SIZE (KDE/applications/18.04.2/kblog-18.04.2.tar.xz) = 72528 Index: head/net/kcalcore/distinfo =================================================================== --- head/net/kcalcore/distinfo (revision 472129) +++ head/net/kcalcore/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756083 -SHA256 (KDE/applications/18.04.1/kcalcore-18.04.1.tar.xz) = 5d18dc178f20fd5c922980f11b267320b14f7f1ff45935e66726c679d3ba4360 -SIZE (KDE/applications/18.04.1/kcalcore-18.04.1.tar.xz) = 251724 +TIMESTAMP = 1528216927 +SHA256 (KDE/applications/18.04.2/kcalcore-18.04.2.tar.xz) = 61485fc9643fe383e8b76631db5bd1cb7e03ba8357502ec0c3652f15f7ec342a +SIZE (KDE/applications/18.04.2/kcalcore-18.04.2.tar.xz) = 252940 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 472129) +++ head/net/kcalutils/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/kcalutils-18.04.1.tar.xz) = b5b2b99700899d4075c670aa294818a916dc989e9f5a7385c116790a9c29aa16 -SIZE (KDE/applications/18.04.1/kcalutils-18.04.1.tar.xz) = 326416 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/kcalutils-18.04.2.tar.xz) = 62aac71db531ea28e06848c0ab50ac985d82921235f0a1c045e8128b4eff6bfc +SIZE (KDE/applications/18.04.2/kcalutils-18.04.2.tar.xz) = 326460 Index: head/net/kcontacts/distinfo =================================================================== --- head/net/kcontacts/distinfo (revision 472129) +++ head/net/kcontacts/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756086 -SHA256 (KDE/applications/18.04.1/kcontacts-18.04.1.tar.xz) = b0e7d08f37852a52635b7cac6f1698eb42a2c2f21bd0beefbb1f1b629a62451c -SIZE (KDE/applications/18.04.1/kcontacts-18.04.1.tar.xz) = 206896 +TIMESTAMP = 1528216930 +SHA256 (KDE/applications/18.04.2/kcontacts-18.04.2.tar.xz) = b2069101d88cd56f45325b9f96989b49d4be84a219e83d0e0245765e3d53bf0e +SIZE (KDE/applications/18.04.2/kcontacts-18.04.2.tar.xz) = 207028 Index: head/net/kdav/distinfo =================================================================== --- head/net/kdav/distinfo (revision 472129) +++ head/net/kdav/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756083 -SHA256 (KDE/applications/18.04.1/kdav-18.04.1.tar.xz) = 2bedba63507e94253a8c01566d5b64094c52617d1349207d193a1378ccb94b99 -SIZE (KDE/applications/18.04.1/kdav-18.04.1.tar.xz) = 49012 +TIMESTAMP = 1528216927 +SHA256 (KDE/applications/18.04.2/kdav-18.04.2.tar.xz) = a39b45afc288379d380497dd95d786d3228640d959a6ab31b574b12aab707454 +SIZE (KDE/applications/18.04.2/kdav-18.04.2.tar.xz) = 49032 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 472129) +++ head/net/kdenetwork-filesharing/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/kdenetwork-filesharing-18.04.1.tar.xz) = 3cfac01badb908551e1477bfda2a159e193d84c0b96097d70f5b8481c2a5b1a1 -SIZE (KDE/applications/18.04.1/kdenetwork-filesharing-18.04.1.tar.xz) = 324048 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/kdenetwork-filesharing-18.04.2.tar.xz) = 5aad422cb51cda50d9d6a7f2a4ce2035be09009f368188a78e29f603383d2f23 +SIZE (KDE/applications/18.04.2/kdenetwork-filesharing-18.04.2.tar.xz) = 324248 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 472129) +++ head/net/kget/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/kget-18.04.1.tar.xz) = c7854dc725e3ff9736b0436db852bbba7977b27a1347c254b2eb08151655fbcf -SIZE (KDE/applications/18.04.1/kget-18.04.1.tar.xz) = 5213276 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/kget-18.04.2.tar.xz) = 91e7559cd7a1fb724791da777532f058801bf54e6ab7405e82380416edf90144 +SIZE (KDE/applications/18.04.2/kget-18.04.2.tar.xz) = 5214012 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 472129) +++ head/net/kidentitymanagement/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/kidentitymanagement-18.04.1.tar.xz) = 38697be57352212bac54403c02fab5ea3880e75a4bd1ec682172ab9307dd61d1 -SIZE (KDE/applications/18.04.1/kidentitymanagement-18.04.1.tar.xz) = 148084 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/kidentitymanagement-18.04.2.tar.xz) = 143f643fa688157dc9175323c6c0f8b3b8ac4e3d501583e8c590d1b5b45355e6 +SIZE (KDE/applications/18.04.2/kidentitymanagement-18.04.2.tar.xz) = 148228 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 472129) +++ head/net/kimap/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756086 -SHA256 (KDE/applications/18.04.1/kimap-18.04.1.tar.xz) = 10f8829f4eda57cffc4c3a83d2d0cb603693c297919b70045abdf5e332b1c10f -SIZE (KDE/applications/18.04.1/kimap-18.04.1.tar.xz) = 118864 +TIMESTAMP = 1528216930 +SHA256 (KDE/applications/18.04.2/kimap-18.04.2.tar.xz) = ed8bf170daa92ab852287b56a65eee5e098b88e94e47ffdadca580da2d11bd3b +SIZE (KDE/applications/18.04.2/kimap-18.04.2.tar.xz) = 119184 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 472129) +++ head/net/kldap/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756086 -SHA256 (KDE/applications/18.04.1/kldap-18.04.1.tar.xz) = 51a8c011cd2392e8eed4bd437e07cd21bf4c5a47ca91b633ca983af1568c392b -SIZE (KDE/applications/18.04.1/kldap-18.04.1.tar.xz) = 154192 +TIMESTAMP = 1528216930 +SHA256 (KDE/applications/18.04.2/kldap-18.04.2.tar.xz) = fa0b48d50c2581dafcfb3518c6731a7a2b8ff9878938bcfeaf432fe00dc898ca +SIZE (KDE/applications/18.04.2/kldap-18.04.2.tar.xz) = 154284 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 472129) +++ head/net/kmailtransport/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/kmailtransport-18.04.1.tar.xz) = e23c2e952eb90e33d1b028ef674ec2d9fa4bdf9664f786e3607fde9608488726 -SIZE (KDE/applications/18.04.1/kmailtransport-18.04.1.tar.xz) = 165012 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/kmailtransport-18.04.2.tar.xz) = 124c1bfeaf26111423ac61485bdc580704e888030559c130bba9acd653c081fd +SIZE (KDE/applications/18.04.2/kmailtransport-18.04.2.tar.xz) = 165044 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 472129) +++ head/net/kmbox/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/kmbox-18.04.1.tar.xz) = 187b2a0677296469caefb079dcb8f7b54c79e81a46e3881cae4aabb3a6b7ec17 -SIZE (KDE/applications/18.04.1/kmbox-18.04.1.tar.xz) = 24540 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/kmbox-18.04.2.tar.xz) = 8c2f821ba8f77523485fd55df39f32b384f537951717335b27f23dea663d8d37 +SIZE (KDE/applications/18.04.2/kmbox-18.04.2.tar.xz) = 24552 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 472129) +++ head/net/kmime/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/kmime-18.04.1.tar.xz) = efa88e2745332ddee25798d80872e6bea0dacdb95a62e8cd3f2fb13078a790ca -SIZE (KDE/applications/18.04.1/kmime-18.04.1.tar.xz) = 146364 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/kmime-18.04.2.tar.xz) = b0f4ce9eec34be71c6f18ae4213ea76fad006a4f928a1cb6e3e457e2d85d020a +SIZE (KDE/applications/18.04.2/kmime-18.04.2.tar.xz) = 146424 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 472129) +++ head/net/kontactinterface/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756083 -SHA256 (KDE/applications/18.04.1/kontactinterface-18.04.1.tar.xz) = cd5b189b3f4c954af68f0e0bbb675442af320470c2812efa3685bfcf337bdcff -SIZE (KDE/applications/18.04.1/kontactinterface-18.04.1.tar.xz) = 32864 +TIMESTAMP = 1528216927 +SHA256 (KDE/applications/18.04.2/kontactinterface-18.04.2.tar.xz) = bc372492b6c5663776fe6740694fcfeee9b6efd78ff5a10114188dac7b5fd71c +SIZE (KDE/applications/18.04.2/kontactinterface-18.04.2.tar.xz) = 32952 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 472129) +++ head/net/kpimtextedit/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756086 -SHA256 (KDE/applications/18.04.1/kpimtextedit-18.04.1.tar.xz) = b6a633cb08c7158b005ff43588cce24cc6be370af55a4d03e847a909b61ba124 -SIZE (KDE/applications/18.04.1/kpimtextedit-18.04.1.tar.xz) = 142852 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/kpimtextedit-18.04.2.tar.xz) = d619fa07b37de5d42ac144e989fba65e7cca9ce4e74a6dc16dad0ef82b2a8de9 +SIZE (KDE/applications/18.04.2/kpimtextedit-18.04.2.tar.xz) = 142924 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 472129) +++ head/net/krdc/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/krdc-18.04.1.tar.xz) = 3d4c1bcb7fd17505b4fed7054ee0e9f13c610da32abb0c95f66bba472948c998 -SIZE (KDE/applications/18.04.1/krdc-18.04.1.tar.xz) = 1553624 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/krdc-18.04.2.tar.xz) = f3702e034bd84501809dbd528d8958c4aab4254c4fadffd35d0b38abc9c0f12b +SIZE (KDE/applications/18.04.2/krdc-18.04.2.tar.xz) = 1553904 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 472129) +++ head/net/krfb/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/krfb-18.04.1.tar.xz) = 749be827406bfe0a0a1d989922d31242dd9f73025ab019a20bb91841eecba3fd -SIZE (KDE/applications/18.04.1/krfb-18.04.1.tar.xz) = 996076 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/krfb-18.04.2.tar.xz) = 4a87e7712cddf15035c60a456b764c8361c6730289943c38bc9ee3f809783cda +SIZE (KDE/applications/18.04.2/krfb-18.04.2.tar.xz) = 996280 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 472129) +++ head/net/ksmtp/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/ksmtp-18.04.1.tar.xz) = 8366b738e328b7a47741254d1b72b3dad84df28f9170d151d0e8c0ada362ae46 -SIZE (KDE/applications/18.04.1/ksmtp-18.04.1.tar.xz) = 38080 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/ksmtp-18.04.2.tar.xz) = 21a503aa4acc7d74cbad6c6a250c14164827ea50d96dd40af8bfd7835671079b +SIZE (KDE/applications/18.04.2/ksmtp-18.04.2.tar.xz) = 38092 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 472129) +++ head/net/ktnef/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756083 -SHA256 (KDE/applications/18.04.1/ktnef-18.04.1.tar.xz) = 986269e0ba3811771ba62b5778bbf0e9ba33e19f3b4ec115f65721b8ac5ed6d4 -SIZE (KDE/applications/18.04.1/ktnef-18.04.1.tar.xz) = 300376 +TIMESTAMP = 1528216927 +SHA256 (KDE/applications/18.04.2/ktnef-18.04.2.tar.xz) = 7857e6ab0b935138a0868360aca754d1793ff4af9700d8d18bf22ef41f7ea70e +SIZE (KDE/applications/18.04.2/ktnef-18.04.2.tar.xz) = 300424 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 472129) +++ head/net/libgravatar/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756087 -SHA256 (KDE/applications/18.04.1/libgravatar-18.04.1.tar.xz) = 32db3eac65cab9a2dabb737f8984aedb10a7461b7b642acbeb6a19e8c161b9a7 -SIZE (KDE/applications/18.04.1/libgravatar-18.04.1.tar.xz) = 30440 +TIMESTAMP = 1528216931 +SHA256 (KDE/applications/18.04.2/libgravatar-18.04.2.tar.xz) = 0e387489ad39e8ac315b4e2219fa6c5af0d97fd547bad8ec3641e1f6d589eafb +SIZE (KDE/applications/18.04.2/libgravatar-18.04.2.tar.xz) = 30480 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 472129) +++ head/net/libkgapi/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/libkgapi-18.04.1.tar.xz) = 1beac95b9bbb00e7852339cade0601196de8fd6051949ed564d914e7f1b1fd72 -SIZE (KDE/applications/18.04.1/libkgapi-18.04.1.tar.xz) = 176124 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/libkgapi-18.04.2.tar.xz) = d091b6261c014cde57cbe407d6995696a31b1162a8cee067944c4032ccb0b6ab +SIZE (KDE/applications/18.04.2/libkgapi-18.04.2.tar.xz) = 176204 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 472129) +++ head/net/libksieve/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/libksieve-18.04.1.tar.xz) = a0e49a00951cd024a0a3f6a8c3b21d1f80bd6ea7ccf047b712c39712240d4b37 -SIZE (KDE/applications/18.04.1/libksieve-18.04.1.tar.xz) = 550244 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/libksieve-18.04.2.tar.xz) = 37206b958780e58bb66149dff0fd3f89baf235d77a67c9c91b410b434047b46a +SIZE (KDE/applications/18.04.2/libksieve-18.04.2.tar.xz) = 550552 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 472129) +++ head/net/mailcommon/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756088 -SHA256 (KDE/applications/18.04.1/mailcommon-18.04.1.tar.xz) = 93e1ba7e5fd1ca1dce2d7a58c5ab52a4f396b258d881873f0c63e050b9260c68 -SIZE (KDE/applications/18.04.1/mailcommon-18.04.1.tar.xz) = 691992 +TIMESTAMP = 1528216932 +SHA256 (KDE/applications/18.04.2/mailcommon-18.04.2.tar.xz) = 370841b69082c84d8b40369c57546049906a6e4352748d52dfef80db8bd95fab +SIZE (KDE/applications/18.04.2/mailcommon-18.04.2.tar.xz) = 691940 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 472129) +++ head/net/mailimporter/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756083 -SHA256 (KDE/applications/18.04.1/mailimporter-18.04.1.tar.xz) = bf19cb8addea780a63a900e7084beaf7622ec0cd8a25bf6c9c7d312da53fece3 -SIZE (KDE/applications/18.04.1/mailimporter-18.04.1.tar.xz) = 541300 +TIMESTAMP = 1528216927 +SHA256 (KDE/applications/18.04.2/mailimporter-18.04.2.tar.xz) = 25008730a9886348ff0f8b2f6ad53e77586ee9324b697f503e7a8d56b9cddb9d +SIZE (KDE/applications/18.04.2/mailimporter-18.04.2.tar.xz) = 541460 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 472129) +++ head/net/messagelib/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756086 -SHA256 (KDE/applications/18.04.1/messagelib-18.04.1.tar.xz) = 6289a4ff7f3c67da3cf64f9855520e194a072969359f3ddebac5061968a7f6bb -SIZE (KDE/applications/18.04.1/messagelib-18.04.1.tar.xz) = 10469836 +TIMESTAMP = 1528216930 +SHA256 (KDE/applications/18.04.2/messagelib-18.04.2.tar.xz) = dcc1e4040be3ea2137437a2dc5f4c9c6d483d13baa9878871f24f1a02c025342 +SIZE (KDE/applications/18.04.2/messagelib-18.04.2.tar.xz) = 10470968 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 472129) +++ head/net/pimcommon/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756085 -SHA256 (KDE/applications/18.04.1/pimcommon-18.04.1.tar.xz) = 4a8ae23c6bb0d52e7c099c3f88b49d29643c52846642e2f65cd6e4689404cd7f -SIZE (KDE/applications/18.04.1/pimcommon-18.04.1.tar.xz) = 295476 +TIMESTAMP = 1528216929 +SHA256 (KDE/applications/18.04.2/pimcommon-18.04.2.tar.xz) = c3924da8fc58e4396e621d88c966dd69cf356586597b466dffad829db778b675 +SIZE (KDE/applications/18.04.2/pimcommon-18.04.2.tar.xz) = 295500 Index: head/net/syndication/distinfo =================================================================== --- head/net/syndication/distinfo (revision 472129) +++ head/net/syndication/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/syndication-18.04.1.tar.xz) = a562e48be03cd20165996f973615590d1ac4e1b1de98164ec926ff8715d08abd -SIZE (KDE/applications/18.04.1/syndication-18.04.1.tar.xz) = 160128 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/syndication-18.04.2.tar.xz) = b7d7df02e810f1152c6616465d15afd9bbe06776b7b675c336528ef6c3249515 +SIZE (KDE/applications/18.04.2/syndication-18.04.2.tar.xz) = 160132 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 472129) +++ head/net/zeroconf-ioslave/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756084 -SHA256 (KDE/applications/18.04.1/zeroconf-ioslave-18.04.1.tar.xz) = 83e9ef23d534755b517257efb5e76f61890e8144c198412572631391309bdb26 -SIZE (KDE/applications/18.04.1/zeroconf-ioslave-18.04.1.tar.xz) = 38908 +TIMESTAMP = 1528216928 +SHA256 (KDE/applications/18.04.2/zeroconf-ioslave-18.04.2.tar.xz) = c2e8bf4fee6a0ff6cf12d40d023b0d693df947e1940a327a43d144711ad5f61e +SIZE (KDE/applications/18.04.2/zeroconf-ioslave-18.04.2.tar.xz) = 38996 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 472129) +++ head/net-im/kaccounts-integration/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/kaccounts-integration-18.04.1.tar.xz) = f2a789e7bfd3cc2109872d108a8782feb0cf972ea5b869666d4ac87794827ea9 -SIZE (KDE/applications/18.04.1/kaccounts-integration-18.04.1.tar.xz) = 71596 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kaccounts-integration-18.04.2.tar.xz) = 2b4ca1a478a53b2937ce3740d641afc400153c716a7223a5046de2d8ba925ac6 +SIZE (KDE/applications/18.04.2/kaccounts-integration-18.04.2.tar.xz) = 71660 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 472129) +++ head/net-im/kaccounts-providers/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/kaccounts-providers-18.04.1.tar.xz) = e67e5c81269c018deb922cfb7867361f55f01daa54c7587e90139341307ccf97 -SIZE (KDE/applications/18.04.1/kaccounts-providers-18.04.1.tar.xz) = 31868 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kaccounts-providers-18.04.2.tar.xz) = dc47c009e18ea6f1b20dec20caf592942d884f9e81b5d953e5fac8dbee3ef6c2 +SIZE (KDE/applications/18.04.2/kaccounts-providers-18.04.2.tar.xz) = 31944 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 472129) +++ head/net-im/kopete/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/kopete-18.04.1.tar.xz) = 28eec726ee3869415ecbced35ff6ce38997e950368330fe3971b91defb525dc7 -SIZE (KDE/applications/18.04.1/kopete-18.04.1.tar.xz) = 9733608 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kopete-18.04.2.tar.xz) = edc286cf69d94ca5805f1b3e08cda1477e4f8398d9982f59bec79aba7ad0d2e8 +SIZE (KDE/applications/18.04.2/kopete-18.04.2.tar.xz) = 9569128 Index: head/net-im/kopete/pkg-plist =================================================================== --- head/net-im/kopete/pkg-plist (revision 472129) +++ head/net-im/kopete/pkg-plist (revision 472130) @@ -1,742 +1,742 @@ bin/kopete bin/winpopup-install bin/winpopup-send etc/xdg/kopete.categories etc/xdg/kopeterc include/kopete/kabcpersistence.h include/kopete/kopeteaccount.h include/kopete/kopeteaccountmanager.h include/kopete/kopeteaddedinfoevent.h include/kopete/kopeteappearancesettings.h include/kopete/kopeteavatarmanager.h include/kopete/kopetebehaviorsettings.h include/kopete/kopeteblacklister.h include/kopete/kopetechatsession.h include/kopete/kopetechatsessionmanager.h include/kopete/kopetecommand.h include/kopete/kopetecommandhandler.h include/kopete/kopetecontact.h include/kopete/kopetecontactlist.h include/kopete/kopetecontactlistelement.h include/kopete/kopetecontacttaskbase.h include/kopete/kopetedeletecontacttask.h include/kopete/kopeteemoticons.h include/kopete/kopeteglobal.h include/kopete/kopetegroup.h include/kopete/kopeteidentity.h include/kopete/kopeteidentitymanager.h include/kopete/kopeteinfoevent.h include/kopete/kopetemessage.h include/kopete/kopetemessageevent.h include/kopete/kopetemessagehandler.h include/kopete/kopetemessagehandlerchain.h include/kopete/kopetemetacontact.h include/kopete/kopetemimetypehandler.h include/kopete/kopeteonlinestatus.h include/kopete/kopeteonlinestatusmanager.h include/kopete/kopetepassword.h include/kopete/kopetepasswordedaccount.h include/kopete/kopetepicture.h include/kopete/kopeteplugin.h include/kopete/kopetepluginmanager.h include/kopete/kopeteproperty.h include/kopete/kopetepropertycontainer.h include/kopete/kopeteprotocol.h include/kopete/kopetesimplemessagehandler.h include/kopete/kopetestatusmanager.h include/kopete/kopetestatusmessage.h include/kopete/kopetestatussettings.h include/kopete/kopetetask.h include/kopete/kopetetransfermanager.h include/kopete/kopeteuiglobal.h include/kopete/kopeteutils.h include/kopete/kopeteversion.h include/kopete/libkopete_export.h include/kopete/ui/accountselector.h include/kopete/ui/addcontactpage.h include/kopete/ui/addressbookselectordialog.h include/kopete/ui/addressbookselectorwidget.h include/kopete/ui/avatardialog.h include/kopete/ui/avatarselectorwidget.h include/kopete/ui/contactaddednotifydialog.h include/kopete/ui/editaccountwidget.h include/kopete/ui/kopetecontactaction.h include/kopete/ui/kopeteinfodialog.h include/kopete/ui/kopetelistview.h include/kopete/ui/kopetelistviewitem.h include/kopete/ui/kopetelistviewsearchline.h include/kopete/ui/kopetepasswordwidget.h include/kopete/ui/kopetestdaction.h include/kopete/ui/kopeteview.h include/kopete/ui/kopeteviewplugin.h include/kopete/ui/ui_kopeteawaydialogbase.h include/kopete/ui/ui_kopetepasswordwidgetbase.h lib/libkopete.so lib/libkopete.so.1 lib/libkopete.so.1.0.0 lib/libkopete_oscar.so lib/libkopete_oscar.so.1 lib/libkopete_oscar.so.1.0.0 lib/libkopete_otr_shared.so lib/libkopete_otr_shared.so.1 lib/libkopete_otr_shared.so.1.0.0 lib/libkopete_videodevice.so lib/libkopete_videodevice.so.1 lib/libkopete_videodevice.so.1.0.0 lib/libkopeteaddaccountwizard.so lib/libkopeteaddaccountwizard.so.1 lib/libkopeteaddaccountwizard.so.1.0.0 lib/libkopetechatwindow_shared.so lib/libkopetechatwindow_shared.so.1 lib/libkopetechatwindow_shared.so.1.0.0 lib/libkopetecontactlist.so lib/libkopetecontactlist.so.1 lib/libkopetecontactlist.so.1.0.0 lib/libkopeteidentity.so lib/libkopeteidentity.so.1 lib/libkopeteidentity.so.1.0.0 lib/libkopeteprivacy.so lib/libkopeteprivacy.so.1 lib/libkopeteprivacy.so.1.0.0 lib/libkopetestatusmenu.so lib/libkopetestatusmenu.so.1 lib/libkopetestatusmenu.so.1.0.0 lib/libkyahoo.so lib/libkyahoo.so.1 lib/libkyahoo.so.1.0.0 lib/liboscar.so lib/liboscar.so.1 lib/liboscar.so.1.0.0 lib/libqgroupwise.so +%%QT_PLUGINDIR%%/accessible/chatwindowaccessiblewidgetfactory.so %%QT_PLUGINDIR%%/chattexteditpart.so %%QT_PLUGINDIR%%/kcm_kopete_accountconfig.so %%QT_PLUGINDIR%%/kcm_kopete_addbookmarks.so %%QT_PLUGINDIR%%/kcm_kopete_appearanceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_autoreplace.so %%QT_PLUGINDIR%%/kcm_kopete_avdeviceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_behaviorconfig.so %%QT_PLUGINDIR%%/kcm_kopete_chatwindowconfig.so %%QT_PLUGINDIR%%/kcm_kopete_highlight.so %%QT_PLUGINDIR%%/kcm_kopete_history.so %%QT_PLUGINDIR%%/kcm_kopete_otr.so %%QT_PLUGINDIR%%/kcm_kopete_pluginconfig.so %%QT_PLUGINDIR%%/kcm_kopete_privacy.so %%QT_PLUGINDIR%%/kcm_kopete_statusconfig.so %%QT_PLUGINDIR%%/kcm_kopete_texteffect.so %%QT_PLUGINDIR%%/kcm_kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kcm_kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_addbookmarks.so %%QT_PLUGINDIR%%/kopete_aim.so %%QT_PLUGINDIR%%/kopete_autoreplace.so %%QT_PLUGINDIR%%/kopete_bonjour.so %%QT_PLUGINDIR%%/kopete_chatwindow.so %%QT_PLUGINDIR%%/kopete_contactnotes.so %%QT_PLUGINDIR%%/kopete_emailwindow.so %%QT_PLUGINDIR%%/kopete_groupwise.so %%QT_PLUGINDIR%%/kopete_highlight.so %%QT_PLUGINDIR%%/kopete_history.so %%QT_PLUGINDIR%%/kopete_icq.so %%QT_PLUGINDIR%%/kopete_jabber.so %%QT_PLUGINDIR%%/kopete_otr.so %%QT_PLUGINDIR%%/kopete_privacy.so %%QT_PLUGINDIR%%/kopete_qq.so %%QT_PLUGINDIR%%/kopete_statistics.so %%QT_PLUGINDIR%%/kopete_testbed.so %%QT_PLUGINDIR%%/kopete_texteffect.so %%QT_PLUGINDIR%%/kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_wp.so %%QT_PLUGINDIR%%/kopete_yahoo.so -%%QT_PLUGINDIR%%/plugins/accessible/chatwindowaccessiblewidgetfactory.so share/applications/org.kde.kopete.desktop share/config.kcfg/historyconfig.kcfg share/config.kcfg/kopete_otr.kcfg share/config.kcfg/kopeteappearancesettings.kcfg share/config.kcfg/kopetebehaviorsettings.kcfg share/config.kcfg/kopetestatussettings.kcfg share/config.kcfg/urlpicpreview.kcfg share/config.kcfg/webpresenceconfig.kcfg share/dbus-1/interfaces/org.kde.Kopete.xml share/dbus-1/interfaces/org.kde.kopete.Client.xml share/dbus-1/interfaces/org.kde.kopete.Statistics.xml share/icons/hicolor/128x128/apps/kopete-offline.png share/icons/hicolor/128x128/apps/kopete.png share/icons/hicolor/16x16/apps/kopete-offline.png share/icons/hicolor/16x16/apps/kopete.png share/icons/hicolor/22x22/apps/kopete-offline.png share/icons/hicolor/22x22/apps/kopete.png share/icons/hicolor/32x32/apps/kopete-offline.png share/icons/hicolor/32x32/apps/kopete.png share/icons/hicolor/48x48/apps/kopete-offline.png share/icons/hicolor/48x48/apps/kopete.png share/icons/hicolor/64x64/apps/kopete-offline.png share/icons/hicolor/64x64/apps/kopete.png share/icons/hicolor/scalable/apps/kopete-offline.svgz share/icons/hicolor/scalable/apps/kopete.svgz share/icons/oxygen/128x128/actions/voicecall.png share/icons/oxygen/128x128/actions/webcamreceive.png share/icons/oxygen/128x128/actions/webcamsend.png share/icons/oxygen/128x128/apps/kopete_avdevice.png share/icons/oxygen/16x16/actions/account_offline_overlay.png share/icons/oxygen/16x16/actions/contact_away_overlay.png share/icons/oxygen/16x16/actions/contact_busy_overlay.png share/icons/oxygen/16x16/actions/contact_food_overlay.png share/icons/oxygen/16x16/actions/contact_freeforchat_overlay.png share/icons/oxygen/16x16/actions/contact_invisible_overlay.png share/icons/oxygen/16x16/actions/contact_phone_overlay.png share/icons/oxygen/16x16/actions/contact_xa_overlay.png share/icons/oxygen/16x16/actions/emoticon.png share/icons/oxygen/16x16/actions/im-status-message-edit.png share/icons/oxygen/16x16/actions/metacontact_unknown.png share/icons/oxygen/16x16/actions/status_unknown.png share/icons/oxygen/16x16/actions/status_unknown_overlay.png share/icons/oxygen/16x16/actions/view-user-offline-kopete.png share/icons/oxygen/16x16/actions/voicecall.png share/icons/oxygen/16x16/actions/webcamreceive.png share/icons/oxygen/16x16/actions/webcamsend.png share/icons/oxygen/22x22/actions/account_offline_overlay.png share/icons/oxygen/22x22/actions/im-status-message-edit.png share/icons/oxygen/22x22/actions/view-user-offline-kopete.png share/icons/oxygen/22x22/actions/voicecall.png share/icons/oxygen/22x22/actions/webcamreceive.png share/icons/oxygen/22x22/actions/webcamsend.png share/icons/oxygen/22x22/apps/kopete_avdevice.png share/icons/oxygen/22x22/status/object-locked-finished.png share/icons/oxygen/22x22/status/object-locked-unverified.png share/icons/oxygen/22x22/status/object-locked-verified.png share/icons/oxygen/32x32/actions/account_offline_overlay.png share/icons/oxygen/32x32/actions/im-status-message-edit.png share/icons/oxygen/32x32/actions/metacontact_unknown.png share/icons/oxygen/32x32/actions/view-user-offline-kopete.png share/icons/oxygen/32x32/actions/voicecall.png share/icons/oxygen/32x32/actions/webcamreceive.png share/icons/oxygen/32x32/actions/webcamsend.png share/icons/oxygen/32x32/apps/kopete_avdevice.png share/icons/oxygen/48x48/actions/im-status-message-edit.png share/icons/oxygen/48x48/actions/mail-encrypt.png share/icons/oxygen/48x48/actions/view-user-offline-kopete.png share/icons/oxygen/48x48/actions/voicecall.png share/icons/oxygen/48x48/actions/webcamreceive.png share/icons/oxygen/48x48/actions/webcamsend.png share/icons/oxygen/64x64/actions/voicecall.png share/icons/oxygen/64x64/actions/webcamreceive.png share/icons/oxygen/64x64/actions/webcamsend.png share/icons/oxygen/64x64/apps/kopete_avdevice.png share/icons/oxygen/scalable/actions/account_offline_overlay.svgz share/icons/oxygen/scalable/actions/im-status-message-edit.svgz share/icons/oxygen/scalable/actions/view-user-offline-kopete.svgz share/icons/oxygen/scalable/actions/voicecall.svgz share/icons/oxygen/scalable/actions/webcamreceive.svgz share/icons/oxygen/scalable/actions/webcamsend.svgz share/kconf_update/kopete-account-0.10.pl share/kconf_update/kopete-account-kconf_update.sh share/kconf_update/kopete-account-kconf_update.upd share/kconf_update/kopete-gaim_to_pidgin_style.pl share/kconf_update/kopete-gaim_to_pidgin_style.upd share/kconf_update/kopete-initialstatus.pl share/kconf_update/kopete-initialstatus.upd share/kconf_update/kopete-jabberpriorityaddition-kconf_update.sh share/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd share/kconf_update/kopete-jabberproxytype-kconf_update.sh share/kconf_update/kopete-jabberproxytype-kconf_update.upd share/kconf_update/kopete-nameTracking.upd share/kconf_update/kopete-pluginloader.pl share/kconf_update/kopete-pluginloader.upd share/kconf_update/kopete-pluginloader2.sh share/kconf_update/kopete-pluginloader2.upd share/kconf_update/kopete-update_icq_server.pl share/kconf_update/kopete-update_icq_server.upd share/kconf_update/kopete-update_icq_ssl.pl share/kconf_update/kopete-update_icq_ssl.upd share/kconf_update/kopete-update_yahoo_server.pl share/kconf_update/kopete-update_yahoo_server.upd +share/knotifications5/kopete.notifyrc %%DATADIR%%/CompactContactListLayouts.xml %%DATADIR%%/DefaultContactListLayouts.xml %%DATADIR%%/icons/hicolor/128x128/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_away.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/aim_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_online.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_away.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_busy.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_away.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/icq_dnd.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_ffc.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_na.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_occupied.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus0.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus1.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus10.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus11.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus12.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus13.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus14.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus15.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus16.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus17.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus%%KDE_APPLICATIONS_VERSION_SHORT%%.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus19.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus2.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus20.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus21.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus22.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus23.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus24.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus25.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus26.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus27.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus28.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus29.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus3.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus30.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus31.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus4.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus5.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus6.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus7.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus8.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus9.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_away.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_chatty.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/jabber_group.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_na.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_online.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_original.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_raw.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_off.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_on.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_xa.png %%DATADIR%%/icons/hicolor/16x16/actions/logging.png %%DATADIR%%/icons/hicolor/16x16/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/wp_away.png %%DATADIR%%/icons/hicolor/16x16/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_aim.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_gadu.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_http-ws.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_icq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_irc.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_msn.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_qq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_sms.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_smtp.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_tlen.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_yahoo.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/22x22/actions/logging.png %%DATADIR%%/icons/hicolor/22x22/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/22x22/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/actions/logging.png %%DATADIR%%/icons/hicolor/32x32/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/32x32/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-plugin-text-effect-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-autocorrection-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-highlighting-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/48x48/actions/logging.png %%DATADIR%%/icons/hicolor/48x48/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/48x48/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/64x64/actions/logging.png %%DATADIR%%/icons/hicolor/64x64/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/64x64/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/wp_protocol.png %%DATADIR%%/icons/oxygen/128x128/app/yahoo_protocol.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_away.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_busy.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_idle.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_invisible.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_mobile.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_stealthed.png %%DATADIR%%/icons/oxygen/16x16/action/yahoo_tea.png %%DATADIR%%/icons/oxygen/16x16/app/yahoo_protocol.png %%DATADIR%%/icons/oxygen/22x22/action/yahoo_stealthed.png %%DATADIR%%/icons/oxygen/32x32/action/yahoo_stealthed.png %%DATADIR%%/icons/oxygen/32x32/app/yahoo_protocol.png %%DATADIR%%/icons/oxygen/48x48/app/yahoo_protocol.png %%DATADIR%%/icons/oxygen/64x64/app/yahoo_protocol.png -%%DATADIR%%/kopete.notifyrc %%DATADIR%%/styles/Clean/Contents/Resources/Footer.html %%DATADIR%%/styles/Clean/Contents/Resources/Header.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Status.html %%DATADIR%%/styles/Clean/Contents/Resources/images/action.png %%DATADIR%%/styles/Clean/Contents/Resources/images/important.png %%DATADIR%%/styles/Clean/Contents/Resources/images/internal.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clean/Contents/Resources/main.css %%DATADIR%%/styles/Clear/Contents/Resources/Footer.html %%DATADIR%%/styles/Clear/Contents/Resources/Header.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Status.html %%DATADIR%%/styles/Clear/Contents/Resources/Variants/No_avatars.css %%DATADIR%%/styles/Clear/Contents/Resources/images/body-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-action.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-highlighted.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-internal.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-me.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-time.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-you.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clear/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/COPYRIGHT %%DATADIR%%/styles/Hacker/Contents/Info.plist %%DATADIR%%/styles/Hacker/Contents/Resources/Footer.html %%DATADIR%%/styles/Hacker/Contents/Resources/Header.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Status.html %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2.css %%DATADIR%%/styles/Hacker/Contents/Resources/images/background.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/background2.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/kopete.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending-white.gif %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Hacker/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/README %%DATADIR%%/styles/Hacker/gpl.txt %%DATADIR%%/styles/Konqi/Contents/Resources/Footer.html %%DATADIR%%/styles/Konqi/Contents/Resources/Header.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Status.html %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_trans.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre1.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre2.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre3.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre4.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre5.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre6.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-blue.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-green.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-moon.jpg %%DATADIR%%/styles/Konqi/Contents/Resources/main.css %%DATADIR%%/styles/Konqi/Contents/Resources/puce.png %%DATADIR%%/styles/Kopete/Contents/Resources/Footer.html %%DATADIR%%/styles/Kopete/Contents/Resources/Header.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Status.html %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Big_pictures.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/images/action.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/important.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Kopete/Contents/Resources/images/system.png %%DATADIR%%/styles/Kopete/Contents/Resources/main.css %%DATADIR%%/styles/Pidgin/Contents/Info.plist %%DATADIR%%/styles/Pidgin/Contents/Resources/Footer.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Header.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Status.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Contact-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Name-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/No-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Status-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Pidgin/Contents/Resources/main.css %%DATADIR%%/styles/Retropete/Contents/Resources/Footer.html %%DATADIR%%/styles/Retropete/Contents/Resources/Header.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Retropete/Contents/Resources/Status.html %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Retropete/Contents/Resources/main.css %%DATADIR%%/webpresence/webpresence_html.xsl %%DATADIR%%/webpresence/webpresence_html_images.xsl %%DATADIR%%/webpresence/webpresence_xhtml.xsl %%DATADIR%%/webpresence/webpresence_xhtml_images.xsl %%DATADIR%%_history/historychatui.rc %%DATADIR%%_history/historyui.rc share/kservices5/aim.protocol share/kservices5/chatwindow.desktop share/kservices5/emailwindow.desktop share/kservices5/kconfiguredialog/kopete_addbookmarks_config.desktop share/kservices5/kconfiguredialog/kopete_autoreplace_config.desktop share/kservices5/kconfiguredialog/kopete_highlight_config.desktop share/kservices5/kconfiguredialog/kopete_history_config.desktop share/kservices5/kconfiguredialog/kopete_otr_config.desktop share/kservices5/kconfiguredialog/kopete_privacy_config.desktop share/kservices5/kconfiguredialog/kopete_texteffect_config.desktop share/kservices5/kconfiguredialog/kopete_urlpicpreview_config.desktop share/kservices5/kconfiguredialog/kopete_webpresence_config.desktop share/kservices5/kopete_accountconfig.desktop share/kservices5/kopete_addbookmarks.desktop share/kservices5/kopete_aim.desktop share/kservices5/kopete_appearanceconfig.desktop share/kservices5/kopete_autoreplace.desktop share/kservices5/kopete_avdeviceconfig.desktop share/kservices5/kopete_behaviorconfig.desktop share/kservices5/kopete_bonjour.desktop share/kservices5/kopete_chatwindowconfig.desktop share/kservices5/kopete_contactnotes.desktop share/kservices5/kopete_groupwise.desktop share/kservices5/kopete_highlight.desktop share/kservices5/kopete_history.desktop share/kservices5/kopete_icq.desktop share/kservices5/kopete_jabber.desktop share/kservices5/kopete_otr.desktop share/kservices5/kopete_pluginconfig.desktop share/kservices5/kopete_privacy.desktop share/kservices5/kopete_qq.desktop share/kservices5/kopete_statistics.desktop share/kservices5/kopete_statusconfig.desktop share/kservices5/kopete_testbed.desktop share/kservices5/kopete_texteffect.desktop share/kservices5/kopete_urlpicpreview.desktop share/kservices5/kopete_webpresence.desktop share/kservices5/kopete_wp.desktop share/kservices5/kopete_yahoo.desktop share/kservices5/xmpp.protocol share/kservicetypes5/kopeteplugin.desktop share/kservicetypes5/kopeteprotocol.desktop share/kservicetypes5/kopeteui.desktop share/kxmlgui5/kopete/kopetechatwindow.rc share/kxmlgui5/kopete/kopeteemailwindow.rc share/kxmlgui5/kopete/kopeteui.rc share/kxmlgui5/kopete/privacychatui.rc share/kxmlgui5/kopete/privacyui.rc share/kxmlgui5/kopete_groupwise/gwchatui.rc share/kxmlgui5/kopete_otr/otrchatui.rc share/kxmlgui5/kopete_otr/otrui.rc share/locale/ar/LC_MESSAGES/kio_jabberdisco.mo share/locale/ar/LC_MESSAGES/kopete.mo share/locale/ast/LC_MESSAGES/kio_jabberdisco.mo share/locale/ast/LC_MESSAGES/kopete.mo share/locale/bg/LC_MESSAGES/kio_jabberdisco.mo share/locale/bg/LC_MESSAGES/kopete.mo share/locale/bs/LC_MESSAGES/kio_jabberdisco.mo share/locale/bs/LC_MESSAGES/kopete.mo share/locale/ca/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca/LC_MESSAGES/kopete.mo share/locale/ca@valencia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca@valencia/LC_MESSAGES/kopete.mo share/locale/cs/LC_MESSAGES/kio_jabberdisco.mo share/locale/cs/LC_MESSAGES/kopete.mo share/locale/da/LC_MESSAGES/kio_jabberdisco.mo share/locale/da/LC_MESSAGES/kopete.mo share/locale/de/LC_MESSAGES/kio_jabberdisco.mo share/locale/de/LC_MESSAGES/kopete.mo share/locale/el/LC_MESSAGES/kio_jabberdisco.mo share/locale/el/LC_MESSAGES/kopete.mo share/locale/en_GB/LC_MESSAGES/kio_jabberdisco.mo share/locale/en_GB/LC_MESSAGES/kopete.mo share/locale/eo/LC_MESSAGES/kio_jabberdisco.mo share/locale/eo/LC_MESSAGES/kopete.mo share/locale/es/LC_MESSAGES/kio_jabberdisco.mo share/locale/es/LC_MESSAGES/kopete.mo share/locale/et/LC_MESSAGES/kio_jabberdisco.mo share/locale/et/LC_MESSAGES/kopete.mo share/locale/eu/LC_MESSAGES/kio_jabberdisco.mo share/locale/eu/LC_MESSAGES/kopete.mo share/locale/fa/LC_MESSAGES/kio_jabberdisco.mo share/locale/fa/LC_MESSAGES/kopete.mo share/locale/fi/LC_MESSAGES/kio_jabberdisco.mo share/locale/fi/LC_MESSAGES/kopete.mo share/locale/fr/LC_MESSAGES/kio_jabberdisco.mo share/locale/fr/LC_MESSAGES/kopete.mo share/locale/ga/LC_MESSAGES/kio_jabberdisco.mo share/locale/ga/LC_MESSAGES/kopete.mo share/locale/gl/LC_MESSAGES/kio_jabberdisco.mo share/locale/gl/LC_MESSAGES/kopete.mo share/locale/he/LC_MESSAGES/kopete.mo share/locale/hi/LC_MESSAGES/kio_jabberdisco.mo share/locale/hi/LC_MESSAGES/kopete.mo share/locale/hr/LC_MESSAGES/kio_jabberdisco.mo share/locale/hr/LC_MESSAGES/kopete.mo share/locale/hu/LC_MESSAGES/kio_jabberdisco.mo share/locale/hu/LC_MESSAGES/kopete.mo share/locale/ia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ia/LC_MESSAGES/kopete.mo share/locale/is/LC_MESSAGES/kio_jabberdisco.mo share/locale/is/LC_MESSAGES/kopete.mo share/locale/it/LC_MESSAGES/kio_jabberdisco.mo share/locale/it/LC_MESSAGES/kopete.mo share/locale/ja/LC_MESSAGES/kio_jabberdisco.mo share/locale/ja/LC_MESSAGES/kopete.mo share/locale/kk/LC_MESSAGES/kio_jabberdisco.mo share/locale/kk/LC_MESSAGES/kopete.mo share/locale/km/LC_MESSAGES/kio_jabberdisco.mo share/locale/km/LC_MESSAGES/kopete.mo share/locale/ko/LC_MESSAGES/kio_jabberdisco.mo share/locale/ko/LC_MESSAGES/kopete.mo share/locale/lt/LC_MESSAGES/kio_jabberdisco.mo share/locale/lt/LC_MESSAGES/kopete.mo share/locale/lv/LC_MESSAGES/kio_jabberdisco.mo share/locale/lv/LC_MESSAGES/kopete.mo share/locale/mr/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kopete.mo share/locale/nb/LC_MESSAGES/kio_jabberdisco.mo share/locale/nb/LC_MESSAGES/kopete.mo share/locale/nds/LC_MESSAGES/kio_jabberdisco.mo share/locale/nds/LC_MESSAGES/kopete.mo share/locale/nl/LC_MESSAGES/kio_jabberdisco.mo share/locale/nl/LC_MESSAGES/kopete.mo share/locale/nn/LC_MESSAGES/kio_jabberdisco.mo share/locale/nn/LC_MESSAGES/kopete.mo share/locale/pa/LC_MESSAGES/kio_jabberdisco.mo share/locale/pa/LC_MESSAGES/kopete.mo share/locale/pl/LC_MESSAGES/kio_jabberdisco.mo share/locale/pl/LC_MESSAGES/kopete.mo share/locale/pt/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt/LC_MESSAGES/kopete.mo share/locale/pt_BR/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt_BR/LC_MESSAGES/kopete.mo share/locale/ro/LC_MESSAGES/kio_jabberdisco.mo share/locale/ro/LC_MESSAGES/kopete.mo share/locale/ru/LC_MESSAGES/kio_jabberdisco.mo share/locale/ru/LC_MESSAGES/kopete.mo share/locale/sk/LC_MESSAGES/kio_jabberdisco.mo share/locale/sk/LC_MESSAGES/kopete.mo share/locale/sl/LC_MESSAGES/kio_jabberdisco.mo share/locale/sl/LC_MESSAGES/kopete.mo share/locale/sr/LC_MESSAGES/kio_jabberdisco.mo share/locale/sr/LC_MESSAGES/kopete.mo share/locale/sv/LC_MESSAGES/kio_jabberdisco.mo share/locale/sv/LC_MESSAGES/kopete.mo share/locale/tr/LC_MESSAGES/kio_jabberdisco.mo share/locale/tr/LC_MESSAGES/kopete.mo share/locale/ug/LC_MESSAGES/kio_jabberdisco.mo share/locale/ug/LC_MESSAGES/kopete.mo share/locale/uk/LC_MESSAGES/kio_jabberdisco.mo share/locale/uk/LC_MESSAGES/kopete.mo share/locale/wa/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kopete.mo share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_TW/LC_MESSAGES/kopete.mo share/sounds/Kopete_Event.ogg share/sounds/Kopete_Received.ogg share/sounds/Kopete_Sent.ogg share/sounds/Kopete_User_is_Online.ogg Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 472129) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-accounts-kcm-18.04.1.tar.xz) = dd22f1e2a9ee78689d0b8c8680a97d45ddcebf70131277e1dfe132f39edd1dc6 -SIZE (KDE/applications/18.04.1/ktp-accounts-kcm-18.04.1.tar.xz) = 263620 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-accounts-kcm-18.04.2.tar.xz) = ef8561ddc7767b8bdf7ec76affa9941a820d96e9acab846d35f8e7c0d125def1 +SIZE (KDE/applications/18.04.2/ktp-accounts-kcm-18.04.2.tar.xz) = 263812 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 472129) +++ head/net-im/ktp-approver/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-approver-18.04.1.tar.xz) = ff8d9649feacfab7bc8c44ab212139fa6e630a117355f2473c384c3a7fa0899c -SIZE (KDE/applications/18.04.1/ktp-approver-18.04.1.tar.xz) = 37076 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-approver-18.04.2.tar.xz) = 59b8a69e2849c0d4d23e69100847fba99433799c774e1cb4a3cb0a36428b30c7 +SIZE (KDE/applications/18.04.2/ktp-approver-18.04.2.tar.xz) = 37204 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 472129) +++ head/net-im/ktp-auth-handler/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-auth-handler-18.04.1.tar.xz) = 2aab757c0c8fe1799fbd018170d7d3b2dac8d8d4177ddc70443aa4887de09352 -SIZE (KDE/applications/18.04.1/ktp-auth-handler-18.04.1.tar.xz) = 46428 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/ktp-auth-handler-18.04.2.tar.xz) = ddbcb0710d77ccd59bcfc435c305ccfc621bedd3184b67a73f83c93f4cb39507 +SIZE (KDE/applications/18.04.2/ktp-auth-handler-18.04.2.tar.xz) = 46460 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 472129) +++ head/net-im/ktp-call-ui/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-call-ui-18.04.1.tar.xz) = 276e6381a829bed0b24dc6ecdca485edfdd3617aa5a723e8b565ae03d12751de -SIZE (KDE/applications/18.04.1/ktp-call-ui-18.04.1.tar.xz) = 96688 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-call-ui-18.04.2.tar.xz) = dc6193a9838a1e36c6c05ea2f50853408276d5d2b74f8a828e0565f16c4230e1 +SIZE (KDE/applications/18.04.2/ktp-call-ui-18.04.2.tar.xz) = 96808 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 472129) +++ head/net-im/ktp-common-internals/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-common-internals-18.04.1.tar.xz) = bbf9dc50e54c7b3d9e846e52706e4b3749fb3d6087667dc04c636686ede7934b -SIZE (KDE/applications/18.04.1/ktp-common-internals-18.04.1.tar.xz) = 442268 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/ktp-common-internals-18.04.2.tar.xz) = 6209a0f524ce575a7f6cbb7754050e41e0ac6d484b8cc174812743de110db18e +SIZE (KDE/applications/18.04.2/ktp-common-internals-18.04.2.tar.xz) = 442460 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 472129) +++ head/net-im/ktp-contact-list/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-contact-list-18.04.1.tar.xz) = 6204cb9585cfb69bfa592ae8429c5e69d6fc6883132c7c6b2b615f90af7206a0 -SIZE (KDE/applications/18.04.1/ktp-contact-list-18.04.1.tar.xz) = 146448 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/ktp-contact-list-18.04.2.tar.xz) = 997952b7cf3802994499ab7df2d9a25fae4ad3c0aeeab07355c2e07d6a920a59 +SIZE (KDE/applications/18.04.2/ktp-contact-list-18.04.2.tar.xz) = 146660 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 472129) +++ head/net-im/ktp-contact-runner/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-contact-runner-18.04.1.tar.xz) = 5a1ce9e2046ec9dbbf4bd3c17454fc322189bb62098e00f5316d169e6ea93d2d -SIZE (KDE/applications/18.04.1/ktp-contact-runner-18.04.1.tar.xz) = 42512 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/ktp-contact-runner-18.04.2.tar.xz) = f29adbd0bd9bff706abbff661cdb9c0b388e107511af2465dc848bd6bade5a7e +SIZE (KDE/applications/18.04.2/ktp-contact-runner-18.04.2.tar.xz) = 42588 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 472129) +++ head/net-im/ktp-desktop-applets/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-desktop-applets-18.04.1.tar.xz) = 108b1df0642f96363d4dc1e3f77b33010e387ad49b8f33cdba7ce5c718fa2d4b -SIZE (KDE/applications/18.04.1/ktp-desktop-applets-18.04.1.tar.xz) = 43104 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-desktop-applets-18.04.2.tar.xz) = 8fa781e516803d5fbbd3fa3d3551bee15bd186993244dacbc6df616ceebb0da7 +SIZE (KDE/applications/18.04.2/ktp-desktop-applets-18.04.2.tar.xz) = 43216 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 472129) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-filetransfer-handler-18.04.1.tar.xz) = 02a000b9f60d84340763fa3e111f4d6eb69c031fecbb7a22ced74ec3d4e3600f -SIZE (KDE/applications/18.04.1/ktp-filetransfer-handler-18.04.1.tar.xz) = 46016 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-filetransfer-handler-18.04.2.tar.xz) = 45b6bb01a10bf16cfbae93d485932665e595610f23b01477ca7e7a9d6ca9f6f9 +SIZE (KDE/applications/18.04.2/ktp-filetransfer-handler-18.04.2.tar.xz) = 46108 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 472129) +++ head/net-im/ktp-kded-module/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-kded-module-18.04.1.tar.xz) = a47217b54f50da3f68930396be4b0699ff063f14cd6f193b3f082efd6cd87b34 -SIZE (KDE/applications/18.04.1/ktp-kded-module-18.04.1.tar.xz) = 93268 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/ktp-kded-module-18.04.2.tar.xz) = f57aad1f0612c81dab05fca2d1aa3408047b485c9e9075ea85ff6116662aa587 +SIZE (KDE/applications/18.04.2/ktp-kded-module-18.04.2.tar.xz) = 93412 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 472129) +++ head/net-im/ktp-send-file/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-send-file-18.04.1.tar.xz) = 1ec946b032e6ef2dbb2cf32e59cd97c6898cc5eeddc070ff3ac85455f57a7bdc -SIZE (KDE/applications/18.04.1/ktp-send-file-18.04.1.tar.xz) = 28776 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-send-file-18.04.2.tar.xz) = 49c80d7426bfc8e0f60d59f61689e2df297ffdce91b0f2283841541efff03f96 +SIZE (KDE/applications/18.04.2/ktp-send-file-18.04.2.tar.xz) = 28864 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 472129) +++ head/net-im/ktp-text-ui/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756103 -SHA256 (KDE/applications/18.04.1/ktp-text-ui-18.04.1.tar.xz) = 666dbb486c5bdcab5fee68b4d9bf2621459c63f1f5edce62cfb4ed547ff45dff -SIZE (KDE/applications/18.04.1/ktp-text-ui-18.04.1.tar.xz) = 469716 +TIMESTAMP = 1528216947 +SHA256 (KDE/applications/18.04.2/ktp-text-ui-18.04.2.tar.xz) = 39b0bd20a0c5651da0519d3fd999c590a806d4dd80ccfbf1c92fa5ae740bd16d +SIZE (KDE/applications/18.04.2/ktp-text-ui-18.04.2.tar.xz) = 469676 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 472129) +++ head/print/print-manager/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/print-manager-18.04.1.tar.xz) = 1d7ba7d46533934862a5fefcd33d8f7453baac6d5d3b8b2b759654ef5de08282 -SIZE (KDE/applications/18.04.1/print-manager-18.04.1.tar.xz) = 238656 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/print-manager-18.04.2.tar.xz) = e9d9c671e3e1095210d68a9f94ef8309a1c05e3e54266529112ab88c93aca7cd +SIZE (KDE/applications/18.04.2/print-manager-18.04.2.tar.xz) = 238860 Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 472129) +++ head/science/kalzium/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/kalzium-18.04.1.tar.xz) = 2c9681d8507210ce3daee289c89daec9a1b45c955e1ce9d85e35a7612896a203 -SIZE (KDE/applications/18.04.1/kalzium-18.04.1.tar.xz) = 24458824 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kalzium-18.04.2.tar.xz) = c150ad7a013cd41121474e725f68e3e7292214fb6b011012f805e17bb8de118b +SIZE (KDE/applications/18.04.2/kalzium-18.04.2.tar.xz) = 24460432 Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 472129) +++ head/science/step/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/step-18.04.1.tar.xz) = 3f78db47b68c667717a9972d0346ba4b244e191dbfb123f9df928bb3a5969dff -SIZE (KDE/applications/18.04.1/step-18.04.1.tar.xz) = 862508 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/step-18.04.2.tar.xz) = 84331ececf30a08031eaf1197f0edd12b1c12677b273b72a6ec680dd154e937c +SIZE (KDE/applications/18.04.2/step-18.04.2.tar.xz) = 862796 Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 472129) +++ head/security/kgpg/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/kgpg-18.04.1.tar.xz) = d0436ada4ba06a0eeeaddfa0b460d58b76519d16c7dbbe67c743e346f0b3532c -SIZE (KDE/applications/18.04.1/kgpg-18.04.1.tar.xz) = 2821544 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/kgpg-18.04.2.tar.xz) = c486b31d058aa2dfdd4a2b99691f51772f990491140b327abedf3e3a43d552e4 +SIZE (KDE/applications/18.04.2/kgpg-18.04.2.tar.xz) = 2822056 Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 472129) +++ head/security/kleopatra/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/kleopatra-18.04.1.tar.xz) = e39e1e00b17d392f05ceced4c392881b90032d30835b429ce2e1356deaeed22b -SIZE (KDE/applications/18.04.1/kleopatra-18.04.1.tar.xz) = 1900604 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/kleopatra-18.04.2.tar.xz) = 0aa0f5d72f42a41d213938c4ff2007dc595fba8118bbc1ec74503cf9cb90c630 +SIZE (KDE/applications/18.04.2/kleopatra-18.04.2.tar.xz) = 1902360 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 472129) +++ head/security/kwalletmanager/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/kwalletmanager-18.04.1.tar.xz) = 5fea1d7c1793a7b3a54c15d90bc225a6b05af69d7aff8ebad9c588d90264406e -SIZE (KDE/applications/18.04.1/kwalletmanager-18.04.1.tar.xz) = 779080 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/kwalletmanager-18.04.2.tar.xz) = 97af739c0ecf9278eb4d4bc8ebdb3cc71d179ac34348302d076d0491b4d83252 +SIZE (KDE/applications/18.04.2/kwalletmanager-18.04.2.tar.xz) = 779268 Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 472129) +++ head/security/libkleo/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756093 -SHA256 (KDE/applications/18.04.1/libkleo-18.04.1.tar.xz) = 491e539b41ca0ed06df7aaac9f5f6b5d97a164a8f7bc330116ce43bdd28e7e1a -SIZE (KDE/applications/18.04.1/libkleo-18.04.1.tar.xz) = 318356 +TIMESTAMP = 1528216937 +SHA256 (KDE/applications/18.04.2/libkleo-18.04.2.tar.xz) = 1549c3682111cee6559d2c4f398fd78476860226012a240b5fb1d286309da754 +SIZE (KDE/applications/18.04.2/libkleo-18.04.2.tar.xz) = 318620 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 472129) +++ head/sysutils/baloo-widgets/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/baloo-widgets-18.04.1.tar.xz) = 9815ab9730998556503a44041b48930df2402a3ad4f4d778c422367ae9b102af -SIZE (KDE/applications/18.04.1/baloo-widgets-18.04.1.tar.xz) = 244968 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/baloo-widgets-18.04.2.tar.xz) = b9dfb1400ad3be2051008b511807cebe455ace81cb29d83d704c57e276605943 +SIZE (KDE/applications/18.04.2/baloo-widgets-18.04.2.tar.xz) = 244876 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 472129) +++ head/sysutils/filelight/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/filelight-18.04.1.tar.xz) = 5a197d16b36b04eafd53385e7f50ac31930953ac8ad8ae021c02953a064926f0 -SIZE (KDE/applications/18.04.1/filelight-18.04.1.tar.xz) = 659056 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/filelight-18.04.2.tar.xz) = c2bf1b4f529d38d4a8885217377771052b5a46502ad411dabf1b3f42b9fb1cc4 +SIZE (KDE/applications/18.04.2/filelight-18.04.2.tar.xz) = 659100 Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 472129) +++ head/sysutils/k3b/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/k3b-18.04.1.tar.xz) = 87dadfb54b33a772efc93b4757e44cbbbb16f97fe064702f8215903c0c26c85f -SIZE (KDE/applications/18.04.1/k3b-18.04.1.tar.xz) = 10596384 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/k3b-18.04.2.tar.xz) = d6c3ec1ee2952421f1585167185409eb15ddeadabb4d1fd6df0478a2588ac6fb +SIZE (KDE/applications/18.04.2/k3b-18.04.2.tar.xz) = 10595932 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 472129) +++ head/sysutils/kbackup/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kbackup-18.04.1.tar.xz) = dfeb05d298901a00eabbc463a10c41649e5a35ba8e521659554db16f1aa965bf -SIZE (KDE/applications/18.04.1/kbackup-18.04.1.tar.xz) = 341332 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kbackup-18.04.2.tar.xz) = c6b89551b4c0986ca4e8726c5f8fa198f103e553c8f30bc7bb900627ab58c7df +SIZE (KDE/applications/18.04.2/kbackup-18.04.2.tar.xz) = 341376 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 472129) +++ head/sysutils/kcron/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kcron-18.04.1.tar.xz) = 19de3e4d597413c71a6f4cb1baa446adc0a7aa5b32ee9c19997b9468b41993f2 -SIZE (KDE/applications/18.04.1/kcron-18.04.1.tar.xz) = 1056620 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kcron-18.04.2.tar.xz) = a732cead6dc6481effb3c08c64d880a58c4744a0ceea64597b8f668809d697db +SIZE (KDE/applications/18.04.2/kcron-18.04.2.tar.xz) = 1056680 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 472129) +++ head/sysutils/kdebugsettings/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/kdebugsettings-18.04.1.tar.xz) = 2f9efc642f8d625898ce8a625ad021c3e0302ae3a77e6282d9124f7315e3e5af -SIZE (KDE/applications/18.04.1/kdebugsettings-18.04.1.tar.xz) = 51776 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/kdebugsettings-18.04.2.tar.xz) = 577b0140efc3d83dba939334fb1ff650f23fdb2d95048a64e7e59d8c1ab5c04c +SIZE (KDE/applications/18.04.2/kdebugsettings-18.04.2.tar.xz) = 51804 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 472129) +++ head/sysutils/kdf/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kdf-18.04.1.tar.xz) = 0db96b0167a5689c17ba01793a37b5e78d7d16e8783c330a4e7a47fab648b8c2 -SIZE (KDE/applications/18.04.1/kdf-18.04.1.tar.xz) = 531576 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kdf-18.04.2.tar.xz) = 233fdb2dec68e60e830942832dced267311a1442b5eb2ae826ffcab172b19bb7 +SIZE (KDE/applications/18.04.2/kdf-18.04.2.tar.xz) = 531780 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 472129) +++ head/sysutils/kdialog/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kdialog-18.04.1.tar.xz) = 054c5778e6ef0c7d1cdf9dadbb195867c61865cca26aa1d2767d10c515ffad76 -SIZE (KDE/applications/18.04.1/kdialog-18.04.1.tar.xz) = 96468 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kdialog-18.04.2.tar.xz) = 76e68f5b2dedf05572598bc4528f22f1cdc288a17d8e81e7ab0b9ecb54b3db2d +SIZE (KDE/applications/18.04.2/kdialog-18.04.2.tar.xz) = 96488 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 472129) +++ head/sysutils/kfloppy/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kfloppy-18.04.1.tar.xz) = a94606f45c66deed6a06fd835f5fadb60cc219db35e8aa7510e1d0f813c88367 -SIZE (KDE/applications/18.04.1/kfloppy-18.04.1.tar.xz) = 199872 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kfloppy-18.04.2.tar.xz) = 0b32db5aacf93c5b011a56e256e607a450300d18c107d18aab877b9d304eed22 +SIZE (KDE/applications/18.04.2/kfloppy-18.04.2.tar.xz) = 199976 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 472129) +++ head/sysutils/khelpcenter/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756089 -SHA256 (KDE/applications/18.04.1/khelpcenter-18.04.1.tar.xz) = e145adac68300028154bc4419a8010f058efb11fde554a326f02515c7fd1e302 -SIZE (KDE/applications/18.04.1/khelpcenter-18.04.1.tar.xz) = 3045748 +TIMESTAMP = 1528216933 +SHA256 (KDE/applications/18.04.2/khelpcenter-18.04.2.tar.xz) = ec8863da5f3fe55627d967569446ce9496783a50b3b5274f6d4168f013346a8f +SIZE (KDE/applications/18.04.2/khelpcenter-18.04.2.tar.xz) = 3828152 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 472129) +++ head/sysutils/ksystemlog/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/ksystemlog-18.04.1.tar.xz) = e11ababd1b2d019d892ccd86dc2920c4d8a55d3946ee35a8498ee62e7f5bd9fb -SIZE (KDE/applications/18.04.1/ksystemlog-18.04.1.tar.xz) = 1784856 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/ksystemlog-18.04.2.tar.xz) = a31342534528514258ab7a9db15976e37d78a85b0cf784da1ef732a4c8e3a163 +SIZE (KDE/applications/18.04.2/ksystemlog-18.04.2.tar.xz) = 1784856 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 472129) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/signon-kwallet-extension-18.04.1.tar.xz) = 2bd29ede45295f3a67c94d2ef9db1e3b7cddb5316c4a7fcd8f1c18dc03541b76 -SIZE (KDE/applications/18.04.1/signon-kwallet-extension-18.04.1.tar.xz) = 10692 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/signon-kwallet-extension-18.04.2.tar.xz) = 7c019cf8ec8cc84718335d18d95be0ccab9664c725879acabccbabebf3ad56e0 +SIZE (KDE/applications/18.04.2/signon-kwallet-extension-18.04.2.tar.xz) = 10692 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 472129) +++ head/sysutils/sweeper/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/sweeper-18.04.1.tar.xz) = 35e688bd2c3d3b637c63884aaedbe97a37bfb0240351be0b52372bc15bf71639 -SIZE (KDE/applications/18.04.1/sweeper-18.04.1.tar.xz) = 369036 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/sweeper-18.04.2.tar.xz) = c3fe45ff54260bb27e5589ba70f131168ef8806d141d0b0b20dffa360f50e1b7 +SIZE (KDE/applications/18.04.2/sweeper-18.04.2.tar.xz) = 369192 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 472129) +++ head/textproc/kompare/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/kompare-18.04.1.tar.xz) = e958d26724297ab9ba638edf3f1894c7df51150c65475f5f8362d4e50a11ae4e -SIZE (KDE/applications/18.04.1/kompare-18.04.1.tar.xz) = 712084 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/kompare-18.04.2.tar.xz) = 89ade212c8e08a7859615dd01d8de7a74cbe2c9af9dcdaf55507e1b6b2da202d +SIZE (KDE/applications/18.04.2/kompare-18.04.2.tar.xz) = 712272 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 472129) +++ head/textproc/libkomparediff2/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/libkomparediff2-18.04.1.tar.xz) = dbff5b172d29b3ef28a954d25c1a4794b0c90e8ac385746c9bb02e1720c80034 -SIZE (KDE/applications/18.04.1/libkomparediff2-18.04.1.tar.xz) = 176804 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/libkomparediff2-18.04.2.tar.xz) = 87808eb8218b8a63ae9e7dd2d80f50de0f01b2cfae4e4acda66fdff86b217954 +SIZE (KDE/applications/18.04.2/libkomparediff2-18.04.2.tar.xz) = 176844 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 472129) +++ head/x11/konsole/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756092 -SHA256 (KDE/applications/18.04.1/konsole-18.04.1.tar.xz) = 86431f84ac4e452d1804db1ab511251f6df60d4c0ce7950c5595be604689de42 -SIZE (KDE/applications/18.04.1/konsole-18.04.1.tar.xz) = 1043036 +TIMESTAMP = 1528216936 +SHA256 (KDE/applications/18.04.2/konsole-18.04.2.tar.xz) = 5d4f4f429cd246fe4021f628dd7ec4e53fe6168e868c69a777a29adb7a5a1967 +SIZE (KDE/applications/18.04.2/konsole-18.04.2.tar.xz) = 1043764 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 472129) +++ head/x11-clocks/kteatime/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756090 -SHA256 (KDE/applications/18.04.1/kteatime-18.04.1.tar.xz) = 0df61fad02466442127e36989adbf7cdbd0a74c2efbbc807d3f50328404c0409 -SIZE (KDE/applications/18.04.1/kteatime-18.04.1.tar.xz) = 297888 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/kteatime-18.04.2.tar.xz) = 2c0c70470d647d9dd240f3aeba3bcb16d5ccdfeae8674f3371e5e50b08cbb1ae +SIZE (KDE/applications/18.04.2/kteatime-18.04.2.tar.xz) = 298032 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 472129) +++ head/x11-clocks/ktimer/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756091 -SHA256 (KDE/applications/18.04.1/ktimer-18.04.1.tar.xz) = 77cba66b459377001940b03665f45b6e07b59b026c128be891ba880465e5608e -SIZE (KDE/applications/18.04.1/ktimer-18.04.1.tar.xz) = 455220 +TIMESTAMP = 1528216934 +SHA256 (KDE/applications/18.04.2/ktimer-18.04.2.tar.xz) = a6c7f2d54a7e439f82353fc8c03ff93226ff04300e5373f6878065ce4f2e4bb6 +SIZE (KDE/applications/18.04.2/ktimer-18.04.2.tar.xz) = 455708 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 472129) +++ head/x11-fm/dolphin/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/dolphin-18.04.1.tar.xz) = 50db0e6c59383c3141ba96f733d36ac63b8f4d3e1f3d233b4a27da5931179587 -SIZE (KDE/applications/18.04.1/dolphin-18.04.1.tar.xz) = 4849868 +TIMESTAMP = 1528216946 +SHA256 (KDE/applications/18.04.2/dolphin-18.04.2.tar.xz) = b27ecfc4864638d88f2efd59f183d469f801ba0d85c37ca872e85ed70ba8683e +SIZE (KDE/applications/18.04.2/dolphin-18.04.2.tar.xz) = 4850780 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 472129) +++ head/x11-fm/konqueror/distinfo (revision 472130) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525756102 -SHA256 (KDE/applications/18.04.1/konqueror-18.04.1.tar.xz) = 92e9c22d47f5d04944f97ea64211c2674ce41cfc2b4ae2fb48b1eb536ff8281d -SIZE (KDE/applications/18.04.1/konqueror-18.04.1.tar.xz) = 7729888 +TIMESTAMP = 1528216945 +SHA256 (KDE/applications/18.04.2/konqueror-18.04.2.tar.xz) = 90b421a9af49a5ac9b5dfb7150ded2153aadaf38ae07de06d6549e0b847bc2f3 +SIZE (KDE/applications/18.04.2/konqueror-18.04.2.tar.xz) = 7731372