public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/tyxml: tyxml-2.2.0.ebuild ChangeLog
@ 2013-01-13 19:50 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-13 19:50 UTC (permalink / raw
  To: gentoo-commits

aballier    13/01/13 19:50:06

  Modified:             ChangeLog
  Added:                tyxml-2.2.0.ebuild
  Log:
  version bump, bug #446726 by  Jacques-Pascal Deplaix
  
  (Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.6                  dev-ml/tyxml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	7 Aug 2012 16:38:14 -0000	1.5
+++ ChangeLog	13 Jan 2013 19:50:06 -0000	1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/tyxml
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.5 2012/08/07 16:38:14 aballier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.6 2013/01/13 19:50:06 aballier Exp $
+
+*tyxml-2.2.0 (13 Jan 2013)
+
+  13 Jan 2013; Alexis Ballier <aballier@gentoo.org> +tyxml-2.2.0.ebuild:
+  version bump, bug #446726 by Jacques-Pascal Deplaix
 
   07 Aug 2012; Alexis Ballier <aballier@gentoo.org> -tyxml-2.0.2.ebuild,
   -tyxml-2.1.ebuild:



1.1                  dev-ml/tyxml/tyxml-2.2.0.ebuild

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

Index: tyxml-2.2.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v 1.1 2013/01/13 19:50:06 aballier Exp $

EAPI=4

inherit eutils findlib

DESCRIPTION="A libary to build xml trees typechecked by OCaml"
HOMEPAGE="http://ocsigen.org/tyxml/"
SRC_URI="http://www.ocsigen.org/download/${P}.tar.gz"

LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc ocamlduce +ocamlopt"

DEPEND="
	>=dev-lang/ocaml-3.12[ocamlopt?]
	dev-ml/ocamlnet
	ocamlduce? ( dev-ml/ocamlduce )"
RDEPEND="${DEPEND}"

src_prepare() {
	export myopts="OCAMLDUCE=$(usex ocamlduce yes no)"
}

src_compile() {
	if use ocamlopt; then
		emake "$myopts"
	else
		emake "$myopts" byte
	fi
	use doc && emake doc "$myopts"
}

src_install() {
	findlib_src_preinst
	if use ocamlopt; then
		emake DESTIR="${D}" "$myopts" install
	else
		emake DESTIR="${D}" "$myopts" install-byte
	fi
	dodoc CHANGES README
	use doc && dohtml -r doc/api-html
}





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

* [gentoo-commits] gentoo-x86 commit in dev-ml/tyxml: tyxml-2.2.0.ebuild ChangeLog
@ 2013-07-23 16:42 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-23 16:42 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/23 16:42:00

  Modified:             tyxml-2.2.0.ebuild ChangeLog
  Log:
  eapi5, define subslot and add slot deps
  
  (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.2                  dev-ml/tyxml/tyxml-2.2.0.ebuild

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

Index: tyxml-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tyxml-2.2.0.ebuild	13 Jan 2013 19:50:06 -0000	1.1
+++ tyxml-2.2.0.ebuild	23 Jul 2013 16:42:00 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v 1.1 2013/01/13 19:50:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v 1.2 2013/07/23 16:42:00 aballier Exp $
 
-EAPI=4
+EAPI=5
 
 inherit eutils findlib
 
@@ -11,14 +11,14 @@
 SRC_URI="http://www.ocsigen.org/download/${P}.tar.gz"
 
 LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64"
 IUSE="doc ocamlduce +ocamlopt"
 
 DEPEND="
-	>=dev-lang/ocaml-3.12[ocamlopt?]
-	dev-ml/ocamlnet
-	ocamlduce? ( dev-ml/ocamlduce )"
+	>=dev-lang/ocaml-3.12:=[ocamlopt?]
+	dev-ml/ocamlnet:=
+	ocamlduce? ( dev-ml/ocamlduce:= )"
 RDEPEND="${DEPEND}"
 
 src_prepare() {



1.8                  dev-ml/tyxml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	23 Jul 2013 16:32:13 -0000	1.7
+++ ChangeLog	23 Jul 2013 16:42:00 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/tyxml
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.7 2013/07/23 16:32:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.8 2013/07/23 16:42:00 aballier Exp $
+
+  23 Jul 2013; Alexis Ballier <aballier@gentoo.org> tyxml-2.2.0.ebuild:
+  eapi5, define subslot and add slot deps
 
   23 Jul 2013; Alexis Ballier <aballier@gentoo.org> -tyxml-2.1-r1.ebuild:
   remove old





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

* [gentoo-commits] gentoo-x86 commit in dev-ml/tyxml: tyxml-2.2.0.ebuild ChangeLog
@ 2013-07-23 17:47 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-23 17:47 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/23 17:47:39

  Modified:             tyxml-2.2.0.ebuild ChangeLog
  Log:
  fix build with ocamlnet built without -compat-pcre since thats
  
  (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.3                  dev-ml/tyxml/tyxml-2.2.0.ebuild

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

Index: tyxml-2.2.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tyxml-2.2.0.ebuild	23 Jul 2013 16:42:00 -0000	1.2
+++ tyxml-2.2.0.ebuild	23 Jul 2013 17:47:39 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v 1.2 2013/07/23 16:42:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/tyxml-2.2.0.ebuild,v 1.3 2013/07/23 17:47:39 aballier Exp $
 
 EAPI=5
 
@@ -17,11 +17,12 @@
 
 DEPEND="
 	>=dev-lang/ocaml-3.12:=[ocamlopt?]
-	dev-ml/ocamlnet:=
+	>=dev-ml/ocamlnet-3.6:=[pcre]
 	ocamlduce? ( dev-ml/ocamlduce:= )"
 RDEPEND="${DEPEND}"
 
 src_prepare() {
+	epatch "${FILESDIR}/pcre.patch"
 	export myopts="OCAMLDUCE=$(usex ocamlduce yes no)"
 }
 



1.9                  dev-ml/tyxml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	23 Jul 2013 16:42:00 -0000	1.8
+++ ChangeLog	23 Jul 2013 17:47:39 -0000	1.9
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/tyxml
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.8 2013/07/23 16:42:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/tyxml/ChangeLog,v 1.9 2013/07/23 17:47:39 aballier Exp $
+
+  23 Jul 2013; Alexis Ballier <aballier@gentoo.org> tyxml-2.2.0.ebuild,
+  +files/pcre.patch:
+  fix build with ocamlnet built without -compat-pcre since thats what we ship.
+  Bug
 
   23 Jul 2013; Alexis Ballier <aballier@gentoo.org> tyxml-2.2.0.ebuild:
   eapi5, define subslot and add slot deps





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

end of thread, other threads:[~2013-07-23 17:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-23 16:42 [gentoo-commits] gentoo-x86 commit in dev-ml/tyxml: tyxml-2.2.0.ebuild ChangeLog Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-23 17:47 Alexis Ballier (aballier)
2013-01-13 19:50 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