dev-ml/uri: new package, add 4.4.0

Signed-off-by: Hiroki Tokunaga <tokusan441@gmail.com>
This commit is contained in:
Hiroki Tokunaga 2024-07-16 11:58:47 +09:00
parent 82333b2b1f
commit a111f23836
No known key found for this signature in database
GPG Key ID: E276791E129FF601
3 changed files with 53 additions and 0 deletions

1
dev-ml/uri/Manifest Normal file
View File

@ -0,0 +1 @@
DIST uri-4.4.0.tar.gz 233155 BLAKE2B c89158884a529c80b677a1c1bd9e7588e2d99e25a677e33c1c304066f37e95d2348ba0d82389531e38863312bc2ffae345049d368fd96c48e249e4376530df07 SHA512 e9deb58e8813f0a48810dc210b8053abb195453f7de6de22b317822d863b2236624462413c34f67658a40b475db132ad13dd09a76cc30c45f8259f3e9e087358

12
dev-ml/uri/metadata.xml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>tokusan441@gmail.com</email>
<description>Hiroki Tokunaga</description>
</maintainer>
<upstream>
<bugs-to>https://github.com/mirage/ocaml-uri/issues</bugs-to>
<remote-id type="github">mirage/ocaml-uri</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,40 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="RFC3986 URI parsing library for OCaml"
HOMEPAGE="https://github.com/mirage/ocaml-uri"
SRC_URI="https://github.com/mirage/ocaml-uri/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ocaml-uri-${PV}"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-ml/angstrom:=
dev-ml/ppx_sexp_conv:=
dev-ml/stringext:=
dev-ml/core_bench:=
"
DEPEND="
${RDEPEND}
"
BDEPEND="
test? (
dev-ml/ounit2:=
dev-ml/crowbar:=
dev-ml/core_bench:=
)
"