Merge bump to mirage and changes to its dependencies

This commit is contained in:
Alfred Wingate 2021-03-04 01:59:17 +02:00
commit 8627a1a370
2 changed files with 110 additions and 0 deletions

View File

@ -7,3 +7,6 @@ DIST jellyfin-bin-10.7.0_rc2-web.deb 35040832 BLAKE2B a0027e83aa19135df7588dae75
DIST jellyfin-bin-10.7.0_rc3-server-amd64.deb 37863400 BLAKE2B 424e88a47966fccd31e061c225f57ea41e087f54c269fd002287ce7871bf2c4a0caddb45098625a3b84aa9b2b135d5289a683cae7e91993a7feccdea74ad9c4c SHA512 0d38afdb8886e6d1f264cb2e5612b70947713f67b9fe7082d69c4d2e2ce45dc32c672c15ff3e58295d2995a47fb2d355cecbf2427facb64e3175ed6c86ccc535
DIST jellyfin-bin-10.7.0_rc3-server-arm64.deb 33821328 BLAKE2B 8b39b56c5e58379dcca9db95ef582f6858bc69bfe0a076e92698e5439135a3aaf286e1abc1390baa6808bc9cad3dbc322f440e2fc52e8d78ed721e280e5e95b0 SHA512 c18046c10d04b4733eb570bf34a1c0304947342de0c3bcf0cc50308a74bf2c44778e408749fa71e99fc56b29f8434ecb89bc787d867f9b0835e4f893dc84fc86
DIST jellyfin-bin-10.7.0_rc3-web.deb 35040916 BLAKE2B 020a8eb2a0d3e96ad5bd0116a27e46eadb0299864e03c005b19c864f8a221ca64b084a9e4122896eafea5319a2753d529a86e37c291bf12a9f0a5039637a4eb3 SHA512 def426e4a9fb883688c6134b4cf48ee4f75f3146357d5a8c3de7ad77b74e39ca4ff9d5ebadfd2582907099b558c143c7f24f86041eb3448851bad6c36a0bf496
DIST jellyfin-bin-10.7.0_rc4-server-amd64.deb 37872820 BLAKE2B 02cb2c827b8a2b03d15cd457d805520fef290efbc6a261fd8bf6817c2a907718e6edcecf92b81999306e6f74284fb111fa7ea72828d1742f78daaf7daae6d984 SHA512 78565b364acdf96390ad58bdf8c49d98be6b6db0d3ca91a0828d32655cc7bfcd7b194ab83eeab0df359875e15bda11ceb30de23d1f24c1f60603e4b29efa2124
DIST jellyfin-bin-10.7.0_rc4-server-arm64.deb 33826736 BLAKE2B 486eb2138c60b6bcd3b5c560f828bb5265d084e38658db3fb432964b4886d95262d2458bcd8557161d1f8bbf953d6e4beea1424e209b384dd249a16a5943c681 SHA512 4eb7394011ad9dd1afe756552b4abdb063a84cf550487eef95962e68e243616d1a06eff9a0bdc921fa9666ecdb840eb8cc11f4a62b65d7acd14ed8121cf01d1b
DIST jellyfin-bin-10.7.0_rc4-web.deb 35040604 BLAKE2B 7a6e4c6d30a8bc8636c92253c98a60f95a3dd8d30c8637558bb09446cc14feddc8f171e762dc01cacdf1bd4895ea64e6a9b4591146a5e206309e0c1dbdd67da4 SHA512 54de6f7016ddad78cc8af8ee2514b2b7ff22c7d1bbd4dba76fbaca312bff2f5889d6a0a950aed084997139dc92a2ef5ce37185a652dc75cba288edd5e39e0eff

View File

@ -0,0 +1,107 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="${PN/-bin}"
if [[ "${PV}" == *_rc* ]]; then
# _rc -> ~rc
MY_PV="${PV/_rc/~rc}"
SRV_SRC="${MY_PN}-server_${MY_PV}"
WEB_SRC="${MY_PN}-web_${MY_PV}"
RELEASE="stable-rc"
else
# Add "-1"
MY_PV="${PV}"
SRV_SRC="${MY_PN}-server_${MY_PV}-1"
WEB_SRC="${MY_PN}-web_${MY_PV}-1"
RELEASE="stable"
fi
BASE_URI="https://repo.jellyfin.org/releases/server/debian/versions/${RELEASE}"
inherit unpacker systemd wrapper
DESCRIPTION="The Free Software Media System"
HOMEPAGE="https://jellyfin.org"
SRC_URI="
amd64? (
${BASE_URI}/server/${MY_PV}/${SRV_SRC}_amd64.deb -> ${P}-server-amd64.deb
)
arm64? (
${BASE_URI}/server/${MY_PV}/${SRV_SRC}_arm64.deb -> ${P}-server-arm64.deb
)
${BASE_URI}/web/${MY_PV}/${WEB_SRC}_all.deb -> ${P}-web.deb
"
RESTRICT="mirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm64"
DEPEND="
!www-servers/jellyfin
"
RDEPEND="
${DEPEND}
>=media-video/ffmpeg-4.2.2
acct-group/jellyfin
acct-user/jellyfin
app-crypt/mit-krb5
dev-db/sqlite
dev-util/lttng-ust
media-libs/fontconfig
media-libs/freetype
"
QA_PREBUILT="usr/lib/${MY_PN}/bin/*"
QA_PRESTRIPPED="${QA_PRESTRIPPED}"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}/${MY_PN}-default.patch"
)
src_unpack() {
# https://gitlab.com/src_prepare/src_prepare-overlay/-/merge_requests/145
if use amd64
then
unpack_deb "${P}-server-amd64.deb"
elif use arm64
then
unpack_deb "${P}-server-arm64.deb"
else
die "Unsupported architecture"
fi
unpack_deb "${P}-web.deb"
}
src_install() {
# Install the Server part
insinto usr/lib/
doins -r "usr/lib/${MY_PN}"
insinto etc
doins -r "etc/${MY_PN}"
# Install the Web UI part
insinto "usr/share/${MY_PN}/web"
doins -r "usr/share/${MY_PN}/web"/*
# Install wrappers
make_wrapper "${MY_PN}" "${EPREFIX}/usr/lib/${MY_PN}/bin/${MY_PN}"
dosym "${EPREFIX}/usr/bin/${MY_PN}" "${EPREFIX}/usr/bin/${PN}"
# Install services
newinitd "${FILESDIR}/${MY_PN}" "${MY_PN}"
doconfd "etc/default/${MY_PN}"
dosym "${EPREFIX}/etc/conf.d/${MY_PN}" "${EPREFIX}/etc/default/${MY_PN}"
systemd_dounit "lib/systemd/system/${MY_PN}.service"
systemd_install_serviced "etc/systemd/system/${MY_PN}.service.d/${MY_PN}.service.conf"
# Fix permissions
chmod +x "${ED}/usr/lib/${MY_PN}"/* || die
chmod +x "${ED}/usr/lib/${MY_PN}/bin"/* || die
chown -R jellyfin:jellyfin "${ED}/usr/lib/${MY_PN}" || die
}