dev-ml/qmp: update HOMEPAGE

Closes: https://bugs.gentoo.org/838805
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-16 15:09:00 +02:00
parent e8901804d6
commit 8b65fd2815
2 changed files with 75 additions and 5 deletions

View File

@@ -0,0 +1,66 @@
From a3ebbbd2760e4ba3774529a6975ac868baff091c Mon Sep 17 00:00:00 2001
From: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Date: Sat, 16 Apr 2022 15:03:29 +0200
Subject: [PATCH 1/3] use ounit2
---
lib_test/dune | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib_test/dune b/lib_test/dune
index acc68b9..a587594 100644
--- a/lib_test/dune
+++ b/lib_test/dune
@@ -6,5 +6,5 @@
(executable
(name messages)
- (libraries libqmp oUnit)
+ (libraries libqmp ounit2)
)
From d09f6df5f07eed691d77136cca4ea36a98e630c3 Mon Sep 17 00:00:00 2001
From: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Date: Sat, 16 Apr 2022 15:05:34 +0200
Subject: [PATCH 2/3] install ounit2
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index cc6df4b..0595368 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ OCaml implementation of the Qemu Monitor Protocol (QMP)
Install the dependencies using OPAM:
```sh
-opam install yojson cmdliner dune ounit
+opam install yojson cmdliner dune ounit2
```
Build the library, tests, and CLI:
From dcd85772065d646d0272160be14ebf9e28bb6bde Mon Sep 17 00:00:00 2001
From: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Date: Sat, 16 Apr 2022 15:06:05 +0200
Subject: [PATCH 3/3] depend on ounit2
---
qmp.opam | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qmp.opam b/qmp.opam
index 242b3c8..e36fb3f 100644
--- a/qmp.opam
+++ b/qmp.opam
@@ -18,7 +18,7 @@ depends: [
"dune" {build}
"yojson"
"cmdliner"
- "ounit" {with-test}
+ "ounit2" {with-test}
]
dev-repo: "git://github.com/xapi-project/ocaml-qmp"
synopsis: "OCaml implementation of a Qemu Message Protocol (QMP) client"

View File

@@ -8,7 +8,10 @@ inherit dune
MYPN="ocaml-${PN}"
DESCRIPTION="A Qemu Message Protocol (QMP) client in OCaml"
HOMEPAGE="https://github.com/xapi-project/ocaml-qmp"
HOMEPAGE="
https://github.com/xapi-project/ocaml-qmp
https://opam.ocaml.org/packages/qmp/
"
SRC_URI="https://github.com/xapi-project/${MYPN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MYPN}-${PV}"
@@ -18,13 +21,14 @@ KEYWORDS="~amd64"
IUSE="ocamlopt test"
DEPEND="
dev-ml/base-unix
dev-ml/yojson
dev-ml/cmdliner
dev-ml/base-unix:=
dev-ml/yojson:=
dev-ml/cmdliner:=
"
RDEPEND="
${DEPEND}
test? ( dev-ml/ounit )
test? ( dev-ml/ounit2 )
"
RESTRICT="!test? ( test )"
PATCHES="${FILESDIR}/${P}-ounit2.patch"