Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/streamdeck-ui/
Date: Fri, 22 May 2020 17:23:22
Message-Id: 1590168131.e21afa26df49217beb52db57ff86962908942a73.zerochaos@gentoo
1 commit: e21afa26df49217beb52db57ff86962908942a73
2 Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 22 16:50:40 2020 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Fri May 22 17:22:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21afa26
7
8 media-video/streamdeck-ui: initial ebuild
9
10 I'm sure it's wrong
11
12 Package-Manager: Portage-2.3.99, Repoman-2.3.22
13 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
14
15 media-video/streamdeck-ui/Manifest | 1 +
16 media-video/streamdeck-ui/metadata.xml | 11 ++++++++
17 .../streamdeck-ui-0.0_p20200102.ebuild | 32 ++++++++++++++++++++++
18 .../streamdeck-ui/streamdeck-ui-9999.ebuild | 32 ++++++++++++++++++++++
19 4 files changed, 76 insertions(+)
20
21 diff --git a/media-video/streamdeck-ui/Manifest b/media-video/streamdeck-ui/Manifest
22 new file mode 100644
23 index 00000000000..979a7f4293c
24 --- /dev/null
25 +++ b/media-video/streamdeck-ui/Manifest
26 @@ -0,0 +1 @@
27 +DIST streamdeck-ui-0.0_p20200102.tar.gz 2512712 BLAKE2B f5abad75c77410127f51de0e4ad7ce112f59ff3652afa32f9aefe44cbb69e16a09991322091ba39d259d9bb1e35dd0833a1b58457d095f21eec258b8967ded9e SHA512 345d0a2cfadb23e20925749e06e99976d533968fffe8b6db77dfeffbb1716c4042f84e6c1c616e0986e7da3592be2046f2a6e0de1942da34b6712de70cdce649
28
29 diff --git a/media-video/streamdeck-ui/metadata.xml b/media-video/streamdeck-ui/metadata.xml
30 new file mode 100644
31 index 00000000000..64951f439f8
32 --- /dev/null
33 +++ b/media-video/streamdeck-ui/metadata.xml
34 @@ -0,0 +1,11 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>sidhayn@×××××.com</email>
40 + <name>Rick Farina</name>
41 + </maintainer>
42 + <upstream>
43 + <remote-id type="github">timothycrosley/streamdeck-ui</remote-id>
44 + </upstream>
45 +</pkgmetadata>
46
47 diff --git a/media-video/streamdeck-ui/streamdeck-ui-0.0_p20200102.ebuild b/media-video/streamdeck-ui/streamdeck-ui-0.0_p20200102.ebuild
48 new file mode 100644
49 index 00000000000..310b80a7832
50 --- /dev/null
51 +++ b/media-video/streamdeck-ui/streamdeck-ui-0.0_p20200102.ebuild
52 @@ -0,0 +1,32 @@
53 +# Copyright 2020 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +PYTHON_COMPAT=( python3_{6,7,8} )
59 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
60 +inherit distutils-r1
61 +
62 +DESCRIPTION="A Linux compatible UI for the Elgato Stream Deck"
63 +HOMEPAGE="https://github.com/timothycrosley/streamdeck-ui"
64 +if [ "${PV}" = "9999" ]; then
65 + inherit git-r3
66 + EGIT_REPO_URI="https://github.com/timothycrosley/streamdeck-ui.git"
67 +else
68 + COMMIT="9b6678d2d3027963ddac147ee3aeda322ec77f29"
69 + SRC_URI="https://github.com/timothycrosley/streamdeck-ui/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
70 + S="${WORKDIR}/${PN}-${COMMIT}"
71 + KEYWORDS="~amd64 ~x86"
72 +fi
73 +
74 +LICENSE="MIT"
75 +SLOT="0"
76 +IUSE=""
77 +
78 +DEPEND="${PYTHON_DEPS}
79 + dev-python/pillow[${PYTHON_USEDEP}]
80 + dev-python/pynput[${PYTHON_USEDEP}]
81 + dev-python/pyside2[${PYTHON_USEDEP}]
82 + media-libs/elgato-streamdeck[${PYTHON_USEDEP}]
83 + dev-libs/hidapi"
84 +RDEPEND="${DEPEND}"
85
86 diff --git a/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild b/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild
87 new file mode 100644
88 index 00000000000..310b80a7832
89 --- /dev/null
90 +++ b/media-video/streamdeck-ui/streamdeck-ui-9999.ebuild
91 @@ -0,0 +1,32 @@
92 +# Copyright 2020 Gentoo Authors
93 +# Distributed under the terms of the GNU General Public License v2
94 +
95 +EAPI=7
96 +
97 +PYTHON_COMPAT=( python3_{6,7,8} )
98 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
99 +inherit distutils-r1
100 +
101 +DESCRIPTION="A Linux compatible UI for the Elgato Stream Deck"
102 +HOMEPAGE="https://github.com/timothycrosley/streamdeck-ui"
103 +if [ "${PV}" = "9999" ]; then
104 + inherit git-r3
105 + EGIT_REPO_URI="https://github.com/timothycrosley/streamdeck-ui.git"
106 +else
107 + COMMIT="9b6678d2d3027963ddac147ee3aeda322ec77f29"
108 + SRC_URI="https://github.com/timothycrosley/streamdeck-ui/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
109 + S="${WORKDIR}/${PN}-${COMMIT}"
110 + KEYWORDS="~amd64 ~x86"
111 +fi
112 +
113 +LICENSE="MIT"
114 +SLOT="0"
115 +IUSE=""
116 +
117 +DEPEND="${PYTHON_DEPS}
118 + dev-python/pillow[${PYTHON_USEDEP}]
119 + dev-python/pynput[${PYTHON_USEDEP}]
120 + dev-python/pyside2[${PYTHON_USEDEP}]
121 + media-libs/elgato-streamdeck[${PYTHON_USEDEP}]
122 + dev-libs/hidapi"
123 +RDEPEND="${DEPEND}"