2021-01-18 12:00:36 +01:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-03-21 18:57:13 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2021-01-18 12:00:36 +01:00
|
|
|
PYTHON_COMPAT=( python3_{7..9} )
|
2020-03-21 18:57:13 +01:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="A simple downloader written in Python with an awesome progressbar"
|
|
|
|
HOMEPAGE="https://github.com/deepjyoti30/downloader-cli"
|
|
|
|
|
|
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/deepjyoti30/${PN}.git"
|
|
|
|
else
|
|
|
|
SRC_URI="https://github.com/deepjyoti30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
fi
|
|
|
|
|
|
|
|
RESTRICT="mirror"
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
>=dev-python/urllib3-1.25.7[${PYTHON_USEDEP}]
|
|
|
|
"
|