public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlduce: ChangeLog ocamlduce-3.11.1.0.ebuild
@ 2009-09-18 21:43 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2009-09-18 21:43 UTC (permalink / raw
  To: gentoo-commits

aballier    09/09/18 21:43:45

  Modified:             ChangeLog
  Added:                ocamlduce-3.11.1.0.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 dev-ml/ocamlduce/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	20 Jun 2009 15:17:50 -0000	1.10
+++ ChangeLog	18 Sep 2009 21:43:45 -0000	1.11
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ml/ocamlduce
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.10 2009/06/20 15:17:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.11 2009/09/18 21:43:45 aballier Exp $
+
+*ocamlduce-3.11.1.0 (18 Sep 2009)
+
+  18 Sep 2009; Alexis Ballier <aballier@gentoo.org>
+  +ocamlduce-3.11.1.0.ebuild:
+  version bump
 
   20 Jun 2009; Alexis Ballier <aballier@gentoo.org> ocamlduce-3.10.2.ebuild:
   define eapi before inherit



1.1                  dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild?rev=1.1&content-type=text/plain

Index: ocamlduce-3.11.1.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild,v 1.1 2009/09/18 21:43:45 aballier Exp $

EAPI="2"

inherit versionator eutils toolchain-funcs flag-o-matic multilib

OCAML_VERSION=3.11.1
OCAML_TARBALL=ocaml-${OCAML_VERSION}.tar.bz2
OCAML_PATCHLEVEL=1
OCAML_GENTOO_PATCHES=ocaml-patches-${OCAML_PATCHLEVEL}.tar.bz2

DESCRIPTION="OCamlDuce is a merger between OCaml and CDuce"
HOMEPAGE="http://ocamlduce.forge.ocamlcore.org/"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/225/${P}.tar.gz
	ftp://ftp.inria.fr/INRIA/cristal/ocaml/ocaml-$(get_version_component_range 1-2 ${OCAML_VERSION})/${OCAML_TARBALL}
	mirror://gentoo/${OCAML_GENTOO_PATCHES}"

LICENSE="QPL-1.0 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="+ocamlopt"

DEPEND="~dev-lang/ocaml-${OCAML_VERSION}[ocamlopt?]
	>=dev-ml/findlib-1.1.2"

RDEPEND="${DEPEND}"

S=${WORKDIR}/${P}/ocaml-${OCAML_VERSION}

src_unpack() {
	unpack ${P}.tar.gz ${OCAML_GENTOO_PATCHES}
}

src_prepare() {
	cd "${WORKDIR}/${P}"
	emake OCAML_SOURCE="${DISTDIR}/${OCAML_TARBALL}" prepare || die "failed to prepare"
	cd "${S}"
	EPATCH_SUFFIX="patch" epatch "${WORKDIR}/patches"
}

src_configure() {
	RAW_LDFLAGS="$(raw-ldflags)" ./configure -prefix /usr \
		--bindir /usr/bin \
		--libdir /usr/$(get_libdir)/ocaml \
		--mandir /usr/share/man \
		-host "${CHOST}" \
		-cc "$(tc-getCC)" \
		-as "$(tc-getAS)" \
		-aspp "$(tc-getCC) -c" \
		--with-pthread || die "configure failed!"
}

src_compile() {
	if use ocamlopt; then
		emake -f Makefile.ocamlduce -j1 world.opt || die
	else
		emake -f Makefile.ocamlduce -j1 world || die
	fi
}

src_install() {
	emake -f Makefile.ocamlduce BINDIR="${D}/usr/bin" LIBDIR="${D}/usr/$(get_libdir)/ocaml" installbyte || die
	if use ocamlopt; then
		emake -f Makefile.ocamlduce BINDIR="${D}/usr/bin" LIBDIR="${D}/usr/$(get_libdir)/ocaml" installopt || die
	fi
	dosym /usr/$(get_libdir)/ocaml/${PN} /usr/$(get_libdir)/ocaml/site-packages/${PN}
	dodoc Changes README
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlduce: ChangeLog ocamlduce-3.11.1.0.ebuild
@ 2009-09-18 22:45 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2009-09-18 22:45 UTC (permalink / raw
  To: gentoo-commits

aballier    09/09/18 22:45:34

  Modified:             ChangeLog ocamlduce-3.11.1.0.ebuild
  Log:
  no need for the site-package symlink with findlib 1.2.4-r1
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 dev-ml/ocamlduce/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	18 Sep 2009 21:43:45 -0000	1.11
+++ ChangeLog	18 Sep 2009 22:45:34 -0000	1.12
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlduce
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.11 2009/09/18 21:43:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.12 2009/09/18 22:45:34 aballier Exp $
+
+  18 Sep 2009; Alexis Ballier <aballier@gentoo.org>
+  ocamlduce-3.11.1.0.ebuild:
+  no need for the site-package symlink with findlib 1.2.4-r1
 
 *ocamlduce-3.11.1.0 (18 Sep 2009)
 



1.2                  dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild

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

Index: ocamlduce-3.11.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ocamlduce-3.11.1.0.ebuild	18 Sep 2009 21:43:45 -0000	1.1
+++ ocamlduce-3.11.1.0.ebuild	18 Sep 2009 22:45:34 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild,v 1.1 2009/09/18 21:43:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ocamlduce-3.11.1.0.ebuild,v 1.2 2009/09/18 22:45:34 aballier Exp $
 
 EAPI="2"
 
@@ -23,7 +23,7 @@
 IUSE="+ocamlopt"
 
 DEPEND="~dev-lang/ocaml-${OCAML_VERSION}[ocamlopt?]
-	>=dev-ml/findlib-1.1.2"
+	>=dev-ml/findlib-1.2.4-r1"
 
 RDEPEND="${DEPEND}"
 
@@ -65,6 +65,5 @@
 	if use ocamlopt; then
 		emake -f Makefile.ocamlduce BINDIR="${D}/usr/bin" LIBDIR="${D}/usr/$(get_libdir)/ocaml" installopt || die
 	fi
-	dosym /usr/$(get_libdir)/ocaml/${PN} /usr/$(get_libdir)/ocaml/site-packages/${PN}
 	dodoc Changes README
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlduce: ChangeLog ocamlduce-3.11.1.0.ebuild
@ 2010-04-12  6:34 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2010-04-12  6:34 UTC (permalink / raw
  To: gentoo-commits

aballier    10/04/12 06:34:53

  Modified:             ChangeLog
  Removed:              ocamlduce-3.11.1.0.ebuild
  Log:
  remove old
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 dev-ml/ocamlduce/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlduce/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	9 Apr 2010 14:26:35 -0000	1.14
+++ ChangeLog	12 Apr 2010 06:34:53 -0000	1.15
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlduce
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.14 2010/04/09 14:26:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlduce/ChangeLog,v 1.15 2010/04/12 06:34:53 aballier Exp $
+
+  12 Apr 2010; Alexis Ballier <aballier@gentoo.org>
+  -ocamlduce-3.11.1.0.ebuild:
+  remove old
 
 *ocamlduce-3.11.2.0 (09 Apr 2010)
 






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

end of thread, other threads:[~2010-04-12  6:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-18 21:43 [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlduce: ChangeLog ocamlduce-3.11.1.0.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-18 22:45 Alexis Ballier (aballier)
2010-04-12  6:34 Alexis Ballier (aballier)

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