summaryrefslogtreecommitdiff
path: root/src/libretools.conf
blob: 5258f34ed57838fbc214005dfd591b77cb309795 (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
#!/hint/bash
# shellcheck disable=2034

################################################################################
# misc                                                                         #
################################################################################

# The dir where you work on
WORKDIR="$LIBREHOME/packages"

## Blacklist URL
BLACKLIST=https://git.parabola.nu/blacklist.git/plain/blacklist.txt

## Diff tool (vimdiff, gvimdiff, meld, etc)
## Used by `aur`, `diff-unfree`
# shellcheck disable=2046
DIFFPROG=$(which $([ -z "${DISPLAY:-}" ]||echo kdiff3 meld gvimdiff) vimdiff colordiff diff 2>/dev/null|sed 's/\s.*//;1q')

## ABSLibre
## Used by: `createworkdir`
ABSLIBRERECV=git://git.parabola.nu/abslibre/abslibre.git
ABSLIBRESEND=ssh://git@git.parabola.nu:1863/~git/abslibre/abslibre.git

################################################################################
# librerelease                                                                 #
################################################################################

## Where to upload packages to
REPODEST=ssh://$LIBREUSER@repo.parabola.nu:1863/~/staging/

## These are run before and after uploading packages
HOOKPRERELEASE='ssh -fN ${REPODEST_port:+-p "$REPODEST_port"} "${REPODEST_userhost}"'
HOOKPOSTRELEASE="sudo librechroot clean-repo"

################################################################################
# dagpkg                                                                       #
################################################################################

# Note: Not being set is valid for any of the HOOK* settings.

# Run a command before running FULLBUILDCMD
HOOKPREBUILD=""

## Uncomment one of those or make one of your choice
# Normal
FULLBUILDCMD="sudo libremakepkg"
# Cross compiling
#FULLBUILDCMD="sudo libremakepkg -n cross-compile-chroot"
# Don't use a chroot
#FULLBUILDCMD="makepkg -sL --noconfirm"

# Locally release the package or any other action after running FULLBUILDCMD
# successfully.  When run, it is given a repository name as a single argument.
HOOKLOCALRELEASE="librestage"

################################################################################
# toru                                                                         #
################################################################################

TORUPATH=/var/lib/libretools/toru

## The repos you'll be packaging for
## Used by: `toru-path`
# Tip: As early repos take precedence on $REPOS loops, you can use this as
# inverted order of precedence.  Put testing repos first so dagpkg will find new
# PKGBUILDs first, for instance.  `toru-path` uses reverse order to enforce repo
# precedence on the path cache (the last path added replaces the rest)
REPOS=('core' 'libre' 'extra' 'community' 'libre-testing' 'social' 'sugar' 'pcr' 'java')