Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clippy/
Date: Thu, 24 Feb 2022 09:38:37
Message-Id: 1645695503.f9b49d343e6396bb549f2a8f0389c6ea34f71314.jsmolic@gentoo
1 commit: f9b49d343e6396bb549f2a8f0389c6ea34f71314
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 24 09:37:48 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 09:38:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b49d34
7
8 dev-util/clippy: drop 8.1
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-util/clippy/clippy-8.1.ebuild | 42 ---------------------------------------
13 1 file changed, 42 deletions(-)
14
15 diff --git a/dev-util/clippy/clippy-8.1.ebuild b/dev-util/clippy/clippy-8.1.ebuild
16 deleted file mode 100644
17 index 9497111deab2..000000000000
18 --- a/dev-util/clippy/clippy-8.1.ebuild
19 +++ /dev/null
20 @@ -1,42 +0,0 @@
21 -# Copyright 2020-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -MY_P="frr-${PV}"
27 -PYTHON_COMPAT=( python3_{8..10} )
28 -inherit autotools python-single-r1
29 -
30 -DESCRIPTION="Standalone clippy tool built from FRR sources"
31 -HOMEPAGE="https://frrouting.org/"
32 -SRC_URI="https://github.com/FRRouting/frr/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
33 -S="${WORKDIR}/frr-${MY_P}"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm64 x86"
38 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
39 -
40 -# standalone clippy does not have any tests
41 -# restrict to prevent bug 811753
42 -RESTRICT="test"
43 -
44 -DEPEND="
45 - ${PYTHON_DEPS}
46 - virtual/libelf:=
47 -"
48 -RDEPEND="${DEPEND}"
49 -BDEPEND="sys-devel/flex"
50 -
51 -src_prepare() {
52 - default
53 - eautoreconf
54 -}
55 -
56 -src_configure() {
57 - econf --enable-clippy-only
58 -}
59 -
60 -src_install() {
61 - dobin lib/clippy
62 -}