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 6B7D1138359 for ; Wed, 18 Nov 2020 01:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 923FDE0920; Wed, 18 Nov 2020 01:26:30 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 754E2E0843 for ; Wed, 18 Nov 2020 01:26:30 +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 52DC333BE33 for ; Wed, 18 Nov 2020 01:26:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6870453 for ; Wed, 18 Nov 2020 01:26:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1605662780.b3b370b4fbb281b0d3b3531abedb3b8305565929.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/camldbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/camldbm/Manifest dev-ml/camldbm/camldbm-1.2.ebuild X-VCS-Directories: dev-ml/camldbm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b3b370b4fbb281b0d3b3531abedb3b8305565929 X-VCS-Branch: master Date: Wed, 18 Nov 2020 01:26:27 +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: af64b0f3-586d-4a81-9199-fbaba313269f X-Archives-Hash: a11a421929d0a71c2aa99a9a7af2e448 commit: b3b370b4fbb281b0d3b3531abedb3b8305565929 Author: Sam James gentoo org> AuthorDate: Wed Nov 18 01:26:20 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Nov 18 01:26:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3b370b4 dev-ml/camldbm: bump to 1.2 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-ml/camldbm/Manifest | 1 + dev-ml/camldbm/camldbm-1.2.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-ml/camldbm/Manifest b/dev-ml/camldbm/Manifest index 8540da89268..b81db05c293 100644 --- a/dev-ml/camldbm/Manifest +++ b/dev-ml/camldbm/Manifest @@ -1 +1,2 @@ DIST camldbm-1.0.tgz 14397 BLAKE2B 9b6971e30815ad6984254591af793819beb3859ddbf7bbd95ee744a2b09ce04968ecad9c7ff954e1606776d82988b3499f2569154586a937a61eb6d5c7b9465b SHA512 d0b752754650efb400f13f957e83fddccf1fc9ac9e1d11f453af94e9aa599546a316eb110685b3728b593c99cbf859cdc7bcf924c878cf8b6dead3dc413ccfbf +DIST camldbm-1.2.tar.gz 14823 BLAKE2B b9eda65c56440b1d13562e0d184474e585b13826038e77901961df475cbd73df39c9923e4f73c891252f17416e78acb3c3b42accf01dc5d6f51a72bafa930084 SHA512 56d317db420179f96a0f6a453f8a34ea16942f3ca5ed09dd6955517348dad281ad105b861378f1ebd01ec5c8a1c07d5e5db1ab4d255f9572ece64a86559705f0 diff --git a/dev-ml/camldbm/camldbm-1.2.ebuild b/dev-ml/camldbm/camldbm-1.2.ebuild new file mode 100644 index 00000000000..4bae2351d3f --- /dev/null +++ b/dev-ml/camldbm/camldbm-1.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="OCaml binding to the NDBM/GDBM Unix databases" +HOMEPAGE="https://github.com/ocaml/dbm" +SRC_URI="https://github.com/ocaml/dbm/archive/${P}.tar.gz" +S="${WORKDIR}/dbm-${P}" + +LICENSE="LGPL-2-with-linking-exception" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DEPEND=">=sys-libs/gdbm-1.9.1-r2[berkdb] + >=dev-lang/ocaml-3.12:=[ocamlopt]" +RDEPEND="${DEPEND}" + +src_install() { + dodir "$(ocamlc -where)/stublibs" # required and makefile does not create it + emake LIBDIR="${D}/$(ocamlc -where)" install +}