aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ml/tuntap')
-rw-r--r--dev-ml/tuntap/Manifest1
-rw-r--r--dev-ml/tuntap/files/tuntap-2.0.0-ounit2.patch25
-rw-r--r--dev-ml/tuntap/metadata.xml25
-rw-r--r--dev-ml/tuntap/tuntap-2.0.0.ebuild33
4 files changed, 0 insertions, 84 deletions
diff --git a/dev-ml/tuntap/Manifest b/dev-ml/tuntap/Manifest
deleted file mode 100644
index 018771f9e..000000000
--- a/dev-ml/tuntap/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tuntap-v2.0.0.tbz 10494 BLAKE2B 9599c8c6ff3abd10e942967c965ea1579cb10f4db2edebc078ecdc3410f9629c6f6de7d5e6bd4ce273918d4f3ac5190ef5e6e06b000808b0fabb26a7ce080ad5 SHA512 e3bf0379906b5070ae5681ae74a1a74b9b987d1f37ff142fb10622d79db8df435c9db54a2d4d5d4dadaeab9aa9427b1d40262dbf445a88b3c3fe64bc93417647
diff --git a/dev-ml/tuntap/files/tuntap-2.0.0-ounit2.patch b/dev-ml/tuntap/files/tuntap-2.0.0-ounit2.patch
deleted file mode 100644
index e52b09769..000000000
--- a/dev-ml/tuntap/files/tuntap-2.0.0-ounit2.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/test/dune b/test/dune
-index 951a008..9d86605 100644
---- a/test/dune
-+++ b/test/dune
-@@ -1,6 +1,6 @@
- (executables
- (names getifaddrs_test nonblock_read open_close_test set_ipv4_test nonblock_test sendfd_test)
-- (libraries lwt.unix tuntap macaddr ipaddr oUnit))
-+ (libraries lwt.unix tuntap macaddr ipaddr ounit2))
-
- (alias
- (name runtest)
-diff --git a/tuntap.opam b/tuntap.opam
-index 08002b2..87148c1 100644
---- a/tuntap.opam
-+++ b/tuntap.opam
-@@ -27,7 +27,7 @@ depends: [
- "ipaddr" {>= "5.0.0"}
- "macaddr" {>= "4.0.0"}
- "cmdliner"
-- "ounit" {with-test}
-+ "ounit2" {with-test}
- "lwt" {with-test & >= "5.0.0"}
- ]
- build: [
diff --git a/dev-ml/tuntap/metadata.xml b/dev-ml/tuntap/metadata.xml
deleted file mode 100644
index 3f2551c2f..000000000
--- a/dev-ml/tuntap/metadata.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>lssndrbarbieri@gmail.com</email>
- <name>Alessandro Barbieri</name>
- </maintainer>
- <longdescription lang="en">This is an OCaml library for handling TUN/TAP devices. TUN refers to layer 3
-virtual interfaces whereas TAP refers to layer 2 Ethernet ones.
-
-See &lt;http://en.wikipedia.org/wiki/TUN/TAP&gt; for more information.
-
-Linux, FreeBSD, OpenBSD and macOS should all be supported. You will need
-to install the third-party &lt;http://tuntaposx.sourceforge.net/&gt; on macOS before
-using this library.</longdescription>
- <upstream>
- <doc>https://mirage.github.io/ocaml-tuntap/</doc>
- <bugs-to>https://github.com/mirage/ocaml-tuntap/issues</bugs-to>
- <remote-id type="github">mirage/ocaml-tuntap</remote-id>
- <maintainer>
- <name>Vincent Bernardoff</name>
- <email>vb@luminar.eu.org</email>
- </maintainer>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ml/tuntap/tuntap-2.0.0.ebuild b/dev-ml/tuntap/tuntap-2.0.0.ebuild
deleted file mode 100644
index 496747238..000000000
--- a/dev-ml/tuntap/tuntap-2.0.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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
- https://opam.ocaml.org/packages/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 test"
-
-RDEPEND="
- dev-ml/cmdliner:=
- >=dev-ml/ipaddr-5.0.0:=
-"
-DEPEND="
- ${RDEPEND}
- sys-kernel/linux-headers
- test? ( >=dev-ml/lwt-5.0.0 )
-"
-
-RESTRICT="!test? ( test )"