Upgraded openwsman ebuild to EAPI=7.

This commit is contained in:
László Valkó 2023-01-16 06:13:24 +01:00
parent 7489dadcd1
commit 09c3502e7d
2 changed files with 7 additions and 3 deletions

View file

@ -2,4 +2,4 @@ AUX openwsman-2.6.5-libcurl-error-codes-update.patch 1162 BLAKE2B 59802194fee1ec
AUX openwsmand.confd 2 BLAKE2B a5cdc0d97724f51411f2f5ba99734c297507df295742618499a23296c99bac5d6cef25d497fb3afb76a3e67e4ac53d4b5bccfa55309d7b02ff5793bcf53dfec2 SHA512 a80f7cc2606ef6e5474e96b1e520c17ecf432f0da9a566bd157044130cfb548f10d929ffb5783008df78b6d07d07d109bffbad1998cb8309eccec7e4d3fc813a
AUX openwsmand.initd 263 BLAKE2B 246449862d8bf51dae573ff8bb4e4715284ba37de65be9cf226d001a081f825506256c3b1c1322ffa59b7df99466ce1fe35f164c993566023be7a1c7eed08d21 SHA512 bd20fc3815d02b0dd5a2c2336b5204550ef941e362f686ddb00f7f96d93bd2222dd4cb076f39efe2e85d3262356c548d0c9d7c1d566a04bba2c4a942126851d2
DIST openwsman-2.7.0.tar.gz 513225 BLAKE2B c6463358c8b665a1019b4a4be370ebd006fb31c3a17abf2bf5f699a33fa96795d272ac687bf69dafab769301c21fc10ddb4e71744f7456dc8d16dbcc81d65b75 SHA512 e61792eafd09e3608c736091d2742049086adaf5fffcda9391e4712ed1dedf3a533546a6af61ea6ce49d4cf4fb3649cb168f20260c4e975797395d6e565c6c37
EBUILD openwsman-2.7.0.ebuild 2493 BLAKE2B 8cbe784ed94a034f8e05ceda882b283e0502659e4947e1ab6efc1be247db0a821bff9fbac8b58025b90d4c22fea3744398831d2be1ae422b65316c5cfb5acba2 SHA512 67f3edcd86e9b099efd647e8ce5e6b3ef5aa59ae3ad26be348606f57805ccd821e3a7742103d500025de6d02ec00492b7d645730193a754b83df7e22339f628a
EBUILD openwsman-2.7.0.ebuild 2579 BLAKE2B d0f67ad1764d44f2829aea66aba2a21a6a331c00120c44893048aa082d9890f01def72be1274799468e03c01105b1557396f04cfd2f7e4d3dedbb54490f73599 SHA512 63612d3c3e141d6af697f1d9479042937873c415f05ea082f34aaf713a4c0b087563b95ff1d2ec1b9f60fec9a50d4c7b6dc511a76049b29609a664b8b22c3da3

View file

@ -1,9 +1,9 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
PYTHON_COMPAT=( python3_8 python3_9 python3_10 )
PYTHON_COMPAT=( python3_8 python3_9 python3_10 python3_11 )
inherit python-single-r1 cmake-utils ssl-cert java-pkg-opt-2
@ -36,6 +36,7 @@ RDEPEND="
python? ( ${PYTHON_DEPS} )
net-misc/curl[idn]
dev-libs/libxml2[icu]
virtual/libcrypt
"
DEPEND="
${RDEPEND}
@ -49,10 +50,13 @@ DEPEND="
PATCHES=(
)
CMAKE_MAKEFILE_GENERATOR=emake
# LIBC != glibc build fail - add block
src_prepare(){
#Ruby gem builder does not like Unicode
sed -e 's/Kämpf/Kaempf/' -i bindings/ruby/openwsman.gemspec.in
cmake-utils_src_prepare
default
}