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 71461139694 for ; Sat, 1 Apr 2017 10:45:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 205A2234038; Sat, 1 Apr 2017 10:45:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE0BA234038 for ; Sat, 1 Apr 2017 10:45:13 +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 6E944341657 for ; Sat, 1 Apr 2017 10:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8D5373F2 for ; Sat, 1 Apr 2017 10:45:08 +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: <1491043435.9d1a358d2c8b0f8d1a6430c4bb5e3a9993fcc118.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-pt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild X-VCS-Directories: app-dicts/aspell-pt/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9d1a358d2c8b0f8d1a6430c4bb5e3a9993fcc118 X-VCS-Branch: master Date: Sat, 1 Apr 2017 10:45:08 +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: 95f7903c-4706-4758-9193-1b9197f213e5 X-Archives-Hash: f8b0aed6ded6e3bf18143d5387c96f7d commit: 9d1a358d2c8b0f8d1a6430c4bb5e3a9993fcc118 Author: David Seifert gentoo org> AuthorDate: Sat Apr 1 10:41:26 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Apr 1 10:43:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d1a358d app-dicts/aspell-pt: Bump to EAPI 6 Package-Manager: Portage-2.3.5, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4237 app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild b/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild index a2a6173cb99..5be881b7dc9 100644 --- a/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild +++ b/app-dicts/aspell-pt/aspell-pt-0.50.2-r1.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + ASPELL_LANG="Portuguese" -inherit multilib aspell-dict +inherit aspell-dict-r1 LICENSE="GPL-2" @@ -11,7 +13,8 @@ KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x8 IUSE="" src_install() { - aspell-dict_src_install - rm "${D}"/usr/$(get_libdir)/aspell-0.60/pt_BR* - rm "${D}"/usr/$(get_libdir)/aspell-0.60/brazilian.alias + aspell-dict-r1_src_install + + rm "${ED%/}"/usr/$(get_libdir)/aspell-0.60/pt_BR* || die + rm "${ED%/}"/usr/$(get_libdir)/aspell-0.60/brazilian.alias || die }