Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pg_top/files/, dev-db/pg_top/
Date: Fri, 09 Feb 2018 14:33:09
Message-Id: 1518186772.a40b060ae499622ecea6d8cd96c0bbd7da799783.titanofold@gentoo
1 commit: a40b060ae499622ecea6d8cd96c0bbd7da799783
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 9 14:32:52 2018 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 9 14:32:52 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a40b060a
7
8 dev-db/pg_top: Remove outdated
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-db/pg_top/Manifest | 1 -
13 dev-db/pg_top/files/pg_top-3.6.2.patch | 29 -----------------------------
14 dev-db/pg_top/pg_top-3.6.2-r1.ebuild | 30 ------------------------------
15 3 files changed, 60 deletions(-)
16
17 diff --git a/dev-db/pg_top/Manifest b/dev-db/pg_top/Manifest
18 index 90c12adeda2..f72bfcdce72 100644
19 --- a/dev-db/pg_top/Manifest
20 +++ b/dev-db/pg_top/Manifest
21 @@ -1,2 +1 @@
22 -DIST pg_top-3.6.2.tar.bz2 220985 BLAKE2B 93676f5e35b0048e4bcaee6385e7f6d291ca8b3740f7226715acf254fcc24bd4cc921a078f679e22e599e22f79fc3e2de5b971c918b6bc7e6eff2fd6e7a72df2 SHA512 0e7f33cccd7a1debce4965a11ff3d5d6868aace53651ca1c486f061728034f0ab3901ddfbded022c9297d3393eaea32585ca779334954c87fd0c13c8fa523074
23 DIST pg_top-3.7.0.tar.bz2 236076 BLAKE2B 87a29d0237aad48b683c17ba56fdbc4a90f854f4f497057ffc978be1797d978f02694781e83d296fca82e03c8bc737f7cfd74e996987eea0bd8d6a66ae433ce0 SHA512 509cd3ce65a9b549097eaab5ae27106fa469cdeb4f37950564654f3df01390e1a771c8fa4f5858c3e4c1e76470b6c0fd9b07e8268564f59285e30bf824d7c4ec
24
25 diff --git a/dev-db/pg_top/files/pg_top-3.6.2.patch b/dev-db/pg_top/files/pg_top-3.6.2.patch
26 deleted file mode 100644
27 index 03ef912ed2b..00000000000
28 --- a/dev-db/pg_top/files/pg_top-3.6.2.patch
29 +++ /dev/null
30 @@ -1,29 +0,0 @@
31 ---- configure.ac.orig 2013-09-20 10:11:20.256444684 +0400
32 -+++ configure.ac 2013-09-20 10:16:30.262459612 +0400
33 -@@ -90,7 +90,7 @@
34 -
35 - DBCFLAGS="-I$INCLUDEDIR"
36 - LIBDIR=`$PG_CONFIG --libdir`
37 --DBLDFLAGS="-L$LIBDIR -lpq"
38 -+DBLDFLAGS="-L$LIBDIR"
39 -
40 - AC_SUBST(DBCFLAGS)
41 - AC_SUBST(DBLDFLAGS)
42 -@@ -109,6 +109,8 @@
43 - AC_SEARCH_LIBS(inet_aton, resolv, AC_DEFINE(HAVE_INET_ATON, 1,
44 - [inet_aton is already defined]))
45 -
46 -+AC_SEARCH_LIBS(PQexec, pq)
47 -+
48 - # check for libraries required by extension
49 - extlibs=""
50 - if test -n "$with_ext" -a -f "${srcdir}/ext/$with_ext.libs"; then
51 -@@ -216,8 +218,6 @@
52 - AC_SUBST(SRC)
53 - AC_SUBST(OBJ)
54 -
55 --CFLAGS="-Wall -g"
56 --
57 - AC_MSG_CHECKING(for installation settings)
58 - # calculate appropriate settings
59 - OWNER=""
60
61 diff --git a/dev-db/pg_top/pg_top-3.6.2-r1.ebuild b/dev-db/pg_top/pg_top-3.6.2-r1.ebuild
62 deleted file mode 100644
63 index ed4375a4571..00000000000
64 --- a/dev-db/pg_top/pg_top-3.6.2-r1.ebuild
65 +++ /dev/null
66 @@ -1,30 +0,0 @@
67 -# Copyright 1999-2014 Gentoo Foundation
68 -# Distributed under the terms of the GNU General Public License v2
69 -
70 -EAPI="5"
71 -
72 -AUTOTOOLS_AUTORECONF=1
73 -inherit autotools-utils eutils
74 -
75 -DESCRIPTION="'top' for PostgreSQL"
76 -HOMEPAGE="http://ptop.projects.postgresql.org/"
77 -SRC_URI="http://pgfoundry.org/frs/download.php/1780/${P}.tar.bz2"
78 -
79 -LICENSE="BSD"
80 -SLOT="0"
81 -KEYWORDS="~amd64 ~x86"
82 -IUSE="debug"
83 -
84 -RDEPEND="dev-db/postgresql"
85 -DEPEND="${RDEPEND}
86 - virtual/pkgconfig"
87 -
88 -DOCS=( FAQ HISTORY README TODO Y2K )
89 -PATCHES=( "${FILESDIR}/${P}.patch" )
90 -
91 -src_configure() {
92 - local myeconfargs=(
93 - $(use_enable debug)
94 - )
95 - autotools-utils_src_configure
96 -}