Thu Dec 14 11:29:19 2023 UTC (161d)
libgit2: update comment about test issue


(wiz)
diff -r1.73 -r1.74 pkgsrc/devel/libgit2/Makefile

cvs diff -r1.73 -r1.74 pkgsrc/devel/libgit2/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/libgit2/Makefile 2023/11/08 13:18:53 1.73
+++ pkgsrc/devel/libgit2/Makefile 2023/12/14 11:29:19 1.74
@@ -1,37 +1,37 @@ @@ -1,37 +1,37 @@
1# $NetBSD: Makefile,v 1.73 2023/11/08 13:18:53 wiz Exp $ 1# $NetBSD: Makefile,v 1.74 2023/12/14 11:29:19 wiz Exp $
2 2
3DISTNAME= libgit2-1.7.1 3DISTNAME= libgit2-1.7.1
4PKGREVISION= 2 4PKGREVISION= 2
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= ${MASTER_SITE_GITHUB:=libgit2/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=libgit2/}
7GITHUB_TAG= v${PKGVERSION_NOREV} 7GITHUB_TAG= v${PKGVERSION_NOREV}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= https://libgit2.org/ 10HOMEPAGE= https://libgit2.org/
11COMMENT= Portable, pure C implementation of the Git core methods 11COMMENT= Portable, pure C implementation of the Git core methods
12LICENSE= gnu-gpl-v2 # linking exception (linking allowed in more ways) 12LICENSE= gnu-gpl-v2 # linking exception (linking allowed in more ways)
13 13
14USE_LANGUAGES= c99 14USE_LANGUAGES= c99
15USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
16 16
17CMAKE_ARGS+= -DREGEX_BACKEND="pcre2" 17CMAKE_ARGS+= -DREGEX_BACKEND="pcre2"
18 18
19PKGCONFIG_OVERRIDE+= ${CMAKE_BUILD_DIR}/libgit2.pc 19PKGCONFIG_OVERRIDE+= ${CMAKE_BUILD_DIR}/libgit2.pc
20PKGCONFIG_OVERRIDE_STAGE= pre-install 20PKGCONFIG_OVERRIDE_STAGE= pre-install
21 21
22BUILDLINK_TRANSFORM+= rm:-Werror 22BUILDLINK_TRANSFORM+= rm:-Werror
23 23
24# as of 1.7.1, 2 tests fail (with 2 and 1 subtest each) 24# In some environments, two tests might fail with permission problems
25# https://github.com/libgit2/libgit2/issues/6647 25# https://github.com/libgit2/libgit2/issues/6647
26do-test: 26do-test:
27 cd ${WRKSRC}/${CMAKE_BUILD_DIR} && ctest 27 cd ${WRKSRC}/${CMAKE_BUILD_DIR} && ctest
28 28
29.include "../../devel/cmake/build.mk" 29.include "../../devel/cmake/build.mk"
30.include "../../devel/zlib/buildlink3.mk" 30.include "../../devel/zlib/buildlink3.mk"
31.include "../../devel/pcre2/buildlink3.mk" 31.include "../../devel/pcre2/buildlink3.mk"
32.include "../../security/libssh2/buildlink3.mk" 32.include "../../security/libssh2/buildlink3.mk"
33.include "../../security/openssl/buildlink3.mk" 33.include "../../security/openssl/buildlink3.mk"
34# for tests 34# for tests
35.include "../../lang/python/pyversion.mk" 35.include "../../lang/python/pyversion.mk"
36.include "../../www/curl/buildlink3.mk" 36.include "../../www/curl/buildlink3.mk"
37.include "../../www/http-parser/buildlink3.mk" 37.include "../../www/http-parser/buildlink3.mk"