summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-01-14 17:25:05 +0100
committerMichał Górny <mgorny@gentoo.org>2020-01-14 17:26:07 +0100
commite73cdb8ec3060b24e3ae4a568659547e8050dc71 (patch)
tree027bca129ccaca71fc75a2945302675c20f8c871 /dev-ml/ulex
parentsci-electronics/oregano: Remove last-rited pkg (diff)
downloadgentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.tar.gz
gentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.tar.bz2
gentoo-e73cdb8ec3060b24e3ae4a568659547e8050dc71.zip
dev-ml/*: Remove first set of unneeded leaf packages
Bug: https://bugs.gentoo.org/695782 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-ml/ulex')
-rw-r--r--dev-ml/ulex/Manifest1
-rw-r--r--dev-ml/ulex/metadata.xml5
-rw-r--r--dev-ml/ulex/ulex-1.1.ebuild32
3 files changed, 0 insertions, 38 deletions
diff --git a/dev-ml/ulex/Manifest b/dev-ml/ulex/Manifest
deleted file mode 100644
index c5b58a4071ec..000000000000
--- a/dev-ml/ulex/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ulex-1.1.tar.gz 20347 BLAKE2B c3c502f0375b964081b908a156c146d171d8c9ed0da491d2a421e9e132538bfb24908bc4d73211ad6a2cb502af5e51141f9ae59505f81fe8bfd4fa257427aeb0 SHA512 7840707705e8403cef6586b072d722043adf9a867a1f4209e1f3ad1a97797c2b292e5151b7714b37fa9aacb190eb0a0a35be1b7675bfaca46f1f68bda58cec70
diff --git a/dev-ml/ulex/metadata.xml b/dev-ml/ulex/metadata.xml
deleted file mode 100644
index 6f49eba8f496..000000000000
--- a/dev-ml/ulex/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/dev-ml/ulex/ulex-1.1.ebuild b/dev-ml/ulex/ulex-1.1.ebuild
deleted file mode 100644
index 6b98ec8bd787..000000000000
--- a/dev-ml/ulex/ulex-1.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils findlib
-
-DESCRIPTION="A lexer generator for unicode"
-HOMEPAGE="http://www.cduce.org"
-SRC_URI="http://www.cduce.org/download/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="amd64 ppc x86"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]
- dev-ml/camlp4:="
-DEPEND="${RDEPEND}
- dev-ml/ocamlbuild"
-
-src_compile() {
- emake all
- if use ocamlopt; then
- emake all.opt
- fi
-}
-
-src_install() {
- findlib_src_install
- dodoc README CHANGES
-}