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 6EBA813835A for ; Tue, 8 Dec 2020 05:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8A26E0887; Tue, 8 Dec 2020 05:53:27 +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 CCFE2E0886 for ; Tue, 8 Dec 2020 05:53:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 03B10340ED7 for ; Tue, 8 Dec 2020 05:53:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 935CF473 for ; Tue, 8 Dec 2020 05:53:22 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1607406790.cdc6da9d80f268045574be784c8ca3855ad2d5c0.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyspelling/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyspelling/pyspelling-2.7.0.ebuild X-VCS-Directories: dev-python/pyspelling/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: cdc6da9d80f268045574be784c8ca3855ad2d5c0 X-VCS-Branch: master Date: Tue, 8 Dec 2020 05:53:22 +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: 37d80d2d-b8f4-4124-a112-d5db86a4fea7 X-Archives-Hash: eff99778db9e3348d8d523384f554d29 commit: cdc6da9d80f268045574be784c8ca3855ad2d5c0 Author: Joonas Niilola gentoo org> AuthorDate: Tue Dec 8 05:50:27 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Dec 8 05:53:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc6da9d dev-python/pyspelling: add missing dies Signed-off-by: Joonas Niilola gentoo.org> dev-python/pyspelling/pyspelling-2.7.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pyspelling/pyspelling-2.7.0.ebuild b/dev-python/pyspelling/pyspelling-2.7.0.ebuild index 97c7dbb77ba..8aea3245861 100644 --- a/dev-python/pyspelling/pyspelling-2.7.0.ebuild +++ b/dev-python/pyspelling/pyspelling-2.7.0.ebuild @@ -43,11 +43,11 @@ distutils_enable_tests pytest python_prepare_all() { # mkdocs-git-revision-date-localized-plugin needs git repo if use doc; then - git init + git init || die git config --global user.email "you@example.com" || die git config --global user.name "Your Name" || die - git add . - git commit -m 'init' + git add . || die + git commit -m 'init' || die fi distutils-r1_python_prepare_all