[yast-commit] [ci_new_pac] JFYI yast2-core -> sle12
Script 'mail_helper' called by ro Hello packager, This is just FYI. Your package was checked in in distribution "sle12" by autobuild-member: ro. Here comes the log... ---------------------------%<------------------------------ Hi, here is the log from ci_new_pac /mounts/work_src_done/SLE12/yast2-core -> sle12 Changes: -------- --- /work/SRC/SUSE:SLE-12:GA/yast2-core/yast2-core.changes 2014-01-17 14:16:27.000000000 +0100 +++ /mounts/work_src_done/SLE12/yast2-core/yast2-core.changes 2014-03-17 15:06:24.000000000 +0100 @@ -1,0 +2,6 @@ +Mon Mar 17 12:52:24 UTC 2014 - jreidinger@suse.com + +- do not prefer executable programs over builtin components +- 3.1.6 + +------------------------------------------------------------------- calling whatdependson for sle12-i586 Packages directly triggered for rebuild: - yast2-core - at least 82 other packages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/SUSE:SLE-12:GA/yast2-core (Old) and /mounts/work_src_done/SLE12/yast2-core (BS:build ID:34477 MAIL:yast-commit@opensuse.org) (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-core", Maintainer is "yast-commit@opensuse.org" Old: ---- yast2-core-3.1.5.tar.bz2 New: ---- yast2-core-3.1.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-core.spec ++++++ --- /var/tmp/diff_new_pack.INE7lH/_old 2014-03-17 17:29:10.000000000 +0100 +++ /var/tmp/diff_new_pack.INE7lH/_new 2014-03-17 17:29:10.000000000 +0100 @@ -16,20 +16,20 @@ # + Name: yast2-core -Version: 3.1.5 +Version: 3.1.6 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0: %{name}-%{version}.tar.bz2 +Group: System/YaST +License: GPL-2.0+ # obviously -BuildRequires: boost-devel -BuildRequires: gcc-c++ -BuildRequires: libtool +BuildRequires: gcc-c++ boost-devel libtool # we have a parser -BuildRequires: bison -BuildRequires: flex +BuildRequires: flex bison # incompatible change, parser.h -> parser.hh BuildRequires: automake >= 1.12 # needed for all yast packages @@ -39,14 +39,11 @@ # autodocs BuildRequires: doxygen # docbook docs -BuildRequires: docbook-xsl-stylesheets -BuildRequires: libxslt +BuildRequires: docbook-xsl-stylesheets libxslt # catalog: convert URIs to local filenames BuildRequires: sgml-skel Summary: YaST2 - Core Libraries -License: GPL-2.0+ -Group: System/YaST Requires: perl = %{perl_version} Provides: liby2util = 2.16.1 Obsoletes: liby2util < 2.16.1 @@ -59,13 +56,10 @@ Requires: yast2-core = %version Summary: YaST2 - Core Libraries -Group: System/YaST Provides: liby2util-devel = 2.16.1 Obsoletes: liby2util-devel < 2.16.1 -Requires: glibc-devel Requires: hwinfo-devel -Requires: libstdc++-devel -Requires: sysfsutils +Requires: glibc-devel libstdc++-devel sysfsutils # required for libscr # for FlexLexer.h; I think that this dependency could be made # private but it seems not worth the effort @@ -77,8 +71,8 @@ %package debugger Requires: yast2-core = %version -Summary: YaST2 - Core Libraries Group: Development/Libraries +Summary: YaST2 - Core Libraries %description debugger YCP debugger client. @@ -86,6 +80,7 @@ %prep %setup -n %{name}-%{version} + %build %ifarch %arm @@ -105,6 +100,7 @@ mkdir -p "$RPM_BUILD_ROOT"%{yast_logdir} %perl_process_packlist + %post /sbin/ldconfig # bnc#485992, since oS 11.2 @@ -170,5 +166,3 @@ %files debugger %defattr(-,root,root) %attr(0755,-,-) %{yast_ybindir}/ycp-debugger - -%changelog ++++++ yast2-core-3.1.5.tar.bz2 -> yast2-core-3.1.6.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-core-3.1.5/liby2/src/Y2CCProgram.cc new/yast2-core-3.1.6/liby2/src/Y2CCProgram.cc --- old/yast2-core-3.1.5/liby2/src/Y2CCProgram.cc 2013-12-13 14:19:48.000000000 +0100 +++ new/yast2-core-3.1.6/liby2/src/Y2CCProgram.cc 2014-03-17 14:49:18.000000000 +0100 @@ -47,6 +47,11 @@ Y2Component * Y2CCProgram::createInLevel (const char *name, int level, int current_level) const { + // do not create component in wrong level, otherwise program precedence is + // ignored see https://github.com/yast/yast-ruby-bindings/issues/107 + if (current_level != level) + return NULL; + string root; if (strncmp (name, "chroot=", 7) == 0) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-core-3.1.5/package/yast2-core.changes new/yast2-core-3.1.6/package/yast2-core.changes --- old/yast2-core-3.1.5/package/yast2-core.changes 2013-12-13 14:19:49.000000000 +0100 +++ new/yast2-core-3.1.6/package/yast2-core.changes 2014-03-17 14:49:19.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Mon Mar 17 12:52:24 UTC 2014 - jreidinger@suse.com + +- do not prefer executable programs over builtin components +- 3.1.6 + +------------------------------------------------------------------- Fri Dec 13 10:53:16 UTC 2013 - guillaume@opensuse.org - Fix ARM build: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-core-3.1.5/package/yast2-core.spec new/yast2-core-3.1.6/package/yast2-core.spec --- old/yast2-core-3.1.5/package/yast2-core.spec 2013-12-13 14:19:49.000000000 +0100 +++ new/yast2-core-3.1.6/package/yast2-core.spec 2014-03-17 14:49:19.000000000 +0100 @@ -18,7 +18,7 @@ Name: yast2-core -Version: 3.1.5 +Version: 3.1.6 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build continue with "q"... Checked in at Mon Mar 17 17:29:59 CET 2014 by ro Remember to have fun... -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
ro