Hi all, This patch series integrates python-lvm, a Python wrapper for liblvm2app.so, into the lvm2 code base. python-lvm has lived out-of-tree here for a while: https://github.com/agrover/python-lvm Integrating it into lvm2 will ensure it tracks changes in the liblvm API, and make building and testing easier. We add a --enable-python-bindings option to ./configure, as well as an install_python_bindings make target. Building with this option enabled will require that python-devel and python-setuptools are also installed. Please review. git request-pull output follows. Thanks -- Regards -- Andy The following changes since commit 5cdd7848f46305d3d5744c194d4e2d38b78f0ec7: TEST: Add missing test for RAID module version (2012-09-12 06:27:37 -0500) are available in the git repository at: git://fedorapeople.org/home/fedora/grover/public_git/lvm2.git for-upstream Andy Grover (6): python-lvm: initial checkin python-lvm: A start at a python-lvm test framework python-lvm: setup.py python-lvm: liblvm/python/Makefile.in python-lvm: configure.in changes python-lvm: Other Makefile.in changes Makefile.in | 3 + configure.in | 9 + liblvm/Makefile.in | 6 +- liblvm/python/Makefile.in | 30 ++ liblvm/python/liblvm.c | 1206 +++++++++++++++++++++++++++++++++++++++++++++ liblvm/python/setup.py | 17 + liblvm/python/test.py | 42 ++ 7 files changed, 1312 insertions(+), 1 deletions(-) create mode 100644 liblvm/python/Makefile.in create mode 100644 liblvm/python/liblvm.c create mode 100644 liblvm/python/setup.py create mode 100644 liblvm/python/test.py _______________________________________________ linux-lvm mailing list linux-lvm@redhat.com https://www.redhat.com/mailman/listinfo/linux-lvm read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/