Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Feb 2013 08:36:51 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312090 - head/devel/tbb
Message-ID:  <201302120836.r1C8apkd053355@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Tue Feb 12 08:36:50 2013
New Revision: 312090
URL: http://svnweb.freebsd.org/changeset/ports/312090

Log:
  - Make fetchable again by updating to 4.1.2
  
    Changes:
  
    - Objects up to 128 MB are now cached by the tbbmalloc. Previously the
      threshold was 8MB. Objects larger than 128 MB are still processed by
      direct OS calls.
    - Concurrent_unordered_multiset and concurrent_unordered_multimap have
      been added, based on Microsoft* PPL prototype.
    - Ability to value-initialize a tbb::atomic<T> variable on construction
      in C++11, with const expressions properly supported.
  
    Community Preview Features:
  
    - Added a possibility to wait until all worker threads terminate.
      This is necessary before calling fork() from an application.
  
    Bugs fixed:
  
    - Fixed data race in tbbmalloc that might lead to memory leaks for large
      object allocations.
    - Fixed task_arena::enqueue() to use task_group_context of target arena.
    - Improved implementation of 64 bit atomics on ia32.
  
  Approved by:	martymac (maintainer)

Modified:
  head/devel/tbb/Makefile
  head/devel/tbb/distinfo

Modified: head/devel/tbb/Makefile
==============================================================================
--- head/devel/tbb/Makefile	Tue Feb 12 08:16:27 2013	(r312089)
+++ head/devel/tbb/Makefile	Tue Feb 12 08:36:50 2013	(r312090)
@@ -1,16 +1,12 @@
-# New ports collection makefile for:	tbb
-# Date created:				30 Sept 2007
-# Whom:					Arun Sharma <arun@sharma-home.net>
-#
+# Created by: Arun Sharma <arun@sharma-home.net>
 # $FreeBSD$
-#
 
 PORTNAME=	tbb
-PORTVERSION=	4.1.1
+PORTVERSION=	4.1.2
 CATEGORIES=	devel
 MASTER_SITES=	http://threadingbuildingblocks.org/sites/default/files/software_releases/source/ \
 		LOCAL/martymac
-DISTNAME=	tbb41_20121003oss_src
+DISTNAME=	tbb41_20130116oss_src
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	martymac@FreeBSD.org
@@ -25,15 +21,14 @@ USE_LDCONFIG=	yes
 USE_GMAKE=	yes
 ALL_TARGET=	default
 
-WRKSRC=	${WRKDIR}/tbb41_20121003oss
+WRKSRC=	${WRKDIR}/tbb41_20130116oss
 
 post-extract:
 	@${CP} ${WRKSRC}/build/FreeBSD.gcc.inc ${WRKSRC}/build/FreeBSD.${CC}.inc
 	@${CP} ${FILESDIR}/version_info_FreeBSD.sh ${WRKSRC}/build/
 
 post-patch:
-	@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
-		-e 's|gcc|${CC}|g' -e 's|g++|${CXX}|g' \
+	@${REINPLACE_CMD} -e 's|gcc|${CC}|g' -e 's|g++|${CXX}|g' \
 		${WRKSRC}/build/FreeBSD.${CC}.inc
 
 do-install:

Modified: head/devel/tbb/distinfo
==============================================================================
--- head/devel/tbb/distinfo	Tue Feb 12 08:16:27 2013	(r312089)
+++ head/devel/tbb/distinfo	Tue Feb 12 08:36:50 2013	(r312090)
@@ -1,2 +1,2 @@
-SHA256 (tbb41_20121003oss_src.tgz) = 5383727b9582a54cf4c4adbf22186b70e8eba276fcd3be81d746a937c5b47afc
-SIZE (tbb41_20121003oss_src.tgz) = 2250789
+SHA256 (tbb41_20130116oss_src.tgz) = 4ae2c10899e3b6ef2f686013ec5901fc658444ca90178efaca6014b0665c34b6
+SIZE (tbb41_20130116oss_src.tgz) = 2461689



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302120836.r1C8apkd053355>