* [gentoo-commits] gentoo-x86 commit in dev-ml/pomap: ChangeLog pomap-2.9.8.ebuild
@ 2008-01-04 1:51 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-04 1:51 UTC (permalink / raw
To: gentoo-commits
aballier 08/01/04 01:51:12
Modified: ChangeLog
Added: pomap-2.9.8.ebuild
Log:
version bump, allow to build without ocamlopt
(Portage version: 2.1.4_rc14)
Revision Changes Path
1.13 dev-ml/pomap/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?r1=1.12&r2=1.13
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog 9 Feb 2007 07:37:36 -0000 1.12
+++ ChangeLog 4 Jan 2008 01:51:11 -0000 1.13
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/pomap
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.12 2007/02/09 07:37:36 flameeyes Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.13 2008/01/04 01:51:11 aballier Exp $
+
+*pomap-2.9.8 (04 Jan 2008)
+
+ 04 Jan 2008; Alexis Ballier <aballier@gentoo.org> +pomap-2.9.8.ebuild:
+ version bump, allow to build without ocamlopt
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
1.1 dev-ml/pomap/pomap-2.9.8.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild?rev=1.1&content-type=text/plain
Index: pomap-2.9.8.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild,v 1.1 2008/01/04 01:51:11 aballier Exp $
inherit findlib eutils
EAPI="1"
DESCRIPTION="Partially Ordered Map ADT for O'Caml"
HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
LICENSE="LGPL-2.1"
DEPEND=">=dev-lang/ocaml-3.06"
SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="examples +ocamlopt"
pkg_setup() {
if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
eerror "In order to build ${PN} 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
}
src_compile() {
cd "${S}/lib"
emake -j1 byte-code-library || die "failed to build byte code library"
if use ocamlopt; then
emake -j1 native-code-library || die "failed to built nativde code library"
fi
}
src_install () {
use ocamlopt || export OCAMLFIND_INSTFLAGS="-optional"
findlib_src_install
# install documentation
dodoc README VERSION Changes
#install examples
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/pomap: ChangeLog pomap-2.9.8.ebuild
@ 2009-06-21 12:51 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2009-06-21 12:51 UTC (permalink / raw
To: gentoo-commits
aballier 09/06/21 12:51:47
Modified: ChangeLog pomap-2.9.8.ebuild
Log:
define eapi before inherit and assign rdepend explicitly
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.17 dev-ml/pomap/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?r1=1.16&r2=1.17
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog 13 Apr 2008 18:15:26 -0000 1.16
+++ ChangeLog 21 Jun 2009 12:51:47 -0000 1.17
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pomap
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.16 2008/04/13 18:15:26 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.17 2009/06/21 12:51:47 aballier Exp $
+
+ 21 Jun 2009; Alexis Ballier <aballier@gentoo.org> pomap-2.9.8.ebuild:
+ define eapi before inherit and assign rdepend explicitly
13 Apr 2008; Alexis Ballier <aballier@gentoo.org> -pomap-2.9.4.ebuild:
remove old
1.4 dev-ml/pomap/pomap-2.9.8.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild?r1=1.3&r2=1.4
Index: pomap-2.9.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pomap-2.9.8.ebuild 12 Apr 2008 20:11:38 -0000 1.3
+++ pomap-2.9.8.ebuild 21 Jun 2009 12:51:47 -0000 1.4
@@ -1,15 +1,16 @@
-# 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/pomap/pomap-2.9.8.ebuild,v 1.3 2008/04/12 20:11:38 dertobi123 Exp $
-
-inherit findlib eutils
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/pomap-2.9.8.ebuild,v 1.4 2009/06/21 12:51:47 aballier Exp $
EAPI="1"
+inherit findlib eutils
+
DESCRIPTION="Partially Ordered Map ADT for O'Caml"
HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
LICENSE="LGPL-2.1"
-DEPEND=">=dev-lang/ocaml-3.06"
+RDEPEND=">=dev-lang/ocaml-3.06"
+DEPEND="${RDEPEND}"
SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2"
SLOT="0"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/pomap: ChangeLog pomap-2.9.8.ebuild
@ 2009-09-28 16:24 Petteri Raty (betelgeuse)
0 siblings, 0 replies; 3+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:24 UTC (permalink / raw
To: gentoo-commits
betelgeuse 09/09/28 16:24:07
Modified: ChangeLog
Removed: pomap-2.9.8.ebuild
Log:
Remove old version using built_with_use.
(Portage version: 2.2_rc40/cvs/Linux i686)
Revision Changes Path
1.21 dev-ml/pomap/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pomap/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 14 Aug 2009 17:54:32 -0000 1.20
+++ ChangeLog 28 Sep 2009 16:24:07 -0000 1.21
@@ -1,6 +1,9 @@
# ChangeLog for dev-ml/pomap
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.20 2009/08/14 17:54:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/pomap/ChangeLog,v 1.21 2009/09/28 16:24:07 betelgeuse Exp $
+
+ 28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> -pomap-2.9.8.ebuild:
+ Remove old version using built_with_use.
14 Aug 2009; Markus Meier <maekke@gentoo.org> pomap-2.9.9.ebuild:
amd64/x86 stable, bug #280417
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-09-28 16:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-28 16:24 [gentoo-commits] gentoo-x86 commit in dev-ml/pomap: ChangeLog pomap-2.9.8.ebuild Petteri Raty (betelgeuse)
-- strict thread matches above, loose matches on Subject: below --
2009-06-21 12:51 Alexis Ballier (aballier)
2008-01-04 1:51 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