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:15:08
Message-Id: 1597850075.3ecc289ab2ee1552247fe2b9d8f12d6476569398.conikost@gentoo
1 commit: 3ecc289ab2ee1552247fe2b9d8f12d6476569398
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 19 15:13:42 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 19 15:14:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ecc289a
7
8 games-util/nml: bump to version 0.5.2
9
10 Closes: https://bugs.gentoo.org/737952
11 Package-Manager: Portage-3.0.1, Repoman-2.3.23
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 games-util/nml/Manifest | 1 +
15 games-util/nml/nml-0.5.2.ebuild | 32 ++++++++++++++++++++++++++++++++
16 2 files changed, 33 insertions(+)
17
18 diff --git a/games-util/nml/Manifest b/games-util/nml/Manifest
19 index ff784d437ac..5f3cbd0f9ad 100644
20 --- a/games-util/nml/Manifest
21 +++ b/games-util/nml/Manifest
22 @@ -1 +1,2 @@
23 DIST nml-0.4.5.tar.gz 378578 BLAKE2B 1283cdcabd4cbaf12dda926b89c88a3942e9e4469879812abe372facd2c41ff20af0df792bbdadf71d9d3ad8d72e98e293fd903c880e77d3e4ee8a1b73e36ca9 SHA512 64b2f46a1c2e37fce8f51231094e30334f368b0db39c6a3977a144a798d8034d1abbe7c14af3921eb81f4b7caa193e7e53ccb9e27acd113e0407926b109ca952
24 +DIST nml-0.5.2.tar.gz 531460 BLAKE2B 02f4e4a190bca0e46380c9075b769ea1925f3eaf655a2f09b8367890d4b9d0494dda9246f144bb735ef27906fcf22a198530fecc5c92e77f1b72f8a73832625e SHA512 edcada26ad011533065f3096b708b343ed6af742968606d187f01298e09f945904e2eba96fc8b37d88e243e7fd4bc6efdc8be614acbec199b06778ee32b5fc3b
25
26 diff --git a/games-util/nml/nml-0.5.2.ebuild b/games-util/nml/nml-0.5.2.ebuild
27 new file mode 100644
28 index 00000000000..e7fcb7a0ff9
29 --- /dev/null
30 +++ b/games-util/nml/nml-0.5.2.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DISTUTILS_USE_SETUPTOOLS="rdepend"
38 +PYTHON_COMPAT=( python3_{6,7,8} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Compiler of NML files into GRF/NFO files"
43 +HOMEPAGE="https://github.com/OpenTTD/nml"
44 +SRC_URI="https://github.com/OpenTTD/${PN}/releases/download/${PV}/${P}.tar.gz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~x86"
49 +
50 +RDEPEND="
51 + dev-python/pillow[zlib,${PYTHON_USEDEP}]
52 + dev-python/ply[${PYTHON_USEDEP}]
53 +"
54 +
55 +DEPEND="${RDEPEND}"
56 +
57 +DOCS=( "README.md" "docs/changelog.txt" )
58 +
59 +src_install() {
60 + distutils-r1_src_install
61 +
62 + doman docs/nmlc.1
63 +}