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 A51DD138206 for ; Mon, 1 Jan 2018 11:31:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5F57E0843; Mon, 1 Jan 2018 11:31:01 +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 C3148E0843 for ; Mon, 1 Jan 2018 11:31:00 +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 68F9A335C0D for ; Mon, 1 Jan 2018 11:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3DEF147 for ; Mon, 1 Jan 2018 11:30:57 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1514806259.fff6cb3a4f14f9f857475de8a6bd5709ca89dca4.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/chunga/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/chunga/chunga-1.1.7.ebuild X-VCS-Directories: dev-lisp/chunga/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: fff6cb3a4f14f9f857475de8a6bd5709ca89dca4 X-VCS-Branch: master Date: Mon, 1 Jan 2018 11:30:57 +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: 552d3b16-8b00-4475-960b-8551e38d2adb X-Archives-Hash: ae9cf57b75496b9739e2fd38095ff578 commit: fff6cb3a4f14f9f857475de8a6bd5709ca89dca4 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Jan 1 11:30:59 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Jan 1 11:30:59 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=fff6cb3a dev-lisp/chunga: Bumps version to 1.1.7 dev-lisp/chunga/chunga-1.1.7.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-lisp/chunga/chunga-1.1.7.ebuild b/dev-lisp/chunga/chunga-1.1.7.ebuild new file mode 100644 index 00000000..9e52c99f --- /dev/null +++ b/dev-lisp/chunga/chunga-1.1.7.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 + +MY_P="v${PV}" + +DESCRIPTION="Portable chunked streams for Common Lisp" +HOMEPAGE="http://weitz.de/chunga/" +SRC_URI="https://github.com/edicl/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + dev-lisp/trivial-gray-streams" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + dodoc CHANGELOG.txt docs/index.html +}