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 EA1961381F3 for ; Fri, 10 May 2013 17:46:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE000E08FF; Fri, 10 May 2013 17:46:09 +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 3EB22E08FF for ; Fri, 10 May 2013 17:46:09 +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 34ABB33DA23 for ; Fri, 10 May 2013 17:46:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CDF4FE516D for ; Fri, 10 May 2013 17:46:06 +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: <1368207951.59bffb2287d96424e3e902b632f5b18a2bf5b986.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.3.ebuild X-VCS-Directories: dev-lisp/bordeaux-threads/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 59bffb2287d96424e3e902b632f5b18a2bf5b986 X-VCS-Branch: master Date: Fri, 10 May 2013 17:46:06 +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: 1e26680e-3cbb-4e86-8e62-e34f900689cb X-Archives-Hash: ee387168b946547fe33a3ffec019f941 commit: 59bffb2287d96424e3e902b632f5b18a2bf5b986 Author: Chema Alonso gentoo org> AuthorDate: Fri May 10 17:45:51 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri May 10 17:45:51 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=59bffb22 dev-lisp/bordeaux-threads: bump to version 0.8.3 --- .../bordeaux-threads/bordeaux-threads-0.8.3.ebuild | 27 ++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.3.ebuild b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.3.ebuild new file mode 100644 index 0000000..a5d5c3f --- /dev/null +++ b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.3.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 +}