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 B5BB5138351 for ; Thu, 26 Mar 2020 14:01:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09181E0ABF; Thu, 26 Mar 2020 14:01:19 +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 E0565E0ABF for ; Thu, 26 Mar 2020 14:01:18 +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 D2B1334F061 for ; Thu, 26 Mar 2020 14:01:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68CBF104 for ; Thu, 26 Mar 2020 14:01:11 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1585231246.2a20151f44f68e3215a2ca7f926bcc51203a3a37.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild X-VCS-Directories: net-misc/netkit-telnetd/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2a20151f44f68e3215a2ca7f926bcc51203a3a37 X-VCS-Branch: master Date: Thu, 26 Mar 2020 14:01:11 +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: 5c6b52c5-d335-4f77-9a71-8e804f9573cd X-Archives-Hash: 42ecaf9d27c38baa3a965099adb92554 commit: 2a20151f44f68e3215a2ca7f926bcc51203a3a37 Author: PPed72 iol it> AuthorDate: Tue Mar 24 15:08:11 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Mar 26 14:00:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a20151f net-misc/netkit-telnetd: Fix 'sed' delimiter Also fixes copyright date and attribution Closes: https://bugs.gentoo.org/711050 Signed-off-by: Paolo Pedroni iol.it> Package-Manager: Portage-2.3.89, Repoman-2.3.20 Closes: https://github.com/gentoo/gentoo/pull/15086 Signed-off-by: Joonas Niilola gentoo.org> net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild index e041e858c76..4c17078b18a 100644 --- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild +++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.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" @@ -46,7 +46,7 @@ src_prepare() { # Fix portability issues. sed -i \ - -e 's:echo -n:printf %s:' \ + -e 's/echo -n/printf %s/' \ configure || die default } @@ -58,9 +58,9 @@ src_configure() { ./configure --prefix=/usr || die sed -i \ - -e "s:-pipe -O2:${CFLAGS}:" \ - -e "s:^\(LDFLAGS=\).*:\1${LDFLAGS}:" \ - -e "s:-Wpointer-arith::" \ + -e "s/-pipe -O2/${CFLAGS}/" \ + -e "s/^\(LDFLAGS=\).*/\1${LDFLAGS}/" \ + -e "s/-Wpointer-arith//" \ MCONFIG || die }