summaryrefslogtreecommitdiff
path: root/dev-ml/uchar
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ml/uchar
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-ml/uchar')
-rw-r--r--dev-ml/uchar/Manifest1
-rw-r--r--dev-ml/uchar/metadata.xml11
-rw-r--r--dev-ml/uchar/uchar-0.0.2-r1.ebuild42
3 files changed, 0 insertions, 54 deletions
diff --git a/dev-ml/uchar/Manifest b/dev-ml/uchar/Manifest
deleted file mode 100644
index d3de1b489c67..000000000000
--- a/dev-ml/uchar/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST uchar-0.0.2.tar.gz 21815 BLAKE2B aede9d42ac2d9ccaa7af2f40799916f30cef0d6e292b7909b5131b5d28c979362b7624a88cec8ba2e7bed1dcada60d8e512ed70d2a02dafcf4ad701c60f6faa6 SHA512 487a9706cf9dfc9b9c94442a51766cc211687d6ebcb4dd3c94d09cb1ed6d7fd61e966e91a4121fe2d1681b2fd6bfee9079d3bccccdb6d65ba2111524ab5dd1bc
diff --git a/dev-ml/uchar/metadata.xml b/dev-ml/uchar/metadata.xml
deleted file mode 100644
index 4934c43326a8..000000000000
--- a/dev-ml/uchar/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>ml@gentoo.org</email>
- <name>ML</name>
- </maintainer>
- <upstream>
- <remote-id type="github">ocaml/uchar</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ml/uchar/uchar-0.0.2-r1.ebuild b/dev-ml/uchar/uchar-0.0.2-r1.ebuild
deleted file mode 100644
index d1de236f885c..000000000000
--- a/dev-ml/uchar/uchar-0.0.2-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit edo findlib
-
-DESCRIPTION="Uchar compatibility library"
-HOMEPAGE="https://github.com/ocaml/uchar"
-SRC_URI="https://github.com/ocaml/uchar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2-with-linking-exception"
-SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
-IUSE="+ocamlopt"
-
-BDEPEND="dev-ml/ocamlbuild"
-
-# This is mostly a compat wrapper for older ocaml versions we don't support. No
-# need to test it, plus it fails when installing for the first time:
-# https://bugs.gentoo.org/show_bug.cgi?id=624144
-RESTRICT="test"
-
-src_compile() {
- edo ocaml pkg/build.ml \
- "native=$(usex ocamlopt true false)" \
- "native-dynlink=$(usex ocamlopt true false)"
-}
-
-src_test() {
- edo ocamlbuild -X src -use-ocamlfind -pkg uchar test/testpkg.native
-}
-
-src_install() {
- # Can't use opam-installer here as it is an opam dep...
- findlib_src_preinst
-
- mv _build/pkg/META{.empty,} || die
- ocamlfind install ${PN} _build/pkg/META || die
-
- dodoc README.md CHANGES.md
-}