Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2014-11-04 17:28:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2014-09-19 13:55:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2014-11-04 17:28:22.000000000 +0100 @@ -1,0 +2,7 @@ +Fri Oct 31 07:10:48 UTC 2014 - [email protected] + +- do not crash for non-english locale if log file does not exist + (bnc#898204) +- 3.1.109 + +------------------------------------------------------------------- Old: ---- yast2-3.1.108.tar.bz2 New: ---- yast2-3.1.109.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2.spec ++++++ --- /var/tmp/diff_new_pack.W6tAFa/_old 2014-11-04 17:28:23.000000000 +0100 +++ /var/tmp/diff_new_pack.W6tAFa/_new 2014-11-04 17:28:23.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version: 3.1.108 +Version: 3.1.109 Release: 0 Url: https://github.com/yast/yast-yast2 ++++++ yast2-3.1.108.tar.bz2 -> yast2-3.1.109.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/.travis.yml new/yast2-3.1.109/.travis.yml --- old/yast2-3.1.108/.travis.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.109/.travis.yml 2014-11-01 12:21:11.000000000 +0100 @@ -0,0 +1,14 @@ +language: cpp +compiler: + - gcc +before_install: + # disable rvm, use system Ruby + - rvm reset + - wget https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh + - sh ./travis_setup.sh -p "yast2-core yast2-devtools yast2-testsuite yast2-ruby-bindings yast2 yast2-pkg-bindings" -g rspec:2.14.1 +script: + - make -f Makefile.cvs + - make + - sudo make install + - make check + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/MAINTAINER new/yast2-3.1.109/MAINTAINER --- old/yast2-3.1.108/MAINTAINER 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/MAINTAINER 2014-11-01 12:21:11.000000000 +0100 @@ -1 +1 @@ -YaST2 Maintainers <[email protected]> +Deprecated file. Use `osc maintainer yast2` instead. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/README.md new/yast2-3.1.109/README.md --- old/yast2-3.1.108/README.md 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/README.md 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,8 @@ -# YaST - The basic libraries # +# YaST - The Basic Libraries # + +[](https://travis-ci.org/yast/yast-yast2) +[](https://ci.opensuse.org/view/Yast/job/yast-yast2-master/) +[](https://codeclimate.com/github/yast/yast-yast2) This repository contains basic set of shared libraries and so-called SCR agents used for reading and writing configuration files and some even for executing diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/agents_test/netd_agent_test.rb new/yast2-3.1.109/library/general/test/agents_test/netd_agent_test.rb --- old/yast2-3.1.108/library/general/test/agents_test/netd_agent_test.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.109/library/general/test/agents_test/netd_agent_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -0,0 +1,42 @@ +require_relative "../test_helper" +require 'yast' + +module Yast + describe ".etc.xinetd_conf.services" do + + before :each do + root = File.join(File.dirname(__FILE__), "test_root") + set_root_path(root) + end + + after :each do + reset_root_path + end + + describe ".Read" do + let(:content) {SCR.Read(Path.new(".etc.xinetd_conf.services"))} + + it "reads content of /etc/xinetd.d and returns array" do + expect(content).to be_a(Array) + end + + it "returns one entry per file" do + expect(content.size).to eq(2) + end + + it "returns proper service names" do + services = content.map {|i| i["service"]}.sort + expect(services).to eq(%w(echo services)) + end + + it "only skips parsing of options specific to each service" do + expected = [ + "\ttype\t\t= INTERNAL\n\tid\t\t= echo-stream\n\tFLAGS\t\t= IPv6 IPv4\n", + "\ttype\t\t= INTERNAL UNLISTED\n\tport\t\t= 9098\n\tonly_from\t= 127.0.0.1\n\tFLAGS\t\t= IPv6 IPv4\n" + ] + unparsed = content.map {|i| i["unparsed"]}.sort + expect(unparsed).to eq(expected) + end + end + end +end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/agents_test/proc_meminfo_agent_test.rb new/yast2-3.1.109/library/general/test/agents_test/proc_meminfo_agent_test.rb --- old/yast2-3.1.108/library/general/test/agents_test/proc_meminfo_agent_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/general/test/agents_test/proc_meminfo_agent_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,33 +1,31 @@ +#!/usr/bin/env rspec + require_relative "../test_helper" require "yast" describe ".proc.meminfo" do - AGENT_PATH = Yast::Path.new(".proc.meminfo") before :each do root = File.join(File.dirname(__FILE__), "test_root") - check_version = false - handle = Yast::WFM.SCROpen("chroot=#{root}:scr", check_version) - Yast::WFM.SCRSetDefault(handle) + set_root_path(root) end after :each do - Yast::WFM.SCRClose(Yast::WFM.SCRGetDefault) + reset_root_path end describe ".Read" do + let(:content) { Yast::SCR.Read(Yast::Path.new(".proc.meminfo")) } + it "read content of /proc/meminfo return hash" do - content = Yast::SCR.Read(AGENT_PATH) expect(content).to be_a(Hash) end it "returned hash contain memtotal key" do - content = Yast::SCR.Read(AGENT_PATH) expect(content).to include("memtotal" => 1021032) end it "returned hash contain memfree key" do - content = Yast::SCR.Read(AGENT_PATH) expect(content).to include("memfree" => 83408) end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.conf new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.conf --- old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.conf 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.conf 2014-11-01 12:21:11.000000000 +0100 @@ -0,0 +1,61 @@ +# +# This is the master xinetd configuration file. Settings in the +# default section will be inherited by all service configurations +# unless explicitly overridden in the service configuration. See +# xinetd.conf in the man pages for a more detailed explanation of +# these attributes. + +defaults +{ +# The next two items are intended to be a quick access place to +# temporarily enable or disable services. +# +# enabled = +# disabled = + +# Previous default in SUSE - please don't forget to use the logrotate. The +# sample configuration is in /usr/share/packages/doc/xinetd/logrotate +# log_type = FILE /var/log/xinetd.log + +# Define general logging characteristics. + log_type = SYSLOG daemon info + log_on_failure = HOST ATTEMPT + log_on_success = HOST EXIT DURATION + +# Define access restriction defaults +# +# no_access = +# only_from = localhost +# max_load = 0 + cps = 50 10 + instances = 30 + per_source = 10 + +# +# The specification of an interface is interesting, if we are on a firewall. +# For example, if you only want to provide services from an internal +# network interface, you may specify your internal interfaces IP-Address. +# +# bind = 127.0.0.1 + +# Address and networking defaults +# +# bind = +# mdns = yes + v6only = no + +# setup environmental attributes +# +# passenv = + groups = yes + umask = 002 + +# Generally, banners are not used. This sets up their global defaults +# +# banner = +# banner_fail = +# banner_success = +} + +includedir /etc/xinetd.d + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.d/echo new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.d/echo --- old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.d/echo 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.d/echo 2014-11-01 12:21:11.000000000 +0100 @@ -0,0 +1,14 @@ +# default: off +# description: An echo server. This is the tcp version. + +service echo +{ + type = INTERNAL + id = echo-stream + socket_type = stream + protocol = tcp + user = root + wait = no + disable = yes + FLAGS = IPv6 IPv4 +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.d/services new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.d/services --- old/yast2-3.1.108/library/general/test/agents_test/test_root/etc/xinetd.d/services 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-3.1.109/library/general/test/agents_test/test_root/etc/xinetd.d/services 2014-11-01 12:21:11.000000000 +0100 @@ -0,0 +1,14 @@ +# default: off +# description: An internal xinetd service, listing active services. + +service services +{ + type = INTERNAL UNLISTED + port = 9098 + socket_type = stream + protocol = tcp + wait = no + disable = yes + only_from = 127.0.0.1 + FLAGS = IPv6 IPv4 +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/linuxrc_test.rb new/yast2-3.1.109/library/general/test/linuxrc_test.rb --- old/yast2-3.1.108/library/general/test/linuxrc_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/general/test/linuxrc_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec require File.expand_path("../test_helper.rb", __FILE__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/general/test/test_helper.rb new/yast2-3.1.109/library/general/test/test_helper.rb --- old/yast2-3.1.108/library/general/test/test_helper.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/general/test/test_helper.rb 2014-11-01 12:21:11.000000000 +0100 @@ -3,3 +3,12 @@ inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") ENV["Y2DIR"] = inc_dirs.join(":") +def set_root_path(directory) + check_version = false + handle = Yast::WFM.SCROpen("chroot=#{directory}:scr", check_version) + Yast::WFM.SCRSetDefault(handle) +end + +def reset_root_path + Yast::WFM.SCRClose(Yast::WFM.SCRGetDefault) +end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/network/test/load_ipv6_cfg_test.rb new/yast2-3.1.109/library/network/test/load_ipv6_cfg_test.rb --- old/yast2-3.1.108/library/network/test/load_ipv6_cfg_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/network/test/load_ipv6_cfg_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/network/test/network_interfaces_helpers_test.rb new/yast2-3.1.109/library/network/test/network_interfaces_helpers_test.rb --- old/yast2-3.1.108/library/network/test/network_interfaces_helpers_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/network/test/network_interfaces_helpers_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#!/usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/network/test/susefirewall_services_test.rb new/yast2-3.1.109/library/network/test/susefirewall_services_test.rb --- old/yast2-3.1.108/library/network/test/susefirewall_services_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/network/test/susefirewall_services_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/network/test/susefirewall_test.rb new/yast2-3.1.109/library/network/test/susefirewall_test.rb --- old/yast2-3.1.108/library/network/test/susefirewall_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/network/test/susefirewall_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/packages/test/product_test.rb new/yast2-3.1.109/library/packages/test/product_test.rb --- old/yast2-3.1.108/library/packages/test/product_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/packages/test/product_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/packages/test/signature_check_callbacks_test.rb new/yast2-3.1.109/library/packages/test/signature_check_callbacks_test.rb --- old/yast2-3.1.108/library/packages/test/signature_check_callbacks_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/packages/test/signature_check_callbacks_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/packages/test/slide_show_test.rb new/yast2-3.1.109/library/packages/test/slide_show_test.rb --- old/yast2-3.1.108/library/packages/test/slide_show_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/packages/test/slide_show_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/system/src/clients/view_anymsg.rb new/yast2-3.1.109/library/system/src/clients/view_anymsg.rb --- old/yast2-3.1.108/library/system/src/clients/view_anymsg.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/system/src/clients/view_anymsg.rb 2014-11-01 12:21:11.000000000 +0100 @@ -183,15 +183,16 @@ # read file content file_content = SCR.Read(path(".target.string"), @filename) - if file_content == nil + if file_content + # remove ANSI color escape sequences + file_content.gsub!(/\e\[(\d|;|\[)+m/, "") + # remove remaining ASCII control characters (ASCII 0-31 and 127 (DEL)) + # (except new line, CR = 0xd) + file_content.tr!("\u0000-\u000c\u000e-\u001f\u007f", "") + else file_content = _("File not found.") end - # remove ANSI color escape sequences - file_content.gsub!(/\e\[(\d|;|\[)+m/, "") - # remove remaining ASCII control characters (ASCII 0-31 and 127 (DEL)) - # (except new line, CR = 0xd) - file_content.tr!("\u0000-\u000c\u000e-\u001f\u007f", "") # Fill the LogView with file content UI.ChangeWidget(Id(:log), :Value, file_content) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/system/test/hw_detection_test.rb new/yast2-3.1.109/library/system/test/hw_detection_test.rb --- old/yast2-3.1.108/library/system/test/hw_detection_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/system/test/hw_detection_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec require "yast" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/system/test/kernel_test.rb new/yast2-3.1.109/library/system/test/kernel_test.rb --- old/yast2-3.1.108/library/system/test/kernel_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/system/test/kernel_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/system/test/proc_cmdline_test.rb new/yast2-3.1.109/library/system/test/proc_cmdline_test.rb --- old/yast2-3.1.108/library/system/test/proc_cmdline_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/system/test/proc_cmdline_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec +#!/usr/bin/env rspec top_srcdir = File.expand_path("../../../..", __FILE__) inc_dirs = Dir.glob("#{top_srcdir}/library/*/src") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/systemd/test/Makefile.am new/yast2-3.1.109/library/systemd/test/Makefile.am --- old/yast2-3.1.108/library/systemd/test/Makefile.am 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/systemd/test/Makefile.am 2014-11-01 12:21:11.000000000 +0100 @@ -1,5 +1,4 @@ TESTS = \ - test_helper.rb \ systemctl_test.rb \ systemd_unit_test.rb \ systemd_socket_test.rb \ @@ -10,5 +9,5 @@ RB_LOG_COMPILER = rspec VERBOSE = 1 -EXTRA_DIST = $(TESTS) +EXTRA_DIST = $(TESTS) test_helper.rb diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/types/test/ip_test.rb new/yast2-3.1.109/library/types/test/ip_test.rb --- old/yast2-3.1.108/library/types/test/ip_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/types/test/ip_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec --format=doc +#!/usr/bin/env rspec ENV["Y2DIR"] = File.expand_path("../../src", __FILE__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/library/types/test/ipv4_netmask_test.rb new/yast2-3.1.109/library/types/test/ipv4_netmask_test.rb --- old/yast2-3.1.108/library/types/test/ipv4_netmask_test.rb 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/library/types/test/ipv4_netmask_test.rb 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,4 @@ -#! /usr/bin/rspec --format=doc +#!/usr/bin/env rspec ENV["Y2DIR"] = File.expand_path("../../src", __FILE__) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/package/yast2.changes new/yast2-3.1.109/package/yast2.changes --- old/yast2-3.1.108/package/yast2.changes 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/package/yast2.changes 2014-11-01 12:21:11.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Oct 31 07:10:48 UTC 2014 - [email protected] + +- do not crash for non-english locale if log file does not exist + (bnc#898204) +- 3.1.109 + +------------------------------------------------------------------- Wed Sep 17 08:16:51 UTC 2014 - [email protected] - change order in mode initialization so that selected Upgrade diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.108/package/yast2.spec new/yast2-3.1.109/package/yast2.spec --- old/yast2-3.1.108/package/yast2.spec 2014-09-18 08:26:10.000000000 +0200 +++ new/yast2-3.1.109/package/yast2.spec 2014-11-01 12:21:11.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version: 3.1.108 +Version: 3.1.109 Release: 0 URL: https://github.com/yast/yast-yast2 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
