From: "Guilherme Amadio" <amadio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/
Date: Wed, 15 Jul 2020 22:28:16 +0000 (UTC) [thread overview]
Message-ID: <1594851782.a9673ae5ec7b31fd4061a262403d3e8f18e28927.amadio@gentoo> (raw)
commit: a9673ae5ec7b31fd4061a262403d3e8f18e28927
Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 15 22:09:28 2020 +0000
Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Wed Jul 15 22:23:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9673ae5
dev-cpp/tbb: version bump to 2020.3
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
dev-cpp/tbb/Manifest | 1 +
dev-cpp/tbb/tbb-2020.3.ebuild | 151 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 152 insertions(+)
diff --git a/dev-cpp/tbb/Manifest b/dev-cpp/tbb/Manifest
index 55a4e5475b0..4fb83d37f0e 100644
--- a/dev-cpp/tbb/Manifest
+++ b/dev-cpp/tbb/Manifest
@@ -1,2 +1,3 @@
DIST tbb-2019.8.tar.gz 2580540 BLAKE2B 1cddb0c8ade6f6363811b7f9b323a2bb7739a18114acd56e1b4a13f33904ddff8cb6aec9b4b0add995cd307ff7815f0b55ce33fa64b7dd92c0062fbaa13d0833 SHA512 924a8dde011452a2c46c5152942a9835e76fe5610e08b69eb0e985de3fb46bdb49f0f628d10fa7704428f6e61ec63f7002da5399d47da6ee6004fa236d346dc8
DIST tbb-2020.2.tar.gz 2637172 BLAKE2B 6b6e65732d3971f7374058513004ca3cfc3855b83c0a2dde59d50e08c26ff220470e31db86f4ab9f009c7e02e454a00a348730e63c829aa8d217320f7879cfc9 SHA512 6d7412fa6ce12d27736af3c8942c5ab5ea6945dd3ca93f309535c0dba3ff757d6507a5ffc3bcd73e6fdcda043cdedfa657631b25ae86fbf221d0f1d66a85b48f
+DIST tbb-2020.3.tar.gz 2639788 BLAKE2B 3e92bccdc8179fc049379ccbb8ad7f615623177abc61d813b1a601020c345137bfd7d4c4600cf5b0d587e5ebef677635c3c8124d06b05fdd3325128ed8c9f84a SHA512 04c4b5501418792827190691d03d20d4dc1fd3cbbcf459a4d40c5c2281d964e658f31f133ad3907b78e17ed04f4ff16728ed89487ed0ce2cb239f23feb34bd87
diff --git a/dev-cpp/tbb/tbb-2020.3.ebuild b/dev-cpp/tbb/tbb-2020.3.ebuild
new file mode 100644
index 00000000000..25976f821ba
--- /dev/null
+++ b/dev-cpp/tbb/tbb-2020.3.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils flag-o-matic multilib-minimal multilib toolchain-funcs
+
+PV1="$(ver_cut 1)"
+PV2="$(ver_cut 2)"
+MY_PV="${PV1}_U${PV2}"
+
+DESCRIPTION="High level abstract threading library"
+HOMEPAGE="https://www.threadingbuildingblocks.org"
+SRC_URI="https://github.com/intel/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug examples"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/oneTBB-${MY_PV}"
+
+DOCS=( CHANGES README README.md doc/Release_Notes.txt )
+
+PATCHES=( "${FILESDIR}"/${PN}-2020.1-makefile-debug.patch )
+
+src_prepare() {
+ default
+
+ find include -name \*.html -delete || die
+
+ # Give it a soname on FreeBSD
+ echo 'LIB_LINK_FLAGS += -Wl,-soname=$(BUILDING_LIBRARY)' >> build/FreeBSD.gcc.inc
+ # Set proper versionning on FreeBSD
+ sed -i -e '/.DLL =/s/$/.1/' build/FreeBSD.inc || die
+
+ use debug || sed -i -e '/_debug/d' Makefile
+}
+
+multilib_src_configure() {
+ # pc files are for debian and fedora compatibility
+ # some deps use them
+ cat <<-EOF > ${PN}.pc.template
+ prefix=${EPREFIX}/usr
+ libdir=\${prefix}/$(get_libdir)
+ includedir=\${prefix}/include
+ Name: ${PN}
+ Description: ${DESCRIPTION}
+ Version: ${PV}
+ URL: ${HOMEPAGE}
+ Cflags: -I\${includedir}
+ EOF
+ cp ${PN}.pc.template ${PN}.pc || die
+ cat <<-EOF >> ${PN}.pc
+ Libs: -L\${libdir} -ltbb
+ Libs.private: -lm -lrt
+ EOF
+ cp ${PN}.pc.template ${PN}malloc.pc || die
+ cat <<-EOF >> ${PN}malloc.pc
+ Libs: -L\${libdir} -ltbbmalloc
+ Libs.private: -lm -lrt
+ EOF
+ cp ${PN}.pc.template ${PN}malloc_proxy.pc || die
+ cat <<-EOF >> ${PN}malloc_proxy.pc
+ Libs: -L\${libdir} -ltbbmalloc_proxy
+ Libs.private: -lrt
+ Requires: tbbmalloc
+ EOF
+}
+
+local_src_compile() {
+ cd "${S}"
+
+ local comp arch
+ local bt buildtypes
+
+ case ${MULTILIB_ABI_FLAG} in
+ abi_x86_64) arch=x86_64 ;;
+ abi_x86_32) arch=ia32 ;;
+# abi_ppc_64) arch=ppc64 ;;
+# abi_ppc_32) arch=ppc32 ;;
+ esac
+
+ case "$(tc-getCXX)" in
+ *clang*) comp="clang" ;;
+ *g++*) comp="gcc" ;;
+ *ic*c) comp="icc" ;;
+ *) die "compiler $(tc-getCXX) not supported by build system" ;;
+ esac
+
+ if use debug ; then
+ buildtypes="release debug"
+ else
+ buildtypes="release"
+ fi
+
+ for bt in ${buildtypes}; do
+ CXX="$(tc-getCXX)" \
+ CC="$(tc-getCC)" \
+ AS="$(tc-getAS)" \
+ arch=${arch} \
+ CPLUS_FLAGS="${CXXFLAGS}" \
+ emake compiler=${comp} work_dir="${BUILD_DIR}" tbb_root="${S}" cfg=${bt} $@
+ done
+}
+
+multilib_src_compile() {
+ local_src_compile tbb tbbmalloc
+}
+
+multilib_src_test() {
+ local_src_compile test
+}
+
+multilib_src_install() {
+ local bt
+ local buildtypes
+ if use debug ; then
+ buildtypes="release debug"
+ else
+ buildtypes="release"
+ fi
+ for bt in ${buildtypes}; do
+ cd "${BUILD_DIR}_${bt}" || die
+ local l
+ for l in $(find . -name lib\*$(get_libname \*)); do
+ dolib.so ${l}
+ local bl=$(basename ${l})
+ dosym ${bl} /usr/$(get_libdir)/${bl%%.*}$(get_libname)
+ done
+ done
+
+ cd "${BUILD_DIR}" || die
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins *.pc
+}
+
+multilib_src_install_all() {
+ doheader -r include/*
+
+ einstalldocs
+
+ if use examples ; then
+ insinto /usr/share/doc/${PF}/examples/build
+ doins build/*.inc
+ insinto /usr/share/doc/${PF}/examples
+ doins -r examples
+ docompress -x "/usr/share/doc/${PF}/examples"
+ fi
+}
next reply other threads:[~2020-07-15 22:28 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-15 22:28 Guilherme Amadio [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-23 15:28 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/ Fabian Groffen
2024-07-20 21:44 James Le Cuirot
2024-07-14 22:39 James Le Cuirot
2024-04-19 12:24 Sam James
2024-01-28 22:14 Sam James
2023-12-04 10:52 Sam James
2023-07-26 4:08 Sam James
2023-06-09 17:22 Arthur Zamarin
2023-06-09 16:43 Arthur Zamarin
2023-06-09 16:13 Arthur Zamarin
2023-06-09 14:38 Sam James
2023-04-15 2:10 Sam James
2023-01-13 12:37 Arthur Zamarin
2023-01-05 4:38 Sam James
2023-01-05 4:38 Sam James
2023-01-05 4:38 Sam James
2023-01-05 4:38 Sam James
2023-01-05 4:38 Sam James
2022-12-03 4:47 WANG Xuerui
2022-11-25 12:08 Arthur Zamarin
2022-11-25 12:05 Arthur Zamarin
2022-11-23 17:33 Andrew Ammerlaan
2022-11-23 14:12 Jakov Smolić
2022-11-22 20:16 Sam James
2022-11-19 4:03 Sam James
2022-11-19 4:03 Sam James
2022-11-19 3:34 Sam James
2022-10-10 20:39 Sam James
2022-10-10 18:34 Sam James
2022-09-22 5:48 Sam James
2022-07-03 7:06 Fabian Groffen
2022-05-19 13:36 Agostino Sarubbo
2022-05-19 9:29 Agostino Sarubbo
2022-05-16 12:51 Agostino Sarubbo
2022-05-13 20:09 Jakov Smolić
2022-03-21 15:20 Agostino Sarubbo
2022-01-02 22:49 Sam James
2022-01-02 22:42 Sam James
2022-01-02 22:32 Sam James
2021-10-06 8:33 Jakov Smolić
2021-07-14 16:15 Marek Szuba
2021-01-07 16:52 Sam James
2021-01-07 10:09 Sam James
2021-01-06 8:09 Sam James
2021-01-06 8:09 Sam James
2020-04-16 15:10 Agostino Sarubbo
2020-04-15 12:15 Guilherme Amadio
2020-04-15 12:15 Guilherme Amadio
2020-04-01 8:51 Guilherme Amadio
2020-03-21 15:53 Agostino Sarubbo
2020-03-20 11:29 Agostino Sarubbo
2020-03-20 9:04 Agostino Sarubbo
2020-03-20 8:59 Agostino Sarubbo
2019-10-03 9:34 Guilherme Amadio
2019-08-16 14:35 Guilherme Amadio
2019-08-16 14:35 Guilherme Amadio
2019-08-16 14:35 Guilherme Amadio
2019-05-16 19:30 Aaron Bauman
2019-05-07 19:39 Michał Górny
2018-05-16 22:57 Aaron Bauman
2018-04-24 15:58 Matthias Maier
2018-04-19 12:37 Amy Liffey
2017-12-29 13:35 Fabian Groffen
2017-11-27 19:46 Sergei Trofimovich
2017-07-08 10:51 Alexis Ballier
2017-07-01 9:52 Sergei Trofimovich
2017-04-29 12:38 Jeroen Roovers
2017-03-31 12:09 Agostino Sarubbo
2017-03-31 8:52 Michael Weber
2017-03-31 2:20 Matthias Maier
2017-03-31 2:16 Matthias Maier
2017-03-31 2:16 Matthias Maier
2016-06-07 16:47 Tobias Klausmann
2015-11-26 10:36 Justin Lecher
2015-11-08 17:47 Justin Lecher
2015-09-23 13:04 Justin Lecher
2015-09-20 8:32 Jeroen Roovers
2015-09-06 12:43 Agostino Sarubbo
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=1594851782.a9673ae5ec7b31fd4061a262403d3e8f18e28927.amadio@gentoo \
--to=amadio@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