Hello community,
here is the log from the commit of package WindowMaker for openSUSE:13.1:Update checked in at 2015-09-30 13:04:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.1:Update/WindowMaker (Old)
and /work/SRC/openSUSE:13.1:Update/.WindowMaker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "WindowMaker"
Changes:
--------
New Changes file:
NO CHANGES FILE!!!
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ _link ++++++
--- /var/tmp/diff_new_pack.lG3gSx/_old 2015-09-30 13:04:22.000000000 +0200
+++ /var/tmp/diff_new_pack.lG3gSx/_new 2015-09-30 13:04:22.000000000 +0200
@@ -1 +1 @@
-<link package='WindowMaker.2738' cicount='copy' />
+<link package='WindowMaker.4036' cicount='copy' />
Hello community,
here is the log from the commit of package chromium for openSUSE:Factory checked in at 2015-09-30 06:37:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/chromium (Old)
and /work/SRC/openSUSE:Factory/.chromium.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "chromium"
Changes:
--------
--- /work/SRC/openSUSE:Factory/chromium/chromium.changes 2015-09-16 10:37:37.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes 2015-09-30 06:37:50.000000000 +0200
@@ -1,0 +2,17 @@
+Tue Sep 22 10:51:48 UTC 2015 - tittiatcoke(a)gmail.com
+
+- Update to Chromium 45.0.2454.99
+ - No changelog available
+
+- Add upstream patch correct-blacklist.diff
+ * This should restore the correct behavior of the option
+ --ignore-gpu-blacklist.
+ https://code.google.com/p/chromium/issues/detail?id=509336
+
+-------------------------------------------------------------------
+Wed Sep 16 20:06:33 UTC 2015 - tittiatcoke(a)gmail.com
+
+- Update to Chromium 45.0.2454.93
+ - No changelog available
+
+-------------------------------------------------------------------
Old:
----
chromium-45.0.2454.85.tar.xz
New:
----
chromium-45.0.2454.99.tar.xz
correct-blacklist.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ chromium.spec ++++++
--- /var/tmp/diff_new_pack.jvxP8x/_old 2015-09-30 06:37:59.000000000 +0200
+++ /var/tmp/diff_new_pack.jvxP8x/_new 2015-09-30 06:37:59.000000000 +0200
@@ -20,7 +20,7 @@
%define chromium_system_libs 0
Name: chromium
-Version: 45.0.2454.85
+Version: 45.0.2454.99
Release: 0
Summary: Google's opens source browser project
License: BSD-3-Clause and LGPL-2.1+
@@ -65,6 +65,8 @@
Patch9: no-clang-on-packman.diff
# PATCH-FIX-OPENSUSE gcc50-fixes.diff - Fix the GCC version detection
Patch10: gcc50-fixes.diff
+# PATCH-FIX-UPSTREAM correct-blacklist.diff
+Patch11: correct-blacklist.diff
# archlinux arm enhancement patches
Patch100: arm-webrtc-fix.patch
@@ -283,6 +285,7 @@
%if 0%{?suse_version} > 1320
%patch10 -p0
%endif
+%patch11 -p1
#Upstream fixes
++++++ chromium-45.0.2454.85.tar.xz -> chromium-45.0.2454.99.tar.xz ++++++
/work/SRC/openSUSE:Factory/chromium/chromium-45.0.2454.85.tar.xz /work/SRC/openSUSE:Factory/.chromium.new/chromium-45.0.2454.99.tar.xz differ: char 27, line 1
++++++ correct-blacklist.diff ++++++
diff --git a/chromecast/browser/cast_browser_main_parts.cc b/chromecast/browser/cast_browser_main_parts.cc
index c39b9d9..80e17d8 100644
--- a/chromecast/browser/cast_browser_main_parts.cc
+++ b/chromecast/browser/cast_browser_main_parts.cc
@@ -190,6 +190,11 @@
// Needed to fix a bug where the raster thread doesn't get scheduled for a
// substantial time (~5 seconds). See https://crbug.com/441895.
{ switches::kUseNormalPriorityForTileTaskWorkerThreads, "" },
+ // Needed so that our call to GpuDataManager::SetGLStrings doesn't race
+ // against GPU process creation (which is otherwise triggered from
+ // BrowserThreadsStarted). The GPU process will be created as soon as a
+ // renderer needs it, which always happens after main loop starts.
+ { switches::kDisableGpuEarlyInit, "" },
{ NULL, NULL }, // Termination
};
@@ -279,7 +284,10 @@
gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE,
cast_browser_process_->cast_screen());
#endif
+ return 0;
+}
+void CastBrowserMainParts::PreMainMessageLoopRun() {
#if !defined(OS_ANDROID)
// Set GL strings so GPU config code can make correct feature blacklisting/
// whitelisting decisions.
@@ -290,10 +298,6 @@
sys_info->GetGlVersion());
#endif // !defined(OS_ANDROID)
- return 0;
-}
-
-void CastBrowserMainParts::PreMainMessageLoopRun() {
scoped_refptr<PrefRegistrySimple> pref_registry(new PrefRegistrySimple());
metrics::RegisterPrefs(pref_registry.get());
cast_browser_process_->SetPrefService(
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
index 8d55e11..d1c8952 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -659,14 +659,6 @@
}
int BrowserMainLoop::PreCreateThreads() {
- // Need to initialize in-process GpuDataManager before creating threads.
- // It's unsafe to append the gpu command line switches to the global
- // CommandLine::ForCurrentProcess object after threads are created.
- // Also need to initialize before BrowserMainParts::PreCreateThreads, so
- // BrowserMainParts has a hook to set GpuDataManager strings before
- // starting Gpu process.
- GpuDataManagerImpl::GetInstance()->Initialize();
-
if (parts_) {
TRACE_EVENT0("startup",
"BrowserMainLoop::CreateThreads:PreCreateThreads");
@@ -709,6 +701,12 @@
}
#endif
+ // 1) Need to initialize in-process GpuDataManager before creating threads.
+ // It's unsafe to append the gpu command line switches to the global
+ // CommandLine::ForCurrentProcess object after threads are created.
+ // 2) Must be after parts_->PreCreateThreads to pick up chrome://flags.
+ GpuDataManagerImpl::GetInstance()->Initialize();
+
#if !defined(OS_IOS) && (!defined(GOOGLE_CHROME_BUILD) || defined(OS_ANDROID))
// Single-process is an unsupported and not fully tested mode, so
// don't enable it for official Chrome builds (except on Android).
Hello community,
here is the log from the commit of package docker for openSUSE:Factory checked in at 2015-09-30 05:53:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/docker (Old)
and /work/SRC/openSUSE:Factory/.docker.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "docker"
Changes:
--------
--- /work/SRC/openSUSE:Factory/docker/docker.changes 2015-09-17 09:20:36.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.docker.new/docker.changes 2015-09-30 05:53:27.000000000 +0200
@@ -9,0 +10,2 @@
+ fix bsc#946653 update do docker 1.8.2
+
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
Hello community,
here is the log from the commit of package mksusecd for openSUSE:Factory checked in at 2015-09-30 05:53:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mksusecd (Old)
and /work/SRC/openSUSE:Factory/.mksusecd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mksusecd"
Changes:
--------
--- /work/SRC/openSUSE:Factory/mksusecd/mksusecd.changes 2015-08-13 18:10:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mksusecd.new/mksusecd.changes 2015-09-30 05:53:23.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Sep 29 09:15:22 UTC 2015 - snwint(a)suse.com
+
+- Add link to linux-devtools documentation
+- 1.33
+
+-------------------------------------------------------------------
Old:
----
mksusecd-1.32.tar.xz
New:
----
mksusecd-1.33.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mksusecd.spec ++++++
--- /var/tmp/diff_new_pack.xNxiFx/_old 2015-09-30 05:53:24.000000000 +0200
+++ /var/tmp/diff_new_pack.xNxiFx/_new 2015-09-30 05:53:24.000000000 +0200
@@ -18,7 +18,7 @@
Name: mksusecd
-Version: 1.32
+Version: 1.33
Release: 0
Summary: Create SUSE Linux installation ISOs
License: GPL-3.0+
++++++ mksusecd-1.32.tar.xz -> mksusecd-1.33.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mksusecd-1.32/README.md new/mksusecd-1.33/README.md
--- old/mksusecd-1.32/README.md 2015-08-12 14:12:35.000000000 +0200
+++ new/mksusecd-1.33/README.md 2015-09-29 11:13:33.000000000 +0200
@@ -1,9 +1,10 @@
+# mksusecd
+
This is a tool to create SUSE Linux installation ISOs, either from scratch or
by modifying existing ISOs. A simple use case is to regenerate a ISO to
include fixes, see below.
-
-### Installation
+## Installation
Often you will need [mkdud][1] along with mksusecd. Both mksusecd and mkdud are
included in openSUSE Tumbleweed. So on openSUSE Tumbleweed installation is as
@@ -15,7 +16,7 @@
[1]: https://github.com/openSUSE/mkdud
-### Simple use case
+## Simple use case
We have a patch for yast2-core that is needed during installation and the
final system, e.g. for an AutoYaST installation. The patch is included in
@@ -36,3 +37,12 @@
Now you can use bug-free.iso as a replacement for openSUSE-13.2-DVD-x86_64.iso.
+## openSUSE Development
+
+The package is automatically submitted from the `master` branch to
+[system:install:head](https://build.opensuse.org/package/show/system:install:head/mksusecd)
+OBS project. From that place it is forwarded to
+[openSUSE Factory](https://build.opensuse.org/project/show/openSUSE:Factory).
+
+You can find more information about this workflow in the [linuxrc-devtools
+documentation](https://github.com/openSUSE/linuxrc-devtools#opensuse-development).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mksusecd-1.32/VERSION new/mksusecd-1.33/VERSION
--- old/mksusecd-1.32/VERSION 2015-08-12 14:12:35.000000000 +0200
+++ new/mksusecd-1.33/VERSION 2015-09-29 11:13:33.000000000 +0200
@@ -1 +1 @@
-1.32
+1.33
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mksusecd-1.32/changelog new/mksusecd-1.33/changelog
--- old/mksusecd-1.32/changelog 2015-08-12 14:12:35.000000000 +0200
+++ new/mksusecd-1.33/changelog 2015-09-29 11:13:33.000000000 +0200
@@ -1,3 +1,6 @@
+2015-09-28: 1.33
+ - Add link to linux-devtools documentation
+
2015-08-12: 1.32
- move isozipl to /usr/bin
- make it work also with mkisofs from cdrtools
Hello community,
here is the log from the commit of package rubygem-net-ssh for openSUSE:Factory checked in at 2015-09-30 05:53:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-net-ssh (Old)
and /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-net-ssh"
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-net-ssh/rubygem-net-ssh.changes 2015-02-16 21:14:20.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new/rubygem-net-ssh.changes 2015-09-30 05:53:22.000000000 +0200
@@ -1,0 +2,57 @@
+Sat Sep 26 04:29:09 UTC 2015 - coolo(a)suse.com
+
+- updated to version 3.0.1
+ see installed CHANGES.txt
+
+ === 3.0.1
+ === 3.0.1.rc1
+
+ * Breaking change from 2.* series: exec! without block now returns empty string instread of nil if command has no output [https://github.com/net-ssh/net-ssh/pull/273]
+ * Support remote_user as %r in proxy commands [Dominic Scheirlinck]
+ * Raise Net::SSH::ConnectionTimeout from connection timeout [Carl Hoerberg]
+
+ === 3.0.0.rc1
+
+ * SemVer: Major version change because of dropping of ruby 1.9
+
+ === 2.10.1.rc2
+
+ * Win: Use fiddle on ruby 2.1 too [Charlie Savage]
+
+ === 2.10.1.rc1
+
+ * Added ruby 2.0 requirement to gemspec [Alex Schultz]
+
+-------------------------------------------------------------------
+Mon Aug 3 04:30:29 UTC 2015 - coolo(a)suse.com
+
+- updated to version 2.10.0
+ see installed CHANGES.txt
+
+ === 2.10.0
+
+ === 2.10.0-beta2
+
+ * Fix :passphrase option with :non_interactive [Jeremy Stanley]
+ * Use Socket.tcp with connect_timeout instead of Timeout::timeout [Carl Hörberg]
+ * Support for hostname hashes [Jef Mathiot]
+ * Ruby 1.9.3 is no longer supported but should moslty work expect for stuff like connect_timeout
+
+ === 2.10.0-beta1
+
+ * Fix could not parse PKey error. [Andrey Voronkov]
+ * Workaround for threading issue in MRI + singleton method declaration [Matt Brictson]
+ * Configuration change: we no longer append all supported algorithms, this is so you can exclude insecure algorithms. If you want to use the old behaviour specify append_all_supported_algorithms => true [voidus, mfazekas]
+ * New configuration option: :non_interactive => true in case you prefer an authmethod to fail rather than prompt. [mfazekas]
+ * Configuration change: password will now ask for password up to the :number_of_password_prompts times. If you want the
+ 2.9.1 behaviour of never asking password please set number_of_password_prompts to 0.
+
+ === 2.9.4-beta1
+
+ * Use sysread and syswrite on Windows instead of read_nonblock and write [marc-etienne]
+ * Windows/peagant: use fiddle on ruby 2.2+/windows [Charlie Savage]
+ * Check if ssh key is a file [kiela]
+
+ === 2.9.3
+
+-------------------------------------------------------------------
Old:
----
net-ssh-2.9.2.gem
New:
----
net-ssh-3.0.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-net-ssh.spec ++++++
--- /var/tmp/diff_new_pack.jResQJ/_old 2015-09-30 05:53:22.000000000 +0200
+++ /var/tmp/diff_new_pack.jResQJ/_new 2015-09-30 05:53:22.000000000 +0200
@@ -24,13 +24,13 @@
#
Name: rubygem-net-ssh
-Version: 2.9.2
+Version: 3.0.1
Release: 0
%define mod_name net-ssh
%define mod_full_name %{mod_name}-%{version}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
+BuildRequires: %{ruby >= 2.0}
BuildRequires: %{rubygem gem2rpm}
-BuildRequires: %{ruby}
BuildRequires: ruby-macros >= 5
Url: https://github.com/net-ssh/net-ssh
Source: http://rubygems.org/gems/%{mod_full_name}.gem
++++++ net-ssh-2.9.2.gem -> net-ssh-3.0.1.gem ++++++
++++ 1893 lines of diff (skipped)