Update python2/3 builds

This commit is contained in:
Lukas Slebodnik 2019-01-17 23:39:05 +01:00
parent 9427f0d5bc
commit 30d8d25f36

View File

@ -10,6 +10,16 @@
%global with_python2 1 %global with_python2 1
%endif %endif
%if (0%{?with_python2} == 1 && 0%{?with_python3} == 0)
# We need to sent env PYTHON for python2 only build
%global export_waf_python export PYTHON=%{__python2}
%endif
%if (0%{?with_python2} == 1 && 0%{?with_python3} == 1)
# python3 is default and therefore python2 need to be set as extra-python
%global extra_python --extra-python=%{__python2}
%endif
%global talloc_version 2.1.15 %global talloc_version 2.1.15
%global tdb_version 1.3.17 %global tdb_version 1.3.17
%global tevent_version 0.9.38 %global tevent_version 0.9.38
@ -142,30 +152,27 @@ Development files for the Python bindings for the LDB library
%build %build
%if 0%{?with_python3}
PY3_CONFIG_FLAGS=--extra-python=%{__python3}
%else
PY3_CONFIG_FLAGS=""
%endif
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1217376 # workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1217376
export python_LDFLAGS="" export python_LDFLAGS=""
%{?export_waf_python}
%configure --disable-rpath \ %configure --disable-rpath \
--disable-rpath-install \ --disable-rpath-install \
--bundled-libraries=NONE \ --bundled-libraries=NONE \
--builtin-libraries=replace \ --builtin-libraries=replace \
--with-modulesdir=%{_libdir}/ldb/modules \ --with-modulesdir=%{_libdir}/ldb/modules \
$PY3_CONFIG_FLAGS \ %{?extra_python} \
--with-privatelibdir=%{_libdir}/ldb --with-privatelibdir=%{_libdir}/ldb
make %{?_smp_mflags} V=1 make %{?_smp_mflags} V=1
doxygen Doxyfile doxygen Doxyfile
%check %check
%{?export_waf_python}
make %{?_smp_mflags} check make %{?_smp_mflags} check
%install %install
%{?export_waf_python}
make install DESTDIR=$RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT
rm -f $RPM_BUILD_ROOT%{_libdir}/libldb.a rm -f $RPM_BUILD_ROOT%{_libdir}/libldb.a