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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B55F4138334 for ; Sat, 19 Oct 2019 18:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3455E087C; Sat, 19 Oct 2019 18:07:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6ECEE087C for ; Sat, 19 Oct 2019 18:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A93EB34C06C for ; Sat, 19 Oct 2019 18:07:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9735836 for ; Sat, 19 Oct 2019 18:07:30 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1571508353.f306f9d7f9d9340ab4faea6927650fbed4114643.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-fonts/freefonts/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-fonts/freefonts/freefonts-0.10-r3.ebuild X-VCS-Directories: media-fonts/freefonts/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f306f9d7f9d9340ab4faea6927650fbed4114643 X-VCS-Branch: master Date: Sat, 19 Oct 2019 18:07:30 +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: fc9f2c61-9a0a-4a48-9aa5-418ef1e0212b X-Archives-Hash: 1e3c036405e8d44c19590cc7b91e117f commit: f306f9d7f9d9340ab4faea6927650fbed4114643 Author: David Seifert gentoo org> AuthorDate: Sat Oct 19 18:05:53 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 19 18:05:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f306f9d7 media-fonts/freefonts: Port to EAPI 7 Bug: https://bugs.gentoo.org/697302 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> media-fonts/freefonts/freefonts-0.10-r3.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/media-fonts/freefonts/freefonts-0.10-r3.ebuild b/media-fonts/freefonts/freefonts-0.10-r3.ebuild index 7427d02579e..85a881a0357 100644 --- a/media-fonts/freefonts/freefonts-0.10-r3.ebuild +++ b/media-fonts/freefonts/freefonts-0.10-r3.ebuild @@ -1,20 +1,21 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 inherit font DESCRIPTION="A Collection of Free Type1 Fonts" -SRC_URI="mirror://gimp/fonts/${P}.tar.gz" HOMEPAGE="http://www.gimp.org" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris" -SLOT="0" +SRC_URI="mirror://gimp/fonts/${P}.tar.gz" + LICENSE="freedist" +SLOT="0" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~sparc-solaris" IUSE="X" -FONT_S=${WORKDIR}/freefont -S=${FONT_S} +S="${WORKDIR}/freefont" -FONT_SUFFIX="pfb" DOCS="README *.license" +FONT_S="${S}" +FONT_SUFFIX="pfb"