public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob f5638dad931fcb52365b97066a26d53676bb8f1c 1166 bytes (raw)
$ git show ci-WIP:ci/profiles.sh	# shows this blob on the CLI

 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
 
#!/bin/sh
# Copyright (C) 2019 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# Prints OS-specific package profiles to stdout (one per-newline) to use
# as command-line args for ci/deps.perl.  Called automatically by ci/run.sh

# set by os-release(5) or similar
ID= VERSION_ID=
case $(uname -o) in
GNU/Linux)
	for f in /etc/os-release /usr/lib/os-release
	do
		test -f $f || continue
		. $f
		case $ID--$VERSION_ID in
		-|*--|--*) continue ;;
		*--*) break ;;
		esac
	done
	;;
FreeBSD)
	ID=freebsd
	VERSION_ID=$(uname -r | cut -d . -f 1)
	test "$VERSION_ID" -lt 11 && {
		echo >&2 "ID=$ID $(uname -r) too old to support";
		exit 1
	}
esac

case $ID in
freebsd) PKG_FMT=pkg ;;
debian|ubuntu) PKG_FMT=deb ;;
centos|redhat|fedora) PKG_FMT=rpm ;;
*) echo >&2 "PKG_FMT undefined for ID=$ID in $0"
esac

case $ID-$VERSION_ID in
freebsd-11) sed "s/^/$PKG_FMT /" <<EOF
all devtest-
all devtest IO::KQueue-
all IO::KQueue
v2essential
v2common
essential
essential devtest-
EOF
	;;
debian-9|debian-10) sed "s/^/$PKG_FMT /" <<EOF
all devtest-
all devtest
v2essential
v2common
essential
essential devtest-
EOF
	;;
esac

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git