* [gentoo-commits] gentoo-x86 commit in dev-ml/camlidl: ChangeLog camlidl-1.05.ebuild
@ 2009-04-15 4:55 Alexis Ballier (aballier)
0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2009-04-15 4:55 UTC (permalink / raw
To: gentoo-commits
aballier 09/04/15 04:55:39
Modified: ChangeLog camlidl-1.05.ebuild
Log:
Fix tests build and implicit declarations of functions for bug #263305
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Revision Changes Path
1.4 dev-ml/camlidl/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 3 Jan 2008 19:33:58 -0000 1.3
+++ ChangeLog 15 Apr 2009 04:55:39 -0000 1.4
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/camlidl
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.3 2008/01/03 19:33:58 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.4 2009/04/15 04:55:39 aballier Exp $
+
+ 15 Apr 2009; Alexis Ballier <aballier@gentoo.org> +files/includes.patch,
+ +files/tests.patch, camlidl-1.05.ebuild:
+ Fix tests build and implicit declarations of functions for bug #263305
03 Jan 2008; Alexis Ballier <aballier@gentoo.org> camlidl-1.05.ebuild:
ocamlopt is required here, there is no option to disable it
1.3 dev-ml/camlidl/camlidl-1.05.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?r1=1.2&r2=1.3
Index: camlidl-1.05.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- camlidl-1.05.ebuild 3 Jan 2008 19:33:58 -0000 1.2
+++ camlidl-1.05.ebuild 15 Apr 2009 04:55:39 -0000 1.3
@@ -1,8 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.2 2008/01/03 19:33:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.3 2009/04/15 04:55:39 aballier Exp $
-inherit eutils
+inherit eutils toolchain-funcs
DESCRIPTION="CamlIDL is a stub code generator for using C/C++ libraries from O'Caml"
HOMEPAGE="http://caml.inria.fr/camlidl/"
@@ -22,6 +22,13 @@
fi
}
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}/tests.patch"
+ epatch "${FILESDIR}/includes.patch"
+}
+
src_compile() {
# Use the UNIX makefile
libdir=`ocamlc -where`
@@ -36,7 +43,7 @@
src_test() {
einfo "Running tests..."
cd tests
- ( make CCPP=g++ && einfo "Tests finished successfully" ) || die "Tests failed"
+ ( emake CCPP="$(tc-getCXX)" && einfo "Tests finished successfully" ) || die "Tests failed"
}
src_install() {
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/camlidl: ChangeLog camlidl-1.05.ebuild
@ 2009-09-28 16:45 Petteri Raty (betelgeuse)
0 siblings, 0 replies; 4+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:45 UTC (permalink / raw
To: gentoo-commits
betelgeuse 09/09/28 16:45:42
Modified: ChangeLog camlidl-1.05.ebuild
Log:
Migrate to EAPI 2 in order to nuke built_with_use.
(Portage version: 2.2_rc40/cvs/Linux i686)
Revision Changes Path
1.5 dev-ml/camlidl/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 15 Apr 2009 04:55:39 -0000 1.4
+++ ChangeLog 28 Sep 2009 16:45:42 -0000 1.5
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlidl
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.4 2009/04/15 04:55:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.5 2009/09/28 16:45:42 betelgeuse Exp $
+
+ 28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> camlidl-1.05.ebuild:
+ Migrate to EAPI 2 in order to nuke built_with_use.
15 Apr 2009; Alexis Ballier <aballier@gentoo.org> +files/includes.patch,
+files/tests.patch, camlidl-1.05.ebuild:
1.4 dev-ml/camlidl/camlidl-1.05.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?r1=1.3&r2=1.4
Index: camlidl-1.05.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- camlidl-1.05.ebuild 15 Apr 2009 04:55:39 -0000 1.3
+++ camlidl-1.05.ebuild 28 Sep 2009 16:45:42 -0000 1.4
@@ -1,6 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.3 2009/04/15 04:55:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.4 2009/09/28 16:45:42 betelgeuse Exp $
+
+EAPI="2"
inherit eutils toolchain-funcs
@@ -11,20 +13,9 @@
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
-DEPEND=">=dev-lang/ocaml-3.07"
-
-pkg_setup() {
- if ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
- eerror "${PN} needs to be built with native code support from ocaml"
- eerror "You first need to have a native code ocaml compiler."
- eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
- die "Please install ocaml with ocamlopt useflag"
- fi
-}
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}/tests.patch"
epatch "${FILESDIR}/includes.patch"
}
@@ -54,5 +45,5 @@
emake BINDIR="${D}/usr/bin" OCAMLLIB="${D}${libdir}" install || die
# Documentation
- dodoc README Changes
+ dodoc README Changes || die
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/camlidl: ChangeLog camlidl-1.05.ebuild
@ 2010-02-25 18:56 Zac Medico (zmedico)
0 siblings, 0 replies; 4+ messages in thread
From: Zac Medico (zmedico) @ 2010-02-25 18:56 UTC (permalink / raw
To: gentoo-commits
zmedico 10/02/25 18:56:05
Modified: ChangeLog camlidl-1.05.ebuild
Log:
Bug #306677 - Fix invalid conditional USE dep.
(Portage version: 2.2_rc63_p15454/cvs/Linux i686)
Revision Changes Path
1.6 dev-ml/camlidl/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 28 Sep 2009 16:45:42 -0000 1.5
+++ ChangeLog 25 Feb 2010 18:56:05 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlidl
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.5 2009/09/28 16:45:42 betelgeuse Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.6 2010/02/25 18:56:05 zmedico Exp $
+
+ 25 Feb 2010; Zac Medico <zmedico@gentoo.org> camlidl-1.05.ebuild:
+ Bug #306677 - Fix invalid conditional USE dep.
28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> camlidl-1.05.ebuild:
Migrate to EAPI 2 in order to nuke built_with_use.
1.5 dev-ml/camlidl/camlidl-1.05.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild?r1=1.4&r2=1.5
Index: camlidl-1.05.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- camlidl-1.05.ebuild 28 Sep 2009 16:45:42 -0000 1.4
+++ camlidl-1.05.ebuild 25 Feb 2010 18:56:05 -0000 1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.4 2009/09/28 16:45:42 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/camlidl-1.05.ebuild,v 1.5 2010/02/25 18:56:05 zmedico Exp $
EAPI="2"
@@ -13,7 +13,7 @@
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt]"
src_prepare() {
epatch "${FILESDIR}/tests.patch"
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/camlidl: ChangeLog camlidl-1.05.ebuild
@ 2015-05-31 0:11 Manuel Rueger (mrueg)
0 siblings, 0 replies; 4+ messages in thread
From: Manuel Rueger (mrueg) @ 2015-05-31 0:11 UTC (permalink / raw
To: gentoo-commits
mrueg 15/05/31 00:11:49
Modified: ChangeLog
Removed: camlidl-1.05.ebuild
Log:
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path
1.9 dev-ml/camlidl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlidl/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlidl/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 15 Jan 2014 23:57:22 -0000 1.8
+++ ChangeLog 31 May 2015 00:11:49 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/camlidl
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.8 2014/01/15 23:57:22 bicatali Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlidl/ChangeLog,v 1.9 2015/05/31 00:11:49 mrueg Exp $
+
+ 31 May 2015; Manuel Rüger <mrueg@gentoo.org> -camlidl-1.05.ebuild:
+ Remove old.
15 Jan 2014; Sébastien Fabbro <bicatali@gentoo.org> camlidl-1.05-r1.ebuild:
Prefixified and keyworded amd64-linux, x86-linux
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-05-31 0:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-28 16:45 [gentoo-commits] gentoo-x86 commit in dev-ml/camlidl: ChangeLog camlidl-1.05.ebuild Petteri Raty (betelgeuse)
-- strict thread matches above, loose matches on Subject: below --
2015-05-31 0:11 Manuel Rueger (mrueg)
2010-02-25 18:56 Zac Medico (zmedico)
2009-04-15 4:55 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