From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DF24138334 for ; Wed, 4 Jul 2018 09:10:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70360E09A1; Wed, 4 Jul 2018 09:10:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4049BE09A1 for ; Wed, 4 Jul 2018 09:10:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7376335CA5 for ; Wed, 4 Jul 2018 09:10:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DACB335F for ; Wed, 4 Jul 2018 09:10:29 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1530695424.c0bfe8174e3f9281b3897ca438b137944cba6a47.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/nml/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/nml/Manifest games-util/nml/nml-0.4.5.ebuild X-VCS-Directories: games-util/nml/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c0bfe8174e3f9281b3897ca438b137944cba6a47 X-VCS-Branch: master Date: Wed, 4 Jul 2018 09:10:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31b617f3-1a15-4ea5-9604-ce29f592e838 X-Archives-Hash: f66852be274853d0f384b20aa9594f83 commit: c0bfe8174e3f9281b3897ca438b137944cba6a47 Author: Lars Wendler gentoo org> AuthorDate: Wed Jul 4 09:10:24 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jul 4 09:10:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0bfe817 games-util/nml: Bump to version 0.4.5 Package-Manager: Portage-2.3.41, Repoman-2.3.9 games-util/nml/Manifest | 1 + games-util/nml/nml-0.4.5.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/games-util/nml/Manifest b/games-util/nml/Manifest index 86d71231e19..32a52b50b61 100644 --- a/games-util/nml/Manifest +++ b/games-util/nml/Manifest @@ -1 +1,2 @@ DIST nml-0.4.4.tar.gz 377998 BLAKE2B a65df2c371c1b1dda2469a968372f21f9f27e9739c8d8a9a0f582c126169921ee3ffc9745f6ef4ac21aebdeea35fd26385d3149e84d50381c4796b71b378571f SHA512 fd7b8d7abfc8b5ea694eedf00bbc4069a82de942178a58ec05e9d3efe7c8663103ffb6b98f7614ce165eb7cba42cb4c7589f77fb67dd95eb6293f62b3179c7b0 +DIST nml-0.4.5.tar.gz 378578 BLAKE2B 1283cdcabd4cbaf12dda926b89c88a3942e9e4469879812abe372facd2c41ff20af0df792bbdadf71d9d3ad8d72e98e293fd903c880e77d3e4ee8a1b73e36ca9 SHA512 64b2f46a1c2e37fce8f51231094e30334f368b0db39c6a3977a144a798d8034d1abbe7c14af3921eb81f4b7caa193e7e53ccb9e27acd113e0407926b109ca952 diff --git a/games-util/nml/nml-0.4.5.ebuild b/games-util/nml/nml-0.4.5.ebuild new file mode 100644 index 00000000000..ce56b6ea553 --- /dev/null +++ b/games-util/nml/nml-0.4.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="Compiler of NML files into grf/nfo files" +HOMEPAGE="https://dev.openttdcoop.org/projects/nml" +SRC_URI="http://bundles.openttdcoop.org/nml/releases/${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} + dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=( docs/{changelog,readme}.txt ) +PATCHES=( "${FILESDIR}"/${PN}-0.4.4-pillow3.patch ) + +src_install() { + distutils-r1_src_install + doman docs/nmlc.1 +}