summaryrefslogtreecommitdiff
path: root/src/libretools.conf
blob: 70d2ecaeff5c1ab826d65cd8e22d0ccf768a14c8 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/bin/bash

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

# Diff tool (vimdiff, gvimdiff, meld, etc)
DIFFTOOL=`which vimdiff gvimdiff meld colordiff 2>/dev/null|sed 's/\s.*//'`

# The dir where you work on
WORKDIR=/home/$USER/packages
# The repos you'll be packaging for
# 
# 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
ARCHES=('i686' 'x86_64' 'mips64el' 'any')

## The directory where the chroots are stored
CHROOTDIR=/home/chroot
## Extra packages to have installed on the chroot (besides base base-devel and sudo)
CHROOTEXTRAPKG=(distcc ccache tsocks libretools)
## The meaning of this changes based on the version of libretools+devtools
## do NOT set it to 'root'
CHROOT=default

## Parabola hostname (should be the same used on ssh_config
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

## Commit Command
## Should be git or hg
## Uncomment only one of those
COMMITCMD=git
#COMMITCMD=hg

## Uncomment one of those or make one of your choice
# Normal fullpkg
FULLBUILDCMD="sudo libremakepkg -cuN"
# Cross compiling fullkpg
# FULLBUILDCMD="sudo libremakepkg -cuN -d '/path/to/cross-compiling/chroot'"
# Build from within the chroot (or host system)
# FULLBUILDCMD="makepkg -sL --noconfirm"

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

# Run a command before running FULLBUILDCMD, usually to cleanup uneeded packages
# Note! chcleanup *is not* chroot aware, if you run it as it is it will cleanup
# your system
# HOOKPREBUILD="chcleanup"
 
# Locally release the package or any other action after running FULLBUILDCMD
# succesfully
# HOOKLOCALRELEASE=""

## Toru
# Section for toru's vars
TORUPATH=/var/lib/libretools/toru

## Package signing
# Leave commented to disable signing
#SIGEXT=".sig"
#SIGID="0xYOURID"

################################################################################
# This probably shouldn't be in a .conf file...                                #
################################################################################

if [[ -z $XDG_CONFIG_HOME ]]; then
	if [[ -n $SUDO_USER ]]; then
		SUDO_HOME="$(eval echo ~$SUDO_USER)"
		export XDG_CONFIG_HOME="${SUDO_HOME}/.config"
		unset SUDO_HOME
	else
		export XDG_CONFIG_HOME="${HOME}/.config"
	fi
fi
if [[ -e "$XDG_CONFIG_HOME/libretools/libretools.conf" ]]; then
	. "$XDG_CONFIG_HOME/libretools/libretools.conf"
fi

ret=0
for VAR in CHROOTDIR CHROOT PARABOLAHOST LIBREDESTDIR \
	BLACKLIST WORKDIR REPOS ARCHES ABSLIBREGIT \
	COMMITCMD DIFFTOOL FULLBUILDCMD; do

	if [[ -z ${!VAR} ]]; then
		echo "Configure $VAR var in /etc/libretools.conf"
		ret=1
	fi
done
if [[ $ret != 0 ]]; then
	exit 1
fi
unset ret

. /usr/bin/libremessages