Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/zutty/
Date: Sun, 31 Oct 2021 02:55:13
Message-Id: 1635648857.796bd960d8754a1b32f76520e0ac27945e2919ac.sam@gentoo
1 commit: 796bd960d8754a1b32f76520e0ac27945e2919ac
2 Author: Matt Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Thu Oct 28 16:12:19 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 02:54:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796bd960
7
8 x11-terms/zutty: Bump to 0.10
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
12 Closes: https://github.com/gentoo/gentoo/pull/22743
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 x11-terms/zutty/Manifest | 1 +
16 x11-terms/zutty/zutty-0.10.ebuild | 30 ++++++++++++++++++++++++++++++
17 2 files changed, 31 insertions(+)
18
19 diff --git a/x11-terms/zutty/Manifest b/x11-terms/zutty/Manifest
20 index b5a3a8ba9dc..6c7979a79c5 100644
21 --- a/x11-terms/zutty/Manifest
22 +++ b/x11-terms/zutty/Manifest
23 @@ -1 +1,2 @@
24 +DIST zutty-0.10.tar.gz 336599 BLAKE2B 0041bbbc268ff042bac6bea1984ebf05d958f622b4c2e736bfe3d18e3a224238f27a7ef9920b8f7bc820705ce7560f20819650ec27fb3e5fc13dbef76fc6d0af SHA512 f499fb499779f8b5936a03c48e3c042f5fa0f0c99d3b24a4c9b963c2df8151561ac82456625d768e65f75aea641539a036300f1f99404eecfd15a0a25aeb6779
25 DIST zutty-0.9.tar.gz 336534 BLAKE2B 61d2ae02e2c0b08a9c536190f61f14300b0cd1bacb83f5da33e92a6c8502df6adda72805e58f3d679c7258c30338178b4488c0f7bfbfaf8b5e922401e6442427 SHA512 590cf090c0d80e683d4473828cdb8bbe4f60bc5bc3c5e9e63039a59757e281ecefc774709f08777fe36ab596fb102f392c8bf643449e62914e5b88d0ebc728c0
26
27 diff --git a/x11-terms/zutty/zutty-0.10.ebuild b/x11-terms/zutty/zutty-0.10.ebuild
28 new file mode 100644
29 index 00000000000..ff5acfab391
30 --- /dev/null
31 +++ b/x11-terms/zutty/zutty-0.10.ebuild
32 @@ -0,0 +1,30 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{8,9} )
39 +PYTHON_REQ_USE="threads(+)"
40 +
41 +inherit python-any-r1 waf-utils
42 +
43 +DESCRIPTION="X terminal emulator rendering through OpenGL ES Compute Shaders"
44 +HOMEPAGE="https://tomscii.sig7.se/zutty/ https://github.com/tomszilagyi/zutty"
45 +SRC_URI="https://github.com/tomszilagyi/zutty/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="GPL-3+"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +
51 +RDEPEND="
52 + media-libs/freetype:2
53 + media-libs/libglvnd[X]
54 + x11-libs/libXmu
55 +"
56 +DEPEND="${RDEPEND}"
57 +BDEPEND="
58 + ${PYTHON_DEPS}
59 + virtual/pkgconfig
60 +"
61 +
62 +DOCS=( doc/KEYS.org doc/USAGE.org )