commit:     8e66cdc5d1a038964e66ffd30d2bedf9701194b0
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 22:33:15 2024 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Mar 23 18:38:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e66cdc5

www-apps/prowlarr-bin: move from www-apps/prowlarr

Bug: https://bugs.gentoo.org/915346
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 profiles/updates/1Q-2024                           |  1 +
 www-apps/{prowlarr => prowlarr-bin}/Manifest       |  0
 .../{prowlarr => prowlarr-bin}/files/prowlarr.init |  0
 .../files/prowlarr.logrotate                       |  0
 .../files/prowlarr.service                         |  0
 www-apps/{prowlarr => prowlarr-bin}/metadata.xml   |  0
 .../prowlarr-bin/prowlarr-bin-1.14.3.4333.ebuild   | 77 ++++++++++++++++++++++
 www-apps/prowlarr/prowlarr-1.14.3.4333.ebuild      | 66 -------------------
 8 files changed, 78 insertions(+), 66 deletions(-)

diff --git a/profiles/updates/1Q-2024 b/profiles/updates/1Q-2024
index 37ed62dbe87a..efff2df3e6c6 100644
--- a/profiles/updates/1Q-2024
+++ b/profiles/updates/1Q-2024
@@ -96,3 +96,4 @@ move www-apps/sonarr www-apps/sonarr-bin
 move www-apps/jellyfin www-apps/jellyfin-bin
 move www-apps/radarr www-apps/radarr-bin
 move www-apps/lidarr www-apps/lidarr-bin
+move www-apps/prowlarr www-apps/prowlarr-bin

diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr-bin/Manifest
similarity index 100%
rename from www-apps/prowlarr/Manifest
rename to www-apps/prowlarr-bin/Manifest

diff --git a/www-apps/prowlarr/files/prowlarr.init 
b/www-apps/prowlarr-bin/files/prowlarr.init
similarity index 100%
rename from www-apps/prowlarr/files/prowlarr.init
rename to www-apps/prowlarr-bin/files/prowlarr.init

diff --git a/www-apps/prowlarr/files/prowlarr.logrotate 
b/www-apps/prowlarr-bin/files/prowlarr.logrotate
similarity index 100%
rename from www-apps/prowlarr/files/prowlarr.logrotate
rename to www-apps/prowlarr-bin/files/prowlarr.logrotate

diff --git a/www-apps/prowlarr/files/prowlarr.service 
b/www-apps/prowlarr-bin/files/prowlarr.service
similarity index 100%
rename from www-apps/prowlarr/files/prowlarr.service
rename to www-apps/prowlarr-bin/files/prowlarr.service

diff --git a/www-apps/prowlarr/metadata.xml b/www-apps/prowlarr-bin/metadata.xml
similarity index 100%
rename from www-apps/prowlarr/metadata.xml
rename to www-apps/prowlarr-bin/metadata.xml

diff --git a/www-apps/prowlarr-bin/prowlarr-bin-1.14.3.4333.ebuild 
b/www-apps/prowlarr-bin/prowlarr-bin-1.14.3.4333.ebuild
new file mode 100644
index 000000000000..2c9c3707ba6b
--- /dev/null
+++ b/www-apps/prowlarr-bin/prowlarr-bin-1.14.3.4333.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+DESCRIPTION="An indexer manager/proxy to integrate with your various PVR apps"
+HOMEPAGE="https://wiki.servarr.com/prowlarr/
+       https://github.com/Prowlarr/Prowlarr/";
+
+SRC_URI="
+       amd64? (
+               elibc_glibc? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-x64.tar.gz
+               )
+               elibc_musl? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-core-x64.tar.gz
+               )
+       )
+       arm? (
+               elibc_glibc? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm.tar.gz
+               )
+               elibc_musl? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-core-arm.tar.gz
+               )
+       )
+       arm64? (
+               elibc_glibc? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm64.tar.gz
+               )
+               elibc_musl? (
+                       
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-core-arm64.tar.gz
+               )
+       )
+"
+S="${WORKDIR}/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="*"
+
+src_prepare() {
+       default
+
+       # https://github.com/dotnet/runtime/issues/57784
+       rm libcoreclrtraceptprovider.so 
Prowlarr.Update/libcoreclrtraceptprovider.so || die
+}
+
+src_install() {
+       newinitd "${FILESDIR}/prowlarr.init" prowlarr
+
+       keepdir /var/lib/prowlarr
+       fowners -R prowlarr:prowlarr /var/lib/prowlarr
+
+       insinto /etc/logrotate.d
+       insopts -m0644 -o root -g root
+       newins "${FILESDIR}/prowlarr.logrotate" prowlarr
+
+       dodir  "/opt/prowlarr"
+       cp -R "${S}/." "${D}/opt/prowlarr" || die "Install failed!"
+
+       systemd_dounit "${FILESDIR}/prowlarr.service"
+       systemd_newunit "${FILESDIR}/prowlarr.service" "prowlarr@.service"
+}

diff --git a/www-apps/prowlarr/prowlarr-1.14.3.4333.ebuild 
b/www-apps/prowlarr/prowlarr-1.14.3.4333.ebuild
deleted file mode 100644
index 7661310592fb..000000000000
--- a/www-apps/prowlarr/prowlarr-1.14.3.4333.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-       amd64? (
-               elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-x64.tar.gz
 )
-               elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-core-x64.tar.gz
 )
-       )
-       arm? (
-               elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm.tar.gz
 )
-               elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-core-arm.tar.gz
 )
-       )
-       arm64? (
-               elibc_glibc? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm64.tar.gz
 )
-               elibc_musl? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-musl-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"
-}

Reply via email to