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/utop: utop-1.18.ebuild ChangeLog
Date: Mon, 29 Jun 2015 09:23:51
Message-Id: 20150629092324.B9B5F73F@oystercatcher.gentoo.org
1 aballier 15/06/29 09:23:24
2
3 Modified: ChangeLog
4 Added: utop-1.18.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.13 dev-ml/utop/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?rev=1.13&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?rev=1.13&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?r1=1.12&r2=1.13
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v
21 retrieving revision 1.12
22 retrieving revision 1.13
23 diff -u -r1.12 -r1.13
24 --- ChangeLog 6 Jun 2015 19:48:58 -0000 1.12
25 +++ ChangeLog 29 Jun 2015 09:23:24 -0000 1.13
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-ml/utop
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v 1.12 2015/06/06 19:48:58 jlec Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v 1.13 2015/06/29 09:23:24 aballier Exp $
31 +
32 +*utop-1.18 (29 Jun 2015)
33 +
34 + 29 Jun 2015; Alexis Ballier <aballier@g.o> +utop-1.18.ebuild:
35 + version bump
36
37 06 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
38 Add github to remote-id in metadata.xml
39
40
41
42 1.1 dev-ml/utop/utop-1.18.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/utop-1.18.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/utop-1.18.ebuild?rev=1.1&content-type=text/plain
46
47 Index: utop-1.18.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/utop-1.18.ebuild,v 1.1 2015/06/29 09:23:24 aballier Exp $
52
53 EAPI=5
54
55 OASIS_BUILD_DOCS=1
56 inherit oasis elisp-common
57
58 DESCRIPTION="A new toplevel for OCaml with completion and colorization"
59 HOMEPAGE="http://github.com/diml/utop"
60 SRC_URI="http://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0/${PV}"
64 KEYWORDS="~amd64"
65 IUSE="camlp4 emacs"
66
67 DEPEND=">=dev-ml/lwt-2.4.0:=[react]
68 >=dev-ml/lambda-term-1.2:=
69 >=dev-ml/zed-1.2:=
70 >=dev-ml/cppo-1.0.1:=
71 emacs? ( virtual/emacs )
72 camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )"
73 RDEPEND="${DEPEND}"
74
75 DOCS=( "CHANGES.md" "README.md" )
76 SITEFILE="50${PN}-gentoo.el"
77
78 src_prepare() {
79 sed -i "s/(\"utop.el.*)//" setup.ml
80 }
81
82 src_configure() {
83 oasis_configure_opts="$(use_enable camlp4)" \
84 oasis_src_configure
85 }
86 src_compile() {
87 oasis_src_compile
88 if use emacs; then
89 elisp-compile src/top/*.el
90 fi
91 }
92
93 src_install() {
94 oasis_src_install
95 if use emacs; then
96 elisp-install "${PN}" src/top/*.el src/top/*.elc || die
97 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
98 fi
99 }
100
101 pkg_postinst() {
102 use emacs && elisp-site-regen
103 }
104
105 pkg_postrm() {
106 use emacs && elisp-site-regen
107 }