Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/freecell-solver/
Date: Fri, 08 Jan 2021 19:19:30
Message-Id: 1610133546.9e31d25dc8608165cd3f38ca1807024293dc2510.asturm@gentoo
1 commit: 9e31d25dc8608165cd3f38ca1807024293dc2510
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 8 16:13:33 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 19:19:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e31d25d
7
8 dev-games/freecell-solver: Drop 6.2.0 (r0)
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../freecell-solver/freecell-solver-6.2.0.ebuild | 52 ----------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/dev-games/freecell-solver/freecell-solver-6.2.0.ebuild b/dev-games/freecell-solver/freecell-solver-6.2.0.ebuild
17 deleted file mode 100644
18 index 5fb0e0560f8..00000000000
19 --- a/dev-games/freecell-solver/freecell-solver-6.2.0.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{6,7,8,9} )
28 -inherit cmake python-single-r1
29 -
30 -DESCRIPTION="C library for automatically solving Freecell and some other solitaire variants"
31 -HOMEPAGE="https://fc-solve.shlomifish.org/"
32 -SRC_URI="https://fc-solve.shlomifish.org/downloads/fc-solve/${P}.tar.xz"
33 -
34 -LICENSE="MIT"
35 -SLOT="0"
36 -KEYWORDS="amd64 arm64 x86"
37 -IUSE="tcmalloc"
38 -
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -RDEPEND="${PYTHON_DEPS}
42 - $(python_gen_cond_dep '
43 - dev-python/pysol_cards[${PYTHON_MULTI_USEDEP}]
44 - dev-python/random2[${PYTHON_MULTI_USEDEP}]
45 - dev-python/six[${PYTHON_MULTI_USEDEP}]
46 - ')
47 - tcmalloc? ( dev-util/google-perftools )
48 -"
49 -DEPEND="${RDEPEND}
50 - dev-perl/Moo
51 - dev-perl/Path-Tiny
52 - dev-perl/Template-Toolkit
53 -"
54 -
55 -DOCS=( README.html )
56 -
57 -PATCHES=( "${FILESDIR}/${PN}-5.22.1-no-docs.patch" )
58 -
59 -src_prepare() {
60 - python_fix_shebang board_gen
61 - cmake_src_prepare
62 -}
63 -
64 -src_configure() {
65 - local mycmakeargs=(
66 - -DBUILD_STATIC_LIBRARY=OFF
67 - -DFCS_BUILD_DOCS=OFF
68 - -DFCS_WITH_TEST_SUITE=OFF # requires unpackaged dependencies
69 - -DFCS_AVOID_TCMALLOC=$(usex !tcmalloc)
70 - )
71 -
72 - cmake_src_configure
73 -}