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 6CA43138351 for ; Sat, 28 Mar 2020 14:00:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F25AE0D0E; Sat, 28 Mar 2020 14:00:01 +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 69BAEE0CBA for ; Sat, 28 Mar 2020 14:00:01 +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 9E2A334FA15 for ; Sat, 28 Mar 2020 13:59:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F26B18E for ; Sat, 28 Mar 2020 13:59:57 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1585402861.5d53a213b737249b48017a57af1bed18b57786b6.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpop3/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild X-VCS-Directories: x11-plugins/wmpop3/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 5d53a213b737249b48017a57af1bed18b57786b6 X-VCS-Branch: master Date: Sat, 28 Mar 2020 13:59:57 +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: 0c421e50-c8b3-40c0-900c-e99bc75865a1 X-Archives-Hash: 58b99006215da46ed9ae93ecbfcc153c commit: 5d53a213b737249b48017a57af1bed18b57786b6 Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Mar 28 12:54:44 2020 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Mar 28 13:41:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d53a213 x11-plugins/wmpop3: replace ":" as sed delimiter Closes: https://bugs.gentoo.org/712986 Package-Manager: Portage-2.3.96, Repoman-2.3.21 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild index f41656350b6..88f9dc57120 100644 --- a/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild +++ b/x11-plugins/wmpop3/wmpop3-0.5.6a-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,9 +20,9 @@ RDEPEND="${DEPEND}" PATCHES=( ${FILESDIR}/${P}-list.patch ) src_prepare() { - sed -e "s:cc :$(tc-getCC) :" \ - -e "s:-O2:${CFLAGS}:" \ - -e "s:-o wmpop3:${LDFLAGS} -o wmpop3:" \ + sed -e "s|cc |$(tc-getCC) |" \ + -e "s|-O2|${CFLAGS}|" \ + -e "s|-o wmpop3|${LDFLAGS} -o wmpop3|" \ -i ${PN}/Makefile || die default