Hello community,
here is the log from the commit of package plasma-browser-integration for
openSUSE:Factory checked in at 2018-06-15 14:36:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma-browser-integration (Old)
and /work/SRC/openSUSE:Factory/.plasma-browser-integration.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-browser-integration"
Fri Jun 15 14:36:49 2018 rev:3 rq:615771 version:5.12.90
Changes:
--------
---
/work/SRC/openSUSE:Factory/plasma-browser-integration/plasma-browser-integration.changes
2018-05-11 14:34:52.081720082 +0200
+++
/work/SRC/openSUSE:Factory/.plasma-browser-integration.new/plasma-browser-integration.changes
2018-06-15 14:36:50.717038308 +0200
@@ -1,0 +2,23 @@
+Sat May 19 14:16:38 CEST 2018 - [email protected]
+
+- Update to 5.12.90
+ * New feature release
+ * For more details please see:
+ * https://www.kde.org/announcements/plasma-5.12.90.php
+- Changes since 5.12.80:
+ * Bump version number of extension in preparation for Plasma 5.13 beta
+ * Set variable for chromium install dir
+ * cmake: Don't install chrome manifest to ubuntu specific location
(kde#393846)
+ * Add link to Community Wiki page to About dialog
+ * Remove superfluous <small> tags
+ * Remove dead code and shut up
+ * Implement reporting playback state via Media Sessions API
+ * Observe entire DOM
+ * UUID might start with a number which a variable is not allowed to
+ * Also "randomize" plasmaMediaSessions global variable
+ * WIP: Show SNI to install browser-side extension
+ * Properly fix the native messaging host file
+ * Hopefully handle messages spread across lines in .po files
+ * Make "Translated by" credit work like in KAboutData
+
+-------------------------------------------------------------------
Old:
----
_service
plasma-browser-integration-5.12.80git.20180502T081035~2c9d903.tar.xz
New:
----
plasma-browser-integration-5.12.90.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma-browser-integration.spec ++++++
--- /var/tmp/diff_new_pack.rBrimI/_old 2018-06-15 14:36:51.381014021 +0200
+++ /var/tmp/diff_new_pack.rBrimI/_new 2018-06-15 14:36:51.385013874 +0200
@@ -18,8 +18,9 @@
%define kf5_version 5.42.0
%bcond_with browser_extension
+%bcond_without lang
Name: plasma-browser-integration
-Version: 5.12.80git.20180502T081035~2c9d903
+Version: 5.12.90
Release: 0
Summary: Helper for the KDE Plasma Browser Integration
License: GPL-3.0-or-later
@@ -28,6 +29,7 @@
Source0: plasma-browser-integration-%{version}.tar.xz
BuildRequires: extra-cmake-modules >= %{kf5_version}
BuildRequires: cmake(KF5Activities) >= %{kf5_version}
+BuildRequires: cmake(KF5DBusAddons) >= %{kf5_version}
BuildRequires: cmake(KF5I18n) >= %{kf5_version}
BuildRequires: cmake(KF5KIO) >= %{kf5_version}
BuildRequires: cmake(KF5Notifications) >= %{kf5_version}
@@ -36,6 +38,15 @@
BuildRequires: cmake(Qt5Core) >= 5.9.0
BuildRequires: cmake(Qt5DBus) >= 5.9.0
BuildRequires: cmake(Qt5Gui) >= 5.9.0
+%if 0%{?suse_version} < 1330
+# It does not build with the default compiler (GCC 4.8) on Leap 42.x
+BuildRequires: gcc7-c++
+%endif
+Supplements: packageand(plasma5-workspace:MozillaFirefox)
+Supplements: packageand(plasma5-workspace:chromium)
+Supplements: packageand(plasma5-workspace:GoogleChrome)
+Supplements: packageand(plasma5-workspace:opera)
+Supplements: packageand(plasma5-workspace:vivaldi)
%description
This package contains a helper binary necessary for the WebExtension to
@@ -50,10 +61,18 @@
This package contains a WebExtension to integrate the browser better into
KDE Plasma.
+%lang_package
+
%prep
%setup -q
%build
+%if 0%{?suse_version} < 1330
+ # It does not build with the default compiler (GCC 4.8) on Leap 42.x
+ export CC=gcc-7
+ export CXX=g++-7
+%endif
+
%if %{with browser_extension}
%cmake_kf5 -d build -- -DINSTALL_CHROME_MANIFEST=1
%else
@@ -68,13 +87,19 @@
# Move mozilla native messaging file to correct location
mv %{buildroot}%{_libexecdir}/mozilla %{buildroot}%{_libdir}
fi
+ %if %{with lang}
+ %find_lang %{name} --all-name
+ %endif
%files
-%license COPYING-GPL3
+%license COPYING*
+%dir %{_kf5_plugindir}/kf5
+%dir %{_kf5_plugindir}/kf5/kded
%dir %{_libdir}/mozilla
%dir %{_sysconfdir}/chromium
%dir %{_sysconfdir}/opt/chrome
%{_kf5_bindir}/plasma-browser-integration-host
+%{_kf5_plugindir}/kf5/kded/browserintegrationreminder.so
%{_kf5_servicesdir}/plasma-runner-browsertabs.desktop
%{_libdir}/mozilla/native-messaging-hosts
%{_libqt5_plugindir}/krunner_browsertabs.so
@@ -83,14 +108,18 @@
%if %{with browser_extension}
%files extension
-%license COPYING-GPL3
-%dir %{_datadir}/chromium-browser
-%dir %{_datadir}/chromium-browser/extensions
+%license COPYING*
+%dir %{_datadir}/chromium
+%dir %{_datadir}/chromium/extensions
%dir %{_datadir}/google-chrome
%dir %{_datadir}/google-chrome/extensions
-%{_datadir}/chromium-browser/extensions/cimiefiiaegbelhefglklhhakcgmhkai.json
+%{_datadir}/chromium/extensions/cimiefiiaegbelhefglklhhakcgmhkai.json
%{_datadir}/google-chrome/extensions/cimiefiiaegbelhefglklhhakcgmhkai.json
-%{_kf5_sharedir}/plasma-browser-integration
+%endif
+
+%if %{with lang}
+%files lang -f %{name}.lang
+%license COPYING*
%endif
%changelog
++++++ plasma-browser-integration-5.12.80git.20180502T081035~2c9d903.tar.xz ->
plasma-browser-integration-5.12.90.tar.xz ++++++
++++ 5228 lines of diff (skipped)