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 EB23C1382C5 for ; Sat, 17 Mar 2018 20:01:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC10FE07F0; Sat, 17 Mar 2018 20:01:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A5F0FE07F0 for ; Sat, 17 Mar 2018 20:01:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 38A9C335CBB for ; Sat, 17 Mar 2018 20:01:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54131232 for ; Sat, 17 Mar 2018 20:01:08 +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: <1521316877.75cb41cbd14fd9f16bec3dae29176a5431e4772e.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild X-VCS-Directories: dev-lisp/cl-closure-template/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 75cb41cbd14fd9f16bec3dae29176a5431e4772e X-VCS-Branch: master Date: Sat, 17 Mar 2018 20:01:08 +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: a22b1f63-6725-49a8-a39e-962445a8fb72 X-Archives-Hash: 262d0d9288f089d4001a9e8bcba7f32b commit: 75cb41cbd14fd9f16bec3dae29176a5431e4772e Author: Chema Alonso Josa gentoo org> AuthorDate: Sat Mar 17 20:01:17 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Sat Mar 17 20:01:17 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=75cb41cb dev-lisp/cl-closure-template: Updates manifest .../cl-closure-template-0.1.9.ebuild | 51 ---------------------- 1 file changed, 51 deletions(-) diff --git a/dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild b/dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild deleted file mode 100644 index a13bc2ac..00000000 --- a/dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 elisp-common eutils - -DESCRIPTION="Common Lisp implementation of Google's Closure Templates." -HOMEPAGE="http://code.google.com/p/cl-closure-template/" -SRC_URI="http://cl-closure-template.googlecode.com/files/${P}.tar.bz2" - -LICENSE="LLGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc emacs" - -RDEPEND="dev-lisp/asdf-system-connections - dev-lisp/babel - dev-lisp/parenscript - dev-lisp/split-sequence - dev-lisp/wiki-parser - dev-lisp/lift - emacs? ( virtual/emacs )" - -CLSYSTEMS="closure-template" -SITEFILE="50${PN}-gentoo.el" - -src_install() { - common-lisp-install-sources -t all src t - common-lisp-install-asdf ${CLSYSTEMS} - - if use doc; then - insinto /usr/share/doc/${PF}/examples - doins -r example/* || die "Cannot install examples" - fi - - if use emacs; then - elisp-install ${PN} closure-template-html-mode.el || die "Cannot install elisp sources" - elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die "Cannot install elisp site file" - fi - - dodoc README.markdown -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -}