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 953DE1382C5 for ; Sun, 4 Apr 2021 18:55:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C5D3E0874; Sun, 4 Apr 2021 18:55:28 +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 32F4DE0874 for ; Sun, 4 Apr 2021 18:55:28 +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 A7B95335C85 for ; Sun, 4 Apr 2021 18:55:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31E50642 for ; Sun, 4 Apr 2021 18:55:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1617562506.4cfced047715b0602b68bb064f16e2882165c77f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/biopython/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/biopython/biopython-1.77.ebuild X-VCS-Directories: sci-biology/biopython/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4cfced047715b0602b68bb064f16e2882165c77f X-VCS-Branch: master Date: Sun, 4 Apr 2021 18:55:23 +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: 961e10a1-0c98-46f3-a281-30e9602e0bef X-Archives-Hash: b25af544696b9e8a5ab8fbd2b9bbd11d commit: 4cfced047715b0602b68bb064f16e2882165c77f Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 3 11:05:35 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 4 18:55:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfced04 sci-biology/biopython: Use optfeature_header() instead of custom elog Signed-off-by: Andreas Sturmlechner gentoo.org> sci-biology/biopython/biopython-1.77.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/sci-biology/biopython/biopython-1.77.ebuild b/sci-biology/biopython/biopython-1.77.ebuild index 387404a1aed..1dcbc2101c4 100644 --- a/sci-biology/biopython/biopython-1.77.ebuild +++ b/sci-biology/biopython/biopython-1.77.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -53,10 +53,9 @@ python_install_all() { } pkg_postinst() { - elog "For database support you need to install:" - optfeature "MySQL" dev-python/mysql-python - optfeature "PostgreSQL" dev-python/psycopg - - elog "Some applications need extra packages:" + optfeature_header "For database support you need to install:" + optfeature "MySQL database support" dev-python/mysql-python + optfeature "PostgreSQL database support" dev-python/psycopg + optfeature_header "Some applications need extra packages:" optfeature "EMBOSS (The European Molecular Biology Open Software Suite)" sci-biology/emboss }