summaryrefslogtreecommitdiff
path: root/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2020-10-11 18:35:14 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2020-10-11 18:35:14 -0400
commit58ca59c19f4424265998a86186d8dc1e26299b40 (patch)
treeda359c55a027f6ae46cf97909aa070159cf6c8e5 /net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
parent2b7a4a9646807ed507e7a7b9e1328ff5ca961d30 (diff)
downloadgentoo-overlay-58ca59c19f4424265998a86186d8dc1e26299b40.tar.xz
gentoo-overlay-58ca59c19f4424265998a86186d8dc1e26299b40.zip
net-misc/gallery-dl: bump
Diffstat (limited to 'net-misc/gallery-dl/gallery-dl-1.15.0.ebuild')
-rw-r--r--net-misc/gallery-dl/gallery-dl-1.15.0.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild b/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
deleted file mode 100644
index 09c4d81..0000000
--- a/net-misc/gallery-dl/gallery-dl-1.15.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=(python{3_6,3_7,3_8,3_9})
-PYTHON_REQ_USE=(sqlite)
-
-inherit distutils-r1
-
-DESCRIPTION="Command-line program to download image-galleries and collections"
-HOMEPAGE="https://github.com/mikf/gallery-dl"
-SRC_URI="mirror://pypi/g/gallery_dl/gallery_dl-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="test"
-
-RDEPEND="
- dev-python/requests[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- ${RDEPEND}
- dev-python/nose
- )
-"
-
-S="${WORKDIR}/gallery_dl-${PV}"
-
-python_test() {
- local noseargs=(
- -v
-
- # requires network access
- -I 'test_results\.py'
- )
- nosetests "${noseargs[@]}" || die
-}
-
-python_install_all() {
- dodoc README.rst
-
- distutils-r1_python_install_all
-}