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

(-)devel/cereal/Makefile (-7 / +9 lines)
Lines 2-9 Link Here
2
2
3
PORTNAME=		cereal
3
PORTNAME=		cereal
4
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=		1.3.0
5
DISTVERSION=	1.3.0-8
6
CATEGORIES=		devel
6
DISTVERSIONSUFFIX=	-g48fda3f0
7
CATEGORIES=	devel
7
8
8
MAINTAINER=	teodor@sigaev.ru
9
MAINTAINER=	teodor@sigaev.ru
9
COMMENT=	C++11 library for serialization
10
COMMENT=	C++11 library for serialization
Lines 11-22 Link Here
11
LICENSE=	BSD3CLAUSE
12
LICENSE=	BSD3CLAUSE
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
14
LIB_DEPENDS=	libboost_system.so:devel/boost-libs
15
BUILD_DEPENDS=	boost-libs>0:devel/boost-libs
15
BUILD_DEPENDS=	boost-libs>=1.69:devel/boost-libs \
16
RUN_DEPENDS=	boost-libs>0:devel/boost-libs
16
		cmake>=2.6.2:devel/cmake \
17
		ninja>=1.8.2:devel/ninja
18
17
19
USES=		cmake compiler:c++11-lang
18
USES=		cmake compiler:c++11-lang
19
20
USE_GITHUB=	yes
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	USCiLab
21
GH_ACCOUNT=	USCiLab
22
22
Lines 23-28 Link Here
23
CFLAGS+=	-Wno-unused-private-field
23
CFLAGS+=	-Wno-unused-private-field
24
24
25
CMAKE_ON=	SKIP_PORTABILITY_TEST
25
CMAKE_ON=	SKIP_PORTABILITY_TEST
26
CMAKE_OFF=	WITH_WERROR
26
CMAKE_OFF=	BUILD_TESTS WITH_WERROR
27
27
28
NO_ARCH=	yes
29
28
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)devel/cereal/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1573867507
1
TIMESTAMP = 1610945065
2
SHA256 (USCiLab-cereal-v1.3.0_GH0.tar.gz) = 329ea3e3130b026c03a4acc50e168e7daff4e6e661bc6a7dfec0d77b570851d5
2
SHA256 (USCiLab-cereal-v1.3.0-8-g48fda3f0_GH0.tar.gz) = 85ef9d32375e5cca1b0ee6c57d40fcb6230228bfe4f8d72770241ce2e7feea49
3
SIZE (USCiLab-cereal-v1.3.0_GH0.tar.gz) = 374585
3
SIZE (USCiLab-cereal-v1.3.0-8-g48fda3f0_GH0.tar.gz) = 375367
(-)devel/cereal/files/patch-CMakeLists.txt (+15 lines)
Line 0 Link Here
1
- Same change that is proposed here: https://github.com/USCiLab/cereal/issues/668
2
- Otherwise sandbox is always built.
3
4
--- CMakeLists.txt.orig	2020-11-17 20:50:06 UTC
5
+++ CMakeLists.txt
6
@@ -115,6 +115,8 @@ if(BUILD_TESTS)
7
     add_subdirectory(unittests)
8
 endif()
9
 
10
-add_subdirectory(sandbox)
11
+if(BUILD_SANDBOX)
12
+    add_subdirectory(sandbox)
13
+endif()
14
 
15
 add_subdirectory(doc)
(-)devel/cereal/pkg-plist (-1 / +3 lines)
Lines 85-88 Link Here
85
include/cereal/types/variant.hpp
85
include/cereal/types/variant.hpp
86
include/cereal/types/vector.hpp
86
include/cereal/types/vector.hpp
87
include/cereal/version.hpp
87
include/cereal/version.hpp
88
share/cmake/cereal/cereal-config.cmake
88
lib/cmake/cereal/cerealConfig.cmake
89
lib/cmake/cereal/cerealConfigVersion.cmake
90
lib/cmake/cereal/cerealTargets.cmake

Return to bug 252793