diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-08-02 12:30:07 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-08-02 13:22:42 +0200 |
commit | 279f434c362b9c4ec7ec52a7342fef4eb00d3204 (patch) | |
tree | cef6e80cc9662125a77e19923db1525e48a2613a /dev-ml/uchar | |
parent | dev-ml/uchar: keyword ~x86 (diff) | |
download | gentoo-279f434c362b9c4ec7ec52a7342fef4eb00d3204.tar.gz gentoo-279f434c362b9c4ec7ec52a7342fef4eb00d3204.tar.bz2 gentoo-279f434c362b9c4ec7ec52a7342fef4eb00d3204.zip |
dev-ml/uchar: Remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'dev-ml/uchar')
-rw-r--r-- | dev-ml/uchar/Manifest | 1 | ||||
-rw-r--r-- | dev-ml/uchar/uchar-0.0.1.ebuild | 41 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-ml/uchar/Manifest b/dev-ml/uchar/Manifest index ae3fcfc8b4f1..82ec0e6ca04c 100644 --- a/dev-ml/uchar/Manifest +++ b/dev-ml/uchar/Manifest @@ -1,2 +1 @@ -DIST uchar-0.0.1.tar.gz 23471 SHA256 ac94116a35cbcf346c94b4326d03d382560fbae337b7a59794ad6e1a1a84c140 SHA512 6bdc3646cb959af1a289e22f5202da2f3e3462b42a563ec4a999e96ba7b2d0c95e2d42ef06b35cd9c477eebfadef5bba4abdb60997faa7e6848aa6bcb5d729c2 WHIRLPOOL 7b043985fdc61aac63b1ba923006b40ef52552c0aad5f45d6be6f744b6d1cb1a7ce46d5dc647e59cd82fa5d243a8699bd44987871ef6c60874a31f231c36d2aa DIST uchar-0.0.2.tar.gz 21815 SHA256 17ed7574c3244db9885903d4936d43d9fa3944b5e9330a3ebdb0bffceb694903 SHA512 487a9706cf9dfc9b9c94442a51766cc211687d6ebcb4dd3c94d09cb1ed6d7fd61e966e91a4121fe2d1681b2fd6bfee9079d3bccccdb6d65ba2111524ab5dd1bc WHIRLPOOL 3e8ee5252cc2ab81dd209cd99a22352c82c16e0756aea5b2d81dfaa697deedd5c02568646a431390b8485f27c825c92dff1d966c2a42abe8c2a9f9a0d997f266 diff --git a/dev-ml/uchar/uchar-0.0.1.ebuild b/dev-ml/uchar/uchar-0.0.1.ebuild deleted file mode 100644 index 74e9bd312cb7..000000000000 --- a/dev-ml/uchar/uchar-0.0.1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit findlib - -DESCRIPTION="Uchar compatibility library" -HOMEPAGE="https://github.com/ocaml/uchar" -SRC_URI="https://github.com/ocaml/uchar/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="LGPL-2-with-linking-exception" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc" -IUSE="+ocamlopt" - -RDEPEND=">=dev-lang/ocaml-4.03:=" -DEPEND="${RDEPEND} dev-ml/ocamlbuild" - -# This is mostly a compat wrapper for older ocaml versions we don't support. No -# need to test it, plus it fails when installing for the first time: -# https://bugs.gentoo.org/show_bug.cgi?id=624144 -RESTRICT="test" - -src_compile() { - ocaml pkg/build.ml \ - "native=$(usex ocamlopt true false)" \ - "native-dynlink=$(usex ocamlopt true false)" || die -} - -src_test() { - ocamlbuild -X src -use-ocamlfind -pkg uchar test/testpkg.native || die -} - -src_install() { - # Can't use opam-installer here as it is an opam dep... - findlib_src_preinst - mv _build/pkg/META{.empty,} || die - ocamlfind install ${PN} _build/pkg/META || die - dodoc README.md CHANGES.md -} |