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/ojquery/
Date: Wed, 07 Sep 2016 12:36:02
Message-Id: 1473251745.a6ead2375e2074b2f248baba8ac3f4bdb7454a6e.aballier@gentoo
1 commit: a6ead2375e2074b2f248baba8ac3f4bdb7454a6e
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 11:03:06 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 12:35:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ead237
7
8 dev-ml/ojquery: add live ebuild
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/ojquery/ojquery-9999.ebuild | 33 +++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/dev-ml/ojquery/ojquery-9999.ebuild b/dev-ml/ojquery/ojquery-9999.ebuild
16 new file mode 100644
17 index 00000000..a4f9a1d
18 --- /dev/null
19 +++ b/dev-ml/ojquery/ojquery-9999.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit oasis
28 +
29 +DESCRIPTION="jQuery Binding for Eliom."
30 +HOMEPAGE="jQuery Binding for Eliom."
31 +
32 +if [ "${PV#9999}" != "${PV}" ] ; then
33 + inherit git-r3
34 + SRC_URI=""
35 + EGIT_REPO_URI="https://github.com/ocsigen/ojquery"
36 + KEYWORDS=""
37 +else
38 + SRC_URI="https://github.com/ocsigen/ojquery/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 + KEYWORDS="~amd64"
40 +fi
41 +
42 +LICENSE="LGPL-3"
43 +SLOT="0/${PV}"
44 +IUSE=""
45 +
46 +RDEPEND="dev-ml/react:=
47 + dev-ml/js_of_ocaml:=
48 + dev-ml/lwt:="
49 +DEPEND="${RDEPEND} dev-ml/oasis"
50 +
51 +src_prepare() {
52 + oasis setup || die
53 +}