mirror of
git://sourceware.org/git/lvm2.git
synced 2025-11-20 20:24:02 +03:00
Compare commits
4 Commits
v2_02_133
...
dev-mcsont
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf06d942b8 | ||
|
|
83d3cc76f3 | ||
|
|
89574055f7 | ||
|
|
7831a65091 |
@@ -1 +1 @@
|
||||
1.02.110-git (2015-10-30)
|
||||
1.02.111-git (2015-10-30)
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
Version 2.02.134 -
|
||||
====================================
|
||||
|
||||
Version 2.02.133 - 30th October 2015
|
||||
====================================
|
||||
Support repeated -o|--options for reporting commands.
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
Version 1.02.111 -
|
||||
====================================
|
||||
|
||||
Version 1.02.110 - 30th October 2015
|
||||
====================================
|
||||
Disable thin monitoring plugin when it fails too often (>10 times).
|
||||
|
||||
@@ -1,3 +1,22 @@
|
||||
%with default-dm-run-dir %{_default_dm_run_dir}
|
||||
%with default-run-dir %{_default_run_dir}
|
||||
%with default-pid-dir %{_default_pid_dir}
|
||||
%with default-locking-dir %{_default_locking_dir}
|
||||
%with usrlibdir %{_libdir}
|
||||
%enableif 1 lvm1_fallback
|
||||
%enableif 1 fsadm
|
||||
%with pool internal
|
||||
%with user
|
||||
%with group
|
||||
%with device-uid 0
|
||||
%with device-gid 6
|
||||
%with device-mode 0660
|
||||
%enableif 1 pkgconfig
|
||||
%enableif 1 applib
|
||||
%enableif 1 cmdlib
|
||||
%enableif 1 dmeventd
|
||||
%enableif 1 write_install
|
||||
|
||||
%with udevdir %{_udevdir}
|
||||
%enableif %{enable_cmirror} cmirrord
|
||||
%enableif %{enable_udev} udev_sync
|
||||
@@ -11,28 +30,22 @@
|
||||
%enableif %{enable_lockd_dlm} lockd-dlm
|
||||
%enableif %{enable_lockd_sanlock} lockd-sanlock
|
||||
%endif
|
||||
%enableif %{enable_python} python-bindings
|
||||
%enableif %{enable_python} applib
|
||||
|
||||
%build
|
||||
%configure \
|
||||
--with-default-dm-run-dir=%{_default_dm_run_dir} \
|
||||
--with-default-run-dir=%{_default_run_dir} \
|
||||
--with-default-pid-dir=%{_default_pid_dir} \
|
||||
--with-default-locking-dir=%{_default_locking_dir} \
|
||||
--with-usrlibdir=%{_libdir} \
|
||||
--enable-lvm1_fallback \
|
||||
--enable-fsadm \
|
||||
--with-pool=internal \
|
||||
--with-user= \
|
||||
--with-group= \
|
||||
--with-device-uid=0 \
|
||||
--with-device-gid=6 \
|
||||
--with-device-mode=0660 \
|
||||
--enable-pkgconfig \
|
||||
--enable-applib \
|
||||
--enable-cmdlib \
|
||||
--enable-dmeventd \
|
||||
--enable-write_install \
|
||||
%{configure_flags}
|
||||
|
||||
%if %{enable_python3}
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
pushd %{py3dir}
|
||||
%configure %{configure_flags} PYTHON=/usr/bin/python3 PYTHON_CONFIG=/usr/bin/python3-config
|
||||
|
||||
make %{?_smp_mflags}
|
||||
popd
|
||||
%endif
|
||||
|
||||
%configure %{configure_flags}
|
||||
|
||||
make %{?_smp_mflags}
|
||||
%{?extra_build_commands}
|
||||
@@ -50,6 +63,11 @@ make install_initscripts DESTDIR=$RPM_BUILD_ROOT
|
||||
%if %{enable_testsuite}
|
||||
make -C test install DESTDIR=$RPM_BUILD_ROOT
|
||||
%endif
|
||||
%if %{enable_python3}
|
||||
pushd %{py3dir}
|
||||
make -C python install DESTDIR=$RPM_BUILD_ROOT
|
||||
popd
|
||||
%endif
|
||||
|
||||
# when building an src.rpm from freestanding specfiles
|
||||
test -e %{_sourcedir}/source.inc || cp source.inc build.inc packages.inc macros.inc %{_sourcedir}
|
||||
|
||||
@@ -410,6 +410,60 @@ fi
|
||||
|
||||
%endif
|
||||
|
||||
##############################################################################
|
||||
# Python bindings
|
||||
##############################################################################
|
||||
%if %{enable_python}
|
||||
%package python-libs
|
||||
Summary: Python module to access LVM
|
||||
License: LGPLv2
|
||||
Group: Development/Libraries
|
||||
Provides: python-lvm = %{version}-%{release}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
%description python-libs
|
||||
Python module to allow the creation and use of LVM
|
||||
logical volumes, physical volumes, and volume groups.
|
||||
|
||||
%files python-libs
|
||||
%{python_sitearch}/*
|
||||
%endif
|
||||
|
||||
%if %{enable_python3}
|
||||
%package python3-libs
|
||||
Summary: Python 3 module to access LVM
|
||||
License: LGPLv2
|
||||
Group: Development/Libraries
|
||||
Provides: python3-lvm = %{version}-%{release}
|
||||
Requires: %{name}-libs = %{version}-%{release}
|
||||
|
||||
%description python3-libs
|
||||
Python 3 module to allow the creation and use of LVM
|
||||
logical volumes, physical volumes, and volume groups.
|
||||
|
||||
%files python3-libs
|
||||
%{python3_sitearch}/*
|
||||
%endif
|
||||
|
||||
##############################################################################
|
||||
# Testsuite subpackage
|
||||
##############################################################################
|
||||
%if %{enable_testsuite}
|
||||
%package testsuite
|
||||
Summary: LVM2 Testsuite
|
||||
License: LGPLv2
|
||||
Group: Development
|
||||
|
||||
%description testsuite
|
||||
An extensive functional testsuite for LVM2.
|
||||
|
||||
%files testsuite
|
||||
%defattr(-,root,root,-)
|
||||
%{_datadir}/lvm2-testsuite/
|
||||
%{_libexecdir}/lvm2-testsuite/
|
||||
%{_bindir}/lvm2-testsuite
|
||||
%endif
|
||||
|
||||
##############################################################################
|
||||
# Device-mapper subpackages
|
||||
##############################################################################
|
||||
@@ -571,18 +625,3 @@ the device-mapper event library.
|
||||
%{_includedir}/libdevmapper-event.h
|
||||
%{_libdir}/pkgconfig/devmapper-event.pc
|
||||
|
||||
%if %{enable_testsuite}
|
||||
%package testsuite
|
||||
Summary: LVM2 Testsuite
|
||||
License: LGPLv2
|
||||
Group: Development
|
||||
|
||||
%description testsuite
|
||||
An extensive functional testsuite for LVM2.
|
||||
|
||||
%files testsuite
|
||||
%defattr(-,root,root,-)
|
||||
%{_datadir}/lvm2-testsuite/
|
||||
%{_libexecdir}/lvm2-testsuite/
|
||||
%{_bindir}/lvm2-testsuite
|
||||
%endif
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
|
||||
%global enable_profiling 0
|
||||
%global enable_testsuite 1
|
||||
%global enable_python 1
|
||||
# Off by default - <= does not work well with or:
|
||||
%global enable_python3 0
|
||||
%global enable_udev 1
|
||||
%global enable_systemd 1
|
||||
%global enable_cmirror 1
|
||||
@@ -65,6 +68,25 @@
|
||||
|
||||
##############################################################
|
||||
|
||||
%if %{rhel} == 5
|
||||
%global enable_python 0
|
||||
%endif
|
||||
|
||||
%if %{rhel} >= 8 || %{fedora} >= 20
|
||||
%global enable_python3 1
|
||||
%endif
|
||||
|
||||
%if %{enable_python}
|
||||
%global buildreq_python2_devel python2-devel
|
||||
%global buildreq_python_setuptools python-setuptools
|
||||
%endif
|
||||
%if %{enable_python3}
|
||||
%global buildreq_python3_devel python3-devel
|
||||
%global buildreq_python_setuptools python-setuptools
|
||||
%endif
|
||||
|
||||
##############################################################
|
||||
|
||||
%if %{fedora} == 16 || %{rhel} == 6
|
||||
%global enable_systemd 0
|
||||
|
||||
@@ -143,6 +165,9 @@ BuildRequires: pkgconfig
|
||||
%maybe BuildRequires: %{?buildreq_cluster}
|
||||
%maybe BuildRequires: %{?buildreq_lockd_dlm}
|
||||
%maybe BuildRequires: %{?buildreq_lockd_sanlock}
|
||||
%maybe BuildRequires: %{?buildreq_python2_devel}
|
||||
%maybe BuildRequires: %{?buildreq_python3_devel}
|
||||
%maybe BuildRequires: %{?buildreq_python_setuptools}
|
||||
|
||||
%description
|
||||
LVM2 includes all of the support for handling read/write operations on
|
||||
|
||||
@@ -270,7 +270,7 @@ lib/paths-installed: lib/paths-common
|
||||
$(RM) $@-t
|
||||
cat lib/paths-common > $@-t
|
||||
echo 'installed_testsuite=1' >> $@-t
|
||||
echo 'export PATH=@libexecdir@/lvm2-testsuite:@datadir@/lvm2-testsuite/lib:$$PATH' >> $@-t
|
||||
echo 'export PATH=@libexecdir@/lvm2-testsuite:@datadir@/lvm2-testsuite/lib:@datadir@/lvm2-testsuite/api:$$PATH' >> $@-t
|
||||
mv $@-t $@
|
||||
|
||||
lib/paths: lib/paths-common
|
||||
|
||||
@@ -30,15 +30,21 @@ aux prepare_dmeventd
|
||||
# gdb -ex r --args python FULL_PATH/lvm2/test/api/python_lvm_unit.py -v TestLvm.test_lv_active_inactive
|
||||
|
||||
#Locate the python binding library to use.
|
||||
python_lib=$(find $abs_top_builddir -name lvm.so)
|
||||
# Unable to test python bindings if library not available
|
||||
test -n "$python_lib" || skip
|
||||
if [[ -n $abs_top_builddir ]]; then
|
||||
python_lib=$(find $abs_top_builddir -name lvm.so)
|
||||
# Unable to test python bindings if library not available
|
||||
test -n "$python_lib" || skip "lvm2-python-libs not built"
|
||||
|
||||
export PYTHONPATH=$(dirname $python_lib):$PYTHONPATH
|
||||
elif rpm -q lvm2-python-libs &>/dev/null; then
|
||||
true
|
||||
else
|
||||
skip "lvm2-python-libs neither built nor installed"
|
||||
fi
|
||||
|
||||
#If you change this change the unit test case too.
|
||||
aux prepare_pvs 6
|
||||
|
||||
export PYTHONPATH=$(dirname $python_lib):$PYTHONPATH
|
||||
|
||||
#Setup which devices the unit test can use.
|
||||
export PY_UNIT_PVS=$(cat DEVICES)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user