public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog
@ 2012-01-28 19:21 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2012-01-28 19:21 UTC (permalink / raw
  To: gentoo-commits

aballier    12/01/28 19:21:57

  Modified:             ChangeLog
  Added:                ounit-1.1.1.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.25                 dev-ml/ounit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	20 Jan 2011 19:43:18 -0000	1.24
+++ ChangeLog	28 Jan 2012 19:21:57 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/ounit
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.24 2011/01/20 19:43:18 aballier Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.25 2012/01/28 19:21:57 aballier Exp $
+
+*ounit-1.1.1 (28 Jan 2012)
+
+  28 Jan 2012; Alexis Ballier <aballier@gentoo.org> +ounit-1.1.1.ebuild:
+  version bump
 
   20 Jan 2011; Alexis Ballier <aballier@gentoo.org> -ounit-1.0.3.ebuild:
   remove old



1.1                  dev-ml/ounit/ounit-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild?rev=1.1&content-type=text/plain

Index: ounit-1.1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.1 2012/01/28 19:21:57 aballier Exp $

EAPI="2"

inherit findlib multilib

DESCRIPTION="Unit testing framework for OCaml"
HOMEPAGE="http://ounit.forge.ocamlcore.org/"
SRC_URI="http://forge.ocamlcore.org/frs/download.php/762/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
RDEPEND="${DEPEND}"
IUSE="debug doc +ocamlopt"

oasis_use_enable() {
	echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
}

src_configure() {
	chmod +x configure
	./configure --prefix usr \
		--libdir /usr/$(get_libdir) \
		--docdir /usr/share/doc/${PF}/html \
		--destdir "${D}" \
		$(oasis_use_enable debug debug) \
		$(oasis_use_enable ocamlopt is_native) \
		|| die
}

src_compile() {
	emake || die
	if use doc ; then
		emake doc || die
	fi
}

src_install() {
	findlib_src_install

	# install documentation
	dodoc README* AUTHORS* changelog || die
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog
@ 2012-03-27 21:06 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2012-03-27 21:06 UTC (permalink / raw
  To: gentoo-commits

aballier    12/03/27 21:06:32

  Modified:             ounit-1.1.1.ebuild ChangeLog
  Log:
  convert to oasis.eclass
  
  (Portage version: 2.2.0_alpha95/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ml/ounit/ounit-1.1.1.ebuild

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

Index: ounit-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ounit-1.1.1.ebuild	28 Jan 2012 19:21:57 -0000	1.1
+++ ounit-1.1.1.ebuild	27 Mar 2012 21:06:32 -0000	1.2
@@ -1,10 +1,12 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.1 2012/01/28 19:21:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.2 2012/03/27 21:06:32 aballier Exp $
 
-EAPI="2"
+EAPI="3"
 
-inherit findlib multilib
+OASIS_BUILD_DOCS=1
+
+inherit oasis
 
 DESCRIPTION="Unit testing framework for OCaml"
 HOMEPAGE="http://ounit.forge.ocamlcore.org/"
@@ -12,35 +14,8 @@
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
-DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
+DEPEND=""
 RDEPEND="${DEPEND}"
-IUSE="debug doc +ocamlopt"
-
-oasis_use_enable() {
-	echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
-}
-
-src_configure() {
-	chmod +x configure
-	./configure --prefix usr \
-		--libdir /usr/$(get_libdir) \
-		--docdir /usr/share/doc/${PF}/html \
-		--destdir "${D}" \
-		$(oasis_use_enable debug debug) \
-		$(oasis_use_enable ocamlopt is_native) \
-		|| die
-}
-
-src_compile() {
-	emake || die
-	if use doc ; then
-		emake doc || die
-	fi
-}
-
-src_install() {
-	findlib_src_install
+IUSE=""
 
-	# install documentation
-	dodoc README* AUTHORS* changelog || die
-}
+DOCS=( "README.txt" "AUTHORS.txt" "changelog" )



1.26                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	28 Jan 2012 19:21:57 -0000	1.25
+++ ChangeLog	27 Mar 2012 21:06:32 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.25 2012/01/28 19:21:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.26 2012/03/27 21:06:32 aballier Exp $
+
+  27 Mar 2012; Alexis Ballier <aballier@gentoo.org> ounit-1.1.1.ebuild:
+  convert to oasis.eclass
 
 *ounit-1.1.1 (28 Jan 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog
@ 2012-05-19 15:13 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-19 15:13 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/19 15:13:30

  Modified:             ounit-1.1.1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #416531
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-ml/ounit/ounit-1.1.1.ebuild

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

Index: ounit-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ounit-1.1.1.ebuild	27 Mar 2012 21:06:32 -0000	1.2
+++ ounit-1.1.1.ebuild	19 May 2012 15:13:30 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.2 2012/03/27 21:06:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.3 2012/05/19 15:13:30 ago Exp $
 
 EAPI="3"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://forge.ocamlcore.org/frs/download.php/762/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 DEPEND=""
 RDEPEND="${DEPEND}"
 IUSE=""



1.27                 dev-ml/ounit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	27 Mar 2012 21:06:32 -0000	1.26
+++ ChangeLog	19 May 2012 15:13:30 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.26 2012/03/27 21:06:32 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.27 2012/05/19 15:13:30 ago Exp $
+
+  19 May 2012; Agostino Sarubbo <ago@gentoo.org> ounit-1.1.1.ebuild:
+  Stable for amd64, wrt bug #416531
 
   27 Mar 2012; Alexis Ballier <aballier@gentoo.org> ounit-1.1.1.ebuild:
   convert to oasis.eclass






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog
@ 2012-05-22  5:55 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-05-22  5:55 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/05/22 05:55:45

  Modified:             ounit-1.1.1.ebuild ChangeLog
  Log:
  marked x86 per bug 416531
  
  (Portage version: 2.2.0_alpha107/cvs/Linux i686)

Revision  Changes    Path
1.4                  dev-ml/ounit/ounit-1.1.1.ebuild

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

Index: ounit-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ounit-1.1.1.ebuild	19 May 2012 15:13:30 -0000	1.3
+++ ounit-1.1.1.ebuild	22 May 2012 05:55:45 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.3 2012/05/19 15:13:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.4 2012/05/22 05:55:45 jdhore Exp $
 
 EAPI="3"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://forge.ocamlcore.org/frs/download.php/762/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 DEPEND=""
 RDEPEND="${DEPEND}"
 IUSE=""



1.28                 dev-ml/ounit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	19 May 2012 15:13:30 -0000	1.27
+++ ChangeLog	22 May 2012 05:55:45 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.27 2012/05/19 15:13:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.28 2012/05/22 05:55:45 jdhore Exp $
+
+  22 May 2012; Jeff Horelick <jdhore@gentoo.org> ounit-1.1.1.ebuild:
+  marked x86 per bug 416531
 
   19 May 2012; Agostino Sarubbo <ago@gentoo.org> ounit-1.1.1.ebuild:
   Stable for amd64, wrt bug #416531






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog
@ 2012-05-29 19:37 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-05-29 19:37 UTC (permalink / raw
  To: gentoo-commits

ranger      12/05/29 19:37:40

  Modified:             ounit-1.1.1.ebuild ChangeLog
  Log:
  Marking ounit-1.1.1 ppc for bug 416531
  
  (Portage version: 2.1.10.49/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  dev-ml/ounit/ounit-1.1.1.ebuild

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

Index: ounit-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ounit-1.1.1.ebuild	22 May 2012 05:55:45 -0000	1.4
+++ ounit-1.1.1.ebuild	29 May 2012 19:37:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.4 2012/05/22 05:55:45 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ounit-1.1.1.ebuild,v 1.5 2012/05/29 19:37:39 ranger Exp $
 
 EAPI="3"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://forge.ocamlcore.org/frs/download.php/762/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 DEPEND=""
 RDEPEND="${DEPEND}"
 IUSE=""



1.29                 dev-ml/ounit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ounit/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	22 May 2012 05:55:45 -0000	1.28
+++ ChangeLog	29 May 2012 19:37:39 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/ounit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.28 2012/05/22 05:55:45 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ounit/ChangeLog,v 1.29 2012/05/29 19:37:39 ranger Exp $
+
+  29 May 2012; Brent Baude <ranger@gentoo.org> ounit-1.1.1.ebuild:
+  Marking ounit-1.1.1 ppc for bug 416531
 
   22 May 2012; Jeff Horelick <jdhore@gentoo.org> ounit-1.1.1.ebuild:
   marked x86 per bug 416531






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

end of thread, other threads:[~2012-05-29 19:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-19 15:13 [gentoo-commits] gentoo-x86 commit in dev-ml/ounit: ounit-1.1.1.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-29 19:37 Brent Baude (ranger)
2012-05-22  5:55 Jeff Horelick (jdhore)
2012-03-27 21:06 Alexis Ballier (aballier)
2012-01-28 19:21 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