public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2008-01-04  1:38 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-04  1:38 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/04 01:38:30

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  allow building without ocamlopt
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.8                  dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	12 May 2007 22:41:01 -0000	1.7
+++ ChangeLog	4 Jan 2008 01:38:29 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.7 2007/05/12 22:41:01 aballier Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.8 2008/01/04 01:38:29 aballier Exp $
+
+  04 Jan 2008; Alexis Ballier <aballier@gentoo.org> ounit-1.0.2.ebuild:
+  allow building without ocamlopt
 
 *ounit-1.0.2 (12 May 2007)
 



1.2                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ounit-1.0.2.ebuild	12 May 2007 22:41:01 -0000	1.1
+++ ounit-1.0.2.ebuild	4 Jan 2008 01:38:29 -0000	1.2
@@ -1,8 +1,10 @@
-# 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/ounit/ounit-1.0.2.ebuild,v 1.1 2007/05/12 22:41:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.2 2008/01/04 01:38:29 aballier Exp $
 
-inherit findlib
+inherit findlib eutils
+
+EAPI="1"
 
 DESCRIPTION="Unit testing framework for OCaml"
 HOMEPAGE="http://www.xs4all.nl/~mmzeeman/ocaml/"
@@ -11,10 +13,22 @@
 SLOT="0"
 KEYWORDS="~x86 ~ppc ~amd64"
 DEPEND="dev-lang/ocaml"
-IUSE=""
+IUSE="+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() {
-	emake all allopt || die "emake failed"
+	emake all || die "emake failed"
+	if use ocamlopt; then
+		emake allopt || die "failed to build native code"
+	fi
 }
 
 src_install() {



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2008-04-09 17:25 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-04-09 17:25 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/04/09 17:25:58

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  Stable on ppc wrt bug #216987
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.9                  dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	4 Jan 2008 01:38:29 -0000	1.8
+++ ChangeLog	9 Apr 2008 17:25:58 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.8 2008/01/04 01:38:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.9 2008/04/09 17:25:58 nixnut Exp $
+
+  09 Apr 2008; nixnut <nixnut@gentoo.org> ounit-1.0.2.ebuild:
+  Stable on ppc wrt bug #216987
 
   04 Jan 2008; Alexis Ballier <aballier@gentoo.org> ounit-1.0.2.ebuild:
   allow building without ocamlopt



1.3                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ounit-1.0.2.ebuild	4 Jan 2008 01:38:29 -0000	1.2
+++ ounit-1.0.2.ebuild	9 Apr 2008 17:25:58 -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/ounit/ounit-1.0.2.ebuild,v 1.2 2008/01/04 01:38:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.3 2008/04/09 17:25:58 nixnut Exp $
 
 inherit findlib eutils
 
@@ -11,7 +11,7 @@
 SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64"
+KEYWORDS="~amd64 ppc ~x86"
 DEPEND="dev-lang/ocaml"
 IUSE="+ocamlopt"
 



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



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2008-04-10 18:57 Santiago M. Mola (coldwind)
  0 siblings, 0 replies; 7+ messages in thread
From: Santiago M. Mola (coldwind) @ 2008-04-10 18:57 UTC (permalink / raw
  To: gentoo-commits

coldwind    08/04/10 18:57:10

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  amd64 stable wrt bug #216987
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.10                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	9 Apr 2008 17:25:58 -0000	1.9
+++ ChangeLog	10 Apr 2008 18:57:10 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.9 2008/04/09 17:25:58 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.10 2008/04/10 18:57:10 coldwind Exp $
+
+  10 Apr 2008; Santiago M. Mola <coldwind@gentoo.org> ounit-1.0.2.ebuild:
+  amd64 stable wrt bug #216987
 
   09 Apr 2008; nixnut <nixnut@gentoo.org> ounit-1.0.2.ebuild:
   Stable on ppc wrt bug #216987



1.4                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ounit-1.0.2.ebuild	9 Apr 2008 17:25:58 -0000	1.3
+++ ounit-1.0.2.ebuild	10 Apr 2008 18:57:10 -0000	1.4
@@ -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/ounit/ounit-1.0.2.ebuild,v 1.3 2008/04/09 17:25:58 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.4 2008/04/10 18:57:10 coldwind Exp $
 
 inherit findlib eutils
 
@@ -11,7 +11,7 @@
 SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 DEPEND="dev-lang/ocaml"
 IUSE="+ocamlopt"
 



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



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2008-04-11 22:02 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2008-04-11 22:02 UTC (permalink / raw
  To: gentoo-commits

maekke      08/04/11 22:02:25

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  x86 stable, bug #216987
  (Portage version: 2.1.5_rc2)

Revision  Changes    Path
1.11                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	10 Apr 2008 18:57:10 -0000	1.10
+++ ChangeLog	11 Apr 2008 22:02:25 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.10 2008/04/10 18:57:10 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.11 2008/04/11 22:02:25 maekke Exp $
+
+  11 Apr 2008; Markus Meier <maekke@gentoo.org> ounit-1.0.2.ebuild:
+  x86 stable, bug #216987
 
   10 Apr 2008; Santiago M. Mola <coldwind@gentoo.org> ounit-1.0.2.ebuild:
   amd64 stable wrt bug #216987



1.5                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ounit-1.0.2.ebuild	10 Apr 2008 18:57:10 -0000	1.4
+++ ounit-1.0.2.ebuild	11 Apr 2008 22:02:25 -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/ounit/ounit-1.0.2.ebuild,v 1.4 2008/04/10 18:57:10 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.5 2008/04/11 22:02:25 maekke Exp $
 
 inherit findlib eutils
 
@@ -11,7 +11,7 @@
 SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 DEPEND="dev-lang/ocaml"
 IUSE="+ocamlopt"
 



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



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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2009-06-20 15:30 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2009-06-20 15:30 UTC (permalink / raw
  To: gentoo-commits

aballier    09/06/20 15:30:52

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  define eapi before inherit
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	13 Apr 2008 18:13:53 -0000	1.12
+++ ChangeLog	20 Jun 2009 15:30:52 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.12 2008/04/13 18:13:53 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.13 2009/06/20 15:30:52 aballier Exp $
+
+  20 Jun 2009; Alexis Ballier <aballier@gentoo.org> ounit-1.0.2.ebuild:
+  define eapi before inherit
 
   13 Apr 2008; Alexis Ballier <aballier@gentoo.org> -ounit-1.0.0.ebuild,
   -ounit-1.0.1.ebuild:



1.6                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ounit-1.0.2.ebuild	11 Apr 2008 22:02:25 -0000	1.5
+++ ounit-1.0.2.ebuild	20 Jun 2009 15:30:52 -0000	1.6
@@ -1,11 +1,11 @@
-# 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/ounit/ounit-1.0.2.ebuild,v 1.5 2008/04/11 22:02:25 maekke Exp $
-
-inherit findlib eutils
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.6 2009/06/20 15:30:52 aballier Exp $
 
 EAPI="1"
 
+inherit findlib eutils
+
 DESCRIPTION="Unit testing framework for OCaml"
 HOMEPAGE="http://www.xs4all.nl/~mmzeeman/ocaml/"
 SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz"






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2009-06-20 15:32 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2009-06-20 15:32 UTC (permalink / raw
  To: gentoo-commits

aballier    09/06/20 15:32:43

  Modified:             ChangeLog ounit-1.0.2.ebuild
  Log:
  explicitly assign rdepend
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	20 Jun 2009 15:30:52 -0000	1.13
+++ ChangeLog	20 Jun 2009 15:32:42 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.13 2009/06/20 15:30:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.14 2009/06/20 15:32:42 aballier Exp $
+
+  20 Jun 2009; Alexis Ballier <aballier@gentoo.org> ounit-1.0.2.ebuild:
+  explicitly assign rdepend
 
   20 Jun 2009; Alexis Ballier <aballier@gentoo.org> ounit-1.0.2.ebuild:
   define eapi before inherit



1.7                  dev-ml/ounit/ounit-1.0.2.ebuild

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

Index: ounit-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ounit-1.0.2.ebuild	20 Jun 2009 15:30:52 -0000	1.6
+++ ounit-1.0.2.ebuild	20 Jun 2009 15:32:42 -0000	1.7
@@ -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/ounit/ounit-1.0.2.ebuild,v 1.6 2009/06/20 15:30:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.0.2.ebuild,v 1.7 2009/06/20 15:32:42 aballier Exp $
 
 EAPI="1"
 
@@ -13,6 +13,7 @@
 SLOT="0"
 KEYWORDS="amd64 ppc x86"
 DEPEND="dev-lang/ocaml"
+RDEPEND="${DEPEND}"
 IUSE="+ocamlopt"
 
 pkg_setup() {






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild
@ 2009-09-20 13:31 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2009-09-20 13:31 UTC (permalink / raw
  To: gentoo-commits

aballier    09/09/20 13:31:29

  Modified:             ChangeLog
  Removed:              ounit-1.0.2.ebuild
  Log:
  remove old
  (Portage version: 2.2_rc41/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	14 Aug 2009 17:51:53 -0000	1.17
+++ ChangeLog	20 Sep 2009 13:31:29 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.17 2009/08/14 17:51:53 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.18 2009/09/20 13:31:29 aballier Exp $
+
+  20 Sep 2009; Alexis Ballier <aballier@gentoo.org> -ounit-1.0.2.ebuild:
+  remove old
 
   14 Aug 2009; Markus Meier <maekke@gentoo.org> ounit-1.0.3.ebuild:
   amd64/x86 stable, bug #280416






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

end of thread, other threads:[~2009-09-20 13:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-11 22:02 [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ChangeLog ounit-1.0.2.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-20 13:31 Alexis Ballier (aballier)
2009-06-20 15:32 Alexis Ballier (aballier)
2009-06-20 15:30 Alexis Ballier (aballier)
2008-04-10 18:57 Santiago M. Mola (coldwind)
2008-04-09 17:25 Gysbert Wassenaar (nixnut)
2008-01-04  1:38 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