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 B3382138330 for ; Sun, 11 Sep 2016 15:17:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 924C8E0BD7; Sun, 11 Sep 2016 15:17:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73EECE0BD7 for ; Sun, 11 Sep 2016 15:17:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3147534027D for ; Sun, 11 Sep 2016 15:17:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAEAD2464 for ; Sun, 11 Sep 2016 15:17:12 +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: <1473607030.e9c6ac97b6de8b9d09693db68b11ef47a3a12fcc.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/usocket/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/usocket/usocket-0.6.4.1.ebuild X-VCS-Directories: dev-lisp/usocket/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: e9c6ac97b6de8b9d09693db68b11ef47a3a12fcc X-VCS-Branch: master Date: Sun, 11 Sep 2016 15:17:12 +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: 82b5e24a-1bdd-49e3-a15d-48f4aae37ea1 X-Archives-Hash: 98dc5af83733849213c6a0fc153e494b commit: e9c6ac97b6de8b9d09693db68b11ef47a3a12fcc Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Sep 11 15:17:10 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Sep 11 15:17:10 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=e9c6ac97 dev-lisp/usocket: Bump to version 0.6.4.1 dev-lisp/usocket/usocket-0.6.4.1.ebuild | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-lisp/usocket/usocket-0.6.4.1.ebuild b/dev-lisp/usocket/usocket-0.6.4.1.ebuild new file mode 100644 index 0000000..0069231 --- /dev/null +++ b/dev-lisp/usocket/usocket-0.6.4.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit common-lisp-3 + +DESCRIPTION="Usocket is a universal socket library for Common Lisp." +HOMEPAGE="http://common-lisp.net/project/usocket/" +SRC_URI="http://common-lisp.net/project/${PN}/releases/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + dev-lisp/split-sequence + dev-lisp/rt" + +CLSYSTEMS="${PN} ${PN}-test" + +src_install() { + common-lisp-install-sources . + common-lisp-install-asdf + dodoc TODO README.md doc/*.txt + docinto notes && dodoc notes/*.txt +}