Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-fonts/last-resort/
Date: Sun, 05 Dec 2021 20:17:17
Message-Id: 1638734741.600dde12aef5417a4105750b4eb6a49bf34714e6.cybertailor@gentoo
1 commit: 600dde12aef5417a4105750b4eb6a49bf34714e6
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Sun Dec 5 20:01:35 2021 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Sun Dec 5 20:05:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=600dde12
7
8 media-fonts/last-resort: add 14.000
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 media-fonts/last-resort/Manifest | 1 +
13 media-fonts/last-resort/last-resort-14.000.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/media-fonts/last-resort/Manifest b/media-fonts/last-resort/Manifest
17 index 254eb671d..56100ec96 100644
18 --- a/media-fonts/last-resort/Manifest
19 +++ b/media-fonts/last-resort/Manifest
20 @@ -1 +1,2 @@
21 DIST last-resort-13.001.ttf 502504 BLAKE2B 94abe6bc8571510ad212e47bbad9d7b7508ece4a29731aae0bdd0cc6374a5608803da7260d30339787c8b50e729a00edc7ff314140bbc54c22afb220a92334a1 SHA512 d705a071fe40d621a46a2dd19df9c1a66e02284de782f73451aa3939773ca90bcfb87e40d13ae12c8bfa3c6965569ef1c85c66096e07d32c572cc779d5f8273e
22 +DIST last-resort-14.000.ttf 518424 BLAKE2B e91d9f03e2605ea003977e0e4bab57f198c5cec09606bbae13bbaa88a66b9cb85536410aec8406cec88760b9a80a406cda19c4dd107c1286861ec7f8ce84fce6 SHA512 d846f71576b4c8d36d25e6a4e9b289a92a55d914b79fb04a8851d2083fba8d2fb3d24adf5c62e46e760580920c9bc19bb3c025bea48d3d3216453bb3fe414293
23
24 diff --git a/media-fonts/last-resort/last-resort-14.000.ebuild b/media-fonts/last-resort/last-resort-14.000.ebuild
25 new file mode 100644
26 index 000000000..e4fa215ba
27 --- /dev/null
28 +++ b/media-fonts/last-resort/last-resort-14.000.ebuild
29 @@ -0,0 +1,21 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit font
36 +
37 +DESCRIPTION='A collection of glyphs used as the backup of "last resort" to any other font'
38 +HOMEPAGE="https://github.com/unicode-org/last-resort-font"
39 +SRC_URI="https://github.com/unicode-org/${PN}-font/releases/download/${PV}/LastResortHE-Regular.ttf -> ${P}.ttf"
40 +S="${WORKDIR}"
41 +
42 +LICENSE="OFL-1.1"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +FONT_SUFFIX="ttf"
47 +
48 +src_unpack() {
49 + cp "${DISTDIR}/${A}" "${S}/${PN}.${FONT_SUFFIX}" || die
50 +}