dev-ml/tuntap: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-02 22:20:35 +02:00
parent c96b8630f0
commit 9d2489023b
3 changed files with 39 additions and 0 deletions

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

@@ -0,0 +1 @@
DIST tuntap-v2.0.0.tbz 10494 BLAKE2B 9599c8c6ff3abd10e942967c965ea1579cb10f4db2edebc078ecdc3410f9629c6f6de7d5e6bd4ce273918d4f3ac5190ef5e6e06b000808b0fabb26a7ce080ad5 SHA512 e3bf0379906b5070ae5681ae74a1a74b9b987d1f37ff142fb10622d79db8df435c9db54a2d4d5d4dadaeab9aa9427b1d40262dbf445a88b3c3fe64bc93417647

View File

@@ -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/ocaml-tuntap</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
MY_P="${PN}-v${PV}"
DESCRIPTION="Bindings to UNIX tuntap facilities"
HOMEPAGE="https://github.com/mirage/ocaml-tuntap"
SRC_URI="https://github.com/mirage/ocaml-${PN}/releases/download/v${PV}/${MY_P}.tbz"
S="${WORKDIR}/${MY_P}"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
RDEPEND="
dev-ml/cmdliner
dev-ml/ipaddr
"
DEPEND="
${RDEPEND}
sys-kernel/linux-headers
"