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/lookup/
Date: Thu, 29 Aug 2019 10:16:59
Message-Id: 1567073803.236c64669b7055ffb71af0b6cb43b4e0c8ac542f.ulm@gentoo
1 commit: 236c64669b7055ffb71af0b6cb43b4e0c8ac542f
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 29 10:15:39 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 10:16:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=236c6466
7
8 app-emacs/lookup: Version bump, snapshot from git.
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-emacs/lookup/Manifest | 1 +
14 app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild | 39 ++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/app-emacs/lookup/Manifest b/app-emacs/lookup/Manifest
18 index 206763e3eab..0852dd5351e 100644
19 --- a/app-emacs/lookup/Manifest
20 +++ b/app-emacs/lookup/Manifest
21 @@ -1 +1,2 @@
22 DIST lookup-1.4.1.tar.gz 346391 BLAKE2B 4de52e0bf444e4822408db580f1aacbeb8a42ea1492eda2c7678f1838615da00a370b1d12efdf0ff1fef4e81302426245e0c2411f42bf17667966c90f8b39cbb SHA512 a28a770ba58f07db5a7b2452792fc0e83b74e3b45556e84a9729c73773df661dbb7d356c1f7be803feb66f23e154aa825dab610f841bbe655bc76bd7120370bf
23 +DIST lookup-1.99.96_pre20180209.tar.gz 220833 BLAKE2B 2555b28919991356fe2e655d8058b7a23257bab413ee542fb6a3c5f719e22c1dce1bd08f144f0c71c6590438deeae5b8798fbf9c29edbffe21ddafc499b420a8 SHA512 2292a2d4e61a5fc8d17ca8afb02e172691babd47f296c2b2ff5e284c27a805608fc4b5c63dec07a0387bb52ee4fbd736d7b2d4320d74efc4c210ed156873e8c0
24
25 diff --git a/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild b/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild
26 new file mode 100644
27 index 00000000000..83eb373c097
28 --- /dev/null
29 +++ b/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools elisp
37 +
38 +COMMIT="c4f4986aac6c339e03b9e56a5dfc7c8f5c0bb5e0"
39 +DESCRIPTION="An interface to search CD-ROM books and network dictionaries"
40 +HOMEPAGE="https://lookup2.github.io/lookup2/"
41 +SRC_URI="https://github.com/lookup2/lookup2/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-2+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +BDEPEND="sys-apps/texinfo"
48 +
49 +S="${WORKDIR}/lookup2-${COMMIT}"
50 +SITEFILE="50${PN}-gentoo.el"
51 +
52 +src_prepare() {
53 + default
54 + eautoreconf
55 +}
56 +
57 +src_configure() {
58 + econf --with-lispdir="${EPREFIX}${SITELISP}"
59 +}
60 +
61 +src_compile() {
62 + default
63 +}
64 +
65 +src_install() {
66 + emake DESTDIR="${D}" install
67 + elisp-site-file-install "${FILESDIR}/${SITEFILE}"
68 + dodoc AUTHORS NEWS README.md
69 +}