mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 21:13:27 -04:00
dev-libs/open62541: drop 1.3.8
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
This commit is contained in:
@@ -1,2 +1 @@
|
|||||||
DIST open62541-1.3.8.tar.gz 3874185 BLAKE2B bce0d1c3dadff3cb34baceb6142f7b40a032fe602e8d8a6e35f24ea1d20bcfd8de655092eb77ac07bfcd98331c9de58ebe684929c82c35d499cb9615278a5a7f SHA512 48ae61fd096c3a45f57ecc70bec9bb4223d046eed017532937c99883e4e92f79d7425b4db02c1a7e451764b787313efd76b2ae3cd3011d575154199d5350a790
|
|
||||||
DIST open62541-1.3.9.tar.gz 3874701 BLAKE2B 22fe64d02f900dfdb70013783727f0b6edf90e8637e57dce4b07f6b97d7fd33c36090f3d0be5af28d484e8654c3184d03df4c8438c27530d6e2be9c516b06b82 SHA512 8771a70d1f38f2a02f21281200d98fdd8d41d842cc82704155793529a1768beeb2583382f7547e6aaefdab4a17c3130779af792b2a59487889a3cdea4a2fa776
|
DIST open62541-1.3.9.tar.gz 3874701 BLAKE2B 22fe64d02f900dfdb70013783727f0b6edf90e8637e57dce4b07f6b97d7fd33c36090f3d0be5af28d484e8654c3184d03df4c8438c27530d6e2be9c516b06b82 SHA512 8771a70d1f38f2a02f21281200d98fdd8d41d842cc82704155793529a1768beeb2583382f7547e6aaefdab4a17c3130779af792b2a59487889a3cdea4a2fa776
|
||||||
|
|||||||
@@ -1,89 +0,0 @@
|
|||||||
# Copyright 1999-2023 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{10..12} )
|
|
||||||
|
|
||||||
inherit cmake python-single-r1
|
|
||||||
|
|
||||||
DESCRIPTION="Open source C implementation of OPC UA"
|
|
||||||
HOMEPAGE="https://www.open62541.org/"
|
|
||||||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="MPL-2.0"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
||||||
IUSE="doc encryption examples mbedtls pubsub openssl tools"
|
|
||||||
# Requires network access
|
|
||||||
RESTRICT="test"
|
|
||||||
|
|
||||||
REQUIRED_USE="
|
|
||||||
${PYTHON_REQUIRED_USE}
|
|
||||||
encryption? ( || ( mbedtls openssl ) )
|
|
||||||
"
|
|
||||||
|
|
||||||
BDEPEND="
|
|
||||||
${PYTHON_DEPS}
|
|
||||||
virtual/pkgconfig
|
|
||||||
doc? (
|
|
||||||
media-gfx/graphviz
|
|
||||||
$(python_gen_cond_dep '
|
|
||||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
|
||||||
dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]
|
|
||||||
')
|
|
||||||
)
|
|
||||||
"
|
|
||||||
DEPEND="
|
|
||||||
mbedtls? ( net-libs/mbedtls:= )
|
|
||||||
openssl? ( dev-libs/openssl:0= )
|
|
||||||
"
|
|
||||||
RDEPEND="
|
|
||||||
${PYTHON_DEPS}
|
|
||||||
${DEPEND}
|
|
||||||
"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}/${PN}-1.3.5-disable-xdp.patch"
|
|
||||||
)
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
local mycmakeargs=(
|
|
||||||
-DBUILD_SHARED_LIBS=ON
|
|
||||||
-DOPEN62541_VERSION=v${PV}
|
|
||||||
-DUA_BUILD_EXAMPLES=OFF
|
|
||||||
-DUA_BUILD_TOOLS=$(usex tools)
|
|
||||||
-DUA_BUILD_UNIT_TESTS=OFF
|
|
||||||
-DUA_ENABLE_PUBSUB=$(usex pubsub)
|
|
||||||
-DUA_ENABLE_PUBSUB_ETH_UADP=$(usex pubsub)
|
|
||||||
-DUA_FORCE_WERROR=OFF
|
|
||||||
)
|
|
||||||
|
|
||||||
if use encryption; then
|
|
||||||
use mbedtls && mycmakeargs+=(-DUA_ENABLE_ENCRYPTION=MBEDTLS)
|
|
||||||
use openssl && mycmakeargs+=(-DUA_ENABLE_ENCRYPTION=OPENSSL)
|
|
||||||
fi
|
|
||||||
|
|
||||||
cmake_src_configure
|
|
||||||
}
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
cmake_src_compile
|
|
||||||
use doc && cmake_build doc
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
use doc && local HTML_DOCS=( "${WORKDIR}"/${P}_build/doc/. )
|
|
||||||
cmake_src_install
|
|
||||||
|
|
||||||
if use examples; then
|
|
||||||
docompress -x /usr/share/doc/${PF}/examples
|
|
||||||
dodoc -r examples/
|
|
||||||
fi
|
|
||||||
|
|
||||||
python_fix_shebang "${ED}"
|
|
||||||
}
|
|
||||||
|
|
||||||
src_test() {
|
|
||||||
cmake_src_test -j1
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user