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 D184113832E for ; Thu, 11 Aug 2016 08:09:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F70E21C11C; Thu, 11 Aug 2016 08:09:24 +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 E091121C26B for ; Thu, 11 Aug 2016 08:09:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 82344340C53 for ; Thu, 11 Aug 2016 08:09:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C04F245D for ; Thu, 11 Aug 2016 08:09:17 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1470902878.a10be51d3cce8abc3c5b7644e4d6d07f4af4f3dc.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-leechcraft/lc-bittorrent/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-leechcraft/lc-bittorrent/files/boost-1.50.patch app-leechcraft/lc-bittorrent/files/boost-1.52.patch X-VCS-Directories: app-leechcraft/lc-bittorrent/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: a10be51d3cce8abc3c5b7644e4d6d07f4af4f3dc X-VCS-Branch: master Date: Thu, 11 Aug 2016 08:09:17 +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: 52fc992e-e05e-4816-8b7f-c1f552daaaed X-Archives-Hash: 6f5adfa330c724f9dbe644a1711fdde5 commit: a10be51d3cce8abc3c5b7644e4d6d07f4af4f3dc Author: Michael Mair-Keimberger (asterix) gmail com> AuthorDate: Thu Jul 7 17:13:23 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Aug 11 08:07:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a10be51d app-leechcraft/lc-bittorrent: remove unused patches Signed-off-by: Patrice Clement gentoo.org> .../lc-bittorrent/files/boost-1.50.patch | 38 ---------------------- .../lc-bittorrent/files/boost-1.52.patch | 14 -------- 2 files changed, 52 deletions(-) diff --git a/app-leechcraft/lc-bittorrent/files/boost-1.50.patch b/app-leechcraft/lc-bittorrent/files/boost-1.50.patch deleted file mode 100644 index 2abb319..0000000 --- a/app-leechcraft/lc-bittorrent/files/boost-1.50.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff --git a/src/plugins/bittorrent/CMakeLists.txt b/src/plugins/bittorrent/CMakeLists.txt -index de8a2f9..45d26da 100644 ---- a/src/plugins/bittorrent/CMakeLists.txt -+++ b/src/plugins/bittorrent/CMakeLists.txt -@@ -153,7 +153,6 @@ IF (WIN32) - ENDIF (WIN32) - #ADD_DEFINITIONS(-DBOOST_DYN_LINK) - ADD_DEFINITIONS(-DTORRENT_LINKING_SHARED) --ADD_DEFINITIONS(-DBOOST_FILESYSTEM_VERSION=2) #workaround for building with boost 1.46 - #ADD_DEFINITIONS(-D_DLL) - IF (NOT LC_NO_MOC) - QT4_WRAP_CPP (MOC_SRCS ${HEADERS}) -diff --git a/src/plugins/bittorrent/torrentmaker.cpp b/src/plugins/bittorrent/torrentmaker.cpp -index 313a6a5..467c4d8 100644 ---- a/src/plugins/bittorrent/torrentmaker.cpp -+++ b/src/plugins/bittorrent/torrentmaker.cpp -@@ -40,7 +40,11 @@ namespace LeechCraft - { - bool FileFilter (const boost::filesystem::path& filename) - { -+#if BOOST_FILESYSTEM_VERSION == 2 - if (filename.leaf () [0] == '.') -+#else -+ if (filename.leaf ().string () [0] == '.') -+#endif - return false; - QFileInfo fi (QString::fromUtf8 (filename.string ().c_str ())); - if ((fi.isDir () || -@@ -74,7 +78,9 @@ namespace LeechCraft - return; - } - -+#if BOOST_FILESYSTEM_VERSION == 2 - boost::filesystem::path::default_name_check (boost::filesystem::no_check); -+#endif - - libtorrent::file_storage fs; - #if LIBTORRENT_VERSION_NUM >= 1600 diff --git a/app-leechcraft/lc-bittorrent/files/boost-1.52.patch b/app-leechcraft/lc-bittorrent/files/boost-1.52.patch deleted file mode 100644 index bb5208a..0000000 --- a/app-leechcraft/lc-bittorrent/files/boost-1.52.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/src/plugins/bittorrent/torrentplugin.cpp b/src/plugins/bittorrent/torrentplugin.cpp -index b41f0f2..c20f847 100644 ---- a/src/plugins/bittorrent/torrentplugin.cpp -+++ b/src/plugins/bittorrent/torrentplugin.cpp -@@ -31,6 +31,9 @@ - #include - #include - #include -+#include -+#include -+#include - #include - #include - #include