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 7919A1395E7 for ; Tue, 4 Aug 2015 16:18:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EA21E08AF; Tue, 4 Aug 2015 16:18:50 +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 C3DDAE08AF for ; Tue, 4 Aug 2015 16:18:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DDC1B340941 for ; Tue, 4 Aug 2015 16:18:48 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2162) id 29926118; Tue, 4 Aug 2015 16:18:46 +0000 (UTC) From: "Sebastien Fabbro (bicatali)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, bicatali@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-fs/cvmfs/files: cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch X-VCS-Directories: net-fs/cvmfs/files X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150804161846.29926118@oystercatcher.gentoo.org> Date: Tue, 4 Aug 2015 16:18:46 +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: a494064d-a10d-4044-8419-41ea56c87e4f X-Archives-Hash: 1097dd9d202acbebc93a7b8bd378ce25 bicatali 15/08/04 16:18:46 Modified: cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch Log: Fixed geoip patch to only check when server flag is set (bug #556570). Applied upstream. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360) Revision Changes Path 1.2 net-fs/cvmfs/files/cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cvmfs/files/cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cvmfs/files/cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-fs/cvmfs/files/cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch?r1=1.1&r2=1.2 Index: cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-fs/cvmfs/files/cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch 31 Jul 2015 20:09:57 -0000 1.1 +++ cvmfs-2.1.20.0_p05-geoip-missing-cmake.patch 4 Aug 2015 16:18:46 -0000 1.2 @@ -116,8 +116,8 @@ add_dependencies (python-geoip libgeoip) add_dependencies (geoip python-geoip) endif (GEOIP_BUILTIN) ---- CMakeLists.txt.orig 2015-02-23 13:51:47.000000000 +0000 -+++ CMakeLists.txt 2015-07-31 17:57:17.019920094 +0000 +--- CMakeLists.txt.orig 2015-08-04 15:33:53.383868890 +0000 ++++ CMakeLists.txt 2015-08-04 15:58:03.133842858 +0000 @@ -145,6 +145,12 @@ endif (EXISTS "${CMAKE_SOURCE_DIR}/bootstrap.sh") @@ -131,7 +131,12 @@ # set some default flags # # flags in CMAKE_C**_FLAGS are always passed to the compiler -@@ -313,8 +319,8 @@ +@@ -309,13 +315,15 @@ + set (INCLUDE_DIRECTORIES ${INCLUDE_DIRECTORIES} ${GTEST_INCLUDE_DIRS}) + endif (GOOGLETEST_BUILTIN) + ++if (BUILD_SERVER OR BUILD_UNITTESTS) + if (GEOIP_BUILTIN) include (${LIBGEOIP_BUILTIN_LOCATION}/CVMFS-CMakeLists.txt) include (${PYTHON_GEOIP_BUILTIN_LOCATION}/CVMFS-CMakeLists.txt) else (GEOIP_BUILTIN) @@ -140,5 +145,7 @@ + find_package (LibGeoIP REQUIRED) + find_python_module (GeoIP REQUIRED) endif (GEOIP_BUILTIN) ++endif (BUILD_SERVER OR BUILD_UNITTESTS) # required libraries for client and libcvmfs + if (BUILD_CVMFS OR BUILD_LIBCVMFS)