public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/mercury: ChangeLog mercury-0.13.1-r2.ebuild
@ 2008-08-21  7:01 Keri Harris (keri)
  0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2008-08-21  7:01 UTC (permalink / raw
  To: gentoo-commits

keri        08/08/21 07:01:56

  Modified:             ChangeLog
  Added:                mercury-0.13.1-r2.ebuild
  Log:
  Simplify bootstrap; mmc re-conf update; MCFLAGS fixups
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.84                 dev-lang/mercury/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	9 May 2008 07:28:40 -0000	1.83
+++ ChangeLog	21 Aug 2008 07:01:55 -0000	1.84
@@ -1,6 +1,14 @@
 # ChangeLog for dev-lang/mercury
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.83 2008/05/09 07:28:40 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.84 2008/08/21 07:01:55 keri Exp $
+
+*mercury-0.13.1-r2 (21 Aug 2008)
+
+  21 Aug 2008; <keri@gentoo.org> +files/mercury-0.13.1-mmake-params.patch,
+  +files/mercury-0.13.1-no-reconf.patch,
+  files/mercury-0.13.1-tests-workspace.patch, +mercury-0.13.1-r2.ebuild:
+  Simplify bootstrap; mmc re-conf update; MCFLAGS fixups. Closes #201828 and
+  #206144.
 
   09 May 2008; keri <keri@gentoo.org> mercury-0.12.2-r3.ebuild,
   mercury-0.12.2-r4.ebuild, mercury-0.13.1.ebuild, mercury-0.13.1-r1.ebuild:



1.1                  dev-lang/mercury/mercury-0.13.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.1&content-type=text/plain

Index: mercury-0.13.1-r2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.1 2008/08/21 07:01:55 keri Exp $

inherit eutils flag-o-matic

MY_P=${PN}-compiler-${PV}

DESCRIPTION="Mercury is a modern general-purpose logic/functional programming language"
HOMEPAGE="http://www.cs.mu.oz.au/research/mercury/index.html"
SRC_URI="ftp://ftp.mercury.cs.mu.oz.au/pub/mercury/mercury-compiler-0.13.1.tar.gz
	test? ( ftp://ftp.mercury.cs.mu.oz.au/pub/mercury/mercury-tests-0.13.1.tar.gz )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"

IUSE="debug minimal readline test threads"

DEPEND="readline? ( sys-libs/readline )"

S="${WORKDIR}"/${MY_P}
TESTDIR="${WORKDIR}"/${PN}-tests-${PV}

src_unpack() {
	unpack ${A}

	epatch "${FILESDIR}"/${P}-mmake-params.patch
	epatch "${FILESDIR}"/${P}-multilib.patch
	epatch "${FILESDIR}"/${P}-libgrades.patch
	epatch "${FILESDIR}"/${P}-docs.patch
	epatch "${FILESDIR}"/${P}-no-reconf.patch

	if use test; then
		epatch "${FILESDIR}"/${P}-tests-dir_test.patch
		epatch "${FILESDIR}"/${P}-tests-ho_and_type_spec_bug.patch
		epatch "${FILESDIR}"/${P}-tests-string_format.patch
		epatch "${FILESDIR}"/${P}-tests-workspace.patch
		sed -i -e "s:MDB_DOC:${S}/doc/mdb_doc:" "${TESTDIR}"/mdbrc
	fi
}

src_compile() {
	strip-flags

	local myconf
	myconf="--libdir=/usr/$(get_libdir) \
		--disable-gcc-back-end \
		--enable-aditi-back-end \
		--disable-deep-profiler \
		--disable-dotnet-grades \
		--disable-java-grades \
		--with-llds-base-grade=none \
		--with-default-grade=hlc.gc \
		$(use_enable debug debug-grades) \
		$(use_enable threads par-grades) \
		$(use_enable !minimal most-grades) \
		$(use_with readline) \
		PACKAGE_VERSION=${PV}"

	econf \
		${myconf} \
		|| die "econf failed"
	emake \
		EXTRA_MLFLAGS=--no-strip \
		|| die "emake failed"

	emake \
		MERCURY_COMPILER="${S}"/compiler/mercury_compile \
		libgrades || die "emake libgrades failed"
}

src_test() {
	TEST_GRADE=`scripts/ml --print-grade`
	if [ -d "${S}"/libgrades/${TEST_GRADE} ] ; then
		TWS="${S}"/libgrades/${TEST_GRADE}
		cp browser/mer_browser.init "${TWS}"/browser/
		cp mdbcomp/mer_mdbcomp.init "${TWS}"/mdbcomp/
		cp runtime/mer_rt.init "${TWS}"/runtime/
	else
		TWS="${S}"
	fi

	cd "${TESTDIR}"
	sed -i -e "s:@WORKSPACE@:${TWS}:" WS_FLAGS.ws

	PATH="${TWS}"/scripts:"${TWS}"/util:"${PATH}" \
	TERM="" \
	WORKSPACE="${TWS}" \
	MERCURY_COMPILER="${TWS}"/compiler/mercury_compile \
	MMAKE_DIR="${TWS}"/scripts \
	MERCURY_DEBUGGER_INIT="${TESTDIR}"/mdbrc \
	MERCURY_SUPPRESS_STACK_TRACE=yes \
	GRADE=${TEST_GRADE} \
	MERCURY_ALL_LOCAL_C_INCL_DIRS=" -I${TWS}/boehm_gc \
					-I${TWS}/boehm_gc/include \
					-I${TWS}/runtime \
					-I${TWS}/library \
					-I${TWS}/mdbcomp \
					-I${TWS}/browser \
					-I${TWS}/trace" \
		mmake || die "mmake test failed"
}

src_install() {
	emake \
		INSTALL_PREFIX="${D}" \
		INSTALL_MAN_DIR="${D}"/usr/share/man \
		INSTALL_INFO_DIR="${D}"/usr/share/info \
		INSTALL_HTML_DIR="${D}"/usr/share/doc/${PF}/html \
		install || die "make install failed"

	dodoc \
		BUGS HISTORY LIMITATIONS NEWS README README.Linux \
		README.Linux-Alpha README.Linux-m68k README.Linux-PPC \
		RELEASE_NOTES TODO VERSION WORK_IN_PROGRESS
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/mercury: ChangeLog mercury-0.13.1-r2.ebuild
@ 2008-09-23  6:17 Keri Harris (keri)
  0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2008-09-23  6:17 UTC (permalink / raw
  To: gentoo-commits

keri        08/09/23 06:17:36

  Modified:             ChangeLog mercury-0.13.1-r2.ebuild
  Log:
  Rebuild mslice C files when bootstrap grade != best grade for mcc
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.85                 dev-lang/mercury/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	21 Aug 2008 07:01:55 -0000	1.84
+++ ChangeLog	23 Sep 2008 06:17:35 -0000	1.85
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/mercury
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.84 2008/08/21 07:01:55 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.85 2008/09/23 06:17:35 keri Exp $
+
+  23 Sep 2008; <keri@gentoo.org> +files/mercury-0.13.1-rebuild-mslice.patch,
+  mercury-0.13.1-r2.ebuild:
+  Rebuild mslice C files when bootstrap grade != best grade for mmc
 
 *mercury-0.13.1-r2 (21 Aug 2008)
 



1.2                  dev-lang/mercury/mercury-0.13.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?r1=1.1&r2=1.2

Index: mercury-0.13.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mercury-0.13.1-r2.ebuild	21 Aug 2008 07:01:55 -0000	1.1
+++ mercury-0.13.1-r2.ebuild	23 Sep 2008 06:17:35 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.1 2008/08/21 07:01:55 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.2 2008/09/23 06:17:35 keri Exp $
 
 inherit eutils flag-o-matic
 
@@ -30,6 +30,7 @@
 	epatch "${FILESDIR}"/${P}-libgrades.patch
 	epatch "${FILESDIR}"/${P}-docs.patch
 	epatch "${FILESDIR}"/${P}-no-reconf.patch
+	epatch "${FILESDIR}"/${P}-rebuild-mslice.patch
 
 	if use test; then
 		epatch "${FILESDIR}"/${P}-tests-dir_test.patch






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/mercury: ChangeLog mercury-0.13.1-r2.ebuild
@ 2008-11-29  7:24 Keri Harris (keri)
  0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2008-11-29  7:24 UTC (permalink / raw
  To: gentoo-commits

keri        08/11/29 07:24:30

  Modified:             ChangeLog mercury-0.13.1-r2.ebuild
  Log:
  Use libgrade MERCURY_CONFIG_DIR in src_test()
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.89                 dev-lang/mercury/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	28 Nov 2008 23:16:26 -0000	1.88
+++ ChangeLog	29 Nov 2008 07:24:30 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/mercury
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.88 2008/11/28 23:16:26 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.89 2008/11/29 07:24:30 keri Exp $
+
+  29 Nov 2008; <keri@gentoo.org> mercury-0.13.1-r2.ebuild:
+  Use libgrade MERCURY_CONFIG_DIR in src_test()
 
   28 Nov 2008; <keri@gentoo.org> files/mercury-0.13.1-mmake-params.patch:
   Bootstrap using GRADE=none.gc



1.5                  dev-lang/mercury/mercury-0.13.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?r1=1.4&r2=1.5

Index: mercury-0.13.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mercury-0.13.1-r2.ebuild	21 Nov 2008 22:51:21 -0000	1.4
+++ mercury-0.13.1-r2.ebuild	29 Nov 2008 07:24:30 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.4 2008/11/21 22:51:21 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.5 2008/11/29 07:24:30 keri Exp $
 
 inherit eutils flag-o-matic
 
@@ -91,6 +91,7 @@
 	TERM="" \
 	WORKSPACE="${TWS}" \
 	MERCURY_COMPILER="${TWS}"/compiler/mercury_compile \
+	MERCURY_CONFIG_DIR="${TWS}" \
 	MMAKE_DIR="${TWS}"/scripts \
 	MERCURY_DEBUGGER_INIT="${TESTDIR}"/mdbrc \
 	MERCURY_SUPPRESS_STACK_TRACE=yes \






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/mercury: ChangeLog mercury-0.13.1-r2.ebuild
@ 2008-11-29 23:45 Keri Harris (keri)
  0 siblings, 0 replies; 4+ messages in thread
From: Keri Harris (keri) @ 2008-11-29 23:45 UTC (permalink / raw
  To: gentoo-commits

keri        08/11/29 23:45:14

  Modified:             ChangeLog mercury-0.13.1-r2.ebuild
  Log:
  Remove redundant mdbrc patching
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.90                 dev-lang/mercury/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	29 Nov 2008 07:24:30 -0000	1.89
+++ ChangeLog	29 Nov 2008 23:45:14 -0000	1.90
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/mercury
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.89 2008/11/29 07:24:30 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/ChangeLog,v 1.90 2008/11/29 23:45:14 keri Exp $
+
+  29 Nov 2008; <keri@gentoo.org> mercury-0.13.1-r2.ebuild:
+  Remove redundant mdbrc patching
 
   29 Nov 2008; <keri@gentoo.org> mercury-0.13.1-r2.ebuild:
   Use libgrade MERCURY_CONFIG_DIR in src_test()



1.6                  dev-lang/mercury/mercury-0.13.1-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild?r1=1.5&r2=1.6

Index: mercury-0.13.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mercury-0.13.1-r2.ebuild	29 Nov 2008 07:24:30 -0000	1.5
+++ mercury-0.13.1-r2.ebuild	29 Nov 2008 23:45:14 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.5 2008/11/29 07:24:30 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury/mercury-0.13.1-r2.ebuild,v 1.6 2008/11/29 23:45:14 keri Exp $
 
 inherit eutils flag-o-matic
 
@@ -39,7 +39,6 @@
 		epatch "${FILESDIR}"/${P}-tests-ho_and_type_spec_bug.patch
 		epatch "${FILESDIR}"/${P}-tests-string_format.patch
 		epatch "${FILESDIR}"/${P}-tests-workspace.patch
-		sed -i -e "s:MDB_DOC:${S}/doc/mdb_doc:" "${TESTDIR}"/mdbrc
 	fi
 }
 






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

end of thread, other threads:[~2008-11-29 23:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-21  7:01 [gentoo-commits] gentoo-x86 commit in dev-lang/mercury: ChangeLog mercury-0.13.1-r2.ebuild Keri Harris (keri)
  -- strict thread matches above, loose matches on Subject: below --
2008-09-23  6:17 Keri Harris (keri)
2008-11-29  7:24 Keri Harris (keri)
2008-11-29 23:45 Keri Harris (keri)

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