public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/, games-board/spider/
@ 2020-11-03  8:50 Michał Górny
  0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2020-11-03  8:50 UTC (permalink / raw
  To: gentoo-commits

commit:     d493250227960991570e7453f808e4c8ef6b1146
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  3 08:48:56 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov  3 08:49:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4932502

games-board/spider: Remove last-rited pkg

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

 games-board/spider/Manifest                |  2 -
 games-board/spider/metadata.xml            | 11 ----
 games-board/spider/spider-1.2_p4-r2.ebuild | 83 ------------------------------
 profiles/package.mask                      |  5 --
 4 files changed, 101 deletions(-)

diff --git a/games-board/spider/Manifest b/games-board/spider/Manifest
deleted file mode 100644
index 6d6b31cc10b..00000000000
--- a/games-board/spider/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST spider_1.2-4.diff.gz 2882 BLAKE2B 3016e4d6a7f4aa6e4f47e7abb78b12d70d5cee400a4e61b514e8fbbfdb7ad8484f84c1c1006447f3c6ab8a5897dfc4d4af5304eeaea716203c5c5440f9084b3b SHA512 e1e6eb4d5b14de7c32e1537877a3d26470c032bea567aa679c8a3744d62ab6b12d81bf05120679a273d98b6fd976c32d24ce9c54b720d006c51464f7ff6d5e75
-DIST spider_1.2.orig.tar.gz 168209 BLAKE2B 3a1163099ba9ce4faa9bc7c3424a2a2105c6fe001487822898dba7598dc5dc8d43cab2a3d7685fb71b1d19ff1b667397a41a3ba03fca4abf5d700308b19dc202 SHA512 a1d01f15ca37c8abdcc9f7c3dac925b1726f9b58ce51eb4096a9248abe0a55086ccdd5cc5ec358c2ee609ff089978676a3e3c669062a522ed7f1d4ea1ce33ab0

diff --git a/games-board/spider/metadata.xml b/games-board/spider/metadata.xml
deleted file mode 100644
index 9f9b26e3cb6..00000000000
--- a/games-board/spider/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>games@gentoo.org</email>
-    <name>Gentoo Games Project</name>
-  </maintainer>
-  <use>
-    <flag name="athena">Enable athena widgets</flag>
-  </use>
-</pkgmetadata>

diff --git a/games-board/spider/spider-1.2_p4-r2.ebuild b/games-board/spider/spider-1.2_p4-r2.ebuild
deleted file mode 100644
index e6d74185279..00000000000
--- a/games-board/spider/spider-1.2_p4-r2.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit desktop epatch gnome2-utils
-
-MY_P="${P%%_*}"
-MY_P="${MY_P/-/_}"
-DEB_V="${P##*_p}"
-
-DESCRIPTION="Spider Solitaire"
-HOMEPAGE="https://packages.debian.org/stable/games/spider"
-SRC_URI="mirror://debian/pool/main/s/spider/${MY_P}.orig.tar.gz
-	mirror://debian/pool/main/s/spider/${MY_P}-${DEB_V}.diff.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="athena"
-
-RDEPEND="
-	x11-libs/libXext
-	athena? ( x11-libs/libXaw )
-	x11-libs/libXmu
-	x11-libs/libXt
-"
-DEPEND="${RDEPEND}
-	x11-base/xorg-proto
-	x11-misc/imake
-"
-
-S="${WORKDIR}/${MY_P/_/-}.orig"
-
-src_prepare() {
-	default
-	epatch "${WORKDIR}"/${MY_P}-${DEB_V}.diff
-	sed -i \
-		-e '/MKDIRHIER/s:/X11::' \
-		*Imakefile \
-		|| die "sed failed"
-	rm Makefile
-}
-
-src_configure() {
-	xmkmf \
-		-DSmallCards=NO \
-		-DRoundCards \
-		$(use athena && echo "-DCompileXAW=YES" || echo "-DCompileXlibOnly=YES") \
-		|| die "imake failed"
-	sed -i \
-		-e '/CC = /d' \
-		-e "s/CDEBUGFLAGS = .*$/CDEBUGFLAGS = ${CFLAGS}/" \
-		-e '/LDOPTIONS = /s/$/$(LDFLAGS)/' \
-		Makefile \
-		|| die "sed failed"
-}
-
-src_install() {
-	emake \
-		DESTDIR="${D}" \
-		BINDIR="/usr/bin" \
-		MANSUFFIX="6" \
-		MANDIR="/usr/share/man/man6" \
-		HELPDIR="/usr/share/doc/${PF}" \
-		install install.doc install.man
-
-	einstalldocs
-	newicon icons/Spider.png ${PN}.png
-	newicon -s 32 icons/Spider32x32.png ${PN}.png
-	make_desktop_entry spider Spider
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 479713a9374..82f2388a70e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -272,11 +272,6 @@ sys-auth/pam_passwdqc
 dev-dotnet/mono-addins
 media-gfx/pinta
 
-# Alexey Sokolov <alexey+gentoo@asokolov.org> (2020-10-03)
-# Package with no available HOMEPAGE, SRC_URI and multiple compilation issues.
-# Bug #741468, removal in 30 days.
-games-board/spider
-
 # Michał Górny <mgorny@gentoo.org> (2020-09-25)
 # PyPy3.7 alpha.  Known to break a few packages.  Masked until it
 # matures more.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-11-03  8:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-03  8:50 [gentoo-commits] repo/gentoo:master commit in: profiles/, games-board/spider/ Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox