From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D115138334 for ; Sun, 3 Jun 2018 05:35:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECE03E090F; Sun, 3 Jun 2018 05:35:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87FC1E07F9 for ; Sun, 3 Jun 2018 05:35:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA7C2335C79 for ; Sun, 3 Jun 2018 05:35:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 235852C2 for ; Sun, 3 Jun 2018 05:35:51 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1528003462.7016208b1ca83b43258781619d2e1e302d5ae10d.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/dash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/dash/Manifest app-emacs/dash/dash-2.14.1.ebuild X-VCS-Directories: app-emacs/dash/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7016208b1ca83b43258781619d2e1e302d5ae10d X-VCS-Branch: master Date: Sun, 3 Jun 2018 05:35:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3e3fea3e-8fbb-4767-8393-6e5f08f75005 X-Archives-Hash: 9eaab1ee4efe6d6dadb35100e1da9cfc commit: 7016208b1ca83b43258781619d2e1e302d5ae10d Author: Hans de Graaff gentoo org> AuthorDate: Sun Jun 3 05:24:22 2018 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Jun 3 05:24:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7016208b app-emacs/dash: add 2.14.1 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-emacs/dash/Manifest | 1 + app-emacs/dash/dash-2.14.1.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/app-emacs/dash/Manifest b/app-emacs/dash/Manifest index d17489480a0..72cee37302f 100644 --- a/app-emacs/dash/Manifest +++ b/app-emacs/dash/Manifest @@ -1 +1,2 @@ DIST dash-2.13.0.tar.gz 146280 BLAKE2B e9552a19b1f84db0e16fba07fe5bcfc0eb8a6871aabf395fa7ca527b77ba23616fdaa29e67d73e6cf11260bd23807be17de1e52f4abd23b0f9562cb26e6a5feb SHA512 59969e3df1b258a1bae76904e5abaf64c5143de9b8994a04799dad3a317c6ccc1dcd19b99a337a23bce0e46cfb6bc90bf8c6b0e6a532946b4f0ec188d331b559 +DIST dash-2.14.1.tar.gz 141115 BLAKE2B 87fc7a02c66161d1c16debc54c6336f36cc47cf7c7c470d190424b9c463723058ef6f72cadf3f4d4215b36f369b9e5356101c4ea16fede10cefde90b5e0b384b SHA512 cfd4ed7a9eab881a0c3bd2744e78c5ef99a92db4d3afee8c632c0a766adcdbf1999f4e9770e2c4e941526d488dd6f9327937389490cc2310d79b38c5bf2ddd12 diff --git a/app-emacs/dash/dash-2.14.1.ebuild b/app-emacs/dash/dash-2.14.1.ebuild new file mode 100644 index 00000000000..da2a16d87b0 --- /dev/null +++ b/app-emacs/dash/dash-2.14.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit elisp + +DESCRIPTION="A modern list library for Emacs" +HOMEPAGE="https://github.com/magnars/dash.el" +SRC_URI="https://github.com/magnars/dash.el/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +DEPEND="sys-apps/texinfo" + +S="${WORKDIR}/${PN}.el-${PV}" +SITEFILE="50${PN}-gentoo.el" +ELISP_TEXINFO="dash.texi" +DOCS="README.md" + +src_test() { + ./run-tests.sh || die +}