public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.8.0.ebuild
@ 2009-04-13 22:38 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2009-04-13 22:38 UTC (permalink / raw
  To: gentoo-commits

vapier      09/04/13 22:38:45

  Modified:             ChangeLog
  Added:                yasm-0.8.0.ebuild
  Log:
  Version bump.
  (Portage version: 2.2_rc28/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-lang/yasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	12 Oct 2008 15:22:53 -0000	1.29
+++ ChangeLog	13 Apr 2009 22:38:45 -0000	1.30
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/yasm
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.29 2008/10/12 15:22:53 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.30 2009/04/13 22:38:45 vapier Exp $
+
+*yasm-0.8.0 (13 Apr 2009)
+
+  13 Apr 2009; Mike Frysinger <vapier@gentoo.org> +yasm-0.8.0.ebuild:
+  Version bump.
 
   12 Oct 2008; Markus Meier <maekke@gentoo.org> yasm-0.7.1.ebuild:
   amd64/x86 stable, bug #241188



1.1                  dev-lang/yasm/yasm-0.8.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild?rev=1.1&content-type=text/plain

Index: yasm-0.8.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.1 2009/04/13 22:38:45 vapier Exp $

DESCRIPTION="Assembler that supports amd64"
HOMEPAGE="http://www.tortall.net/projects/yasm/"
SRC_URI="http://www.tortall.net/projects/yasm/releases/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
IUSE="nls"

RDEPEND="nls? ( virtual/libintl )"
DEPEND="nls? ( sys-devel/gettext )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	# Remove macho tests (gas{32,64},nasm{32,64}) until fixed upstream.
	# Necessary to pass test phase on at least amd64 with gcc-4.1.2.
	sed -i \
		-e '/modules\/objfmts\/macho\/tests\/.*\/.*macho.*_test.sh/d' \
		Makefile.in
}

src_compile() {
	econf $(use_enable nls) || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS INSTALL
}






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.8.0.ebuild
@ 2009-06-07 13:11 Thomas Anderson (gentoofan23)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Anderson (gentoofan23) @ 2009-06-07 13:11 UTC (permalink / raw
  To: gentoo-commits

gentoofan23    09/06/07 13:11:30

  Modified:             ChangeLog yasm-0.8.0.ebuild
  Log:
  stable amd64 as requested by Samuli Suominen to fix bug #273008. General QA cleanup by myself and Samuli. Convert to EAPI 2 for simplicity.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.33                 dev-lang/yasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	19 Apr 2009 14:01:33 -0000	1.32
+++ ChangeLog	7 Jun 2009 13:11:30 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/yasm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.32 2009/04/19 14:01:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.33 2009/06/07 13:11:30 gentoofan23 Exp $
+
+  07 Jun 2009; Thomas Anderson <gentoofan23@gentoo.org> yasm-0.8.0.ebuild:
+  stable amd64 as requested by Samuli Suominen to fix bug #273008. General QA
+  cleanup by myself and Samuli. Convert to EAPI 2 for simplicity.
 
   19 Apr 2009; Markus Meier <maekke@gentoo.org> yasm-0.7.2:
   x86 stable, bug #266057



1.2                  dev-lang/yasm/yasm-0.8.0.ebuild

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

Index: yasm-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yasm-0.8.0.ebuild	13 Apr 2009 22:38:45 -0000	1.1
+++ yasm-0.8.0.ebuild	7 Jun 2009 13:11:30 -0000	1.2
@@ -1,6 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.1 2009/04/13 22:38:45 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.2 2009/06/07 13:11:30 gentoofan23 Exp $
+
+EAPI="2"
 
 DESCRIPTION="Assembler that supports amd64"
 HOMEPAGE="http://www.tortall.net/projects/yasm/"
@@ -8,28 +10,17 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="-* amd64 ~x86 ~x86-fbsd"
 IUSE="nls"
 
 RDEPEND="nls? ( virtual/libintl )"
 DEPEND="nls? ( sys-devel/gettext )"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	# Remove macho tests (gas{32,64},nasm{32,64}) until fixed upstream.
-	# Necessary to pass test phase on at least amd64 with gcc-4.1.2.
-	sed -i \
-		-e '/modules\/objfmts\/macho\/tests\/.*\/.*macho.*_test.sh/d' \
-		Makefile.in
-}
-
-src_compile() {
-	econf $(use_enable nls) || die "econf failed"
-	emake || die "emake failed"
+src_configure() {
+	econf $(use_enable nls)
 }
 
 src_install() {
 	emake DESTDIR="${D}" install || die "make install failed"
-	dodoc AUTHORS INSTALL
+	dodoc AUTHORS
 }






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.8.0.ebuild
@ 2009-06-10 19:50 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2009-06-10 19:50 UTC (permalink / raw
  To: gentoo-commits

maekke      09/06/10 19:50:34

  Modified:             ChangeLog yasm-0.8.0.ebuild
  Log:
  x86 stable, bug #273035
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.34                 dev-lang/yasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	7 Jun 2009 13:11:30 -0000	1.33
+++ ChangeLog	10 Jun 2009 19:50:34 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/yasm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.33 2009/06/07 13:11:30 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.34 2009/06/10 19:50:34 maekke Exp $
+
+  10 Jun 2009; Markus Meier <maekke@gentoo.org> yasm-0.8.0.ebuild:
+  x86 stable, bug #273035
 
   07 Jun 2009; Thomas Anderson <gentoofan23@gentoo.org> yasm-0.8.0.ebuild:
   stable amd64 as requested by Samuli Suominen to fix bug #273008. General QA



1.3                  dev-lang/yasm/yasm-0.8.0.ebuild

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

Index: yasm-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- yasm-0.8.0.ebuild	7 Jun 2009 13:11:30 -0000	1.2
+++ yasm-0.8.0.ebuild	10 Jun 2009 19:50:34 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.2 2009/06/07 13:11:30 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.3 2009/06/10 19:50:34 maekke Exp $
 
 EAPI="2"
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="-* amd64 ~x86 ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~x86-fbsd"
 IUSE="nls"
 
 RDEPEND="nls? ( virtual/libintl )"






^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.8.0.ebuild
@ 2010-01-02 18:46 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-02 18:46 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/02 18:46:38

  Modified:             ChangeLog yasm-0.8.0.ebuild
  Log:
  Transfer Prefix keywords
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.35                 dev-lang/yasm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/yasm/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	10 Jun 2009 19:50:34 -0000	1.34
+++ ChangeLog	2 Jan 2010 18:46:38 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/yasm
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.34 2009/06/10 19:50:34 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.35 2010/01/02 18:46:38 fauli Exp $
+
+  02 Jan 2010; Christian Faulhammer <fauli@gentoo.org> yasm-0.8.0.ebuild:
+  Transfer Prefix keywords
 
   10 Jun 2009; Markus Meier <maekke@gentoo.org> yasm-0.8.0.ebuild:
   x86 stable, bug #273035



1.4                  dev-lang/yasm/yasm-0.8.0.ebuild

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

Index: yasm-0.8.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- yasm-0.8.0.ebuild	10 Jun 2009 19:50:34 -0000	1.3
+++ yasm-0.8.0.ebuild	2 Jan 2010 18:46:38 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.3 2009/06/10 19:50:34 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-0.8.0.ebuild,v 1.4 2010/01/02 18:46:38 fauli Exp $
 
 EAPI="2"
 
@@ -10,7 +10,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="-* amd64 x86 ~x86-fbsd"
+KEYWORDS="-* amd64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="nls"
 
 RDEPEND="nls? ( virtual/libintl )"






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

end of thread, other threads:[~2010-01-02 18:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-13 22:38 [gentoo-commits] gentoo-x86 commit in dev-lang/yasm: ChangeLog yasm-0.8.0.ebuild Mike Frysinger (vapier)
  -- strict thread matches above, loose matches on Subject: below --
2009-06-07 13:11 Thomas Anderson (gentoofan23)
2009-06-10 19:50 Markus Meier (maekke)
2010-01-02 18:46 Christian Faulhammer (fauli)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox