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 169FF138334 for ; Wed, 6 Jun 2018 20:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4A39E0AC8; Wed, 6 Jun 2018 20:49:35 +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 A544CE0AC8 for ; Wed, 6 Jun 2018 20:49:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 72A70335C39 for ; Wed, 6 Jun 2018 20:49:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BC7329E for ; Wed, 6 Jun 2018 20:49:32 +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: <1528318078.db9a672133e4243b7bc799342e534f8e1dc254a0.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/flexi-streams/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/flexi-streams/Manifest dev-lisp/flexi-streams/flexi-streams-1.0.17.ebuild X-VCS-Directories: dev-lisp/flexi-streams/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: db9a672133e4243b7bc799342e534f8e1dc254a0 X-VCS-Branch: master Date: Wed, 6 Jun 2018 20:49:32 +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: 03f118aa-e934-4d29-ae4b-f0c3e34b139c X-Archives-Hash: c3421ab94e41f4f29faac48423d71783 commit: db9a672133e4243b7bc799342e534f8e1dc254a0 Author: Chema Alonso Josa gentoo org> AuthorDate: Wed Jun 6 20:47:58 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Jun 6 20:47:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db9a6721 dev-lisp/flexi-streams: Bump version to 1.0.17 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-lisp/flexi-streams/Manifest | 1 + dev-lisp/flexi-streams/flexi-streams-1.0.17.ebuild | 25 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-lisp/flexi-streams/Manifest b/dev-lisp/flexi-streams/Manifest index a4a7a31ac0d..0c149de3b03 100644 --- a/dev-lisp/flexi-streams/Manifest +++ b/dev-lisp/flexi-streams/Manifest @@ -1 +1,2 @@ DIST flexi-streams-1.0.16.tar.gz 135698 BLAKE2B 9d6d5b064f10d27ce60d5a8a6792b7c36e63d393f64c98148bfd9addd36483e1e4d9e2b699c0ae151c55d88e01bd86fea3197e082b001face2c44206229c3e21 SHA512 66b7c5231616c7a6095a52d6c679717795c9308e33487536a5e1b7f0d25f26aacd2579a76c351f8e16a967a0611456cbc97b3824f4d9cf4875b8e48b0c4f7c78 +DIST flexi-streams-1.0.17.tar.gz 135883 BLAKE2B 96670bffc8b53196d2138bff6bdcaaae74d3a9318bb637cb52914de0905be86d3d5ce40ed3f5f87deec75cbad609d339fc0656f8542ee05edae5c9c342430a90 SHA512 58a19214f74e00948dd5c15453cb68a65ad600a78fd7b637018914446a3953f68efa5e229b3d27e93464d8f273e82aa71d0fafe9b2ace77e40d23c5aea756d49 diff --git a/dev-lisp/flexi-streams/flexi-streams-1.0.17.ebuild b/dev-lisp/flexi-streams/flexi-streams-1.0.17.ebuild new file mode 100644 index 00000000000..672410b9b41 --- /dev/null +++ b/dev-lisp/flexi-streams/flexi-streams-1.0.17.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 + +DESCRIPTION="Flexible bivalent streams for Common Lisp" +HOMEPAGE="http://weitz.de/flexi-streams/ + http://www.cliki.net/flexi-streams/" +SRC_URI="https://github.com/edicl/${PN}/archive/v${PV}.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-20060925" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + dodoc docs/index.html +}