diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ml/ocamlnet | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-ml/ocamlnet')
| -rw-r--r-- | dev-ml/ocamlnet/Manifest | 2 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/files/ocamlnet-4.1.9-int_missing.patch | 20 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/files/ocamlnet-4.1.9-noWhich.patch | 16 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/files/ocamlnet-4.1.9-shuffle.patch | 11 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/files/ocamlnet-4.1.9-unboundLexer.patch | 10 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/metadata.xml | 12 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild | 78 | ||||
| -rw-r--r-- | dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild | 93 |
8 files changed, 0 insertions, 242 deletions
diff --git a/dev-ml/ocamlnet/Manifest b/dev-ml/ocamlnet/Manifest deleted file mode 100644 index f8c4e062ea07..000000000000 --- a/dev-ml/ocamlnet/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST ocamlnet-4.1.8.tar.gz 4620065 BLAKE2B 8f84ce4d79de5f4a1f26d4e45f68327042b0adc22717e56eeaca03ee6371e9251c01e8736d3afe5c00a1c65ef0286d56a04c57e80377402bb19ff87955ae98d9 SHA512 e238235968b9546c60568a38e68e354378d30e7137973332dcb10da21fa775ab7b367889fc51f5bd7cb00e51582834cafe2a0c4706b0bc77a44d4571a6f22815 -DIST ocamlnet-4.1.9.tar.gz 4628747 BLAKE2B 40e41edee79ba5957d297506cdf1b907adc8d44a33f25f25b8b1a18487f5ec379fb328c86d6283f7da7cedd8d35b80809e1cd5224522d51afa3e5f2402ac8663 SHA512 a251724deb35e756c81d2d3ac836d413b659acdce6c0acf479a4fca48934ab62ad399a884197d00dbb7e7558132a56be1c8efd553c0a644d329418272f809a46 diff --git a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-int_missing.patch b/dev-ml/ocamlnet/files/ocamlnet-4.1.9-int_missing.patch deleted file mode 100644 index 65acbc24aded..000000000000 --- a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-int_missing.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/configure 2025-04-12 18:33:58.152657365 +0200 -+++ b/configure 2025-04-12 18:34:13.302476934 +0200 -@@ -829,7 +829,7 @@ - cat <<EOF >tmp/t.c - #include "tcl.h" - --main () { -+int main () { - } - EOF - -@@ -849,7 +849,7 @@ - #include <stdio.h> - #include "tcl.h" - --do_something () { -+int do_something () { - void (*x)(int); - x = Tcl_Exit; - exit(0); diff --git a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-noWhich.patch b/dev-ml/ocamlnet/files/ocamlnet-4.1.9-noWhich.patch deleted file mode 100644 index 9baed9842292..000000000000 --- a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-noWhich.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/configure 2024-10-23 21:15:13.597333850 +0200 -+++ b/configure 2024-10-23 21:15:34.527082731 +0200 -@@ -1106,11 +1106,11 @@ - printf "%s" "Checking for make utility... " - if [ -z "$MAKE" ] - then -- if which gmake >/dev/null -+ if command -v gmake >/dev/null - then - make=gmake - else -- if which make >/dev/null -+ if command -v make >/dev/null - then - make=make - fi diff --git a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-shuffle.patch b/dev-ml/ocamlnet/files/ocamlnet-4.1.9-shuffle.patch deleted file mode 100644 index 6b7026faf1e0..000000000000 --- a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-shuffle.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.rules 2023-01-20 22:52:47.530898157 +0100 -+++ b/Makefile.rules 2023-01-20 22:53:09.370565670 +0100 -@@ -210,7 +210,7 @@ - # Set NODEP to "@true" in order to disable "depend". - - depend: $(DEP_FILES) -- $(NODEP) $(OCAMLDEP) *.ml *.mli >$@ || { rm -f $@; exit 1; } -+ $(NODEP) $(OCAMLDEP) -ml-synonym .mll *.ml *.mli >$@ || { rm -f $@; exit 1; } - - .PHONY: clean - clean:: genclean diff --git a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-unboundLexer.patch b/dev-ml/ocamlnet/files/ocamlnet-4.1.9-unboundLexer.patch deleted file mode 100644 index 416df217c035..000000000000 --- a/dev-ml/ocamlnet/files/ocamlnet-4.1.9-unboundLexer.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/rpc-generator/Makefile 2022-12-22 08:32:49.839794123 +0100 -+++ b/src/rpc-generator/Makefile 2022-12-22 08:34:48.185817182 +0100 -@@ -31,4 +31,7 @@ - rpcgen-packlist: - echo $(BINDIR)/ocamlrpcgen >rpcgen-packlist - -+main.cmo: lexer.cmo -+lexer.cmo: parser.cmo -+ - include depend diff --git a/dev-ml/ocamlnet/metadata.xml b/dev-ml/ocamlnet/metadata.xml deleted file mode 100644 index 1cd5b462ca9d..000000000000 --- a/dev-ml/ocamlnet/metadata.xml +++ /dev/null @@ -1,12 +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> -<use> - <flag name="httpd">Enables net-httpd web server component</flag> - <flag name="zip">Enables netzip support to read/write gzip data using object channels</flag> -</use> -</pkgmetadata> diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild b/dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild deleted file mode 100644 index e79e1f7d0784..000000000000 --- a/dev-ml/ocamlnet/ocamlnet-4.1.8-r2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit findlib toolchain-funcs - -MY_P=${P/_beta/test} -DESCRIPTION="Modules for OCaml application-level Internet protocols" -HOMEPAGE="http://projects.camlcity.org/projects/ocamlnet.html" -SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="ZLIB GPL-2+" -SLOT="0/${PV}" -KEYWORDS="amd64 ~ppc x86" -IUSE="kerberos tk httpd +ocamlopt +pcre ssl zip" -RESTRICT="installsources strip" - -# the auth-dh compile flag has been disabled as well, since it depends on -# ocaml-cryptgps, which is not available. - -BDEPEND=" - dev-ml/cppo - virtual/pkgconfig -" -RDEPEND=" - >=dev-ml/findlib-1.0 - <dev-lang/ocaml-5:=[ocamlopt?] - pcre? ( >=dev-ml/pcre-ocaml-5:= ) - tk? ( dev-ml/labltk:= ) - ssl? ( net-libs/gnutls:= ) - kerberos? ( virtual/krb5 ) - zip? ( dev-ml/camlzip:= ) -" -DEPEND="${RDEPEND}" - -ocamlnet_use_with() { - if use $1; then - echo "-with-$2" - else - echo "-without-$2" - fi -} - -ocamlnet_use_enable() { - if use $1; then - echo "-enable-$2" - else - echo "-disable-$2" - fi -} - -src_configure() { - ./configure \ - -bindir /usr/bin \ - -datadir /usr/share/${PN} \ - $(ocamlnet_use_enable ssl gnutls) \ - $(ocamlnet_use_enable kerberos gssapi) \ - $(ocamlnet_use_enable pcre pcre) \ - $(ocamlnet_use_enable tk tcl) \ - $(ocamlnet_use_enable zip zip) \ - $(ocamlnet_use_with httpd nethttpd) \ - -cpp "$(tc-getPROG CPP cpp)" \ - -equeue-tcl-libs -ltcl \ - || die "Error: econf failed!" -} - -src_compile() { - emake -j1 all - if use ocamlopt; then - emake -j1 opt - fi -} - -src_install() { - findlib_src_install -} diff --git a/dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild b/dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild deleted file mode 100644 index 80076c06e44f..000000000000 --- a/dev-ml/ocamlnet/ocamlnet-4.1.9-r2.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit findlib toolchain-funcs - -MY_P=${P/_beta/test} -DESCRIPTION="Modules for OCaml application-level Internet protocols" -HOMEPAGE="http://projects.camlcity.org/projects/ocamlnet.html" -SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="ZLIB GPL-2+" -SLOT="0/${PV}" -KEYWORDS="amd64 ~ppc x86" -IUSE="kerberos tk httpd +ocamlopt +pcre ssl zip" -RESTRICT="installsources strip" - -# the auth-dh compile flag has been disabled as well, since it depends on -# ocaml-cryptgps, which is not available. - -BDEPEND=" - dev-ml/cppo - virtual/pkgconfig -" -RDEPEND=" - >=dev-ml/findlib-1.0 - <dev-lang/ocaml-5:=[ocamlopt?] - pcre? ( >=dev-ml/pcre-ocaml-5:= ) - tk? ( dev-ml/labltk:= ) - ssl? ( net-libs/gnutls:= ) - kerberos? ( virtual/krb5 ) - zip? ( dev-ml/camlzip:= ) -" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-unboundLexer.patch - "${FILESDIR}"/${P}-shuffle.patch - "${FILESDIR}"/${P}-noWhich.patch - "${FILESDIR}"/${P}-int_missing.patch -) - -ocamlnet_use_with() { - if use $1; then - echo "-with-$2" - else - echo "-without-$2" - fi -} - -ocamlnet_use_enable() { - if use $1; then - echo "-enable-$2" - else - echo "-disable-$2" - fi -} - -src_prepare() { - sed -i \ - -e "s:^version.*$:version=${PV}:" \ - configure \ - || die - default -} - -src_configure() { - ./configure \ - -bindir /usr/bin \ - -datadir /usr/share/${PN} \ - $(ocamlnet_use_enable ssl gnutls) \ - $(ocamlnet_use_enable kerberos gssapi) \ - $(ocamlnet_use_enable pcre pcre) \ - $(ocamlnet_use_enable tk tcl) \ - $(ocamlnet_use_enable zip zip) \ - $(ocamlnet_use_with httpd nethttpd) \ - -cpp "$(tc-getPROG CPP cpp)" \ - -equeue-tcl-libs -ltcl \ - || die "Error: econf failed!" -} - -src_compile() { - emake -j1 all - if use ocamlopt; then - emake -j1 opt - fi -} - -src_install() { - findlib_src_install -} |
