summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2024-10-17 12:00:15 -0400
committerCraig Andrews <candrews@gentoo.org>2024-10-17 12:00:15 -0400
commit6eceeaf0e31c2436c21a6caa7275ec2dc84e4d5a (patch)
treeb2665b963cad166f723ed44c96121d43dfd507d6 /www-apps/jellyfin-bin
parentwww-apps/jellyfin-bin: Fix NVENC HW acceleration (diff)
downloadgentoo-6eceeaf0e31c2436c21a6caa7275ec2dc84e4d5a.tar.gz
gentoo-6eceeaf0e31c2436c21a6caa7275ec2dc84e4d5a.tar.bz2
gentoo-6eceeaf0e31c2436c21a6caa7275ec2dc84e4d5a.zip
www-apps/jellyfin-bin: drop 10.9.11
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'www-apps/jellyfin-bin')
-rw-r--r--www-apps/jellyfin-bin/jellyfin-bin-10.9.11.ebuild77
1 files changed, 0 insertions, 77 deletions
diff --git a/www-apps/jellyfin-bin/jellyfin-bin-10.9.11.ebuild b/www-apps/jellyfin-bin/jellyfin-bin-10.9.11.ebuild
deleted file mode 100644
index 3392e3209a21..000000000000
--- a/www-apps/jellyfin-bin/jellyfin-bin-10.9.11.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit pax-utils systemd tmpfiles
-
-DESCRIPTION="Jellyfin puts you in control of managing and streaming your media"
-HOMEPAGE="https://jellyfin.readthedocs.io/en/latest/
- https://github.com/jellyfin/jellyfin/"
-
-SRC_URI="
- arm64? (
- elibc_glibc? (
- https://repo.jellyfin.org/files/server/linux/stable/v${PV}/arm64/jellyfin_${PV}-arm64.tar.xz
- )
- elibc_musl? (
- https://repo.jellyfin.org/files/server/linux/stable/v${PV}/arm64-musl/jellyfin_${PV}-arm64-musl.tar.xz
- )
- )
- amd64? (
- elibc_glibc? (
- https://repo.jellyfin.org/files/server/linux/stable/v${PV}/amd64/jellyfin_${PV}-amd64.tar.xz
- )
- elibc_musl? (
- https://repo.jellyfin.org/files/server/linux/stable/v${PV}/amd64-musl/jellyfin_${PV}-amd64-musl.tar.xz
- )
- )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm64"
-RESTRICT="mirror test"
-
-DEPEND="acct-user/jellyfin
- media-libs/fontconfig
- sys-libs/zlib"
-RDEPEND="${DEPEND}
- dev-libs/icu
- media-video/ffmpeg[vpx,x264]"
-BDEPEND="acct-user/jellyfin"
-
-INST_DIR="/opt/jellyfin"
-QA_PREBUILT="${INST_DIR#/}/*.so ${INST_DIR#/}/jellyfin ${INST_DIR#/}/createdump"
-
-src_unpack() {
- unpack ${A}
- mv jellyfin ${P} || die
-}
-
-src_prepare() {
- default
-
- # https://github.com/jellyfin/jellyfin/issues/7471
- # https://github.com/dotnet/runtime/issues/57784
- rm libcoreclrtraceptprovider.so || die
-}
-
-src_install() {
- keepdir /var/log/jellyfin
- fowners jellyfin:jellyfin /var/log/jellyfin
- keepdir /etc/jellyfin
- fowners jellyfin:jellyfin /etc/jellyfin
- insinto ${INST_DIR}
- dodir ${INST_DIR}
- doins -r "${S}"/*
- newtmpfiles - jellyfin.conf <<<"d /var/cache/jellyfin 0775 jellyfin jellyfin -"
- chmod 755 "${D}${INST_DIR}/jellyfin"
- newinitd "${FILESDIR}/jellyfin.init-r1" "jellyfin"
- newconfd "${FILESDIR}"/jellyfin.confd "jellyfin"
- systemd_dounit "${FILESDIR}/jellyfin.service"
- pax-mark -m "${ED}${INST_DIR}/jellyfin"
-}
-
-pkg_postinst() {
- tmpfiles_process jellyfin.conf
-}