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 F00F91382C5
for ; Fri, 12 Mar 2021 19:33:28 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
by pigeon.gentoo.org (Postfix) with SMTP id 3B2B9E0A99;
Fri, 12 Mar 2021 19:33: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 2323FE0A99
for ; Fri, 12 Mar 2021 19:33:28 +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 DE9CC340D33
for ; Fri, 12 Mar 2021 19:32:56 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AD5746C
for ; Fri, 12 Mar 2021 19:32:55 +0000 (UTC)
From: "Ulrich Müller"
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller"
Message-ID: <1615577541.d240b5e69b87c1ab35bd714634eb47b78d98f8d8.ulm@gentoo>
Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/functions/src_unpack/rpm-sources/
X-VCS-Repository: proj/devmanual
X-VCS-Files: ebuild-writing/functions/src_unpack/rpm-sources/text.xml
X-VCS-Directories: ebuild-writing/functions/src_unpack/rpm-sources/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: d240b5e69b87c1ab35bd714634eb47b78d98f8d8
X-VCS-Branch: master
Date: Fri, 12 Mar 2021 19:32:55 +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: 348ecaf3-d2cd-4e43-abf7-edc2ccd154bf
X-Archives-Hash: 109729fe4b0e6ed0713cfa960ad4159f
commit: d240b5e69b87c1ab35bd714634eb47b78d98f8d8
Author: Sam James gentoo org>
AuthorDate: Fri Mar 12 18:20:04 2021 +0000
Commit: Ulrich Müller gentoo org>
CommitDate: Fri Mar 12 19:32:21 2021 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=d240b5e6
ebuild-writing/functions/src_unpack/rpm-sources: update phase definition
We don't normally write 'phase_name ()', but instead 'phase_name()'.
Reflect that in our example.
Signed-off-by: Sam James gentoo.org>
Signed-off-by: Ulrich Müller gentoo.org>
ebuild-writing/functions/src_unpack/rpm-sources/text.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ebuild-writing/functions/src_unpack/rpm-sources/text.xml b/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
index 4341944..ba78d4c 100644
--- a/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
+++ b/ebuild-writing/functions/src_unpack/rpm-sources/text.xml
@@ -24,7 +24,7 @@ manner such as:
-src_unpack () {
+src_unpack() {
rpm_src_unpack ${A}
cd "${S}"
@@ -84,11 +84,11 @@ RESTRICT="mirror"
S=${WORKDIR}/fetchmail-$(ver_cut 1-3)
-src_unpack () {
+src_unpack() {
rpm_src_unpack ${A}
}
-src_prepare () {
+src_prepare() {
for i in "${WORKDIR}"/*.patch ; do
eapply "${i}"
done