Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opengfx/
Date: Mon, 28 Jun 2021 22:13:38
Message-Id: 1624918370.972fac35767d912242691d1de659454f84b74ce9.chewi@gentoo
1 commit: 972fac35767d912242691d1de659454f84b74ce9
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Thu May 20 21:22:01 2021 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 28 22:12:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=972fac35
7
8 games-misc/opengfx: remove old version
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 games-misc/opengfx/Manifest | 1 -
15 games-misc/opengfx/opengfx-0.6.0.ebuild | 65 ---------------------------------
16 2 files changed, 66 deletions(-)
17
18 diff --git a/games-misc/opengfx/Manifest b/games-misc/opengfx/Manifest
19 index 7015fc40a86..1e6e73aa566 100644
20 --- a/games-misc/opengfx/Manifest
21 +++ b/games-misc/opengfx/Manifest
22 @@ -1,2 +1 @@
23 -DIST opengfx-0.6.0-source.tar.xz 9693320 BLAKE2B cb1d25fb038b3b481c0abe206426b5843c2f7b81b7cf81a525ebf8b217359c5ea50c0e1ee1ed37d5093a0186231a1e1b9134624a8b69362f6733c6c13d5e1500 SHA512 275b9040e6938bdd5bee2d39361e0b78f447a8e497cc8ff018c7874dc16a357870f8b560999ebb2f2f0b275644c7c9ce85c964875f5a798e2ec45e62a8bc768f
24 DIST opengfx-0.6.1-source.tar.xz 9690748 BLAKE2B faa3ca805166a1716f8a235048506620bbb98a4265c72571b3a33e88f3375caff75b5576b64ef451e99dea734145f3be748a9109c7003d1ad9043a90cdd34dad SHA512 4ba3528dbdddea1baa2875f917f959034659c8205fbda2b2a67c5fe80161235d15c25dab323e6da8cba2711b7b4f0c9a96d4187fd2de61ae9a2ff9fd077b063b
25
26 diff --git a/games-misc/opengfx/opengfx-0.6.0.ebuild b/games-misc/opengfx/opengfx-0.6.0.ebuild
27 deleted file mode 100644
28 index e2ab2499de5..00000000000
29 --- a/games-misc/opengfx/opengfx-0.6.0.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -MY_PN="OpenGFX"
38 -PYTHON_COMPAT=( python3_{7..9} )
39 -
40 -inherit python-any-r1
41 -
42 -DESCRIPTION="OpenGFX data files for OpenTTD"
43 -HOMEPAGE="http://bundles.openttdcoop.org/opengfx/"
44 -SRC_URI="https://cdn.openttd.org/${PN}-releases/${PV}/${P}-source.tar.xz"
45 -S="${WORKDIR}/${P}-source"
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
50 -
51 -DEPEND="
52 - games-util/grfcodec
53 - games-util/nml
54 - ${PYTHON_DEPS}
55 -"
56 -
57 -DOCS=( "README.md" "changelog.txt" )
58 -
59 -src_prepare() {
60 - default
61 -
62 - python-any-r1_pkg_setup
63 -}
64 -
65 -src_compile() {
66 - myemakeargs=(
67 - GIMP=""
68 - PYHTON="${EPYTHON}"
69 - )
70 -
71 - emake "${myemakeargs[@]}" all
72 -}
73 -
74 -src_test() {
75 - myemakeargs=(
76 - GIMP=""
77 - PYHTON="${EPYTHON}"
78 - )
79 -
80 - emake "${myemakeargs[@]}" check
81 -}
82 -
83 -src_install() {
84 - myemakeargs=(
85 - DO_NOT_INSTALL_README="true"
86 - DO_NOT_INSTALL_LICENSE="true"
87 - DO_NOT_INSTALL_CHANGELOG="true"
88 - GIMP=""
89 - INSTALL_DIR="${ED}/usr/share/games/openttd/data/"
90 - PYHTON="${EPYTHON}"
91 - )
92 -
93 - emake "${myemakeargs[@]}" install
94 -
95 - einstalldocs
96 -}