From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1643631-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EDE7615817D for <garchives@archives.gentoo.org>; Sun, 16 Jun 2024 09:37:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E9712BC05E; Sun, 16 Jun 2024 09:37:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA1152BC05E for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jun 2024 09:37:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3CFE833B864 for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jun 2024 09:37:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A35871D1C for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jun 2024 09:37:04 +0000 (UTC) From: "Pacho Ramos" <pacho@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" <pacho@gentoo.org> Message-ID: <1718530496.38f946f030b036ad02377f006aac12e8fbb1f9f7.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/openyahtzee/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild X-VCS-Directories: games-board/openyahtzee/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 38f946f030b036ad02377f006aac12e8fbb1f9f7 X-VCS-Branch: master Date: Sun, 16 Jun 2024 09:37:04 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a05f9237-3d43-42eb-96d1-af5c8f32e882 X-Archives-Hash: bd8c10558d390094f991ebba8fce20bc commit: 38f946f030b036ad02377f006aac12e8fbb1f9f7 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org> AuthorDate: Sun Jun 16 09:34:56 2024 +0000 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org> CommitDate: Sun Jun 16 09:34:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f946f0 games-board/openyahtzee: drop 1.9.3-r1 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org> .../openyahtzee/openyahtzee-1.9.3-r1.ebuild | 40 ---------------------- 1 file changed, 40 deletions(-) diff --git a/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild b/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild deleted file mode 100644 index d6c0225fb583..000000000000 --- a/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit flag-o-matic toolchain-funcs wxwidgets - -DESCRIPTION="Full-featured wxWidgets version of the classic dice game Yahtzee" -HOMEPAGE="https://openyahtzee.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/openyahtzee/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X]" -DEPEND=" - ${RDEPEND} - dev-libs/boost -" - -pkg_pretend() { - local ver=4.6 - local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' and nullptr support." - - if tc-is-gcc ; then - if ver_test ${ver} -gt $(gcc-version); then - die ${msg} - fi - else - ewarn "Ensure your compiler has C++11 support, otherwise build will fail." - fi -} - -src_configure() { - append-cxxflags -std=c++11 - setup-wxwidgets - econf --datadir=/usr/share -}