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.
dev-ml/ppx_inline_test: bump to 0.9.2
Package-Manager: Portage-2.3.6, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
35 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,2 +1,3 @@ | ||
DIST ppx_inline_test-0.9.0.tar.gz 19059 SHA256 c69968b180d524a13712bba3869078fe224f4214fa65a8713cc3e309075af9bf SHA512 639614beaeb4aedd5450062f90a42898db24347f94f1595fc9adad2a837a54723e6f92e72b16709cb15a18c0b9ae3eb7089cc92bb239266a0d6d7e82f5f9e642 WHIRLPOOL 796dac694898c26ebb5d727de82cabcd8391ab01748a2f8ce725965b50b0cf1ee394ce3a5cb0c8f228379852ee76cea5897272bd1857e3f597936608311d3461 | ||
DIST ppx_inline_test-0.9.1.tar.gz 19262 SHA256 04409caa79873ccaed8ff2e32d70fec9258477bf5c414654d8e7d26006668443 SHA512 c3ef0db2a79523c3c223db19f80ceef207aec1f354e2ff746049c81bdea6dd3a4cd0e24c8f1fe99be17f03b47ae201823849f9204a2a990a9eb6794d8d26b95a WHIRLPOOL 1afcfa11575a5c78306783ff93d2afe5ded5a8bc6e6c03e6ef1302b5d5423a463aca4994a4a95588e49f9e4e12b8b05ac9bb84044347b37875c1a308486410de | ||
DIST ppx_inline_test-0.9.2.tar.gz 19280 SHA256 fee108d69d12efab43c0100dc49e021d253957d6f352ed99af0b4149c75e12d0 SHA512 39261a51201b2b7fbd6f4f53c72b2921da9f5a47f726479f65f976ed3979630f0a8587328f4536e42d24315d341afbe2770084ffd951569564a3145cd154be5f WHIRLPOOL ed66b9e67859868a4c2ae75dfe0b5c93fa211330952772d35ff2d99fa754b87228f95b9e21fc0289d4aa5f153dba93382abe7463592b78e49b7b6c3e321c0e2d |
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,34 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="Syntax extension for writing in-line tests in ocaml code" | ||
HOMEPAGE="https://github.com/janestreet/ppx_inline_test" | ||
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
DEPEND=" | ||
dev-lang/ocaml:= | ||
dev-ml/base:= | ||
dev-ml/ppx_core:= | ||
dev-ml/ppx_driver:= | ||
dev-ml/ppx_metaquot:= | ||
dev-ml/ppx_traverse_builtins:= | ||
dev-ml/ocaml-migrate-parsetree:= | ||
" | ||
|
||
RDEPEND="${DEPEND}" | ||
DEPEND="${DEPEND} dev-ml/opam dev-ml/jbuilder" | ||
|
||
src_install() { | ||
opam-installer -i \ | ||
--prefix="${ED}/usr" \ | ||
--libdir="${D}/$(ocamlc -where)" \ | ||
--docdir="${ED}/usr/share/doc/${PF}" \ | ||
${PN}.install || die | ||
} |