From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4707B1382C5 for ; Sun, 4 Feb 2018 10:20:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E9E6E0A8A; Sun, 4 Feb 2018 10:20:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69C51E0A8A for ; Sun, 4 Feb 2018 10:20:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4FC1B335C2F for ; Sun, 4 Feb 2018 10:20:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC1A41C5 for ; Sun, 4 Feb 2018 10:20:27 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1517739600.18aefe8743346feadfdb405dcafc344e53fc024d.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/clx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/clx/Manifest dev-lisp/clx/clx-0.7.5.ebuild X-VCS-Directories: dev-lisp/clx/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 18aefe8743346feadfdb405dcafc344e53fc024d X-VCS-Branch: master Date: Sun, 4 Feb 2018 10:20:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5c2ae0ae-173c-4615-b4fe-af6df5e6893b X-Archives-Hash: 30ec28fd261615701515dd62b84c09d3 commit: 18aefe8743346feadfdb405dcafc344e53fc024d Author: Chema Alonso Josa gentoo org> AuthorDate: Sun Feb 4 10:19:32 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sun Feb 4 10:20:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18aefe87 dev-lisp/clx: Bumps version to 0.7.5 Closes: https://bugs.gentoo.org/646534 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-lisp/clx/Manifest | 1 + dev-lisp/clx/clx-0.7.5.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-lisp/clx/Manifest b/dev-lisp/clx/Manifest index 8cfdad86d4d..7cb64367b79 100644 --- a/dev-lisp/clx/Manifest +++ b/dev-lisp/clx/Manifest @@ -1 +1,2 @@ DIST clx-0.7.4.tgz 444490 BLAKE2B 19ac6976353f254c11639a443f1b5821deae952dfae51bd168642c6a55be9401e38fce388f2d7feac618b00dd1606bc11869531f6c380acf2e4b1d65e187e9d1 SHA512 07f93735bee25c8a6d8cccaa0755efa0b750954cbeab70d9db69bf51f1cf4eb7918c0225b9ae2834b11ebb261a857eea0f60b70e4044ccbe96ecb32c3ac31278 +DIST clx-0.7.5.tar.gz 468904 BLAKE2B 30ce4de52fdbbc935bf5653f54a588537670b7d55dc038f32b4527e5f3d7b2dfe6afde3d28debf7ab5a08994155ec390f1e70dfbe45e8831fe7a977d245c9d7a SHA512 9228c37a99dcaee637c64c58183220c1ed3745e683c877f843c7de5b052d7355a3ddd50687371e8388c05bcedda062008299476b82dc8a3d26b605dde1dfa997 diff --git a/dev-lisp/clx/clx-0.7.5.ebuild b/dev-lisp/clx/clx-0.7.5.ebuild new file mode 100644 index 00000000000..8cd18ea3e42 --- /dev/null +++ b/dev-lisp/clx/clx-0.7.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 eutils + +DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL." +HOMEPAGE="http://www.cliki.net/CLX" +SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="sys-apps/texinfo + doc? ( virtual/texi2dvi )" +RDEPEND="!dev-lisp/cl-${PN}" + +src_compile() { + cd manual || die + makeinfo ${PN}.texinfo -o ${PN}.info || die + if use doc ; then + VARTEXFONTS="${T}"/fonts \ + texi2pdf ${PN}.texinfo -o ${PN}.pdf || die + fi +} + +src_install() { + common-lisp-install-sources *.lisp debug demo extensions tests + common-lisp-install-asdf + dodoc NEWS CHANGES README* + doinfo manual/${PN}.info + use doc && dodoc manual/${PN}.pdf +}