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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF5B21581EC for ; Wed, 20 Nov 2024 19:34:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42437E07F6; Wed, 20 Nov 2024 19:34:00 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2639AE07F6 for ; Wed, 20 Nov 2024 19:34:00 +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 32CA5335D7B for ; Wed, 20 Nov 2024 19:33:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95869D81 for ; Wed, 20 Nov 2024 19:33:57 +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: <1732131215.0d650c59f0b6e904074852c9c82dad2a3dd6c922.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/swhid_core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/swhid_core/Manifest dev-ml/swhid_core/metadata.xml dev-ml/swhid_core/swhid_core-0.1.ebuild X-VCS-Directories: dev-ml/swhid_core/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 0d650c59f0b6e904074852c9c82dad2a3dd6c922 X-VCS-Branch: master Date: Wed, 20 Nov 2024 19:33:57 +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: 1e749dfb-a39f-49c9-ace8-cedd23b2462d X-Archives-Hash: f12cb5e5a6c44197a84958971b8af4f6 commit: 0d650c59f0b6e904074852c9c82dad2a3dd6c922 Author: Alfredo Tupone gentoo org> AuthorDate: Wed Nov 20 19:33:12 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Wed Nov 20 19:33:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d650c59 dev-ml/swhid_core: new package, add 0.1 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/swhid_core/Manifest | 1 + dev-ml/swhid_core/metadata.xml | 15 +++++++++++++++ dev-ml/swhid_core/swhid_core-0.1.ebuild | 16 ++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-ml/swhid_core/Manifest b/dev-ml/swhid_core/Manifest new file mode 100644 index 000000000000..7718d6ed2fcb --- /dev/null +++ b/dev-ml/swhid_core/Manifest @@ -0,0 +1 @@ +DIST swhid_core-0.1.tar.gz 46118 BLAKE2B 3594b9cd8c71bf4fa9f05e63a45d17af7c3c0d7e6339c357c0f79a7e2a6b558b068478038de9ef4b370c5935489a1ad9f21824a56f0e971a0a1e0a00412368e1 SHA512 ec72cc946c662dc8230f4ef8c85bb41df56c3f46bc49276feca434199cd482f11901be902fc5c243244866d4a167474f18245f83ad0b0cf46eb35406ad1f1b5c diff --git a/dev-ml/swhid_core/metadata.xml b/dev-ml/swhid_core/metadata.xml new file mode 100644 index 000000000000..3589884a9014 --- /dev/null +++ b/dev-ml/swhid_core/metadata.xml @@ -0,0 +1,15 @@ + + + + + ml@gentoo.org + ML + + + swhid_core is an OCaml library to with with Software Heritage + persistent identifiers (swhids). + + + ocamlpro/swhid_core + + diff --git a/dev-ml/swhid_core/swhid_core-0.1.ebuild b/dev-ml/swhid_core/swhid_core-0.1.ebuild new file mode 100644 index 000000000000..8be4a78a1895 --- /dev/null +++ b/dev-ml/swhid_core/swhid_core-0.1.ebuild @@ -0,0 +1,16 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit dune + +DESCRIPTION="OCaml library to work with swhids" +HOMEPAGE="https://github.com/ocamlpro/swhid_core" +SRC_URI="https://github.com/OCamlPro/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+ocamlopt"