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/auto-complete: ChangeLog auto-complete-1.3.1.ebuild
Date: Thu, 27 Feb 2014 17:49:59
Message-Id: 20140227174950.75F732004C@flycatcher.gentoo.org
1 ulm 14/02/27 17:49:50
2
3 Modified: ChangeLog auto-complete-1.3.1.ebuild
4 Log:
5 Update ebuild to EAPI 5. Specify LICENSE more precisely.
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.4 app-emacs/auto-complete/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 8 Sep 2012 09:19:21 -0000 1.3
23 +++ ChangeLog 27 Feb 2014 17:49:50 -0000 1.4
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-emacs/auto-complete
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/ChangeLog,v 1.3 2012/09/08 09:19:21 ulm Exp $
28 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/ChangeLog,v 1.4 2014/02/27 17:49:50 ulm Exp $
30 +
31 + 27 Feb 2014; Ulrich Müller <ulm@g.o> auto-complete-1.3.1.ebuild:
32 + Update ebuild to EAPI 5. Specify LICENSE more precisely.
33
34 08 Sep 2012; Ulrich Müller <ulm@g.o> -auto-complete-1.3.ebuild:
35 Remove old.
36
37
38
39 1.2 app-emacs/auto-complete/auto-complete-1.3.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild?r1=1.1&r2=1.2
44
45 Index: auto-complete-1.3.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- auto-complete-1.3.1.ebuild 6 Jan 2011 10:53:13 -0000 1.1
52 +++ auto-complete-1.3.1.ebuild 27 Feb 2014 17:49:50 -0000 1.2
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2011 Gentoo Foundation
55 +# Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild,v 1.1 2011/01/06 10:53:13 ulm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild,v 1.2 2014/02/27 17:49:50 ulm Exp $
59
60 -EAPI=3
61 +EAPI=5
62
63 inherit elisp
64
65 @@ -11,7 +11,7 @@
66 http://github.com/m2ym/auto-complete/"
67 SRC_URI="http://cx4a.org/pub/${PN}/${P}.tar.bz2"
68
69 -LICENSE="GPL-3 FDL-1.3"
70 +LICENSE="GPL-3+ FDL-1.1+"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86"
73 IUSE="linguas_ja"
74 @@ -23,12 +23,12 @@
75
76 # install dictionaries
77 insinto "${SITEETC}/${PN}"
78 - doins -r dict || die
79 + doins -r dict
80
81 - dodoc README.txt TODO.txt etc/test.txt || die
82 + dodoc README.txt TODO.txt etc/test.txt
83 cd doc
84 - dodoc index.txt manual.txt demo.txt changes.txt *.png || die
85 + dodoc index.txt manual.txt demo.txt changes.txt *.png
86 if use linguas_ja; then
87 - dodoc index.ja.txt manual.ja.txt changes.ja.txt || die
88 + dodoc index.ja.txt manual.ja.txt changes.ja.txt
89 fi
90 }