commit:     cbbf434130c144f1d9d74efde886de8dccea21b9
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 31 18:16:38 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Dec 31 18:30:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbf4341

x11-misc/unclutter: treeclean

Closes: https://bugs.gentoo.org/880845
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 profiles/package.mask                              |  6 ----
 x11-misc/unclutter/Manifest                        |  1 -
 .../unclutter/files/unclutter-8-FocusOut.patch     | 17 -----------
 x11-misc/unclutter/files/unclutter-8-include.patch | 10 -------
 x11-misc/unclutter/metadata.xml                    |  8 -----
 x11-misc/unclutter/unclutter-8-r4.ebuild           | 35 ----------------------
 6 files changed, 77 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 8056474cd3e2..6f36d11cec36 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -1099,12 +1099,6 @@ dev-python/slimit
 # Removal on 2022-12-27.  Bug #821118.
 games-util/xgamer
 
-# Michał Górny <[email protected]> (2022-11-27)
-# Unmaintained, ancient package.  x11-misc/unclutter-xfixes is
-# a superior replacement.
-# Removal on 2022-12-27.  Bug #880845.
-x11-misc/unclutter
-
 # Matt Turner <[email protected]> (2022-11-16)
 # Packages or their dependencies have not been ported to libsoup:3.0, while
 # other non-slotted dependencies have been.

diff --git a/x11-misc/unclutter/Manifest b/x11-misc/unclutter/Manifest
deleted file mode 100644
index 197c6f0ac6cd..000000000000
--- a/x11-misc/unclutter/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST unclutter-8.tar.Z 12344 BLAKE2B 
10090ec2f3772c17d00cbcb27f416fb528b75641b7d57eeb36ab7e19af2510ebc5901a0394c0ee590a38afb8bf64d4b2b2ed069b0b1a44edcb9b37701f89c9b5
 SHA512 
9a64e6eceae685cf34b1ea85818735f8f85514ba1eea262476653886d74e469cfd6b9a39edbd098b138a5c89e6b97b42cf251bee59272c76cbeba190979744b4

diff --git a/x11-misc/unclutter/files/unclutter-8-FocusOut.patch 
b/x11-misc/unclutter/files/unclutter-8-FocusOut.patch
deleted file mode 100644
index d26ef8e6a652..000000000000
--- a/x11-misc/unclutter/files/unclutter-8-FocusOut.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Fixes blinking pointer and 100% CPU usage with GTK applications
-Author: Tao Nelson <[email protected]>
-Debian-Bug: 266118
-
---- a/unclutter.c
-+++ b/unclutter.c
-@@ -399,7 +399,9 @@
-               do{
-                   XNextEvent(display,&event);
-               }while(event.type!=LeaveNotify &&
--                     event.type!=FocusOut &&
-+                  /* Some gtk applications seem not to like this:
-+                   * event.type!=FocusOut && 
-+                   */
-                      event.type!=UnmapNotify &&
-                      event.type!=ConfigureNotify &&
-                      event.type!=CirculateNotify &&

diff --git a/x11-misc/unclutter/files/unclutter-8-include.patch 
b/x11-misc/unclutter/files/unclutter-8-include.patch
deleted file mode 100644
index 688fa129c561..000000000000
--- a/x11-misc/unclutter/files/unclutter-8-include.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/unclutter.c
-+++ b/unclutter.c
-@@ -24,6 +24,7 @@
- #include <X11/Xutil.h>
- #include <X11/Xproto.h>
- #include <stdio.h>
-+#include <stdlib.h>
- #include "vroot.h"
- 
- char *progname;

diff --git a/x11-misc/unclutter/metadata.xml b/x11-misc/unclutter/metadata.xml
deleted file mode 100644
index 3ab9b4a739d3..000000000000
--- a/x11-misc/unclutter/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<maintainer type="project">
-       <email>[email protected]</email>
-       <name>Gentoo Desktop Miscellaneous Project</name>
-</maintainer>
-</pkgmetadata>

diff --git a/x11-misc/unclutter/unclutter-8-r4.ebuild 
b/x11-misc/unclutter/unclutter-8-r4.ebuild
deleted file mode 100644
index eb64cdd7a8d4..000000000000
--- a/x11-misc/unclutter/unclutter-8-r4.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Hides mouse pointer while not in use"
-HOMEPAGE="http://www.ibiblio.org/pub/X11/contrib/utilities/unclutter-8.README";
-SRC_URI="ftp://ftp.x.org/contrib/utilities/${P}.tar.Z";
-
-SLOT="0"
-LICENSE="public-domain"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ppc64 ~sparc x86"
-
-RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}
-       x11-base/xorg-proto"
-
-S=${WORKDIR}/${PN}
-
-PATCHES=(
-       "${FILESDIR}"/${P}-include.patch
-       "${FILESDIR}"/${P}-FocusOut.patch
-)
-
-src_compile() {
-       emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" LDOPTIONS="${LDFLAGS}"
-}
-
-src_install() {
-       dobin unclutter
-       newman unclutter.man unclutter.1x
-       einstalldocs
-}

Reply via email to