diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-21 12:49:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-21 20:05:45 +0100 |
commit | 7aae3c1c7ee6e97e8eb700f295a4becf6a308fc6 (patch) | |
tree | c7d9e692e484988d0050258f04886baa491ae5d3 /media-fonts/hack | |
parent | media-fonts/fifth-leg: EAPI-7 bump, update HOMEPAGE (diff) | |
download | gentoo-7aae3c1c7ee6e97e8eb700f295a4becf6a308fc6.tar.gz gentoo-7aae3c1c7ee6e97e8eb700f295a4becf6a308fc6.tar.bz2 gentoo-7aae3c1c7ee6e97e8eb700f295a4becf6a308fc6.zip |
media-fonts/hack: EAPI-7 bump, drop unused versionator
Drop unnecessary src_unpack() override
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-fonts/hack')
-rw-r--r-- | media-fonts/hack/hack-3.003.ebuild | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/media-fonts/hack/hack-3.003.ebuild b/media-fonts/hack/hack-3.003.ebuild index 5346bb339e27..3dc53dfb4c44 100644 --- a/media-fonts/hack/hack-3.003.ebuild +++ b/media-fonts/hack/hack-3.003.ebuild @@ -1,26 +1,20 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 -inherit font versionator +inherit font -DESCRIPTION="A typeface designed for source code" +DESCRIPTION="Typeface designed for source code" HOMEPAGE="https://github.com/source-foundry/Hack" SRC_URI="https://github.com/source-foundry/Hack/releases/download/v${PV}/Hack-v${PV}-ttf.tar.xz" +S="${WORKDIR}" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 arm arm64 ~ppc64 x86" IUSE="" -RESTRICT="binchecks strip" -DEPEND="" -RDEPEND="" +RESTRICT="binchecks strip" FONT_SUFFIX="ttf" - -src_unpack() { - mkdir "${S}" && cd "${S}" - unpack ${A} -} |