Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/uiop/
Date: Tue, 04 Apr 2017 17:46:28
Message-Id: 1491328019.8755dfc885e479499ba80e4b7423e8548bda61a4.nimiux@gentoo
1 commit: 8755dfc885e479499ba80e4b7423e8548bda61a4
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 4 17:46:59 2017 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 4 17:46:59 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=8755dfc8
7
8 dev-lisp/uiop: Bumps version to 3.2.1
9
10 dev-lisp/uiop/uiop-3.2.1.ebuild | 28 ++++++++++++++++++++++++++++
11 1 file changed, 28 insertions(+)
12
13 diff --git a/dev-lisp/uiop/uiop-3.2.1.ebuild b/dev-lisp/uiop/uiop-3.2.1.ebuild
14 new file mode 100644
15 index 00000000..26c334a3
16 --- /dev/null
17 +++ b/dev-lisp/uiop/uiop-3.2.1.ebuild
18 @@ -0,0 +1,28 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=6
24 +
25 +inherit common-lisp-3
26 +
27 +DESCRIPTION="UIOP is a portability layer spun off ASDF3"
28 +HOMEPAGE="http://common-lisp.net/project/asdf/"
29 +SRC_URI="http://common-lisp.net/project/asdf/archives/asdf-${PV}.tar.gz"
30 +
31 +LICENSE="MIT"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
34 +IUSE=""
35 +
36 +RDEPEND="~dev-lisp/asdf-${PV}"
37 +
38 +S="${WORKDIR}/asdf-${PV}/${PN}"
39 +
40 +src_install() {
41 + insinto "${CLSOURCEROOT}/${PN}"
42 + doins -r contrib *.lisp ../version.lisp-expr "${PN}.asd" asdf-driver.asd
43 + dodir "${CLSYSTEMROOT}"
44 + dosym "${CLSOURCEROOT}/${PN}/${PN}.asd" "${CLSYSTEMROOT}/${PN}.asd"
45 + dosym "${CLSOURCEROOT}/${PN}/asdf-driver.asd" "${CLSYSTEMROOT}/asdf-driver.asd"
46 +}