summaryrefslogtreecommitdiff
path: root/www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-22 12:05:36 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-22 12:05:36 +0100
commit02eb6576978c38afed5787f6f2dbab8353379d66 (patch)
tree0b82220aae58c1307bef3aff0f342f4cdf858161 /www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild
parent490ef2c2dc8b4e808f37add1adee21a754efd9a9 (diff)
gentoo auto-resync : 22:04:2024 - 12:05:36
Diffstat (limited to 'www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild')
-rw-r--r--www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild77
1 files changed, 0 insertions, 77 deletions
diff --git a/www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild b/www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild
deleted file mode 100644
index 5ef7e008750e..000000000000
--- a/www-apps/readarr-bin/readarr-bin-0.3.23.2506.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="An ebook and audiobook collection manager for Usenet and BitTorrent users"
-HOMEPAGE="https://readarr.com/
- https://github.com/Readarr/Readarr/"
-
-SRC_URI="
- amd64? (
- elibc_glibc? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-x64.tar.gz
- )
- elibc_musl? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-x64.tar.gz
- )
- )
- arm? (
- elibc_glibc? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-arm.tar.gz
- )
- elibc_musl? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-arm.tar.gz
- )
- )
- arm64? (
- elibc_glibc? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-core-arm64.tar.gz
- )
- elibc_musl? (
- https://github.com/Readarr/Readarr/releases/download/v${PV}/Readarr.develop.${PV}.linux-musl-core-arm64.tar.gz
- )
- )
-"
-S="${WORKDIR}/Readarr"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-RESTRICT="bindist strip test"
-
-RDEPEND="
- acct-group/readarr
- acct-user/readarr
- 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 Readarr.Update/libcoreclrtraceptprovider.so || die
-}
-
-src_install() {
- newinitd "${FILESDIR}/readarr.init" readarr
-
- keepdir /var/lib/readarr
- fowners -R readarr:readarr /var/lib/readarr
-
- insinto /etc/logrotate.d
- insopts -m0644 -o root -g root
- newins "${FILESDIR}/readarr.logrotate" readarr
-
- dodir "/opt/readarr"
- cp -R "${S}/." "${D}/opt/readarr" || die "Install failed!"
-
- systemd_dounit "${FILESDIR}/readarr.service"
- systemd_newunit "${FILESDIR}/readarr.service" "readarr@.service"
-}