From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DD5C1138454 for ; Fri, 11 Sep 2015 21:36:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3A65E07E2; Fri, 11 Sep 2015 21:36:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64B60E07E2 for ; Fri, 11 Sep 2015 21:36:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20D81340B6E for ; Fri, 11 Sep 2015 21:36:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1614170 for ; Fri, 11 Sep 2015 21:36:26 +0000 (UTC) From: "Markos Chandras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markos Chandras" Message-ID: <1442007380.f3b7a35abb258019987890573b730f3c1f18ad04.hwoarang@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/rb_libtorrent/, net-libs/rb_libtorrent/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/rb_libtorrent/files/rb_libtorrent-1.0.6-fix-debug-build.patch net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild X-VCS-Directories: net-libs/rb_libtorrent/files/ net-libs/rb_libtorrent/ X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras X-VCS-Revision: f3b7a35abb258019987890573b730f3c1f18ad04 X-VCS-Branch: master Date: Fri, 11 Sep 2015 21:36:26 +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: 31136c8d-10f3-4eba-904b-2440176aa48a X-Archives-Hash: fa696d5a3d2d550e4632cac1fb21203a commit: f3b7a35abb258019987890573b730f3c1f18ad04 Author: Markos Chandras gentoo org> AuthorDate: Fri Sep 11 21:35:50 2015 +0000 Commit: Markos Chandras gentoo org> CommitDate: Fri Sep 11 21:36:20 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b7a35a net-libs/rb_libtorrent: Backport upstream patch to fix debug builds. Thanks to Eugene (#559728) Package-Manager: portage-2.2.20.1 .../rb_libtorrent-1.0.6-fix-debug-build.patch | 26 ++++++++++++++++++++++ net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild | 5 ++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/net-libs/rb_libtorrent/files/rb_libtorrent-1.0.6-fix-debug-build.patch b/net-libs/rb_libtorrent/files/rb_libtorrent-1.0.6-fix-debug-build.patch new file mode 100644 index 0000000..62429e7 --- /dev/null +++ b/net-libs/rb_libtorrent/files/rb_libtorrent-1.0.6-fix-debug-build.patch @@ -0,0 +1,26 @@ +Signed-off-by: Markos Chandras +X-Gentoo-Bug: 559728 +X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=559728 + +From 06ce6a2d8b048c5791e2cc5acd1dfe8845680a84 Mon Sep 17 00:00:00 2001 +From: Chocobo1 +Date: Sat, 1 Aug 2015 20:29:43 +0800 +Subject: [PATCH] Fix typo + +--- + src/torrent.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/torrent.cpp b/src/torrent.cpp +index d2da131..2e276ec 100644 +--- a/src/torrent.cpp ++++ b/src/torrent.cpp +@@ -675,7 +675,7 @@ namespace libtorrent + } + + #if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING +- debug_log("*** LEAVING SEED MODE (%s)", seed ? "as seed" : "as non-seed"); ++ debug_log("*** LEAVING SEED MODE (%s)", m_seed_mode ? "as seed" : "as non-seed"); + #endif + m_seed_mode = false; + // seed is false if we turned out not diff --git a/net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild b/net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild index 9bad389..4508582 100644 --- a/net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild +++ b/net-libs/rb_libtorrent/rb_libtorrent-1.0.6.ebuild @@ -41,7 +41,10 @@ DEPEND="${RDEPEND} RESTRICT="test" -PATCHES=( "${FILESDIR}"/${PN}-1.0.2-python.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-1.0.2-python.patch + "${FILESDIR}"/${P}-fix-debug-build.patch +) AUTOTOOLS_IN_SOURCE_BUILD=1