Gentoo Archives: gentoo-commits

From: "Azamat H. Hackimov" <winterheart@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: games-engines/fifengine/
Date: Mon, 12 Jul 2021 20:47:20
Message-Id: 1626122759.212a195a158cc7ce9fb47fdf8f5730db7422e6e0.winterheart@gentoo
1 commit: 212a195a158cc7ce9fb47fdf8f5730db7422e6e0
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 12 20:06:11 2021 +0000
4 Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
5 CommitDate: Mon Jul 12 20:45:59 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=212a195a
7
8 games-engines/fifengine: migrate to cmake.eclass
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12
13 games-engines/fifengine/fifengine-0.4.2.ebuild | 12 ++++--------
14 1 file changed, 4 insertions(+), 8 deletions(-)
15
16 diff --git a/games-engines/fifengine/fifengine-0.4.2.ebuild b/games-engines/fifengine/fifengine-0.4.2.ebuild
17 index 8a8a6a8..81c42f3 100644
18 --- a/games-engines/fifengine/fifengine-0.4.2.ebuild
19 +++ b/games-engines/fifengine/fifengine-0.4.2.ebuild
20 @@ -1,11 +1,11 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 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} pypy3 )
28 +PYTHON_COMPAT=( python3_{7..9} pypy3 )
29
30 -inherit eutils python-single-r1 cmake-utils
31 +inherit eutils python-single-r1 cmake
32
33 DESCRIPTION="Flexible Isometric Free Engine, 2D"
34 HOMEPAGE="http://fifengine.de"
35 @@ -66,9 +66,5 @@ src_configure() {
36 -Dbuild-library=ON
37 )
38
39 - cmake-utils_src_configure
40 -}
41 -
42 -src_install() {
43 - cmake-utils_src_install
44 + cmake_src_configure
45 }