mr_bones_ 15/01/24 07:11:54 Modified: zsnes-1.51-r4.ebuild ChangeLog Log: Fix stack alignment issue #503138 with patch from nvinson (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.9 games-emulation/zsnes/zsnes-1.51-r4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild?r1=1.8&r2=1.9 Index: zsnes-1.51-r4.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- zsnes-1.51-r4.ebuild 13 Oct 2014 10:56:12 -0000 1.8 +++ zsnes-1.51-r4.ebuild 24 Jan 2015 07:11:54 -0000 1.9 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v 1.8 2014/10/13 10:56:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v 1.9 2015/01/24 07:11:54 mr_bones_ Exp $ EAPI=5 inherit eutils autotools flag-o-matic toolchain-funcs multilib pax-utils games @@ -46,6 +46,7 @@ # Fix compability with libpng15 wrt #378735 # Fix buffer overwrite #257963 # Fix gcc47 compile #419635 + # Fix stack alignment issue #503138 epatch \ "${FILESDIR}"/${P}-libpng.patch \ "${FILESDIR}"/${P}-archopt-july-23-update.patch \ @@ -56,6 +57,7 @@ "${FILESDIR}"/${P}-libpng15.patch \ "${FILESDIR}"/${P}-buffer.patch \ "${FILESDIR}"/${P}-gcc47.patch \ + "${FILESDIR}"/${P}-stack-align.patch \ "${FILESDIR}"/${P}-cross-compile.patch # The sdl detection logic uses AC_PROG_PATH instead of @@ -70,8 +72,7 @@ -e '/^CFLAGS=.*local/s:-pipe.*:-Wall -I.":' \ -e '/^LDFLAGS=.*local/d' \ -e '/\w*CFLAGS=.*fomit/s:-O3.*$STRIP::' \ - configure.in \ - || die "sed failed" + configure.in || die eautoreconf } 1.62 games-emulation/zsnes/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.62&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?rev=1.62&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/zsnes/ChangeLog?r1=1.61&r2=1.62 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- ChangeLog 13 Oct 2014 10:56:12 -0000 1.61 +++ ChangeLog 24 Jan 2015 07:11:54 -0000 1.62 @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/zsnes -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.61 2014/10/13 10:56:12 mgorny Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/ChangeLog,v 1.62 2015/01/24 07:11:54 mr_bones_ Exp $ + + 24 Jan 2015; Michael Sterrett <[email protected]> + +files/zsnes-1.51-stack-align.patch, zsnes-1.51-r4.ebuild: + Fix stack alignment issue #503138 with patch from nvinson 13 Oct 2014; Michał Górny <[email protected]> zsnes-1.51-r4.ebuild: Support multilib providers for deps. Bump to EAPI=5.
