forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-server/bedrock-server: bump to version 1.16.201.02
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Conrad Kostecki <[email protected]>
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST bedrock-server-1.16.101.01.zip 89007227 BLAKE2B 9f9dea5a52c8ae21ab2a3afc727dd750dc3b743de2d690427a8a1c9b17ded040f06c56edf82a9d501d64702cc19f64d0ed272fa869dd5936dd7bca818e2ea07f SHA512 b8742363a59b8959da1cf6a1bc13aa20c683e1ac26a16aa570d6111b68f437546ee00e52d51794be7c5f42be83dab77ec11bddf0a16cd18385f777eed97ba9df | ||
DIST bedrock-server-1.16.201.02.zip 89832697 BLAKE2B 055d19866daabf8479fa051dd9ddec0b89e620c02713cf6b98299eaa9b1423c92fa15bdf0a2203e9580ce38e82321e2f2b5420ad11ea45bb01606487c5477a01 SHA512 6238dfccde26780d22337a7f0a1e1fbe75b86e43c4ecd77a551dc7d31bf22fad3705f0f9e328c00cf5ffbee252a70e94f586606aa26e23b32101e3e6a23636a3 | ||
DIST bedrock-server-1.16.40.02.zip 69910097 BLAKE2B 6c074a3f99bcd9dfe0214a43550d08714af9a58ee619765bf6713b59b997c1c322bba906966c18181fdb3c5e3e5791140fa49d25146820b649f30ace1c147adb SHA512 e0d012719a413656ed0f4b8ffc0ca96d537e3dbfc306ce8e05d757442e209ce2b1f9a43c1152c3a36ed251a35f68f6072401742e1ab2cf75d75ef9420232702b |
53 changes: 53 additions & 0 deletions
53
games-server/bedrock-server/bedrock-server-1.16.201.02.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
DESCRIPTION="The official bedrock (non-java) based server for the sandbox video game" | ||
HOMEPAGE="https://www.minecraft.net/" | ||
SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip" | ||
|
||
LICENSE="Mojang" | ||
SLOT="0" | ||
KEYWORDS="-* ~amd64" | ||
|
||
RDEPEND=" | ||
acct-group/bedrock | ||
acct-user/bedrock | ||
app-misc/dtach | ||
dev-libs/openssl:0/1.1 | ||
net-misc/curl[ssl] | ||
" | ||
|
||
BDEPEND="app-arch/unzip" | ||
|
||
RESTRICT="bindist mirror" | ||
|
||
S="${WORKDIR}" | ||
|
||
DOCS=( | ||
"bedrock_server_how_to.html" | ||
"release-notes.txt" | ||
) | ||
|
||
QA_PREBUILT=" | ||
opt/bedrock-server/bedrock_server | ||
opt/bedrock-server/libCrypto.so | ||
" | ||
|
||
src_install() { | ||
exeinto /opt/bedrock-server | ||
doexe bedrock_server libCrypto.so | ||
|
||
insinto /opt/bedrock-server | ||
doins {permissions,whitelist}.json server.properties | ||
doins -r {behavior,resource}_packs definitions structures | ||
|
||
dodir /opt/bin | ||
dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server | ||
|
||
newinitd "${FILESDIR}"/bedrock-server.initd-r2 bedrock-server | ||
newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server | ||
|
||
einstalldocs | ||
} |