View | Details | Raw Unified | Return to bug 250959
Collapse All | Expand All

(-)b/devel/libfmt/Makefile (-2 / +8 lines)
Lines 2-10 Link Here
2
2
3
PORTNAME=	fmt
3
PORTNAME=	fmt
4
# Make sure to check devel/spdlog consumers too
4
# Make sure to check devel/spdlog consumers too
5
PORTVERSION=	7.0.3
5
DISTVERSION=	7.1.2
6
MASTER_SITES=	https://github.com/fmtlib/fmt/releases/download/${PORTVERSION}/
7
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	https://github.com/fmtlib/fmt/releases/download/${DISTVERSION}/
8
PKGNAMEPREFIX=	lib
8
PKGNAMEPREFIX=	lib
9
9
10
MAINTAINER=	sunpoet@FreeBSD.org
10
MAINTAINER=	sunpoet@FreeBSD.org
Lines 20-25 USE_LDCONFIG= yes Link Here
20
CMAKE_OFF=	FMT_DOC FMT_TEST
20
CMAKE_OFF=	FMT_DOC FMT_TEST
21
CMAKE_ON=	BUILD_SHARED_LIBS
21
CMAKE_ON=	BUILD_SHARED_LIBS
22
22
23
OPTIONS_DEFINE=		FCDRAGONBOX
24
OPTIONS_DEFAULT=	FCDRAGONBOX
25
26
FCDRAGONBOX_DESC=	Use full cache table instead of compressed
27
FCDRAGONBOX_EXTRA_PATCHES=	${FILESDIR}/extrapatch-full_cache_dragonbox
28
23
PLIST_SUB=	SHL1=${PORTVERSION:R:R} \
29
PLIST_SUB=	SHL1=${PORTVERSION:R:R} \
24
		SHL3=${PORTVERSION}
30
		SHL3=${PORTVERSION}
25
31
(-)b/devel/libfmt/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1601319668
1
TIMESTAMP = 1604737705
2
SHA256 (fmt-7.0.3.zip) = decfdf9ad274070fa85f26407b816f5a4d82205ae86bac1990be658d0795ea4d
2
SHA256 (fmt-7.1.2.zip) = 4d6968ab7c01e95cc76df136755703defb985105a117b83057e4fd5d53680ea7
3
SIZE (fmt-7.0.3.zip) = 1152094
3
SIZE (fmt-7.1.2.zip) = 1192292
(-)b/devel/libfmt/files/extrapatch-full_cache_dragonbox (-1 / +13 lines)
Added Link Here
0
- 
1
--- include/fmt/format.h.orig	2020-11-07 18:03:50 UTC
2
+++ include/fmt/format.h
3
@@ -591,9 +591,7 @@ template <typename T>
4
 using is_fast_float = bool_constant<std::numeric_limits<T>::is_iec559 &&
5
                                     sizeof(T) <= sizeof(double)>;
6
 
7
-#ifndef FMT_USE_FULL_CACHE_DRAGONBOX
8
-#  define FMT_USE_FULL_CACHE_DRAGONBOX 0
9
-#endif
10
+#  define FMT_USE_FULL_CACHE_DRAGONBOX 1
11
 
12
 template <typename T>
13
 template <typename U>

Return to bug 250959