* [gentoo-commits] proj/lisp:master commit in: dev-scheme/chibi-scheme/
@ 2014-03-11 1:40 Erik Falor
0 siblings, 0 replies; 4+ messages in thread
From: Erik Falor @ 2014-03-11 1:40 UTC (permalink / raw
To: gentoo-commits
commit: 0b712be364fd348597632bee985cace8e420b454
Author: Erik Falor <ewfalor <AT> gmail <DOT> com>
AuthorDate: Sun Mar 9 01:56:43 2014 +0000
Commit: Erik Falor <ewfalor <AT> gmail <DOT> com>
CommitDate: Tue Mar 11 01:41:29 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=0b712be3
dev-scheme/chibi-scheme: bump to version 0.6.1
update ebuild to EAPI=5; fix some QA errors in Makefile
---
dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild | 64 +++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild b/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild
new file mode 100644
index 0000000..66eb03d
--- /dev/null
+++ b/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="A very tiny Scheme implementation with decent speed and native hygienic macros."
+SRC_URI="http://synthcode.com/scheme/${P}.tgz"
+HOMEPAGE="http://synthcode.com/scheme/"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="boehm-gc"
+
+DEPEND="boehm-gc? ( dev-libs/boehm-gc )"
+RDEPEND="${DEPEND}"
+
+export EXTRA_EMAKE+="PREFIX=/usr $(use boehm-gc && echo SEXP_USE_BOEHM=1)"
+
+src_prepare() {
+ # Upstream uses a D variable in its Makefile which conflicts with
+ # the variable predifined by ebuild D="${PORTAGE_BUILDDIR}/image"
+ sed 's,\([^[:alpha:]]\)D\([^[:alpha:]]\),\1chibiD\2,' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Upstream calls ldconfig in the install target, which goes outside
+ # of the ebuild Sandbox. We'll call ldconfig ourselves after merging
+ # the package.
+ sed '/ldconfig/d' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into the chibi-scheme executable
+ sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into the chibi-scheme executable
+ sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Set SONAME in libchibi-scheme.so
+ sed '/^libchibi-scheme/{ n; s/$(CC) $(CLIBFLAGS) -o $@ $^ $(XLDFLAGS)/& -Wl,-soname,libchibi-scheme.so/}' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into Chibi's compiled modules
+ sed 's/$(CC) $(CLIBFLAGS) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. $(XLIBS) -lchibi-scheme/& $(LDFLAGS)/' -i Makefile.libs \
+ || die "sed Makefile.libs failed"
+
+}
+
+# When the number of jobs > 1, the Makefile lets things get ahead of themselves
+# and sometimes later targets will fail because libchibi-scheme.so doesn't yet
+# exist.
+src_compile() {
+ emake -j1
+}
+
+src_test() {
+ LD_LIBRARY_PATH="${S}" emake test
+}
+
+src_install() {
+ emake DESTDIR="${D}" ${EXTRA_EMAKE} install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-scheme/chibi-scheme/
@ 2014-03-11 1:40 Erik Falor
0 siblings, 0 replies; 4+ messages in thread
From: Erik Falor @ 2014-03-11 1:40 UTC (permalink / raw
To: gentoo-commits
commit: 86c74b4f995fe5e94b2a4657cd3d382378a5a086
Author: Erik Falor <ewfalor <AT> gmail <DOT> com>
AuthorDate: Tue Mar 11 01:21:20 2014 +0000
Commit: Erik Falor <ewfalor <AT> gmail <DOT> com>
CommitDate: Tue Mar 11 01:42:28 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=86c74b4f
Remove chibi-scheme 0.2 from tree
---
dev-scheme/chibi-scheme/chibi-scheme-0.2.ebuild | 43 -------------------------
1 file changed, 43 deletions(-)
diff --git a/dev-scheme/chibi-scheme/chibi-scheme-0.2.ebuild b/dev-scheme/chibi-scheme/chibi-scheme-0.2.ebuild
deleted file mode 100644
index 1b70edb..0000000
--- a/dev-scheme/chibi-scheme/chibi-scheme-0.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-DESCRIPTION="A very tiny Scheme implementation with decent speed and native hygienic macros."
-SRC_URI="http://synthcode.com/scheme/${P}.tgz"
-HOMEPAGE="http://synthcode.com/scheme/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boehm-gc"
-
-DEPEND="boehm-gc? ( dev-libs/boehm-gc )"
-RDEPEND="${DEPEND}"
-
-export EXTRA_EMAKE+="PREFIX=/usr $(use boehm-gc && echo USE_BOEHM=1)"
-
-src_prepare() {
- cp Makefile Makefile.old
-
- #make it compile on amd64
- sed "s,\$(CC) -c,\$(CC) -fPIC -c," -i Makefile
-
- #add DESTDIR support
- sed "/install: chibi-scheme/a\\\\tmkdir -p \$(BINDIR)" -i Makefile
- sed "s,\$(BINDIR),\$(DESTDIR)/\$(BINDIR)," -i Makefile
- sed "s,\$(MODDIR),\$(DESTDIR)/\$(MODDIR)," -i Makefile
- sed "s,\$(INCDIR),\$(DESTDIR)/\$(INCDIR)," -i Makefile
- sed "s,\$(LIBDIR),\$(DESTDIR)/\$(LIBDIR)," -i Makefile
-
- diff -u Makefile.old Makefile
-}
-
-src_test() {
- LD_LIBRARY_PATH="${S}" emake test
-}
-
-src_install() {
- emake DESTDIR="${D}" ${EXTRA_EMAKE} install
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-scheme/chibi-scheme/
@ 2014-07-01 3:46 Erik Falor
0 siblings, 0 replies; 4+ messages in thread
From: Erik Falor @ 2014-07-01 3:46 UTC (permalink / raw
To: gentoo-commits
commit: 856fccb34deb24e0949292120d948e451c57b4c5
Author: Erik Falor <ewfalor <AT> gmail <DOT> com>
AuthorDate: Tue Jul 1 03:49:24 2014 +0000
Commit: Erik Falor <ewfalor <AT> gmail <DOT> com>
CommitDate: Tue Jul 1 03:49:24 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=856fccb3
dev-scheme/chibi-scheme: bump to version 0.7
---
dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild | 68 +++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild b/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild
new file mode 100644
index 0000000..fac4290
--- /dev/null
+++ b/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="A very tiny Scheme implementation with decent speed and native hygienic macros."
+SRC_URI="http://abrek.synthcode.com/${P}.tgz"
+HOMEPAGE="http://synthcode.com/scheme/"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="boehm-gc"
+
+DEPEND="boehm-gc? ( dev-libs/boehm-gc )"
+RDEPEND="${DEPEND}"
+
+export EXTRA_EMAKE+="PREFIX=/usr $(use boehm-gc && echo SEXP_USE_BOEHM=1)"
+
+src_prepare() {
+ # Upstream uses a D variable in its Makefile which conflicts with
+ # the variable predifined by ebuild D="${PORTAGE_BUILDDIR}/image"
+ sed 's,\([^[:alpha:]]\)D\([^[:alpha:]]\),\1chibiD\2,' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Upstream calls ldconfig in the install target, which goes outside
+ # of the ebuild Sandbox. We'll call ldconfig ourselves after merging
+ # the package.
+ sed '/ldconfig/d' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into the chibi-scheme executable
+ sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into the chibi-scheme executable
+ sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Set SONAME in libchibi-scheme.so
+ sed '/^libchibi-scheme/{ n; s/$(CC) $(CLIBFLAGS) -o $@ $^ $(XLDFLAGS)/& -Wl,-soname,libchibi-scheme.so/}' -i Makefile \
+ || die "sed Makefile failed"
+
+ # Incorporate local system's LDFLAGS into Chibi's compiled modules
+ sed 's/$(CC) $(CLIBFLAGS) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. $(XLIBS) -lchibi-scheme/& $(LDFLAGS)/' -i Makefile.libs \
+ || die "sed Makefile.libs failed"
+
+ # Force soname symlinks to be relative to installation directory
+ sed 's/$(LN) -s -f /$(LN) -s -f -r /' -i Makefile \
+ || die "sed Makefile failed"
+
+}
+
+# When the number of jobs > 1, the Makefile lets things get ahead of themselves
+# and sometimes later targets will fail because libchibi-scheme.so doesn't yet
+# exist.
+src_compile() {
+ emake -j1
+}
+
+src_test() {
+ LD_LIBRARY_PATH="${S}" emake test
+}
+
+src_install() {
+ emake DESTDIR="${D}" ${EXTRA_EMAKE} install
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/lisp:master commit in: dev-scheme/chibi-scheme/
@ 2017-11-29 19:43 José María Alonso
0 siblings, 0 replies; 4+ messages in thread
From: José María Alonso @ 2017-11-29 19:43 UTC (permalink / raw
To: gentoo-commits
commit: ebf8f809c4cac4918d4b52a56aed8091b902226e
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 19:40:11 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 19:40:11 2017 +0000
URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ebf8f809
dev-lisp/chibi-scheme: Drops package
Closes: https://bugs.gentoo.org/630194
dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild | 64 ---------------------
dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild | 68 -----------------------
2 files changed, 132 deletions(-)
diff --git a/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild b/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild
deleted file mode 100644
index 66eb03dd..00000000
--- a/dev-scheme/chibi-scheme/chibi-scheme-0.6.1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-DESCRIPTION="A very tiny Scheme implementation with decent speed and native hygienic macros."
-SRC_URI="http://synthcode.com/scheme/${P}.tgz"
-HOMEPAGE="http://synthcode.com/scheme/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boehm-gc"
-
-DEPEND="boehm-gc? ( dev-libs/boehm-gc )"
-RDEPEND="${DEPEND}"
-
-export EXTRA_EMAKE+="PREFIX=/usr $(use boehm-gc && echo SEXP_USE_BOEHM=1)"
-
-src_prepare() {
- # Upstream uses a D variable in its Makefile which conflicts with
- # the variable predifined by ebuild D="${PORTAGE_BUILDDIR}/image"
- sed 's,\([^[:alpha:]]\)D\([^[:alpha:]]\),\1chibiD\2,' -i Makefile \
- || die "sed Makefile failed"
-
- # Upstream calls ldconfig in the install target, which goes outside
- # of the ebuild Sandbox. We'll call ldconfig ourselves after merging
- # the package.
- sed '/ldconfig/d' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into the chibi-scheme executable
- sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into the chibi-scheme executable
- sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
- || die "sed Makefile failed"
-
- # Set SONAME in libchibi-scheme.so
- sed '/^libchibi-scheme/{ n; s/$(CC) $(CLIBFLAGS) -o $@ $^ $(XLDFLAGS)/& -Wl,-soname,libchibi-scheme.so/}' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into Chibi's compiled modules
- sed 's/$(CC) $(CLIBFLAGS) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. $(XLIBS) -lchibi-scheme/& $(LDFLAGS)/' -i Makefile.libs \
- || die "sed Makefile.libs failed"
-
-}
-
-# When the number of jobs > 1, the Makefile lets things get ahead of themselves
-# and sometimes later targets will fail because libchibi-scheme.so doesn't yet
-# exist.
-src_compile() {
- emake -j1
-}
-
-src_test() {
- LD_LIBRARY_PATH="${S}" emake test
-}
-
-src_install() {
- emake DESTDIR="${D}" ${EXTRA_EMAKE} install
-}
diff --git a/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild b/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild
deleted file mode 100644
index fac42909..00000000
--- a/dev-scheme/chibi-scheme/chibi-scheme-0.7.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-DESCRIPTION="A very tiny Scheme implementation with decent speed and native hygienic macros."
-SRC_URI="http://abrek.synthcode.com/${P}.tgz"
-HOMEPAGE="http://synthcode.com/scheme/"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boehm-gc"
-
-DEPEND="boehm-gc? ( dev-libs/boehm-gc )"
-RDEPEND="${DEPEND}"
-
-export EXTRA_EMAKE+="PREFIX=/usr $(use boehm-gc && echo SEXP_USE_BOEHM=1)"
-
-src_prepare() {
- # Upstream uses a D variable in its Makefile which conflicts with
- # the variable predifined by ebuild D="${PORTAGE_BUILDDIR}/image"
- sed 's,\([^[:alpha:]]\)D\([^[:alpha:]]\),\1chibiD\2,' -i Makefile \
- || die "sed Makefile failed"
-
- # Upstream calls ldconfig in the install target, which goes outside
- # of the ebuild Sandbox. We'll call ldconfig ourselves after merging
- # the package.
- sed '/ldconfig/d' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into the chibi-scheme executable
- sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into the chibi-scheme executable
- sed 's/$(CC) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. -lchibi-scheme/& $(LDFLAGS)/' -i Makefile \
- || die "sed Makefile failed"
-
- # Set SONAME in libchibi-scheme.so
- sed '/^libchibi-scheme/{ n; s/$(CC) $(CLIBFLAGS) -o $@ $^ $(XLDFLAGS)/& -Wl,-soname,libchibi-scheme.so/}' -i Makefile \
- || die "sed Makefile failed"
-
- # Incorporate local system's LDFLAGS into Chibi's compiled modules
- sed 's/$(CC) $(CLIBFLAGS) $(XCPPFLAGS) $(XCFLAGS) -o $@ $< -L. $(XLIBS) -lchibi-scheme/& $(LDFLAGS)/' -i Makefile.libs \
- || die "sed Makefile.libs failed"
-
- # Force soname symlinks to be relative to installation directory
- sed 's/$(LN) -s -f /$(LN) -s -f -r /' -i Makefile \
- || die "sed Makefile failed"
-
-}
-
-# When the number of jobs > 1, the Makefile lets things get ahead of themselves
-# and sometimes later targets will fail because libchibi-scheme.so doesn't yet
-# exist.
-src_compile() {
- emake -j1
-}
-
-src_test() {
- LD_LIBRARY_PATH="${S}" emake test
-}
-
-src_install() {
- emake DESTDIR="${D}" ${EXTRA_EMAKE} install
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-11-29 19:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-01 3:46 [gentoo-commits] proj/lisp:master commit in: dev-scheme/chibi-scheme/ Erik Falor
-- strict thread matches above, loose matches on Subject: below --
2017-11-29 19:43 José María Alonso
2014-03-11 1:40 Erik Falor
2014-03-11 1:40 Erik Falor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox