diff options
Diffstat (limited to 'dev-ml/ocaml-dispatch')
-rw-r--r-- | dev-ml/ocaml-dispatch/Manifest | 5 | ||||
-rw-r--r-- | dev-ml/ocaml-dispatch/metadata.xml | 11 | ||||
-rw-r--r-- | dev-ml/ocaml-dispatch/ocaml-dispatch-0.3.0.ebuild | 34 | ||||
-rw-r--r-- | dev-ml/ocaml-dispatch/ocaml-dispatch-0.4.0.ebuild | 43 |
4 files changed, 93 insertions, 0 deletions
diff --git a/dev-ml/ocaml-dispatch/Manifest b/dev-ml/ocaml-dispatch/Manifest new file mode 100644 index 000000000000..eb8b86b7c700 --- /dev/null +++ b/dev-ml/ocaml-dispatch/Manifest @@ -0,0 +1,5 @@ +DIST ocaml-dispatch-0.3.0.tar.gz 51453 SHA256 ebb6bb60ec5a7c17a68711a801006f204b283989b5b9fa1dbe9bd781645f3913 SHA512 0f09eae45a2ecae27d07e247b6a47f307e074342e337e7be262f5183f77090f0aef81fb5c0bf499732bd0a711d4d51775cbcea5e463011f43a1777582d78806b WHIRLPOOL f77f459b34df41506ef1eb13e4d880a0bfed8166e60e2770b0cb6dc3ac2285281f4fc35c2b12465743492d8f730b6ad5585e995a3152a2c5e72638c335158256 +DIST ocaml-dispatch-0.4.0.tar.gz 7554 SHA256 6c8e77f2960742c16e187355bd1bdaf51ff83c377bf91c6cf4db72de026de5b2 SHA512 d5318bda4079c21820fce5b21d178ed88fd0535a5cdc559dd6ceeb4d06ffb08456ee5aec1e56efd40b6d4f456f7d5c7eda17dc728666e6514dc936898b605b36 WHIRLPOOL 646bcbe74eb10f8935010c797d65c65bf5e74bb532ae375cad00953fcdc0cd9ca93a28e5a453db311114aaf296805893877e8a3bc65cd86ece995e9cea6cf934 +EBUILD ocaml-dispatch-0.3.0.ebuild 764 SHA256 9042a75a33cc588e28e6b6ec3cd3d667c3222a1ec7e0148e6bda32c8f2f575ba SHA512 27e4714792648b99cf1ca4c317f4b25c67dba6f0b64be21e2b51f4dfce49594d5a2625e5299840dac9b3022272beef6a5e50411c18fcebea11cb27a4b7499a01 WHIRLPOOL 99f5327855669a6e7ce736091a4a4d7baf44464c8d2cd557a082a79c22e7c632ed9b470b3b0a5e1013a328598d09040acc67df0ac501ffb88fa8075821d37a31 +EBUILD ocaml-dispatch-0.4.0.ebuild 854 SHA256 d6f99a267adca97eaac739249b8a0bbb82962c90f7d7e19f23f5c0228371ad9d SHA512 08e4d8469acadd2ba28d382ccf6b896fc40fb93b2b8714e1d4d26b3697bfe9c2ec84929328c3b5163ae5a42b54123f299657ecce8f9b191ffe24add142145909 WHIRLPOOL 8a9f9e7925b392609496dbf6bd98585a2058dc65f9488458a528fb95fb473ca9662ca1271de31542151c724de82084f807be5a5e63a64863b02c3c9c18d561ec +MISC metadata.xml 340 SHA256 005d513c5fdcc23c89b161068c23a389b325c42e18dd1d1371d69850083dd6c1 SHA512 5e4269d0759bc87bd0addce4092da3ce6832b4cbb49eb78780d2a3a2fb00ac1bedefe29ca35c3e8525a0c9c7d49dc64c3568c3b2e9c1f7517fedfbca14a099d4 WHIRLPOOL 8ee6a305c03f8e71d1708a407d9bbdd2c735cc2c1e23dff74a44fe4281485f205d155d3dda80c54987c2a2fae9180e29dca3f3c4a026c93b11c6a5b8e599452c diff --git a/dev-ml/ocaml-dispatch/metadata.xml b/dev-ml/ocaml-dispatch/metadata.xml new file mode 100644 index 000000000000..44eccfc3febe --- /dev/null +++ b/dev-ml/ocaml-dispatch/metadata.xml @@ -0,0 +1,11 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>ml@gentoo.org</email> + <name>Gentoo ML Project</name> + </maintainer> + <upstream> + <remote-id type="github">inhabitedtype/ocaml-dispatch</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ml/ocaml-dispatch/ocaml-dispatch-0.3.0.ebuild b/dev-ml/ocaml-dispatch/ocaml-dispatch-0.3.0.ebuild new file mode 100644 index 000000000000..0056e666f79f --- /dev/null +++ b/dev-ml/ocaml-dispatch/ocaml-dispatch-0.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +OASIS_BUILD_DOCS=1 +OASIS_BUILD_TESTS=1 + +inherit oasis + +DESCRIPTION="Path-based dispatching for client- and server-side applications" +HOMEPAGE="https://github.com/inhabitedtype/ocaml-dispatch" +SRC_URI="https://github.com/inhabitedtype/ocaml-dispatch/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="javascript" + +DEPEND=" + javascript? ( dev-ml/js_of_ocaml:=[ppx,ocamlopt?] ) + dev-ml/result:=[ocamlopt?] +" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} + test? ( dev-ml/ounit[ocamlopt?] ) +" + +DOCS=( "README.md" ) + +src_configure() { + oasis_configure_opts="$(use_enable javascript js-of-ocaml)" \ + oasis_src_configure +} diff --git a/dev-ml/ocaml-dispatch/ocaml-dispatch-0.4.0.ebuild b/dev-ml/ocaml-dispatch/ocaml-dispatch-0.4.0.ebuild new file mode 100644 index 000000000000..562ef548b9a1 --- /dev/null +++ b/dev-ml/ocaml-dispatch/ocaml-dispatch-0.4.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit findlib + +DESCRIPTION="Path-based dispatching for client- and server-side applications" +HOMEPAGE="https://github.com/inhabitedtype/ocaml-dispatch" +SRC_URI="https://github.com/inhabitedtype/ocaml-dispatch/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND=" + dev-ml/result:= + dev-lang/ocaml:= +" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} + dev-ml/jbuilder + dev-ml/opam + test? ( dev-ml/ounit ) +" + +src_compile() { + jbuilder build -p dispatch || die +} + +oinstall() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + --mandir="${ED}/usr/share/man" \ + ${1}.install || die +} + +src_install() { + oinstall dispatch +} |