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 1702113835A for ; Sat, 29 Aug 2020 16:32:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 070B7E095A; Sat, 29 Aug 2020 16:32:33 +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 E2A82E095A for ; Sat, 29 Aug 2020 16:32:32 +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 1E305340D01 for ; Sat, 29 Aug 2020 16:32:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8484D339 for ; Sat, 29 Aug 2020 16:32:29 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1598718694.7bb0c6747b5e76689162f34f913619371eba0942.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/classads/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/classads/classads-1.0.10.ebuild X-VCS-Directories: sys-cluster/classads/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7bb0c6747b5e76689162f34f913619371eba0942 X-VCS-Branch: master Date: Sat, 29 Aug 2020 16:32:29 +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: a7fb98c5-a228-4b58-b88b-f833a2cf4761 X-Archives-Hash: 9c9e9753c1dfab3b679cf247b072fa6b commit: 7bb0c6747b5e76689162f34f913619371eba0942 Author: David Seifert gentoo org> AuthorDate: Sat Aug 29 16:31:34 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Aug 29 16:31:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb0c674 sys-cluster/classads: Port to EAPI 7 Closes: https://bugs.gentoo.org/725790 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: David Seifert gentoo.org> sys-cluster/classads/classads-1.0.10.ebuild | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/sys-cluster/classads/classads-1.0.10.ebuild b/sys-cluster/classads/classads-1.0.10.ebuild index 72ea735ea47..4b692bd26e3 100644 --- a/sys-cluster/classads/classads-1.0.10.ebuild +++ b/sys-cluster/classads/classads-1.0.10.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 -inherit autotools-utils +EAPI=7 + +inherit autotools DESCRIPTION="Condor's classified advertisement language" HOMEPAGE="http://www.cs.wisc.edu/condor/classad/" @@ -11,15 +12,26 @@ SRC_URI="ftp://ftp.cs.wisc.edu/condor/classad/c++/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="pcre static-libs" +IUSE="pcre" RDEPEND="pcre? ( dev-libs/libpcre )" DEPEND="${RDEPEND}" +src_prepare() { + default + eautoreconf +} + src_configure() { - myeconfargs+=( - --enable-namespace + econf \ + --disable-static \ + --enable-namespace \ --enable-flexible-member - ) - autotools-utils_src_configure +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -delete || die }