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 23E77138359 for ; Mon, 2 Nov 2020 01:14:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63670E081A; Mon, 2 Nov 2020 01:14:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F1F01E081A for ; Mon, 2 Nov 2020 01:14:30 +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 7A4E9335DCB for ; Mon, 2 Nov 2020 01:14:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B62EB3A9 for ; Mon, 2 Nov 2020 01:14:27 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1604279608.dae3709429b5050856c6e1917137dbd75d074718.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bats/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bats/bats-1.2.1.ebuild X-VCS-Directories: dev-util/bats/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: dae3709429b5050856c6e1917137dbd75d074718 X-VCS-Branch: master Date: Mon, 2 Nov 2020 01:14:27 +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: 9b517c26-8cde-4c63-bb17-50561cbdc7c4 X-Archives-Hash: 47f8c4c11848ff1429b766ce02ad3c8d commit: dae3709429b5050856c6e1917137dbd75d074718 Author: Henning Schild hennsch de> AuthorDate: Sun Nov 1 10:17:32 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Mon Nov 2 01:13:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae37094 dev-util/bats: add postinst information on optional rdep Signed-off-by: Henning Schild hennsch.de> Closes: https://github.com/gentoo/gentoo/pull/18059 Signed-off-by: Georgy Yakovlev gentoo.org> dev-util/bats/bats-1.2.1.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-util/bats/bats-1.2.1.ebuild b/dev-util/bats/bats-1.2.1.ebuild index 0ab0773b5e9..797890f4d2e 100644 --- a/dev-util/bats/bats-1.2.1.ebuild +++ b/dev-util/bats/bats-1.2.1.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit optfeature + MY_PN="bats-core" DESCRIPTION="Bats-core: Bash Automated Testing System" HOMEPAGE="https://github.com/bats-core/bats-core/" @@ -31,3 +33,7 @@ src_install() { dodoc README.md doman man/${PN}.1 man/${PN}.7 } + +pkg_postinst() { + optfeature "Parallel Execution" sys-process/parallel +}