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 8C9231382C5 for ; Tue, 23 Mar 2021 04:34:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D722E081E; Tue, 23 Mar 2021 04:34:52 +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 4725EE081E for ; Tue, 23 Mar 2021 04:34:52 +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 EDBB0340806 for ; Tue, 23 Mar 2021 04:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E9D75FC for ; Tue, 23 Mar 2021 04:34:49 +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: <1616473376.59931de2f634661f1340346e6cbc411a71f0b234.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/asa/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/asa/asa-1.1-r1.ebuild X-VCS-Directories: app-text/asa/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 59931de2f634661f1340346e6cbc411a71f0b234 X-VCS-Branch: master Date: Tue, 23 Mar 2021 04:34:49 +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: f16c99d7-7880-42ba-8b9c-ae0627baddbe X-Archives-Hash: c101b3af333628b47ec0d139cec6e6da commit: 59931de2f634661f1340346e6cbc411a71f0b234 Author: Sam James gentoo org> AuthorDate: Tue Mar 23 04:22:56 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 23 04:22:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59931de2 app-text/asa: port to EAPI 7, HTTPS in HOMEPAGE/SRC_URI Signed-off-by: Sam James gentoo.org> app-text/asa/asa-1.1-r1.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app-text/asa/asa-1.1-r1.ebuild b/app-text/asa/asa-1.1-r1.ebuild index 83a488a04c1..64afb7597cb 100644 --- a/app-text/asa/asa-1.1-r1.ebuild +++ b/app-text/asa/asa-1.1-r1.ebuild @@ -1,24 +1,26 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 inherit toolchain-funcs DESCRIPTION="ASA Carriage control conversion for ouput by Fortran programs" -HOMEPAGE="http://www.ibiblio.org/pub/Linux/devel/lang/fortran/" -SRC_URI="http://www.ibiblio.org/pub/Linux/devel/lang/fortran/${P}.tar.gz" +HOMEPAGE="https://www.ibiblio.org/pub/Linux/devel/lang/fortran/" +SRC_URI="https://www.ibiblio.org/pub/Linux/devel/lang/fortran/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64" -IUSE="" src_prepare() { + default + sed \ - -e "s:-o:${LDFLAGS} -o:g" \ + -e "s;-o;${LDFLAGS} -o;g" \ -e "/^CFLAGS/d" \ -i Makefile || die + tc-export CC }