diff options
author | Rick Farina <zerochaos@gentoo.org> | 2020-05-22 12:50:40 -0400 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2020-05-22 13:22:11 -0400 |
commit | e21afa26df49217beb52db57ff86962908942a73 (patch) | |
tree | a8a7481566f1daec1c145bf12f6d1e5257342303 /media-video/streamdeck-ui/streamdeck-ui-9999.ebuild | |
parent | dev-python/pyside2: adding ~x86 (diff) | |
download | gentoo-e21afa26df49217beb52db57ff86962908942a73.tar.gz gentoo-e21afa26df49217beb52db57ff86962908942a73.tar.bz2 gentoo-e21afa26df49217beb52db57ff86962908942a73.zip |
media-video/streamdeck-ui: initial ebuild
I'm sure it's wrong
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'media-video/streamdeck-ui/streamdeck-ui-9999.ebuild')
-rw-r--r-- | media-video/streamdeck-ui/streamdeck-ui-9999.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild b/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild new file mode 100644 index 000000000000..310b80a78328 --- /dev/null +++ b/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="A Linux compatible UI for the Elgato Stream Deck" +HOMEPAGE="https://github.com/timothycrosley/streamdeck-ui" +if [ "${PV}" = "9999" ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/timothycrosley/streamdeck-ui.git" +else + COMMIT="9b6678d2d3027963ddac147ee3aeda322ec77f29" + SRC_URI="https://github.com/timothycrosley/streamdeck-ui/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}-${COMMIT}" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="${PYTHON_DEPS} + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pynput[${PYTHON_USEDEP}] + dev-python/pyside2[${PYTHON_USEDEP}] + media-libs/elgato-streamdeck[${PYTHON_USEDEP}] + dev-libs/hidapi" +RDEPEND="${DEPEND}" |