Tony Asleson
2014-08-19 20:36:32 UTC
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libstoragemgmt".
The branch, master has been updated
via da726648a159babfa511d9dd14ec2a783f90aa83 (commit)
via 15afa239ffcc71dcce0dd9b037991d72016c710f (commit)
via a6cafe71d93aa62a3ce45037d777109409eb6347 (commit)
via d1076eea636422a4478fbc20482f470b4091bb70 (commit)
from 1eca424e0c99d43e185246c86a92e5f352a6c346 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit da726648a159babfa511d9dd14ec2a783f90aa83
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:58 2014 +0800
lsmenv: Remove experimental smart match code
The smart match '~~' is marked as experimental since perl 5.18.
We replaced it with is_in_array() subroutine.
Signed-off-by: Gris Ge <***@redhat.com>
commit 15afa239ffcc71dcce0dd9b037991d72016c710f
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:57 2014 +0800
force using python2
The '/usr/bin/python' of some platform like Archlinux is actually python3.
Currently none of our python codes is tested on python3, hence forcing to use
python2.
Signed-off-by: Gris Ge <***@redhat.com>
commit a6cafe71d93aa62a3ce45037d777109409eb6347
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:56 2014 +0800
lsm REST daemon: Fix json-c include header path for json>=0.11
Some platform(like Archlinux, json-c-0.12), does not store header in json
folder.
Use 'json.h' instead of 'json/json.h' and let autotools handle it.
Signed-off-by: Gris Ge <***@redhat.com>
commit d1076eea636422a4478fbc20482f470b4091bb70
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:55 2014 +0800
autoconf: fix python2 checking and jons>=0.11
* Try to locate python in the sequence of:
python2.7 python 2.6 python2 python
Then check python version as we only support python 2.
* Pkconfig will try 'json.pc' if 'json-c.pc' failed.
Tested by OBS.
Manually tested by './configure && make check' on:
* Archlinux
* Fedora 20
* RHEL 6.5
* RHEL 7.0
Signed-off-by: Gris Ge <***@redhat.com>
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 22 +++++++++++++++++++---
daemon/Makefile.am | 3 ++-
daemon/lsm_rest.c | 2 +-
plugin/nstor/nstor_lsmplugin | 2 +-
plugin/ontap/ontap_lsmplugin | 4 ++--
plugin/sim/sim_lsmplugin | 4 ++--
plugin/smispy/smispy_lsmplugin | 4 ++--
plugin/targetd/targetd.py | 2 --
plugin/targetd/targetd_lsmplugin | 4 ++--
test/cmdtest.py | 2 +-
test/plugin_test.py | 2 +-
test/webtest/test_automated.py | 2 +-
test/webtest/test_hardware.py | 2 +-
test/webtest/test_results.py | 2 +-
tools/lsmcli/lsmcli | 2 +-
tools/lsmenv | 16 +++++++++++-----
tools/netapp/netapp.py | 4 +---
tools/utility/public_symbols.py | 4 ++--
tools/utility/web_cap.py | 2 +-
19 files changed, 52 insertions(+), 33 deletions(-)
hooks/post-receive
generated because a ref change was pushed to the repository containing
the project "libstoragemgmt".
The branch, master has been updated
via da726648a159babfa511d9dd14ec2a783f90aa83 (commit)
via 15afa239ffcc71dcce0dd9b037991d72016c710f (commit)
via a6cafe71d93aa62a3ce45037d777109409eb6347 (commit)
via d1076eea636422a4478fbc20482f470b4091bb70 (commit)
from 1eca424e0c99d43e185246c86a92e5f352a6c346 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit da726648a159babfa511d9dd14ec2a783f90aa83
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:58 2014 +0800
lsmenv: Remove experimental smart match code
The smart match '~~' is marked as experimental since perl 5.18.
We replaced it with is_in_array() subroutine.
Signed-off-by: Gris Ge <***@redhat.com>
commit 15afa239ffcc71dcce0dd9b037991d72016c710f
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:57 2014 +0800
force using python2
The '/usr/bin/python' of some platform like Archlinux is actually python3.
Currently none of our python codes is tested on python3, hence forcing to use
python2.
Signed-off-by: Gris Ge <***@redhat.com>
commit a6cafe71d93aa62a3ce45037d777109409eb6347
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:56 2014 +0800
lsm REST daemon: Fix json-c include header path for json>=0.11
Some platform(like Archlinux, json-c-0.12), does not store header in json
folder.
Use 'json.h' instead of 'json/json.h' and let autotools handle it.
Signed-off-by: Gris Ge <***@redhat.com>
commit d1076eea636422a4478fbc20482f470b4091bb70
Author: Gris Ge <***@redhat.com>
Date: Tue Aug 19 11:54:55 2014 +0800
autoconf: fix python2 checking and jons>=0.11
* Try to locate python in the sequence of:
python2.7 python 2.6 python2 python
Then check python version as we only support python 2.
* Pkconfig will try 'json.pc' if 'json-c.pc' failed.
Tested by OBS.
Manually tested by './configure && make check' on:
* Archlinux
* Fedora 20
* RHEL 6.5
* RHEL 7.0
Signed-off-by: Gris Ge <***@redhat.com>
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 22 +++++++++++++++++++---
daemon/Makefile.am | 3 ++-
daemon/lsm_rest.c | 2 +-
plugin/nstor/nstor_lsmplugin | 2 +-
plugin/ontap/ontap_lsmplugin | 4 ++--
plugin/sim/sim_lsmplugin | 4 ++--
plugin/smispy/smispy_lsmplugin | 4 ++--
plugin/targetd/targetd.py | 2 --
plugin/targetd/targetd_lsmplugin | 4 ++--
test/cmdtest.py | 2 +-
test/plugin_test.py | 2 +-
test/webtest/test_automated.py | 2 +-
test/webtest/test_hardware.py | 2 +-
test/webtest/test_results.py | 2 +-
tools/lsmcli/lsmcli | 2 +-
tools/lsmenv | 16 +++++++++++-----
tools/netapp/netapp.py | 4 +---
tools/utility/public_symbols.py | 4 ++--
tools/utility/web_cap.py | 2 +-
19 files changed, 52 insertions(+), 33 deletions(-)
hooks/post-receive
--
libstoragemgmt
libstoragemgmt