Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/auto-complete/
Date: Sat, 24 Nov 2018 10:18:36
Message-Id: 1543054689.a65a65fe4cac854ecfbf5fcbd6591459810e4cda.ulm@gentoo
1 commit: a65a65fe4cac854ecfbf5fcbd6591459810e4cda
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 24 10:17:03 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 24 10:18:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65a65fe
7
8 app-emacs/auto-complete: Version bump.
9
10 Thanks to <thomas <AT> famsim.de>.
11
12 Closes: https://bugs.gentoo.org/670926
13 Package-Manager: Portage-2.3.51, Repoman-2.3.12
14 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
15
16 app-emacs/auto-complete/Manifest | 1 +
17 app-emacs/auto-complete/auto-complete-1.5.1.ebuild | 40 ++++++++++++++++++++++
18 app-emacs/auto-complete/metadata.xml | 7 +++-
19 3 files changed, 47 insertions(+), 1 deletion(-)
20
21 diff --git a/app-emacs/auto-complete/Manifest b/app-emacs/auto-complete/Manifest
22 index 598b1d8345d..d6358929d63 100644
23 --- a/app-emacs/auto-complete/Manifest
24 +++ b/app-emacs/auto-complete/Manifest
25 @@ -1 +1,2 @@
26 DIST auto-complete-1.3.1.tar.bz2 155081 BLAKE2B 7ceedcececcd80b7d8207cb2ff88f2bbfeee892d56a96f44c6929323ca974206b6d977830a8593ba9f7c87ba86914bf9a0771f5e11a284d7bb42fdd9e9985b48 SHA512 5b82120f8faf1ee4ff139f4fbacb894fa0bf617b9a0aaebb5a0d672a6f90cb01bc35f0c99cebe2bef55cb7a6af6ce03936a7226c89e3c79248aacf4ae554fb7b
27 +DIST auto-complete-1.5.1.tar.gz 196709 BLAKE2B 1593a6c0b60d9cb25a9597b7283d741042f79d0227c3865386a5d74e03d216a7e96ba7304e23148ac6bd18deb30f36777b88c4b3227b7482f28a224fd027b7b9 SHA512 e01a99d5e393d1d2309d6c616b4af34e8f3f2c585eaefad602ba5b6cf1890a18e851fd58804c4a6669c8131e9e7a5470c7aa650583a0bc1a2298875f7181614e
28
29 diff --git a/app-emacs/auto-complete/auto-complete-1.5.1.ebuild b/app-emacs/auto-complete/auto-complete-1.5.1.ebuild
30 new file mode 100644
31 index 00000000000..e6e662ea615
32 --- /dev/null
33 +++ b/app-emacs/auto-complete/auto-complete-1.5.1.ebuild
34 @@ -0,0 +1,40 @@
35 +# Copyright 1999-2018 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit elisp
41 +
42 +DESCRIPTION="Auto-complete package"
43 +HOMEPAGE="https://github.com/auto-complete/auto-complete/"
44 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-3+ FDL-1.1+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="doc"
50 +
51 +RDEPEND="app-emacs/popup"
52 +BDEPEND="${RDEPEND}
53 + doc? ( app-text/pandoc )"
54 +
55 +SITEFILE="50${PN}-gentoo.el"
56 +
57 +src_compile() {
58 + elisp_src_compile
59 + use doc && emake -C doc
60 +}
61 +
62 +src_install() {
63 + elisp_src_install
64 +
65 + # install dictionaries
66 + insinto "${SITEETC}/${PN}"
67 + doins -r dict
68 +
69 + dodoc README.md TODO.md etc/test.txt
70 + if use doc; then
71 + docinto html
72 + dodoc doc/manual.html doc/changes.html doc/style.css doc/*.png
73 + fi
74 +}
75
76 diff --git a/app-emacs/auto-complete/metadata.xml b/app-emacs/auto-complete/metadata.xml
77 index c09261b152e..e4ba41af832 100644
78 --- a/app-emacs/auto-complete/metadata.xml
79 +++ b/app-emacs/auto-complete/metadata.xml
80 @@ -5,8 +5,13 @@
81 <email>gnu-emacs@g.o</email>
82 <name>Gentoo GNU Emacs project</name>
83 </maintainer>
84 +<longdescription>
85 + Auto-Complete is an intelligent auto-completion extension for Emacs.
86 + It extends the standard Emacs completion interface and provides an
87 + environment that allows users to concentrate more on their own work.
88 +</longdescription>
89 <stabilize-allarches/>
90 <upstream>
91 - <remote-id type="github">m2ym/auto-complete</remote-id>
92 + <remote-id type="github">auto-complete/auto-complete</remote-id>
93 </upstream>
94 </pkgmetadata>