blob: 7b3a2207a35b6dce67a59854e048bb80deeb8675 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=(python3_{11..12})
inherit distutils-r1 vcs-snapshot
DESCRIPTION="Tool for automatically downloading torrents using RSS feeds"
HOMEPAGE="https://azp.github.io/rsstorrent/"
SRC_URI="https://github.com/AzP/rsstorrent/releases/tag/v${PV} -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${PYTHON_DEPS}
dev-python/feedparser[${PYTHON_USEDEP}]
dev-python/python-daemon[${PYTHON_USEDEP}]"
python_install_all() {
distutils-r1_python_install_all
newinitd "${S}/rsstorrent-openrc" rsstorrent
newconfd "${S}/rsstorrent_conf.d" rsstorrent
insinto /etc/rsstorrent
newins "${S}/rsstorrent.conf" rsstorrent.conf.sample
}
pkg_postinst() {
einfo "For rsstorrent to work, you need to set up a user for which"
einfo "the downloads should be handled. This is done by editing the"
einfo "configuration file /etc/conf.d/rsstorrent, as well as copying"
einfo "and editing the user specific sample file in /etc/rsstorrent/"
einfo "to that user's home directory (inside .rsstorrent)."
}
|