summaryrefslogtreecommitdiff
path: root/dev-ml/sedlex
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/sedlex
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-ml/sedlex')
-rw-r--r--dev-ml/sedlex/Manifest3
-rw-r--r--dev-ml/sedlex/metadata.xml19
-rw-r--r--dev-ml/sedlex/sedlex-3.3-r1.ebuild37
-rw-r--r--dev-ml/sedlex/sedlex-3.6.ebuild36
-rw-r--r--dev-ml/sedlex/sedlex-3.7.ebuild36
5 files changed, 0 insertions, 131 deletions
diff --git a/dev-ml/sedlex/Manifest b/dev-ml/sedlex/Manifest
deleted file mode 100644
index 287008bc6a83..000000000000
--- a/dev-ml/sedlex/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST sedlex-3.3.tar.gz 128967 BLAKE2B aab0e15246dbdd5eb442be930483bf3b8950a13189b0175d9c1af90f1a42cff1b39337284dd69e10b06fd94b7889e749faad0d97279675482dc776621d12e686 SHA512 791b172b59256cb77df1bbd9e3136aa79e65bcb3df1f64bbe10933d624bad59a7d8b358c35abd07c267b89a3feb01f935e927ffc4fe9c6eb2ac6637cfa9b42cd
-DIST sedlex-3.6.tar.gz 141746 BLAKE2B 38dbff064865e00be58571689ddb5171abe0f8f61e659cdb10a713ac7a3db97d08e4330c6d3ddabd7934f96d300d26f776c52861a5c1cdc5e7ad0e2df1aabc92 SHA512 f3062175e9914b692426ddad215efe2d8f3d269a648f1faf86771d56452d8dbd7edb040409773a19e77bd21e4143281dff94a6800ddb7d5fb50170ab5616c63b
-DIST sedlex-3.7.tar.gz 143594 BLAKE2B 35b0a7873170822edb7a1046c4d7b7a87ded862f799d4c71f7c5fc86407e75e35749a355c94ecd4e1c5636dfacd3b1a42fb80e48bd87d19d8f4733f56019c358 SHA512 053bceea4944309705e6b8014381711a2c4f7f0ab235cd239e2d2f5a2dbd3efe1b1c2d533631a8545dacf563cdb5b7469fe53982ef79ace270ee8a4a471f1fe2
diff --git a/dev-ml/sedlex/metadata.xml b/dev-ml/sedlex/metadata.xml
deleted file mode 100644
index 7a5e2b697654..000000000000
--- a/dev-ml/sedlex/metadata.xml
+++ /dev/null
@@ -1,19 +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>
- <longdescription>
- sedlex is a lexer generator for OCaml. It is similar to ocamllex, but
- supports Unicode. Unlike ocamllex, sedlex allows lexer specifications
- within regular OCaml source files. Lexing specific constructs are provided
- via a ppx syntax extension.
- </longdescription>
- <upstream>
- <bugs-to>https://github.com/ocaml-community/sedlex/issues/</bugs-to>
- <remote-id type="github">ocaml-community/sedlex</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-ml/sedlex/sedlex-3.3-r1.ebuild b/dev-ml/sedlex/sedlex-3.3-r1.ebuild
deleted file mode 100644
index 938625e9d63f..000000000000
--- a/dev-ml/sedlex/sedlex-3.3-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Using "--for-release-of-packages" skips the regeneration of "unicode.ml" file
-# (using curl), see "src_compile" and "src_test" and "dune-release".
-DUNE_PKG_NAME=${PN}
-
-inherit dune
-
-DESCRIPTION="An OCaml lexer generator for Unicode"
-HOMEPAGE="https://github.com/ocaml-community/sedlex/"
-SRC_URI="https://github.com/ocaml-community/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- dev-ml/gen:=
- >=dev-ml/ppxlib-0.26:=[ocamlopt?]
- <dev-ml/ppxlib-0.36.0
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-ml/ppx_expect )"
-
-src_compile() {
- dune-compile ${DUNE_PKG_NAME}
-}
-
-src_test() {
- dune-test ${DUNE_PKG_NAME}
-}
diff --git a/dev-ml/sedlex/sedlex-3.6.ebuild b/dev-ml/sedlex/sedlex-3.6.ebuild
deleted file mode 100644
index ac1e332e2882..000000000000
--- a/dev-ml/sedlex/sedlex-3.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Using "--for-release-of-packages" skips the regeneration of "unicode.ml" file
-# (using curl), see "src_compile" and "src_test" and "dune-release".
-DUNE_PKG_NAME=${PN}
-
-inherit dune
-
-DESCRIPTION="An OCaml lexer generator for Unicode"
-HOMEPAGE="https://github.com/ocaml-community/sedlex/"
-SRC_URI="https://github.com/ocaml-community/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- dev-ml/gen:=
- >=dev-ml/ppxlib-0.26:=[ocamlopt?]
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-ml/ppx_expect )"
-
-src_compile() {
- dune-compile ${DUNE_PKG_NAME}
-}
-
-src_test() {
- dune-test ${DUNE_PKG_NAME}
-}
diff --git a/dev-ml/sedlex/sedlex-3.7.ebuild b/dev-ml/sedlex/sedlex-3.7.ebuild
deleted file mode 100644
index ac1e332e2882..000000000000
--- a/dev-ml/sedlex/sedlex-3.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Using "--for-release-of-packages" skips the regeneration of "unicode.ml" file
-# (using curl), see "src_compile" and "src_test" and "dune-release".
-DUNE_PKG_NAME=${PN}
-
-inherit dune
-
-DESCRIPTION="An OCaml lexer generator for Unicode"
-HOMEPAGE="https://github.com/ocaml-community/sedlex/"
-SRC_URI="https://github.com/ocaml-community/${PN}/archive/v${PV}.tar.gz
- -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-IUSE="+ocamlopt test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- dev-ml/gen:=
- >=dev-ml/ppxlib-0.26:=[ocamlopt?]
-"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-ml/ppx_expect )"
-
-src_compile() {
- dune-compile ${DUNE_PKG_NAME}
-}
-
-src_test() {
- dune-test ${DUNE_PKG_NAME}
-}