Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Font-AFM/
Date: Wed, 16 Sep 2020 10:11:52
Message-Id: 1600251098.0e9bbd93b1e69ffb79c076f94b2206fe86210f55.kentnl@gentoo
1 commit: 0e9bbd93b1e69ffb79c076f94b2206fe86210f55
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 10:11:02 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 10:11:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e9bbd93
7
8 dev-perl/Font-AFM: -r bump for EAPI7 + fixes
9
10 - EAPI7
11 - Parallel tests
12 - Pull htmldoc for tests as its the easiest source of Helvetica.afm
13 consumed by the test suite. As it stands, no single package seems to
14 be an authoritative way to get this file, and lots of different
15 packages ship their own copy.
16
17 Package-Manager: Portage-3.0.4, Repoman-3.0.1
18 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
19
20 dev-perl/Font-AFM/Font-AFM-1.200.0-r2.ebuild | 24 ++++++++++++++++++++++++
21 1 file changed, 24 insertions(+)
22
23 diff --git a/dev-perl/Font-AFM/Font-AFM-1.200.0-r2.ebuild b/dev-perl/Font-AFM/Font-AFM-1.200.0-r2.ebuild
24 new file mode 100644
25 index 00000000000..05a0c85a67c
26 --- /dev/null
27 +++ b/dev-perl/Font-AFM/Font-AFM-1.200.0-r2.ebuild
28 @@ -0,0 +1,24 @@
29 +# Copyright 1999-2020 Gentoo Authors
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=7
33 +
34 +DIST_AUTHOR=GAAS
35 +DIST_VERSION=1.20
36 +inherit perl-module
37 +
38 +DESCRIPTION="Parse Adobe Font Metric files"
39 +
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
42 +IUSE="test"
43 +RESTRICT="!test? ( test )"
44 +
45 +BDEPEND="
46 + test? (
47 + app-text/htmldoc
48 + )
49 +"
50 +src_test() {
51 + METRICS="${EPREFIX}/usr/share/htmldoc/fonts" perl-module_src_test
52 +}