Files
guru/media-gfx/memethesis-cli/memethesis-cli-3.2.1.ebuild
Matthias Coppens 3a29af0c81 media-gfx/memethesis-cli: Added dependency
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc@gmail.com>
2020-07-22 17:50:26 +02:00

39 lines
962 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"
# pyinquirer's latest version is outdated, so memethesis depends
# on a live ebuild for pyinquirer at the moment
KEYWORDS=""
esac
DISTUTILS_USE_SETUPTOOLS=rdepend
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python3_{6,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}"