* [gentoo-commits] repo/proj/guru:master commit in: media-gfx/memethesis-cli/files/, media-gfx/memethesis-cli/
@ 2020-07-23 16:15 Andrew Ammerlaan
0 siblings, 0 replies; only message in thread
From: Andrew Ammerlaan @ 2020-07-23 16:15 UTC (permalink / raw
To: gentoo-commits
commit: fff6ba4178ff7e1814f27ecec055c6669870484b
Author: Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Wed Jul 22 14:13:43 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Jul 22 14:17:51 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fff6ba41
media-gfx/memethesis-cli: New package
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>
media-gfx/memethesis-cli/Manifest | 1 +
media-gfx/memethesis-cli/files/prompt.patch | 13 ++++++++
.../memethesis-cli/memethesis-cli-3.2.1.ebuild | 37 ++++++++++++++++++++++
.../memethesis-cli/memethesis-cli-9999.ebuild | 35 ++++++++++++++++++++
media-gfx/memethesis-cli/metadata.xml | 8 +++++
5 files changed, 94 insertions(+)
diff --git a/media-gfx/memethesis-cli/Manifest b/media-gfx/memethesis-cli/Manifest
new file mode 100644
index 0000000..ff0031b
--- /dev/null
+++ b/media-gfx/memethesis-cli/Manifest
@@ -0,0 +1 @@
+DIST memethesis-cli-3.2.1.tar.gz 2708404 BLAKE2B fb31de388f1f602f5f7e24a5e10ebe59c5ac628da05acc37c8b4204736f6dba9573e3b9ed0966b09b046fee3066a156807e983a081103a0d4258d9794b035b54 SHA512 d4737ae5bbbd1e32b0707cfadd5d521e2eabc567105218122dea31ab45b8ac57e3b677c1c83d76bf85605be82e3c06c2dd746141a153234a787140068eada183
diff --git a/media-gfx/memethesis-cli/files/prompt.patch b/media-gfx/memethesis-cli/files/prompt.patch
new file mode 100644
index 0000000..7eac4e7
--- /dev/null
+++ b/media-gfx/memethesis-cli/files/prompt.patch
@@ -0,0 +1,13 @@
+diff --git a/memethesis/interactive.py b/memethesis/interactive.py
+index aede6dc..4c069c6 100644
+--- a/memethesis/interactive.py
++++ b/memethesis/interactive.py
+@@ -1,7 +1,7 @@
+ import sys
+ import re
+ import yaml
+-from PyInquirer import prompt
++from PyInquirer.prompt import prompt
+ from .fancyprint import color, style
+ from .memethesizers import *
+ from .fonts import FONTS
diff --git a/media-gfx/memethesis-cli/memethesis-cli-3.2.1.ebuild b/media-gfx/memethesis-cli/memethesis-cli-3.2.1.ebuild
new file mode 100644
index 0000000..b232bbc
--- /dev/null
+++ b/media-gfx/memethesis-cli/memethesis-cli-3.2.1.ebuild
@@ -0,0 +1,37 @@
+# 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}]')
+ >=media-gfx/imagemagick-7"
+BDEPEND="${RDEPEND}"
diff --git a/media-gfx/memethesis-cli/memethesis-cli-9999.ebuild b/media-gfx/memethesis-cli/memethesis-cli-9999.ebuild
new file mode 100644
index 0000000..53700b7
--- /dev/null
+++ b/media-gfx/memethesis-cli/memethesis-cli-9999.ebuild
@@ -0,0 +1,35 @@
+# 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_{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}]')
+ >=media-gfx/imagemagick-7"
+BDEPEND="${RDEPEND}"
diff --git a/media-gfx/memethesis-cli/metadata.xml b/media-gfx/memethesis-cli/metadata.xml
new file mode 100644
index 0000000..e40cebf
--- /dev/null
+++ b/media-gfx/memethesis-cli/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>coppens.matthias.abc@gmail.com</email>
+ <name>Matthias Coppens</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-07-23 16:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-23 16:15 [gentoo-commits] repo/proj/guru:master commit in: media-gfx/memethesis-cli/files/, media-gfx/memethesis-cli/ Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox