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 65B931382C5 for ; Mon, 5 Apr 2021 15:08:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B05DE0895; Mon, 5 Apr 2021 15:08:37 +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 6F508E0895 for ; Mon, 5 Apr 2021 15:08:37 +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 669F3340C76 for ; Mon, 5 Apr 2021 15:08:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1102D640 for ; Mon, 5 Apr 2021 15:08:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617635244.d4dbc6a089a47f7cbc18c284e9723bf68c622c6a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/xstow/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/xstow/xstow-1.0.2.ebuild X-VCS-Directories: app-admin/xstow/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d4dbc6a089a47f7cbc18c284e9723bf68c622c6a X-VCS-Branch: master Date: Mon, 5 Apr 2021 15:08:35 +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: a896630f-f0de-42a6-9142-a43218a9463e X-Archives-Hash: b902ca26fbd80e117602a7ae41b60615 commit: d4dbc6a089a47f7cbc18c284e9723bf68c622c6a Author: Sam James gentoo org> AuthorDate: Mon Apr 5 15:07:24 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 5 15:07:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4dbc6a0 app-admin/xstow: Capitalise DESCRIPTION, change 'default' usage * DESCRTPTION is usually captalised at the beginning * Add 'default' in src_prepare before eautoreconf to allow people to apply patches in e.g. /etc/portage/patches to any part of the code * Remove 'default' in src_configure because it just calls econf without the ncurses argument (USE flag) Signed-off-by: Sam James gentoo.org> app-admin/xstow/xstow-1.0.2.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app-admin/xstow/xstow-1.0.2.ebuild b/app-admin/xstow/xstow-1.0.2.ebuild index 3e326516724..d041f7daf68 100644 --- a/app-admin/xstow/xstow-1.0.2.ebuild +++ b/app-admin/xstow/xstow-1.0.2.ebuild @@ -5,7 +5,7 @@ EAPI=7 inherit autotools -DESCRIPTION="replacement for GNU stow with extensions" +DESCRIPTION="Replacement for GNU stow with extensions" HOMEPAGE="http://xstow.sourceforge.net/" SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2" @@ -22,13 +22,12 @@ PATCHES=( ) src_prepare() { - eautoreconf default + eautoreconf } src_configure() { econf $(use_with ncurses curses) - default } src_install() {