Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/clx/
Date: Sun, 04 Feb 2018 10:20:31
Message-Id: 1517739600.18aefe8743346feadfdb405dcafc344e53fc024d.nimiux@gentoo
1 commit: 18aefe8743346feadfdb405dcafc344e53fc024d
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 4 10:19:32 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 4 10:20:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18aefe87
7
8 dev-lisp/clx: Bumps version to 0.7.5
9
10 Closes: https://bugs.gentoo.org/646534
11 Package-Manager: Portage-2.3.19, Repoman-2.3.6
12
13 dev-lisp/clx/Manifest | 1 +
14 dev-lisp/clx/clx-0.7.5.ebuild | 36 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-lisp/clx/Manifest b/dev-lisp/clx/Manifest
18 index 8cfdad86d4d..7cb64367b79 100644
19 --- a/dev-lisp/clx/Manifest
20 +++ b/dev-lisp/clx/Manifest
21 @@ -1 +1,2 @@
22 DIST clx-0.7.4.tgz 444490 BLAKE2B 19ac6976353f254c11639a443f1b5821deae952dfae51bd168642c6a55be9401e38fce388f2d7feac618b00dd1606bc11869531f6c380acf2e4b1d65e187e9d1 SHA512 07f93735bee25c8a6d8cccaa0755efa0b750954cbeab70d9db69bf51f1cf4eb7918c0225b9ae2834b11ebb261a857eea0f60b70e4044ccbe96ecb32c3ac31278
23 +DIST clx-0.7.5.tar.gz 468904 BLAKE2B 30ce4de52fdbbc935bf5653f54a588537670b7d55dc038f32b4527e5f3d7b2dfe6afde3d28debf7ab5a08994155ec390f1e70dfbe45e8831fe7a977d245c9d7a SHA512 9228c37a99dcaee637c64c58183220c1ed3745e683c877f843c7de5b052d7355a3ddd50687371e8388c05bcedda062008299476b82dc8a3d26b605dde1dfa997
24
25 diff --git a/dev-lisp/clx/clx-0.7.5.ebuild b/dev-lisp/clx/clx-0.7.5.ebuild
26 new file mode 100644
27 index 00000000000..8cd18ea3e42
28 --- /dev/null
29 +++ b/dev-lisp/clx/clx-0.7.5.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit common-lisp-3 eutils
37 +
38 +DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL."
39 +HOMEPAGE="http://www.cliki.net/CLX"
40 +SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
45 +IUSE="doc"
46 +
47 +DEPEND="sys-apps/texinfo
48 + doc? ( virtual/texi2dvi )"
49 +RDEPEND="!dev-lisp/cl-${PN}"
50 +
51 +src_compile() {
52 + cd manual || die
53 + makeinfo ${PN}.texinfo -o ${PN}.info || die
54 + if use doc ; then
55 + VARTEXFONTS="${T}"/fonts \
56 + texi2pdf ${PN}.texinfo -o ${PN}.pdf || die
57 + fi
58 +}
59 +
60 +src_install() {
61 + common-lisp-install-sources *.lisp debug demo extensions tests
62 + common-lisp-install-asdf
63 + dodoc NEWS CHANGES README*
64 + doinfo manual/${PN}.info
65 + use doc && dodoc manual/${PN}.pdf
66 +}