Hello community, here is the log from the commit of package lxc for openSUSE:Factory checked in at 2014-11-20 18:43:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxc (Old) and /work/SRC/openSUSE:Factory/.lxc.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxc" Changes: -------- --- /work/SRC/openSUSE:Factory/lxc/lxc.changes 2014-11-02 16:46:26.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.lxc.new/lxc.changes 2014-11-20 18:43:22.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Nov 19 08:18:08 UTC 2014 - [email protected] + +- Added 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch + Disable building opensuse containers on openSUSE 13.2 due to changed + build behaviour (bsc#905638) + +------------------------------------------------------------------- New: ---- 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxc.spec ++++++ --- /var/tmp/diff_new_pack.NgONbf/_old 2014-11-20 18:43:23.000000000 +0100 +++ /var/tmp/diff_new_pack.NgONbf/_new 2014-11-20 18:43:23.000000000 +0100 @@ -27,6 +27,7 @@ Source1: README.SUSE Source2: lxc-createconfig.in Patch1: 0001-added-upstream-action-fallback-create-directory-loca.patch +Patch2: 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -76,6 +77,7 @@ %prep %setup -q %patch1 -p1 +%patch2 -p1 %build chmod 755 configure ++++++ 0002-Disable-building-opensuse-containers-on-openSUSE13.2.patch ++++++ >From 777d55ae5258c99c9fd2a8740fac8ce4d0b02ec8 Mon Sep 17 00:00:00 2001 From: Johannes Kastl <[email protected]> Date: Wed, 19 Nov 2014 11:05:15 +0100 Subject: [PATCH] Disable building opensuse containers on openSUSE 13.2 due to changed build behaviour Signed-off-by: Johannes Kastl <[email protected]> --- templates/lxc-opensuse.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/lxc-opensuse.in b/templates/lxc-opensuse.in index 3999df6..ee7233b 100644 --- a/templates/lxc-opensuse.in +++ b/templates/lxc-opensuse.in @@ -10,6 +10,7 @@ # Authors: # Daniel Lezcano <[email protected]> # Frederic Crozat <[email protected]> +# Johannes Kastl <[email protected]> # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -394,6 +395,11 @@ if [ -z "$path" ]; then exit 1 fi +if grep -q Harlequin /etc/os-release ; then + echo "Building containers on openSUSE 13.2 or Tumbleweed is broken at the moment. We are working on this problem." + exit 1 +fi + if [ "$(id -u)" != "0" ]; then echo "This script should be run as 'root'" exit 1 -- 2.1.3 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
