From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 01D9E158042 for ; Fri, 25 Oct 2024 02:45:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D48BE0788; Fri, 25 Oct 2024 02:45:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F5C5E0788 for ; Fri, 25 Oct 2024 02:45:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F15AA342FA8 for ; Fri, 25 Oct 2024 02:45:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2161AAE7 for ; Fri, 25 Oct 2024 02:45:24 +0000 (UTC) From: "Alec Stewart" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alec Stewart" Message-ID: <1729824140.b7f44fd5cf34d492980f037f7d9e4918b543c3bf.alec-stewart@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-fonts/atkinson-hyperlegible/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-fonts/atkinson-hyperlegible/Manifest media-fonts/atkinson-hyperlegible/atkinson-hyperlegible-20200514.ebuild X-VCS-Directories: media-fonts/atkinson-hyperlegible/ X-VCS-Committer: alec-stewart X-VCS-Committer-Name: Alec Stewart X-VCS-Revision: b7f44fd5cf34d492980f037f7d9e4918b543c3bf X-VCS-Branch: dev Date: Fri, 25 Oct 2024 02:45:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e863f228-4d4b-4beb-a775-1e074d5d926f X-Archives-Hash: 38a58e05ed249479f6cc139af84a1e3c commit: b7f44fd5cf34d492980f037f7d9e4918b543c3bf Author: Alec Stewart protonmail com> AuthorDate: Fri Oct 25 02:42:20 2024 +0000 Commit: Alec Stewart protonmail com> CommitDate: Fri Oct 25 02:42:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7f44fd5 media-fonts/atkinson-hyperlegible: new package, add 20200514 Signed-off-by: Alec Stewart protonmail.com> media-fonts/atkinson-hyperlegible/Manifest | 1 + .../atkinson-hyperlegible-20200514.ebuild | 36 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/media-fonts/atkinson-hyperlegible/Manifest b/media-fonts/atkinson-hyperlegible/Manifest new file mode 100644 index 000000000..0e73089b3 --- /dev/null +++ b/media-fonts/atkinson-hyperlegible/Manifest @@ -0,0 +1 @@ +DIST atkinson-hyperlegible-20200514.zip 574460 BLAKE2B 06fdbe9337fd161be1fa0f5b906ecb89a0b01c0ace2fe2cede8a0db8b0b896d239f2b688f94f2c476f0769e41e4179fe5cb16d22da65a623440cb4563113b085 SHA512 869e4a477caac906731494daa6db216f621fd75231aeb94053a412ff1c3752726c873895a785b138d3a74dc721a06925b791ccf1a3cdaddd52edc99c4188a0bd diff --git a/media-fonts/atkinson-hyperlegible/atkinson-hyperlegible-20200514.ebuild b/media-fonts/atkinson-hyperlegible/atkinson-hyperlegible-20200514.ebuild new file mode 100644 index 000000000..54d4fa1e2 --- /dev/null +++ b/media-fonts/atkinson-hyperlegible/atkinson-hyperlegible-20200514.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit font + +DESCRIPTION="Braille Institute's Atkinson Hyperlegible font." +HOMEPAGE="https://www.brailleinstitute.org/freefont/" + +MY_PV="2020-0514" +SRC_URI="https://www.brailleinstitute.org/atkinson-hyperlegible-font/Atkinson-Hyperlegible-Font-Print-and-Web-${MY_PV}.zip -> ${P}.zip" +S="${WORKDIR}/Atkinson-Hyperlegible-Font-Print-and-Web-${MY_PV}" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86" + +IUSE="otf +ttf" +REQUIRED_USE="^^ ( otf ttf )" + +BDEPEND="app-arch/unzip" + +FONT_SUFFIX="" + +src_install() { + if use otf; then + FONT_SUFFIX+="otf" + FONT_S=( "Print Fonts/" ) + fi + if use ttf; then + FONT_SUFFIX+="ttf" + FONT_S=( "Web Fonts/TTF" ) + fi + font_src_install +}