[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/

2022-04-01 Thread Ulrich Müller
commit: 492de871563cfdb351092be98c09fb632c5d8571
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Apr  1 11:35:34 2022 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Apr  1 11:35:34 2022 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=492de871

dev-lisp/cl-closure-template: Drop keywords

Unkeyworded dependencies.

Signed-off-by: Ulrich Müller  gentoo.org>

 dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild 
b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
index f0167d3f..a8c8d8c3 100644
--- a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
+++ b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/archimag/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="LLGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+#KEYWORDS="~amd64 ~ppc ~sparc ~x86"
 IUSE="doc emacs"
 
 RDEPEND="dev-lisp/babel



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/

2022-03-25 Thread Ulrich Müller
commit: 4a9dc5a2bc3d3915f69f32d76eb60bf282918f12
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Mar 25 19:02:35 2022 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Mar 25 19:02:35 2022 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4a9dc5a2

dev-lisp/cl-closure-template: Fix some QA issues

Signed-off-by: Ulrich Müller  gentoo.org>

 .../cl-closure-template/cl-closure-template-0.2.1.ebuild   | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild 
b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
index 92b758d6..f0167d3f 100644
--- a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
+++ b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-inherit common-lisp-3 elisp-common eutils
+inherit common-lisp-3 elisp-common
 
 MY_PV="version-${PV}"
 
@@ -23,7 +23,7 @@ RDEPEND="dev-lisp/babel
dev-lisp/parenscript
dev-lisp/parse-number
dev-lisp/lift
-   emacs? ( virtual/emacs )"
+   emacs? ( >=app-editors/emacs-23.1:* )"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
 
@@ -34,13 +34,13 @@ src_install() {
common-lisp-install-asdf
 
if use doc; then
-   insinto /usr/share/doc/${PF}/examples
-   doins -r example/* || die
+   docinto examples
+   dodoc -r example/*
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"
+   elisp-install ${PN} closure-template-html-mode.el
+   elisp-site-file-install "${FILESDIR}"/${SITEFILE}
fi
 
dodoc README.markdown



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/

2018-03-17 Thread José María Alonso
commit: 75cb41cbd14fd9f16bec3dae29176a5431e4772e
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat Mar 17 20:01:17 2018 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat Mar 17 20:01:17 2018 +
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..
--- 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
-}



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/

2017-07-07 Thread José María Alonso
commit: e3fc1bff549d55b45b8c435129b2029728c31d88
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Fri Jul  7 10:21:08 2017 +
Commit: José María Alonso  gentoo  org>
CommitDate: Fri Jul  7 10:21:08 2017 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=e3fc1bff

dev-lisp/cl-closure-template: Updates header and EAPI

 dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild | 6 +++---
 dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild | 5 ++---
 2 files changed, 5 insertions(+), 6 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
index 076740f5..a13bc2ac 100644
--- 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
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-EAPI=2
+EAPI=6
+
 inherit common-lisp-3 elisp-common eutils
 
 DESCRIPTION="Common Lisp implementation of Google's Closure Templates."

diff --git a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild 
b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
index 13fabe14..92b758d6 100644
--- a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
+++ b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
@@ -1,8 +1,7 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-EAPI=5
+EAPI=6
 
 inherit common-lisp-3 elisp-common eutils
 



[gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-closure-template/

2016-12-03 Thread José María Alonso
commit: ffe28ada95e59b05c7460f0e40f6c3095a7f1b68
Author: Chema Alonso Josa  gentoo  org>
AuthorDate: Sat Dec  3 22:31:00 2016 +
Commit: José María Alonso  gentoo  org>
CommitDate: Sat Dec  3 22:31:00 2016 +
URL:https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ffe28ada

dev-lisp/cl-closure-template: Updates header

 dev-lisp/cl-closure-template/cl-closure-template-0.1.9.ebuild | 4 ++--
 dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 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
index 66afec8..076740f 100644
--- 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
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=2
 inherit common-lisp-3 elisp-common eutils

diff --git a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild 
b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
index 70b6b80..13fabe1 100644
--- a/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
+++ b/dev-lisp/cl-closure-template/cl-closure-template-0.2.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
 
 EAPI=5