public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aisha Tammy" <gentoo@aisha.cc>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/files/
Date: Fri, 25 Sep 2020 02:33:45 +0000 (UTC)	[thread overview]
Message-ID: <1601001083.b4c06e8aa5026aca4553ea949d46a291e619ea77.epsilon-0@gentoo> (raw)

commit:     b4c06e8aa5026aca4553ea949d46a291e619ea77
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri Sep 25 02:31:23 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Fri Sep 25 02:31:23 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=b4c06e8a

sci-libs/arrayfire: drop redundant patches

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 .../files/arrayfire-3.3.2-FindLAPACKE.patch        | 28 ------------------
 ...-fix-for-CUDA-Compile-PTX-generated-names.patch | 34 ----------------------
 2 files changed, 62 deletions(-)

diff --git a/sci-libs/arrayfire/files/arrayfire-3.3.2-FindLAPACKE.patch b/sci-libs/arrayfire/files/arrayfire-3.3.2-FindLAPACKE.patch
deleted file mode 100644
index ab9b2f5e9..000000000
--- a/sci-libs/arrayfire/files/arrayfire-3.3.2-FindLAPACKE.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://github.com/arrayfire/arrayfire/issues/1419
-
-
-From 2691d99693d6185d4f322a7776b1ced0e76877d2 Mon Sep 17 00:00:00 2001
-From: Shehzan Mohammed <shehzan@arrayfire.com>
-Date: Wed, 18 May 2016 10:18:34 -0400
-Subject: [PATCH] BUGFIX Correctly handle lapacke found by package config
-
----
- CMakeModules/FindLAPACKE.cmake | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeModules/FindLAPACKE.cmake b/CMakeModules/FindLAPACKE.cmake
-index 5ecf7be..2ebd8dd 100644
---- a/CMakeModules/FindLAPACKE.cmake
-+++ b/CMakeModules/FindLAPACKE.cmake
-@@ -143,7 +143,7 @@ ELSE(PC_LAPACKE_FOUND)
-     ENDIF(LAPACKE_ROOT_DIR)
- ENDIF(PC_LAPACKE_FOUND)
- 
--IF(LAPACKE_LIB AND LAPACK_LIB)
-+IF(PC_LAPACKE_FOUND OR (LAPACKE_LIB AND LAPACK_LIB))
-     SET(LAPACK_LIBRARIES ${LAPACKE_LIB} ${LAPACK_LIB})
- ENDIF()
- IF(LAPACKE_INCLUDES)
--- 
-2.7.3
-

diff --git a/sci-libs/arrayfire/files/arrayfire-3.4.2-Build-fix-for-CUDA-Compile-PTX-generated-names.patch b/sci-libs/arrayfire/files/arrayfire-3.4.2-Build-fix-for-CUDA-Compile-PTX-generated-names.patch
deleted file mode 100644
index 3cc51b1b3..000000000
--- a/sci-libs/arrayfire/files/arrayfire-3.4.2-Build-fix-for-CUDA-Compile-PTX-generated-names.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 13c484e10537b52bcd012e6850520659769cece6 Mon Sep 17 00:00:00 2001
-From: Shehzan Mohammed <shehzan@arrayfire.com>
-Date: Thu, 22 Dec 2016 18:10:54 -0500
-Subject: [PATCH] Build fix for CUDA Compile PTX generated names by CMake 3.7
-
----
- src/backend/cuda/CMakeLists.txt | 10 +++++++++-
- 1 file changed, 9 insertions(+), 1 deletion(-)
-
-diff --git a/src/backend/cuda/CMakeLists.txt b/src/backend/cuda/CMakeLists.txt
-index 9cfa8a5..2f2045d 100644
---- a/src/backend/cuda/CMakeLists.txt
-+++ b/src/backend/cuda/CMakeLists.txt
-@@ -315,8 +315,16 @@ foreach(ptx_src_file ${ptx_sources})
- 
-       get_filename_component(_name "${ptx_src_file}" NAME_WE)
- 
-+      # CUDA_COMPILE_PTX from CMake 3.7 has new features that require this change
-+      # TODO Fix this with a more complete solution
-+      IF(CMAKE_VERSION VERSION_LESS 3.7) # Before 3.7
-+        SET(NAME_APPEND "")
-+      ELSE(CMAKE_VERSION VERSION_LESS 3.7)  # 3.7 and newer
-+        SET(NAME_APPEND "_1")
-+      ENDIF(CMAKE_VERSION VERSION_LESS 3.7)
-+
-       set(_gen_file_name
--        "${PROJECT_BINARY_DIR}/src/backend/cuda/cuda_compile_ptx_generated_${_name}.cu.ptx")
-+        "${PROJECT_BINARY_DIR}/src/backend/cuda/cuda_compile_ptx${NAME_APPEND}_generated_${_name}.cu.ptx")
-       set(_out_file_name
-         "${PROJECT_BINARY_DIR}/src/backend/cuda/${_name}.ptx")
- 
--- 
-2.10.2
-


             reply	other threads:[~2020-09-25  2:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-25  2:33 Aisha Tammy [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-09-09  7:11 [gentoo-commits] proj/sci:master commit in: sci-libs/arrayfire/files/ Justin Lecher
2015-01-22 10:14 Justin Lecher
2015-01-10 18:03 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1601001083.b4c06e8aa5026aca4553ea949d46a291e619ea77.epsilon-0@gentoo \
    --to=gentoo@aisha.cc \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox