From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F1AA11384B4 for ; Fri, 20 Nov 2015 09:25:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7405721C016; Fri, 20 Nov 2015 09:25:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2398521C016 for ; Fri, 20 Nov 2015 09:25:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2ABBE340A7B for ; Fri, 20 Nov 2015 09:25:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 704E9A44 for ; Fri, 20 Nov 2015 09:25:05 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1448011478.1243338e45bf4d344ffab84a6fc145de2cec20a7.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/hack/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/hack/Manifest media-fonts/hack/hack-2.018.ebuild X-VCS-Directories: media-fonts/hack/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 1243338e45bf4d344ffab84a6fc145de2cec20a7 X-VCS-Branch: master Date: Fri, 20 Nov 2015 09:25:05 +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-Archives-Salt: 81fb6f0c-a071-4f1d-98c4-40e085e743b4 X-Archives-Hash: b3972d29cf45ac80da89af71d41daee1 commit: 1243338e45bf4d344ffab84a6fc145de2cec20a7 Author: Guilherme Amadio gentoo org> AuthorDate: Fri Nov 20 09:24:30 2015 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Fri Nov 20 09:24:38 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1243338e media-fonts/hack: version bump to 2.018 Package-Manager: portage-2.2.25 media-fonts/hack/Manifest | 1 + media-fonts/hack/hack-2.018.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/media-fonts/hack/Manifest b/media-fonts/hack/Manifest index 5a77c5a..1ad61d9 100644 --- a/media-fonts/hack/Manifest +++ b/media-fonts/hack/Manifest @@ -1 +1,2 @@ DIST Hack-v2_010-otf.zip 450300 SHA256 de757b2dd1b6383505ff1e73845db482dccf7561a1133fe5e776e02f82bf5e9d SHA512 2aba7ce05a74c7c6ea2965c48491155790de4ba2a8865cb8297fdd40537108814e4b1c38654eb3eabd01d1acee6b12686a631f2a6bf27e8809b8c7192bc62c2a WHIRLPOOL 166343ed851780272b8da8c5f091a498a3afdf9c6d16fa325d3135fe8751fd679fa22449de9ef3a1696a9f4544e6647303f6d006aa593f5d3f563c03c3353c4d +DIST Hack-v2_018-otf.zip 466060 SHA256 43df71895cb8b5b0e14f2880a8ce2617064dcc36cf229e5682f1e06513a46046 SHA512 ca34994a0cbf5cb6be2b56c84a52b66b98d08f0d5ddcd2169a263b52fe33c323209f27dad3017c175ed3fdd321017bd43670f2dbedf8a4a927f7b4b4b7e056a5 WHIRLPOOL 18fc8fe050f3262f73fbee2827229456433ae1ee22abd0b2c5918e1cea9a679f1ef912af9bb373035ae3ac310ea73dc565dd094d4ca8b1b8dacba6ee279567df diff --git a/media-fonts/hack/hack-2.018.ebuild b/media-fonts/hack/hack-2.018.ebuild new file mode 100644 index 0000000..d8b0c68 --- /dev/null +++ b/media-fonts/hack/hack-2.018.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit font versionator + +DESCRIPTION="A typeface designed for source code" +HOMEPAGE="https://github.com/chrissimpkins/Hack" +SRC_URI="https://github.com/chrissimpkins/Hack/releases/download/v${PV}/Hack-v$(replace_version_separator 1 '_' )-otf.zip" + +LICENSE="OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="binchecks strip" + +DEPEND="app-arch/unzip" +RDEPEND="" + +FONT_SUFFIX="otf" + +src_unpack() { + mkdir "${S}" && cd "${S}" + unpack ${A} +}