From 1f61d669cf66014cd40e688068ad23970e0706d8 Mon Sep 17 00:00:00 2001 From: Andrey Grozin Date: Thu, 14 Mar 2013 12:06:29 +0000 Subject: Version bump (hardmasked) (Portage version: 2.2.0_alpha166/cvs/Linux i686, signed Manifest commit with key 00C6DAB1!) --- dev-lisp/gcl/ChangeLog | 10 ++- dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild | 139 ------------------------------ dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild | 137 ----------------------------- dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild | 132 ++++++++++++++++++++++++++++ 4 files changed, 140 insertions(+), 278 deletions(-) delete mode 100644 dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild delete mode 100644 dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild create mode 100644 dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild (limited to 'dev-lisp') diff --git a/dev-lisp/gcl/ChangeLog b/dev-lisp/gcl/ChangeLog index b8f681fd37d0..d37458fb1a8d 100644 --- a/dev-lisp/gcl/ChangeLog +++ b/dev-lisp/gcl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lisp/gcl -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gcl/ChangeLog,v 1.60 2012/11/09 07:09:31 grozin Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gcl/ChangeLog,v 1.61 2013/03/14 12:06:29 grozin Exp $ + +*gcl-2.6.8_pre20130314 (14 Mar 2013) + + 14 Mar 2013; Andrey Grozin -gcl-2.6.8_pre20090419.ebuild, + -gcl-2.6.8_pre20111221.ebuild, +gcl-2.6.8_pre20130314.ebuild: + Version bump (hardmasked) 09 Nov 2012; Andrey Grozin gcl-2.6.8_pre20120805.ebuild: Added ~amd64 keyword diff --git a/dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild b/dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild deleted file mode 100644 index c439c04a6045..000000000000 --- a/dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild +++ /dev/null @@ -1,139 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gcl/gcl-2.6.8_pre20090419.ebuild,v 1.3 2012/06/07 18:59:25 zmedico Exp $ - -EAPI=1 - -#removing flag-o-matic results in make install failing due to a segfault -inherit elisp-common eutils flag-o-matic - -DESCRIPTION="GNU Common Lisp" -HOMEPAGE="http://www.gnu.org/software/gcl/gcl.html" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86" -IUSE="+ansi debug doc emacs +readline tk X" - -# See bug #205803 -RESTRICT="strip" - -RDEPEND="emacs? ( virtual/emacs ) - readline? ( sys-libs/readline ) - >=dev-libs/gmp-4.1 - tk? ( dev-lang/tk ) - X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) - virtual/latex-base" -DEPEND="${RDEPEND} - doc? ( virtual/texi2dvi ) - >=app-text/texi2html-1.64 - >=sys-devel/autoconf-2.52" - -src_unpack() { - unpack ${A} - cd "${S}" - - # The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in - # option parsing, it may break. - epatch "${FILESDIR}"/${P}-configure.patch -} - -src_compile() { - local myconfig="" - if use tk; then - myconfig="${myconfig} --enable-tkconfig=/usr/lib --enable-tclconfig=/usr/lib" - fi - myconfig="${myconfig} \ - --enable-emacsdir=/usr/share/emacs/site-lisp/gcl \ - --enable-dynsysgmp \ - --disable-xdr - $(use_enable readline) \ - $(use_with X x) \ - $(use_enable debug) \ - $(use_enable ansi)" - - einfo "Configuring with the following: -${myconfig}" - econf ${myconfig} - make || die "make failed" - sed -e 's,@EXT@,,g' debian/in.gcl.1 >gcl.1 -} - -src_test() { - local make_ansi_tests_clean="rm -f test.out *.fasl *.o \ - *.so *~ *.fn *.x86f *.fasl *.ufsl" - if use ansi; then - cd ansi-tests - - ( make clean && make test-unixport ) \ - || die "make ansi-tests failed!" - - cat "${FILESDIR}/bootstrap-gcl" \ - | ../unixport/saved_ansi_gcl - - cat "${FILESDIR}/bootstrap-gcl" \ - |sed s/bootstrapped_ansi_gcl/bootstrapped_r_ansi_gcl/g \ - | ./bootstrapped_ansi_gcl - - ( ${make_ansi_tests_clean} && \ - echo "(load \"gclload.lsp\")" \ - | ./bootstrapped_r_ansi_gcl ) \ - || die "Phase 2, bootstraped compiler failed in tests" - - else - - ewarn "Upstream provides tests only for ansi-gcl." - ewarn "Please emerge with ansi USE flag enabled" - ewarn "if you wnat to run the ansi tests." - - cat "${FILESDIR}/bootstrap-gcl" \ - | sed s/bootstrapped_ansi_gcl/bootstrapped_gcl/g \ - | unixport/saved_gcl - - cat "${FILESDIR}/bootstrap-gcl" \ - | sed s/bootstrapped_ansi_gcl/bootstrapped_r_gcl/g \ - | ./bootstrapped_gcl - - for x in "./bootstrapped_r_gcl" "unixport/saved_gcl" ; do - echo "(compiler::emit-fn t)" \ - | ${x} \ - || die "Phase 2, bootstraped compiler failed in tests" - done - fi -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - rm -rf "${D}"usr/share/doc/${PN}-si "${D}"usr/share/doc/${PN}-tk - - dosed /usr/bin/gcl - fperms 0755 /usr/bin/gcl - - dodoc readme* RELEASE* ChangeLog* doc/* - doman gcl.1 - doinfo info/*.info* - - if use emacs; then - mv "${D}"usr/share/emacs/site-lisp/${PN}/add-default.el "${T}"/50${PN}-gentoo.el - elisp-site-file-install "${T}"/50${PN}-gentoo.el - elisp-install ${PN} elisp/* - fperms 0644 /usr/share/emacs/site-lisp/gcl/* - else - rm -rf "${D}"usr/share/emacs - fi - - if use doc; then - mv "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* "${D}"usr/share/doc/${PF}/ - else - rm -rf "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild b/dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild deleted file mode 100644 index 6dc9e7a46f0e..000000000000 --- a/dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild +++ /dev/null @@ -1,137 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gcl/gcl-2.6.8_pre20111221.ebuild,v 1.2 2012/06/07 18:59:25 zmedico Exp $ - -EAPI=3 - -#removing flag-o-matic results in make install failing due to a segfault -inherit elisp-common eutils flag-o-matic - -DESCRIPTION="GNU Common Lisp" -HOMEPAGE="http://www.gnu.org/software/gcl/gcl.html" -SRC_URI="http://dev.gentoo.org/~grozin/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="+ansi debug doc emacs +readline tk X" - -# See bug #205803 -RESTRICT="strip" - -RDEPEND="emacs? ( virtual/emacs ) - readline? ( sys-libs/readline ) - >=dev-libs/gmp-4.1 - tk? ( dev-lang/tk ) - X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) - virtual/latex-base" -DEPEND="${RDEPEND} - doc? ( virtual/texi2dvi ) - >=app-text/texi2html-1.64 - >=sys-devel/autoconf-2.52" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-default-el.patch -} - -src_configure() { - local myconfig="" - if use tk; then - myconfig="${myconfig} --enable-tkconfig=/usr/lib --enable-tclconfig=/usr/lib" - fi - myconfig="${myconfig} \ - --enable-emacsdir=/usr/share/emacs/site-lisp/gcl \ - --enable-dynsysgmp \ - --disable-xdr - $(use_enable readline) \ - $(use_with X x) \ - $(use_enable debug) \ - $(use_enable ansi)" - - einfo "Configuring with the following: -${myconfig}" - econf ${myconfig} -} - -src_compile() { - make || die "make failed" - sed -e 's,@EXT@,,g' debian/in.gcl.1 >gcl.1 -} - -src_test() { - local make_ansi_tests_clean="rm -f test.out *.fasl *.o \ - *.so *~ *.fn *.x86f *.fasl *.ufsl" - if use ansi; then - cd ansi-tests - - ( make clean && make test-unixport ) \ - || die "make ansi-tests failed!" - - cat "${FILESDIR}/bootstrap-gcl" \ - | ../unixport/saved_ansi_gcl - - cat "${FILESDIR}/bootstrap-gcl" \ - |sed s/bootstrapped_ansi_gcl/bootstrapped_r_ansi_gcl/g \ - | ./bootstrapped_ansi_gcl - - ( ${make_ansi_tests_clean} && \ - echo "(load \"gclload.lsp\")" \ - | ./bootstrapped_r_ansi_gcl ) \ - || die "Phase 2, bootstraped compiler failed in tests" - - else - - ewarn "Upstream provides tests only for ansi-gcl." - ewarn "Please emerge with ansi USE flag enabled" - ewarn "if you wnat to run the ansi tests." - - cat "${FILESDIR}/bootstrap-gcl" \ - | sed s/bootstrapped_ansi_gcl/bootstrapped_gcl/g \ - | unixport/saved_gcl - - cat "${FILESDIR}/bootstrap-gcl" \ - | sed s/bootstrapped_ansi_gcl/bootstrapped_r_gcl/g \ - | ./bootstrapped_gcl - - for x in "./bootstrapped_r_gcl" "unixport/saved_gcl" ; do - echo "(compiler::emit-fn t)" \ - | ${x} \ - || die "Phase 2, bootstraped compiler failed in tests" - done - fi -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - rm -rf "${D}"usr/share/doc/${PN}-si "${D}"usr/share/doc/${PN}-tk - - dosed /usr/bin/gcl - fperms 0755 /usr/bin/gcl - - dodoc readme* RELEASE* ChangeLog* doc/* - doman gcl.1 - doinfo info/*.info* - - if use emacs; then - mv "${D}"usr/share/emacs/site-lisp/${PN}/add-default.el "${T}"/50${PN}-gentoo.el - elisp-site-file-install "${T}"/50${PN}-gentoo.el - elisp-install ${PN} elisp/* - fperms 0644 /usr/share/emacs/site-lisp/gcl/* - else - rm -rf "${D}"usr/share/emacs - fi - - if use doc; then - mv "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* "${D}"usr/share/doc/${PF}/ - else - rm -rf "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild b/dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild new file mode 100644 index 000000000000..54c66b8dd6a9 --- /dev/null +++ b/dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gcl/gcl-2.6.8_pre20130314.ebuild,v 1.1 2013/03/14 12:06:29 grozin Exp $ + +EAPI=5 + +#removing flag-o-matic results in make install failing due to a segfault +inherit elisp-common eutils flag-o-matic + +DESCRIPTION="GNU Common Lisp" +HOMEPAGE="http://www.gnu.org/software/gcl/gcl.html" +SRC_URI="http://dev.gentoo.org/~grozin/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+ansi debug doc emacs +readline tk X" + +# See bug #205803 +RESTRICT="strip" + +RDEPEND="emacs? ( virtual/emacs ) + readline? ( sys-libs/readline ) + >=dev-libs/gmp-4.1 + tk? ( dev-lang/tk ) + X? ( x11-libs/libXt x11-libs/libXext x11-libs/libXmu x11-libs/libXaw ) + virtual/latex-base" +DEPEND="${RDEPEND} + doc? ( virtual/texi2dvi ) + >=app-text/texi2html-1.64 + >=sys-devel/autoconf-2.52" + +src_configure() { + local myconfig="" + if use tk; then + myconfig="${myconfig} --enable-tkconfig=/usr/lib --enable-tclconfig=/usr/lib" + fi + myconfig="${myconfig} \ + --enable-emacsdir=/usr/share/emacs/site-lisp/gcl \ + --enable-dynsysgmp \ + --disable-xdr + $(use_enable readline) \ + $(use_with X x) \ + $(use_enable debug) \ + $(use_enable ansi)" + + einfo "Configuring with the following: +${myconfig}" + econf ${myconfig} +} + +src_compile() { + make || die "make failed" + sed -e 's,@EXT@,,g' debian/in.gcl.1 >gcl.1 +} + +src_test() { + local make_ansi_tests_clean="rm -f test.out *.fasl *.o \ + *.so *~ *.fn *.x86f *.fasl *.ufsl" + if use ansi; then + cd ansi-tests + + ( make clean && make test-unixport ) \ + || die "make ansi-tests failed!" + + cat "${FILESDIR}/bootstrap-gcl" \ + | ../unixport/saved_ansi_gcl + + cat "${FILESDIR}/bootstrap-gcl" \ + |sed s/bootstrapped_ansi_gcl/bootstrapped_r_ansi_gcl/g \ + | ./bootstrapped_ansi_gcl + + ( ${make_ansi_tests_clean} && \ + echo "(load \"gclload.lsp\")" \ + | ./bootstrapped_r_ansi_gcl ) \ + || die "Phase 2, bootstraped compiler failed in tests" + + else + + ewarn "Upstream provides tests only for ansi-gcl." + ewarn "Please emerge with ansi USE flag enabled" + ewarn "if you wnat to run the ansi tests." + + cat "${FILESDIR}/bootstrap-gcl" \ + | sed s/bootstrapped_ansi_gcl/bootstrapped_gcl/g \ + | unixport/saved_gcl + + cat "${FILESDIR}/bootstrap-gcl" \ + | sed s/bootstrapped_ansi_gcl/bootstrapped_r_gcl/g \ + | ./bootstrapped_gcl + + for x in "./bootstrapped_r_gcl" "unixport/saved_gcl" ; do + echo "(compiler::emit-fn t)" \ + | ${x} \ + || die "Phase 2, bootstraped compiler failed in tests" + done + fi +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + rm -rf "${D}"usr/share/doc/${PN}-si "${D}"usr/share/doc/${PN}-tk + + fperms 0755 /usr/bin/gcl + + dodoc readme* RELEASE* ChangeLog* doc/* + doman gcl.1 + doinfo info/*.info* + + if use emacs; then + mv "${D}"usr/share/emacs/site-lisp/${PN}/add-default.el "${T}"/50${PN}-gentoo.el + elisp-site-file-install "${T}"/50${PN}-gentoo.el + elisp-install ${PN} elisp/* + fperms 0644 /usr/share/emacs/site-lisp/gcl/* + else + rm -rf "${D}"usr/share/emacs + fi + + if use doc; then + mv "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* "${D}"usr/share/doc/${PF}/ + else + rm -rf "${D}"usr/share/doc/*.dvi "${D}"usr/share/doc/dwdoc* + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} -- cgit v1.2.3-65-gdbad