Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/glooey/
Date: Wed, 16 Sep 2020 14:56:21
Message-Id: 1600268165.50b2dbcd174a8bf3807485646ced794bb6b01756.expeditioneer@gentoo
1 commit: 50b2dbcd174a8bf3807485646ced794bb6b01756
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 14:03:29 2020 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 14:56:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b2dbcd
7
8 dev-python/glooey: new package
9
10 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
11 Closes: https://github.com/gentoo/gentoo/pull/17565
12 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
13
14 dev-python/glooey/Manifest | 1 +
15 dev-python/glooey/glooey-0.3.1.ebuild | 33 +++++++++++++++++++++++++++++++++
16 dev-python/glooey/metadata.xml | 20 ++++++++++++++++++++
17 3 files changed, 54 insertions(+)
18
19 diff --git a/dev-python/glooey/Manifest b/dev-python/glooey/Manifest
20 new file mode 100644
21 index 00000000000..f4987002ca4
22 --- /dev/null
23 +++ b/dev-python/glooey/Manifest
24 @@ -0,0 +1 @@
25 +DIST glooey-0.3.1.tar.gz 19110562 BLAKE2B 252621789def523e3f8535ff6d72d3b5e71664cc5a0b2b4440b64be8170c08f275709c1771d2ab154349da643a521dae352e711b7f0a705f0e6eaeb1bd842932 SHA512 c804125bc9ccd9f2b44cc5fcf5a0c7353402aa8587641fc75870bf0c2474c449936dd41ddc641050009f32dbaef4e05fecd4c60c477c0c89512a02028f957c65
26
27 diff --git a/dev-python/glooey/glooey-0.3.1.ebuild b/dev-python/glooey/glooey-0.3.1.ebuild
28 new file mode 100644
29 index 00000000000..f6ee41b5d1c
30 --- /dev/null
31 +++ b/dev-python/glooey/glooey-0.3.1.ebuild
32 @@ -0,0 +1,33 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=(python3_{6..9})
39 +
40 +inherit distutils-r1 virtualx
41 +
42 +DESCRIPTION="An object-oriented GUI library for pyglet"
43 +HOMEPAGE="https://glooey.readthedocs.io/en/latest/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +LICENSE="MIT"
46 +
47 +KEYWORDS="~amd64"
48 +SLOT="0"
49 +
50 +RDEPEND="
51 + dev-python/autoprop[${PYTHON_USEDEP}]
52 + dev-python/more-itertools[${PYTHON_USEDEP}]
53 + dev-python/pyglet[${PYTHON_USEDEP}]
54 + dev-python/vecrec[${PYTHON_USEDEP}]
55 +"
56 +
57 +BDEPEND="${RDEPEND}"
58 +
59 +distutils_enable_sphinx docs
60 +
61 +distutils_enable_tests pytest
62 +
63 +src_test() {
64 + virtx distutils-r1_src_test
65 +}
66
67 diff --git a/dev-python/glooey/metadata.xml b/dev-python/glooey/metadata.xml
68 new file mode 100644
69 index 00000000000..28c0e77535a
70 --- /dev/null
71 +++ b/dev-python/glooey/metadata.xml
72 @@ -0,0 +1,20 @@
73 +<?xml version="1.0" encoding="UTF-8"?>
74 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
75 +<pkgmetadata>
76 + <maintainer type="project">
77 + <email>3dprint@g.o</email>
78 + <name>Gentoo 3D Printer Project</name>
79 + </maintainer>
80 + <longdescription>
81 + Every game needs a user interface that matches its look and feel. The purpose of glooey is to help you make
82 + such an interface. Towards this end, glooey provides 7 powerful placement widgets, a label widget, an image
83 + widget, 3 different button widgets, a text entry widget, a variety of scroll boxes and bars, 4 different dialog
84 + box widgets, and a variety of other miscellaneous widgets. The appearance of any widget can be trivially
85 + customized, and glooey comes with built-in fantasy, puzzle, and 8-bit themes to prove it (and to help you hit
86 + the ground running if your game fits one of those genres).
87 + </longdescription>
88 + <upstream>
89 + <remote-id type="github">kxgames/glooey</remote-id>
90 + <remote-id type="pypi">glooey</remote-id>
91 + </upstream>
92 +</pkgmetadata>