Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/batctl/
Date: Wed, 09 Jun 2021 06:08:45
Message-Id: 1623218913.94844cb271ab6f83e18aa2fb21a70d96fb39009b.juippis@gentoo
1 commit: 94844cb271ab6f83e18aa2fb21a70d96fb39009b
2 Author: Harry Smallbones <info <AT> harrysmallbones <DOT> co <DOT> uk>
3 AuthorDate: Wed May 19 22:46:39 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 9 06:08:33 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94844cb2
7
8 net-misc/batctl: Remove outdated ebuild
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Harry Smallbones <info <AT> harrysmallbones.co.uk>
12 Closes: https://github.com/gentoo/gentoo/pull/20889
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 net-misc/batctl/Manifest | 1 -
16 net-misc/batctl/batctl-2021.0.ebuild | 33 ---------------------------------
17 2 files changed, 34 deletions(-)
18
19 diff --git a/net-misc/batctl/Manifest b/net-misc/batctl/Manifest
20 index 3e87b3b9eae..c261c52e52a 100644
21 --- a/net-misc/batctl/Manifest
22 +++ b/net-misc/batctl/Manifest
23 @@ -1,2 +1 @@
24 -DIST batctl-2021.0.tar.gz 108424 BLAKE2B e6823c730348483582ad3724a3ef5a67ba0c429ccea114a650ea23cae22d6fae256f95992777a9a7634ad29315085a3f7f91c6ea45d46568ce9b422fe58d8290 SHA512 87a773667377826d2d7fcdc16d2b34f61e3d02ed8303617bf33f5ef9d5a9c46cfe6bfe560ff8899c45290ce3e8581ddf798991590f48ba3e70b2e0e07f7a8e69
25 DIST batctl-2021.1.tar.gz 115688 BLAKE2B 44d77e82b8ee770212d5c1774b14b09dcc6c06741ecb2ad649addb8e837fe833905ab9ae3862bc1d816ea40c9e6d0dd3a6c6a298787e6dc7b475e0e767bc3358 SHA512 542343db3fb7d8f773656d9049285816359b0c94d7b26f26d5993209cae561b4b62442eef919b65bc46e0d8d23b10afd2f3d8c4beb2841641fffc643f65d8de6
26
27 diff --git a/net-misc/batctl/batctl-2021.0.ebuild b/net-misc/batctl/batctl-2021.0.ebuild
28 deleted file mode 100644
29 index 6ac8ab8cc2d..00000000000
30 --- a/net-misc/batctl/batctl-2021.0.ebuild
31 +++ /dev/null
32 @@ -1,33 +0,0 @@
33 -# Copyright 2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit linux-info toolchain-funcs
39 -
40 -DESCRIPTION="BATMAN advanced control and management tool"
41 -HOMEPAGE="https://www.open-mesh.org/"
42 -SRC_URI="https://downloads.open-mesh.org/batman/releases/batman-adv-${PV}/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2 MIT ISC"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -
48 -BDEPEND="virtual/pkgconfig"
49 -RDEPEND="dev-libs/libnl:3"
50 -DEPEND="${RDEPEND}"
51 -
52 -pkg_setup() {
53 - if ! linux_config_exists || ! linux_chkconfig_present BATMAN_ADV; then
54 - ewarn "batctl requires batman-adv kernel support"
55 - fi
56 -}
57 -
58 -src_compile() {
59 - emake CC="$(tc-getCC)" V=1 REVISION="gentoo-${PVR}"
60 -}
61 -
62 -src_install() {
63 - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
64 - dodoc README.rst
65 -}