summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2022-07-11 09:20:35 -0400
committerCraig Andrews <candrews@gentoo.org>2022-07-11 09:20:35 -0400
commit9b889afd13f24ee2cf8d036d44fc5abf3cbf6099 (patch)
tree0c14fd4cff42edc0e380b25e30447a672598aab4 /www-apps/jellyfin
parentwww-apps/jellyfin: Delete libcoreclrtraceptprovider.so (diff)
downloadgentoo-9b889afd13f24ee2cf8d036d44fc5abf3cbf6099.tar.gz
gentoo-9b889afd13f24ee2cf8d036d44fc5abf3cbf6099.tar.bz2
gentoo-9b889afd13f24ee2cf8d036d44fc5abf3cbf6099.zip
www-apps/jellyfin: Cleanup old version
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'www-apps/jellyfin')
-rw-r--r--www-apps/jellyfin/jellyfin-10.8.1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/www-apps/jellyfin/jellyfin-10.8.1.ebuild b/www-apps/jellyfin/jellyfin-10.8.1.ebuild
deleted file mode 100644
index 561fafc14add..000000000000
--- a/www-apps/jellyfin/jellyfin-10.8.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="Jellyfin puts you in control of managing and streaming your media"
-HOMEPAGE="https://jellyfin.readthedocs.io/en/latest/"
-
-SRC_URI="
- arm64? (
- https://repo.jellyfin.org/releases/server/linux/stable/combined/${PN}_${PV}_arm64.tar.gz
- https://repo.jellyfin.org/archive/linux/stable/${PV}/combined/${PN}_${PV}_arm64.tar.gz
- )
- amd64? (
- https://repo.jellyfin.org/releases/server/linux/stable/combined/${PN}_${PV}_amd64.tar.gz
- https://repo.jellyfin.org/archive/linux/stable/${PV}/combined/${PN}_${PV}_amd64.tar.gz
- )"
-
-RESTRICT="mirror test"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-DEPEND="acct-user/jellyfin"
-RDEPEND="${DEPEND}
- dev-util/lttng-ust:0
- media-video/ffmpeg[vpx,x264]"
-BDEPEND="acct-user/jellyfin"
-INST_DIR="/opt/${PN}"
-QA_PREBUILT="${INST_DIR#/}/*.so ${INST_DIR#/}/jellyfin ${INST_DIR#/}/createdump"
-
-src_unpack() {
- unpack ${A}
- mv ${PN}_${PV} ${P} || 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}"/*
- chmod 755 "${D}${INST_DIR}/jellyfin"
- newinitd "${FILESDIR}/${PN}.init" "${PN}"
- systemd_dounit "${FILESDIR}/${PN}.service"
-}