Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/rutorrent/
Date: Thu, 02 Mar 2023 18:06:14
Message-Id: 1677780334.8964d90b1029ce17755471bd73b2d092bc6601a9.ceamac@gentoo
1 commit: 8964d90b1029ce17755471bd73b2d092bc6601a9
2 Author: Henning Schild <henning <AT> hennsch <DOT> de>
3 AuthorDate: Wed Mar 1 19:45:45 2023 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 2 18:05:34 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8964d90b
7
8 www-apps/rutorrent: drop old
9
10 Signed-off-by: Henning Schild <henning <AT> hennsch.de>
11 Closes: https://github.com/gentoo/gentoo/pull/29890
12 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
13
14 www-apps/rutorrent/Manifest | 1 -
15 www-apps/rutorrent/rutorrent-3.8-r1.ebuild | 57 ------------------------------
16 2 files changed, 58 deletions(-)
17
18 diff --git a/www-apps/rutorrent/Manifest b/www-apps/rutorrent/Manifest
19 index d9b4d4d904a5..6bf0b44d72be 100644
20 --- a/www-apps/rutorrent/Manifest
21 +++ b/www-apps/rutorrent/Manifest
22 @@ -1,2 +1 @@
23 -DIST rutorrent-3.8.tar.gz 1241643 BLAKE2B c432e8691d35447cd0698eee8edeee4060238dc39cc8cbb178c1169f166fa1d483493181ce0d2f468106ae01dd0f58d4fbb2f334de393fabb2b0aa73363e2b7f SHA512 ea3dfa74234a1eafcbc9e71d6c6d953a46fdf8e189237b8df0ec58cf46ac30404f7a15bb783ec7567ab6f28daa3987ee219039dd360e3c48d16aea244263c9b6
24 DIST rutorrent-4.0.2.tar.gz 2221825 BLAKE2B 96867dbd818949388dedbfeee80ae85d22c9f3b04636d66797a96fc7b1de7541128445a989f642d711bd93aaf0840b56fe4e7bb7f29a02d122d939039eeff835 SHA512 f1f3cf7712246c02c73753e5ec8c3b5c0af4797699adeabc59822c165d06d7291d50a2d065b2d729273f907e1ec288391b1f02bc733a2b40d3e818a2de983528
25
26 diff --git a/www-apps/rutorrent/rutorrent-3.8-r1.ebuild b/www-apps/rutorrent/rutorrent-3.8-r1.ebuild
27 deleted file mode 100644
28 index a45b892d7649..000000000000
29 --- a/www-apps/rutorrent/rutorrent-3.8-r1.ebuild
30 +++ /dev/null
31 @@ -1,57 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit webapp
38 -
39 -DESCRIPTION="ruTorrent is a front-end for the popular Bittorrent client rTorrent"
40 -HOMEPAGE="https://github.com/Novik/ruTorrent"
41 -SRC_URI="https://github.com/Novik/ruTorrent/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -KEYWORDS="~alpha ~amd64 ~ppc ~x86"
45 -IUSE=""
46 -
47 -need_httpd_cgi
48 -
49 -DEPEND="
50 - || ( dev-lang/php[xml,gd] dev-lang/php[xml,gd-external] )
51 -"
52 -RDEPEND="virtual/httpd-php"
53 -
54 -S="${WORKDIR}/ruTorrent-${PV}"
55 -
56 -pkg_setup() {
57 - webapp_pkg_setup
58 -}
59 -
60 -src_prepare() {
61 - default
62 - find -name '\.gitignore' -type f -exec rm -rf {} \;
63 - # The 3.8 release of ruTorrent includes an .htaccess file that defines a .htpasswd that doesn't exist
64 - rm '.htaccess'
65 -}
66 -
67 -src_install() {
68 - webapp_src_preinst
69 -
70 - insinto "${MY_HTDOCSDIR}"
71 - doins -r .
72 -
73 - chmod +x "${ED}${MY_HTDOCSDIR}"/plugins/*/*.sh \
74 - "$ED${MY_HTDOCSDIR}"/php/test.sh || die "chmod failed"
75 -
76 - webapp_serverowned "${MY_HTDOCSDIR}"/share
77 - webapp_serverowned "${MY_HTDOCSDIR}"/share/settings
78 - webapp_serverowned "${MY_HTDOCSDIR}"/share/torrents
79 - webapp_serverowned "${MY_HTDOCSDIR}"/share/users
80 -
81 - webapp_configfile "${MY_HTDOCSDIR}"/conf/.htaccess
82 - webapp_configfile "${MY_HTDOCSDIR}"/conf/config.php
83 - webapp_configfile "${MY_HTDOCSDIR}"/conf/access.ini
84 - webapp_configfile "${MY_HTDOCSDIR}"/conf/plugins.ini
85 - webapp_configfile "${MY_HTDOCSDIR}"/share/.htaccess
86 -
87 - webapp_src_install
88 -}