Files
guru/media-gfx/memethesis-cli/memethesis-cli-9999.ebuild
Andrew Ammerlaan 1eecfb74b4 */*: drop py3_6
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
2020-09-26 11:18:18 +02:00

37 lines
849 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGIT_REPO_URI="https://github.com/fakefred/${PN}"
case "${PV}" in
9999)
inherit git-r3
;;
*)
SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
esac
DISTUTILS_USE_SETUPTOOLS=rdepend
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python3_{7,8} )
inherit distutils-r1
DESCRIPTION="Create memes from the terminal"
HOMEPAGE="${EGIT_REPO_URI}"
LICENSE="GPL-3"
SLOT="0"
PATCHES=( "${FILESDIR}/prompt.patch" )
RDEPEND="
$(python_gen_cond_dep '
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/pillow[truetype,${PYTHON_USEDEP}]
>dev-python/pyinquirer-1.0.3[${PYTHON_USEDEP}]
dev-python/colored[${PYTHON_USEDEP}]
dev-python/ascim[${PYTHON_USEDEP}]')
>=media-gfx/imagemagick-7"
BDEPEND="${RDEPEND}"