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 939FA13835A for ; Wed, 28 Oct 2020 03:56:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 991D5E0959; Wed, 28 Oct 2020 03:56:12 +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 B1B80E0959 for ; Wed, 28 Oct 2020 03:56:11 +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 2EDCB33BF21 for ; Wed, 28 Oct 2020 03:56:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 854FB3BB for ; Wed, 28 Oct 2020 03:56:08 +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: <1603856644.7a98500ea6ea8b59efd8dd92397e051f33a06b96.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/mmap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/mmap/Manifest dev-ml/mmap/mmap-1.1.0.ebuild X-VCS-Directories: dev-ml/mmap/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7a98500ea6ea8b59efd8dd92397e051f33a06b96 X-VCS-Branch: master Date: Wed, 28 Oct 2020 03:56: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: 1cdc6cd4-c7cf-4ed1-88e0-a09913f0886d X-Archives-Hash: 5a38b29acee8a42dcc0e4ba003a7658e commit: 7a98500ea6ea8b59efd8dd92397e051f33a06b96 Author: Sam James gentoo org> AuthorDate: Wed Oct 28 03:44:04 2020 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 28 03:44:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a98500e dev-ml/mmap: bump to 1.1.0 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-ml/mmap/Manifest | 1 + dev-ml/mmap/mmap-1.1.0.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-ml/mmap/Manifest b/dev-ml/mmap/Manifest index 698345342ed..ffe31e5687e 100644 --- a/dev-ml/mmap/Manifest +++ b/dev-ml/mmap/Manifest @@ -1 +1,2 @@ DIST mmap-v1.0.2.tbz 14575 BLAKE2B ddc0ce540780bf362662b90ba0ba71098151bfaf2633161d747f6122b34b4cec813c0a839f5f702595fa9d81b24a4d550fcaa6600d6fdd7560947e71c87b1b6a SHA512 280afb62a0cc5b13f7e9485bb81c0fe6bff91a3838420495ce7a10709af987264590562f21b2d66e778b7e606be3f1f940ebb090e4fa0af5702f09bacab93cbe +DIST mmap-v1.1.0.tbz 12312 BLAKE2B 3f688f5649ef51fc2a0cee76519da46dcfecd72a065de3cdc72412e27bfa39c26c6bb54d35ea6e3b139db0ccc75e9460f8285826c40ecc894a3782f279366686 SHA512 15e4ec2634998f321f495de5372dc75a3f4059ab7512115603ae8fd99a619c91299d34c8a12a697aa36df4ce14c90c66746b873eddf004b7bbbeaef8ec7858f5 diff --git a/dev-ml/mmap/mmap-1.1.0.ebuild b/dev-ml/mmap/mmap-1.1.0.ebuild new file mode 100644 index 00000000000..7064da7c544 --- /dev/null +++ b/dev-ml/mmap/mmap-1.1.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit dune + +DESCRIPTION="File mapping" +HOMEPAGE="https://github.com/mirage/mmap" +SRC_URI="https://github.com/mirage/mmap/releases/download/v${PV}/${PN}-v${PV}.tbz" + +LICENSE="LGPL-2.1" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="+ocamlopt" + +RDEPEND="" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}-v${PV}"