Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opengfx/
Date: Tue, 28 Dec 2021 17:10:34
Message-Id: 1640710808.912ffa061af05eb0f0a90b8fa690f018c917ce69.ionen@gentoo
1 commit: 912ffa061af05eb0f0a90b8fa690f018c917ce69
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 28 15:12:26 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 28 17:00:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912ffa06
7
8 games-misc/opengfx: drop 0.6.1
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-misc/opengfx/Manifest | 1 -
13 games-misc/opengfx/opengfx-0.6.1.ebuild | 64 ---------------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/games-misc/opengfx/Manifest b/games-misc/opengfx/Manifest
17 index ae42e141d9fa..6ddd407d5c9e 100644
18 --- a/games-misc/opengfx/Manifest
19 +++ b/games-misc/opengfx/Manifest
20 @@ -1,2 +1 @@
21 -DIST opengfx-0.6.1-source.tar.xz 9690748 BLAKE2B faa3ca805166a1716f8a235048506620bbb98a4265c72571b3a33e88f3375caff75b5576b64ef451e99dea734145f3be748a9109c7003d1ad9043a90cdd34dad SHA512 4ba3528dbdddea1baa2875f917f959034659c8205fbda2b2a67c5fe80161235d15c25dab323e6da8cba2711b7b4f0c9a96d4187fd2de61ae9a2ff9fd077b063b
22 DIST opengfx-7.1-source.tar.xz 9828168 BLAKE2B a1d8305744b76924400cad8503af1a20991551323adea6d0d60d9f6d5ac6311e52cb8f028eb614bbda41106823ab9b912f1fb8af02953758a2eb2912066a38e9 SHA512 55079babcd78d4a36279cb7610b6800308aca8409ed3b9fa33cd4993b0c1f988d7afe270b17930b97609c4fdf8cf4e362e17c11bd85d2ef136d042256c98483f
23
24 diff --git a/games-misc/opengfx/opengfx-0.6.1.ebuild b/games-misc/opengfx/opengfx-0.6.1.ebuild
25 deleted file mode 100644
26 index 95f257d71459..000000000000
27 --- a/games-misc/opengfx/opengfx-0.6.1.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit python-any-r1
38 -
39 -DESCRIPTION="OpenGFX data files for OpenTTD"
40 -HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenGFX https://github.com/OpenTTD/OpenGFX"
41 -SRC_URI="https://cdn.openttd.org/${PN}-releases/${PV}/${P}-source.tar.xz"
42 -S="${WORKDIR}/${P}-source"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 -
48 -DEPEND="
49 - games-util/grfcodec
50 - games-util/nml
51 - ${PYTHON_DEPS}
52 -"
53 -
54 -DOCS=( "README.md" "changelog.txt" )
55 -
56 -src_prepare() {
57 - default
58 -
59 - python-any-r1_pkg_setup
60 -}
61 -
62 -src_compile() {
63 - local myemakeargs=(
64 - GIMP=""
65 - PYTHON="${EPYTHON}"
66 - )
67 -
68 - emake "${myemakeargs[@]}" all
69 -}
70 -
71 -src_test() {
72 - local myemakeargs=(
73 - GIMP=""
74 - PYTHON="${EPYTHON}"
75 - )
76 -
77 - emake "${myemakeargs[@]}" check
78 -}
79 -
80 -src_install() {
81 - local myemakeargs=(
82 - DO_NOT_INSTALL_README="true"
83 - DO_NOT_INSTALL_LICENSE="true"
84 - DO_NOT_INSTALL_CHANGELOG="true"
85 - GIMP=""
86 - INSTALL_DIR="${ED}/usr/share/openttd/baseset/"
87 - PYTHON="${EPYTHON}"
88 - )
89 -
90 - emake "${myemakeargs[@]}" install
91 -
92 - einstalldocs
93 -}