summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2024-12-21 19:30:55 +0100
committerAlfredo Tupone <tupone@gentoo.org>2024-12-21 19:31:40 +0100
commitbdb3fbd2f726aea71a9ea6e048cc42f57640fed5 (patch)
treef295943f2092b685a4925263a63f08767b06de08 /dev-ml/xml-light
parentapp-admin/lsyncd: drop 2.2.3 (diff)
downloadgentoo-bdb3fbd2f726aea71a9ea6e048cc42f57640fed5.tar.gz
gentoo-bdb3fbd2f726aea71a9ea6e048cc42f57640fed5.tar.bz2
gentoo-bdb3fbd2f726aea71a9ea6e048cc42f57640fed5.zip
dev-ml/xml-light: drop 2.2-r3
Closes: https://bugs.gentoo.org/880055 Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/xml-light')
-rw-r--r--dev-ml/xml-light/Manifest1
-rw-r--r--dev-ml/xml-light/xml-light-2.2-r3.ebuild69
2 files changed, 0 insertions, 70 deletions
diff --git a/dev-ml/xml-light/Manifest b/dev-ml/xml-light/Manifest
index e5f6265491b3..94ad73c51e01 100644
--- a/dev-ml/xml-light/Manifest
+++ b/dev-ml/xml-light/Manifest
@@ -1,2 +1 @@
-DIST xml-light-2.2.zip 22130 BLAKE2B 95b4bc23be63ef5c6faf529877aaf753e3c9fee99948dff82bab5e3206ea718a71ce1e03a2bdba17ff21c040dc8774312ce752c97450f0420681926524864f58 SHA512 b3be968db1ea8b9f8cc439fc8a685083227a7b07469af17c31993229a506f2ff6b1b0cf2097f4198a71e1d858d166f36c99bb26720136633c233a790764087ed
DIST xml-light-2.5.tar.gz 18212 BLAKE2B 94174b0bed12b77647044de5552e3e6bbdbd8aa1c9e4683709d4a51227fd54bbd426de9a0c894ddc73271eefa763dfbc8df75a23b654fc6c681b49826ab082a9 SHA512 95d9d8ede370a9d82ecea08c717ef35f8df56907724596149af29b21871dd9942a4d5742d1fa16d63d4735d65d5529627d26f7bc703249a7f2f62e5479d72310
diff --git a/dev-ml/xml-light/xml-light-2.2-r3.ebuild b/dev-ml/xml-light/xml-light-2.2-r3.ebuild
deleted file mode 100644
index 13a88a9f841b..000000000000
--- a/dev-ml/xml-light/xml-light-2.2-r3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Minimal Xml parser and printer for OCaml"
-HOMEPAGE="http://tech.motion-twin.com/xmllight.html"
-SRC_URI="http://tech.motion-twin.com/zip/${P}.zip"
-S="${WORKDIR}/${PN}"
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
-IUSE="doc +ocamlopt"
-
-RDEPEND="dev-lang/ocaml:=[ocamlopt?]"
-DEPEND="${RDEPEND}"
-BDEPEND="app-arch/unzip"
-
-PATCHES=(
- "${FILESDIR}"/01_installopt.patch
- "${FILESDIR}"/02_cmi_depends.patch
- "${FILESDIR}"/03_cflags.patch
- "${FILESDIR}"/04_dtd_trace.patch
-)
-
-src_compile() {
- emake -j1
-
- if use ocamlopt; then
- emake -j1 opt
- fi
-
- if use doc;then
- emake doc
- fi
-}
-
-src_test() {
- # There are no tests...
- :
-}
-
-src_install() {
- dodir /usr/$(get_libdir)/ocaml/${PN}
- emake INSTALLDIR="${D}"/usr/$(get_libdir)/ocaml/${PN} install
-
- cat > "${ED}"/usr/$(get_libdir)/ocaml/${PN}/META || die << EOF
-name="${PN}"
-version="${PV}"
-description="${DESCRIPTION}"
-requires=""
-archive(byte)="xml-light.cma"
-EOF
-
- if use ocamlopt; then
- emake INSTALLDIR="${D}"/usr/$(get_libdir)/ocaml/${PN} installopt
- echo 'archive(native)="xml-light.cmxa"' >> "${ED}"/usr/$(get_libdir)/ocaml/${PN}/META || die
- fi
-
- dodoc README
-
- if use doc; then
- emake doc
-
- docinto html
- dodoc doc/*
- fi
-}