Hello community, here is the log from the commit of package yast2-snapper for openSUSE:Factory checked in at 2013-07-16 16:32:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-snapper (Old) and /work/SRC/openSUSE:Factory/.yast2-snapper.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-snapper" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-snapper/yast2-snapper.changes 2013-05-16 11:44:21.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-snapper.new/yast2-snapper.changes 2013-07-16 16:32:45.000000000 +0200 @@ -1,0 +2,6 @@ +Fri Jul 12 11:05:16 CEST 2013 - [email protected] + +- adapted to libsnapper change +- 2.24.1 + +------------------------------------------------------------------- Old: ---- yast2-snapper-2.24.0.tar.bz2 New: ---- yast2-snapper-2.24.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-snapper.spec ++++++ --- /var/tmp/diff_new_pack.IWb7ev/_old 2013-07-16 16:32:46.000000000 +0200 +++ /var/tmp/diff_new_pack.IWb7ev/_new 2013-07-16 16:32:46.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-snapper -Version: 2.24.0 +Version: 2.24.1 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-snapper-2.24.0.tar.bz2 -> yast2-snapper-2.24.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/Makefile.am new/yast2-snapper-2.24.1/Makefile.am --- old/yast2-snapper-2.24.0/Makefile.am 2013-05-13 14:12:39.000000000 +0200 +++ new/yast2-snapper-2.24.1/Makefile.am 2013-07-12 11:11:02.000000000 +0200 @@ -158,14 +158,19 @@ TAGVERSION = $(Y2TOOL) tagversion -# check if there is no modified files and all commits were pushed -check-up-to-date: - if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` -gt 0 ]; then \ - (echo "ERROR: Source is not commited and pushed. See `git status`"; false) \ +check-up-to-date check-cvs-up-to-date check-svn-up-to-date: + if [ -d $(srcdir)/CVS ]; then \ + cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\ + else \ + cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep -v '^Status against revision' ;\ fi check-tagversion: - cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \ + @if [ -d $(srcdir)/CVS ]; then \ + cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\ + else \ + cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \ + fi >/dev/null; \ [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false ) check-parse-old: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/Makefile.am.common new/yast2-snapper-2.24.1/Makefile.am.common --- old/yast2-snapper-2.24.0/Makefile.am.common 2013-05-13 14:12:39.000000000 +0200 +++ new/yast2-snapper-2.24.1/Makefile.am.common 2013-07-12 11:11:01.000000000 +0200 @@ -31,7 +31,7 @@ CHECK_SYNTAX = true check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles) - @if test "$(filter %.ycp,client_DATA)"; then \ + @if test "$(client_DATA)"; then \ if $(CHECK_SYNTAX); then \ TO_CHECK="$(filter %.ycp,$^)"; \ echo "Checking syntax of $${TO_CHECK}"; \ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/Makefile.in new/yast2-snapper-2.24.1/Makefile.in --- old/yast2-snapper-2.24.0/Makefile.in 2013-05-13 14:12:52.000000000 +0200 +++ new/yast2-snapper-2.24.1/Makefile.in 2013-07-12 11:11:14.000000000 +0200 @@ -1064,14 +1064,19 @@ package: check-up-to-date check-tagversion check-textdomain package-local -# check if there is no modified files and all commits were pushed -check-up-to-date: - if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` -gt 0 ]; then \ - (echo "ERROR: Source is not commited and pushed. See `git status`"; false) \ +check-up-to-date check-cvs-up-to-date check-svn-up-to-date: + if [ -d $(srcdir)/CVS ]; then \ + cd $(srcdir) && ! cvs -q -n up 2>/dev/null | grep '^[MCAR] ';\ + else \ + cd $(srcdir) && ! LC_ALL=C svn status --show-updates --quiet | grep -v '^Status against revision' ;\ fi check-tagversion: - cd $(srcdir) && $(TAGVERSION) --check >/dev/null; \ + @if [ -d $(srcdir)/CVS ]; then \ + cd $(srcdir) && cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\ + else \ + cd $(srcdir) && svn cat `$(TAGVERSION) --echourl`/VERSION; \ + fi >/dev/null; \ [ $$? = 0 ] || ( echo "ERROR: Please run 'tagversion' first"; false ) check-parse-old: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/VERSION new/yast2-snapper-2.24.1/VERSION --- old/yast2-snapper-2.24.0/VERSION 2013-05-02 15:46:45.000000000 +0200 +++ new/yast2-snapper-2.24.1/VERSION 2013-07-12 11:10:54.000000000 +0200 @@ -1 +1 @@ -2.24.0 +2.24.1 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/agent-snapper/src/SnapperAgent.cc new/yast2-snapper-2.24.1/agent-snapper/src/SnapperAgent.cc --- old/yast2-snapper-2.24.0/agent-snapper/src/SnapperAgent.cc 2013-01-22 12:09:18.000000000 +0100 +++ new/yast2-snapper-2.24.1/agent-snapper/src/SnapperAgent.cc 2013-06-24 10:53:12.000000000 +0200 @@ -190,7 +190,7 @@ list<ConfigInfo> configs = Snapper::getConfigs(); for (list<ConfigInfo>::const_iterator it = configs.begin(); it != configs.end(); ++it) { - retlist->add (YCPString (it->config_name)); + retlist->add (YCPString (it->getConfigName())); } } catch (const ListConfigsFailedException& e) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/configure new/yast2-snapper-2.24.1/configure --- old/yast2-snapper-2.24.0/configure 2013-05-13 14:12:50.000000000 +0200 +++ new/yast2-snapper-2.24.1/configure 2013-07-12 11:11:13.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for yast2-snapper 2.24.0. +# Generated by GNU Autoconf 2.69 for yast2-snapper 2.24.1. # # Report bugs to <http://bugs.opensuse.org/>. # @@ -590,8 +590,8 @@ # Identity of this package. PACKAGE_NAME='yast2-snapper' PACKAGE_TARNAME='yast2-snapper' -PACKAGE_VERSION='2.24.0' -PACKAGE_STRING='yast2-snapper 2.24.0' +PACKAGE_VERSION='2.24.1' +PACKAGE_STRING='yast2-snapper 2.24.1' PACKAGE_BUGREPORT='http://bugs.opensuse.org/' PACKAGE_URL='' @@ -1375,7 +1375,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures yast2-snapper 2.24.0 to adapt to many kinds of systems. +\`configure' configures yast2-snapper 2.24.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1446,7 +1446,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of yast2-snapper 2.24.0:";; + short | recursive ) echo "Configuration of yast2-snapper 2.24.1:";; esac cat <<\_ACEOF @@ -1564,7 +1564,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -yast2-snapper configure 2.24.0 +yast2-snapper configure 2.24.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2017,7 +2017,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by yast2-snapper $as_me 2.24.0, which was +It was created by yast2-snapper $as_me 2.24.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2956,7 +2956,7 @@ # Define the identity of the package. PACKAGE='yast2-snapper' - VERSION='2.24.0' + VERSION='2.24.1' cat >>confdefs.h <<_ACEOF @@ -3079,7 +3079,7 @@ -VERSION="2.24.0" +VERSION="2.24.1" RPMNAME="yast2-snapper" MAINTAINER="Jiri Suchomel <[email protected]>" @@ -16722,7 +16722,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by yast2-snapper $as_me 2.24.0, which was +This file was extended by yast2-snapper $as_me 2.24.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -16788,7 +16788,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -yast2-snapper config.status 2.24.0 +yast2-snapper config.status 2.24.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/configure.in new/yast2-snapper-2.24.1/configure.in --- old/yast2-snapper-2.24.0/configure.in 2013-05-13 14:12:39.000000000 +0200 +++ new/yast2-snapper-2.24.1/configure.in 2013-07-12 11:11:01.000000000 +0200 @@ -1,9 +1,9 @@ dnl configure.in for yast2-snapper dnl -dnl -- This file is generated by y2autoconf 2.24.0 - DO NOT EDIT! -- +dnl -- This file is generated by y2autoconf 2.23.2 - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(yast2-snapper, 2.24.0, http://bugs.opensuse.org/, yast2-snapper) +AC_INIT(yast2-snapper, 2.24.1, http://bugs.opensuse.org/, yast2-snapper) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -18,7 +18,7 @@ AM_INIT_AUTOMAKE(tar-ustar -Wno-portability) dnl Important YaST2 variables -VERSION="2.24.0" +VERSION="2.24.1" RPMNAME="yast2-snapper" MAINTAINER="Jiri Suchomel <[email protected]>" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-snapper-2.24.0/src/Makefile.in new/yast2-snapper-2.24.1/src/Makefile.in --- old/yast2-snapper-2.24.0/src/Makefile.in 2013-05-13 14:12:52.000000000 +0200 +++ new/yast2-snapper-2.24.1/src/Makefile.in 2013-07-12 11:11:15.000000000 +0200 @@ -639,7 +639,7 @@ dist-hook: check-syntax check-syntax: $(client_DATA) $(ycpchook) $(ybcfiles) - @if test "$(filter %.ycp,client_DATA)"; then \ + @if test "$(client_DATA)"; then \ if $(CHECK_SYNTAX); then \ TO_CHECK="$(filter %.ycp,$^)"; \ echo "Checking syntax of $${TO_CHECK}"; \ -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
