public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-01-03 18:31 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-03 18:31 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/03 18:31:38

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  Allow to disable ocamlopt via an useflag
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.2                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

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

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ocamlnet-2.2.9-r1.ebuild	17 Dec 2007 18:00:58 -0000	1.1
+++ ocamlnet-2.2.9-r1.ebuild	3 Jan 2008 18:31:37 -0000	1.2
@@ -1,9 +1,11 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.1 2007/12/17 18:00:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.2 2008/01/03 18:31:37 aballier Exp $
 
 inherit eutils findlib
 
+EAPI="1"
+
 DESCRIPTION="Modules for OCaml application-level Internet protocols"
 HOMEPAGE="http://ocamlnet.sourceforge.net"
 SRC_URI="mirror://sourceforge/ocamlnet/${P}.tar.gz"
@@ -11,7 +13,7 @@
 LICENSE="as-is GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="gtk ssl tk httpd"
+IUSE="gtk ssl tk httpd +ocamlopt"
 
 # the auth-dh compile flag has been disabled as well, since it depends on
 # ocaml-cryptgps, which is not available.
@@ -30,6 +32,12 @@
 	if use tk && ! built_with_use 'dev-lang/ocaml' tk ;
 		 then die "If you want to enable tcl/tk, you need to rebuild dev-lang/ocaml with the 'tk' USE flag";
 	fi
+	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_unpack() {
@@ -65,9 +73,13 @@
 		$(ocamlnet_use_with httpd nethttpd) \
 		|| die "Error : econf failed!"
 
-	emake -j1 all opt || die "make failed"
+	emake -j1 all || die "make failed"
+	if use ocamlopt; then
+		emake -j1 opt || die "make failed"
+	fi
 }
 
 src_install() {
+	export STRIP_MASK="*/bin/*"
 	findlib_src_install
 }



1.26                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	31 Dec 2007 19:35:50 -0000	1.25
+++ ChangeLog	3 Jan 2008 18:31:37 -0000	1.26
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.25 2007/12/31 19:35:50 mabi Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.26 2008/01/03 18:31:37 aballier Exp $
+
+  03 Jan 2008; Alexis Ballier <aballier@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  Allow to disable ocamlopt via an useflag
 
   31 Dec 2007; Matti Bickel <mabi@gentoo.org> ocamlnet-2.2.8.1.ebuild:
   ppc stable (bug #195535)



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-01-18  8:54 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-18  8:54 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/18 08:54:54

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  restrict installsources, debugedit kills executables compiled with ocamlc -custom
  (Portage version: 2.1.4)

Revision  Changes    Path
1.3                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

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

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ocamlnet-2.2.9-r1.ebuild	3 Jan 2008 18:31:37 -0000	1.2
+++ ocamlnet-2.2.9-r1.ebuild	18 Jan 2008 08:54:54 -0000	1.3
@@ -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.2 2008/01/03 18:31:37 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.3 2008/01/18 08:54:54 aballier Exp $
 
 inherit eutils findlib
 
@@ -14,6 +14,7 @@
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="gtk ssl tk httpd +ocamlopt"
+RESTRICT="installsources"
 
 # the auth-dh compile flag has been disabled as well, since it depends on
 # ocaml-cryptgps, which is not available.



1.28                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	3 Jan 2008 18:34:26 -0000	1.27
+++ ChangeLog	18 Jan 2008 08:54:54 -0000	1.28
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.27 2008/01/03 18:34:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.28 2008/01/18 08:54:54 aballier Exp $
+
+  18 Jan 2008; Alexis Ballier <aballier@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  restrict installsources, debugedit kills executables compiled with ocamlc
+  -custom
 
   03 Jan 2008; Alexis Ballier <aballier@gentoo.org> -ocamlnet-0.98.ebuild,
   -ocamlnet-2.2.9.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-04-10 22:03 Santiago M. Mola (coldwind)
  0 siblings, 0 replies; 8+ messages in thread
From: Santiago M. Mola (coldwind) @ 2008-04-10 22:03 UTC (permalink / raw
  To: gentoo-commits

coldwind    08/04/10 22:03:28

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #216779
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.5                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

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

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ocamlnet-2.2.9-r1.ebuild	3 Feb 2008 14:33:39 -0000	1.4
+++ ocamlnet-2.2.9-r1.ebuild	10 Apr 2008 22:03:28 -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.4 2008/02/03 14:33:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.5 2008/04/10 22:03:28 coldwind Exp $
 
 inherit eutils findlib
 
@@ -12,7 +12,7 @@
 
 LICENSE="as-is GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="gtk ssl tk httpd +ocamlopt"
 RESTRICT="installsources"
 



1.30                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	3 Feb 2008 14:33:39 -0000	1.29
+++ ChangeLog	10 Apr 2008 22:03:28 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.29 2008/02/03 14:33:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.30 2008/04/10 22:03:28 coldwind Exp $
+
+  10 Apr 2008; Santiago M. Mola <coldwind@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  amd64 stable wrt bug #216779
 
   03 Feb 2008; Alexis Ballier <aballier@gentoo.org> ocamlnet-2.2.8.1.ebuild,
   ocamlnet-2.2.9-r1.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-04-12 11:08 Dawid Weglinski (cla)
  0 siblings, 0 replies; 8+ messages in thread
From: Dawid Weglinski (cla) @ 2008-04-12 11:08 UTC (permalink / raw
  To: gentoo-commits

cla         08/04/12 11:08:49

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  Stable on x86 wrt bug #216779
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.6                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

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

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ocamlnet-2.2.9-r1.ebuild	10 Apr 2008 22:03:28 -0000	1.5
+++ ocamlnet-2.2.9-r1.ebuild	12 Apr 2008 11:08:49 -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.5 2008/04/10 22:03:28 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.6 2008/04/12 11:08:49 cla Exp $
 
 inherit eutils findlib
 
@@ -12,7 +12,7 @@
 
 LICENSE="as-is GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="gtk ssl tk httpd +ocamlopt"
 RESTRICT="installsources"
 



1.31                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	10 Apr 2008 22:03:28 -0000	1.30
+++ ChangeLog	12 Apr 2008 11:08:49 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.30 2008/04/10 22:03:28 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.31 2008/04/12 11:08:49 cla Exp $
+
+  12 Apr 2008; Dawid Węgliński <cla@gentoo.org> ocamlnet-2.2.9-r1.ebuild:
+  Stable on x86 (bug #216779)
 
   10 Apr 2008; Santiago M. Mola <coldwind@gentoo.org>
   ocamlnet-2.2.9-r1.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-04-12 19:48 Tobias Scherbaum (dertobi123)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Scherbaum (dertobi123) @ 2008-04-12 19:48 UTC (permalink / raw
  To: gentoo-commits

dertobi123    08/04/12 19:48:30

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  ppc stable, bug #216779
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.7                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?r1=1.6&r2=1.7

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ocamlnet-2.2.9-r1.ebuild	12 Apr 2008 11:08:49 -0000	1.6
+++ ocamlnet-2.2.9-r1.ebuild	12 Apr 2008 19:48:30 -0000	1.7
@@ -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.6 2008/04/12 11:08:49 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.7 2008/04/12 19:48:30 dertobi123 Exp $
 
 inherit eutils findlib
 
@@ -12,7 +12,7 @@
 
 LICENSE="as-is GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="gtk ssl tk httpd +ocamlopt"
 RESTRICT="installsources"
 



1.32                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	12 Apr 2008 11:08:49 -0000	1.31
+++ ChangeLog	12 Apr 2008 19:48:30 -0000	1.32
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.31 2008/04/12 11:08:49 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.32 2008/04/12 19:48:30 dertobi123 Exp $
+
+  12 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  ppc stable, bug #216779
 
   12 Apr 2008; Dawid Węgliński <cla@gentoo.org> ocamlnet-2.2.9-r1.ebuild:
   Stable on x86 (bug #216779)



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-05-12  7:04 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2008-05-12  7:04 UTC (permalink / raw
  To: gentoo-commits

aballier    08/05/12 07:04:40

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  update homepage
  (Portage version: 2.1.5_rc10)

Revision  Changes    Path
1.8                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?r1=1.7&r2=1.8

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ocamlnet-2.2.9-r1.ebuild	12 Apr 2008 19:48:30 -0000	1.7
+++ ocamlnet-2.2.9-r1.ebuild	12 May 2008 07:04:40 -0000	1.8
@@ -1,13 +1,13 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.7 2008/04/12 19:48:30 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.8 2008/05/12 07:04:40 aballier Exp $
 
 inherit eutils findlib
 
 EAPI="1"
 
 DESCRIPTION="Modules for OCaml application-level Internet protocols"
-HOMEPAGE="http://ocamlnet.sourceforge.net"
+HOMEPAGE="http://projects.camlcity.org/projects/ocamlnet.html"
 SRC_URI="mirror://sourceforge/ocamlnet/${P}.tar.gz"
 
 LICENSE="as-is GPL-2"



1.34                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	13 Apr 2008 18:18:32 -0000	1.33
+++ ChangeLog	12 May 2008 07:04:40 -0000	1.34
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.33 2008/04/13 18:18:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.34 2008/05/12 07:04:40 aballier Exp $
+
+  12 May 2008; Alexis Ballier <aballier@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  update homepage
 
   13 Apr 2008; Alexis Ballier <aballier@gentoo.org>
   -ocamlnet-2.2.8.1.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-06-19  6:56 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2008-06-19  6:56 UTC (permalink / raw
  To: gentoo-commits

aballier    08/06/19 06:56:02

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  Fix build with glibc 2.8, bug #227653
  (Portage version: 2.1.5.6)

Revision  Changes    Path
1.9                  dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild?r1=1.8&r2=1.9

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ocamlnet-2.2.9-r1.ebuild	12 May 2008 07:04:40 -0000	1.8
+++ ocamlnet-2.2.9-r1.ebuild	19 Jun 2008 06:56:01 -0000	1.9
@@ -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.8 2008/05/12 07:04:40 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.9 2008/06/19 06:56:01 aballier Exp $
 
 inherit eutils findlib
 
@@ -43,6 +43,7 @@
 	cd "${S}"
 
 	epatch "${FILESDIR}/build_w_camlp5.dpatch"
+	epatch "${FILESDIR}/${P}-glibc28.patch"
 }
 
 ocamlnet_use_with() {



1.35                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	12 May 2008 07:04:40 -0000	1.34
+++ ChangeLog	19 Jun 2008 06:56:01 -0000	1.35
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.34 2008/05/12 07:04:40 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.35 2008/06/19 06:56:01 aballier Exp $
+
+  19 Jun 2008; Alexis Ballier <aballier@gentoo.org>
+  +files/ocamlnet-2.2.9-glibc28.patch, ocamlnet-2.2.9-r1.ebuild:
+  Fix build with glibc 2.8, bug #227653
 
   12 May 2008; Alexis Ballier <aballier@gentoo.org>
   ocamlnet-2.2.9-r1.ebuild:



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog
@ 2008-09-25 12:20 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2008-09-25 12:20 UTC (permalink / raw
  To: gentoo-commits

aballier    08/09/25 12:20:25

  Modified:             ocamlnet-2.2.9-r1.ebuild ChangeLog
  Log:
  keyword ~x86-fbsd
  (Portage version: 2.2_rc9/cvs/Linux 2.6.26.5 x86_64)

Revision  Changes    Path
1.10                 dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild

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

Index: ocamlnet-2.2.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ocamlnet-2.2.9-r1.ebuild	19 Jun 2008 06:56:01 -0000	1.9
+++ ocamlnet-2.2.9-r1.ebuild	25 Sep 2008 12:20:24 -0000	1.10
@@ -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-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.9 2008/06/19 06:56:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ocamlnet-2.2.9-r1.ebuild,v 1.10 2008/09/25 12:20:24 aballier Exp $
 
 inherit eutils findlib
 
@@ -12,7 +12,7 @@
 
 LICENSE="as-is GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 IUSE="gtk ssl tk httpd +ocamlopt"
 RESTRICT="installsources"
 



1.37                 dev-ml/ocamlnet/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	31 Jul 2008 13:31:04 -0000	1.36
+++ ChangeLog	25 Sep 2008 12:20:24 -0000	1.37
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ml/ocamlnet
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.36 2008/07/31 13:31:04 pchrist Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlnet/ChangeLog,v 1.37 2008/09/25 12:20:24 aballier Exp $
+
+  25 Sep 2008; Alexis Ballier <aballier@gentoo.org>
+  ocamlnet-2.2.9-r1.ebuild:
+  keyword ~x86-fbsd
 
   31 Jul 2008; Panagiotis Christopoulos <pchrist@gentoo.org> metadata.xml:
   Update metadata.xml to include USE flag descriptions. Entries taken from






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

end of thread, other threads:[~2008-09-25 12:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-25 12:20 [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlnet: ocamlnet-2.2.9-r1.ebuild ChangeLog Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2008-06-19  6:56 Alexis Ballier (aballier)
2008-05-12  7:04 Alexis Ballier (aballier)
2008-04-12 19:48 Tobias Scherbaum (dertobi123)
2008-04-12 11:08 Dawid Weglinski (cla)
2008-04-10 22:03 Santiago M. Mola (coldwind)
2008-01-18  8:54 Alexis Ballier (aballier)
2008-01-03 18:31 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