From owner-svn-ports-head@freebsd.org Mon Jan 8 22:07:38 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE9B8E660ED; Mon, 8 Jan 2018 22:07:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A08877A6F; Mon, 8 Jan 2018 22:07:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 000705E37; Mon, 8 Jan 2018 22:07:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w08M7bS0019380; Mon, 8 Jan 2018 22:07:37 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w08M7bNv019376; Mon, 8 Jan 2018 22:07:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201801082207.w08M7bNv019376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 8 Jan 2018 22:07:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458487 - in head/devel/google-perftools: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel/google-perftools: . files X-SVN-Commit-Revision: 458487 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jan 2018 22:07:38 -0000 Author: yuri Date: Mon Jan 8 22:07:37 2018 New Revision: 458487 URL: https://svnweb.freebsd.org/changeset/ports/458487 Log: devel/google-perftools: Update to 2.6.3 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13750 Added: head/devel/google-perftools/files/patch-Makefile.am (contents, props changed) Deleted: head/devel/google-perftools/files/patch-Makefile.in Modified: head/devel/google-perftools/Makefile head/devel/google-perftools/distinfo head/devel/google-perftools/pkg-plist Modified: head/devel/google-perftools/Makefile ============================================================================== --- head/devel/google-perftools/Makefile Mon Jan 8 21:59:15 2018 (r458486) +++ head/devel/google-perftools/Makefile Mon Jan 8 22:07:37 2018 (r458487) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= google-perftools -PORTVERSION= 2.6.1 -PORTREVISION= 1 +DISTVERSIONPREFIX= gperftools- +DISTVERSION= 2.6.3 CATEGORIES= devel MASTER_SITES= https://github.com/gperftools/gperftools/releases/download/gperftools-${PORTVERSION}/ DISTNAME= gperftools-${PORTVERSION} -MAINTAINER= yuri@rawbw.com +MAINTAINER= yuri@FreeBSD.org COMMENT= Fast, multi-threaded malloc() and nifty performance analysis tools LICENSE= BSD3CLAUSE @@ -20,21 +20,23 @@ BROKEN_sparc64= fails to build: assembly not supporte LIB_DEPENDS= libunwind.so:devel/libunwind -WRKSRC= ${WRKDIR}/gperftools-${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/gperftools -GNU_CONFIGURE= yes USES= compiler gmake libtool +GNU_CONFIGURE= yes USE_LDCONFIG= yes TEST_TARGET= check LIBS+= -lexecinfo -OPTIONS_DEFINE= DOCS -OPTIONS_DEFAULT=PAGE8K ALIGN16 -OPTIONS_SINGLE= PAGESIZE ALIGN +PLIST_SUB= SHL3=4.5.1 SHL1=4 + +OPTIONS_DEFINE= DOCS +OPTIONS_SINGLE= PAGESIZE ALIGN OPTIONS_SINGLE_ALIGN= ALIGN8 ALIGN16 -OPTIONS_SINGLE_PAGESIZE=PAGE8K PAGE32K PAGE64K +OPTIONS_SINGLE_PAGESIZE= PAGE8K PAGE32K PAGE64K +OPTIONS_DEFAULT= PAGE8K ALIGN16 + ALIGN_DESC= The tcmalloc allocation alignment ALIGN8_DESC= 8 bytes allocation alignment ALIGN16_DESC= 16 bytes allocation alignment @@ -42,12 +44,15 @@ PAGESIZE_DESC= The tcmalloc internal page size PAGE8K_DESC= 8K page size PAGE32K_DESC= 32K page size PAGE64K_DESC= 64K page size + ALIGN8_CONFIGURE_ON= --with-tcmalloc-alignment=8 ALIGN16_CONFIGURE_ON= --with-tcmalloc-alignment=16 PAGE8K_CONFIGURE_ON= --with-tcmalloc-pagesize=8 PAGE32K_CONFIGURE_ON= --with-tcmalloc-pagesize=32 PAGE64K_CONFIGURE_ON= --with-tcmalloc-pagesize=64 +PORTDOCS= * + .include .if ${COMPILER_TYPE} == "clang" && !defined(USE_GCC) @@ -59,18 +64,6 @@ CXXFLAGS+= -fno-builtin CONFIGURE_ARGS+=--enable-frame-pointers .endif -post-patch: -.if ${COMPILER_TYPE} == "clang" && !defined(USE_GCC) - @${REINPLACE_CMD} -Ee \ - 's|-fno-builtin-[a-z_]+||g' \ - ${WRKSRC}/Makefile.in -.endif - -post-patch-DOCS-off: - @${REINPLACE_CMD} -e \ - '/^install-data-am:/ s|install-dist_docDATA||' \ - ${WRKSRC}/Makefile.in - post-build: @${ECHO} @${ECHO} "Please run 'make check' (requires bash)." @@ -80,7 +73,6 @@ post-build: post-install: ${MV} ${STAGEDIR}${PREFIX}/bin/pprof ${STAGEDIR}${PREFIX}/bin/perftools-pprof - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so.* .include Modified: head/devel/google-perftools/distinfo ============================================================================== --- head/devel/google-perftools/distinfo Mon Jan 8 21:59:15 2018 (r458486) +++ head/devel/google-perftools/distinfo Mon Jan 8 22:07:37 2018 (r458487) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499701249 -SHA256 (gperftools-2.6.1.tar.gz) = 38b467eb42a028f253d227fbc428263cb39e6c8687c047466aa2ce5bb4699d81 -SIZE (gperftools-2.6.1.tar.gz) = 1500962 +TIMESTAMP = 1515092539 +SHA256 (gperftools-2.6.3.tar.gz) = 314b2ff6ed95cc0763704efb4fb72d0139e1c381069b9e17a619006bee8eee9f +SIZE (gperftools-2.6.3.tar.gz) = 1510420 Added: head/devel/google-perftools/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/google-perftools/files/patch-Makefile.am Mon Jan 8 22:07:37 2018 (r458487) @@ -0,0 +1,13 @@ +--- Makefile.am.orig 2017-12-09 17:59:37 UTC ++++ Makefile.am +@@ -133,8 +133,8 @@ googleinclude_HEADERS = \ + # Add your documentation files (in doc/) in addition to these + # top-level boilerplate files. Also add a TODO file if you have one. + # We'll add to this later, on a library-by-library basis +-dist_doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README README_windows.txt \ +- TODO ChangeLog.old ++dist_doc_DATA = AUTHORS NEWS README README_windows.txt ++ + + # The libraries (.so's) you want to install + # We'll add to this later, on a library-by-library basis Modified: head/devel/google-perftools/pkg-plist ============================================================================== --- head/devel/google-perftools/pkg-plist Mon Jan 8 21:59:15 2018 (r458486) +++ head/devel/google-perftools/pkg-plist Mon Jan 8 22:07:37 2018 (r458487) @@ -21,79 +21,30 @@ include/gperftools/tcmalloc.h lib/libprofiler.a lib/libprofiler.so lib/libprofiler.so.0 -lib/libprofiler.so.0.4.14 +lib/libprofiler.so.0.4.16 lib/libtcmalloc.a lib/libtcmalloc.so -lib/libtcmalloc.so.4 -lib/libtcmalloc.so.4.4.5 +lib/libtcmalloc.so.%%SHL1%% +lib/libtcmalloc.so.%%SHL3%% lib/libtcmalloc_and_profiler.a lib/libtcmalloc_and_profiler.so -lib/libtcmalloc_and_profiler.so.4 -lib/libtcmalloc_and_profiler.so.4.4.5 +lib/libtcmalloc_and_profiler.so.%%SHL1%% +lib/libtcmalloc_and_profiler.so.%%SHL3%% lib/libtcmalloc_debug.a lib/libtcmalloc_debug.so -lib/libtcmalloc_debug.so.4 -lib/libtcmalloc_debug.so.4.4.5 +lib/libtcmalloc_debug.so.%%SHL1%% +lib/libtcmalloc_debug.so.%%SHL3%% lib/libtcmalloc_minimal.a lib/libtcmalloc_minimal.so -lib/libtcmalloc_minimal.so.4 -lib/libtcmalloc_minimal.so.4.4.5 +lib/libtcmalloc_minimal.so.%%SHL1%% +lib/libtcmalloc_minimal.so.%%SHL3%% lib/libtcmalloc_minimal_debug.a lib/libtcmalloc_minimal_debug.so -lib/libtcmalloc_minimal_debug.so.4 -lib/libtcmalloc_minimal_debug.so.4.4.5 +lib/libtcmalloc_minimal_debug.so.%%SHL1%% +lib/libtcmalloc_minimal_debug.so.%%SHL3%% libdata/pkgconfig/libprofiler.pc libdata/pkgconfig/libtcmalloc.pc libdata/pkgconfig/libtcmalloc_debug.pc libdata/pkgconfig/libtcmalloc_minimal.pc libdata/pkgconfig/libtcmalloc_minimal_debug.pc man/man1/pprof.1.gz -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.old -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/README_windows.txt -%%PORTDOCS%%%%DOCSDIR%%/TODO -%%PORTDOCS%%%%DOCSDIR%%/cpuprofile-fileformat.html -%%PORTDOCS%%%%DOCSDIR%%/cpuprofile.html -%%PORTDOCS%%%%DOCSDIR%%/designstyle.css -%%PORTDOCS%%%%DOCSDIR%%/heap-example1.png -%%PORTDOCS%%%%DOCSDIR%%/heapprofile.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/overview.dot -%%PORTDOCS%%%%DOCSDIR%%/overview.gif -%%PORTDOCS%%%%DOCSDIR%%/pageheap.dot -%%PORTDOCS%%%%DOCSDIR%%/pageheap.gif -%%PORTDOCS%%%%DOCSDIR%%/pprof-test-big.gif -%%PORTDOCS%%%%DOCSDIR%%/pprof-test.gif -%%PORTDOCS%%%%DOCSDIR%%/pprof-vsnprintf-big.gif -%%PORTDOCS%%%%DOCSDIR%%/pprof-vsnprintf.gif -%%PORTDOCS%%%%DOCSDIR%%/pprof_remote_servers.html -%%PORTDOCS%%%%DOCSDIR%%/spanmap.dot -%%PORTDOCS%%%%DOCSDIR%%/spanmap.gif -%%PORTDOCS%%%%DOCSDIR%%/t-test1.times.txt -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.1024.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.128.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.131072.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.16384.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.2048.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.256.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.32768.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.4096.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.512.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.64.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.65536.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspercpusec.vs.threads.8192.bytes.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.1.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.12.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.16.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.2.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.20.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.3.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.4.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.5.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc-opspersec.vs.size.8.threads.png -%%PORTDOCS%%%%DOCSDIR%%/tcmalloc.html -%%PORTDOCS%%%%DOCSDIR%%/threadheap.dot -%%PORTDOCS%%%%DOCSDIR%%/threadheap.gif