Gentoo Archives: gentoo-commits

From: "Aaron W. Swenson" <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pg_top/
Date: Mon, 30 Nov 2020 03:25:23
Message-Id: 1606706603.ef5d69fa03126598af4ee4b1949fb7d9d4bb075f.titanofold@gentoo
1 commit: ef5d69fa03126598af4ee4b1949fb7d9d4bb075f
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 30 03:23:23 2020 +0000
4 Commit: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 03:23:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5d69fa
7
8 dev-db/pg_top: Don't ignore CFLAGS
9
10 Bug: https://bugs.gentoo.org/756049
11 Signed-off-by: Aaron W. Swenson <titanofold <AT> gentoo.org>
12
13 dev-db/pg_top/pg_top-4.0.0-r1.ebuild | 25 +++++++++++++++++++++++++
14 1 file changed, 25 insertions(+)
15
16 diff --git a/dev-db/pg_top/pg_top-4.0.0-r1.ebuild b/dev-db/pg_top/pg_top-4.0.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..bb38e3056d7
19 --- /dev/null
20 +++ b/dev-db/pg_top/pg_top-4.0.0-r1.ebuild
21 @@ -0,0 +1,25 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit cmake
28 +
29 +DESCRIPTION="'top' for PostgreSQL"
30 +HOMEPAGE="https://pg_top.gitlab.io/"
31 +SRC_URI="https://pg_top.gitlab.io/source/${P}.tar.xz"
32 +
33 +LICENSE="BSD"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="dev-db/postgresql:="
39 +DEPEND="${RDEPEND}"
40 +
41 +DOCS=( HISTORY.rst README.rst TODO Y2K )
42 +
43 +src_prepare() {
44 + sed 's/set(CMAKE_C_FLAGS "-Wall")//' -i CMakeLists.txt || die
45 + cmake_src_prepare
46 +}