diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-08-19 17:13:42 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-08-19 17:14:35 +0200 |
commit | 3ecc289ab2ee1552247fe2b9d8f12d6476569398 (patch) | |
tree | 92c127b1cfb369b8072847961d49ccece4fb2b1f /games-util/nml | |
parent | games-util/nml: fix python3.8 support (diff) | |
download | gentoo-3ecc289ab2ee1552247fe2b9d8f12d6476569398.tar.gz gentoo-3ecc289ab2ee1552247fe2b9d8f12d6476569398.tar.bz2 gentoo-3ecc289ab2ee1552247fe2b9d8f12d6476569398.zip |
games-util/nml: bump to version 0.5.2
Closes: https://bugs.gentoo.org/737952
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-util/nml')
-rw-r--r-- | games-util/nml/Manifest | 1 | ||||
-rw-r--r-- | games-util/nml/nml-0.5.2.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/games-util/nml/Manifest b/games-util/nml/Manifest index ff784d437ac0..5f3cbd0f9ada 100644 --- a/games-util/nml/Manifest +++ b/games-util/nml/Manifest @@ -1 +1,2 @@ DIST nml-0.4.5.tar.gz 378578 BLAKE2B 1283cdcabd4cbaf12dda926b89c88a3942e9e4469879812abe372facd2c41ff20af0df792bbdadf71d9d3ad8d72e98e293fd903c880e77d3e4ee8a1b73e36ca9 SHA512 64b2f46a1c2e37fce8f51231094e30334f368b0db39c6a3977a144a798d8034d1abbe7c14af3921eb81f4b7caa193e7e53ccb9e27acd113e0407926b109ca952 +DIST nml-0.5.2.tar.gz 531460 BLAKE2B 02f4e4a190bca0e46380c9075b769ea1925f3eaf655a2f09b8367890d4b9d0494dda9246f144bb735ef27906fcf22a198530fecc5c92e77f1b72f8a73832625e SHA512 edcada26ad011533065f3096b708b343ed6af742968606d187f01298e09f945904e2eba96fc8b37d88e243e7fd4bc6efdc8be614acbec199b06778ee32b5fc3b diff --git a/games-util/nml/nml-0.5.2.ebuild b/games-util/nml/nml-0.5.2.ebuild new file mode 100644 index 000000000000..e7fcb7a0ff99 --- /dev/null +++ b/games-util/nml/nml-0.5.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS="rdepend" +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Compiler of NML files into GRF/NFO files" +HOMEPAGE="https://github.com/OpenTTD/nml" +SRC_URI="https://github.com/OpenTTD/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" + +RDEPEND=" + dev-python/pillow[zlib,${PYTHON_USEDEP}] + dev-python/ply[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" + +DOCS=( "README.md" "docs/changelog.txt" ) + +src_install() { + distutils-r1_src_install + + doman docs/nmlc.1 +} |