summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Andrews <candrews@gentoo.org>2022-07-11 09:27:18 -0400
committerCraig Andrews <candrews@gentoo.org>2022-07-11 09:28:19 -0400
commit43c9be82942f5c73e906e363045f5cdc4610ecbb (patch)
tree4eac98dc88fe9c8fe4378c472087487159678020 /www-apps
parentwww-apps/prowlarr: Delete libcoreclrtraceptprovider.so (diff)
downloadgentoo-43c9be82942f5c73e906e363045f5cdc4610ecbb.tar.gz
gentoo-43c9be82942f5c73e906e363045f5cdc4610ecbb.tar.bz2
gentoo-43c9be82942f5c73e906e363045f5cdc4610ecbb.zip
www-apps/prowlarr: 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')
-rw-r--r--www-apps/prowlarr/prowlarr-0.4.2.1879.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/www-apps/prowlarr/prowlarr-0.4.2.1879.ebuild b/www-apps/prowlarr/prowlarr-0.4.2.1879.ebuild
deleted file mode 100644
index d3c2b8c0b8bf..000000000000
--- a/www-apps/prowlarr/prowlarr-0.4.2.1879.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
- amd64? ( https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-x64.tar.gz )
- arm? ( https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm.tar.gz )
- arm64? ( https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm64.tar.gz )
-"
-
-DESCRIPTION="An indexer manager/proxy to integrate with your various PVR apps"
-HOMEPAGE="https://wiki.servarr.com/prowlarr"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64"
-RESTRICT="bindist strip test"
-
-RDEPEND="
- acct-group/prowlarr
- acct-user/prowlarr
- dev-libs/icu
- dev-util/lttng-ust:0
- dev-db/sqlite"
-
-QA_PREBUILT="*"
-
-S="${WORKDIR}/Prowlarr"
-
-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/prowlarr" || die "Install failed!"
-
- systemd_dounit "${FILESDIR}/prowlarr.service"
- systemd_newunit "${FILESDIR}/prowlarr.service" "${PN}@.service"
-}