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: Mon, 30 May 2022 13:53:30
Message-Id: 1653918717.43aa26a7e82ddc1bb90e7a35282c598cb2556aab.jsmolic@gentoo
1 commit: 43aa26a7e82ddc1bb90e7a35282c598cb2556aab
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 13:51:57 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 13:51:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43aa26a7
7
8 dev-util/clippy: drop 8.1-r1
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-util/clippy/Manifest | 1 -
13 dev-util/clippy/clippy-8.1-r1.ebuild | 46 ------------------------------------
14 2 files changed, 47 deletions(-)
15
16 diff --git a/dev-util/clippy/Manifest b/dev-util/clippy/Manifest
17 index 1f52d02d2c18..232966752b97 100644
18 --- a/dev-util/clippy/Manifest
19 +++ b/dev-util/clippy/Manifest
20 @@ -1,2 +1 @@
21 -DIST clippy-8.1.tar.gz 8514995 BLAKE2B 6b70756909b54af3317b1e97956345206612a471893dcfa4d4a7edaf27ae8d94624b0129eb511bf96ac100cc8c5c5234c2f7031d1692f4a81d5025fe797cfd11 SHA512 dcbee55b48e9d4aba005a455f8c89e63a86d63a230e6bf2e1f691adf99654e0e170efaf2c8759e0bfc33b977659a828bed248370722210e98a6e2abad8f502aa
22 DIST clippy-8.2.2.tar.gz 9439460 BLAKE2B 7ea4b44e3d167677e087ac8767c470b91c485e52f9e45513fb6da8498ff3c56e84dd90257eff3b0067c061e7596578968017cbec7de7ea951b6f80134332e1bf SHA512 52d8e82979823f61ec6f117db1eb41b23fd8ad3197ae3f9d2cfa3ad9d96636a3d2f0b36720b2041a9261c8b639ddd48e46a2351ce41cb596f7dc432cddf29256
23
24 diff --git a/dev-util/clippy/clippy-8.1-r1.ebuild b/dev-util/clippy/clippy-8.1-r1.ebuild
25 deleted file mode 100644
26 index 5102fb496f7b..000000000000
27 --- a/dev-util/clippy/clippy-8.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,46 +0,0 @@
30 -# Copyright 2020-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -MY_P="frr-${PV}"
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -inherit autotools python-single-r1
38 -
39 -DESCRIPTION="Standalone clippy tool built from FRR sources"
40 -HOMEPAGE="https://frrouting.org/"
41 -SRC_URI="https://github.com/FRRouting/frr/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
42 -S="${WORKDIR}/frr-${MY_P}"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm64 x86"
47 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
48 -
49 -# standalone clippy does not have any tests
50 -# restrict to prevent bug 811753
51 -RESTRICT="test"
52 -
53 -DEPEND="
54 - ${PYTHON_DEPS}
55 - virtual/libelf:=
56 -"
57 -RDEPEND="${DEPEND}"
58 -BDEPEND="sys-devel/flex"
59 -
60 -PATCHES=(
61 - "${FILESDIR}"/${P}-big-endian.patch
62 -)
63 -
64 -src_prepare() {
65 - default
66 - eautoreconf
67 -}
68 -
69 -src_configure() {
70 - econf --enable-clippy-only
71 -}
72 -
73 -src_install() {
74 - dobin lib/clippy
75 -}