summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2023-07-17 20:20:29 -0400
committerCraig Andrews <candrews@gentoo.org>2023-07-17 20:20:52 -0400
commit45c14c338feb73b768a3bde58fd2a18c8c5308fa (patch)
treee72c56ac379a6f04eca9dccb667e866a5cfae820 /www-apps/lidarr
parentwww-apps/lidarr: fix logrotate configuration (diff)
downloadgentoo-45c14c338feb73b768a3bde58fd2a18c8c5308fa.tar.gz
gentoo-45c14c338feb73b768a3bde58fd2a18c8c5308fa.tar.bz2
gentoo-45c14c338feb73b768a3bde58fd2a18c8c5308fa.zip
www-apps/lidarr: drop 1.3.1.3371
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'www-apps/lidarr')
-rw-r--r--www-apps/lidarr/lidarr-1.3.1.3371.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/www-apps/lidarr/lidarr-1.3.1.3371.ebuild b/www-apps/lidarr/lidarr-1.3.1.3371.ebuild
deleted file mode 100644
index 47d13184e338..000000000000
--- a/www-apps/lidarr/lidarr-1.3.1.3371.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
- amd64? ( https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-x64.tar.gz )
- arm? ( https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-arm.tar.gz )
- arm64? ( https://github.com/Lidarr/Lidarr/releases/download/v${PV}/Lidarr.develop.${PV}.linux-core-arm64.tar.gz )
-"
-
-DESCRIPTION="Looks and smells like Sonarr but made for music"
-HOMEPAGE="https://lidarr.audio"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-RESTRICT="bindist strip test"
-
-RDEPEND="
- acct-group/lidarr
- acct-user/lidarr
- media-video/mediainfo
- dev-libs/icu
- dev-util/lttng-ust:0
- dev-db/sqlite
- sys-libs/glibc
-"
-
-QA_PREBUILT="*"
-
-S="${WORKDIR}/Lidarr"
-
-src_prepare() {
- default
-
- # https://github.com/dotnet/runtime/issues/57784
- rm libcoreclrtraceptprovider.so Lidarr.Update/libcoreclrtraceptprovider.so || die
-}
-
-src_install() {
- newinitd "${FILESDIR}/${PN}.init" ${PN}
-
- keepdir /var/lib/${PN}
- fowners -R ${PN}:${PN} /var/lib/${PN}
-
- insinto /etc/logrotate.d
- insopts -m0644 -o root -g root
- newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
- dodir "/opt/${PN}"
- cp -R "${S}/." "${D}/opt/lidarr" || die "Install failed!"
-
- systemd_dounit "${FILESDIR}/lidarr.service"
- systemd_newunit "${FILESDIR}/lidarr.service" "${PN}@.service"
-}