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: Sun, 03 Jun 2018 05:35:56
Message-Id: 1528003462.7016208b1ca83b43258781619d2e1e302d5ae10d.graaff@gentoo
1 commit: 7016208b1ca83b43258781619d2e1e302d5ae10d
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 05:24:22 2018 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 05:24:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7016208b
7
8 app-emacs/dash: add 2.14.1
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-emacs/dash/Manifest | 1 +
13 app-emacs/dash/dash-2.14.1.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/app-emacs/dash/Manifest b/app-emacs/dash/Manifest
17 index d17489480a0..72cee37302f 100644
18 --- a/app-emacs/dash/Manifest
19 +++ b/app-emacs/dash/Manifest
20 @@ -1 +1,2 @@
21 DIST dash-2.13.0.tar.gz 146280 BLAKE2B e9552a19b1f84db0e16fba07fe5bcfc0eb8a6871aabf395fa7ca527b77ba23616fdaa29e67d73e6cf11260bd23807be17de1e52f4abd23b0f9562cb26e6a5feb SHA512 59969e3df1b258a1bae76904e5abaf64c5143de9b8994a04799dad3a317c6ccc1dcd19b99a337a23bce0e46cfb6bc90bf8c6b0e6a532946b4f0ec188d331b559
22 +DIST dash-2.14.1.tar.gz 141115 BLAKE2B 87fc7a02c66161d1c16debc54c6336f36cc47cf7c7c470d190424b9c463723058ef6f72cadf3f4d4215b36f369b9e5356101c4ea16fede10cefde90b5e0b384b SHA512 cfd4ed7a9eab881a0c3bd2744e78c5ef99a92db4d3afee8c632c0a766adcdbf1999f4e9770e2c4e941526d488dd6f9327937389490cc2310d79b38c5bf2ddd12
23
24 diff --git a/app-emacs/dash/dash-2.14.1.ebuild b/app-emacs/dash/dash-2.14.1.ebuild
25 new file mode 100644
26 index 00000000000..da2a16d87b0
27 --- /dev/null
28 +++ b/app-emacs/dash/dash-2.14.1.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit elisp
36 +
37 +DESCRIPTION="A modern list library for Emacs"
38 +HOMEPAGE="https://github.com/magnars/dash.el"
39 +SRC_URI="https://github.com/magnars/dash.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-3+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
44 +
45 +DEPEND="sys-apps/texinfo"
46 +
47 +S="${WORKDIR}/${PN}.el-${PV}"
48 +SITEFILE="50${PN}-gentoo.el"
49 +ELISP_TEXINFO="dash.texi"
50 +DOCS="README.md"
51 +
52 +src_test() {
53 + ./run-tests.sh || die
54 +}