Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/minetest_game/
Date: Mon, 29 Apr 2019 14:06:12
Message-Id: 1556546590.d15578089c8ab7fc0828824ed8c19e127727ab1e.mgorny@gentoo
1 commit: d15578089c8ab7fc0828824ed8c19e127727ab1e
2 Author: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
3 AuthorDate: Wed Apr 10 07:35:56 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 29 14:03:10 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1557808
7
8 games-action/minetest_game: version bump to 5.0.1
9
10 Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/11639
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 games-action/minetest_game/Manifest | 1 +
15 .../minetest_game/minetest_game-5.0.1.ebuild | 23 ++++++++++++++++++++++
16 2 files changed, 24 insertions(+)
17
18 diff --git a/games-action/minetest_game/Manifest b/games-action/minetest_game/Manifest
19 index 3074cfe4959..b4c8cb94de4 100644
20 --- a/games-action/minetest_game/Manifest
21 +++ b/games-action/minetest_game/Manifest
22 @@ -1,2 +1,3 @@
23 DIST minetest_game-0.4.16.tar.gz 1356062 BLAKE2B 5a5481a56484b486848c762f53000fad3359076938767726d1c629ae3ce5c273306adda38672333137df314f83eb67c58633a58a82ba9c556c8d0f8df03b0f8a SHA512 5823be50b385327948be1d609ffd66c9c24c6eb466eba4366c67dc3287c26066c74d25f17c4a6cb27fba34a82c093b8da44b3cb3fc62c45ad9d996bde15112d1
24 DIST minetest_game-0.4.17.tar.gz 1356784 BLAKE2B 4cbae279edc24c7ebe8460fd3d805d3ab0f6deaf5ab303818b025b454fee8e67097a980e22f1eff39306b1ef545eae3becbbc6cfcbcad34af96b01d46e865df0 SHA512 3ed6c8419a11fe38e311b319c2af8b1f2793e40cf4bcd96b3d61748ec56a930278bace992b4142a394279c0c0308d5783a0121a9224126da9df7bdb7536b9294
25 +DIST minetest_game-5.0.1.tar.gz 1509625 BLAKE2B 607f40625131bdd8c82806f40c945780cf9c72977fa21c11031bca884143f46ecebbbd7f8672d4ab03885a1a8da2c99d5fda3628d77258db902e7cb184dff86e SHA512 9798b032e3fea010eacb581c16a8f2b8a94d5d4365864b3d5c29a5962e32b7ed4e9c423f4093a0772c719bc9ac8e724e9226ed2c8fb8fd6100c650a1b064595e
26
27 diff --git a/games-action/minetest_game/minetest_game-5.0.1.ebuild b/games-action/minetest_game/minetest_game-5.0.1.ebuild
28 new file mode 100644
29 index 00000000000..a3ae8d56c26
30 --- /dev/null
31 +++ b/games-action/minetest_game/minetest_game-5.0.1.ebuild
32 @@ -0,0 +1,23 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +DESCRIPTION="The main game for the Minetest game engine"
39 +HOMEPAGE="https://github.com/minetest/minetest_game"
40 +SRC_URI="https://github.com/minetest/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="CC-BY-3.0 CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 LGPL-2.1 LGPL-2.1+ MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RDEPEND=">=games-action/minetest-${PV}"
48 +
49 +src_install() {
50 + insinto /usr/share/minetest/games/${PN}
51 + doins -r mods menu
52 + doins game.conf minetest.conf
53 +
54 + dodoc README.txt game_api.txt
55 +}