Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/distel: ChangeLog distel-4.0.6.ebuild distel-4.03.ebuild
Date: Tue, 25 Feb 2014 23:25:07
Message-Id: 20140225232501.1228C2004C@flycatcher.gentoo.org
1 ulm 14/02/25 23:25:00
2
3 Modified: ChangeLog
4 Added: distel-4.0.6.ebuild
5 Removed: distel-4.03.ebuild
6 Log:
7 Version bump. Remove old; distel-4.03 fails to build with R15 and later.
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
10
11 Revision Changes Path
12 1.6 app-emacs/distel/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/distel/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/distel/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/distel/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emacs/distel/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 7 Mar 2009 21:57:25 -0000 1.5
25 +++ ChangeLog 25 Feb 2014 23:25:00 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-emacs/distel
28 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/distel/ChangeLog,v 1.5 2009/03/07 21:57:25 fauli Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/distel/ChangeLog,v 1.6 2014/02/25 23:25:00 ulm Exp $
32 +
33 +*distel-4.0.6 (25 Feb 2014)
34 +
35 + 25 Feb 2014; Ulrich Müller <ulm@g.o> +distel-4.0.6.ebuild,
36 + -distel-4.03.ebuild, -files/distel-4.03-fix-ebin-path.patch:
37 + Version bump. Remove old; distel-4.03 fails to build with R15 and later.
38
39 07 Mar 2009; Christian Faulhammer <fauli@g.o>
40 -distel-3.2_p20071103.ebuild:
41
42
43
44 1.1 app-emacs/distel/distel-4.0.6.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/distel/distel-4.0.6.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/distel/distel-4.0.6.ebuild?rev=1.1&content-type=text/plain
48
49 Index: distel-4.0.6.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-emacs/distel/distel-4.0.6.ebuild,v 1.1 2014/02/25 23:25:00 ulm Exp $
54
55 EAPI=5
56
57 inherit elisp
58
59 DESCRIPTION="Distributed Emacs Lisp for Erlang"
60 HOMEPAGE="http://code.google.com/p/distel/
61 http://www.emacswiki.org/emacs/DistributedEmacsLisp"
62 SRC_URI="https://github.com/massemanet/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
63
64 # "New BSD License" according to http://code.google.com/p/distel/
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="doc"
69
70 DEPEND=">=dev-lang/erlang-11.2.5[emacs]"
71 RDEPEND="${DEPEND}"
72
73 SITEFILE="50${PN}-gentoo.el"
74
75 src_compile() {
76 emake base info
77 cd elisp || die
78 elisp-compile *.el
79 }
80
81 src_install() {
82 emake prefix="${ED}"/usr \
83 ELISP_DIR="${ED}${SITELISP}/${PN}" install
84 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
85 doinfo doc/distel.info
86 dohtml doc/distel/*.html
87 dodoc AUTHORS ChangeLog NEWS README*
88 use doc && dodoc doc/gorrie02distel.pdf
89 }