summaryrefslogtreecommitdiff
path: root/src/libretools.conf
blob: 280bacf762116b400485e80fd1d59c1dd9c81b4d (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
#!/bin/bash # non-executable, but put this there as a hint to text editors

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

## Blacklist URL
BLACKLIST=https://repo.parabolagnulinux.org/docs/blacklist.txt

## Diff tool (vimdiff, gvimdiff, meld, etc)
## Used by `aur`, `diff-unfree`
DIFFTOOL=`which vimdiff gvimdiff meld colordiff diff 2>/dev/null|sed 's/\s.*//;1q'`

## The repos you'll be packaging for
## Used by `toru`, `createworkdir`
# Tip: As early repos take precedence on $REPOS loops, you can use this as
# inverted order of precedence. Put testing repos first so fullpkg 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')

## The architectures
## Used by `librestage`
ARCHES=('i686' 'x86_64' 'mips64el' 'any')

################################################################################
# abslibre                                                                     #
################################################################################

# The dir where you work on
WORKDIR=/home/$LIBREUSER/packages

## Package signing
SIGEXT=".sig"
#SIGID="0xYOURID"

## Parabola hostname
PARABOLAHOST=parabola
## Assumes something similar in your .ssh/config:

## Repo server
# Host parabola
#    Port 1863
#    HostName repo.parabolagnulinux.org
#    User repo

## Server destination of libre packages
# Don't change unless you know what you're doing and you won't screw
# anything ;)
LIBREDESTDIR=/srv/http/repo/public

## ABSLibre
ABSLIBREGIT=http://projects.parabolagnulinux.org/abslibre.git

# Run a command before releasing a package (ie. SSH connection, SSH tunnel, etc.)
# This is called by librerelease.
HOOKPRERELEASE="ssh -fN parabola"

################################################################################
# fullpkg/treepkg                                                              #
################################################################################

# NOTE: fullpkg ONLY
#HOOKPKGBUILDMOD="mips-add"

# Run a command before running FULLBUILDCMD, usually to cleanup uneeded packages
# Note: Recent versions of libremakepkg run chcleanup for you.
# NOTE: treepkg ONLY
#HOOKPREBUILD="chcleanup"

## 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
# succesfully.
HOOKLOCALRELEASE=":"
#HOOKLOCALRELEASE="mipsrelease"

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

TORUPATH=/var/lib/libretools/toru