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 32FF3139085 for ; Mon, 19 Dec 2016 22:44:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 703F121C0E4; Mon, 19 Dec 2016 22:44:57 +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 4BF2F21C0E4 for ; Mon, 19 Dec 2016 22:44:57 +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 30948340C9F for ; Mon, 19 Dec 2016 22:44:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A08E024C1 for ; Mon, 19 Dec 2016 22:44:54 +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: <1482187490.6e5874f580a6d2c0f2445b60e56f31f0c2917f36.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-plus-ssl/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-plus-ssl/cl-plus-ssl-9999.ebuild X-VCS-Directories: dev-lisp/cl-plus-ssl/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 6e5874f580a6d2c0f2445b60e56f31f0c2917f36 X-VCS-Branch: master Date: Mon, 19 Dec 2016 22:44:54 +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: f4c82047-98a2-4950-97bc-8606cbc35238 X-Archives-Hash: 559530425c334a32178006b64c7a4c40 commit: 6e5874f580a6d2c0f2445b60e56f31f0c2917f36 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Dec 19 22:44:50 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Dec 19 22:44:50 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=6e5874f5 dev-lisp/cl-plus-ssl: Adds live ebuild dev-lisp/cl-plus-ssl/cl-plus-ssl-9999.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dev-lisp/cl-plus-ssl/cl-plus-ssl-9999.ebuild b/dev-lisp/cl-plus-ssl/cl-plus-ssl-9999.ebuild new file mode 100644 index 0000000..35c9538 --- /dev/null +++ b/dev-lisp/cl-plus-ssl/cl-plus-ssl-9999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit common-lisp-3 git-r3 + +DESCRIPTION="A simple Common Lisp interface to OpenSSL." +HOMEPAGE="http://common-lisp.net/project/cl-plus-ssl/" +EGIT_REPO_URI="https://github.com/${PN}/${PN}" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +RDEPEND=">=dev-lisp/cffi-0.9.2_p20080723 + dev-lisp/trivial-gray-streams + dev-lisp/flexi-streams + dev-libs/openssl" + +src_install() { + common-lisp-3_src_install + dodoc index.{css,html} +}