Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/uutf/
Date: Tue, 24 Jan 2017 11:06:05
Message-Id: 1485254494.216226507abe01105e5d3263e78955dba2968ea4.aballier@gentoo
1 commit: 216226507abe01105e5d3263e78955dba2968ea4
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 24 10:41:34 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 24 10:41:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21622650
7
8 dev-ml/uutf: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/uutf/Manifest | 1 -
13 dev-ml/uutf/uutf-0.9.4.ebuild | 51 -------------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-ml/uutf/Manifest b/dev-ml/uutf/Manifest
17 index 19bb205..d555c3e 100644
18 --- a/dev-ml/uutf/Manifest
19 +++ b/dev-ml/uutf/Manifest
20 @@ -1,2 +1 @@
21 -DIST uutf-0.9.4.tbz 36987 SHA256 13706722a0037b167eef359bac68d5426d05f64aa308f44c1784aace9577e1b8 SHA512 95203b06e7506f33822f10607315920b849efde3ed2e032bf8dd805f99ce4851b375bc92a1f95403673c97c6176c5a6974af2be611f530db0a7f36296948edf4 WHIRLPOOL a3446da14f665c06dbc9b245baf530c4650fb657baec02de7773cbb5addb2fdb5ddf9a98822a3af3b72b4800affcf2af39e44a6f37f17d221c55bd02b39c4cce
22 DIST uutf-1.0.0.tbz 22182 SHA256 67dc4bd7ef6c8ab23ca62d34eb8c861a1f30624f3b009d45ac84772600672022 SHA512 ca033175aeaf2dafac9a7d2ad846f128d728bfbd7688c2c95d0db1d2a9b92a781d82c37d7bbfbede8934bbb6fa59a2df7530db0f0006032994971a7e4570999c WHIRLPOOL ad6e86cb3bc30cb4a139f6bfd081a256ea5a7054bd4fa06f2a8017b26a77265c352389961deb19f5affc3e6c6a72f5ad6cbfe9435b0a4d0b1adb9aba53a82ee4
23
24 diff --git a/dev-ml/uutf/uutf-0.9.4.ebuild b/dev-ml/uutf/uutf-0.9.4.ebuild
25 deleted file mode 100644
26 index 20be744..00000000
27 --- a/dev-ml/uutf/uutf-0.9.4.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI="5"
35 -
36 -inherit findlib
37 -
38 -DESCRIPTION="Non-blocking streaming Unicode codec for OCaml"
39 -HOMEPAGE="http://erratique.ch/software/uutf"
40 -SRC_URI="http://erratique.ch/software/uutf/releases/${P}.tbz"
41 -
42 -LICENSE="BSD"
43 -SLOT="0/${PV}"
44 -KEYWORDS="~amd64"
45 -IUSE="doc utftrip +ocamlopt test"
46 -
47 -RDEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
48 - utftrip? ( dev-ml/cmdliner:= )"
49 -DEPEND="${RDEPEND}
50 - dev-ml/ocamlbuild
51 - test? ( dev-ml/cmdliner )"
52 -
53 -src_compile() {
54 - ocaml pkg/build.ml \
55 - native=$(usex ocamlopt true false) \
56 - native-dynlink=$(usex ocamlopt true false) \
57 - cmdliner=$(usex utftrip true false) \
58 - || die
59 -}
60 -
61 -src_test() {
62 - if use ocamlopt ; then
63 - ocamlbuild -use-ocamlfind tests.otarget || die
64 - cd _build/test || die
65 - ./test.native || die
66 - else
67 - ewarn "Sorry, ${PN} tests require native support (ocamlopt)"
68 - fi
69 -}
70 -
71 -src_install() {
72 - # Can't use opam-installer here as it is an opam dep...
73 - findlib_src_preinst
74 - local nativelibs=""
75 - use ocamlopt && nativelibs="$(echo _build/src/uutf.cm{x,xa,xs} _build/src/uutf.a)"
76 - ocamlfind install uutf _build/pkg/META _build/src/uutf.mli _build/src/uutf.cm{a,i} ${nativelibs} || die
77 - use utftrip && newbin utftrip.$(usex ocamlopt native byte) utftrip
78 - dodoc CHANGES.md README.md
79 - use doc && dohtml -r doc/*
80 -}