public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/clblas/, sci-libs/clblas/files/
Date: Sat,  6 Jun 2015 09:46:08 +0000 (UTC)	[thread overview]
Message-ID: <1433581474.88f61f96f645a13363bb55fbc3364dc8bddd320b.jlec@gentoo> (raw)

commit:     88f61f96f645a13363bb55fbc3364dc8bddd320b
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Sat Jun  6 09:04:34 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jun  6 09:04:34 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=88f61f96

sci-libs/clblas: Drop old

Package-Manager: portage-2.2.18

 sci-libs/clblas/ChangeLog                          |  5 ++
 sci-libs/clblas/clblas-2.2.ebuild                  | 64 ----------------------
 .../files/clblas-2.2-client_CMakeLists.patch       | 11 ----
 .../clblas-2.2-library_tools_tune_CMakeLists.patch | 14 -----
 4 files changed, 5 insertions(+), 89 deletions(-)

diff --git a/sci-libs/clblas/ChangeLog b/sci-libs/clblas/ChangeLog
index c6ea0b4..5ebd9c6 100644
--- a/sci-libs/clblas/ChangeLog
+++ b/sci-libs/clblas/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jun 2015; Marius Brehler <marbre@linux.sungazer.de> -clblas-2.2.ebuild,
+  -files/clblas-2.2-client_CMakeLists.patch,
+  -files/clblas-2.2-library_tools_tune_CMakeLists.patch:
+  sci-libs/clblas: Drop old
+
   05 Jun 2015; Marius Brehler <marbre@linux.sungazer.de> clblas-2.2.ebuild,
   clblas-2.4.ebuild, clblas-9999.ebuild:
   sci-libs/clblas: Cleanup ebuilds

diff --git a/sci-libs/clblas/clblas-2.2.ebuild b/sci-libs/clblas/clblas-2.2.ebuild
deleted file mode 100644
index ff407df..0000000
--- a/sci-libs/clblas/clblas-2.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils python-single-r1
-
-MY_PN="clBLAS"
-
-DESCRIPTION="A software library containing BLAS routines for OpenCL"
-HOMEPAGE="https://github.com/clMathLibraries/clBLAS"
-SRC_URI="https://github.com/clMathLibraries/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-S="${WORKDIR}/${MY_PN}-${PV}/src"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+client examples +ktest performance test"
-
-RDEPEND="
-	>=sys-devel/gcc-4.6:*
-	virtual/opencl
-	|| ( >=dev-util/amdapp-2.9 dev-util/intel-ocl-sdk )
-	dev-libs/boost
-	performance? ( ${PYTHON_DEPS} )
-	"
-DEPEND="${RDEPEND}"
-#	test? (
-#		>=dev-cpp/gtest-1.6.0
-#		>=sci-libs/acml-6.1.0.3
-#	)"
-
-# The tests only get compiled to an executable named Test, which is not recogniozed by cmake.
-# Therefore src_test() won't execute any test.
-RESTRICT="test"
-
-PATCHES=(
-	"${FILESDIR}/${P}"-client_CMakeLists.patch
-	"${FILESDIR}/${P}"-library_tools_tune_CMakeLists.patch
-	"${FILESDIR}"/clblas-samples_CMakeLists.patch
-	"${FILESDIR}"/clblas-scripts_perf_CMakeLists.patch
-)
-
-pkg_pretend() {
-	if [[ ${MERGE_TYPE} != binary ]]; then
-		if [[ $(gcc-major-version) -lt 4 ]] || ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ]] ) ; then
-			die "Compilation with gcc older than 4.6 is not supported."
-		fi
-	fi
-}
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use_build client CLIENT)
-		$(cmake-utils_use_build examples SAMPLE)
-		$(cmake-utils_use_build ktest KTEST)
-		$(cmake-utils_use_build performance PERFORMANCE)
-		$(cmake-utils_use_build test TEST)
-	)
-	cmake-utils_src_configure
-}

diff --git a/sci-libs/clblas/files/clblas-2.2-client_CMakeLists.patch b/sci-libs/clblas/files/clblas-2.2-client_CMakeLists.patch
deleted file mode 100644
index 552e230..0000000
--- a/sci-libs/clblas/files/clblas-2.2-client_CMakeLists.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- client/CMakeLists.txt	2014-06-19 22:53:25.000000000 +0200
-+++ client/CMakeLists.txt.new	2015-03-23 16:30:39.164046584 +0100
-@@ -52,7 +52,7 @@ include_directories(
- 
- add_executable(client ${CLIENT_SRC} ${CLIENT_HEADER})
- target_link_libraries(client ${Boost_LIBRARIES} ${OPENCL_LIBRARIES} clBLAS)
--set_target_properties( client PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/staging" )
-+set_target_properties( client PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/staging" OUTPUT_NAME clBLAS-client )
- 
- add_executable(testPerfWrapper ${WRAPPER_SRC})
- target_link_libraries(testPerfWrapper ${Boost_LIBRARIES})

diff --git a/sci-libs/clblas/files/clblas-2.2-library_tools_tune_CMakeLists.patch b/sci-libs/clblas/files/clblas-2.2-library_tools_tune_CMakeLists.patch
deleted file mode 100644
index 5f1f763..0000000
--- a/sci-libs/clblas/files/clblas-2.2-library_tools_tune_CMakeLists.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Install tune as clBLAS-tune.
-
-Patch by Marius Brehler.
---- library/tools/tune/CMakeLists.txt
-+++ library/tools/tune/CMakeLists.txt
-@@ -138,7 +138,7 @@ endif()
- add_executable(tune ${TOOLS_SRC} ${TOOLS_EXTERNAL_SRC})
- add_dependencies(tune GENERATE_CLT)
- target_link_libraries(tune ${OPENCL_LIBRARIES} ${TIME_LIBRARY} ${MATH_LIBRARY})
--set_target_properties( tune PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/staging" )
-+set_target_properties( tune PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/staging" OUTPUT_NAME clBLAS-tune )
- 
- # CPack configuration; include the executable into the package
- install( TARGETS tune


             reply	other threads:[~2015-06-06  9:46 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-06  9:46 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-11-28 18:08 [gentoo-commits] proj/sci:master commit in: sci-libs/clblas/, sci-libs/clblas/files/ Justin Lecher
2015-06-06  9:46 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=1433581474.88f61f96f645a13363bb55fbc3364dc8bddd320b.jlec@gentoo \
    --to=jlec@gentoo.org \
    --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