public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Brian Evans" <grknight@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/pgadmin3/files/, profiles/, dev-db/pgadmin3/
Date: Wed, 23 Jan 2019 18:43:26 +0000 (UTC)	[thread overview]
Message-ID: <1548268550.c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9.grknight@gentoo> (raw)

commit:     c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 23 18:35:50 2019 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Jan 23 18:35:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c27c8dfa

dev-db/pgadmin3: Remove last rites package

Closes: https://bugs.gentoo.org/show_bug.cgi?id=669650
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>

 dev-db/pgadmin3/Manifest                           |  1 -
 dev-db/pgadmin3/files/pgadmin3-desktop-r1.patch    | 15 --------
 .../files/pgadmin3-gcc6-null-pointer.patch         | 11 ------
 dev-db/pgadmin3/metadata.xml                       | 11 ------
 dev-db/pgadmin3/pgadmin3-1.22.2.ebuild             | 45 ----------------------
 profiles/package.mask                              |  6 ---
 6 files changed, 89 deletions(-)

diff --git a/dev-db/pgadmin3/Manifest b/dev-db/pgadmin3/Manifest
deleted file mode 100644
index 618d2737428..00000000000
--- a/dev-db/pgadmin3/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pgadmin3-1.22.2.tar.gz 14788481 BLAKE2B fd38ae523bfc554138f56a99ee5fe0aaf2446d3b77416552861d4c3d3d939e553ee160264720af3095f91d270b6c719e078ec29b998c2f4a13739ed34c4c0312 SHA512 dcfc72cc2e33dbf1c9d1ce287f9d1d46eb047c99a165372cb74ef1716098f90f2ce2a8d0cd21b511a1ac8c0569dc7b3c0593208a74641f5a8f29dc9c04e40bbd

diff --git a/dev-db/pgadmin3/files/pgadmin3-desktop-r1.patch b/dev-db/pgadmin3/files/pgadmin3-desktop-r1.patch
deleted file mode 100644
index 64a599e00cd..00000000000
--- a/dev-db/pgadmin3/files/pgadmin3-desktop-r1.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -Naruw a/pkg/pgadmin3.desktop b/pkg/pgadmin3.desktop
---- a/pkg/pgadmin3.desktop	2013-02-22 12:21:19.000000000 -0500
-+++ b/pkg/pgadmin3.desktop	2015-02-04 15:36:34.845312953 -0500
-@@ -2,9 +2,8 @@
- Encoding=UTF-8
- Name=pgAdmin III
- Exec=/usr/bin/pgadmin3
--Icon=/usr/share/pgadmin3/pgAdmin3.png
-+Icon=/usr/share/pixmaps/pgadmin3.png
- Type=Application
--Categories=Application;Development;
--MimeType=text/html
-+Categories=Development;
- DocPath=/usr/share/pgadmin3/docs/en_US/index.html
- Comment=PostgreSQL Tools

diff --git a/dev-db/pgadmin3/files/pgadmin3-gcc6-null-pointer.patch b/dev-db/pgadmin3/files/pgadmin3-gcc6-null-pointer.patch
deleted file mode 100644
index 1396f8de8aa..00000000000
--- a/dev-db/pgadmin3/files/pgadmin3-gcc6-null-pointer.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/pgadmin/frm/plugins.cpp
-+++ b/pgadmin/frm/plugins.cpp
-@@ -380,7 +380,7 @@ bool pluginUtilityFactory::CheckEnable(p
- 	{
- 		// If we need a specific server type, we can't enable unless
- 		// we have a connection.
--		if (!obj || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
-+		if (!obj || !obj->GetConnection() || !(obj->GetConnection()->GetStatus() == PGCONN_OK))
- 			return false;
- 
- 		// Get the server type.

diff --git a/dev-db/pgadmin3/metadata.xml b/dev-db/pgadmin3/metadata.xml
deleted file mode 100644
index 7d8a73bc92c..00000000000
--- a/dev-db/pgadmin3/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-	<email>pgsql-bugs@gentoo.org</email>
-	<name>PostgreSQL and Related Package Development</name>
-	</maintainer>
-<use>
-	<flag name="databasedesigner">Enable the Database Designer component</flag>
-</use>
-</pkgmetadata>

diff --git a/dev-db/pgadmin3/pgadmin3-1.22.2.ebuild b/dev-db/pgadmin3/pgadmin3-1.22.2.ebuild
deleted file mode 100644
index 5498f4be6fd..00000000000
--- a/dev-db/pgadmin3/pgadmin3-1.22.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eutils multilib versionator wxwidgets
-
-DESCRIPTION="wxWidgets GUI for PostgreSQL"
-HOMEPAGE="https://www.pgadmin.org/"
-SRC_URI="mirror://postgresql/pgadmin/pgadmin3/v${PV}/src/${P}.tar.gz"
-
-LICENSE="POSTGRESQL"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-SLOT="0"
-IUSE="debug +databasedesigner"
-
-DEPEND="
-	x11-libs/wxGTK:3.0=[X]
-	>=dev-db/postgresql-8.4.0:=
-	>=dev-libs/libxml2-2.6.18
-	>=dev-libs/libxslt-1.1"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}"/pgadmin3-{desktop-r1,gcc6-null-pointer}.patch )
-
-src_configure() {
-	WX_GTK_VER="3.0"
-
-	setup-wxwidgets
-
-	econf --with-wx-version=${WX_GTK_VER} \
-		$(use_enable debug) \
-		$(use_enable databasedesigner)
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-
-	newicon "${S}/pgadmin/include/images/pgAdmin3.png" ${PN}.png
-
-	domenu "${S}/pkg/pgadmin3.desktop"
-
-	# Fixing world-writable files
-	fperms -R go-w /usr/share
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index d0d70a949c7..65fac9ba71e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -169,12 +169,6 @@ net-voip/linphone
 net-libs/libeXosip
 net-libs/libosip
 
-# Aaron W. Swenson <titanofold@gentoo.org> (25 Oct 2018)
-# Fails to build against up to date OpenSSL library (Bug 663966). No longer
-# supported upstream. Use dev-db/pgadmin4.
-# Masked for removal on 2018-11-24, bug #669650.
-dev-db/pgadmin3
-
 # Lars Wendler <polynomial-c@gentoo.org> (22 Oct 2018)
 # Breaks dev-libs/gobject-introspection and its consumers
 # See #669278


                 reply	other threads:[~2019-01-23 18:43 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1548268550.c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9.grknight@gentoo \
    --to=grknight@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox