commit:     5d5012d3f39cb99a73760869b0c45be4414c8fad
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 21 08:54:34 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Apr 21 08:54:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d5012d3

x11-wm/subtle: treeclean

Closes: https://bugs.gentoo.org/802729
Closes: https://bugs.gentoo.org/862414
Closes: https://bugs.gentoo.org/876993
Closes: https://bugs.gentoo.org/880577
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 profiles/package.mask                    |  6 ---
 x11-wm/subtle/Manifest                   |  1 -
 x11-wm/subtle/metadata.xml               | 23 ---------
 x11-wm/subtle/subtle-0.11.3244-r2.ebuild | 83 --------------------------------
 4 files changed, 113 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6fce21f43c7d..ca36e0c283b1 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -417,12 +417,6 @@ dev-perl/PerlMol
 # Removal on 2023-04-18. Bug #683166, #814658, #834966, #898262.
 sci-libs/xdrfile
 
-# David Seifert <[email protected]> (2023-03-19)
-# Last release over 7.5 years ago, repo link broken and redirects to
-# homepage, build system is a mess, fails with modern C.
-# Removal on 2023-04-18. Bug #802729, #862414, #876993, #880577.
-x11-wm/subtle
-
 # Sam James <[email protected]> (2023-03-16)
 # Breaks building C++ consumers. See bug #901211 and bug #901035.
 # Please upgrade to glib-2.76.0-r1.

diff --git a/x11-wm/subtle/Manifest b/x11-wm/subtle/Manifest
deleted file mode 100644
index b7b2d1fa0695..000000000000
--- a/x11-wm/subtle/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST subtle-0.11.3244.tar.gz 190549 BLAKE2B 
bb4b78165741ef30c1e9e145d4f26c8903d597dfa210688246210bb6f04ffb8b62b9295ffdfd0829f1c36019287ff82677253daf87878562b7ba55a517fb00ce
 SHA512 
3d6edd5cb1b5dcd058caeddf3ead024c7cce39684baca8bac9709683ce3130a5c8433cbe046d28dc7420637dd855a2b6775638097f78a5e701bb85e505e8167c

diff --git a/x11-wm/subtle/metadata.xml b/x11-wm/subtle/metadata.xml
deleted file mode 100644
index 3b3a566e669a..000000000000
--- a/x11-wm/subtle/metadata.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <longdescription lang="en">
-               subtle is a manual tiling window manager with a rather uncommon 
approach
-               of tiling: Instead of relying on predefined layouts, subtle 
divides the
-               screen into a grid with customizeable slots (called gravities). 
For
-               better understanding, the default config uses a 3x3 grid and 
maps each
-               gravity to one key of the numpad. With those keys, windows can 
be moved
-               directly to the desired gravity - the same can be done with 
tagging
-               rules in the config.
-
-               Another unique concept is the strict tagging: Unlike other 
tiling window
-               managers, subtle doesn't allow weak tagging and always maps 
windows to
-               virtual desktops (called views) with matching tags, regardless 
of the
-               current active view.
-       </longdescription>
-       <use>
-               <flag name="xrandr">Enable support for the X RandR 
extension</flag>
-               <flag name="xtest">Enable support for the XTest extension</flag>
-       </use>
-</pkgmetadata>

diff --git a/x11-wm/subtle/subtle-0.11.3244-r2.ebuild 
b/x11-wm/subtle/subtle-0.11.3244-r2.ebuild
deleted file mode 100644
index 92eeb3132b59..000000000000
--- a/x11-wm/subtle/subtle-0.11.3244-r2.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby27 ruby30 ruby31"
-
-inherit ruby-ng toolchain-funcs
-
-DESCRIPTION="A manual tiling window manager"
-HOMEPAGE="https://subforge.org/projects/subtle/wiki";
-SRC_URI="https://dev.gentoo.org/~radhermit/dist/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc +xft xinerama xpm +xrandr +xtest"
-RESTRICT="!test? ( test )"
-
-RDEPEND="x11-libs/libX11
-       xft? ( x11-libs/libXft )
-       xinerama? ( x11-libs/libXinerama )
-       xpm? ( x11-libs/libXpm )
-       xtest? ( x11-libs/libXtst )
-       xrandr? ( x11-libs/libXrandr )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-ruby_add_rdepend "dev-ruby/minitar"
-ruby_add_bdepend "dev-ruby/rake doc? ( dev-ruby/rdoc )"
-
-all_ruby_unpack() {
-       if [[ ${PV} == "9999" ]]; then
-               mercurial_src_unpack
-       else
-               default
-       fi
-}
-
-each_ruby_configure() {
-       local myconf
-       use debug && myconf+=" debug=yes" || myconf+=" debug=no"
-       use xft && myconf+=" xft=yes" || myconf+=" xft=no"
-       use xinerama && myconf+=" xinerama=yes" || myconf+=" xinerama=no"
-       use xpm && myconf+=" xpm=yes" || myconf+=" xpm=no"
-       use xtest && myconf+=" xtest=yes" || myconf+=" xtest=no"
-       use xrandr && myconf+=" xrandr=yes" || myconf+=" xrandr=no"
-
-       ${RUBY} -S rake -v CC="$(tc-getCC)" destdir="${D}" ${myconf} config || 
die
-}
-
-each_ruby_compile() {
-       ${RUBY} -S rake -v build || die
-}
-
-all_ruby_compile() {
-       use doc && { rake rdoc || die ; }
-}
-
-each_ruby_install() {
-       ${RUBY} -S rake -v install || die
-}
-
-all_ruby_install() {
-       dodir /etc/X11/Sessions
-       cat <<-EOF > "${D}/etc/X11/Sessions/${PN}"
-               #!/bin/sh
-               exec /usr/bin/subtle
-       EOF
-       fperms a+x /etc/X11/Sessions/${PN}
-
-       insinto /usr/share/xsessions
-       doins data/${PN}.desktop
-
-       dodoc AUTHORS NEWS
-
-       use doc && dodoc -r html
-}
-
-pkg_postinst() {
-       elog "Note that surserver will currently not work since 
dev-ruby/datamapper"
-       elog "is not in the tree."
-}

Reply via email to