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 18368138334 for ; Tue, 19 Jun 2018 20:06:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45D58E0917; Tue, 19 Jun 2018 20:06:18 +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 1FC2CE0917 for ; Tue, 19 Jun 2018 20:06:18 +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 E021C335C8A for ; Tue, 19 Jun 2018 20:06:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50FB32AD for ; Tue, 19 Jun 2018 20:06:15 +0000 (UTC) From: "Jonas Stein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Stein" Message-ID: <1529438764.c4c9c948a20fab2788c736efbacc86de71a42598.jstein@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-ru/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild X-VCS-Directories: app-dicts/myspell-ru/ X-VCS-Committer: jstein X-VCS-Committer-Name: Jonas Stein X-VCS-Revision: c4c9c948a20fab2788c736efbacc86de71a42598 X-VCS-Branch: master Date: Tue, 19 Jun 2018 20:06:15 +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: 4fdcc7cf-8a81-4868-8609-19d17b227dd2 X-Archives-Hash: 097173188ce9038d521c02af2711baed commit: c4c9c948a20fab2788c736efbacc86de71a42598 Author: Jonas Stein gentoo org> AuthorDate: Tue Jun 19 19:53:17 2018 +0000 Commit: Jonas Stein gentoo org> CommitDate: Tue Jun 19 20:06:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4c9c948 app-dicts/myspell-ru: Add missing || die Bug: https://bugs.gentoo.org/654018 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild b/app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild index f8ec8a9ebff..1ed79c8030e 100644 --- a/app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild +++ b/app-dicts/myspell-ru/myspell-ru-20150711-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,6 +24,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd6 src_prepare() { default - mv russian-aot.dic ru_RU.dic - mv russian-aot.aff ru_RU.aff + mv russian-aot.dic ru_RU.dic || die + mv russian-aot.aff ru_RU.aff || die }