public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/cryptokit: cryptokit-1.3.ebuild ChangeLog
@ 2008-01-02 20:07 Alexis Ballier (aballier)
  0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2008-01-02 20:07 UTC (permalink / raw
  To: gentoo-commits

aballier    08/01/02 20:07:28

  Modified:             cryptokit-1.3.ebuild ChangeLog
  Log:
  Add support to not build with ocamlopt
  (Portage version: 2.1.4_rc14)

Revision  Changes    Path
1.3                  dev-ml/cryptokit/cryptokit-1.3.ebuild

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

Index: cryptokit-1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cryptokit-1.3.ebuild	10 Nov 2007 15:42:28 -0000	1.2
+++ cryptokit-1.3.ebuild	2 Jan 2008 20:07:27 -0000	1.3
@@ -1,20 +1,31 @@
-# 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/cryptokit/cryptokit-1.3.ebuild,v 1.2 2007/11/10 15:42:28 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v 1.3 2008/01/02 20:07:27 aballier Exp $
 
 inherit eutils findlib
 
+EAPI="1"
+
 DESCRIPTION="Cryptographic primitives library for Objective Caml"
 HOMEPAGE="http://cristal.inria.fr/~xleroy/software.html"
 SRC_URI="http://caml.inria.fr/distrib/bazar-ocaml/${P}.tar.gz"
 LICENSE="LGPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="doc"
+IUSE="doc +ocamlopt"
 
 DEPEND=">=dev-lang/ocaml-3.09
 		>=sys-libs/zlib-1.1"
 
+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}"
@@ -24,7 +35,9 @@
 
 src_compile() {
 	emake all || die "emake all failed"
-	emake allopt || die "emake allopt failed, is ocamlopt missing ?"
+	if use ocamlopt; then
+		emake allopt || die "emake allopt failed, is ocamlopt missing ?"
+	fi
 }
 
 src_install() {



1.2                  dev-ml/cryptokit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	10 Nov 2007 15:40:22 -0000	1.1
+++ ChangeLog	2 Jan 2008 20:07:27 -0000	1.2
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/cryptokit
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.1 2007/11/10 15:40:22 aballier Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.2 2008/01/02 20:07:27 aballier Exp $
+
+  02 Jan 2008; Alexis Ballier <aballier@gentoo.org> cryptokit-1.3.ebuild:
+  Add support to not build with ocamlopt
 
 *cryptokit-1.3 (10 Nov 2007)
 



-- 
gentoo-commits@gentoo.org mailing list



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

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

aballier    08/09/25 12:22:52

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

Revision  Changes    Path
1.4                  dev-ml/cryptokit/cryptokit-1.3.ebuild

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

Index: cryptokit-1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cryptokit-1.3.ebuild	2 Jan 2008 20:07:27 -0000	1.3
+++ cryptokit-1.3.ebuild	25 Sep 2008 12:22:51 -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/cryptokit/cryptokit-1.3.ebuild,v 1.3 2008/01/02 20:07:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v 1.4 2008/09/25 12:22:51 aballier Exp $
 
 inherit eutils findlib
 
@@ -11,7 +11,7 @@
 SRC_URI="http://caml.inria.fr/distrib/bazar-ocaml/${P}.tar.gz"
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
 IUSE="doc +ocamlopt"
 
 DEPEND=">=dev-lang/ocaml-3.09



1.3                  dev-ml/cryptokit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	2 Jan 2008 20:07:27 -0000	1.2
+++ ChangeLog	25 Sep 2008 12:22:51 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/cryptokit
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.2 2008/01/02 20:07:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.3 2008/09/25 12:22:51 aballier Exp $
+
+  25 Sep 2008; Alexis Ballier <aballier@gentoo.org> cryptokit-1.3.ebuild:
+  keyword ~x86-fbsd
 
   02 Jan 2008; Alexis Ballier <aballier@gentoo.org> cryptokit-1.3.ebuild:
   Add support to not build with ocamlopt






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/cryptokit: cryptokit-1.3.ebuild ChangeLog
@ 2009-09-28 16:47 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 3+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-28 16:47 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/28 16:47:43

  Modified:             cryptokit-1.3.ebuild ChangeLog
  Log:
  Migrate to EAPI 2 in order to nuke built_with_use.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.5                  dev-ml/cryptokit/cryptokit-1.3.ebuild

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

Index: cryptokit-1.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cryptokit-1.3.ebuild	25 Sep 2008 12:22:51 -0000	1.4
+++ cryptokit-1.3.ebuild	28 Sep 2009 16:47:43 -0000	1.5
@@ -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/cryptokit/cryptokit-1.3.ebuild,v 1.4 2008/09/25 12:22:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/cryptokit-1.3.ebuild,v 1.5 2009/09/28 16:47:43 betelgeuse Exp $
 
-inherit eutils findlib
+EAPI="2"
 
-EAPI="1"
+inherit eutils findlib
 
 DESCRIPTION="Cryptographic primitives library for Objective Caml"
 HOMEPAGE="http://cristal.inria.fr/~xleroy/software.html"
@@ -14,21 +14,10 @@
 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
 IUSE="doc +ocamlopt"
 
-DEPEND=">=dev-lang/ocaml-3.09
+DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
 		>=sys-libs/zlib-1.1"
 
-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() {
 	sed -e "s/VERSION/${PV}/" "${FILESDIR}/META" >> META
 	epatch "${FILESDIR}/${PN}-gentoo.patch"
 }
@@ -42,7 +31,7 @@
 
 src_install() {
 	findlib_src_install
-	dodoc Changes README
+	dodoc Changes README || die
 	use doc && dohtml doc/*.html doc/*.css
 }
 



1.4                  dev-ml/cryptokit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	25 Sep 2008 12:22:51 -0000	1.3
+++ ChangeLog	28 Sep 2009 16:47:43 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/cryptokit
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.3 2008/09/25 12:22:51 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/cryptokit/ChangeLog,v 1.4 2009/09/28 16:47:43 betelgeuse Exp $
+
+  28 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> cryptokit-1.3.ebuild:
+  Migrate to EAPI 2 in order to nuke built_with_use.
 
   25 Sep 2008; Alexis Ballier <aballier@gentoo.org> cryptokit-1.3.ebuild:
   keyword ~x86-fbsd






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

end of thread, other threads:[~2009-09-28 16:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-25 12:22 [gentoo-commits] gentoo-x86 commit in dev-ml/cryptokit: cryptokit-1.3.ebuild ChangeLog Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-28 16:47 Petteri Raty (betelgeuse)
2008-01-02 20:07 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