Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/
Date: Thu, 06 Jan 2022 00:13:05
Message-Id: 1641427971.34e3733f276f928b3cc835a7597570fe07d81ecd.mgorny@gentoo
1 commit: 34e3733f276f928b3cc835a7597570fe07d81ecd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 5 19:55:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 6 00:12:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34e3733f
7
8 dev-python/fonttools: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fonttools/Manifest | 2 --
13 dev-python/fonttools/fonttools-4.28.2.ebuild | 54 ----------------------------
14 dev-python/fonttools/fonttools-4.28.3.ebuild | 54 ----------------------------
15 3 files changed, 110 deletions(-)
16
17 diff --git a/dev-python/fonttools/Manifest b/dev-python/fonttools/Manifest
18 index fee34bbd7204..56b02a28dec3 100644
19 --- a/dev-python/fonttools/Manifest
20 +++ b/dev-python/fonttools/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST fonttools-4.28.2.tar.gz 2940111 BLAKE2B 32f67f2c270520d9e2091052242e504b9a8e459a87f233e22f50bfe3d17309a09a3c7ad5da20a3411df1c7c58b790dd395535407fdeddb02e7391c28d8d08fa3 SHA512 0295c571e92e71f6467b06bd89afacae76861e374147a2051fe3f5323176c3f3458b977ba2ed25cadcdba9e55b325b6febc50bc9c539d8806471730a15faed47
23 -DIST fonttools-4.28.3.tar.gz 2944993 BLAKE2B bac7408759ae2854023d5e6f840eb34d431daf0e14ec9fd8d4ac2ecc4ea8e473456611c3531b9131035164f69ba2363a3835206d068b71d4a2ae6ec179d2a32d SHA512 b90d05cedbd06f476c210f2961ebd11c64043785ef43fda2b81fd22126b12642ab63e51363bc22524bb18ee781fa9a8a71edb187b6c69fbf838e0c20f3c9ba0b
24 DIST fonttools-4.28.4.tar.gz 2945369 BLAKE2B f178552aca7b41dcec1c03d2a7c3de17cdb5f4b2e057a75e196e78a098b9959a038a9a3b14ee8546d5ea12e3546c22d2a8d9b34a922c0822bf52f78bc03f4f54 SHA512 9ecdf4186e24a8a44c6010432d71f1689ebf8461a404dde71259eb4712c4987d94bbe31b33ad6943fb2e0105fc9f8e9032a94e6ccbb4ac01fe330bb700a39c63
25 DIST fonttools-4.28.5.tar.gz 2948092 BLAKE2B b35f4be68cfc2be6afb209c2caee38f7088a1a17dea85fac0f40183b61a3eded59fab47f703587097669f8823a8dbc2e84b0df58305597784bed7f8c2e2b0f28 SHA512 5d87f4fadbcb447d1c1a1e97550f6a477d74bfe8647d14b35097e03e6a45a1a01632d2092483d675c523f97d4a04f39aa9b3175e535b1e1a4f19d619eb40ad5f
26
27 diff --git a/dev-python/fonttools/fonttools-4.28.2.ebuild b/dev-python/fonttools/fonttools-4.28.2.ebuild
28 deleted file mode 100644
29 index 1a9728384281..000000000000
30 --- a/dev-python/fonttools/fonttools-4.28.2.ebuild
31 +++ /dev/null
32 @@ -1,54 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=8
37 -
38 -PYTHON_COMPAT=( python3_{8..10} )
39 -PYTHON_REQ_USE="xml(+)"
40 -
41 -inherit distutils-r1 virtualx
42 -
43 -DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
44 -HOMEPAGE="https://github.com/fonttools/fonttools/"
45 -SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86 ~x64-macos"
50 -
51 -RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
52 -BDEPEND="
53 - ${RDEPEND}
54 - dev-python/cython[${PYTHON_USEDEP}]
55 - test? (
56 - app-arch/brotli[python,${PYTHON_USEDEP}]
57 - app-arch/zopfli
58 - )"
59 -
60 -distutils_enable_tests pytest
61 -
62 -python_prepare_all() {
63 - # When dev-python/pytest-shutil is installed, we get weird import errors.
64 - # This is due to incomplete nesting in the Tests/ tree:
65 - #
66 - # Tests/feaLib/__init__.py
67 - # Tests/ufoLib/__init__.py
68 - # Tests/svgLib/path/__init__.py
69 - # Tests/otlLib/__init__.py
70 - # Tests/varLib/__init__.py
71 - #
72 - # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
73 - touch Tests/svgLib/__init__.py || die
74 -
75 - distutils-r1_python_prepare_all
76 -}
77 -
78 -src_configure() {
79 - DISTUTILS_ARGS=( --with-cython )
80 -}
81 -
82 -python_test() {
83 - distutils_install_for_testing
84 - # virtualx used when matplotlib is installed causing plot module tests to run
85 - virtx epytest Tests fontTools
86 -}
87
88 diff --git a/dev-python/fonttools/fonttools-4.28.3.ebuild b/dev-python/fonttools/fonttools-4.28.3.ebuild
89 deleted file mode 100644
90 index b98e2fa9734d..000000000000
91 --- a/dev-python/fonttools/fonttools-4.28.3.ebuild
92 +++ /dev/null
93 @@ -1,54 +0,0 @@
94 -# Copyright 1999-2021 Gentoo Authors
95 -# Distributed under the terms of the GNU General Public License v2
96 -
97 -EAPI=8
98 -
99 -PYTHON_COMPAT=( python3_{8..10} )
100 -PYTHON_REQ_USE="xml(+)"
101 -
102 -inherit distutils-r1 virtualx
103 -
104 -DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
105 -HOMEPAGE="https://github.com/fonttools/fonttools/"
106 -SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> ${P}.tar.gz"
107 -
108 -LICENSE="BSD"
109 -SLOT="0"
110 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
111 -
112 -RDEPEND=">=dev-python/fs-2.4.9[${PYTHON_USEDEP}]"
113 -BDEPEND="
114 - ${RDEPEND}
115 - dev-python/cython[${PYTHON_USEDEP}]
116 - test? (
117 - app-arch/brotli[python,${PYTHON_USEDEP}]
118 - app-arch/zopfli
119 - )"
120 -
121 -distutils_enable_tests pytest
122 -
123 -python_prepare_all() {
124 - # When dev-python/pytest-shutil is installed, we get weird import errors.
125 - # This is due to incomplete nesting in the Tests/ tree:
126 - #
127 - # Tests/feaLib/__init__.py
128 - # Tests/ufoLib/__init__.py
129 - # Tests/svgLib/path/__init__.py
130 - # Tests/otlLib/__init__.py
131 - # Tests/varLib/__init__.py
132 - #
133 - # This tree requires an __init__.py in Tests/svgLib/ too, bug #701148.
134 - touch Tests/svgLib/__init__.py || die
135 -
136 - distutils-r1_python_prepare_all
137 -}
138 -
139 -src_configure() {
140 - DISTUTILS_ARGS=( --with-cython )
141 -}
142 -
143 -python_test() {
144 - distutils_install_for_testing
145 - # virtualx used when matplotlib is installed causing plot module tests to run
146 - virtx epytest Tests fontTools
147 -}