Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/btop/
Date: Wed, 07 Sep 2022 06:34:29
Message-Id: 1662532246.9a274c0b968092916a4c9011c2bc22d642cc48a8.flow@gentoo
1 commit: 9a274c0b968092916a4c9011c2bc22d642cc48a8
2 Author: Adrian Schollmeyer <nex+b-g-o <AT> nexadn <DOT> de>
3 AuthorDate: Sun Aug 28 17:23:09 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 06:30:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a274c0b
7
8 sys-process/btop: drop 1.2.7-r1
9
10 Signed-off-by: Adrian Schollmeyer <nex+b-g-o <AT> nexadn.de>
11 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
12
13 sys-process/btop/Manifest | 1 -
14 sys-process/btop/btop-1.2.7-r1.ebuild | 48 -----------------------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/sys-process/btop/Manifest b/sys-process/btop/Manifest
18 index bcc4fb50a4dd..cdca0835ddce 100644
19 --- a/sys-process/btop/Manifest
20 +++ b/sys-process/btop/Manifest
21 @@ -1,2 +1 @@
22 -DIST btop-1.2.7.tar.gz 974883 BLAKE2B c23c0b13ee6749e30ca8a7624f27bac8dc81466ff957a042c9c5e4f7c31b81fc6c15d6b214186e4baed474263ea96a3ffc584783cd098f3ebcae9e34bd75a955 SHA512 c29e1e3d098ef29c710bf76c1ef20e54feceb490aa59d20475a7083a276d422a32f4b4ff423a121aa4aa7f83389980e553e1f78c165f111fe00ccac693d96447
23 DIST btop-1.2.8.tar.gz 976370 BLAKE2B ab71ac322afd84b5b73c5deb9003f319078809d81e2725a7447d2a8fe7539af21c669e7199a3422b2a1cc2ecbd79a46179343e00311f2d56bfa30f51d6340bd3 SHA512 4b5a3685ca5cf301cd7d6556bd365892587e6811f8323ca66728022aba7cc3ff95cf591b452151c9431824dc458bc3d09e10474c7c02a944e8931c4585914f5a
24
25 diff --git a/sys-process/btop/btop-1.2.7-r1.ebuild b/sys-process/btop/btop-1.2.7-r1.ebuild
26 deleted file mode 100644
27 index 11ad6ec5ab11..000000000000
28 --- a/sys-process/btop/btop-1.2.7-r1.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 2021-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit toolchain-funcs xdg-utils
37 -
38 -DESCRIPTION="A monitor of resources"
39 -HOMEPAGE="https://github.com/aristocratos/btop"
40 -SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm64 ppc64 x86"
45 -
46 -PATCHES=(
47 - "${FILESDIR}/${P}-respect-cxx-var-839318.patch"
48 -)
49 -
50 -src_prepare() {
51 - default
52 - # btop installs README.md to /usr/share/btop by default
53 - sed -i '/^.*cp -p README.md.*$/d' Makefile || die
54 -}
55 -
56 -src_compile() {
57 - # Disable btop optimization flags, since we have our flags in CXXFLAGS
58 - emake OPTFLAGS="" CXX="$(tc-getCXX)"
59 -}
60 -
61 -src_install() {
62 - emake \
63 - PREFIX="${EPREFIX}/usr" \
64 - DESTDIR="${D}" \
65 - install
66 -
67 - dodoc README.md CHANGELOG.md
68 -}
69 -
70 -pkg_postinst() {
71 - xdg_desktop_database_update
72 - xdg_icon_cache_update
73 -}
74 -
75 -pkg_postrm() {
76 - xdg_desktop_database_update
77 - xdg_icon_cache_update
78 -}