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: Mon, 27 Jun 2022 17:32:38
Message-Id: 1656350914.92425ea3b16663b544b0a61f4c95567c6518d6b6.jsmolic@gentoo
1 commit: 92425ea3b16663b544b0a61f4c95567c6518d6b6
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 17:28:34 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 17:28:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92425ea3
7
8 net-misc/sysrepo: drop 2.1.42
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 net-misc/sysrepo/Manifest | 1 -
13 net-misc/sysrepo/sysrepo-2.1.42.ebuild | 40 ----------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/net-misc/sysrepo/Manifest b/net-misc/sysrepo/Manifest
17 index c92d6e0e2fb9..bd484bf61c76 100644
18 --- a/net-misc/sysrepo/Manifest
19 +++ b/net-misc/sysrepo/Manifest
20 @@ -1,2 +1 @@
21 -DIST sysrepo-2.1.42.tar.gz 712516 BLAKE2B 6ae56ada0156f49483ca9c3b2494a4bc8093ffa910a2f043e12f4cc5af2285580dfd0f950d5fccb2c00b5a299c9345045194b480ef857448479de5e838b49bbc SHA512 186eee0f1ddef28a1aa2d9a9038e9fcbfc829579f1a47eeefb4f2aa31d18f97ec2723bd04fe0684f80dacfba3d1a8da8748b564e310ffbdde5f18251c81d7405
22 DIST sysrepo-2.1.64.tar.gz 722294 BLAKE2B 55f71bd2bfa987775d324763d989f57ef79c74d45c261e2f880740201ca5585107459f849d915e3bf4084c9f5ff538a7867787ce53145ad1a64e418384e3558c SHA512 363d6a0dd057326125aa11c51bb1e80a2a521708a95b95eecf2b416a2ebd938b5ac6b8ae49311376bfbae5599679e23f62503da946920bffb48379c665183b40
23
24 diff --git a/net-misc/sysrepo/sysrepo-2.1.42.ebuild b/net-misc/sysrepo/sysrepo-2.1.42.ebuild
25 deleted file mode 100644
26 index ff659f5568e9..000000000000
27 --- a/net-misc/sysrepo/sysrepo-2.1.42.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 2021-2022 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.164"
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 -}