forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST alcotest-0.8.1.tar.gz 24358 SHA256 1e2e61dfe392321e950c0dbfa2fdcf0bcde7978c8e6743a59cd9fb8039cb9eae SHA512 76224df2d4923e666fd844a0735f2a23035454bb3c3aeb6a6f8d19376342f0f94f39a401d6225af3f90cddd2f65aa779ce87e42ee8d82e6b3ca33730d4277253 WHIRLPOOL 5f7847b08733b7a330553fb63702f2d27710a61e78185a99f90104a9f8a315d48f97a9fd5e891c15934c97dd082f0bc6feea01551f1cb81386119c30e5b046e1 | ||
DIST alcotest-0.8.2.tar.gz 25456 SHA256 0170866d299ac38702762d9b13feba409d702cfe5ba128e1380fa10a46c59b47 SHA512 df1cf5ab42e91a66cae2913504d6825f842169332b8673047faea769966f62d61cb1c288325a840211df0b22c31208566cf754b0816bfdf5d8ef34e8c5127668 WHIRLPOOL 0ceb79d872996a3f5ecc434390beb91af8adcd0f91263d8a085ca1e8808148ef5dce2ad188e7407fdbc7a5f7cc654fda4ee13aef99c00a31f722d01aca715a1b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="5" | ||
|
||
inherit opam | ||
|
||
DESCRIPTION="A lightweight and colourful test framework" | ||
HOMEPAGE="https://github.com/mirage/alcotest/" | ||
SRC_URI="https://github.com/mirage/alcotest/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="ISC" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
dev-ml/fmt:= | ||
dev-ml/astring:= | ||
dev-ml/cmdliner:= | ||
dev-ml/result:= | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-ml/jbuilder | ||
dev-ml/findlib" | ||
|
||
src_compile() { | ||
jbuilder build -p alcotest || die | ||
} | ||
|
||
src_test() { | ||
jbuilder runtest -p alcotest || die | ||
} |