Gentoo Archives: gentoo-commits

From: Stelian Ionescu <sionescu@××××.org>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/hunchentoot/
Date: Sun, 30 Oct 2011 23:33:08
Message-Id: be76adeebb415119ca0ae8d45124a5277a0445fb.fenlix@gentoo
1 commit: be76adeebb415119ca0ae8d45124a5277a0445fb
2 Author: Stelian Ionescu <sionescu <AT> cddr <DOT> org>
3 AuthorDate: Sun Oct 30 23:32:50 2011 +0000
4 Commit: Stelian Ionescu <sionescu <AT> cddr <DOT> org>
5 CommitDate: Sun Oct 30 23:32:50 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=be76adee
7
8 dev-lisp/hunchentoot: bump to 1.2.0
9
10 ---
11 ...ntoot-1.1.1.ebuild => hunchentoot-1.2.0.ebuild} | 15 +++++++--------
12 1 files changed, 7 insertions(+), 8 deletions(-)
13
14 diff --git a/dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild b/dev-lisp/hunchentoot/hunchentoot-1.2.0.ebuild
15 similarity index 72%
16 rename from dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild
17 rename to dev-lisp/hunchentoot/hunchentoot-1.2.0.ebuild
18 index 8cdc85b..099779a 100644
19 --- a/dev-lisp/hunchentoot/hunchentoot-1.1.1.ebuild
20 +++ b/dev-lisp/hunchentoot/hunchentoot-1.2.0.ebuild
21 @@ -2,11 +2,12 @@
22 # Distributed under the terms of the GNU General Public License v2
23 # $Header: $
24
25 -inherit common-lisp-2
26 +EAPI=3
27 +inherit common-lisp-3
28
29 DESCRIPTION="Hunchentoot is a web server written in Common Lisp."
30 HOMEPAGE="http://weitz.de/hunchentoot/"
31 -SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"
32 +SRC_URI="https://github.com/downloads/edicl/hunchentoot/hunchentoot-1.2.0.tar.gz"
33
34 LICENSE="BSD-2"
35 SLOT="0"
36 @@ -29,15 +30,13 @@ RDEPEND=">=dev-lisp/chunga-0.5.0
37 >=dev-lisp/drakma-1.0.0"
38
39 src_compile() {
40 - if use doc ; then
41 - cd doc
42 - xsltproc clixdoc.xsl index.xml > index.html
43 - fi
44 + use doc && xsltproc doc/clixdoc.xsl doc/index.xml > doc/index.html
45 }
46
47 src_install() {
48 - common-lisp-install *.{lisp,asd} url-rewrite/ test/
49 - common-lisp-symlink-asdf
50 + common-lisp-install-sources *.{lisp,asd} url-rewrite/ test/
51 + common-lisp-install-sources -t all www/
52 + common-lisp-install-asdf
53 dodoc CHANGELOG* README
54 use doc && dohtml -r doc/*
55 }