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 94B9C159C9B for ; Tue, 30 Jul 2024 21:20:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C98E32BC01F; Tue, 30 Jul 2024 21:20:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 063402BC01F for ; Tue, 30 Jul 2024 21:20:23 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5583F335CB4 for ; Tue, 30 Jul 2024 21:20:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B67E01E65 for ; Tue, 30 Jul 2024 21:20:17 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1722374375.2b004e50b70d37d8ee0e89a46e8e88c4d6416a28.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/stdcompat/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/stdcompat/stdcompat-19-r1.ebuild dev-ml/stdcompat/stdcompat-19.ebuild X-VCS-Directories: dev-ml/stdcompat/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 2b004e50b70d37d8ee0e89a46e8e88c4d6416a28 X-VCS-Branch: master Date: Tue, 30 Jul 2024 21:20:17 +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: a0b2f0a7-e400-4592-b8ea-c1d1dda69c1a X-Archives-Hash: 49adb01b05c8b14572f9afe921dafe58 commit: 2b004e50b70d37d8ee0e89a46e8e88c4d6416a28 Author: Alfredo Tupone gentoo org> AuthorDate: Tue Jul 30 21:18:55 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Jul 30 21:19:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b004e50 dev-ml/stdcompat: regenerate autotools files Closes: https://bugs.gentoo.org/936152 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/stdcompat/{stdcompat-19.ebuild => stdcompat-19-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-ml/stdcompat/stdcompat-19.ebuild b/dev-ml/stdcompat/stdcompat-19-r1.ebuild similarity index 87% rename from dev-ml/stdcompat/stdcompat-19.ebuild rename to dev-ml/stdcompat/stdcompat-19-r1.ebuild index edb7ebbf80a0..731c0bed6669 100644 --- a/dev-ml/stdcompat/stdcompat-19.ebuild +++ b/dev-ml/stdcompat/stdcompat-19-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 2022-2023 Gentoo Authors +# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit autotools + DESCRIPTION="Compatibility module for OCaml standard library" HOMEPAGE="https://github.com/thierry-martinez/stdcompat" SRC_URI="https://github.com/thierry-martinez/stdcompat/releases/download/v${PV}/${P}.tar.gz" @@ -22,6 +24,11 @@ BDEPEND=" # Do not complain about CFLAGS etc since ml projects do not use them. QA_FLAGS_IGNORED='.*' +src_prepare() { + default + eautoreconf +} + src_configure () { econf --libdir="${EPREFIX}"/usr/$(get_libdir)/ocaml }