commit:     1f6eeb3ae3f00b88fa38398613a63d08422e320f
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  7 07:13:02 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Sep  7 07:13:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6eeb3a

games-board/pokerth: Fully qualify std::advance

Closes: https://bugs.gentoo.org/show_bug.cgi?id=629966
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch | 14 ++++++++++++++
 games-board/pokerth/pokerth-1.1.1-r2.ebuild                |  9 +++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git 
a/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch 
b/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
new file mode 100644
index 00000000000..2e8c9c50c5e
--- /dev/null
+++ b/games-board/pokerth/files/pokerth-1.1.1-boost-1.65-ambiguous-advance.patch
@@ -0,0 +1,14 @@
+Boost 1.65 made 'advance()' ambiguous.
+Bug: https://bugs.gentoo.org/show_bug.cgi?id=629966
+
+--- a/src/gui/qt/gametable/gametableimpl.cpp
++++ b/src/gui/qt/gametable/gametableimpl.cpp
+@@ -3859,7 +3859,7 @@
+       int playerCount = static_cast<int>(seatList->size());
+       if (id < playerCount) {
+               PlayerListIterator pos = seatList->begin();
+-              advance(pos, id);
++              std::advance(pos, id);
+               
myStartWindow->getSession()->startVoteKickPlayer((*pos)->getMyUniqueID());
+       }
+ }

diff --git a/games-board/pokerth/pokerth-1.1.1-r2.ebuild 
b/games-board/pokerth/pokerth-1.1.1-r2.ebuild
index 32e456bf3d7..be20d0fd206 100644
--- a/games-board/pokerth/pokerth-1.1.1-r2.ebuild
+++ b/games-board/pokerth/pokerth-1.1.1-r2.ebuild
@@ -38,10 +38,11 @@ DEPEND="${RDEPEND}
 S=${WORKDIR}/${MY_P}
 
 PATCHES=(
-       "${FILESDIR}/${P}-qt5.patch"
-       "${FILESDIR}/${P}-boost-1.60.patch"
-       "${FILESDIR}/${P}-qmake-gcc-6.patch"
-       "${FILESDIR}/${P}-boost-noexcept.patch"
+       "${FILESDIR}"/${PN}-1.1.1-qt5.patch
+       "${FILESDIR}"/${PN}-1.1.1-boost-1.60.patch
+       "${FILESDIR}"/${PN}-1.1.1-qmake-gcc-6.patch
+       "${FILESDIR}"/${PN}-1.1.1-boost-noexcept.patch
+       "${FILESDIR}"/${PN}-1.1.1-boost-1.65-ambiguous-advance.patch
 )
 
 src_prepare() {

Reply via email to