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/ocurl: ChangeLog ocurl-0.7.4.ebuild
Date: Sun, 28 Jun 2015 15:22:06
Message-Id: 20150628152202.622AF739@oystercatcher.gentoo.org
1 aballier 15/06/28 15:22:02
2
3 Modified: ChangeLog
4 Added: ocurl-0.7.4.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.23 dev-ml/ocurl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocurl/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocurl/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocurl/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 25 Feb 2015 15:35:39 -0000 1.22
24 +++ ChangeLog 28 Jun 2015 15:22:02 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ml/ocurl
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.22 2015/02/25 15:35:39 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.23 2015/06/28 15:22:02 aballier Exp $
30 +
31 +*ocurl-0.7.4 (28 Jun 2015)
32 +
33 + 28 Jun 2015; Alexis Ballier <aballier@g.o> +ocurl-0.7.4.ebuild:
34 + version bump
35
36 25 Feb 2015; Agostino Sarubbo <ago@g.o> ocurl-0.6.1.ebuild:
37 Stable for x86, wrt bug #535132
38
39
40
41 1.1 dev-ml/ocurl/ocurl-0.7.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocurl/ocurl-0.7.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocurl/ocurl-0.7.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ocurl-0.7.4.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.7.4.ebuild,v 1.1 2015/06/28 15:22:02 aballier Exp $
51
52 EAPI=5
53
54 inherit findlib
55
56 DESCRIPTION="OCaml interface to the libcurl library"
57 HOMEPAGE="http://forge.ocamlcore.org/projects/ocurl/"
58 LICENSE="MIT"
59 SRC_URI="http://forge.ocamlcore.org/frs/download.php/1523/${P}.tar.gz"
60
61 SLOT="0/${PV}"
62 IUSE="examples"
63
64 RDEPEND=">=net-misc/curl-7.9.8
65 dev-ml/lwt:=
66 >=dev-lang/ocaml-3.12:=[ocamlopt]"
67 DEPEND="${RDEPEND}
68 virtual/pkgconfig"
69 KEYWORDS="~amd64 ~x86"
70
71 src_compile()
72 {
73 emake -j1 all
74 }
75
76 src_install()
77 {
78 findlib_src_install
79 dodoc CHANGES.txt README
80 if use examples; then
81 dodoc -r examples
82 docompress -x /usr/share/doc/${PF}/examples
83 fi
84 }