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 AEF82138334 for ; Sat, 9 Jun 2018 18:25:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A183DE088A; Sat, 9 Jun 2018 18:25:00 +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 74C3AE088A for ; Sat, 9 Jun 2018 18:25:00 +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 24ACB335C75 for ; Sat, 9 Jun 2018 18:24:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06E67296 for ; Sat, 9 Jun 2018 18:24:57 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1528568689.316dae6053099f6a4328f8f7f2b994776f7f1c99.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/minetest_game/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-action/minetest_game/Manifest games-action/minetest_game/minetest_game-0.4.17.ebuild X-VCS-Directories: games-action/minetest_game/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 316dae6053099f6a4328f8f7f2b994776f7f1c99 X-VCS-Branch: master Date: Sat, 9 Jun 2018 18:24:57 +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: 49d6a1bd-d791-46f8-9ac8-f9a2ef68a8f9 X-Archives-Hash: 9b69f1930b31b60d4e474d450d8e72de commit: 316dae6053099f6a4328f8f7f2b994776f7f1c99 Author: William Breathitt Gray gmail com> AuthorDate: Thu Jun 7 21:08:29 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Jun 9 18:24:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=316dae60 games-action/minetest_game: version bump to 0.4.17 Closes: https://bugs.gentoo.org/657534 Closes: https://github.com/gentoo/gentoo/pull/8750 games-action/minetest_game/Manifest | 1 + .../minetest_game/minetest_game-0.4.17.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/games-action/minetest_game/Manifest b/games-action/minetest_game/Manifest index da0ebfa8dc8..3074cfe4959 100644 --- a/games-action/minetest_game/Manifest +++ b/games-action/minetest_game/Manifest @@ -1 +1,2 @@ DIST minetest_game-0.4.16.tar.gz 1356062 BLAKE2B 5a5481a56484b486848c762f53000fad3359076938767726d1c629ae3ce5c273306adda38672333137df314f83eb67c58633a58a82ba9c556c8d0f8df03b0f8a SHA512 5823be50b385327948be1d609ffd66c9c24c6eb466eba4366c67dc3287c26066c74d25f17c4a6cb27fba34a82c093b8da44b3cb3fc62c45ad9d996bde15112d1 +DIST minetest_game-0.4.17.tar.gz 1356784 BLAKE2B 4cbae279edc24c7ebe8460fd3d805d3ab0f6deaf5ab303818b025b454fee8e67097a980e22f1eff39306b1ef545eae3becbbc6cfcbcad34af96b01d46e865df0 SHA512 3ed6c8419a11fe38e311b319c2af8b1f2793e40cf4bcd96b3d61748ec56a930278bace992b4142a394279c0c0308d5783a0121a9224126da9df7bdb7536b9294 diff --git a/games-action/minetest_game/minetest_game-0.4.17.ebuild b/games-action/minetest_game/minetest_game-0.4.17.ebuild new file mode 100644 index 00000000000..cba98c5a406 --- /dev/null +++ b/games-action/minetest_game/minetest_game-0.4.17.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit vcs-snapshot + +DESCRIPTION="The main game for the Minetest game engine" +HOMEPAGE="https://github.com/minetest/minetest_game" +SRC_URI="https://github.com/minetest/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2 CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=games-action/minetest-${PV}" + +src_install() { + insinto /usr/share/minetest/games/${PN} + doins -r mods menu + doins game.conf minetest.conf + + dodoc README.txt game_api.txt +}