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/company-mode: ChangeLog company-mode-0.6.11.ebuild company-mode-0.4.3.ebuild
Date: Wed, 01 Jan 2014 17:44:29
Message-Id: 20140101174425.7D7622004C@flycatcher.gentoo.org
1 ulm 14/01/01 17:44:25
2
3 Modified: ChangeLog
4 Added: company-mode-0.6.11.ebuild
5 Removed: company-mode-0.4.3.ebuild
6 Log:
7 Version bump. Update HOMEPAGE, SRC_URI, and LICENSE. Remove old.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
10
11 Revision Changes Path
12 1.12 app-emacs/company-mode/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/company-mode/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/company-mode/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/company-mode/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emacs/company-mode/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 9 Oct 2010 16:25:08 -0000 1.11
25 +++ ChangeLog 1 Jan 2014 17:44:25 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-emacs/company-mode
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/ChangeLog,v 1.11 2010/10/09 16:25:08 ulm Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/company-mode/ChangeLog,v 1.12 2014/01/01 17:44:25 ulm Exp $
32 +
33 +*company-mode-0.6.11 (01 Jan 2014)
34 +
35 + 01 Jan 2014; Ulrich Müller <ulm@g.o> -company-mode-0.4.3.ebuild,
36 + +company-mode-0.6.11.ebuild:
37 + Version bump. Update HOMEPAGE, SRC_URI, and LICENSE. Remove old.
38
39 03 Oct 2010; Ulrich Mueller <ulm@g.o> company-mode-0.5.ebuild,
40 metadata.xml:
41
42
43
44 1.1 app-emacs/company-mode/company-mode-0.6.11.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/company-mode/company-mode-0.6.11.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/company-mode/company-mode-0.6.11.ebuild?rev=1.1&content-type=text/plain
48
49 Index: company-mode-0.6.11.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/company-mode/company-mode-0.6.11.ebuild,v 1.1 2014/01/01 17:44:25 ulm Exp $
54
55 EAPI=5
56
57 inherit elisp
58
59 DESCRIPTION="In-buffer completion front-end"
60 HOMEPAGE="http://company-mode.github.com/"
61 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="GPL-3+"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="ropemacs +semantic"
67
68 # Note: company-mode supports many backends, and we refrain from including
69 # them all in RDEPEND. Only depend on things that are needed at build time.
70 DEPEND="|| ( app-emacs/nxml-mode >=virtual/emacs-23 )
71 ropemacs? ( app-emacs/pymacs )
72 semantic? ( virtual/emacs-cedet )"
73 RDEPEND="${DEPEND}
74 ropemacs? ( dev-python/ropemacs )"
75
76 SITEFILE="50${PN}-gentoo.el"
77
78 src_prepare() {
79 # Disable backends that require extra dependencies, unless they are
80 # selected by the respective USE flag
81
82 elog "Removing pysmell backend"
83 rm company-pysmell.el || die
84
85 if ! use ropemacs; then
86 elog "Removing ropemacs backend, as requested by USE=-ropemacs"
87 rm company-ropemacs.el || die
88 fi
89
90 if ! use semantic; then
91 elog "Removing semantic backend, as requested by USE=-semantic"
92 rm company-semantic.el || die
93 fi
94 }