mgorny      15/02/18 17:09:17

  Modified:             boot0-9.1.ebuild boot0-9.2.ebuild ChangeLog
  Log:
  Fix SIGABRT failure when compiled with SSP-enabled gcc, bug #511698, patch by 
Yuta SATOH
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.4                  sys-freebsd/boot0/boot0-9.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild?r1=1.3&r2=1.4

Index: boot0-9.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- boot0-9.1.ebuild    27 Aug 2013 23:08:11 -0000      1.3
+++ boot0-9.1.ebuild    18 Feb 2015 17:09:17 -0000      1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild,v 1.3 
2013/08/27 23:08:11 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.1.ebuild,v 1.4 
2015/02/18 17:09:17 mgorny Exp $
 
 EAPI=2
 
@@ -22,7 +22,8 @@
 
 S="${WORKDIR}/sys/boot"
 
-PATCHES=( "${FILESDIR}/${PN}-9.2-gcc46.patch" )
+PATCHES=( "${FILESDIR}/${PN}-9.2-gcc46.patch"
+       "${FILESDIR}/${PN}-add-nossp-cflags.patch" )
 
 boot0_use_enable() {
        use ${1} && mymakeopts="${mymakeopts} LOADER_${2}_SUPPORT=\"yes\""



1.2                  sys-freebsd/boot0/boot0-9.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild?r1=1.1&r2=1.2

Index: boot0-9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boot0-9.2.ebuild    9 Nov 2013 09:15:50 -0000       1.1
+++ boot0-9.2.ebuild    18 Feb 2015 17:09:17 -0000      1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild,v 1.1 
2013/11/09 09:15:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.2.ebuild,v 1.2 
2015/02/18 17:09:17 mgorny Exp $
 
 EAPI=2
 
@@ -24,7 +24,8 @@
 
 S="${WORKDIR}/sys/boot"
 
-PATCHES=( "${FILESDIR}/${PN}-9.2-gcc46.patch" )
+PATCHES=( "${FILESDIR}/${PN}-9.2-gcc46.patch"
+       "${FILESDIR}/${PN}-add-nossp-cflags.patch" )
 
 boot0_use_enable() {
        use ${1} && mymakeopts="${mymakeopts} LOADER_${2}_SUPPORT=\"yes\""



1.50                 sys-freebsd/boot0/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?rev=1.50&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?rev=1.50&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-freebsd/boot0/ChangeLog?r1=1.49&r2=1.50

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog   9 Nov 2013 09:15:50 -0000       1.49
+++ ChangeLog   18 Feb 2015 17:09:17 -0000      1.50
@@ -1,6 +1,11 @@
 # ChangeLog for sys-freebsd/boot0
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.49 
2013/11/09 09:15:50 aballier Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.50 
2015/02/18 17:09:17 mgorny Exp $
+
+  18 Feb 2015; Michał Górny <[email protected]>
+  +files/boot0-add-nossp-cflags.patch, boot0-9.1.ebuild, boot0-9.2.ebuild:
+  Fix SIGABRT failure when compiled with SSP-enabled gcc, bug #511698, patch by
+  Yuta SATOH
 
 *boot0-9.2 (09 Nov 2013)
 




Reply via email to