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 D282B138334 for ; Thu, 21 Jun 2018 07:09:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06B8CE09CB; Thu, 21 Jun 2018 07:09:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D0833E09CB for ; Thu, 21 Jun 2018 07:09:15 +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 451E8335C7F for ; Thu, 21 Jun 2018 07:09:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DB802D6 for ; Thu, 21 Jun 2018 07:09:11 +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: <1529564986.960a70bd6761e57878fc2efe6bcfbfa64815f80c.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.6.ebuild X-VCS-Directories: dev-lisp/bordeaux-threads/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 960a70bd6761e57878fc2efe6bcfbfa64815f80c X-VCS-Branch: master Date: Thu, 21 Jun 2018 07:09:11 +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: f379d24f-a49b-4d15-9ae7-da13626ae9d8 X-Archives-Hash: 5cae24aab7567cb67d382236811fafbe commit: 960a70bd6761e57878fc2efe6bcfbfa64815f80c Author: Chema Alonso Josa gentoo org> AuthorDate: Thu Jun 21 07:09:46 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Thu Jun 21 07:09:46 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=960a70bd dev-lisp/bordeaux-threads: Bump version to 0.8.6 .../bordeaux-threads/bordeaux-threads-0.8.6.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.6.ebuild b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.6.ebuild new file mode 100644 index 00000000..bdc2590e --- /dev/null +++ b/dev-lisp/bordeaux-threads/bordeaux-threads-0.8.6.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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="https://github.com/sionescu/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lisp/alexandria + dev-lisp/fiveam" + +src_install() { + common-lisp-install-sources -t all src test version.sexp + common-lisp-install-asdf + dodoc CONTRIBUTORS README +}