public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass
@ 2013-07-27 17:31 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-27 17:31 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/27 17:31:47

  Modified:             multilib-build.eclass
  Log:
  Add support for freebsd, bug #475294 by  Yuta SATOH

Revision  Changes    Path
1.16                 eclass/multilib-build.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.15&r2=1.16

Index: multilib-build.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- multilib-build.eclass	11 Jul 2013 06:57:18 -0000	1.15
+++ multilib-build.eclass	27 Jul 2013 17:31:47 -0000	1.16
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.15 2013/07/11 06:57:18 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.16 2013/07/27 17:31:47 aballier Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -33,6 +33,8 @@
 	abi_x86_32:x86
 	abi_x86_64:amd64
 	abi_x86_x32:x32
+	abi_x86_32:x86_fbsd
+	abi_x86_64:amd64_fbsd
 )
 
 # @ECLASS-VARIABLE: MULTILIB_USEDEP
@@ -293,9 +295,9 @@
 		# XXX: get abi_* directly
 		local abi_flag
 		case "${ABI}" in
-			amd64)
+			amd64|amd64_fbsd)
 				abi_flag=abi_x86_64;;
-			x86)
+			x86|x86_fbsd)
 				abi_flag=abi_x86_32;;
 			x32)
 				abi_flag=abi_x86_x32;;





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

* [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass
@ 2013-12-28 18:23 Justin Lecher (jlec)
  0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher (jlec) @ 2013-12-28 18:23 UTC (permalink / raw
  To: gentoo-commits

jlec        13/12/28 18:23:25

  Modified:             multilib-build.eclass
  Log:
  Fix typo

Revision  Changes    Path
1.24                 eclass/multilib-build.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.23&r2=1.24

Index: multilib-build.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- multilib-build.eclass	1 Oct 2013 18:06:06 -0000	1.23
+++ multilib-build.eclass	28 Dec 2013 18:23:25 -0000	1.24
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.23 2013/10/01 18:06:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.24 2013/12/28 18:23:25 jlec Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -384,7 +384,7 @@
 
 # @FUNCTION: multilib_build_binaries
 # @DESCRIPTION:
-# Determine wheter to build binaries for the current build ABI.
+# Determine whether to build binaries for the current build ABI.
 # Returns true status (0) if the current built ABI is the profile
 # native or COMPLETE_MULTILIB variable is set to yes, otherwise
 # false (1).





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

* [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass
@ 2014-03-29  3:00 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2014-03-29  3:00 UTC (permalink / raw
  To: gentoo-commits

vapier      14/03/29 03:00:44

  Modified:             multilib-build.eclass
  Log:
  add ABI_PPC support

Revision  Changes    Path
1.28                 eclass/multilib-build.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.27&r2=1.28

Index: multilib-build.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- multilib-build.eclass	16 Jan 2014 20:05:12 -0000	1.27
+++ multilib-build.eclass	29 Mar 2014 03:00:44 -0000	1.28
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.27 2014/01/16 20:05:12 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.28 2014/03/29 03:00:44 vapier Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -38,6 +38,8 @@
 	abi_mips_n32:n32
 	abi_mips_n64:n64
 	abi_mips_o32:o32
+	abi_ppc_32:ppc
+	abi_ppc_64:ppc64
 )
 
 # @ECLASS-VARIABLE: MULTILIB_USEDEP
@@ -351,6 +353,10 @@
 					abi_flag=abi_mips_n64;;
 				o32)
 					abi_flag=abi_mips_o32;;
+				ppc)
+					abi_flag=abi_ppc_32;;
+				ppc64)
+					abi_flag=abi_ppc_64;;
 				*)
 					die "Header wrapping for ${ABI} not supported yet";;
 			esac





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

* [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass
@ 2014-04-03 17:00 Mike Frysinger (vapier)
  0 siblings, 0 replies; 4+ messages in thread
From: Mike Frysinger (vapier) @ 2014-04-03 17:00 UTC (permalink / raw
  To: gentoo-commits

vapier      14/04/03 17:00:00

  Modified:             multilib-build.eclass
  Log:
  add s390 abi handling

Revision  Changes    Path
1.31                 eclass/multilib-build.eclass

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/multilib-build.eclass?r1=1.30&r2=1.31

Index: multilib-build.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- multilib-build.eclass	31 Mar 2014 15:32:22 -0000	1.30
+++ multilib-build.eclass	3 Apr 2014 17:00:00 -0000	1.31
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.30 2014/03/31 15:32:22 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.31 2014/04/03 17:00:00 vapier Exp $
 
 # @ECLASS: multilib-build.eclass
 # @MAINTAINER:
@@ -38,6 +38,8 @@
 	abi_mips_n32:n32
 	abi_mips_n64:n64
 	abi_mips_o32:o32
+	abi_s390_32:s390
+	abi_s390_64:s390x
 )
 
 # @ECLASS-VARIABLE: MULTILIB_USEDEP





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

end of thread, other threads:[~2014-04-03 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-27 17:31 [gentoo-commits] gentoo-x86 commit in eclass: multilib-build.eclass Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-28 18:23 Justin Lecher (jlec)
2014-03-29  3:00 Mike Frysinger (vapier)
2014-04-03 17:00 Mike Frysinger (vapier)

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