Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-1.2.0.ebuild
Date: Sun, 20 Nov 2011 00:12:43
Message-Id: 20111119235708.EA0332004B@flycatcher.gentoo.org
1 ssuominen 11/11/19 23:57:08
2
3 Modified: ChangeLog
4 Added: yasm-1.2.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.47 dev-lang/yasm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 26 Jan 2011 18:55:10 -0000 1.46
24 +++ ChangeLog 19 Nov 2011 23:57:08 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/yasm
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.46 2011/01/26 18:55:10 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.47 2011/11/19 23:57:08 ssuominen Exp $
30 +
31 +*yasm-1.2.0 (19 Nov 2011)
32 +
33 + 19 Nov 2011; Samuli Suominen <ssuominen@g.o> +yasm-1.2.0.ebuild:
34 + Version bump.
35
36 26 Jan 2011; Markos Chandras <hwoarang@g.o> yasm-1.1.0-r1.ebuild:
37 Stable on amd64 wrt bug #352742
38
39
40
41 1.1 dev-lang/yasm/yasm-1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/yasm/yasm-1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: yasm-1.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-1.2.0.ebuild,v 1.1 2011/11/19 23:57:08 ssuominen Exp $
51
52 EAPI=4
53 PYTHON_DEPEND="python? 2:2.7"
54 inherit python
55
56 DESCRIPTION="An assembler for x86 and x86_64 instruction sets"
57 HOMEPAGE="http://www.tortall.net/projects/yasm/"
58 SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"
59
60 LICENSE="Artistic BSD GPL-2 LGPL-2"
61 SLOT="0"
62 KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
63 IUSE="nls python"
64
65 RDEPEND="nls? ( virtual/libintl )"
66 DEPEND="nls? ( sys-devel/gettext )
67 python? ( >=dev-python/cython-0.14 )"
68
69 DOCS=( AUTHORS )
70
71 pkg_setup() {
72 if use python; then
73 python_set_active_version 2
74 python_pkg_setup
75 fi
76 }
77
78 src_configure() {
79 econf \
80 $(use_enable python) \
81 $(use_enable python python-bindings) \
82 $(use_enable nls)
83 }