diff options
author | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2022-04-27 02:06:02 +0200 |
---|---|---|
committer | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2022-04-27 02:08:37 +0200 |
commit | 4dc9e3a7d17342e0808c2c8be849d2c1ea53bf24 (patch) | |
tree | 7c39079e5fd100c7547813f068d9db36713a6100 /dev-ml | |
parent | dev-ml/gapi-ocaml: new package, add 0.4.2 (diff) | |
download | guru-4dc9e3a7d17342e0808c2c8be849d2c1ea53bf24.tar.gz guru-4dc9e3a7d17342e0808c2c8be849d2c1ea53bf24.tar.bz2 guru-4dc9e3a7d17342e0808c2c8be849d2c1ea53bf24.zip |
dev-ml/tiny_httpd: new package, add 0.12
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/tiny_httpd/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/tiny_httpd/metadata.xml | 20 | ||||
-rw-r--r-- | dev-ml/tiny_httpd/tiny_httpd-0.12.ebuild | 49 |
3 files changed, 70 insertions, 0 deletions
diff --git a/dev-ml/tiny_httpd/Manifest b/dev-ml/tiny_httpd/Manifest new file mode 100644 index 000000000..528990da2 --- /dev/null +++ b/dev-ml/tiny_httpd/Manifest @@ -0,0 +1 @@ +DIST tiny_httpd-0.12.tar.gz 49124 BLAKE2B c3f407a605dabad1c710a696a3fca5dce04a75deb61e25e9ce572432e0d96cd3029628ea24d17d55a051d1d0f78aa1fd80797e7ff9c0bb7fc9d190e461784cd3 SHA512 99b4d01d4f4d138b122c689b8b3bc5043fc386d6686675311f625bf5fec72c6e1a7513712b00889fe17cd392b8c475440d4f89ee46392aff32ac6ccc39cefe09 diff --git a/dev-ml/tiny_httpd/metadata.xml b/dev-ml/tiny_httpd/metadata.xml new file mode 100644 index 000000000..0a42dd488 --- /dev/null +++ b/dev-ml/tiny_httpd/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>lssndrbarbieri@gmail.com</email> + <name>Alessandro Barbieri</name> + </maintainer> + <use> + <flag name="camlzip">Interface to camlzip for tiny_httpd</flag> + </use> + <upstream> + <doc>https://c-cube.github.io/tiny_httpd/</doc> + <bugs-to>https://github.com/c-cube/tiny_httpd/issues</bugs-to> + <remote-id type="github">c-cube/tiny_httpd</remote-id> + <maintainer> + <name>Simon Cruanes</name> + <email>simon.cruanes.2007@m4x.org</email> + </maintainer> + </upstream> +</pkgmetadata> diff --git a/dev-ml/tiny_httpd/tiny_httpd-0.12.ebuild b/dev-ml/tiny_httpd/tiny_httpd-0.12.ebuild new file mode 100644 index 000000000..890d8831c --- /dev/null +++ b/dev-ml/tiny_httpd/tiny_httpd-0.12.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune multiprocessing + +DESCRIPTION="Minimal HTTP server with a small request router" +HOMEPAGE=" + https://github.com/c-cube/tiny_httpd + https://opam.ocaml.org/packages/tiny_httpd +" +SRC_URI="https://github.com/c-cube/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="camlzip ocamlopt test" + +RDEPEND=" + dev-ml/result:= + dev-ml/seq:= + + camlzip? ( >=dev-ml/camlzip-1.06:= ) +" +DEPEND=" + ${RDEPEND} + test? ( + dev-ml/qtest + dev-ml/ounit2 + dev-ml/ptime + dev-ml/qcheck + net-misc/curl + ) +" + +RESTRICT="!test? ( test )" +REQUIRED_USE="test? ( camlzip )" + +src_compile() { + local pkgs="tiny_httpd" + use camlzip && pkgs="${pkgs},tiny_httpd_camlzip" + dune build -p "${pkgs}" -j $(makeopts_jobs) || die +} + +src_install() { + dune_src_install tiny_httpd + use camlzip && dune_src_install "tiny_httpd_camlzip" +} |