openSUSE Commits
Threads by month
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
July 2016
- 1 participants
- 1930 discussions
Hello community,
here is the log from the commit of package mozjs24 for openSUSE:Factory checked in at 2016-07-01 09:51:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mozjs24 (Old)
and /work/SRC/openSUSE:Factory/.mozjs24.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mozjs24"
Changes:
--------
--- /work/SRC/openSUSE:Factory/mozjs24/mozjs24.changes 2015-07-21 13:24:56.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mozjs24.new/mozjs24.changes 2016-07-01 09:51:41.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jun 13 17:13:12 UTC 2016 - agraf(a)suse.com
+
+- Fix 48 virtual address space systems like upstream (bsc#984126)
+ (mozjs-support-48bit-va.patch)
+
+-------------------------------------------------------------------
New:
----
mozjs-support-48bit-va.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mozjs24.spec ++++++
--- /var/tmp/diff_new_pack.UXJzkM/_old 2016-07-01 09:51:42.000000000 +0200
+++ /var/tmp/diff_new_pack.UXJzkM/_new 2016-07-01 09:51:42.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package mozjs24
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# 2014 Wolfgang Rosenauer
#
# All modifications and additions to the file contributed by third parties
@@ -28,6 +28,7 @@
Source1: baselibs.conf
Patch1: mozjs-aarch64-support.patch
Patch2: no_defined_array.patch
+Patch3: mozjs-support-48bit-va.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf213
BuildRequires: gcc-c++
@@ -68,6 +69,7 @@
%setup -q -n mozjs-%{version}
%patch1 -p1
%patch2 -p1
+%patch3 -p1
%build
# no need to add build time to binaries
++++++ mozjs-support-48bit-va.patch ++++++
# HG changeset patch
# User Zheng Xu <zheng.xu(a)linaro.org>
# Date 1464657720 -7200
# Node ID dfaafbaaa2919a033c4c0abdd5830f4ea413bed6
# Parent 499f16ca85ec48d1896a1633730715f32bd62140
Bug 1143022 - Manually mmap on arm64 to ensure high 17 bits are clear. r=ehoogeveen
There might be 48-bit VA on arm64 depending on kernel configuration.
Manually mmap heap memory to align with the assumption made by JS engine.
Index: mozjs-24.2.0/js/src/gc/Memory.cpp
===================================================================
--- mozjs-24.2.0.orig/js/src/gc/Memory.cpp
+++ mozjs-24.2.0/js/src/gc/Memory.cpp
@@ -339,11 +339,44 @@ MapMemory(size_t length, int prot, int f
return MAP_FAILED;
}
return region;
+#elif defined(__aarch64__)
+ /*
+ * There might be similar virtual address issue on arm64 which depends on
+ * hardware and kernel configurations. But the work around is slightly
+ * different due to the different mmap behavior.
+ */
+ const uintptr_t start = UINT64_C(0x0000070000000000);
+ const uintptr_t end = UINT64_C(0x0000800000000000);
+ const uintptr_t step = ChunkSize;
+ /*
+ * Optimization options if there are too many retries in practice:
+ * 1. Examine /proc/self/maps to find an available address. This file is
+ * not always available, however. In addition, even if we examine
+ * /proc/self/maps, we may still need to retry several times due to
+ * racing with other threads.
+ * 2. Use a global/static variable with lock to track the addresses we have
+ * allocated or tried.
+ */
+ uintptr_t hint;
+ void* region = MAP_FAILED;
+ for (hint = start; region == MAP_FAILED && hint + length <= end; hint += step) {
+ region = mmap((void*)hint, length, prot, flags, fd, offset);
+ if (region != MAP_FAILED) {
+ if ((uintptr_t(region) + (length - 1)) & 0xffff800000000000) {
+ if (munmap(region, length)) {
+ MOZ_ASSERT(errno == ENOMEM);
+ }
+ region = MAP_FAILED;
+ }
+ }
+ }
+ return region == MAP_FAILED ? NULL : region;
#else
return mmap(NULL, length, prot, flags, fd, offset);
#endif
}
+
void *
gc::MapAlignedPages(JSRuntime *rt, size_t size, size_t alignment)
{
1
0
Hello community,
here is the log from the commit of package mozjs17 for openSUSE:Factory checked in at 2016-07-01 09:51:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mozjs17 (Old)
and /work/SRC/openSUSE:Factory/.mozjs17.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mozjs17"
Changes:
--------
--- /work/SRC/openSUSE:Factory/mozjs17/mozjs17.changes 2015-12-03 13:26:28.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.mozjs17.new/mozjs17.changes 2016-07-01 09:51:22.000000000 +0200
@@ -1,0 +2,12 @@
+Mon Jun 13 15:38:33 UTC 2016 - agraf(a)suse.com
+
+- Use upstream version to fix the 48 bit address space
+ problem (bsc#984126)
+
+-------------------------------------------------------------------
+Fri Jun 10 13:28:12 UTC 2016 - agraf(a)suse.com
+
+- Fix 48 virtual address space systems (bsc#984126)
+ (mozjs-support-48bit-va.patch)
+
+-------------------------------------------------------------------
New:
----
mozjs-support-48bit-va.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mozjs17.spec ++++++
--- /var/tmp/diff_new_pack.pquCrL/_old 2016-07-01 09:51:23.000000000 +0200
+++ /var/tmp/diff_new_pack.pquCrL/_new 2016-07-01 09:51:23.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package mozjs17
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# 2013 Wolfgang Rosenauer
#
# All modifications and additions to the file contributed by third parties
@@ -34,6 +34,7 @@
Patch3: mozbug746112-no-decommit-on-large-pages.patch
Patch4: no_defined_array.patch
Patch5: aarch64-64k-page.patch
+Patch6: mozjs-support-48bit-va.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf213
BuildRequires: gcc-c++
@@ -79,6 +80,7 @@
%patch3 -p1
%patch4 -p1
%patch5 -p1
+%patch6 -p1
%build
# no need to add build time to binaries
++++++ mozjs-support-48bit-va.patch ++++++
# HG changeset patch
# User Zheng Xu <zheng.xu(a)linaro.org>
# Date 1464657720 -7200
# Node ID dfaafbaaa2919a033c4c0abdd5830f4ea413bed6
# Parent 499f16ca85ec48d1896a1633730715f32bd62140
Bug 1143022 - Manually mmap on arm64 to ensure high 17 bits are clear. r=ehoogeveen
There might be 48-bit VA on arm64 depending on kernel configuration.
Manually mmap heap memory to align with the assumption made by JS engine.
Index: mozjs17.0.0/js/src/gc/Memory.cpp
===================================================================
--- mozjs17.0.0.orig/js/src/gc/Memory.cpp
+++ mozjs17.0.0/js/src/gc/Memory.cpp
@@ -309,6 +309,53 @@ InitMemorySubsystem()
#endif
}
+
+#if defined(__aarch64__)
+#define USE_SAFE_MMAP
+#endif
+
+#ifdef USE_SAFE_MMAP
+static void *safe_mmap(size_t length, int prot, int flags, int fd, off_t offset)
+{
+ /*
+ * There might be similar virtual address issue on arm64 which depends on
+ * hardware and kernel configurations. But the work around is slightly
+ * different due to the different mmap behavior.
+ */
+ const uintptr_t start = UINT64_C(0x0000070000000000);
+ const uintptr_t end = UINT64_C(0x0000800000000000);
+ const uintptr_t step = ChunkSize;
+ /*
+ * Optimization options if there are too many retries in practice:
+ * 1. Examine /proc/self/maps to find an available address. This file is
+ * not always available, however. In addition, even if we examine
+ * /proc/self/maps, we may still need to retry several times due to
+ * racing with other threads.
+ * 2. Use a global/static variable with lock to track the addresses we have
+ * allocated or tried.
+ */
+ uintptr_t hint;
+ void* region = MAP_FAILED;
+ for (hint = start; region == MAP_FAILED && hint + length <= end; hint += step) {
+ region = mmap((void*)hint, length, prot, flags, fd, offset);
+ if (region != MAP_FAILED) {
+ if ((uintptr_t(region) + (length - 1)) & 0xffff800000000000) {
+ if (munmap(region, length)) {
+ MOZ_ASSERT(errno == ENOMEM);
+ }
+ region = MAP_FAILED;
+ }
+ }
+ }
+ return region == MAP_FAILED ? NULL : region;
+}
+#else
+static void *safe_mmap(size_t length, int prot, int flags, int fd, off_t offset)
+{
+ return mmap(NULL, length, prot, flags, fd, offset);
+}
+#endif
+
void *
MapAlignedPages(size_t size, size_t alignment)
{
@@ -322,12 +369,12 @@ MapAlignedPages(size_t size, size_t alig
/* Special case: If we want page alignment, no further work is needed. */
if (alignment == PageSize) {
- return mmap(NULL, size, prot, flags, -1, 0);
+ return safe_mmap(size, prot, flags, -1, 0);
}
/* Overallocate and unmap the region's edges. */
size_t reqSize = Min(size + 2 * alignment, 2 * size);
- void *region = mmap(NULL, reqSize, prot, flags, -1, 0);
+ void *region = safe_mmap(reqSize, prot, flags, -1, 0);
if (region == MAP_FAILED)
return NULL;
1
0
Hello community,
here is the log from the commit of package python3-nose for openSUSE:Factory checked in at 2016-07-01 09:51:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-nose (Old)
and /work/SRC/openSUSE:Factory/.python3-nose.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-nose"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-nose/python3-nose.changes 2016-05-17 17:10:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-nose.new/python3-nose.changes 2016-07-01 09:51:17.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Jun 13 18:21:18 UTC 2016 - toddrme2178(a)gmail.com
+
+- Comment out unused test requirements.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-nose.spec ++++++
--- /var/tmp/diff_new_pack.ifA9vi/_old 2016-07-01 09:51:18.000000000 +0200
+++ /var/tmp/diff_new_pack.ifA9vi/_new 2016-07-01 09:51:18.000000000 +0200
@@ -29,7 +29,7 @@
BuildRequires: python3-devel
BuildRequires: python3-setuptools
#Test requirements:
-BuildRequires: python3-coverage
+# BuildRequires: python3-coverage
Requires: python3-setuptools
Requires(post): update-alternatives
Requires(postun): update-alternatives
1
0
Hello community,
here is the log from the commit of package python3-wheel for openSUSE:Factory checked in at 2016-07-01 09:51:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-wheel (Old)
and /work/SRC/openSUSE:Factory/.python3-wheel.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-wheel"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-wheel/python3-wheel.changes 2016-05-17 17:13:45.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python3-wheel.new/python3-wheel.changes 2016-07-01 09:51:12.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Jun 13 16:53:17 UTC 2016 - toddrme2178(a)gmail.com
+
+- Remove unneeded test requirements.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-wheel.spec ++++++
--- /var/tmp/diff_new_pack.6GPeo2/_old 2016-07-01 09:51:13.000000000 +0200
+++ /var/tmp/diff_new_pack.6GPeo2/_new 2016-07-01 09:51:13.000000000 +0200
@@ -27,8 +27,6 @@
BuildRequires: python3-devel
BuildRequires: python3-setuptools
# Test requirements:
-BuildRequires: python3-cov-core >= 1.6
-BuildRequires: python3-coverage
BuildRequires: python3-jsonschema
BuildRequires: python3-pytest
BuildRequires: python3-pytest-cov
1
0
Hello community,
here is the log from the commit of package gfxboot for openSUSE:Factory checked in at 2016-07-01 09:51:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gfxboot (Old)
and /work/SRC/openSUSE:Factory/.gfxboot.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gfxboot"
Changes:
--------
--- /work/SRC/openSUSE:Factory/gfxboot/gfxboot.changes 2015-12-09 19:48:50.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.gfxboot.new/gfxboot.changes 2016-07-01 09:51:07.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Jun 13 11:47:28 UTC 2016 - snwint(a)suse.com
+
+- updated translations
+- make 'systemboot' and 'more' menu entries translatable
+- 4.5.13
+
+-------------------------------------------------------------------
Old:
----
gfxboot-4.5.12.tar.xz
New:
----
gfxboot-4.5.13.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gfxboot.spec ++++++
--- /var/tmp/diff_new_pack.tb6OCl/_old 2016-07-01 09:51:08.000000000 +0200
+++ /var/tmp/diff_new_pack.tb6OCl/_new 2016-07-01 09:51:08.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package gfxboot
#
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: gfxboot
-Version: 4.5.12
+Version: 4.5.13
Release: 0
Summary: Graphical Boot Logo for GRUB, LILO and SYSLINUX
License: GPL-2.0+
++++++ KDE.tar.xz ++++++
++++++ SLED.tar.xz ++++++
++++++ SLES.tar.xz ++++++
++++++ examples.tar.xz ++++++
++++++ gfxboot-4.5.12.tar.xz -> gfxboot-4.5.13.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gfxboot-4.5.12/VERSION new/gfxboot-4.5.13/VERSION
--- old/gfxboot-4.5.12/VERSION 2015-12-04 15:37:32.000000000 +0100
+++ new/gfxboot-4.5.13/VERSION 2016-06-13 13:43:01.000000000 +0200
@@ -1 +1 @@
-4.5.12
+4.5.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gfxboot-4.5.12/changelog new/gfxboot-4.5.13/changelog
--- old/gfxboot-4.5.12/changelog 2015-12-04 15:37:32.000000000 +0100
+++ new/gfxboot-4.5.13/changelog 2016-06-13 13:43:01.000000000 +0200
@@ -1,3 +1,7 @@
+2016-06-13: 4.5.13
+ - updated translations
+ - make 'systemboot' and 'more' menu entries translatable
+
2015-12-04: 4.5.12
- fix booting from submenu (bsc #957893)
++++++ openSUSE.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/af.po new/themes/openSUSE/po/af.po
--- old/themes/openSUSE/po/af.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/af.po 2016-06-13 13:43:01.000000000 +0200
@@ -452,3 +452,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ar.po new/themes/openSUSE/po/ar.po
--- old/themes/openSUSE/po/ar.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ar.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:24\n"
+"PO-Revision-Date: 2016-06-01 11:28\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "بلا KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "تمهيد نظام Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "المزيد ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/bg.po new/themes/openSUSE/po/bg.po
--- old/themes/openSUSE/po/bg.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/bg.po 2016-06-13 13:43:01.000000000 +0200
@@ -459,3 +459,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/bootloader.pot new/themes/openSUSE/po/bootloader.pot
--- old/themes/openSUSE/po/bootloader.pot 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/bootloader.pot 2016-06-13 13:43:01.000000000 +0200
@@ -436,3 +436,14 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ca.po new/themes/openSUSE/po/ca.po
--- old/themes/openSUSE/po/ca.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ca.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/cs.po new/themes/openSUSE/po/cs.po
--- old/themes/openSUSE/po/cs.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/cs.po 2016-06-13 13:43:01.000000000 +0200
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:25\n"
+"PO-Revision-Date: 2016-06-01 11:29\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -456,3 +456,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Bez rozhraní API KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Spustit systém Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Více..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/da.po new/themes/openSUSE/po/da.po
--- old/themes/openSUSE/po/da.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/da.po 2016-06-13 13:43:01.000000000 +0200
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/de.po new/themes/openSUSE/po/de.po
--- old/themes/openSUSE/po/de.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/de.po 2016-06-13 13:43:01.000000000 +0200
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:20\n"
+"PO-Revision-Date: 2016-06-01 12:21\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Keine KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Linux-System booten"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Mehr ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/el.po new/themes/openSUSE/po/el.po
--- old/themes/openSUSE/po/el.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/el.po 2016-06-13 13:43:01.000000000 +0200
@@ -455,3 +455,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/es.po new/themes/openSUSE/po/es.po
--- old/themes/openSUSE/po/es.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/es.po 2016-06-13 13:43:01.000000000 +0200
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:21\n"
+"PO-Revision-Date: 2016-06-01 12:21\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -458,3 +458,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "No hay KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Arrancar sistema Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Más..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/et.po new/themes/openSUSE/po/et.po
--- old/themes/openSUSE/po/et.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/et.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/fi.po new/themes/openSUSE/po/fi.po
--- old/themes/openSUSE/po/fi.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/fi.po 2016-06-13 13:43:01.000000000 +0200
@@ -459,3 +459,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/fr.po new/themes/openSUSE/po/fr.po
--- old/themes/openSUSE/po/fr.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/fr.po 2016-06-13 13:43:01.000000000 +0200
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:21\n"
+"PO-Revision-Date: 2016-06-01 12:22\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -461,3 +461,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Aucun KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Démarrer le système Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Plus..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/gl.po new/themes/openSUSE/po/gl.po
--- old/themes/openSUSE/po/gl.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/gl.po 2016-06-13 13:43:01.000000000 +0200
@@ -456,3 +456,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/gu.po new/themes/openSUSE/po/gu.po
--- old/themes/openSUSE/po/gu.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/gu.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/hi.po new/themes/openSUSE/po/hi.po
--- old/themes/openSUSE/po/hi.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/hi.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/hr.po new/themes/openSUSE/po/hr.po
--- old/themes/openSUSE/po/hr.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/hr.po 2016-06-13 13:43:01.000000000 +0200
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/hu.po new/themes/openSUSE/po/hu.po
--- old/themes/openSUSE/po/hu.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/hu.po 2016-06-13 13:43:01.000000000 +0200
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:25\n"
+"PO-Revision-Date: 2016-06-01 11:29\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -461,3 +461,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Nincs KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Linux rendszer elindítása"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Tovább..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/id.po new/themes/openSUSE/po/id.po
--- old/themes/openSUSE/po/id.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/id.po 2016-06-13 13:43:01.000000000 +0200
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/it.po new/themes/openSUSE/po/it.po
--- old/themes/openSUSE/po/it.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/it.po 2016-06-13 13:43:01.000000000 +0200
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:22\n"
+"PO-Revision-Date: 2016-06-01 12:22\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Nessun KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Avvia sistema Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Altro..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ja.po new/themes/openSUSE/po/ja.po
--- old/themes/openSUSE/po/ja.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ja.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:22\n"
+"PO-Revision-Date: 2016-06-01 12:23\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "KMSなし"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Linuxシステムのブート"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "詳細 ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ka.po new/themes/openSUSE/po/ka.po
--- old/themes/openSUSE/po/ka.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ka.po 2016-06-13 13:43:01.000000000 +0200
@@ -452,3 +452,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ko.po new/themes/openSUSE/po/ko.po
--- old/themes/openSUSE/po/ko.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ko.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:25\n"
+"PO-Revision-Date: 2016-06-01 11:29\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -452,3 +452,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "KMS 없음"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Linux 시스템 부팅"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "추가..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ky.po new/themes/openSUSE/po/ky.po
--- old/themes/openSUSE/po/ky.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ky.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/lt.po new/themes/openSUSE/po/lt.po
--- old/themes/openSUSE/po/lt.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/lt.po 2016-06-13 13:43:01.000000000 +0200
@@ -455,3 +455,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/mr.po new/themes/openSUSE/po/mr.po
--- old/themes/openSUSE/po/mr.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/mr.po 2016-06-13 13:43:01.000000000 +0200
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/nb.po new/themes/openSUSE/po/nb.po
--- old/themes/openSUSE/po/nb.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/nb.po 2016-06-13 13:43:01.000000000 +0200
@@ -459,3 +459,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/nl.po new/themes/openSUSE/po/nl.po
--- old/themes/openSUSE/po/nl.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/nl.po 2016-06-13 13:43:01.000000000 +0200
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:26\n"
+"PO-Revision-Date: 2016-06-01 11:30\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -459,3 +459,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Geen KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Linux-systeem opstarten"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Meer ..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/pa.po new/themes/openSUSE/po/pa.po
--- old/themes/openSUSE/po/pa.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/pa.po 2016-06-13 13:43:01.000000000 +0200
@@ -464,3 +464,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/pl.po new/themes/openSUSE/po/pl.po
--- old/themes/openSUSE/po/pl.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/pl.po 2016-06-13 13:43:01.000000000 +0200
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:26\n"
+"PO-Revision-Date: 2016-06-01 11:30\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Bez KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Uruchom system Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Więcej..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/pt.po new/themes/openSUSE/po/pt.po
--- old/themes/openSUSE/po/pt.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/pt.po 2016-06-13 13:43:01.000000000 +0200
@@ -456,3 +456,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/pt_BR.po new/themes/openSUSE/po/pt_BR.po
--- old/themes/openSUSE/po/pt_BR.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/pt_BR.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:22\n"
+"PO-Revision-Date: 2016-06-01 12:23\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Sem KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Inicializar Sistema Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Mais..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ro.po new/themes/openSUSE/po/ro.po
--- old/themes/openSUSE/po/ro.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ro.po 2016-06-13 13:43:01.000000000 +0200
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ru.po new/themes/openSUSE/po/ru.po
--- old/themes/openSUSE/po/ru.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ru.po 2016-06-13 13:43:01.000000000 +0200
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:27\n"
+"PO-Revision-Date: 2016-06-01 11:31\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -459,3 +459,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Без KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Загрузка системы Linux"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Еще..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/sk.po new/themes/openSUSE/po/sk.po
--- old/themes/openSUSE/po/sk.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/sk.po 2016-06-13 13:43:01.000000000 +0200
@@ -460,3 +460,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/sl.po new/themes/openSUSE/po/sl.po
--- old/themes/openSUSE/po/sl.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/sl.po 2016-06-13 13:43:01.000000000 +0200
@@ -462,3 +462,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/sr.po new/themes/openSUSE/po/sr.po
--- old/themes/openSUSE/po/sr.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/sr.po 2016-06-13 13:43:01.000000000 +0200
@@ -452,3 +452,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/sv.po new/themes/openSUSE/po/sv.po
--- old/themes/openSUSE/po/sv.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/sv.po 2016-06-13 13:43:01.000000000 +0200
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 11:27\n"
+"PO-Revision-Date: 2016-06-01 11:31\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "Ingen KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "Starta Linux-system"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "Mer..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/ta.po new/themes/openSUSE/po/ta.po
--- old/themes/openSUSE/po/ta.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/ta.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/tg.po new/themes/openSUSE/po/tg.po
--- old/themes/openSUSE/po/tg.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/tg.po 2016-06-13 13:43:01.000000000 +0200
@@ -439,3 +439,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/th.po new/themes/openSUSE/po/th.po
--- old/themes/openSUSE/po/th.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/th.po 2016-06-13 13:43:01.000000000 +0200
@@ -456,3 +456,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/tr.po new/themes/openSUSE/po/tr.po
--- old/themes/openSUSE/po/tr.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/tr.po 2016-06-13 13:43:01.000000000 +0200
@@ -453,3 +453,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/uk.po new/themes/openSUSE/po/uk.po
--- old/themes/openSUSE/po/uk.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/uk.po 2016-06-13 13:43:01.000000000 +0200
@@ -457,3 +457,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/wa.po new/themes/openSUSE/po/wa.po
--- old/themes/openSUSE/po/wa.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/wa.po 2016-06-13 13:43:01.000000000 +0200
@@ -455,3 +455,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/xh.po new/themes/openSUSE/po/xh.po
--- old/themes/openSUSE/po/xh.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/xh.po 2016-06-13 13:43:01.000000000 +0200
@@ -450,3 +450,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/zh_CN.po new/themes/openSUSE/po/zh_CN.po
--- old/themes/openSUSE/po/zh_CN.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/zh_CN.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:23\n"
+"PO-Revision-Date: 2016-06-01 12:23\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "无 KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "引导 Linux 系统"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "更多..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/zh_TW.po new/themes/openSUSE/po/zh_TW.po
--- old/themes/openSUSE/po/zh_TW.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/zh_TW.po 2016-06-13 13:43:01.000000000 +0200
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bootloader\n"
-"PO-Revision-Date: 2015-10-13 10:23\n"
+"PO-Revision-Date: 2016-06-01 12:24\n"
"Last-Translator: Novell language <language(a)novell.com>\n"
"Language-Team: Novell language <language(a)novell.com>\n"
"MIME-Version: 1.0\n"
@@ -454,3 +454,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr "無 KMS"
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr "將 Linux 系統開機"
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr "更多..."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/po/zu.po new/themes/openSUSE/po/zu.po
--- old/themes/openSUSE/po/zu.po 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/po/zu.po 2016-06-13 13:43:01.000000000 +0200
@@ -450,3 +450,13 @@
#. txt_video_no_kms
msgid "No KMS"
msgstr ""
+
+#. menu item for booting an installed Linux system
+#. txt_systemboot
+msgid "Boot Linux System"
+msgstr ""
+
+#. menu item selecting a submenu with more entries
+#. txt_expert
+msgid "More ..."
+msgstr ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/themes/openSUSE/src/common.inc new/themes/openSUSE/src/common.inc
--- old/themes/openSUSE/src/common.inc 2015-12-04 15:37:32.000000000 +0100
+++ new/themes/openSUSE/src/common.inc 2016-06-13 13:43:01.000000000 +0200
@@ -1098,6 +1098,8 @@
dup "harddisk" eq { pop txt_boot_harddisk return } if
dup "mediachk" eq { pop txt_mediacheck return } if
dup "mediacheck" eq { pop txt_mediacheck return } if
+ dup "systemboot" eq { pop txt_systemboot return } if
+ dup "expert" eq { pop txt_expert return } if
} {
dup "failsafe" eq { pop txt_safe_linux return } if
dup "linux" eq { pop "Linux" return } if
++++++ upstream.tar.xz ++++++
1
0
Hello community,
here is the log from the commit of package polkit-default-privs for openSUSE:Factory checked in at 2016-07-01 09:50:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/polkit-default-privs (Old)
and /work/SRC/openSUSE:Factory/.polkit-default-privs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "polkit-default-privs"
Changes:
--------
--- /work/SRC/openSUSE:Factory/polkit-default-privs/polkit-default-privs.changes 2016-04-28 20:29:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.polkit-default-privs.new/polkit-default-privs.changes 2016-07-01 09:51:01.000000000 +0200
@@ -1,0 +2,5 @@
+Mon Jun 13 09:55:09 UTC 2016 - krahmer(a)suse.com
+
+- polkit-default-privs: adding ModemManager (bsc#976945)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ polkit-default-privs-13.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polkit-default-privs-13.2/polkit-default-privs.restrictive new/polkit-default-privs-13.2/polkit-default-privs.restrictive
--- old/polkit-default-privs-13.2/polkit-default-privs.restrictive 2016-04-11 16:21:39.000000000 +0200
+++ new/polkit-default-privs-13.2/polkit-default-privs.restrictive 2016-06-13 11:37:41.000000000 +0200
@@ -386,6 +386,9 @@
org.freedesktop.ModemManager.Location auth_admin_keep
# (bnc#691896)
org.freedesktop.ModemManager.USSD auth_admin_keep
+# (bsc#976945)
+org.freedesktop.ModemManager1.Voice no:no:auth_self_keep
+
# urfkill (bnc#688328)
org.freedesktop.urfkill.block auth_admin
@@ -685,5 +688,7 @@
org.freedesktop.import1.export auth_admin:auth_admin:auth_admin_keep
org.freedesktop.import1.pull auth_admin:auth_admin:auth_admin_keep
+# brltty (bsc#967436)
+org.brltty.write-display no:no:yes
###
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/polkit-default-privs-13.2/polkit-default-privs.standard new/polkit-default-privs-13.2/polkit-default-privs.standard
--- old/polkit-default-privs-13.2/polkit-default-privs.standard 2016-04-11 16:21:39.000000000 +0200
+++ new/polkit-default-privs-13.2/polkit-default-privs.standard 2016-06-13 11:37:41.000000000 +0200
@@ -404,6 +404,8 @@
org.freedesktop.ModemManager.Location auth_admin_keep
# (bnc#691896)
org.freedesktop.ModemManager.USSD auth_admin_keep
+# (bsc#976945)
+org.freedesktop.ModemManager1.Voice no:no:auth_self_keep
# urfkill (bnc#688328)
org.freedesktop.urfkill.block auth_admin:auth_admin:yes
@@ -750,4 +752,7 @@
org.freedesktop.import1.export auth_admin:auth_admin:auth_admin_keep
org.freedesktop.import1.pull auth_admin:auth_admin:auth_admin_keep
+# brltty (bsc#967436)
+org.brltty.write-display no:no:yes
+
###
1
0
Hello community,
here is the log from the commit of package iw for openSUSE:Factory checked in at 2016-07-01 09:50:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/iw (Old)
and /work/SRC/openSUSE:Factory/.iw.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "iw"
Changes:
--------
--- /work/SRC/openSUSE:Factory/iw/iw.changes 2015-10-14 16:37:48.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.iw.new/iw.changes 2016-07-01 09:50:54.000000000 +0200
@@ -1,0 +2,6 @@
+Sun Jun 12 15:44:40 UTC 2016 - mpluskal(a)suse.com
+
+- Update to version 4.7:
+ * Support all new kernel features upto 4.7
+
+-------------------------------------------------------------------
Old:
----
iw-4.3.tar.xz
New:
----
iw-4.7.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ iw.spec ++++++
--- /var/tmp/diff_new_pack.6NqI9D/_old 2016-07-01 09:50:55.000000000 +0200
+++ /var/tmp/diff_new_pack.6NqI9D/_new 2016-07-01 09:50:55.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package iw
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
Name: iw
-Version: 4.3
+Version: 4.7
Release: 0
Summary: Configuration utility for nl80211 based wireless drivers
License: ISC
Group: Hardware/Wifi
Url: http://linuxwireless.org/en/users/Documentation/iw
Source: https://kernel.org/pub/software/network/iw/iw-%{version}.tar.xz
-BuildRequires: pkg-config
+BuildRequires: pkgconfig
BuildRequires: pkgconfig(libnl-3.0)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -42,12 +42,12 @@
make %{?_smp_mflags} CFLAGS="%{optflags} $(pkg-config --cflags libnl-3.0) -DCONFIG_LIBNL30 -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration" V=1
%install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
%files
%defattr(-,root,root)
%doc COPYING README
%{_sbindir}/iw
-%doc %{_mandir}/man?/iw.*
+%{_mandir}/man8/iw.8%{ext_man}
%changelog
++++++ iw-4.3.tar.xz -> iw-4.7.tar.xz ++++++
++++ 1720 lines of diff (skipped)
1
0
Hello community,
here is the log from the commit of package wireless-regdb for openSUSE:Factory checked in at 2016-07-01 09:50:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/wireless-regdb (Old)
and /work/SRC/openSUSE:Factory/.wireless-regdb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wireless-regdb"
Changes:
--------
--- /work/SRC/openSUSE:Factory/wireless-regdb/wireless-regdb.changes 2016-05-13 09:21:48.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.wireless-regdb.new/wireless-regdb.changes 2016-07-01 09:50:49.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Jun 12 15:41:12 UTC 2016 - mpluskal(a)suse.com
+
+- Update to 2016.06.10
+
+-------------------------------------------------------------------
Old:
----
wireless-regdb-2016.05.02.tar.xz
New:
----
wireless-regdb-2016.06.10.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ wireless-regdb.spec ++++++
--- /var/tmp/diff_new_pack.3MUM5g/_old 2016-07-01 09:50:50.000000000 +0200
+++ /var/tmp/diff_new_pack.3MUM5g/_new 2016-07-01 09:50:50.000000000 +0200
@@ -17,7 +17,7 @@
Name: wireless-regdb
-Version: 2016.05.02
+Version: 2016.06.10
Release: 0
Summary: 802.11 regulatory domain database
License: ISC
++++++ wireless-regdb-2016.05.02.tar.xz -> wireless-regdb-2016.06.10.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2016.05.02/db.txt new/wireless-regdb-2016.06.10/db.txt
--- old/wireless-regdb-2016.05.02/db.txt 2016-05-02 15:45:27.000000000 +0200
+++ new/wireless-regdb-2016.06.10/db.txt 2016-06-10 15:02:34.000000000 +0200
@@ -664,6 +664,9 @@
(5250 - 5330 @ 80), (20), DFS, AUTO-BW
(5490 - 5710 @ 160), (30), DFS
(5735 - 5835 @ 80), (30)
+ # 60 GHz band channels 1-4,
+ # ref: http://www.law.go.kr/%ED%96%89%EC%A0%95%EA%B7%9C%EC%B9%99/%EB%AC%B4%EC%84%A…
+ (57000 - 66000 @ 2160), (43)
country KW: DFS-ETSI
(2402 - 2482 @ 40), (20)
Files old/wireless-regdb-2016.05.02/regulatory.bin and new/wireless-regdb-2016.06.10/regulatory.bin differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wireless-regdb-2016.05.02/sha1sum.txt new/wireless-regdb-2016.06.10/sha1sum.txt
--- old/wireless-regdb-2016.05.02/sha1sum.txt 2016-05-02 15:45:27.000000000 +0200
+++ new/wireless-regdb-2016.06.10/sha1sum.txt 2016-06-10 15:02:34.000000000 +0200
@@ -1 +1 @@
-f08e5e2debf6850caefa182eab94b42b3989d27a db.txt
+755f0c5d5ac772494f66ef3a1cbcdd21874f72e9 db.txt
1
0
Hello community,
here is the log from the commit of package hplip for openSUSE:Factory checked in at 2016-07-01 09:50:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/hplip (Old)
and /work/SRC/openSUSE:Factory/.hplip.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "hplip"
Changes:
--------
--- /work/SRC/openSUSE:Factory/hplip/hplip.changes 2015-12-17 15:53:03.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.hplip.new/hplip.changes 2016-07-01 09:50:44.000000000 +0200
@@ -1,0 +2,55 @@
+Mon Jun 6 07:06:46 UTC 2016 - jweberhofer(a)weberhofer.at
+
+- rebased change-udev-rules.diff and
+ add_missing_includes_and_define_GNU_SOURCE.patch
+- Version upgrade to 3.16.5
+ * Added Support for the Following New Printers:
+ - HP OfficeJet 200 Mobile Printer Series
+ - HP OfficeJet Pro 8710 All-in-One Printer
+ - HP OfficeJet Pro 8715 All-in-One Printer
+ - HP OfficeJet Pro 8740 All-in-One Printer
+ - HP OfficeJet Pro 8720 All-in-One Printer
+ - HP OfficeJet Pro 8725 All-in-One Printer
+ - HP LaserJet Pro M501n
+ - HP LaserJet Pro M501dn
+ * Qt5 support is available. For more information check the following link
+ http://hplipopensource.com/node/376
+
+- Version upgrade to 3.16.3
+ * Added Support for the Following New Printers:
+ - HP PageWide Pro 577dw Multifunction Printer
+ - HP PageWide Pro 577z Multifunction Printer
+ - HP PageWide Pro 552dw Printer
+ - HP PageWide Pro 452dw Printer
+ - HP PageWide Pro 452dn Printer
+ - HP PageWide Pro 477dw Multifunction Printer
+ - HP PageWide Pro 477dn Multifunction Printer
+ - HP DeskJet GT 5810 All-in-One Printer
+ - HP DeskJet GT 5820 All-in-One Printer
+ * fixed issue: Traceback error occurs when ESC button is hit upon the promt
+ for root/superuser credentials while installing hp-plugin.
+
+- Version upgrade to 3.16.2
+ * Significant Change: Queue configuration using 'hp-setup' command is no more
+ supported for HP ScanJets. Scan frontends like xsane, hp-scan, scanimage,
+ simplescan will automatically detect usb and network ScanJets.
+ * Added Support for the Following New Printers:
+ - HP ScanJet Pro 4500 fn1 Network scanner
+ - HP LaserJet Pro MFP M127fs
+ - HP DeskJet Ultra Ink Advantage 2029 Printer
+ - HP DeskJet Ink Advantage Ultra 2529 All-in-One Printer
+ * Issues fixed:
+ - /usr/lib/sane/libsane-hpaio.so.1: undefined symbol: mdns_probe_nw_scanners
+ (Launchpad #1521687)
+ - udev: 56-hpmud.rules should not run usb_id for all USB devices out there
+ (Launchpad #1537467)
+ - Upgrade to HPLIP-3.15.11 fails (Launchpad: #1517494)
+ - HPLIP installation fails with non-english locale (Launchpad: #1536762)
+ - hp-plugin hangs on 'su' (Launchpad: #1483820)
+ - hp-plugin infinite loop (Launchpad: #1484916)
+ - hp-plugin not working - stuck on permission (Launchpad: #1510950)
+ - HP plugin installation hangs after accepting license (Launchpad: #1502025)
+ - Debian 8's hplip version is 3.14.6, not 3.15.2 (Launchpad: #1534404)
+ - Laserjet Pro MFP M127fs is not supported (Launchpad: #1532451)
+
+-------------------------------------------------------------------
Old:
----
hplip-3.15.11.tar.gz
hplip-3.15.11.tar.gz.asc
New:
----
hplip-3.16.5.tar.gz
hplip-3.16.5.tar.gz.asc
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ hplip.spec ++++++
--- /var/tmp/diff_new_pack.Bvcbxg/_old 2016-07-01 09:50:45.000000000 +0200
+++ /var/tmp/diff_new_pack.Bvcbxg/_new 2016-07-01 09:50:45.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package hplip
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
%endif
Name: hplip
-Version: 3.15.11
+Version: 3.16.5
Release: 0
Summary: HP's Printing, Scanning, and Faxing Software
License: BSD-3-Clause and GPL-2.0+ and MIT
@@ -341,7 +341,7 @@
# Be quiet when unpacking:
%setup -q
# Patch101 change-udev-rules.diff changes the udev rules file 56-hpmud.rules
-%patch101 -b .change-udev-rules.orig
+%patch101 -p1 -b .change-udev-rules.orig
# Patch106 disable_hp-upgrade.patch disables hp-upgrade/upgrade.py for security reasons,
# see https://bugzilla.novell.com/show_bug.cgi?id=853405
# To upgrade HPLIP an openSUSE software package manager like YaST or zypper should be used.
++++++ add_missing_includes_and_define_GNU_SOURCE.patch ++++++
--- /var/tmp/diff_new_pack.Bvcbxg/_old 2016-07-01 09:50:46.000000000 +0200
+++ /var/tmp/diff_new_pack.Bvcbxg/_new 2016-07-01 09:50:46.000000000 +0200
@@ -57,17 +57,6 @@
# include <stdint.h>
# define _STRINGIZE(x) #x
-diff -Pdpru hplip-3.15.11.orig/scan/sane/hpaio.c hplip-3.15.11/scan/sane/hpaio.c
---- hplip-3.15.11.orig/scan/sane/hpaio.c 2015-11-12 11:28:47.000000000 +0100
-+++ hplip-3.15.11/scan/sane/hpaio.c 2015-11-19 16:49:04.461174386 +0100
-@@ -45,6 +45,7 @@
- #include "ledm.h"
- #include "sclpml.h"
- #include "escl.h"
-+#include "io.h"
-
- #define DEBUG_DECLARE_ONLY
- #include "sanei_debug.h"
diff -Pdpru hplip-3.15.11.orig/scan/sane/sclpml.c hplip-3.15.11/scan/sane/sclpml.c
--- hplip-3.15.11.orig/scan/sane/sclpml.c 2015-11-12 11:28:47.000000000 +0100
+++ hplip-3.15.11/scan/sane/sclpml.c 2015-11-19 16:48:16.290576562 +0100
++++++ change-udev-rules.diff ++++++
--- /var/tmp/diff_new_pack.Bvcbxg/_old 2016-07-01 09:50:46.000000000 +0200
+++ /var/tmp/diff_new_pack.Bvcbxg/_new 2016-07-01 09:50:46.000000000 +0200
@@ -1,6 +1,7 @@
---- data/rules/56-hpmud.rules.orig 2015-06-07 21:25:22.000000000 +0200
-+++ data/rules/56-hpmud.rules 2015-06-24 12:35:25.000000000 +0200
-@@ -1,18 +1,50 @@
+diff -ur hplip-3.16.5-orig/data/rules/56-hpmud.rules hplip-3.16.5/data/rules/56-hpmud.rules
+--- hplip-3.16.5-orig/data/rules/56-hpmud.rules 2016-05-04 07:23:21.000000000 +0200
++++ hplip-3.16.5/data/rules/56-hpmud.rules 2016-06-06 09:04:05.828185741 +0200
+@@ -1,8 +1,33 @@
# HPLIP udev rules file. Notify console user if plugin support is required for this device.
+#
+# SUSE changed:
@@ -31,21 +32,16 @@
ACTION!="add", GOTO="hpmud_rules_end"
-SUBSYSTEM=="ppdev", OWNER="root", GROUP="lp", MODE="0664"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GOTO="hpmud_usb_rules"
--
+SUBSYSTEM=="ppdev", OWNER="root", GROUP="lp", MODE="0664"
-+GOTO="hpmud_rules_end"
+ GOTO="hpmud_rules_end"
LABEL="hpmud_usb_rules"
-
- ENV{ID_USB_INTERFACES}=="", IMPORT{builtin}="usb_id"
-
- # ENV{ID_HPLIP}="1" is for Ubuntu udev-acl
+@@ -13,6 +38,12 @@
ATTR{idVendor}=="03f0", ENV{ID_USB_INTERFACES}=="*:0701??:*|*:08????:", OWNER="root", GROUP="lp", MODE="0664", ENV{libsane_matched}="yes", ENV{hp_test}="yes", ENV{ID_HPLIP}="1"
# This rule will check the smart install feature, plugin status and firmware download for the required printers.
-ENV{hp_test}=="yes", PROGRAM="/bin/sh -c 'logger -p user.info loading HP Device $env{BUSNUM} $env{DEVNUM}'", RUN+="/bin/sh -c '/usr/bin/nohup /usr/bin/hp-config_usb_printer $env{BUSNUM}:$env{DEVNUM}'"
+#ENV{hp_test}=="yes", PROGRAM="/bin/sh -c 'logger -p user.info loading HP Device $env{BUSNUM} $env{DEVNUM}'", RUN+="/bin/sh -c '/usr/bin/nohup /usr/bin/hp-config_usb_printer $env{BUSNUM}:$env{DEVNUM}'"
-+
+# This rule uploads firmware to HP USB printer devices if needed:
+ENV{hp_test}=="yes", PROGRAM="/bin/logger -p user.info udev hpmud.rules runs hp-firmware to test if HP device with USB vendor ID $attr{idVendor} and USB product ID $attr{idProduct} at USB bus ID $env{BUSNUM} and USB device ID $env{DEVNUM} needs firmware and if yes to upload it", RUN+="/usr/bin/hp-firmware -s $env{BUSNUM}:$env{DEVNUM}"
+
++++++ hplip-3.15.11.tar.gz -> hplip-3.16.5.tar.gz ++++++
/work/SRC/openSUSE:Factory/hplip/hplip-3.15.11.tar.gz /work/SRC/openSUSE:Factory/.hplip.new/hplip-3.16.5.tar.gz differ: char 5, line 1
1
0
Hello community,
here is the log from the commit of package mercurial for openSUSE:Factory checked in at 2016-07-01 09:50:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/mercurial (Old)
and /work/SRC/openSUSE:Factory/.mercurial.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mercurial"
Changes:
--------
--- /work/SRC/openSUSE:Factory/mercurial/mercurial.changes 2016-05-24 09:33:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.mercurial.new/mercurial.changes 2016-07-01 09:50:37.000000000 +0200
@@ -1,0 +2,9 @@
+Sun Jun 12 17:53:35 UTC 2016 - astieger(a)suse.com
+
+- mercurial 3.8.3:
+ * bookmarks: allow pushing active bookmark on new remote head
+ * localrepo: prevent executable-bit only changes from being lost on amend
+ * strip: invalidate phase cache after stripping changeset
+- verify source signature
+
+-------------------------------------------------------------------
Old:
----
mercurial-3.8.2.tar.gz
New:
----
mercurial-3.8.3.tar.gz
mercurial-3.8.3.tar.gz.asc
mercurial.keyring
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ mercurial.spec ++++++
--- /var/tmp/diff_new_pack.rbX1z6/_old 2016-07-01 09:50:38.000000000 +0200
+++ /var/tmp/diff_new_pack.rbX1z6/_new 2016-07-01 09:50:38.000000000 +0200
@@ -16,44 +16,45 @@
#
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%endif
Name: mercurial
-Version: 3.8.2
+Version: 3.8.3
Release: 0
Summary: Scalable Distributed SCM
License: GPL-2.0+
Group: Development/Tools/Version Control
-Url: http://mercurial.selenic.com/
-Source: http://mercurial.selenic.com/release/mercurial-%{version}.tar.gz
+Url: https://www.mercurial-scm.org/
+Source: https://www.mercurial-scm.org/release/mercurial-%{version}.tar.gz
Source1: cacerts.rc
+Source2: https://www.mercurial-scm.org/release/mercurial-%{version}.tar.gz.asc
+Source3: mercurial.keyring
Source99: mercurial-rpmlintrc
Patch0: mercurial-hgk-path-fix.diff
# PATCH-FIX-OPENSUSE mercurial-docutils-compat.diff -- Fix for new docutils options not available on 11.1 and older
Patch1: mercurial-docutils-compat.diff
# PATCH-FIX-OPENSUSE mercurial-locale-path-fix.patch saschpe(a)suse.de -- locales are found in /usr/share/locale
Patch2: mercurial-locale-path-fix.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
BuildRequires: python-devel
-%if %suse_version < 1210
+BuildRequires: python-xml
+Requires: python
+Requires: python-curses
+Requires: python-xml
+Recommends: %{name}-lang
+Provides: hg = %{version}
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} < 1210
BuildRequires: docutils
%else
BuildRequires: python-docutils
%endif
-BuildRequires: python-xml
-Requires: python-curses
-Requires: python-xml
%if 0%{?sles_version}
Requires: openssl-certs
%else
Requires: ca-certificates
%endif
-Requires: python
-Recommends: %{name}-lang
-Provides: hg = %{version}
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%endif
-
%if 0%{?with_tests}
Source90: tests.blacklist
BuildRequires: bzr
@@ -77,13 +78,13 @@
%setup -q
%patch0
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%patch1 -p0
+%patch1
%endif
%patch2 -p1
chmod 644 hgweb.cgi
%build
-make all
+make %{?_smp_mflags} all
%install
make install PREFIX="%{_prefix}" DESTDIR=%{buildroot}
@@ -105,10 +106,11 @@
%if 0%{?with_tests}
%check
-make tests TESTFLAGS="-v --blacklist=%{SOURCE90}"
+make %{?_smp_mflags} tests TESTFLAGS="-v --blacklist=%{SOURCE90}"
%endif
%files lang -f hg.lang
+%defattr(-,root,root)
%files
%defattr(-, root, root)
++++++ mercurial-3.8.2.tar.gz -> mercurial-3.8.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/.hgsigs new/mercurial-3.8.3/.hgsigs
--- old/mercurial-3.8.2/.hgsigs 2016-05-17 00:21:26.000000000 +0200
+++ new/mercurial-3.8.3/.hgsigs 2016-06-01 22:48:39.000000000 +0200
@@ -126,3 +126,4 @@
740156eedf2c450aee58b1a90b0e826f47c5da64 0 iQIVAwUAVxLGMCBXgaxoKi1yAQLhIg/8DDX+sCz7LmqO47/FfTo+OqGR+bTTqpfK3WebitL0Z6hbXPj7s45jijqIFGqKgMPqS5oom1xeuGTPHdYA0NNoc/mxSCuNLfuXYolpNWPN71HeSDRV9SnhMThG5HSxI+P0Ye4rbsCHrVV+ib1rV81QE2kZ9aZsJd0HnGd512xJ+2ML7AXweM/4lcLmMthN+oi/dv1OGLzfckrcr/fEATCLZt55eO7idx11J1Fk4ptQ6dQ/bKznlD4hneyy1HMPsGxw+bCXrMF2C/nUiRLHdKgGqZ+cDq6loQRfFlQoIhfoEnWC424qbjH4rvHgkZHqC59Oi/ti9Hi75oq9Tb79yzlCY/fGsdrlJpEzrTQdHFMHUoO9CC+JYObXHRo3ALnC5350ZBKxlkdpmucrHTgcDabfhRlx9vDxP4RDopm2hAjk2LJH7bdxnGEyZYkTOZ3hXKnVpt2hUQb4jyzzC9Kl47TFpPKNVKI+NLqRRZAIdXXiy24KD7WzzE6L0NNK0/IeqKBENLL8I1PmDQ6XmYTQVhTuad1jjm2PZDyGiXmJFZO1O/NGecVTvVynKsDT6XhEvzyEtjXqD98rrhbeMHTcmNSwwJMDvm9ws0075sLQyq2EYFG6ECWFypdA/jfumTmxOTkMtuy/V1Gyq7YJ8YaksZ7fXNY9VuJFP72grmlXc6Dvpr4=
f85de28eae32e7d3064b1a1321309071bbaaa069 0 iQIVAwUAVyZQaiBXgaxoKi1yAQJhCQ//WrRZ55k3VI/OgY+I/HvgFHOC0sbhe207Kedxvy00a3AtXM6wa5E95GNX04QxUfTWUf5ZHDfEgj0/mQywNrH1oJG47iPZSs+qXNLqtgAaXtrih6r4/ruUwFCRFxqK9mkhjG61SKicw3Q7uGva950g6ZUE5BsZ7XJWgoDcJzWKR+AH992G6H//Fhi4zFQAmB34++sm80wV6wMxVKA/qhQzetooTR2x9qrHpvCKMzKllleJe48yzPLJjQoaaVgXCDav0eIePFNw0WvVSldOEp/ADDdTGa65qsC1rO2BB1Cu5+frJ/vUoo0PwIgqgD6p2i41hfIKvkp6130TxmRVxUx+ma8gBYEpPIabV0flLU72gq8lMlGBBSnQ+fcZsfs/Ug0xRN0tzkEScmZFiDxRGk0y7IalXzv6irwOyC2fZCajXGJDzkROQXWMgy9eKkwuFhZBmPVYtrATSq3jHLVmJg5vfdeiVzA6NKxAgGm2z8AsRrijKK8WRqFYiH6xcWKG5u+FroPQdKa0nGCkPSTH3tvC6fAHTVm7JeXch5QE/LiS9Y575pM2PeIP+k+Fr1ugK0AEvYJAXa5UIIcdszPyI+TwPTtWaQ83X99qGAdmRWLvSYjqevOVr7F/fhO3XKFXRCcHA3EzVYnG7nWiVACYF3H2UgN4PWjStbx/Qhhdi9xAuks=
a56296f55a5e1038ea5016dace2076b693c28a56 0 iQIVAwUAVyZarCBXgaxoKi1yAQL87g/8D7whM3e08HVGDHHEkVUgqLIfueVy1mx0AkRvelmZmwaocFNGpZTd3AjSwy6qXbRNZFXrWU85JJvQCi3PSo/8bK43kwqLJ4lv+Hv2zVTvz30vbLWTSndH3oVRu38lIA7b5K9J4y50pMCwjKLG9iyp+aQG4RBz76fJMlhXy0gu38A8JZVKEeAnQCbtzxKXBzsC8k0/ku/bEQEoo9D4AAGlVTbl5AsHMp3Z6NWu7kEHAX/52/VKU2I0LxYqRxoL1tjTVGkAQfkOHz1gOhLXUgGSYmA9Fb265AYj9cnGWCfyNonlE0Rrk2kAsrjBTGiLyb8WvK/TZmRo4ZpNukzenS9UuAOKxA22Kf9+oN9kKBu1HnwqusYDH9pto1WInCZKV1al7DMBXbGFcnyTXk2xuiTGhVRG5LzCO2QMByBLXiYl77WqqJnzxK3v5lAc/immJl5qa3ATUlTnVBjAs+6cbsbCoY6sjXCT0ClndA9+iZZ1TjPnmLrSeFh5AoE8WHmnFV6oqGN4caX6wiIW5vO+x5Q2ruSsDrwXosXIYzm+0KYKRq9O+MaTwR44Dvq3/RyeIu/cif/Nc7B8bR5Kf7OiRf2T5u97MYAomwGcQfXqgUfm6y7D3Yg+IdAdAJKitxhRPsqqdxIuteXMvOvwukXNDiWP1zsKoYLI37EcwzvbGLUlZvg=
+aaabed77791a75968a12b8c43ad263631a23ee81 0 iQIVAwUAVzpH4CBXgaxoKi1yAQLm5A/9GUYv9CeIepjcdWSBAtNhCBJcqgk2cBcV0XaeQomfxqYWfbW2fze6eE+TrXPKTX1ajycgqquMyo3asQolhHXwasv8+5CQxowjGfyVg7N/kyyjgmJljI+rCi74VfnsEhvG/J4GNr8JLVQmSICfALqQjw7XN8doKthYhwOfIY2vY419613v4oeBQXSsItKC/tfKw9lYvlk4qJKDffJQFyAekgv43ovWqHNkl4LaR6ubtjOsxCnxHfr7OtpX3muM9MLT/obBax5I3EsmiDTQBOjbvI6TcLczs5tVCnTa1opQsPUcEmdA4WpUEiTnLl9lk9le/BIImfYfEP33oVYmubRlKhJYnUiu89ao9L+48FBoqCY88HqbjQI1GO6icfRJN/+NLVeE9wubltbWFETH6e2Q+Ex4+lkul1tQMLPcPt10suMHnEo3/FcOTPt6/DKeMpsYgckHSJq5KzTg632xifyySmb9qkpdGGpY9lRal6FHw3rAhRBqucMgxso4BwC51h04RImtCUQPoA3wpb4BvCHba/thpsUFnHefOvsu3ei4JyHXZK84LPwOj31PcucNFdGDTW6jvKrF1vVUIVS9uMJkJXPu0V4i/oEQSUKifJZivROlpvj1eHy3KeMtjq2kjGyXY2KdzxpT8wX/oYJhCtm1XWMui5f24XBjE6xOcjjm8k4=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/.hgtags new/mercurial-3.8.3/.hgtags
--- old/mercurial-3.8.2/.hgtags 2016-05-17 00:21:26.000000000 +0200
+++ new/mercurial-3.8.3/.hgtags 2016-06-01 22:48:39.000000000 +0200
@@ -139,3 +139,4 @@
740156eedf2c450aee58b1a90b0e826f47c5da64 3.8-rc
f85de28eae32e7d3064b1a1321309071bbaaa069 3.8
a56296f55a5e1038ea5016dace2076b693c28a56 3.8.1
+aaabed77791a75968a12b8c43ad263631a23ee81 3.8.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/PKG-INFO new/mercurial-3.8.3/PKG-INFO
--- old/mercurial-3.8.2/PKG-INFO 2016-05-17 00:21:39.000000000 +0200
+++ new/mercurial-3.8.3/PKG-INFO 2016-06-01 22:48:53.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: mercurial
-Version: 3.8.2
+Version: 3.8.3
Summary: Fast scalable distributed SCM (revision control, version control) system
Home-page: https://mercurial-scm.org/
Author: Matt Mackall and many others
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/mercurial/__version__.py new/mercurial-3.8.3/mercurial/__version__.py
--- old/mercurial-3.8.2/mercurial/__version__.py 2016-05-17 00:21:36.000000000 +0200
+++ new/mercurial-3.8.3/mercurial/__version__.py 2016-06-01 22:48:50.000000000 +0200
@@ -1,2 +1,2 @@
# this file is autogenerated by setup.py
-version = "3.8.2"
+version = "3.8.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/mercurial/discovery.py new/mercurial-3.8.3/mercurial/discovery.py
--- old/mercurial-3.8.2/mercurial/discovery.py 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/mercurial/discovery.py 2016-06-01 22:48:29.000000000 +0200
@@ -240,15 +240,16 @@
def _nowarnheads(pushop):
# Compute newly pushed bookmarks. We don't warn about bookmarked heads.
-
- # internal config: bookmarks.pushing
- newbookmarks = pushop.ui.configlist('bookmarks', 'pushing')
-
repo = pushop.repo.unfiltered()
remote = pushop.remote
localbookmarks = repo._bookmarks
remotebookmarks = remote.listkeys('bookmarks')
bookmarkedheads = set()
+
+ # internal config: bookmarks.pushing
+ newbookmarks = [localbookmarks.expandname(b)
+ for b in pushop.ui.configlist('bookmarks', 'pushing')]
+
for bm in localbookmarks:
rnode = remotebookmarks.get(bm)
if rnode and rnode in repo:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/mercurial/localrepo.py new/mercurial-3.8.3/mercurial/localrepo.py
--- old/mercurial-3.8.2/mercurial/localrepo.py 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/mercurial/localrepo.py 2016-06-01 22:48:30.000000000 +0200
@@ -1404,6 +1404,8 @@
node = fctx.filenode()
if node in [fparent1, fparent2]:
self.ui.debug('reusing %s filelog entry\n' % fname)
+ if manifest1.flags(fname) != fctx.flags():
+ changelist.append(fname)
return node
flog = self.file(fname)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/mercurial/manifest.c new/mercurial-3.8.3/mercurial/manifest.c
--- old/mercurial-3.8.2/mercurial/manifest.c 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/mercurial/manifest.c 2016-06-01 22:48:29.000000000 +0200
@@ -861,7 +861,7 @@
{"iterkeys", (PyCFunction)lazymanifest_getkeysiter, METH_NOARGS,
"Iterate over file names in this lazymanifest."},
{"iterentries", (PyCFunction)lazymanifest_getentriesiter, METH_NOARGS,
- "Iterate over (path, nodeid, flags) typles in this lazymanifest."},
+ "Iterate over (path, nodeid, flags) tuples in this lazymanifest."},
{"copy", (PyCFunction)lazymanifest_copy, METH_NOARGS,
"Make a copy of this lazymanifest."},
{"filtercopy", (PyCFunction)lazymanifest_filtercopy, METH_O,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/mercurial/repair.py new/mercurial-3.8.3/mercurial/repair.py
--- old/mercurial-3.8.2/mercurial/repair.py 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/mercurial/repair.py 2016-06-01 22:48:29.000000000 +0200
@@ -194,6 +194,7 @@
if not repo.ui.verbose:
repo.ui.popbuffer()
f.close()
+ repo._phasecache.invalidate()
for m in updatebm:
bm[m] = repo[newbmtarget].node()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-bookmarks-pushpull.t new/mercurial-3.8.3/tests/test-bookmarks-pushpull.t
--- old/mercurial-3.8.2/tests/test-bookmarks-pushpull.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-bookmarks-pushpull.t 2016-06-01 22:48:29.000000000 +0200
@@ -690,7 +690,7 @@
$ echo c5 > f2
$ hg ci -Am5
created new head
- $ hg push -B W
+ $ hg push -B .
pushing to http://localhost:$HGPORT/
searching for changes
remote: adding changesets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-cache-abuse.t new/mercurial-3.8.3/tests/test-cache-abuse.t
--- old/mercurial-3.8.2/tests/test-cache-abuse.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-cache-abuse.t 2016-06-01 22:48:30.000000000 +0200
@@ -88,7 +88,7 @@
$ damage "log -qr branch(b2)" rbc-names-v1
--- before * (glob)
+++ after * (glob)
- @@ -1,8 +0,0 @@
+ @@ -1,8 +?,0 @@ (glob)
-2:5fb7d38b9dc4
-3:60b597ffdafa
-4:b1174d11b69e
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-commit-amend.t new/mercurial-3.8.3/tests/test-commit-amend.t
--- old/mercurial-3.8.2/tests/test-commit-amend.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-commit-amend.t 2016-06-01 22:48:30.000000000 +0200
@@ -1156,3 +1156,21 @@
rev offset length delta linkrev nodeid p1 p2
0 0 88 -1 3 34a4d536c0c0 000000000000 000000000000
+Test if amend preserves executable bit changes
+ $ chmod +x newdirname/commonfile.py
+ $ hg ci -m chmod
+ $ hg ci --amend -m "chmod amended"
+ $ hg ci --amend -m "chmod amended second time"
+ $ hg log -p --git -r .
+ changeset: 8:b1326f52dddf
+ branch: newdirname
+ tag: tip
+ parent: 5:7fd235f7cb2f
+ user: test
+ date: Thu Jan 01 00:00:00 1970 +0000
+ summary: chmod amended second time
+
+ diff --git a/newdirname/commonfile.py b/newdirname/commonfile.py
+ old mode 100644
+ new mode 100755
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-commit-interactive.t new/mercurial-3.8.3/tests/test-commit-interactive.t
--- old/mercurial-3.8.2/tests/test-commit-interactive.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-commit-interactive.t 2016-06-01 22:48:30.000000000 +0200
@@ -895,11 +895,24 @@
$ LANGUAGE=ja
$ export LANGUAGE
- $ hg commit -i --encoding cp932 2>&1 <<EOF | grep '^y - '
+ $ cat > $TESTTMP/escape.py <<EOF
+ > from __future__ import absolute_import
+ > import sys
+ > def escape(c):
+ > o = ord(c)
+ > if o < 0x80:
+ > return c
+ > else:
+ > return r'\x%02x' % o # escape char setting MSB
+ > for l in sys.stdin:
+ > sys.stdout.write(''.join(escape(c) for c in l))
+ > EOF
+
+ $ hg commit -i --encoding cp932 2>&1 <<EOF | python $TESTTMP/escape.py | grep '^y - '
> ?
> q
> EOF
- y - \x82\xb1\x82\xcc\x95\xcf\x8dX\x82\xf0\x8bL\x98^(yes) (esc)
+ y - \x82\xb1\x82\xcc\x95\xcf\x8dX\x82\xf0\x8bL\x98^(yes)
$ LANGUAGE=
#endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-strip.t new/mercurial-3.8.3/tests/test-strip.t
--- old/mercurial-3.8.2/tests/test-strip.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-strip.t 2016-06-01 22:48:30.000000000 +0200
@@ -838,6 +838,41 @@
date: Thu Jan 01 00:00:00 1970 +0000
summary: mergeCD
+Check that the phase cache is properly invalidated after a strip with bookmark.
+
+ $ cat > ../stripstalephasecache.py << EOF
+ > from mercurial import extensions, localrepo
+ > def transactioncallback(orig, repo, desc, *args, **kwargs):
+ > def test(transaction):
+ > # observe cache inconsistency
+ > try:
+ > [repo.changelog.node(r) for r in repo.revs("not public()")]
+ > except IndexError:
+ > repo.ui.status("Index error!\n")
+ > transaction = orig(repo, desc, *args, **kwargs)
+ > # warm up the phase cache
+ > list(repo.revs("not public()"))
+ > if desc != 'strip':
+ > transaction.addpostclose("phase invalidation test", test)
+ > return transaction
+ > def extsetup(ui):
+ > extensions.wrapfunction(localrepo.localrepository, "transaction",
+ > transactioncallback)
+ > EOF
+ $ hg up -C 2
+ 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+ $ echo k > k
+ $ hg add k
+ $ hg commit -m commitK
+ $ echo l > l
+ $ hg add l
+ $ hg commit -m commitL
+ $ hg book -r tip blah
+ $ hg strip ".^" --config extensions.crash=$TESTTMP/stripstalephasecache.py
+ 0 files updated, 0 files merged, 2 files removed, 0 files unresolved
+ saved backup bundle to $TESTTMP/issue4736/.hg/strip-backup/8f0b4384875c-4fa10deb-backup.hg (glob)
+ $ hg up -C 1
+ 0 files updated, 0 files merged, 1 files removed, 0 files unresolved
Error during post-close callback of the strip transaction
(They should be gracefully handled and reported)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mercurial-3.8.2/tests/test-subrepo-git.t new/mercurial-3.8.3/tests/test-subrepo-git.t
--- old/mercurial-3.8.2/tests/test-subrepo-git.t 2016-05-17 00:21:18.000000000 +0200
+++ new/mercurial-3.8.3/tests/test-subrepo-git.t 2016-06-01 22:48:30.000000000 +0200
@@ -1135,7 +1135,7 @@
test for Git CVE-2016-3068
$ hg init malicious-subrepository
$ cd malicious-subrepository
- $ echo "s = [git]ext::sh -c echo% pwned% >&2" > .hgsub
+ $ echo "s = [git]ext::sh -c echo% \$PWNED_MSG% >pwned.txt" > .hgsub
$ git init s
Initialized empty Git repository in $TESTTMP/tc/malicious-subrepository/s/.git/
$ cd s
@@ -1145,23 +1145,30 @@
$ hg add .hgsub
$ hg commit -m "add subrepo"
$ cd ..
- $ env -u GIT_ALLOW_PROTOCOL hg clone malicious-subrepository malicious-subrepository-protected
+ $ rm -f pwned.txt
+ $ env -u GIT_ALLOW_PROTOCOL \
+ > PWNED_MSG="your git is too old or mercurial has regressed" hg clone \
+ > malicious-subrepository malicious-subrepository-protected
Cloning into '$TESTTMP/tc/malicious-subrepository-protected/s'... (glob)
fatal: transport 'ext' not allowed
updating to branch default
- cloning subrepo s from ext::sh -c echo% pwned% >&2
+ cloning subrepo s from ext::sh -c echo% $PWNED_MSG% >pwned.txt
abort: git clone error 128 in s (in subrepo s)
[255]
+ $ test -f pwned.txt && cat pwned.txt || true
whitelisting of ext should be respected (that's the git submodule behaviour)
- $ env GIT_ALLOW_PROTOCOL=ext hg clone malicious-subrepository malicious-subrepository-clone-allowed
+ $ rm -f pwned.txt
+ $ env GIT_ALLOW_PROTOCOL=ext PWNED_MSG="you asked for it" hg clone \
+ > malicious-subrepository malicious-subrepository-clone-allowed
Cloning into '$TESTTMP/tc/malicious-subrepository-clone-allowed/s'... (glob)
- pwned
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
updating to branch default
- cloning subrepo s from ext::sh -c echo% pwned% >&2
+ cloning subrepo s from ext::sh -c echo% $PWNED_MSG% >pwned.txt
abort: git clone error 128 in s (in subrepo s)
[255]
+ $ cat pwned.txt
+ you asked for it
1
0