diff options
author | 2020-04-24 00:05:15 +0200 | |
---|---|---|
committer | 2020-04-26 16:36:47 +0300 | |
commit | 8db75f8ab3c53513b2e4ef7b6105d4cde8177183 (patch) | |
tree | 661e5d2a48a4a05d4e73d5d6002ca34513f75d11 /games-misc/doge/doge-3.6.0.ebuild | |
parent | app-benchmarks/siege: remove duplicate dep (diff) | |
download | gentoo-8db75f8ab3c53513b2e4ef7b6105d4cde8177183.tar.gz gentoo-8db75f8ab3c53513b2e4ef7b6105d4cde8177183.tar.bz2 gentoo-8db75f8ab3c53513b2e4ef7b6105d4cde8177183.zip |
games-misc/doge: add version 3.6.0
Add support for Python 3.7 and 3.8
Closes: https://bugs.gentoo.org/718312
Signed-off-by: Robert Siebeck <gentoo.2019@r123.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'games-misc/doge/doge-3.6.0.ebuild')
-rw-r--r-- | games-misc/doge/doge-3.6.0.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/games-misc/doge/doge-3.6.0.ebuild b/games-misc/doge/doge-3.6.0.ebuild new file mode 100644 index 000000000000..36625722226f --- /dev/null +++ b/games-misc/doge/doge-3.6.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +DESCRIPTION="wow very terminal doge" +HOMEPAGE="https://github.com/thiderman/doge https://pypi.org/project/doge/" +SRC_URI="https://github.com/thiderman/doge/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + sys-process/procps +" |