From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C710139694 for ; Sat, 25 Mar 2017 12:48:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 836CF21C08C; Sat, 25 Mar 2017 12:48:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5F2F921C08C for ; Sat, 25 Mar 2017 12:48:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 177A1341650 for ; Sat, 25 Mar 2017 12:48:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B606771B2 for ; Sat, 25 Mar 2017 12:48:15 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1490446050.fab43f983be105df1d882e762a8d835529601276.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/brainparty/, games-puzzle/brainparty/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-puzzle/brainparty/brainparty-0.61.ebuild games-puzzle/brainparty/files/brainparty-0.61-gnu_cxx-hash.patch X-VCS-Directories: games-puzzle/brainparty/files/ games-puzzle/brainparty/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: fab43f983be105df1d882e762a8d835529601276 X-VCS-Branch: master Date: Sat, 25 Mar 2017 12:48:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d8deb8b0-8352-45ac-8fb6-2472e86f2cb2 X-Archives-Hash: 3bd74a11c1ea0f3fd1dacdae58a3d6f3 commit: fab43f983be105df1d882e762a8d835529601276 Author: Peter-Levine gmail com> AuthorDate: Fri Mar 24 16:52:45 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Mar 25 12:47:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fab43f98 games-puzzle/brainparty: Fix GCC-6 build Bug: https://bugs.gentoo.org/show_bug.cgi?id=612654 Package-Manager: Portage-2.3.5, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4220 games-puzzle/brainparty/brainparty-0.61.ebuild | 5 +++-- .../brainparty/files/brainparty-0.61-gnu_cxx-hash.patch | 11 +++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/games-puzzle/brainparty/brainparty-0.61.ebuild b/games-puzzle/brainparty/brainparty-0.61.ebuild index 3271d1a09dc..9cc441ad80e 100644 --- a/games-puzzle/brainparty/brainparty-0.61.ebuild +++ b/games-puzzle/brainparty/brainparty-0.61.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -34,7 +34,8 @@ src_prepare() { main.cpp || die epatch \ "${FILESDIR}"/${P}-savegame.patch \ - "${FILESDIR}"/${P}-gcc49.patch + "${FILESDIR}"/${P}-gcc49.patch \ + "${FILESDIR}"/${P}-gnu_cxx-hash.patch } diff --git a/games-puzzle/brainparty/files/brainparty-0.61-gnu_cxx-hash.patch b/games-puzzle/brainparty/files/brainparty-0.61-gnu_cxx-hash.patch new file mode 100644 index 00000000000..8d933462673 --- /dev/null +++ b/games-puzzle/brainparty/files/brainparty-0.61-gnu_cxx-hash.patch @@ -0,0 +1,11 @@ +--- a/WordList.h ++++ b/WordList.h +@@ -35,7 +35,7 @@ + }; + } + +-typedef hash_set > string_hash_set; ++typedef hash_set > string_hash_set; + + class WordList { + private: