commit:     65fdb6010e361aa02ed160a1ba3666fdc1a15358
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 12:18:19 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 12:40:00 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65fdb601

net-misc/sysrepo: add 2.2.150

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 net-misc/sysrepo/Manifest               |  1 +
 net-misc/sysrepo/sysrepo-2.2.150.ebuild | 40 +++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/net-misc/sysrepo/Manifest b/net-misc/sysrepo/Manifest
index 3978b0858612..e7cea24a125a 100644
--- a/net-misc/sysrepo/Manifest
+++ b/net-misc/sysrepo/Manifest
@@ -1 +1,2 @@
+DIST sysrepo-2.2.150.tar.gz 873758 BLAKE2B 
55a9d22fede4f226f24b87829c88b72096ea8a18aa9aa44e168cd3f9817f49080a4757c99d5a179cadf0352c3cbbe09d92006195140a9973d39bc0db6ed103d8
 SHA512 
b9ee7db9ca32c68576fdb300c3c5605c130b6639d942d5e39bd9ce48039fe90e0e69756e7914071f49c2db3083ba36f1f431f3f9bdaf02e3d040646e051e4cef
 DIST sysrepo-2.2.60.tar.gz 782781 BLAKE2B 
afaef4e0a3d21a636f84d76ee0de55b1365e0e66cb9335ca748752747af99eb58c368eafd7c087a1df050ff4d1c2800601d125915f2debaad8ccc77278d30b84
 SHA512 
720299b57a0615ba99e01e7d42bc85d5ba5482d82680c47961f6876400009850e8fdf5c0753c39600ef0947a318394eb6108772ac1a575584f26bdc6e2305a57

diff --git a/net-misc/sysrepo/sysrepo-2.2.150.ebuild 
b/net-misc/sysrepo/sysrepo-2.2.150.ebuild
new file mode 100644
index 000000000000..0594007d2f3d
--- /dev/null
+++ b/net-misc/sysrepo/sysrepo-2.2.150.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="YANG-based configuration and operational state data store"
+HOMEPAGE="https://www.sysrepo.org";
+SRC_URI="https://github.com/sysrepo/sysrepo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=net-libs/libyang-2.1.148"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-text/doxygen[dot] )"
+
+src_configure() {
+       local mycmakeargs=(
+               -DENABLE_TESTS=$(usex test)
+               -DENABLE_VALGRIND_TESTS=OFF
+       )
+       cmake_src_configure
+}
+
+src_compile() {
+       cmake_src_compile
+
+       use doc && cmake_src_compile doc
+}
+
+src_install() {
+       cmake_src_install
+
+       use doc && dodoc -r doc/.
+}

Reply via email to