* [gentoo-commits] gentoo-x86 commit in dev-ml/ocaml-mysql: ChangeLog ocaml-mysql-1.0.4.ebuild
@ 2008-01-03 23:24 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-03 23:24 UTC (permalink / raw
To: gentoo-commits
aballier 08/01/03 23:24:17
Modified: ChangeLog
Added: ocaml-mysql-1.0.4.ebuild
Log:
version bump, make ocamlopt optional, ~amd64
(Portage version: 2.1.4_rc14)
Revision Changes Path
1.6 dev-ml/ocaml-mysql/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 23 Nov 2006 17:14:59 -0000 1.5
+++ ChangeLog 3 Jan 2008 23:24:17 -0000 1.6
@@ -1,6 +1,12 @@
# ChangeLog for dev-ml/ocaml-mysql
-# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.5 2006/11/23 17:14:59 vivo Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.6 2008/01/03 23:24:17 aballier Exp $
+
+*ocaml-mysql-1.0.4 (03 Jan 2008)
+
+ 03 Jan 2008; Alexis Ballier <aballier@gentoo.org>
+ +ocaml-mysql-1.0.4.ebuild:
+ version bump, make ocamlopt optional, ~amd64
23 Nov 2006; Francesco Riosa <vivo@gentoo.org>
ocaml-mysql-1.0.3-r1.ebuild:
1.1 dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild?rev=1.1&content-type=text/plain
Index: ocaml-mysql-1.0.4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild,v 1.1 2008/01/03 23:24:17 aballier Exp $
inherit findlib eutils
EAPI="1"
IUSE="doc +ocamlopt"
DESCRIPTION="A package for ocaml that provides access to mysql databases."
SRC_URI="http://raevnos.pennmush.org/code/${PN}/${P}.tar.gz"
HOMEPAGE="http://raevnos.pennmush.org/code/ocaml-mysql/index.html"
DEPEND=">=dev-lang/ocaml-3.06
>=virtual/mysql-4.0"
RDEPEND="$DEPEND"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-1.0.3-head.patch"
epatch "${FILESDIR}/${PN}-1.0.3-shtool-r1.patch"
}
src_compile()
{
econf
emake all || die "make failed"
if use ocamlopt; then
emake opt || die "make opt failed"
fi
}
src_install()
{
findlib_src_preinst
emake install || die "make install failed"
use doc && dohtml -r doc/html/*
dodoc CHANGES README VERSION
}
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/ocaml-mysql: ChangeLog ocaml-mysql-1.0.4.ebuild
@ 2009-09-28 16:54 Petteri Raty (betelgeuse)
0 siblings, 0 replies; 3+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:54 UTC (permalink / raw
To: gentoo-commits
betelgeuse 09/09/28 16:54:47
Modified: ChangeLog ocaml-mysql-1.0.4.ebuild
Log:
Migrate to EAPI 2 in order to nuke built_with_use.
(Portage version: 2.2_rc40/cvs/Linux i686)
Revision Changes Path
1.10 dev-ml/ocaml-mysql/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 20 Apr 2008 14:24:21 -0000 1.9
+++ ChangeLog 28 Sep 2009 16:54:47 -0000 1.10
@@ -1,6 +1,10 @@
# ChangeLog for dev-ml/ocaml-mysql
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.9 2008/04/20 14:24:21 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.10 2009/09/28 16:54:47 betelgeuse Exp $
+
+ 28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
+ ocaml-mysql-1.0.4.ebuild:
+ Migrate to EAPI 2 in order to nuke built_with_use.
20 Apr 2008; Alexis Ballier <aballier@gentoo.org>
-files/ocaml-mysql-1.0.3-shtool.patch, -ocaml-mysql-1.0.3-r1.ebuild:
1.4 dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild?r1=1.3&r2=1.4
Index: ocaml-mysql-1.0.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ocaml-mysql-1.0.4.ebuild 20 Apr 2008 14:13:50 -0000 1.3
+++ ocaml-mysql-1.0.4.ebuild 28 Sep 2009 16:54:47 -0000 1.4
@@ -1,10 +1,10 @@
-# 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/ocaml-mysql/ocaml-mysql-1.0.4.ebuild,v 1.3 2008/04/20 14:13:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.0.4.ebuild,v 1.4 2009/09/28 16:54:47 betelgeuse Exp $
-inherit findlib eutils
+EAPI="2"
-EAPI="1"
+inherit findlib eutils
IUSE="doc +ocamlopt"
@@ -12,7 +12,7 @@
SRC_URI="http://raevnos.pennmush.org/code/${PN}/${P}.tar.gz"
HOMEPAGE="http://raevnos.pennmush.org/code/ocaml-mysql/index.html"
-DEPEND=">=dev-lang/ocaml-3.06
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
>=virtual/mysql-4.0"
RDEPEND="$DEPEND"
@@ -21,26 +21,13 @@
LICENSE="LGPL-2"
KEYWORDS="~amd64 ppc x86"
-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_unpack() {
- unpack ${A}
- cd "${S}"
-
+src_prepare() {
epatch "${FILESDIR}/${PN}-1.0.3-head.patch"
epatch "${FILESDIR}/${PN}-1.0.3-shtool-r1.patch"
}
src_compile()
{
- econf
emake all || die "make failed"
if use ocamlopt; then
emake opt || die "make opt failed"
@@ -53,5 +40,5 @@
emake install || die "make install failed"
use doc && dohtml -r doc/html/*
- dodoc CHANGES README VERSION
+ dodoc CHANGES README VERSION || die
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-ml/ocaml-mysql: ChangeLog ocaml-mysql-1.0.4.ebuild
@ 2015-05-31 0:13 Manuel Rueger (mrueg)
0 siblings, 0 replies; 3+ messages in thread
From: Manuel Rueger (mrueg) @ 2015-05-31 0:13 UTC (permalink / raw
To: gentoo-commits
mrueg 15/05/31 00:13:05
Modified: ChangeLog
Removed: ocaml-mysql-1.0.4.ebuild
Log:
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path
1.16 dev-ml/ocaml-mysql/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?r1=1.15&r2=1.16
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog 10 Aug 2014 20:43:03 -0000 1.15
+++ ChangeLog 31 May 2015 00:13:05 -0000 1.16
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/ocaml-mysql
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.15 2014/08/10 20:43:03 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.16 2015/05/31 00:13:05 mrueg Exp $
+
+ 31 May 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/ocaml-mysql-1.0.3-head.patch, -files/ocaml-mysql-1.0.3-shtool-r1.patch,
+ -ocaml-mysql-1.0.4.ebuild:
+ Remove old.
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> ocaml-mysql-1.0.4.ebuild,
ocaml-mysql-1.1.1.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-05-31 0:13 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:54 [gentoo-commits] gentoo-x86 commit in dev-ml/ocaml-mysql: ChangeLog ocaml-mysql-1.0.4.ebuild Petteri Raty (betelgeuse)
-- strict thread matches above, loose matches on Subject: below --
2015-05-31 0:13 Manuel Rueger (mrueg)
2008-01-03 23:24 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