aboutsummaryrefslogtreecommitdiffstats
path: root/community/libgit2-1.0/APKBUILD
blob: afd13dcf80318dd5ceecab2ff196500011a977cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Contributor: Sergei Lukin <sergej.lukin@gmail.com>
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Pierre-Gilas MILLON <pgmillon@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libgit2-1.0
pkgver=1.0.1
pkgrel=2
pkgdesc="linkable library for Git"
url="https://libgit2.org/"
arch="all"
license="GPL-2.0-only WITH GCC-exception-2.0"
depends_dev="curl-dev libssh2-dev http-parser-dev"
makedepends="$depends_dev python3 cmake zlib-dev openssl1.1-compat-dev pcre-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/libgit2/libgit2/archive/v$pkgver.tar.gz
	"
builddir="$srcdir/libgit2-$pkgver"

[ "$CARCH" = "ppc64le" ] && options="!check"

# secfixes:
#   0.28.4-r0:
#     - CVE-2019-1348
#     - CVE-2019-1349
#     - CVE-2019-1350
#     - CVE-2019-1351
#     - CVE-2019-1352
#     - CVE-2019-1353
#     - CVE-2019-1354
#     - CVE-2019-1387
#   0.27.4-r0:
#     - CVE-2018-15501
#   0.27.3-r0:
#     - CVE-2018-10887
#     - CVE-2018-10888
#   0.25.1-r0:
#     - CVE-2016-10128
#     - CVE-2016-10129
#     - CVE-2016-10130
#   0.24.3-r0:
#     - CVE-2016-8568
#     - CVE-2016-8569

prepare() {
	default_prepare
	mkdir -p "$builddir"/build
	sed -i 's|/usr/bin/env python|/usr/bin/env python3|' tests/generate.py
}

build() {
	cd "$builddir"/build

	cmake .. \
		-DCMAKE_BUILD_TYPE=None \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DUSE_HTTP_PARSER=system \
		-DUSE_HTTPS=OpenSSL \
		-DREGEX_BACKEND=pcre \
		-DUSE_BUNDLED_ZLIB=OFF \
		-DCMAKE_C_FLAGS="$CFLAGS"
	make
}

check() {
	cd "$builddir"/build
	# Test 'offline' fails on s390x, aarch64 and ppc64le
	ctest -E offline
}

package() {
	make -C build DESTDIR="$pkgdir" install

	# Remove everything but the library
	local dir; for dir in \
		usr/include \
		usr/lib/libgit2.so \
		usr/lib/pkgconfig; do
			rm -rf "$pkgdir"/"$dir"
	done
}

sha512sums="7c307822b22e3771e5e908b115600310f7901b3250287532c498003b25a5b1e007bfa23592f16ec4d83c1567a9213710526f78cab7c120316e9a8fc74c5e57a9  libgit2-1.0-1.0.1.tar.gz"