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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 551CC158086 for ; Mon, 1 Nov 2021 21:56:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B848CE08BF; Mon, 1 Nov 2021 21:56:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DAE8E08BF for ; Mon, 1 Nov 2021 21:56:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0B891342EC5 for ; Mon, 1 Nov 2021 21:56:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DE63199 for ; Mon, 1 Nov 2021 21:56:04 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1635803707.fbc27b52508507e3f5a88f40daa66974cbe16cbb.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/linux-atm/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/linux-atm/linux-atm-2.5.2-r1.ebuild net-dialup/linux-atm/linux-atm-2.5.2.ebuild X-VCS-Directories: net-dialup/linux-atm/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: fbc27b52508507e3f5a88f40daa66974cbe16cbb X-VCS-Branch: master Date: Mon, 1 Nov 2021 21:56:04 +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: adb17cdf-c9b5-47f3-a681-d9efd5fcc5d1 X-Archives-Hash: 80f144c0bd7e28ee2a809172f606b999 commit: fbc27b52508507e3f5a88f40daa66974cbe16cbb Author: Jakov Smolić gentoo org> AuthorDate: Sat Oct 30 19:17:17 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Mon Nov 1 21:55:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc27b52 net-dialup/linux-atm: Port to EAPI 8 Closes: https://bugs.gentoo.org/819357 Signed-off-by: Jakov Smolić gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/22767 Signed-off-by: Jakov Smolić gentoo.org> ...-atm-2.5.2.ebuild => linux-atm-2.5.2-r1.ebuild} | 23 +++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/net-dialup/linux-atm/linux-atm-2.5.2.ebuild b/net-dialup/linux-atm/linux-atm-2.5.2-r1.ebuild similarity index 68% rename from net-dialup/linux-atm/linux-atm-2.5.2.ebuild rename to net-dialup/linux-atm/linux-atm-2.5.2-r1.ebuild index 4197658ac86..4c27be10493 100644 --- a/net-dialup/linux-atm/linux-atm-2.5.2.ebuild +++ b/net-dialup/linux-atm/linux-atm-2.5.2-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit epatch flag-o-matic libtool linux-info +inherit autotools flag-o-matic linux-info DESCRIPTION="Tools for ATM" HOMEPAGE="http://linux-atm.sourceforge.net/" @@ -12,31 +12,30 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="static-libs" -RDEPEND="" -DEPEND="virtual/yacc" +BDEPEND="virtual/yacc" RESTRICT="test" -DOCS=( AUTHORS BUGS ChangeLog NEWS README THANKS ) - CONFIG_CHECK="~ATM" +PATCHES=( + "${FILESDIR}"/${P}-headers.patch + "${FILESDIR}"/${P}-linux-5.2-SIOCGSTAMP.patch +) + src_prepare() { - epatch "${FILESDIR}"/${P}-headers.patch - epatch "${FILESDIR}"/${P}-linux-5.2-SIOCGSTAMP.patch + default sed -i '/#define _LINUX_NETDEVICE_H/d' \ src/arpd/*.c || die "sed command on arpd/*.c files failed" - elibtoolize + eautoreconf } src_configure() { append-flags -fno-strict-aliasing - - econf $(use_enable static-libs static) + econf } src_install() {