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