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 EC68D139335 for ; Mon, 28 Jun 2021 19:42:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3391E084A; Mon, 28 Jun 2021 19:42:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBE87E084A for ; Mon, 28 Jun 2021 19:42:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 777A5335D5D for ; Mon, 28 Jun 2021 19:42:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D31F37B4 for ; Mon, 28 Jun 2021 19:42:48 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1624909037.06a2a4dc6eac81683c0221b0e47ac3a23f9c84ff.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/cvmfs/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/cvmfs/files/cvmfs-2.7.2-gcc-version.patch X-VCS-Directories: net-fs/cvmfs/files/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 06a2a4dc6eac81683c0221b0e47ac3a23f9c84ff X-VCS-Branch: master Date: Mon, 28 Jun 2021 19:42:48 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 78389f2c-29c2-4606-98b6-9e2a439daf2f X-Archives-Hash: b9c2ca799fa4dfaaffea61c998247ca2 commit: 06a2a4dc6eac81683c0221b0e47ac3a23f9c84ff Author: Guilherme Amadio gentoo org> AuthorDate: Mon Jun 28 19:37:17 2021 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Mon Jun 28 19:37:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a2a4dc net-fs/cvmfs: remove unused patch Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Guilherme Amadio gentoo.org> net-fs/cvmfs/files/cvmfs-2.7.2-gcc-version.patch | 59 ------------------------ 1 file changed, 59 deletions(-) diff --git a/net-fs/cvmfs/files/cvmfs-2.7.2-gcc-version.patch b/net-fs/cvmfs/files/cvmfs-2.7.2-gcc-version.patch deleted file mode 100644 index ff76b574670..00000000000 --- a/net-fs/cvmfs/files/cvmfs-2.7.2-gcc-version.patch +++ /dev/null @@ -1,59 +0,0 @@ -From cdeb988a7ece84191ec3496d55b99d82ca9face5 Mon Sep 17 00:00:00 2001 -From: Guilherme Amadio -Date: Fri, 19 Jun 2020 11:19:14 +0200 -Subject: [PATCH] Remove broken version checks which fail for GCC 10 - ---- - cmake/Modules/cvmfs_compiler.cmake | 27 +++------------------------ - 1 file changed, 3 insertions(+), 24 deletions(-) - -diff --git a/cmake/Modules/cvmfs_compiler.cmake b/cmake/Modules/cvmfs_compiler.cmake -index 2560d231c..e473467b3 100644 ---- a/cmake/Modules/cvmfs_compiler.cmake -+++ b/cmake/Modules/cvmfs_compiler.cmake -@@ -35,33 +35,12 @@ set (ENV{LDFLAGS} "${LDFLAGS}") - # - set (CVMFS_FIX_FLAGS "") - set (CVMFS_OPT_FLAGS "-Os") --if (CMAKE_COMPILER_IS_GNUCC) -- message (STATUS "checking gcc version...") -- execute_process ( -- COMMAND ${CMAKE_C_COMPILER} -v -- OUTPUT_VARIABLE CVMFS_GCC_VERSION -- ERROR_VARIABLE CVMFS_GCC_VERSION -- ) -- STRING(REGEX REPLACE ".*([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" CVMFS_GCC_MAJOR "${CVMFS_GCC_VERSION}") -- STRING(REGEX REPLACE ".*[0-9]+\\.([0-9]+)\\.[0-9]+.*" "\\1" CVMFS_GCC_MINOR "${CVMFS_GCC_VERSION}") -- if (${CVMFS_GCC_MAJOR} LESS 4) -- message (FATAL_ERROR "GCC < 4.1 unsupported") -- endif (${CVMFS_GCC_MAJOR} LESS 4) -- if (${CVMFS_GCC_MAJOR} EQUAL 4) -- if (${CVMFS_GCC_MINOR} LESS 2) -- set (CVMFS_OPT_FLAGS "-O1") -- endif (${CVMFS_GCC_MINOR} LESS 2) -- endif (${CVMFS_GCC_MAJOR} EQUAL 4) -- if (${CVMFS_GCC_MAJOR} GREATER 6) -- set (CVMFS_FIX_FLAGS "-Wno-format-truncation") -- endif (${CVMFS_GCC_MAJOR} GREATER 6) --endif (CMAKE_COMPILER_IS_GNUCC) - message (STATUS "using compiler opt flag ${CVMFS_OPT_FLAGS}") - set (CVMFS_BASE_C_FLAGS "${CVMFS_OPT_FLAGS} -g -fno-strict-aliasing -fasynchronous-unwind-tables -fno-omit-frame-pointer -fwrapv -fvisibility=hidden -Wall ${CVMFS_FIX_FLAGS}") - if (APPLE) -- if (${CMAKE_SYSTEM_VERSION} GREATER 14.5.0) -+ if (${CMAKE_SYSTEM_VERSION} VERSION_GREATER 14.5.0) - set(CVMFS_BASE_C_FLAGS "${CVMFS_BASE_C_FLAGS} -mmacosx-version-min=10.11") -- endif(${CMAKE_SYSTEM_VERSION} GREATER 14.5.0) -+ endif(${CMAKE_SYSTEM_VERSION} VERSION_GREATER 14.5.0) - endif(APPLE) - set (CVMFS_BASE_CXX_FLAGS "${CVMFS_BASE_C_FLAGS} -fno-exceptions") - if (NOT USING_CLANG) -@@ -94,4 +73,4 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") - message("Enable inotify support") - set(CVMFS_ENABLE_INOTIFY ON) - endif(HAS_INOTIFY_INIT1) --endif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") -\ No newline at end of file -+endif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") --- -2.27.0 -