Hello community,

here is the log from the commit of package yast2-hardware-detection for 
openSUSE:Factory checked in at 2015-02-20 13:50:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-12-21 12:02:20.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-hardware-detection.new/yast2-hardware-detection.changes
   2015-02-20 13:50:40.000000000 +0100
@@ -1,0 +2,7 @@
+Fri Feb 13 13:43:56 UTC 2015 - [email protected]
+
+- added VMware and VirtualBox VM detection (bnc#773323)
+  (paths .probe.is_vmware and .probe.is_vbox)
+- 3.1.6
+
+-------------------------------------------------------------------

Old:
----
  yast2-hardware-detection-3.1.5.tar.bz2

New:
----
  yast2-hardware-detection-3.1.6.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-hardware-detection.spec ++++++
--- /var/tmp/diff_new_pack.1ds1aY/_old  2015-02-20 13:50:41.000000000 +0100
+++ /var/tmp/diff_new_pack.1ds1aY/_new  2015-02-20 13:50:41.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-hardware-detection
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-hardware-detection
-Version:        3.1.5
+Version:        3.1.6
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-hardware-detection-3.1.5.tar.bz2 -> 
yast2-hardware-detection-3.1.6.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-hardware-detection-3.1.5/.travis.yml 
new/yast2-hardware-detection-3.1.6/.travis.yml
--- old/yast2-hardware-detection-3.1.5/.travis.yml      2014-12-18 
21:04:12.000000000 +0100
+++ new/yast2-hardware-detection-3.1.6/.travis.yml      2015-02-16 
11:22:12.000000000 +0100
@@ -5,8 +5,8 @@
     - wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
     - sh ./travis_setup.sh -p "yast2-devtools doxygen pkg-config hwinfo-dev 
yast2-core-dev"
 script:
-    - make -f Makefile.cvs
-    - make -j 4
-    - make check
-    - sudo make install
+    - make -s -f Makefile.cvs
+    - make -s -j 4
+    - sudo make -s install
+    - make -s check
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-hardware-detection-3.1.5/agent/HwProbe.cc 
new/yast2-hardware-detection-3.1.6/agent/HwProbe.cc
--- old/yast2-hardware-detection-3.1.5/agent/HwProbe.cc 2014-12-18 
21:04:12.000000000 +0100
+++ new/yast2-hardware-detection-3.1.6/agent/HwProbe.cc 2015-02-16 
11:22:12.000000000 +0100
@@ -290,6 +290,8 @@
        { "is_xen",             16, pr_null,    0},
 #endif
        { "disk_raid",          17, pr_null,    0},
+       { "is_vmware",          18, pr_null,    0},
+       { "is_vbox",            19, pr_null,    0},
        /* now the hw_items  */
 #define ITEM(x) ((int)x + 42)
        { "cdrom",              ITEM(hw_cdrom),         pr_null,        0},
@@ -508,6 +510,12 @@
                 case 17:
                    value = byItem ((hd_hw_item_t)(hw_disk), list_md);
                    break;
+               case 18:                // is_vmware
+                   value = YCPBoolean(hd_base->flags.vmware);
+                   break;
+               case 19:                // is_vbox
+                   value = YCPBoolean(hd_base->flags.vbox);
+                   break;
                case ITEM(hw_manual):
                    value = filterManual ((hd_hw_item_t)(typelist[1]-42));
                break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-hardware-detection-3.1.5/package/yast2-hardware-detection.changes 
new/yast2-hardware-detection-3.1.6/package/yast2-hardware-detection.changes
--- old/yast2-hardware-detection-3.1.5/package/yast2-hardware-detection.changes 
2014-12-18 21:04:12.000000000 +0100
+++ new/yast2-hardware-detection-3.1.6/package/yast2-hardware-detection.changes 
2015-02-16 11:22:12.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Fri Feb 13 13:43:56 UTC 2015 - [email protected]
+
+- added VMware and VirtualBox VM detection (bnc#773323)
+  (paths .probe.is_vmware and .probe.is_vbox)
+- 3.1.6
+
+-------------------------------------------------------------------
 Thu Dec 18 19:57:31 UTC 2014 - [email protected]
 
 - 3.1.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-hardware-detection-3.1.5/package/yast2-hardware-detection.spec 
new/yast2-hardware-detection-3.1.6/package/yast2-hardware-detection.spec
--- old/yast2-hardware-detection-3.1.5/package/yast2-hardware-detection.spec    
2014-12-18 21:04:12.000000000 +0100
+++ new/yast2-hardware-detection-3.1.6/package/yast2-hardware-detection.spec    
2015-02-16 11:22:12.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-hardware-detection
-Version:        3.1.5
+Version:        3.1.6
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-hardware-detection-3.1.5/testsuite/tests/dir.out 
new/yast2-hardware-detection-3.1.6/testsuite/tests/dir.out
--- old/yast2-hardware-detection-3.1.5/testsuite/tests/dir.out  2014-12-18 
21:04:12.000000000 +0100
+++ new/yast2-hardware-detection-3.1.6/testsuite/tests/dir.out  2015-02-16 
11:22:12.000000000 +0100
@@ -1 +1 @@
-(["has_pcmcia", "architecture", "boot_arch", "version", "boot_disk", 
"cdb_isdn", "has_smp", "bios_video", "is_uml", "framebuffer", "status", 
"uniqueid", "is_xen", "disk_raid", "cdrom", "floppy", "disk", "netif", 
"display", "mouse", "keyboard", "sound", "isdn", "modem", "storage", "netcard", 
"monitor", "printer", "tv", "dvb", "scanner", "system", "camera", "chipcard", 
"usbctrl", "ieee1394ctrl", "hub", "scsi", "ide", "memory", "fbdev", "usb", 
"pci", "isapnp", "cpu", "braille", "joystick", "bios", "pppoe", "wlan", 
"redasd", "block", "tape", "bluetooth", "dsl", "fingerprint"])
+(["has_pcmcia", "architecture", "boot_arch", "version", "boot_disk", 
"cdb_isdn", "has_smp", "bios_video", "is_uml", "framebuffer", "status", 
"uniqueid", "is_xen", "disk_raid", "is_vmware", "is_vbox", "cdrom", "floppy", 
"disk", "netif", "display", "mouse", "keyboard", "sound", "isdn", "modem", 
"storage", "netcard", "monitor", "printer", "tv", "dvb", "scanner", "system", 
"camera", "chipcard", "usbctrl", "ieee1394ctrl", "hub", "scsi", "ide", 
"memory", "fbdev", "usb", "pci", "isapnp", "cpu", "braille", "joystick", 
"bios", "pppoe", "wlan", "redasd", "block", "tape", "bluetooth", "dsl", 
"fingerprint"])

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to