2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +00:00

[#1751] hammer: removed installing custom version of log4cplus

This commit is contained in:
Michal Nowikowski
2021-03-15 09:33:22 +01:00
parent 52c9c09dbc
commit 122ab67ce3

View File

@@ -867,15 +867,6 @@ class VagrantEnv(object):
# install python3 for centos 8
if self.system == 'centos' and self.revision == '8':
# we need log4cplus that is in the nexus
cmd = 'bash -c \'cat <<EOF | sudo tee /etc/yum.repos.d/isc.repo\n'
cmd += '[nexus]\n'
cmd += 'name=ISC Repo\n'
cmd += 'baseurl=https://packages.isc.org/repository/kea-1.7-centos-8-ci/\n'
cmd += 'enabled=1\n'
cmd += 'gpgcheck=0\n'
cmd += "EOF\n\'"
self.execute(cmd)
self.execute("sudo dnf install -y python36 rpm-build python3-virtualenv", attempts=3)
self.python = 'python3'
@@ -1303,22 +1294,6 @@ def prepare_system_local(features, check_times):
install_pkgs(packages, env=env, timeout=120, check_times=check_times)
# prepare lib4cplus as epel repos are not available for rhel 8 yet
if revision == '8' and not os.path.exists('/usr/include/log4cplus/logger.h'):
if not os.path.exists('srpms'):
execute('mkdir srpms')
execute('rm -rf srpms/*')
execute('rm -rf rpmbuild')
execute('wget --no-verbose -O srpms/log4cplus-1.1.3-0.4.rc3.el7.src.rpm '
'https://rpmfind.net/linux/epel/7/SRPMS/Packages/l/log4cplus-1.1.3-0.4.rc3.el7.src.rpm',
check_times=check_times)
execute('rpmbuild --rebuild srpms/log4cplus-1.1.3-0.4.rc3.el7.src.rpm',
env=env, timeout=120, check_times=check_times)
execute('sudo rpm -i rpmbuild/RPMS/x86_64/log4cplus-1.1.3-0.4.rc3.el8.x86_64.rpm',
env=env, check_times=check_times)
execute('sudo rpm -i rpmbuild/RPMS/x86_64/log4cplus-devel-1.1.3-0.4.rc3.el8.x86_64.rpm',
env=env, check_times=check_times)
if 'unittest' in features:
_install_gtest_sources()