Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/asdf: asdf-3.0.1.ebuild ChangeLog
Date: Sun, 19 May 2013 05:13:07
Message-Id: 20130519051301.C01162171D@flycatcher.gentoo.org
1 grozin 13/05/19 05:13:01
2
3 Modified: ChangeLog
4 Added: asdf-3.0.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha175/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
9
10 Revision Changes Path
11 1.9 dev-lisp/asdf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 25 Apr 2013 03:04:24 -0000 1.8
24 +++ ChangeLog 19 May 2013 05:13:01 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lisp/asdf
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.8 2013/04/25 03:04:24 grozin Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.9 2013/05/19 05:13:01 grozin Exp $
30 +
31 +*asdf-3.0.1 (19 May 2013)
32 +
33 + 19 May 2013; Andrey Grozin <grozin@g.o> +asdf-3.0.1.ebuild:
34 + Version bump
35
36 25 Apr 2013; Andrey Grozin <grozin@g.o> asdf-2.33-r4.ebuild:
37 DEPEND on <texinfo-5.0 (bug #467146)
38
39
40
41 1.1 dev-lisp/asdf/asdf-3.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/asdf-3.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/asdf/asdf-3.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: asdf-3.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/asdf-3.0.1.ebuild,v 1.1 2013/05/19 05:13:01 grozin Exp $
51
52 EAPI=5
53 inherit eutils
54
55 DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp"
56 HOMEPAGE="http://common-lisp.net/project/asdf/"
57 SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62 IUSE="doc"
63
64 SLOT="0/${PVR}"
65
66 DEPEND="!dev-lisp/cl-${PN}
67 !dev-lisp/asdf-binary-locations
68 !dev-lisp/gentoo-init
69 !<dev-lisp/asdf-2.33-r3
70 doc? ( <sys-apps/texinfo-5.0 virtual/texi2dvi )"
71 RDEPEND=""
72 PDEPEND="~dev-lisp/uiop-${PV}"
73
74 S="${WORKDIR}"
75
76 src_compile() {
77 make
78 use doc && make doc
79 }
80
81 src_install() {
82 insinto /usr/share/common-lisp/source/${PN}
83 doins -r build version.lisp-expr
84 dodoc README TODO
85 dohtml doc/*.{html,css,ico,png}
86 if use doc; then
87 insinto /usr/share/doc/${PF}
88 doins doc/${PN}.pdf
89 fi
90
91 insinto /etc/common-lisp
92 doins "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf
93 }