* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mirage-block-unix/
@ 2022-04-15 20:34 Alessandro Barbieri
0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-04-15 20:34 UTC (permalink / raw
To: gentoo-commits
commit: 4e244927bc9c83e18a63ceea9f61dbf058d32def
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 9 14:00:03 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri Apr 15 20:34:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4e244927
dev-ml/mirage-block-unix: initial import
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/mirage-block-unix/Manifest | 1 +
dev-ml/mirage-block-unix/metadata.xml | 11 +++++++
.../mirage-block-unix-2.14.0.ebuild | 36 ++++++++++++++++++++++
3 files changed, 48 insertions(+)
diff --git a/dev-ml/mirage-block-unix/Manifest b/dev-ml/mirage-block-unix/Manifest
new file mode 100644
index 000000000..f766799d8
--- /dev/null
+++ b/dev-ml/mirage-block-unix/Manifest
@@ -0,0 +1 @@
+DIST mirage-block-unix-2.14.0.tar.gz 23692 BLAKE2B 398e6c0c1a3d48d47aa9dd8a990c537c8afb6e4979867cf3b6ab67c66f06855995a25f0ed4b5b00ac2069a891ba416ab1d776e2699623262952f0154baa8b0d8 SHA512 6c6a98670f0c5763cbff027308df97456af975b572dbc20a64f8410e48f7d5b4ad08007aa33d7020203a7f0f060c06b4b2a17461abb909d3561cccd5ef7421ab
diff --git a/dev-ml/mirage-block-unix/metadata.xml b/dev-ml/mirage-block-unix/metadata.xml
new file mode 100644
index 000000000..e0c0fc994
--- /dev/null
+++ b/dev-ml/mirage-block-unix/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lssndrbarbieri@gmail.com</email>
+ <name>Alessandro Barbieri</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">mirage/mirage-block-unix</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild b/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild
new file mode 100644
index 000000000..6ef1150c2
--- /dev/null
+++ b/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+DESCRIPTION="Unix implementation of the Mirage_types.BLOCK interface"
+HOMEPAGE="https://github.com/mirage/mirage-block-unix"
+SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="ocamlopt test"
+
+RDEPEND="
+ dev-ml/cstruct[lwt]
+ dev-ml/lwt
+ dev-ml/mirage-block
+ dev-ml/rresult
+ dev-ml/uri
+ dev-ml/logs
+ dev-ml/io-page
+
+"
+DEPEND="
+ ${RDEPEND}
+ test? (
+ dev-ml/fmt
+ >=dev-ml/ounit-2
+ dev-ml/diet
+ )
+"
+
+RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mirage-block-unix/
@ 2022-04-15 22:46 Alessandro Barbieri
0 siblings, 0 replies; 2+ messages in thread
From: Alessandro Barbieri @ 2022-04-15 22:46 UTC (permalink / raw
To: gentoo-commits
commit: e6eff67e37372de1ba447d90d36e571aabfe0c68
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Apr 15 22:12:10 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Fri Apr 15 22:46:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e6eff67e
dev-ml/mirage-block-unix: fix dependency on ounit2
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild b/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild
index 6ef1150c2..8eba96120 100644
--- a/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild
+++ b/dev-ml/mirage-block-unix/mirage-block-unix-2.14.0.ebuild
@@ -15,20 +15,20 @@ KEYWORDS="~amd64"
IUSE="ocamlopt test"
RDEPEND="
- dev-ml/cstruct[lwt]
- dev-ml/lwt
- dev-ml/mirage-block
- dev-ml/rresult
- dev-ml/uri
- dev-ml/logs
- dev-ml/io-page
+ dev-ml/cstruct:=[lwt]
+ dev-ml/lwt:=
+ dev-ml/mirage-block:=
+ dev-ml/rresult:=
+ dev-ml/uri:=
+ dev-ml/logs:=
+ dev-ml/io-page:=
"
DEPEND="
${RDEPEND}
test? (
dev-ml/fmt
- >=dev-ml/ounit-2
+ dev-ml/ounit2
dev-ml/diet
)
"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-15 22:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-15 22:46 [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/mirage-block-unix/ Alessandro Barbieri
-- strict thread matches above, loose matches on Subject: below --
2022-04-15 20:34 Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox