dev-cpp/robotraconteur-companion: bump version to 0.4.3

Signed-off-by: John Wason <wason@wasontech.com>
This commit is contained in:
John Wason
2026-05-22 20:48:47 +00:00
parent 530be62f75
commit 7af48f90e8
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST RobotRaconteurCompanion-0.4.2-Source.tar.gz 247805 BLAKE2B 83ebea93a9d52ba0310509c8bc74bd330776ca353319af0b7ef9eede12b41d60b1bf23d982fe901be613b6cfac293d8699ae6448b4ca4c39bb64b653ca36c3d7 SHA512 be4e25d7d8b8718afb24837d050e10d363a1a61c66bb82fe1526319877aa30ab1883e2982b011275476e3949d7e21191b2b515b328c5fb3c4373a6dff6abe2aa
DIST RobotRaconteurCompanion-0.4.3-Source.tar.gz 242152 BLAKE2B c9fc1ad4c5af0e3f444c08f860064120dc9245e7b8bbdf422ad05ee91113f2c5e483eeac37ee3caa057b2873ebc962afa8021bca9bbc61a5d8afd2f7331d116a SHA512 7074c2479b755984cb02db1bedf7ab1997d2130b3ac12d9732a06dab2d3efc61ac1e8897d65daca1c8983a00e6b4f61cd89d3093627181a2a9dcb652ced547ae

View File

@@ -0,0 +1,34 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Robot Raconteur C++ Companion Library"
HOMEPAGE="https://github.com/robotraconteur/robotraconteur_companion"
SRC_URI="https://github.com/robotraconteur/robotraconteur_companion/releases/download/v${PV}/RobotRaconteurCompanion-${PV}-Source.tar.gz"
S="${WORKDIR}/RobotRaconteurCompanion-${PV}-Source"
LICENSE="Apache-2.0"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~arm64"
DEPEND="dev-libs/boost:=
dev-libs/openssl
dev-cpp/yaml-cpp:=
dev-cpp/eigen
dev-cpp/robotraconteur
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-DBUILD_TESTING=OFF
-DBUILD_DOCUMENTATION=OFF
-DROBOTRACONTEUR_COMPANION_SOVERSION_MAJOR_ONLY=ON
)
cmake_src_configure
}