public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/
@ 2017-07-07  9:27 José María Alonso
  0 siblings, 0 replies; 4+ messages in thread
From: José María Alonso @ 2017-07-07  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     4d46624db68a3c8791c5e5d0b105e14bd54f1c7d
Author:     Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Fri Jul  7 09:27:41 2017 +0000
Commit:     José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Fri Jul  7 09:27:41 2017 +0000
URL:        https://gitweb.gentoo.org/proj/lisp.git/commit/?id=4d46624d

dev-lisp/climacs: Updates to common-lisp-3 eclass

 dev-lisp/climacs/climacs-20080209-r1.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild
index cf8ae773..092a7d74 100644
--- a/dev-lisp/climacs/climacs-20080209-r1.ebuild
+++ b/dev-lisp/climacs/climacs-20080209-r1.ebuild
@@ -20,10 +20,10 @@ RDEPEND=">=dev-lisp/flexichain-0.4.1
 		>=dev-lisp/mcclim-0.9.5_p20080209"
 
 src_compile() {
-	cd Doc
-	makeinfo --force ${PN}-internals.texi -o ${PN}-internals.info
+	cd Doc || die
+	makeinfo --force ${PN}-internals.texi -o ${PN}-internals.info || die
 	[[ -e ${PN}-internals.info ]] || die "Cannot build info docs(internals)"
-	makeinfo --force ${PN}-user.texi -o ${PN}-user.info
+	makeinfo --force ${PN}-user.texi -o ${PN}-user.info || die
 	[[ -e ${PN}-user.info ]] || die "Cannot build info docs(user manual)"
 	if use doc ; then
 		VARTEXFONTS="${T}"/fonts \
@@ -36,8 +36,8 @@ src_compile() {
 }
 
 src_install() {
-	common-lisp-install *.{lisp,asd}
-	common-lisp-symlink-asdf
+	common-lisp-install-sources *.lisp
+	common-lisp-install-asdf
 	dodoc INSTALL* README TODO
 	doinfo Doc/${PN}-{internals,user}.info
 	use doc && dodoc Doc/${PN}-{internals,user}.pdf


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/
@ 2022-04-02 15:34 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2022-04-02 15:34 UTC (permalink / raw
  To: gentoo-commits

commit:     c5edbf7f7419b38aca621e669d26349c2de0753e
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  2 15:13:09 2022 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Apr  2 15:13:09 2022 +0000
URL:        https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c5edbf7f

dev-lisp/climacs: Remove package

SRC_URI is gone.

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

 dev-lisp/climacs/climacs-20080209-r1.ebuild | 52 -----------------------------
 1 file changed, 52 deletions(-)

diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild
deleted file mode 100644
index 092a7d74..00000000
--- a/dev-lisp/climacs/climacs-20080209-r1.ebuild
+++ /dev/null
@@ -1,52 +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="Climacs is an Emacs-like text editor written in Common Lisp."
-HOMEPAGE="http://common-lisp.net/project/climacs"
-SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="doc"
-
-DEPEND="sys-apps/texinfo
-		doc? ( virtual/texi2dvi )"
-RDEPEND=">=dev-lisp/flexichain-0.4.1
-		>=dev-lisp/mcclim-0.9.5_p20080209"
-
-src_compile() {
-	cd Doc || die
-	makeinfo --force ${PN}-internals.texi -o ${PN}-internals.info || die
-	[[ -e ${PN}-internals.info ]] || die "Cannot build info docs(internals)"
-	makeinfo --force ${PN}-user.texi -o ${PN}-user.info || die
-	[[ -e ${PN}-user.info ]] || die "Cannot build info docs(user manual)"
-	if use doc ; then
-		VARTEXFONTS="${T}"/fonts \
-			texi2pdf ${PN}-internals.texi -o ${PN}-internals.pdf \
-			|| die "Cannot build PDF docs(internals)"
-		VARTEXFONTS="${T}"/fonts \
-			texi2pdf ${PN}-user.texi -o ${PN}-user.pdf \
-			|| die "Cannot build PDF docs(user manual)"
-	fi
-}
-
-src_install() {
-	common-lisp-install-sources *.lisp
-	common-lisp-install-asdf
-	dodoc INSTALL* README TODO
-	doinfo Doc/${PN}-{internals,user}.info
-	use doc && dodoc Doc/${PN}-{internals,user}.pdf
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/
@ 2017-07-03 21:30 José María Alonso
  0 siblings, 0 replies; 4+ messages in thread
From: José María Alonso @ 2017-07-03 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ba9d0938ff0efa833f1a28f7c35a4b5c106314da
Author:     Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  3 21:30:28 2017 +0000
Commit:     José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Mon Jul  3 21:30:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ba9d0938

dev-lisp/climacs: Updates to common-lisp-3 eclass

 dev-lisp/climacs/climacs-20080209-r1.ebuild | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild
index 5ad2cd65..cf8ae773 100644
--- a/dev-lisp/climacs/climacs-20080209-r1.ebuild
+++ b/dev-lisp/climacs/climacs-20080209-r1.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-inherit common-lisp-2 elisp-common eutils
+EAPI=6
+
+inherit common-lisp-3 elisp-common eutils
 
 DESCRIPTION="Climacs is an Emacs-like text editor written in Common Lisp."
 HOMEPAGE="http://common-lisp.net/project/climacs"


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/
@ 2016-12-10 20:56 José María Alonso
  0 siblings, 0 replies; 4+ messages in thread
From: José María Alonso @ 2016-12-10 20:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ebe576b8d8bccd1cae34e589bdcc6672487c8aa6
Author:     Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 20:55:55 2016 +0000
Commit:     José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 20:55:55 2016 +0000
URL:        https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ebe576b8

dev-lisp/climacs: Updates header

 dev-lisp/climacs/climacs-20080209-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild
index 87f08e9..5ad2cd6 100644
--- a/dev-lisp/climacs/climacs-20080209-r1.ebuild
+++ b/dev-lisp/climacs/climacs-20080209-r1.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$
 
 inherit common-lisp-2 elisp-common eutils
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-04-02 15:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-07  9:27 [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/ José María Alonso
  -- strict thread matches above, loose matches on Subject: below --
2022-04-02 15:34 Ulrich Müller
2017-07-03 21:30 José María Alonso
2016-12-10 20:56 José María Alonso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox