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