Date: Wed, 8 Apr 2020 23:51:33 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r531160 - in head/devel/libhoard: . files Message-ID: <202004082351.038NpY7l097323@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Wed Apr 8 23:51:33 2020 New Revision: 531160 URL: https://svnweb.freebsd.org/changeset/ports/531160 Log: Update from 3.10 to the recent release 3.13. Remove needless patches. Added: head/devel/libhoard/files/patch-GNUmakefile (contents, props changed) Deleted: head/devel/libhoard/files/patch-Makefile head/devel/libhoard/files/patch-src_Heap-Layers_heaps_debug_sanitycheckheap.h head/devel/libhoard/files/patch-src_source_unixtls.cpp Modified: head/devel/libhoard/Makefile head/devel/libhoard/distinfo Modified: head/devel/libhoard/Makefile ============================================================================== --- head/devel/libhoard/Makefile Wed Apr 8 23:29:02 2020 (r531159) +++ head/devel/libhoard/Makefile Wed Apr 8 23:51:33 2020 (r531160) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= libhoard -PORTVERSION= 3.10 -PORTREVISION= 1 +PORTVERSION= 3.13 CATEGORIES= devel MASTER_SITES= https://github.com/emeryberger/Hoard/releases/download/${PORTVERSION}/ -DISTNAME= Hoard-${PORTVERSION}-source +DISTNAME= hoard-release MAINTAINER= ports@FreeBSD.org COMMENT= Fast, scalable, and memory-efficient allocator for MP @@ -20,11 +19,11 @@ BROKEN_mips64= no spin lock implementation is availab BROKEN_powerpc64= Does not build: Error: instruction address is not a multiple of 4 BROKEN_sparc64= Does not build -USE_CXXSTD= gnu++98 -USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/Hoard/src - +MAKEFILE= GNUmakefile +USES= gmake compiler:c++14-lang ALL_TARGET= freebsd +USE_LDCONFIG= yes PLIST_FILES= lib/libhoard.so lib/libhoard.so.1 Modified: head/devel/libhoard/distinfo ============================================================================== --- head/devel/libhoard/distinfo Wed Apr 8 23:29:02 2020 (r531159) +++ head/devel/libhoard/distinfo Wed Apr 8 23:51:33 2020 (r531160) @@ -1,2 +1,3 @@ -SHA256 (Hoard-3.10-source.tar.gz) = 9776dd824d193937fa5b079f3f16611eaac54876fecff26a6aec0adb029cbca7 -SIZE (Hoard-3.10-source.tar.gz) = 253110 +TIMESTAMP = 1586388520 +SHA256 (hoard-release.tar.gz) = 56399859f95e5a91c998f665d7e56095e8c888c77b33f7d9a5c3b64356658d76 +SIZE (hoard-release.tar.gz) = 1554232 Added: head/devel/libhoard/files/patch-GNUmakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhoard/files/patch-GNUmakefile Wed Apr 8 23:51:33 2020 (r531160) @@ -0,0 +1,20 @@ +--- GNUmakefile.orig 2019-01-02 03:35:46 UTC ++++ GNUmakefile +@@ -3,7 +3,7 @@ + + CPPFLAGS = -std=c++14 -O3 -DNDEBUG -ffast-math -fno-builtin-malloc -Wall -Wextra -Wshadow -Wconversion -Wuninitialized + #CPPFLAGS = -std=c++14 -g -O0 -ffast-math -fno-builtin-malloc -Wall -Wextra -Wshadow -Wconversion -Wuninitialized +-CXX = clang++ ++#CXX = clang++ + + # Prefix for installations (Unix / Mac) + +@@ -80,7 +80,7 @@ WIN_INCLUDES = /I. /Iinclude /Iinclude/util /Iinclude/ + # Compile commands for individual targets. + # + +-FREEBSD_COMPILE = $(CXX) -g $(CPPFLAGS) -DNDEBUG -fPIC $(INCLUDES) -D_REENTRANT=1 -shared $(SUNW_SRC) -Bsymbolic -o libhoard.so -lpthread ++FREEBSD_COMPILE = $(CXX) $(CXXFLAGS) -DNDEBUG -fPIC $(INCLUDES) -D_REENTRANT=1 -shared $(SUNW_SRC) -Bsymbolic -o libhoard.so -pthread + + DEBIAN_COMPILE = $(CXX) -g -O3 -fPIC -DNDEBUG -I. -Iinclude -Iinclude/util -Iinclude/hoard -Iinclude/superblocks -IHeap-Layers -D_REENTRANT=1 -shared source/libhoard.cpp source/unixtls.cpp Heap-Layers/wrappers/wrapper.cpp -Bsymbolic -o libhoard.so -lpthread -lstdc++ -ldl +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004082351.038NpY7l097323>