commit: 7eaf058354e6923376c35b18626b5df7a2b6a897 Author: Craig Andrews <candrews <AT> gentoo <DOT> org> AuthorDate: Wed Jul 5 13:22:08 2023 +0000 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org> CommitDate: Wed Jul 5 13:23:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eaf0583
www-apps/prowlarr: add 1.7.0.3623 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org> www-apps/prowlarr/Manifest | 3 ++ www-apps/prowlarr/prowlarr-1.7.0.3623.ebuild | 57 ++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr/Manifest index a77d3b1c590f..9238124a34f6 100644 --- a/www-apps/prowlarr/Manifest +++ b/www-apps/prowlarr/Manifest @@ -1,3 +1,6 @@ +DIST Prowlarr.develop.1.7.0.3623.linux-core-arm.tar.gz 86586621 BLAKE2B 3cd9c59280c96a14ef05cec55022b7b0e3dc4b279c261e78212cc1f5b326744ab7e6c80e273231b792eb293f4d57966cea36d67cb55f5ef5451ce97e79b7e982 SHA512 5df99dcf46ae8978d9390387e43703fd7066e2e0c5a65dfdafd9618daeb935450327d2c17441ba2fe120fbc9a28fc4eff080dbf862536841599a27e8051457c7 +DIST Prowlarr.develop.1.7.0.3623.linux-core-arm64.tar.gz 85877429 BLAKE2B 1bf89db6b2a35188dc47118dc451477dba6b26cd83e4aaa68e653ade8cfbce48d43f890e705e8abf2009c0270eef0a20943ad72299860d08139649971131ce86 SHA512 12c9e18b6586f0d9bef2027a0a68c21fd89a34d3fe139b592cd5fb3e58662f869e8ab036c2327a7db90aeda7d7baad4c1c18d5434b3e37144fc95d34bec2aede +DIST Prowlarr.develop.1.7.0.3623.linux-core-x64.tar.gz 90847740 BLAKE2B 559082728cdb6fc209c5a25234ee0e82eb9d4f4111a96dab60fdb60c774e111ee3d27683db1430ab423a96c8f3351485d325b6f7cf77e1db5ed193d126f15626 SHA512 a23b9b3b45a58c73b4ea8ce6d9bf0f825e17e75d04e71cb730e17bb1917967108b5ebca581f2d39141cca9493af6657c1fb071bcc2218e7e0ac431eb1954583d DIST Prowlarr.master.1.6.3.3608.linux-core-arm.tar.gz 86586378 BLAKE2B d778a457fce8554dc84d983cca9b4ac226c196eff565dcf0bfc79c859e902602545fe2ee4a6eec7239f2d741c73ec19984d3a21959f3a4b6f1d2202250df79e0 SHA512 b0b17412f7033ff629415409052cdca91142aa12e1815631934a3e82a135ffcd4293f8af502e9cff7a9d4182f267b7e695b0e5caeacdfb34a2e2787134d599a3 DIST Prowlarr.master.1.6.3.3608.linux-core-arm64.tar.gz 85874619 BLAKE2B a655f46c5ceb2e6694217773f14865c0387da92728d59003fd22fbdd99b45f2a7891fee517b1d2ee56388ee1badcf68dec1b1767cfb85e4bb139d972615d7f42 SHA512 542056cafe06242850558ccef11043fd1841c6f8485e38c506cb53841249809f2d9a2624fb14051ed8ed0bb318b9189f99487d311656a0805079f61f42280d36 DIST Prowlarr.master.1.6.3.3608.linux-core-x64.tar.gz 90855108 BLAKE2B f92739a043722cfd01bc8f5819ff93fa3b61cb574ce1464d719f85166945b6031f527e9d8b3016e6975017cadc87849ada9c52f03186046fe33a153ddd743d03 SHA512 95d1778ec36dbd92ddccbdd2d295cd6f5633105104335a1634687e2cc46d93a3864cefe782b5559089f9fc99ce5e38768ff473b720e6b766f53c6c6ed686abe8 diff --git a/www-apps/prowlarr/prowlarr-1.7.0.3623.ebuild b/www-apps/prowlarr/prowlarr-1.7.0.3623.ebuild new file mode 100644 index 000000000000..eb3efd28ba1a --- /dev/null +++ b/www-apps/prowlarr/prowlarr-1.7.0.3623.ebuild @@ -0,0 +1,57 @@ +# 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/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 + sys-libs/glibc +" + +QA_PREBUILT="*" + +S="${WORKDIR}/Prowlarr" + +src_prepare() { + default + + # https://github.com/dotnet/runtime/issues/57784 + rm libcoreclrtraceptprovider.so Prowlarr.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/prowlarr" || die "Install failed!" + + systemd_dounit "${FILESDIR}/prowlarr.service" + systemd_newunit "${FILESDIR}/prowlarr.service" "${PN}@.service" +}