From 9f3a96eb034a8bc53b515d047f3a8a3be98ce6a7 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Sat, 15 Aug 2020 20:28:35 -0400 Subject: net-misc/gallery-dl: bump, add tests --- net-misc/gallery-dl/gallery-dl-1.14.4.ebuild | 51 ++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 net-misc/gallery-dl/gallery-dl-1.14.4.ebuild (limited to 'net-misc/gallery-dl/gallery-dl-1.14.4.ebuild') diff --git a/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild new file mode 100644 index 0000000..0f26851 --- /dev/null +++ b/net-misc/gallery-dl/gallery-dl-1.14.4.ebuild @@ -0,0 +1,51 @@ +# 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' + + # AssertionErrors? + -e test_expires_db + -e test_invalidate_db + -e test_update_db + ) + nosetests "${noseargs[@]}" || die +} + +python_install_all() { + dodoc README.rst + + distutils-r1_python_install_all +} -- cgit v1.2.3-54-g00ecf