summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2024-04-27 21:57:25 -0400
committerCraig Andrews <candrews@gentoo.org>2024-04-27 21:58:02 -0400
commit934228162c321aafdef354d49a50125d692a9720 (patch)
tree0d016e80012936e090cf5a01e1ebfa2916d04ae7 /www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild
parentwww-apps/sonarr-bin: add 4.0.4.1572 (diff)
downloadgentoo-934228162c321aafdef354d49a50125d692a9720.tar.gz
gentoo-934228162c321aafdef354d49a50125d692a9720.tar.bz2
gentoo-934228162c321aafdef354d49a50125d692a9720.zip
www-apps/sonarr-bin: drop 4.0.4.1515
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild')
-rw-r--r--www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild74
1 files changed, 0 insertions, 74 deletions
diff --git a/www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild b/www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild
deleted file mode 100644
index f10489599d33..000000000000
--- a/www-apps/sonarr-bin/sonarr-bin-4.0.4.1515.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="Sonarr is a Smart PVR for newsgroup and bittorrent users"
-HOMEPAGE="https://www.sonarr.tv"
-
-SRC_URI="
- amd64? (
- elibc_glibc? (
- https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-x64.tar.gz
- )
- elibc_musl? (
- https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-x64.tar.gz
- )
- )
- arm? (
- elibc_glibc? (
- https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm.tar.gz
- )
- )
- arm64? (
- elibc_glibc? (
- https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-arm64.tar.gz
- )
- elibc_musl? (
- https://github.com/Sonarr/Sonarr/releases/download/v${PV}/Sonarr.develop.${PV}.linux-musl-arm64.tar.gz
- )
- )
-"
-S="${WORKDIR}/Sonarr"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-RESTRICT="bindist strip test"
-
-RDEPEND="
- acct-group/sonarr
- acct-user/sonarr
- media-video/mediainfo
- dev-libs/icu
- dev-util/lttng-ust:0
- dev-db/sqlite
-"
-
-QA_PREBUILT="*"
-
-src_prepare() {
- default
-
- # https://github.com/dotnet/runtime/issues/57784
- rm libcoreclrtraceptprovider.so Sonarr.Update/libcoreclrtraceptprovider.so || die
-}
-
-src_install() {
- newinitd "${FILESDIR}/sonarr.init-r2" sonarr
-
- keepdir /var/lib/sonarr
- fowners -R sonarr:sonarr /var/lib/sonarr
-
- insinto /etc/logrotate.d
- insopts -m0644 -o root -g root
- newins "${FILESDIR}/sonarr.logrotate" sonarr
-
- dodir "/opt/sonarr"
- cp -R "${S}/." "${D}/opt/sonarr" || die "Install failed!"
-
- systemd_newunit "${FILESDIR}/sonarr.service-r1" "sonarr.service"
- systemd_newunit "${FILESDIR}/sonarr.service-r1" "sonarr@.service"
-}