summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2019-01-23 13:35:50 -0500
committerBrian Evans <grknight@gentoo.org>2019-01-23 13:35:50 -0500
commitc27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9 (patch)
treee464f90e098e342c8972ef84b5a423efee4f544b /dev-db/pgadmin3/files
parentdev-lang/nasm: amd64 stable wrt bug #670884 (diff)
downloadgentoo-c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9.tar.gz
gentoo-c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9.tar.bz2
gentoo-c27c8dfa1bc0dd1371ce9cd0a1383a44965b0dc9.zip
dev-db/pgadmin3: Remove last rites package
Closes: https://bugs.gentoo.org/show_bug.cgi?id=669650 Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'dev-db/pgadmin3/files')
-rw-r--r--dev-db/pgadmin3/files/pgadmin3-desktop-r1.patch15
-rw-r--r--dev-db/pgadmin3/files/pgadmin3-gcc6-null-pointer.patch11
2 files changed, 0 insertions, 26 deletions
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 64a599e00cdb..000000000000
--- 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 1396f8de8aab..000000000000
--- 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.