Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/crazydiskinfo/
Date: Sun, 27 Feb 2022 15:33:45
Message-Id: 1645976016.204f34fa72dcae6ef8d8c8e292c2b9ac6ea9748c.monsieurp@gentoo
1 commit: 204f34fa72dcae6ef8d8c8e292c2b9ac6ea9748c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 27 15:31:51 2022 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 27 15:33:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=204f34fa
7
8 sys-apps/crazydiskinfo: drop 1.1.0
9
10 Bug: https://bugs.gentoo.org/834309
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 sys-apps/crazydiskinfo/crazydiskinfo-1.1.0.ebuild | 28 -----------------------
14 1 file changed, 28 deletions(-)
15
16 diff --git a/sys-apps/crazydiskinfo/crazydiskinfo-1.1.0.ebuild b/sys-apps/crazydiskinfo/crazydiskinfo-1.1.0.ebuild
17 deleted file mode 100644
18 index 0026177e5689..000000000000
19 --- a/sys-apps/crazydiskinfo/crazydiskinfo-1.1.0.ebuild
20 +++ /dev/null
21 @@ -1,28 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit cmake-utils
28 -
29 -DESCRIPTION="Interactive TUI S.M.A.R.T viewer"
30 -HOMEPAGE="https://github.com/otakuto/crazydiskinfo"
31 -SRC_URI="https://github.com/otakuto/crazydiskinfo/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="MIT"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -
37 -DEPEND="
38 - dev-libs/libatasmart:0=
39 - sys-libs/ncurses:0="
40 -
41 -RDEPEND="${DEPEND}"
42 -
43 -src_prepare() {
44 - sed -e "s#^set(CMAKE_CXX_FLAGS.*#set(CMAKE_CXX_FLAGS \"${CXXFLAGS} -Wall -std=c++11\")#" \
45 - -e "5s#^#set(CMAKE_C_FLAGS \"${CFLAGS}\")\n#" \
46 - -i CMakeLists.txt || die "can't patch CMakeLists.txt"
47 -
48 - cmake-utils_src_prepare
49 -}