Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/nml/
Date: Wed, 19 Aug 2020 15:21:24
Message-Id: 1597850372.59a374c3bd469e97ad7dc000b0bc2ceae53002e7.conikost@gentoo
1 commit: 59a374c3bd469e97ad7dc000b0bc2ceae53002e7
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 15:19:32 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 15:19:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a374c3
7
8 games-util/nml: revbump due runtime change
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 games-util/nml/nml-0.4.5-r3.ebuild | 41 ++++++++++++++++++++++++++++++++++++++
14 1 file changed, 41 insertions(+)
15
16 diff --git a/games-util/nml/nml-0.4.5-r3.ebuild b/games-util/nml/nml-0.4.5-r3.ebuild
17 new file mode 100644
18 index 00000000000..3588cfc60e8
19 --- /dev/null
20 +++ b/games-util/nml/nml-0.4.5-r3.ebuild
21 @@ -0,0 +1,41 @@
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} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Compiler of NML files into GRF/NFO files"
32 +HOMEPAGE="https://dev.openttdcoop.org/projects/nml"
33 +SRC_URI="https://bundles.openttdcoop.org/nml/releases/${PV}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2+"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~arm ~x86"
38 +
39 +RDEPEND="
40 + dev-python/pillow[zlib,${PYTHON_USEDEP}]
41 + dev-python/ply[${PYTHON_USEDEP}]
42 +"
43 +
44 +DEPEND="
45 + ${RDEPEND}
46 + dev-python/setuptools[${PYTHON_USEDEP}]
47 +"
48 +
49 +DOCS=( docs/{changelog,readme}.txt )
50 +
51 +PATCHES=(
52 + "${FILESDIR}"/${PN}-0.4.4-pillow3.patch
53 + "${FILESDIR}"/${PN}-0.4.5-pillow6.patch
54 + "${FILESDIR}"/${PN}-0.4.5-pillow7.patch
55 + "${FILESDIR}"/${PN}-0.4.5-python38.patch
56 +)
57 +
58 +src_install() {
59 + distutils-r1_src_install
60 +
61 + doman docs/nmlc.1
62 +}