aboutsummaryrefslogtreecommitdiffstats
path: root/main/redis/APKBUILD
blob: 6b6c08616720b460caf1c01e1080e55b7b4a867c (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Contributor: V.Krishn <vkrishn4@gmail.com>
# Contributor: Eivind Uggedal <eu@eju.no>
# Maintainer: TBK <alpine@jjtc.eu>
pkgname=redis
pkgver=6.2.7
pkgrel=0
pkgdesc="Advanced key-value store"
url="https://redis.io/"
arch="all"
license="BSD-3-Clause"
pkgusers="redis"
pkggroups="redis"
makedepends="linux-headers"
checkdepends="tcl procps"
install="$pkgname.pre-install $pkgname.post-install"
subpackages="$pkgname-openrc"
source="https://download.redis.io/releases/redis-$pkgver.tar.gz
	redis.conf.patch
	sentinel.conf.patch
	$pkgname.initd
	$pkgname.confd
	$pkgname-sentinel.initd
	$pkgname.logrotate
	"
# flaky tests are blocking some builders
options="!check"

# secfixes:
#   6.2.7-r0:
#     - CVE-2022-24735
#     - CVE-2022-24736
#   6.2.6-r0:
#     - CVE-2021-32626
#     - CVE-2021-32627
#     - CVE-2021-32628
#     - CVE-2021-32672
#     - CVE-2021-32675
#     - CVE-2021-32687
#     - CVE-2021-32762
#     - CVE-2021-41099
#   6.2.5-r0:
#     - CVE-2021-32761
#   6.2.4-r0:
#     - CVE-2021-32625
#   6.2.0-r0:
#     - CVE-2021-21309
#     - CVE-2021-3470
#   6.0.3-r0:
#     - CVE-2020-14147
#   5.0.8-r0:
#     - CVE-2015-8080
#   5.0.4-r0:
#     - CVE-2019-10192
#     - CVE-2019-10193

build() {
	case "$CARCH" in
		mips|mipsel*) _libatomic="-latomic";;
	esac

	export CFLAGS="$CFLAGS -DUSE_MALLOC_USABLE_SIZE"
	make USE_JEMALLOC=no \
		MALLOC=libc \
		FINAL_LIBS="-lm -ldl -pthread $_libatomic" \
		all
}

check() {
	make test
}

package() {
	make install PREFIX=/usr INSTALL_BIN="$pkgdir/usr/bin"

	cd "$pkgdir"

	install -D -m 644 "$builddir"/redis.conf etc/redis.conf

	# This file must be writable for redis, otherwise Sentinel fails to start.
	install -D -m 644 -o redis -g redis "$builddir"/sentinel.conf etc/sentinel.conf

	install -D -m 755 "$srcdir"/redis.initd etc/init.d/redis
	install -D -m 755 "$srcdir"/redis-sentinel.initd etc/init.d/redis-sentinel
	install -D -m 644 "$srcdir"/redis.confd etc/conf.d/redis
	install -D -m 644 "$srcdir"/redis.logrotate etc/logrotate.d/redis

	install -d -o redis -g redis \
		var/lib/redis \
		var/log/redis
}

sha512sums="
d113094b8e31754915db7f0317d9b7969e034af3a7bac2ae0cbfad6cc61ba3aae35e9709c435abc1024a96f914df7a760b3cd18d06c375b541cfa837d1c5b953  redis-6.2.7.tar.gz
7725486329f2aba8fe03a768f6d8ab78cc96ab6f2ca403af56c252ef7978f7628b580587b372969ca5dd6257780ef58571ce6dc5aca468c3b2a299033b41047f  redis.conf.patch
a5dc411c2bd7edf61400e29accb375275dd888fda72a8f7e3889be475010c695a22f536be818ef9441e47285c00b451966db924362a7f56806586078c9e3ff8c  sentinel.conf.patch
f6dcdad1edd6b5fb6aa28ba774bfc8aba035f316695da261fb2ad291b76f00f177479f9d74434d06c26bd15f131edc9a2f55c9880758cf0987800d2031069738  redis.initd
6752e99df632b14d62a3266929e80c3d667be5c270e4f34e0dcf2b7f9b1754fe0ce9d4569fa413dbbe207e406ff2848a64e0c47629997536ae1d14ca84ebd56b  redis.confd
e7a60a090df53eef05d58d73709f07536135a93efb34e48ad933e3859d3d1c0f476975a3232df18f57476bf7fc3b0548471e1c86445878457ac8507b3da71384  redis-sentinel.initd
bf2def2077a989047e9bfff8a7f754bcdf96e020fd4a470f8967ee1fca601e11f044cfb3742f00e932cc013e0d0b199045d78c8878a0e529715c9f77786d353f  redis.logrotate
"