From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6F123198005 for ; Fri, 22 Mar 2013 16:39:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AE3AE04EB; Fri, 22 Mar 2013 16:39:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B034E04EB for ; Fri, 22 Mar 2013 16:39:46 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5232733BE6E for ; Fri, 22 Mar 2013 16:39:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DD7A1E4073 for ; Fri, 22 Mar 2013 16:39:43 +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: <1363970415.9315e81dd3fe99433a2d02685b1e42c3725ebeb8.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/bordeaux-threads/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/bordeaux-threads/bordeaux-threads-0.8.2.ebuild X-VCS-Directories: dev-lisp/bordeaux-threads/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 9315e81dd3fe99433a2d02685b1e42c3725ebeb8 X-VCS-Branch: master Date: Fri, 22 Mar 2013 16:39:43 +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: eeb2c8ef-8e50-4b7e-996b-b5a3707b0dcd X-Archives-Hash: 1ca3b0617f5e29b8446fdfc80b020430 commit: 9315e81dd3fe99433a2d02685b1e42c3725ebeb8 Author: Chema Alonso gentoo org> AuthorDate: Fri Mar 22 16:40:15 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri Mar 22 16:40:15 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=9315e81d dev-lisp/bordeaux-threads: bump to version 0.8.2 --- .../bordeaux-threads/bordeaux-threads-0.8.2.ebuild | 27 ++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.2.ebuild b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.2.ebuild new file mode 100644 index 0000000..a5d5c3f --- /dev/null +++ b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +DESCRIPTION="A library meant to make writing portable multi-threaded apps simple." +HOMEPAGE="http://common-lisp.net/project/bordeaux-threads/" +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/alexandria + dev-lisp/fiveam" + +CLSYSTEMS="bordeaux-threads bordeaux-threads-test" + +src_install() { + common-lisp-install-sources -t all *.asd src test version.lisp-expr + common-lisp-install-asdf + dodoc CONTRIBUTORS README +}