blob: f881765862185349420163b1996ce8bf4e9e3e94 (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
PYTHON_REQ_USE="ssl(+)"
inherit python-single-r1
DESCRIPTION="Automated shipping of open-source project releases."
HOMEPAGE="http://www.catb.org/~esr/shipper/"
SRC_URI="http://www.catb.org/~esr/shipper/${PF}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="irker lftp email scp"
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
lftp? ( net-ftp/lftp )
email? ( || ( mail-mta/sendmail mail-mta/postfix ) )
scp? ( virtual/ssh )
irker? ( net-irc/irker )"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|