Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/dash/
Date: Fri, 05 Jul 2019 04:45:47
Message-Id: 1562301932.53089a3ac0e844a9ed29958de6a01c820127fe83.graaff@gentoo
1 commit: 53089a3ac0e844a9ed29958de6a01c820127fe83
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 5 04:32:44 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 5 04:45:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53089a3a
7
8 app-emacs/dash: add 2.16.0
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 app-emacs/dash/Manifest | 1 +
14 app-emacs/dash/dash-2.16.0.ebuild | 25 +++++++++++++++++++++++++
15 2 files changed, 26 insertions(+)
16
17 diff --git a/app-emacs/dash/Manifest b/app-emacs/dash/Manifest
18 index 72cee37302f..b2320f80592 100644
19 --- a/app-emacs/dash/Manifest
20 +++ b/app-emacs/dash/Manifest
21 @@ -1,2 +1,3 @@
22 DIST dash-2.13.0.tar.gz 146280 BLAKE2B e9552a19b1f84db0e16fba07fe5bcfc0eb8a6871aabf395fa7ca527b77ba23616fdaa29e67d73e6cf11260bd23807be17de1e52f4abd23b0f9562cb26e6a5feb SHA512 59969e3df1b258a1bae76904e5abaf64c5143de9b8994a04799dad3a317c6ccc1dcd19b99a337a23bce0e46cfb6bc90bf8c6b0e6a532946b4f0ec188d331b559
23 DIST dash-2.14.1.tar.gz 141115 BLAKE2B 87fc7a02c66161d1c16debc54c6336f36cc47cf7c7c470d190424b9c463723058ef6f72cadf3f4d4215b36f369b9e5356101c4ea16fede10cefde90b5e0b384b SHA512 cfd4ed7a9eab881a0c3bd2744e78c5ef99a92db4d3afee8c632c0a766adcdbf1999f4e9770e2c4e941526d488dd6f9327937389490cc2310d79b38c5bf2ddd12
24 +DIST dash-2.16.0.tar.gz 148151 BLAKE2B 1c51d926a6dd4ecdbc2ad132347af7bbd27e604d6e2c61a6cfe548802b08a57678ca26aba69f8ae27ca7cdeca84cd469bd9a7849bf28c2abae44f7172ad2659d SHA512 a0196327c8e81d1b343bb56de00a3c2f59b1d3f86dc4e923cf350658590fa106aa0be933aa0f51ff3c02d9aff8450c5e055d169ae8fb876be068bf15a52af216
25
26 diff --git a/app-emacs/dash/dash-2.16.0.ebuild b/app-emacs/dash/dash-2.16.0.ebuild
27 new file mode 100644
28 index 00000000000..16a75dcd7c9
29 --- /dev/null
30 +++ b/app-emacs/dash/dash-2.16.0.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit elisp
38 +
39 +DESCRIPTION="A modern list library for Emacs"
40 +HOMEPAGE="https://github.com/magnars/dash.el"
41 +SRC_URI="https://github.com/magnars/dash.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3+"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +BDEPEND="sys-apps/texinfo"
48 +
49 +S="${WORKDIR}/${PN}.el-${PV}"
50 +SITEFILE="50${PN}-gentoo.el"
51 +ELISP_TEXINFO="dash.texi"
52 +DOCS="README.md"
53 +
54 +src_test() {
55 + ./run-tests.sh || die
56 +}