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 11604158087 for ; Thu, 7 Oct 2021 14:13:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB8FCE0891; Thu, 7 Oct 2021 14:13:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B207AE0891 for ; Thu, 7 Oct 2021 14:13:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7DEB8342E01 for ; Thu, 7 Oct 2021 14:13:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB963129 for ; Thu, 7 Oct 2021 14:13:39 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1633616006.afeefcb79935faa54919e8be4bda6b8f8895bf95.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/jfbterm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild X-VCS-Directories: app-i18n/jfbterm/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: afeefcb79935faa54919e8be4bda6b8f8895bf95 X-VCS-Branch: master Date: Thu, 7 Oct 2021 14:13:39 +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: d98962fb-626b-4b4c-a0a4-64bece42f190 X-Archives-Hash: f9e94df8b7a6d830302b4e31b645b96f commit: afeefcb79935faa54919e8be4bda6b8f8895bf95 Author: Akinori Hattori gentoo org> AuthorDate: Thu Oct 7 14:09:55 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Thu Oct 7 14:13:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afeefcb7 app-i18n/jfbterm: update to EAPI 7 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild b/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild index 70443ef74fd..bcfc43de173 100644 --- a/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild +++ b/app-i18n/jfbterm/jfbterm-0.4.7-r4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI="7" inherit autotools flag-o-matic @@ -15,10 +15,9 @@ KEYWORDS="amd64 ppc ppc64 sparc x86" IUSE="debug" DEPEND="sys-libs/ncurses:0" -RDEPEND=" - media-fonts/unifont - media-fonts/font-misc-misc - media-fonts/intlfonts" +RDEPEND="media-fonts/font-misc-misc + media-fonts/intlfonts + media-fonts/unifont" PATCHES=( "${FILESDIR}"/${PN}-sigchld-debian.patch @@ -38,15 +37,15 @@ src_configure() { } src_install() { - dodir /etc /usr/share/fonts/jfbterm + dodir /etc /usr/share/fonts/${PN} default - mv "${ED%/}"/etc/jfbterm.conf{.sample,} || die + mv "${ED}"/etc/${PN}.conf{.sample,} || die - doman jfbterm.1 jfbterm.conf.5 + doman ${PN}.{1,conf.5} # install example config files docinto examples - dodoc jfbterm.conf.sample* + dodoc ${PN}.conf.sample* docompress -x /usr/share/doc/${PF}/examples }