Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/jsonm: metadata.xml ChangeLog jsonm-0.9.1.ebuild
Date: Wed, 29 Oct 2014 08:45:05
Message-Id: 20141029084502.6846D8FD3@oystercatcher.gentoo.org
1 aballier 14/10/29 08:45:02
2
3 Added: metadata.xml ChangeLog jsonm-0.9.1.ebuild
4 Log:
5 initial import, ebuild by Guillaume Horel in bug #527292 with a few modifications by me
6
7 Signed-off-by: aballier@g.o
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.1 dev-ml/jsonm/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/metadata.xml?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/metadata.xml?rev=1.1&content-type=text/plain
15
16 Index: metadata.xml
17 ===================================================================
18 <?xml version="1.0" encoding="UTF-8"?>
19 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
20 <pkgmetadata>
21 <herd>ml</herd>
22 </pkgmetadata>
23
24
25
26 1.1 dev-ml/jsonm/ChangeLog
27
28 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/ChangeLog?rev=1.1&view=markup
29 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/ChangeLog?rev=1.1&content-type=text/plain
30
31 Index: ChangeLog
32 ===================================================================
33 # ChangeLog for dev-ml/jsonm
34 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
35 # $Header: /var/cvsroot/gentoo-x86/dev-ml/jsonm/ChangeLog,v 1.1 2014/10/29 08:45:02 aballier Exp $
36
37 *jsonm-0.9.1 (29 Oct 2014)
38
39 29 Oct 2014; Alexis Ballier <aballier@g.o> +jsonm-0.9.1.ebuild,
40 +metadata.xml:
41 initial import, ebuild by Guillaume Horel in bug #527292 with a few
42 modifications by me
43
44
45
46
47 1.1 dev-ml/jsonm/jsonm-0.9.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/jsonm-0.9.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/jsonm/jsonm-0.9.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: jsonm-0.9.1.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-ml/jsonm/jsonm-0.9.1.ebuild,v 1.1 2014/10/29 08:45:02 aballier Exp $
57
58 EAPI="5"
59 OASIS_BUILD_TESTS=1
60
61 inherit oasis
62
63 DESCRIPTION="Non-blocking streaming JSON codec for OCaml"
64 HOMEPAGE="http://erratique.ch/software/jsonm"
65 SRC_URI="http://erratique.ch/software/jsonm/releases/${P}.tbz"
66
67 LICENSE="BSD"
68 SLOT="0/${PV}"
69 KEYWORDS="~amd64"
70 IUSE="doc"
71
72 RDEPEND="dev-ml/uutf:="
73 DEPEND="${RDEPEND}"
74
75 DOCS=( CHANGES README )
76
77 src_install() {
78 oasis_src_install
79 use doc && dohtml -r doc/*
80 }