commit yast2-hardware-detection for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-hardware-detection for openSUSE:Factory checked in at 2014-11-26 10:35:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-hardware-detection (Old) and /work/SRC/openSUSE:Factory/.yast2-hardware-detection.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-hardware-detection" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-hardware-detection/yast2-hardware-detection.changes 2014-10-25 08:33:16.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-hardware-detection.new/yast2-hardware-detection.changes 2014-11-26 10:35:59.000000000 +0100 @@ -1,0 +2,7 @@ +Mon Nov 24 15:41:11 CET 2014 - aschnell@suse.de + +- added leading zeros for FCP LUNs (bsc#903069) +- 3.1.4 + +------------------------------------------------------------------- + Old: ---- yast2-hardware-detection-3.1.3.tar.bz2 New: ---- yast2-hardware-detection-3.1.4.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-hardware-detection.spec ++++++ --- /var/tmp/diff_new_pack.9CO3aD/_old 2014-11-26 10:36:01.000000000 +0100 +++ /var/tmp/diff_new_pack.9CO3aD/_new 2014-11-26 10:36:01.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-hardware-detection -Version: 3.1.3 +Version: 3.1.4 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-hardware-detection-3.1.3.tar.bz2 -> yast2-hardware-detection-3.1.4.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-hardware-detection-3.1.3/.travis.yml new/yast2-hardware-detection-3.1.4/.travis.yml --- old/yast2-hardware-detection-3.1.3/.travis.yml 2014-10-20 14:32:09.000000000 +0200 +++ new/yast2-hardware-detection-3.1.4/.travis.yml 2014-10-31 17:12:22.000000000 +0100 @@ -2,10 +2,8 @@ compiler: - gcc before_install: - - curl http://download.opensuse.org/repositories/YaST:/Head:/Travis/xUbuntu_12.04/R... | sudo apt-key add - - - echo "deb http://download.opensuse.org/repositories/YaST:/Head:/Travis/xUbuntu_12.04/ ./" | sudo tee -a /etc/apt/sources.list - - sudo apt-get update -q - - sudo apt-get install -y --no-install-recommends yast2-devtools doxygen pkg-config hwinfo-dev yast2-core-dev + - wget https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/tra... + - sh ./travis_setup.sh -p "yast2-devtools doxygen pkg-config hwinfo-dev yast2-core-dev" script: - make -f Makefile.cvs - make -j 4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-hardware-detection-3.1.3/agent/HwParse.cc new/yast2-hardware-detection-3.1.4/agent/HwParse.cc --- old/yast2-hardware-detection-3.1.3/agent/HwParse.cc 2014-10-01 11:14:20.000000000 +0200 +++ new/yast2-hardware-detection-3.1.4/agent/HwParse.cc 2014-11-24 16:37:12.000000000 +0100 @@ -1259,9 +1259,9 @@ YCPMap detail; #if defined(__s390__) || defined(__s390x__) char buf[128]; - snprintf (buf, 128, "0x%llx", info->wwpn); + snprintf (buf, 128, "0x%016llx", info->wwpn); detail->add (YCPString ("wwpn"), YCPString (buf)); - snprintf (buf, 128, "0x%llx", info->fcp_lun); + snprintf (buf, 128, "0x%016llx", info->fcp_lun); detail->add (YCPString ("fcp_lun"), YCPString (buf)); if (info->controller_id) detail->add (YCPString ("controller_id"), YCPString (info->controller_id)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-hardware-detection-3.1.3/package/yast2-hardware-detection.changes new/yast2-hardware-detection-3.1.4/package/yast2-hardware-detection.changes --- old/yast2-hardware-detection-3.1.3/package/yast2-hardware-detection.changes 2014-10-20 14:32:09.000000000 +0200 +++ new/yast2-hardware-detection-3.1.4/package/yast2-hardware-detection.changes 2014-11-24 16:37:12.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Mon Nov 24 15:41:11 CET 2014 - aschnell@suse.de + +- added leading zeros for FCP LUNs (bsc#903069) +- 3.1.4 + +------------------------------------------------------------------- + Mon Oct 20 12:06:05 UTC 2014 - lslezak@suse.cz - added Travis support (.travis.yml, testsuite build fix) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-hardware-detection-3.1.3/package/yast2-hardware-detection.spec new/yast2-hardware-detection-3.1.4/package/yast2-hardware-detection.spec --- old/yast2-hardware-detection-3.1.3/package/yast2-hardware-detection.spec 2014-10-01 11:14:20.000000000 +0200 +++ new/yast2-hardware-detection-3.1.4/package/yast2-hardware-detection.spec 2014-11-24 16:37:12.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-hardware-detection -Version: 3.1.3 +Version: 3.1.4 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de