commit:     11d95c8a2299afe671f2aef73e975c41fb2e9b9d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 20 15:39:17 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 20 15:52:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11d95c8a

net-misc/gwget: Remove last-rited pkg

Closes: https://bugs.gentoo.org/726796
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-misc/gwget/Manifest                            |  1 -
 .../files/gwget-1.0.4-glib-single-include.patch    | 13 ------
 .../gwget/files/gwget-1.0.4-libnotify-0.7.patch    | 29 ------------
 net-misc/gwget/gwget-1.0.4.ebuild                  | 53 ----------------------
 net-misc/gwget/metadata.xml                        | 17 -------
 profiles/arch/powerpc/ppc32/package.use.mask       |  2 -
 profiles/package.mask                              |  7 ---
 7 files changed, 122 deletions(-)

diff --git a/net-misc/gwget/Manifest b/net-misc/gwget/Manifest
deleted file mode 100644
index 4717651b0f9..00000000000
--- a/net-misc/gwget/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gwget-1.0.4.tar.bz2 444843 BLAKE2B 
8485aece30496c441d2ddc44dbbe08f17e698cc905ab465fc0b165a70a5ff264da3ef3773cea03ab3cd4e2f48b210d23507d7548549c5880e39d6e5bf955ecd5
 SHA512 
fab9d5eb4e6fd9d061a51848d7f4df9a44925ef8c74386753a7250c4d92b0c95419a8355acf83611c83838e87d906613659e146132a086ada0bdb69cc2ac13cd

diff --git a/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch 
b/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch
deleted file mode 100644
index a5cf4ee995b..00000000000
--- a/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: gwget-1.0.4/src/gwget-application.h
-===================================================================
---- gwget-1.0.4.orig/src/gwget-application.h
-+++ gwget-1.0.4/src/gwget-application.h
-@@ -18,7 +18,7 @@
- #ifndef GWGET_APPLICATION_H
- #define GWGET_APPLICATION_H
- 
--#include <glib/gerror.h>
-+#include <glib.h>
- #include <glib-object.h>
- 
- G_BEGIN_DECLS

diff --git a/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch 
b/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch
deleted file mode 100644
index 8cecc197814..00000000000
--- a/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/src/systray.c
-+++ b/src/systray.c
-@@ -6,6 +6,12 @@
- #include "systray.h"
- #include "main_window_cb.h"
- 
-+#ifdef HAVE_NOTIFY
-+#ifndef NOTIFY_CHECK_VERSION
-+#define NOTIFY_CHECK_VERSION(x,y,z) 0
-+#endif
-+#endif
-+
- static GdkPixbuf *systray_load_icon (const gchar *filename);
- static GdkPixbuf *systray_pixbuf_new_from_file(const gchar *filename);
- static void systray_clicked(GtkStatusIcon *status_icon,guint button,guint 
activate_time,gpointer user_data);
-@@ -224,7 +230,12 @@
-                       if (!notify_is_initted ())
-                       if (!notify_init ("gwget"))
-                              return;
--       NotifyNotification *notification = 
notify_notification_new(primary,secondary,icon_name,NULL);
-+       NotifyNotification *notification = 
notify_notification_new(primary,secondary,icon_name
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+       );
-+#else
-+       ,NULL);
-+#endif
-        notify_notification_show(notification,NULL);
- #endif
- 

diff --git a/net-misc/gwget/gwget-1.0.4.ebuild 
b/net-misc/gwget/gwget-1.0.4.ebuild
deleted file mode 100644
index 1a843450cde..00000000000
--- a/net-misc/gwget/gwget-1.0.4.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-GNOME_TARBALL_SUFFIX="bz2"
-
-inherit gnome2
-
-DESCRIPTION="GTK2 WGet Frontend"
-HOMEPAGE="https://gnome.org/projects/gwget/";
-
-KEYWORDS="amd64 ppc x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="epiphany libnotify"
-
-# FIXME: dbus should be optional
-#        needs patching for linguas/intltool
-RDEPEND="
-       net-misc/wget
-       >=x11-libs/gtk+-2.6:2
-       >=dev-libs/glib-2.16.0:2
-       >=gnome-base/gconf-2:2
-       >=gnome-base/libgnomeui-2
-       >=dev-libs/dbus-glib-0.70
-       epiphany? ( >=www-client/epiphany-1.4 )
-       libnotify? ( >=x11-libs/libnotify-0.2.2 )
-"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       >=dev-util/intltool-0.35.0
-       >=sys-devel/gettext-0.10.4
-"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-libnotify-0.7.patch
-       "${FILESDIR}"/${P}-glib-single-include.patch
-)
-
-src_configure() {
-       gnome2_src_configure \
-               $(use_enable epiphany epiphany-extension) \
-               $(use_enable libnotify) \
-               --disable-static
-}
-
-src_install() {
-       gnome2_src_install
-
-       # remove /var/lib, which is created without any reason
-       rm -rf "${D}"/var || die "rm failed"
-}

diff --git a/net-misc/gwget/metadata.xml b/net-misc/gwget/metadata.xml
deleted file mode 100644
index 25e77310cc1..00000000000
--- a/net-misc/gwget/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="project">
-    <email>[email protected]</email>
-    <name>Gentoo GNOME Desktop</name>
-  </maintainer>
-  <longdescription>Gwget2 is a gtk2 front-end for the wget program. Wget is 
commonly used for retrieving files from the internet, and with an easy to use 
gtk2 interface, gwget2 brings the utility of wget to the GNOME desktop. Gwget2 
supports drag and drop from most gtk2 compatible browsers, as well as the 
ability to pause and continue downloads over sessions.</longdescription>
-  <longdescription lang="ja">
-Gwget2 は wget プログラムの GTK2 フロントエンドです。wget とはインターネットからファイルを回収するのに一般的に
-使われているもので、gwget2 はGNOME デスクトップへ wget ユーティリティを統合し、GTK2 インターフェイスで使い易くします。
-Gwget2 は GTK2 互換のブラウザからのドラッグ・アンド・ドロップ及びセッションを越えた停止と再開をサポートします。
-</longdescription>
-  <use>
-    <flag name="epiphany">Build epiphany extensions</flag>
-  </use>
-</pkgmetadata>

diff --git a/profiles/arch/powerpc/ppc32/package.use.mask 
b/profiles/arch/powerpc/ppc32/package.use.mask
index 11c1667485c..8eed0f03539 100644
--- a/profiles/arch/powerpc/ppc32/package.use.mask
+++ b/profiles/arch/powerpc/ppc32/package.use.mask
@@ -28,8 +28,6 @@ gnome-base/gnome-control-center flickr
 sci-misc/boinc X
 # needs mail-client/evolution, depends on net-libs/webkit-gtk
 net-mail/lbdb evo
-# needs www-client/epiphany, depends on net-libs/webkit-gtk
-net-misc/gwget epiphany
 # needs dev-util/devhelp, depends on net-libs/webkit-gtk
 dev-util/anjuta devhelp
 

diff --git a/profiles/package.mask b/profiles/package.mask
index 8b4f09ed288..005cf106155 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -352,13 +352,6 @@ gnome-base/libbonoboui
 gnome-base/libgnome
 gnome-base/libgnomeui
 
-# Michał Górny <[email protected]> (2020-09-20)
-# Abandoned upstream, homepage gone.  Last release in 2009.  Uses
-# deprecated gnome-base/libgnomeui.  Arch apparently has patches to keep
-# it alive, if anyone wants to.
-# Removal in 30 days.  Bug #726796.
-net-misc/gwget
-
 # Michał Górny <[email protected]> (2020-09-09)
 # These packages (or package versions) still require Python 2.7.
 # They are either dead upstream, their Python 3 porting efforts are

Reply via email to