From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 2B7FA1582EF for ; Mon, 10 Feb 2025 13:28:31 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 15FAE343147 for ; Mon, 10 Feb 2025 13:28:31 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9880011047B; Mon, 10 Feb 2025 13:28:11 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 8A2BC110479 for ; Mon, 10 Feb 2025 13:28:11 +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 3F756343121 for ; Mon, 10 Feb 2025 13:28:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCBAF279A for ; Mon, 10 Feb 2025 13:28:08 +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: <1739194083.0a0f6194a7e2ab1c78fe3d0c14a8b9d9059a11a2.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/c2ffi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/c2ffi/c2ffi-18.1.0.20240926-r1.ebuild X-VCS-Directories: dev-lisp/c2ffi/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 0a0f6194a7e2ab1c78fe3d0c14a8b9d9059a11a2 X-VCS-Branch: master Date: Mon, 10 Feb 2025 13:28:08 +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: 3c177311-d738-4ef5-83d4-fbe7d4b852c5 X-Archives-Hash: e58a2d1a3667c9413dcd067e15b8369e commit: 0a0f6194a7e2ab1c78fe3d0c14a8b9d9059a11a2 Author: Harald Judt gmx at> AuthorDate: Tue Jan 7 20:56:41 2025 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Feb 10 13:28:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a0f6194 dev-lisp/c2ffi: Port ebuild to llvm-r2 Bug: https://bugs.gentoo.org/945344 Signed-off-by: Harald Judt gmx.at> Signed-off-by: Joonas Niilola gentoo.org> dev-lisp/c2ffi/c2ffi-18.1.0.20240926-r1.ebuild | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-lisp/c2ffi/c2ffi-18.1.0.20240926-r1.ebuild b/dev-lisp/c2ffi/c2ffi-18.1.0.20240926-r1.ebuild new file mode 100644 index 000000000000..7b56798298b6 --- /dev/null +++ b/dev-lisp/c2ffi/c2ffi-18.1.0.20240926-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 2019-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +LLVM_COMPAT=( 18 ) + +inherit cmake llvm-r2 + +MY_COMMIT="0de81efb64acc82c08c5eee4a7108ddcb1b00d86" + +DESCRIPTION="Clang-based FFI wrapper generator for Common Lisp" +HOMEPAGE="https://github.com/rpav/c2ffi" +SRC_URI="https://github.com/rpav/c2ffi/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/c2ffi-${MY_COMMIT}" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + $(llvm_gen_dep ' + llvm-core/clang:${LLVM_SLOT}= + llvm-core/llvm:${LLVM_SLOT}= + ') +" +RDEPEND="${DEPEND}" + +pkg_setup() { + llvm-r2_pkg_setup +}