Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/zutty/, x11-terms/zutty/files/
Date: Fri, 21 Jan 2022 07:09:01
Message-Id: 1642746805.ab2e99d5cbe833cdc0d613acd983d65f4212b646.juippis@gentoo
1 commit: ab2e99d5cbe833cdc0d613acd983d65f4212b646
2 Author: Matthew Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Sat Jan 1 15:12:59 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 06:33:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab2e99d5
7
8 x11-terms/zutty: drop 0.9-r1
9
10 Signed-off-by: Matthew Smith <matt <AT> offtopica.uk>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 x11-terms/zutty/Manifest | 1 -
14 .../zutty/files/zutty-0.9-freetype-2.11.0.patch | 35 ----------------------
15 x11-terms/zutty/zutty-0.9-r1.ebuild | 35 ----------------------
16 3 files changed, 71 deletions(-)
17
18 diff --git a/x11-terms/zutty/Manifest b/x11-terms/zutty/Manifest
19 index 82bcff18958f..277e99a771b8 100644
20 --- a/x11-terms/zutty/Manifest
21 +++ b/x11-terms/zutty/Manifest
22 @@ -1,3 +1,2 @@
23 DIST zutty-0.10.tar.gz 336599 BLAKE2B 0041bbbc268ff042bac6bea1984ebf05d958f622b4c2e736bfe3d18e3a224238f27a7ef9920b8f7bc820705ce7560f20819650ec27fb3e5fc13dbef76fc6d0af SHA512 f499fb499779f8b5936a03c48e3c042f5fa0f0c99d3b24a4c9b963c2df8151561ac82456625d768e65f75aea641539a036300f1f99404eecfd15a0a25aeb6779
24 DIST zutty-0.11.tar.gz 343469 BLAKE2B 9cd040e72d0ea76a526d099265b3a0974d40b1b8b679ff3baafc47f827b140943ac8bc13676831245e219ca1335ded7aca1e7826baf175fc63e88012791785e1 SHA512 84e8402a310adc80c698ded38fa3eb8ba44034f391e2538bccbdbc4082e239dc0d6ceb20504eeab4e5d2499ded55ef0941ae2e5d07eeb809d1059e5449cdb708
25 -DIST zutty-0.9.tar.gz 336534 BLAKE2B 61d2ae02e2c0b08a9c536190f61f14300b0cd1bacb83f5da33e92a6c8502df6adda72805e58f3d679c7258c30338178b4488c0f7bfbfaf8b5e922401e6442427 SHA512 590cf090c0d80e683d4473828cdb8bbe4f60bc5bc3c5e9e63039a59757e281ecefc774709f08777fe36ab596fb102f392c8bf643449e62914e5b88d0ebc728c0
26
27 diff --git a/x11-terms/zutty/files/zutty-0.9-freetype-2.11.0.patch b/x11-terms/zutty/files/zutty-0.9-freetype-2.11.0.patch
28 deleted file mode 100644
29 index b5d62204e6be..000000000000
30 --- a/x11-terms/zutty/files/zutty-0.9-freetype-2.11.0.patch
31 +++ /dev/null
32 @@ -1,35 +0,0 @@
33 -From c73c99d6b024047d9f9e53e263be56093b6bf986 Mon Sep 17 00:00:00 2001
34 -From: Matt Smith <matt@×××××××××.uk>
35 -Date: Sun, 29 Aug 2021 19:15:01 +0100
36 -Subject: [PATCH] Prevent rendering glyphs twice
37 -
38 -Characters are loaded with FT_LOAD_RENDER. Calling FT_Render_Glyph
39 -again causes an error in Freetype 2.11.0 and later.
40 -
41 -Thanks to Stephan Hartmann <sultan@g.o> for debugging and creating initial patch.
42 -
43 -Bug: https://bugs.gentoo.org/809611
44 ----
45 - src/font.cc | 6 ------
46 - 1 file changed, 6 deletions(-)
47 -
48 -diff --git a/src/font.cc b/src/font.cc
49 -index f8da582..350a1a6 100644
50 ---- a/src/font.cc
51 -+++ b/src/font.cc
52 -@@ -255,12 +255,6 @@ namespace zutty
53 - std::to_string (c));
54 - }
55 -
56 -- if (FT_Render_Glyph (face->glyph, FT_RENDER_MODE_NORMAL))
57 -- throw std::runtime_error (
58 -- std::string ("FreeType: Failed to render glyph for char ") +
59 -- std::to_string (c));
60 --
61 --
62 - // destination pixel offset
63 - const unsigned int dx = face->glyph->bitmap_left > 0
64 - ? face->glyph->bitmap_left : 0;
65 ---
66 -2.33.0
67 -
68
69 diff --git a/x11-terms/zutty/zutty-0.9-r1.ebuild b/x11-terms/zutty/zutty-0.9-r1.ebuild
70 deleted file mode 100644
71 index cdf1da5f9cd0..000000000000
72 --- a/x11-terms/zutty/zutty-0.9-r1.ebuild
73 +++ /dev/null
74 @@ -1,35 +0,0 @@
75 -# Copyright 1999-2021 Gentoo Authors
76 -# Distributed under the terms of the GNU General Public License v2
77 -
78 -EAPI=7
79 -
80 -PYTHON_COMPAT=( python3_{7,8,9} )
81 -PYTHON_REQ_USE="threads(+)"
82 -
83 -inherit python-any-r1 waf-utils
84 -
85 -DESCRIPTION="X terminal emulator rendering through OpenGL ES Compute Shaders"
86 -HOMEPAGE="https://tomscii.sig7.se/zutty/ https://github.com/tomszilagyi/zutty"
87 -SRC_URI="https://github.com/tomszilagyi/zutty/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
88 -
89 -LICENSE="GPL-3+"
90 -SLOT="0"
91 -KEYWORDS="amd64"
92 -
93 -RDEPEND="
94 - media-libs/freetype:2
95 - media-libs/libglvnd[X]
96 - x11-libs/libXmu
97 -"
98 -DEPEND="${RDEPEND}"
99 -BDEPEND="
100 - ${PYTHON_DEPS}
101 - virtual/pkgconfig
102 -"
103 -
104 -PATCHES=(
105 - # Bug 809611
106 - "${FILESDIR}"/${PN}-0.9-freetype-2.11.0.patch
107 -)
108 -
109 -DOCS=( doc/KEYS.org doc/USAGE.org )