summaryrefslogtreecommitdiff
path: root/src/libretools.conf
diff options
context:
space:
mode:
Diffstat (limited to 'src/libretools.conf')
-rw-r--r--src/libretools.conf26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/libretools.conf b/src/libretools.conf
index 78e6fb8..593aed6 100644
--- a/src/libretools.conf
+++ b/src/libretools.conf
@@ -4,12 +4,15 @@
# misc #
################################################################################
+# The dir where you work on
+WORKDIR=/home/$LIBREUSER/packages
+
## 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'`
+DIFFTOOL=`which kdiff3 meld gvimdiff vimdiff colordiff diff 2>/dev/null|sed 's/\s.*//;1q'`
## The repos you'll be packaging for
## Used by `toru`, `createworkdir`
@@ -19,29 +22,28 @@ DIFFTOOL=`which vimdiff gvimdiff meld colordiff diff 2>/dev/null|sed 's/\s.*//;1
# 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 you'll be packaging for
+## Used by `librestage`
+ARCHES=('x86_64' 'i686' 'mips64el')
+
+## ABSLibre
+#ABSLIBREGIT=http://projects.parabolagnulinux.org/abslibre.git
+ABSLIBREGIT=ssh://git@projects.parabolagnulinux.org:1863/srv/git/abslibre.git
+
################################################################################
-# abslibre #
+# librerelease #
################################################################################
-# The dir where you work on
-WORKDIR=/home/$LIBREUSER/packages
-
## Where to upload packages to
# Don't change unless you know what you're doing and you won't screw
# anything ;)
REPODEST=repo@repo:/srv/http/repo/public
## Assumes something similar in your .ssh/config:
-
# Host repo
# Port 1863
# HostName repo.parabolagnulinux.org
-## ABSLibre
-ABSLIBREGIT=http://projects.parabolagnulinux.org/abslibre.git
-#ABSLIBREGIT=ssh://git@projects.parabolagnulinux.org:1863/srv/git/abslibre.git
-
-# Run a command before releasing a package (ie. SSH connection, SSH tunnel, etc.)
-# This is called by librerelease.
+## These are run before and after uploading packages
HOOKPRERELEASE="ssh -fN ${REPODEST%%:*}"
HOOKPOSTRELEASE="sudo librechroot clean-repo"