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/ocsigen-toolkit/
Date: Thu, 27 Apr 2017 10:51:19
Message-Id: 1493290001.1517a9d9ec78a0a290f4c175efa793755f6addff.aballier@gentoo
1 commit: 1517a9d9ec78a0a290f4c175efa793755f6addff
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 27 10:46:41 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 27 10:46:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1517a9d9
7
8 dev-ml/ocsigen-toolkit: remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-ml/ocsigen-toolkit/Manifest | 1 -
13 dev-ml/ocsigen-toolkit/ocsigen-toolkit-0.99.ebuild | 51 ----------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-ml/ocsigen-toolkit/Manifest b/dev-ml/ocsigen-toolkit/Manifest
17 index 9c0717ba1b2..6a4fddde6ff 100644
18 --- a/dev-ml/ocsigen-toolkit/Manifest
19 +++ b/dev-ml/ocsigen-toolkit/Manifest
20 @@ -1,2 +1 @@
21 -DIST ocsigen-toolkit-0.99.tar.gz 68978 SHA256 fd42765a5f0d9297607160523bb99c4a6b2b6ef25b4c1464b6065bc98caea54b SHA512 a46577b4627a19a85c4f628dc47bfb81ba8da641dcf08e97df02f236e0a328086d8395aa165a9e82b42b3254c7d04f7d763c12cd7495f427a6d681544ad7963b WHIRLPOOL a496e41ec1974c0c841f4e154182a407326884067ffd389a83824b5957fe1f320643856acf422239e67d4a7a5dace1ab1f703c869b87feb6f8c16855cc78ce36
22 DIST ocsigen-toolkit-1.0.0.tar.gz 69175 SHA256 427e5e4d11215862dcb012b769aea9e6c63b8799d9bde5076893eea3b575a472 SHA512 4776dcceef822ac63fd6d57ce05e870f726c1e1d137bab239b8558acb4ef55f97b847825f621414334b01d30c066ea986d2b8180b80a09719b5b76cb3bb69a20 WHIRLPOOL 4718049847f3a2e7e219a21ec9f8082d467808791010dac92426c8ec7e70c03783f8de5d2bfba600c27c89c46efac0c07502eb04a7de685fae09030d0000526a
23
24 diff --git a/dev-ml/ocsigen-toolkit/ocsigen-toolkit-0.99.ebuild b/dev-ml/ocsigen-toolkit/ocsigen-toolkit-0.99.ebuild
25 deleted file mode 100644
26 index f96ce231e06..00000000000
27 --- a/dev-ml/ocsigen-toolkit/ocsigen-toolkit-0.99.ebuild
28 +++ /dev/null
29 @@ -1,51 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit findlib
36 -
37 -DESCRIPTION="User interface widgets for Ocsigen applications"
38 -HOMEPAGE="https://github.com/ocsigen/ocsigen-toolkit"
39 -
40 -LICENSE="LGPL-2.1-with-linking-exception"
41 -SLOT="0/${PV}"
42 -KEYWORDS="~amd64"
43 -IUSE="+ocamlopt debug"
44 -
45 -if [ "${PV#9999}" != "${PV}" ] ; then
46 - inherit git-r3
47 - SRC_URI=""
48 - EGIT_REPO_URI="https://github.com/ocsigen/ocsigen-toolkit"
49 - KEYWORDS=""
50 -else
51 - SRC_URI="https://github.com/ocsigen/ocsigen-toolkit/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 - KEYWORDS="~amd64"
53 -fi
54 -
55 -RDEPEND="dev-lang/ocaml:=[ocamlopt?]
56 - >dev-ml/js_of_ocaml-2.7:=
57 - >=dev-ml/eliom-5.1:=[ppx]
58 - dev-ml/ppx_deriving:=
59 - dev-ml/calendar:=
60 - dev-ml/lwt:="
61 -DEPEND="${RDEPEND}
62 - dev-ml/opam"
63 -
64 -src_compile() {
65 - emake \
66 - DEBUG="$(usex debug yes no)" \
67 - NATIVE="$(usex ocamlopt yes no)" \
68 - all
69 -}
70 -
71 -src_install() {
72 - findlib_src_preinst
73 - OCAMLPATH="${OCAMLFIND_DESTDIR}" emake install
74 - opam-installer -i \
75 - --prefix="${ED}/usr" \
76 - --libdir="${D}/$(ocamlc -where)" \
77 - --docdir="${ED}/usr/share/doc/${PF}" \
78 - ${PN}.install || die
79 - dodoc README.md
80 -}