public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2013-04-23  6:32 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 6+ messages in thread
From: Ryan Hill (dirtyepic) @ 2013-04-23  6:32 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    13/04/23 06:32:01

  Modified:             ChangeLog
  Added:                gcc-4.6.4.ebuild
  Log:
  Version bump. Fixes bug #411691 (ICE building stable boost) and bug #454426
  (bootstrap fails on alpha).
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 957A8463)

Revision  Changes    Path
1.946                sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.946&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.946&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.945&r2=1.946

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.945
retrieving revision 1.946
diff -u -r1.945 -r1.946
--- ChangeLog	21 Apr 2013 02:31:00 -0000	1.945
+++ ChangeLog	23 Apr 2013 06:32:01 -0000	1.946
@@ -1,6 +1,12 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.945 2013/04/21 02:31:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.946 2013/04/23 06:32:01 dirtyepic Exp $
+
+*gcc-4.6.4 (23 Apr 2013)
+
+  23 Apr 2013; Ryan Hill <dirtyepic@gentoo.org> +gcc-4.6.4.ebuild:
+  Version bump. Fixes bug #411691 (ICE building stable boost) and bug #454426
+  (bootstrap fails on alpha).
 
   21 Apr 2013; Mike Frysinger <vapier@gentoo.org> gcc-4.4.7.ebuild,
   gcc-4.5.4.ebuild, gcc-4.6.3.ebuild, gcc-4.7.2-r1.ebuild, gcc-4.8.0.ebuild:



1.1                  sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.1&content-type=text/plain

Index: gcc-4.6.4.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.1 2013/04/23 06:32:01 dirtyepic Exp $

PATCH_VER="1.0"
UCLIBC_VER="1.0"

# Hardened gcc 4 stuff
PIE_VER="0.5.2"
SPECS_VER="0.2.0"
SPECS_GCC_VER="4.4.3"
# arch/libc configurations known to be stable with {PIE,SSP}-by-default
PIE_GLIBC_STABLE="x86 amd64 mips ppc ppc64 arm ia64"
PIE_UCLIBC_STABLE="x86 arm amd64 ppc ppc64"
SSP_STABLE="amd64 x86 mips ppc ppc64 arm"
# uclibc need tls and nptl support for SSP support
# uclibc need to be >= 0.9.32
SSP_UCLIBC_STABLE="x86 amd64 ppc ppc64 arm"
#end Hardened stuff

inherit toolchain

DESCRIPTION="The GNU Compiler Collection"

LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"

RDEPEND=""
DEPEND="${RDEPEND}
	elibc_glibc? ( >=sys-libs/glibc-2.8 )
	>=${CATEGORY}/binutils-2.18"

if [[ ${CATEGORY} != cross-* ]] ; then
	PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.8 )"
fi

src_unpack() {
	if has_version '<sys-libs/glibc-2.12' ; then
		ewarn "Your host glibc is too old; disabling automatic fortify."
		ewarn "Please rebuild gcc after upgrading to >=glibc-2.12 #362315"
		EPATCH_EXCLUDE+=" 10_all_default-fortify-source.patch"
	fi

	toolchain_src_unpack

	use vanilla && return 0

	[[ ${CHOST} == ${CTARGET} ]] && epatch "${FILESDIR}"/gcc-spec-env.patch
}

pkg_setup() {
	toolchain_pkg_setup

	ewarn
	ewarn "LTO support is still experimental and unstable."
	ewarn "Any bugs resulting from the use of LTO will not be fixed."
	ewarn
}





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2014-03-29  6:40 Ryan Hill (rhill)
  0 siblings, 0 replies; 6+ messages in thread
From: Ryan Hill (rhill) @ 2014-03-29  6:40 UTC (permalink / raw
  To: gentoo-commits

rhill       14/03/29 06:40:40

  Modified:             ChangeLog gcc-4.6.4.ebuild
  Log:
  4.6.4 p1.2: Fixes illegal instructions on Haswell (or -mfma) (bug #505960
  by Christian Schmidt).
  
  Signed-off-by: Ryan Hill <rhill@gentoo.org>
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 957A8463)

Revision  Changes    Path
1.1000               sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1000&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1000&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.999&r2=1.1000

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.999
retrieving revision 1.1000
diff -u -r1.999 -r1.1000
--- ChangeLog	16 Feb 2014 07:32:05 -0000	1.999
+++ ChangeLog	29 Mar 2014 06:40:40 -0000	1.1000
@@ -1,6 +1,10 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.999 2014/02/16 07:32:05 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1000 2014/03/29 06:40:40 rhill Exp $
+
+  29 Mar 2014; Ryan Hill <rhill@gentoo.org> gcc-4.6.4.ebuild:
+  4.6.4 p1.2: Fixes illegal instructions on Haswell (or -mfma) (bug #505960
+  by Christian Schmidt).
 
   16 Feb 2014; Mike Frysinger <vapier@gentoo.org> gcc-4.7.3-r1.ebuild:
   Mark sh stable.



1.6                  sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?r1=1.5&r2=1.6

Index: gcc-4.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gcc-4.6.4.ebuild	19 Jan 2014 01:51:34 -0000	1.5
+++ gcc-4.6.4.ebuild	29 Mar 2014 06:40:40 -0000	1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.5 2014/01/19 01:51:34 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.6 2014/03/29 06:40:40 rhill Exp $
 
 EAPI="2"
 
-PATCH_VER="1.1"
+PATCH_VER="1.2"
 UCLIBC_VER="1.0"
 
 # Hardened gcc 4 stuff





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2014-06-17 16:06 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-06-17 16:06 UTC (permalink / raw
  To: gentoo-commits

klausman    14/06/17 16:06:49

  Modified:             ChangeLog gcc-4.6.4.ebuild
  Log:
  Stable on alpha, bug #504798
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.1006               sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1006&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1006&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1005&r2=1.1006

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1005
retrieving revision 1.1006
diff -u -r1.1005 -r1.1006
--- ChangeLog	17 Jun 2014 02:40:15 -0000	1.1005
+++ ChangeLog	17 Jun 2014 16:06:49 -0000	1.1006
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1005 2014/06/17 02:40:15 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1006 2014/06/17 16:06:49 klausman Exp $
+
+  17 Jun 2014; Tobias Klausmann <klausman@gentoo.org> gcc-4.6.4.ebuild:
+  Stable on alpha, bug #504798
 
 *gcc-4.7.4 (17 Jun 2014)
 



1.7                  sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?r1=1.6&r2=1.7

Index: gcc-4.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gcc-4.6.4.ebuild	29 Mar 2014 06:40:40 -0000	1.6
+++ gcc-4.6.4.ebuild	17 Jun 2014 16:06:49 -0000	1.7
@@ -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/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.6 2014/03/29 06:40:40 rhill Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.7 2014/06/17 16:06:49 klausman Exp $
 
 EAPI="2"
 
@@ -25,7 +25,7 @@
 DESCRIPTION="The GNU Compiler Collection"
 
 LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2014-07-08 11:35 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2014-07-08 11:35 UTC (permalink / raw
  To: gentoo-commits

jer         14/07/08 11:35:23

  Modified:             ChangeLog gcc-4.6.4.ebuild
  Log:
  Stable for HPPA (bug #504798).
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.1007               sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1007&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1007&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1006&r2=1.1007

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1006
retrieving revision 1.1007
diff -u -r1.1006 -r1.1007
--- ChangeLog	17 Jun 2014 16:06:49 -0000	1.1006
+++ ChangeLog	8 Jul 2014 11:35:22 -0000	1.1007
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1006 2014/06/17 16:06:49 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1007 2014/07/08 11:35:22 jer Exp $
+
+  08 Jul 2014; Jeroen Roovers <jer@gentoo.org> gcc-4.6.4.ebuild:
+  Stable for HPPA (bug #504798).
 
   17 Jun 2014; Tobias Klausmann <klausman@gentoo.org> gcc-4.6.4.ebuild:
   Stable on alpha, bug #504798



1.8                  sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?r1=1.7&r2=1.8

Index: gcc-4.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gcc-4.6.4.ebuild	17 Jun 2014 16:06:49 -0000	1.7
+++ gcc-4.6.4.ebuild	8 Jul 2014 11:35:22 -0000	1.8
@@ -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/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.7 2014/06/17 16:06:49 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.8 2014/07/08 11:35:22 jer Exp $
 
 EAPI="2"
 
@@ -25,7 +25,7 @@
 DESCRIPTION="The GNU Compiler Collection"
 
 LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2014-07-15 18:44 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2014-07-15 18:44 UTC (permalink / raw
  To: gentoo-commits

maekke      14/07/15 18:44:33

  Modified:             ChangeLog gcc-4.6.4.ebuild
  Log:
  arm stable, bug #504798
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.1009               sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1009&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1009&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1008&r2=1.1009

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1008
retrieving revision 1.1009
diff -u -r1.1008 -r1.1009
--- ChangeLog	15 Jul 2014 14:07:23 -0000	1.1008
+++ ChangeLog	15 Jul 2014 18:44:33 -0000	1.1009
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1008 2014/07/15 14:07:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1009 2014/07/15 18:44:33 maekke Exp $
+
+  15 Jul 2014; Markus Meier <maekke@gentoo.org> gcc-4.6.4.ebuild:
+  arm stable, bug #504798
 
   15 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> gcc-4.6.4.ebuild:
   x86 stable wrt bug #504798



1.10                 sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?r1=1.9&r2=1.10

Index: gcc-4.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gcc-4.6.4.ebuild	15 Jul 2014 14:07:23 -0000	1.9
+++ gcc-4.6.4.ebuild	15 Jul 2014 18:44:33 -0000	1.10
@@ -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/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.9 2014/07/15 14:07:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.10 2014/07/15 18:44:33 maekke Exp $
 
 EAPI="2"
 
@@ -25,7 +25,7 @@
 DESCRIPTION="The GNU Compiler Collection"
 
 LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}





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

* [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild
@ 2014-08-01 11:12 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2014-08-01 11:12 UTC (permalink / raw
  To: gentoo-commits

armin76     14/08/01 11:12:50

  Modified:             ChangeLog gcc-4.6.4.ebuild
  Log:
  ia64 stable wrt #504798
  
  (Portage version: 2.2.8-r1/cvs/Linux ia64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.1013               sys-devel/gcc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1013&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1013&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1012&r2=1.1013

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1012
retrieving revision 1.1013
diff -u -r1.1012 -r1.1013
--- ChangeLog	31 Jul 2014 06:32:24 -0000	1.1012
+++ ChangeLog	1 Aug 2014 11:12:50 -0000	1.1013
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1012 2014/07/31 06:32:24 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1013 2014/08/01 11:12:50 armin76 Exp $
+
+  01 Aug 2014; Raúl Porcel <armin76@gentoo.org> gcc-4.6.4.ebuild:
+  ia64 stable wrt #504798
 
   31 Jul 2014; Mike Frysinger <vapier@gentoo.org> gcc-4.7.4.ebuild:
   Update x32 patch #513686 by Bertrand Jacquin.



1.13                 sys-devel/gcc/gcc-4.6.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild?r1=1.12&r2=1.13

Index: gcc-4.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gcc-4.6.4.ebuild	28 Jul 2014 13:49:23 -0000	1.12
+++ gcc-4.6.4.ebuild	1 Aug 2014 11:12:50 -0000	1.13
@@ -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/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.12 2014/07/28 13:49:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.6.4.ebuild,v 1.13 2014/08/01 11:12:50 armin76 Exp $
 
 EAPI="2"
 
@@ -25,7 +25,7 @@
 DESCRIPTION="The GNU Compiler Collection"
 
 LICENSE="GPL-3+ LGPL-3+ || ( GPL-3+ libgcc libstdc++ gcc-runtime-library-exception-3.1 ) FDL-1.3+"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}





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

end of thread, other threads:[~2014-08-01 11:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08 11:35 [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.6.4.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2014-08-01 11:12 Raul Porcel (armin76)
2014-07-15 18:44 Markus Meier (maekke)
2014-06-17 16:06 Tobias Klausmann (klausman)
2014-03-29  6:40 Ryan Hill (rhill)
2013-04-23  6:32 Ryan Hill (dirtyepic)

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