Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sysrepo/
Date: Fri, 24 Sep 2021 08:40:39
Message-Id: 1632472828.0b1557c9a25639cb00b9968ec8f58b17f147d540.jsmolic@gentoo
1 commit: 0b1557c9a25639cb00b9968ec8f58b17f147d540
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 24 08:00:14 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 24 08:40:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b1557c9
7
8 net-misc/sysrepo: Version bump to 2.0.41
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 net-misc/sysrepo/Manifest | 1 +
13 net-misc/sysrepo/sysrepo-2.0.41.ebuild | 40 ++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/net-misc/sysrepo/Manifest b/net-misc/sysrepo/Manifest
17 index 77881a5a0b0..b81961339ae 100644
18 --- a/net-misc/sysrepo/Manifest
19 +++ b/net-misc/sysrepo/Manifest
20 @@ -1 +1,2 @@
21 DIST sysrepo-2.0.1.tar.gz 642522 BLAKE2B dc2ce960f1ce4156b89ed8f0ab2c567ca50f8d7fc3bc1151cf52d2302ba8114c8e01b7e295c249176acab6c501fbf45850a6d89fde427be444bcb12ccd243dcc SHA512 c231174980985d7cc7380f2708cd5395f621735cee62923fcb224d09d500978917b4caa7860e4dca8520e27a4f002e7377b987b6738472d6424d09a0894a3953
22 +DIST sysrepo-2.0.41.tar.gz 648603 BLAKE2B 98aeaecf8b79fd93ce8238d00ef36dd7238b5aac43772dd393d5048f689204a7ffb4985ba847b691b072476e18ba4b3f5ff467286ab08cf4f949974a02116f2b SHA512 edb61d9a29d7ee541ed48dc98a9d1cfabd1faf40676e3174f155a895530c543622b2d058b016d7af23836a42e41980b8ce8eb3fed2f38de7c254382937bb16ce
23
24 diff --git a/net-misc/sysrepo/sysrepo-2.0.41.ebuild b/net-misc/sysrepo/sysrepo-2.0.41.ebuild
25 new file mode 100644
26 index 00000000000..82ccb9f48c0
27 --- /dev/null
28 +++ b/net-misc/sysrepo/sysrepo-2.0.41.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit cmake
36 +
37 +DESCRIPTION="YANG-based configuration and operational state data store"
38 +HOMEPAGE="https://www.sysrepo.org"
39 +SRC_URI="https://github.com/sysrepo/sysrepo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="Apache-2.0"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="doc test"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND=">=net-libs/libyang-2.0.88:="
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="doc? ( app-doc/doxygen[dot] )"
50 +
51 +src_configure() {
52 + local mycmakeargs=(
53 + -DENABLE_TESTS=$(usex test)
54 + -DENABLE_VALGRIND_TESTS=OFF
55 + )
56 + cmake_src_configure
57 +}
58 +
59 +src_compile() {
60 + cmake_src_compile
61 +
62 + use doc && cmake_src_compile doc
63 +}
64 +
65 +src_install() {
66 + cmake_src_install
67 +
68 + use doc && dodoc -r doc/.
69 +}