From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MsJ8k-00028u-MD for garchives@archives.gentoo.org; Mon, 28 Sep 2009 16:31:56 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33A6FE085D; Mon, 28 Sep 2009 16:31:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E5D5BE085D for ; Mon, 28 Sep 2009 16:31:53 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 7890467998 for ; Mon, 28 Sep 2009 16:31:53 +0000 (UTC) Received: from betelgeuse by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MsJ8i-0000Z6-M2 for gentoo-commits@lists.gentoo.org; Mon, 28 Sep 2009 16:31:52 +0000 From: "Petteri Raty (betelgeuse)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, betelgeuse@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/facile: facile-1.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: facile-1.1.ebuild ChangeLog X-VCS-Directories: dev-ml/facile X-VCS-Committer: betelgeuse X-VCS-Committer-Name: Petteri Raty Content-Type: text/plain; charset=utf8 Message-Id: Sender: Petteri Raty Date: Mon, 28 Sep 2009 16:31:52 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: fc4f70f2-1b40-4841-83dc-54dc8dd1077e X-Archives-Hash: e1827435923fbfdf5fe93d4108f07412 betelgeuse 09/09/28 16:31:52 Modified: facile-1.1.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.16 dev-ml/facile/facile-1.1.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/faci= le-1.1.ebuild?rev=3D1.16&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/faci= le-1.1.ebuild?rev=3D1.16&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/faci= le-1.1.ebuild?r1=3D1.15&r2=3D1.16 Index: facile-1.1.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/dev-ml/facile/facile-1.1.ebuild,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- facile-1.1.ebuild 21 Jan 2009 23:27:52 -0000 1.15 +++ facile-1.1.ebuild 28 Sep 2009 16:31:52 -0000 1.16 @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/facile/facile-1.1.ebuild,v 1.1= 5 2009/01/21 23:27:52 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/facile/facile-1.1.ebuild,v 1.1= 6 2009/09/28 16:31:52 betelgeuse Exp $ =20 -inherit eutils +EAPI=3D"2" =20 -EAPI=3D"1" +inherit eutils =20 DESCRIPTION=3D"FaCiLe is a constraint programming library on integer and= integer set finite domains written in OCaml." HOMEPAGE=3D"http://www.recherche.enac.fr/log/facile/" @@ -17,23 +17,11 @@ KEYWORDS=3D"alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" IUSE=3D"+ocamlopt" =20 -RDEPEND=3D">=3Ddev-lang/ocaml-3.09.3-r1" +RDEPEND=3D">=3Ddev-lang/ocaml-3.10.2[ocamlopt?]" DEPEND=3D"${RDEPEND} sys-apps/sed" =20 -pkg_setup() { - if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocaml= opt; 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() { # Fix building on FreeBSD epatch "${FILESDIR}/${P}"-make.patch # Disable building native code objects if we dont have/want ocamlopt @@ -48,10 +36,9 @@ fi } =20 -src_compile(){ +src_configure(){ # This is a custom configure script and it does not support standard op= tions ./configure --faciledir "${D}"$(ocamlc -where)/facile/ - emake || die "Compilation failed" } =20 src_test() { 1.16 dev-ml/facile/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/Chan= geLog?rev=3D1.16&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/Chan= geLog?rev=3D1.16&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/facile/Chan= geLog?r1=3D1.15&r2=3D1.16 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/dev-ml/facile/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 21 Jan 2009 23:27:52 -0000 1.15 +++ ChangeLog 28 Sep 2009 16:31:52 -0000 1.16 @@ -1,6 +1,9 @@ # ChangeLog for dev-ml/facile # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/facile/ChangeLog,v 1.15 2009/0= 1/21 23:27:52 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/facile/ChangeLog,v 1.16 2009/0= 9/28 16:31:52 betelgeuse Exp $ + + 28 Sep 2009; Petteri R=C3=A4ty facile-1.1.ebui= ld: + Migrate to EAPI 2 in order to nuke built_with_use. =20 21 Jan 2009; Alexis Ballier facile-1.1.ebuild: keyword ~x86-fbsd