Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/mcrcon/
Date: Sun, 31 Oct 2021 22:29:58
Message-Id: 1635719368.601e261fefe2a143f09db67637e1527074a9a802.chewi@gentoo
1 commit: 601e261fefe2a143f09db67637e1527074a9a802
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 31 22:28:48 2021 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 22:29:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601e261f
7
8 games-util/mcrcon: Version bump to 0.7.2, EAPI 8
9
10 For reals, this time!
11
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 games-util/mcrcon/Manifest | 1 +
15 games-util/mcrcon/mcrcon-0.7.2.ebuild | 23 +++++++++++++++++++++++
16 2 files changed, 24 insertions(+)
17
18 diff --git a/games-util/mcrcon/Manifest b/games-util/mcrcon/Manifest
19 index 72640d63953..06a1d53e25f 100644
20 --- a/games-util/mcrcon/Manifest
21 +++ b/games-util/mcrcon/Manifest
22 @@ -1 +1,2 @@
23 DIST mcrcon-0.7.1.tar.gz 9796 BLAKE2B 4de98574783f995b5161944dac3a817313618019f1711832d266f038ce7a56a2e3d6da2556dbcd36870dd81de74f9886db84af81d9e6c25d70155f61c4a7f191 SHA512 372314e007d50e758203911c25df7c07d317ea6a7e469e24f603eae67ec5ef1e313c997481f4d90395d25d4d99ddc126a6e5745b2044903b2f21271aa7c39eb2
24 +DIST mcrcon-0.7.2.tar.gz 9997 BLAKE2B 3dabd5c1951bd4427486a7a0c438730d61e9ebf006de77225b17153964728d671821e60ddb9d0a3d53952c4331e4d4807cb9b96009c37427eb4bc1f684664f3e SHA512 584487bd6d3d2d0ddd0065187c5cadf7c1cf80c8234acb55f218eab6a54c10a7e99adf0ca643894f3664d51233cd04745fb13c4ee02964ef735c034b01f2ee89
25
26 diff --git a/games-util/mcrcon/mcrcon-0.7.2.ebuild b/games-util/mcrcon/mcrcon-0.7.2.ebuild
27 new file mode 100644
28 index 00000000000..80b64e93351
29 --- /dev/null
30 +++ b/games-util/mcrcon/mcrcon-0.7.2.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="Remote connection client for Minecraft servers"
40 +HOMEPAGE="https://github.com/Tiiffi/mcrcon"
41 +SRC_URI="https://github.com/Tiiffi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +LICENSE="ZLIB"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm"
45 +
46 +src_compile() {
47 + emake \
48 + CC="$(tc-getCC)" \
49 + CFLAGS="${CFLAGS} ${LDFLAGS} -std=gnu99 -Wall -Wextra -Wpedantic"
50 +}
51 +
52 +src_install() {
53 + emake install PREFIX="${ED}/usr"
54 +}