mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
Moar architecture cleaning
This commit is contained in:
parent
bee4cabad2
commit
392c0c6481
14 changed files with 15 additions and 15 deletions
|
@ -22,9 +22,8 @@ DEFAULT_ARCH="amd64"
|
|||
|
||||
HOME_VINAIGRETTE="/home/vinaigrette"
|
||||
GIT_REPOS="$HOME_VINAIGRETTE/gitrepos/"
|
||||
BUILD_DEB="$HOME_VINAIGRETTE/build_deb"
|
||||
|
||||
PBUILDER_HOME="$HOME_VINAIGRETTE/pbuilder/"
|
||||
PBUILDER_HOME="$HOME_VINAIGRETTE/scripts/pbuilder/"
|
||||
PBUILDER_IMAGES="$HOME_VINAIGRETTE/images/"
|
||||
PBUILDER_RESULTS="$PBUILDER_HOME/result"
|
||||
DAILY_PACKAGES="$PBUILDER_HOME/packages/"
|
||||
|
@ -34,6 +33,7 @@ PATATE_REPO_DIR=/var/www/repo/patate
|
|||
# Scripts
|
||||
|
||||
BUILD_SOURCES="$PBUILDER_HOME/build-sources"
|
||||
INCLUDE_CHANGES="$HOME_VINAIGRETTE/repo/include-changes"
|
||||
BUILD_DEB="$HOME_VINAIGRETTE/scripts/build_deb"
|
||||
INCLUDE_CHANGES="$HOME_VINAIGRETTE/scripts/repo/include-changes"
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ Description: YunoHost repository for Debian Jessie
|
|||
SignWith: 59A3E6FF
|
||||
Tracking: all includechanges keepsources
|
||||
Log: logfile
|
||||
--changes --via=include /home/vinaigrette/repo/process-include
|
||||
--changes --via=include /home/vinaigrette/scripts/repo/process-include
|
||||
|
||||
Origin: YunoHost
|
||||
Label: YunoHost for Stretch
|
||||
|
@ -25,4 +25,4 @@ Description: YunoHost repository for Debian Stretch
|
|||
SignWith: 59A3E6FF
|
||||
Tracking: all includechanges keepsources
|
||||
Log: logfile
|
||||
--changes --via=include /home/vinaigrette/repo/process-include
|
||||
--changes --via=include /home/vinaigrette/scripts/repo/process-include
|
||||
|
|
|
@ -3,9 +3,9 @@ check_every = 30
|
|||
max_threads = 1
|
||||
max_jobs = 5
|
||||
kill_timeout = 90
|
||||
source_cmd = /home/vinaigrette/rebuildd/get-sources ${d} ${p} ${v}
|
||||
build_cmd = /home/vinaigrette/rebuildd/build-binaries ${d} ${p} ${v} ${a}
|
||||
post_build_cmd = /home/vinaigrette/rebuildd/upload-binaries ${d} ${p} ${v} ${a} ${j}
|
||||
source_cmd = /home/vinaigrette/scripts/rebuildd/get-sources ${d} ${p} ${v}
|
||||
build_cmd = /home/vinaigrette/scripts/rebuildd/build-binaries ${d} ${p} ${v} ${a}
|
||||
post_build_cmd = /home/vinaigrette/scripts/rebuildd/upload-binaries ${d} ${p} ${v} ${a} ${j}
|
||||
dists = jessie stretch
|
||||
work_dir = /var/cache/rebuildd/build
|
||||
database_uri = sqlite:///var/lib/rebuildd/rebuildd.db
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
deb-src http://repo.yunohost.org/debian jessie stable testing unstable extra
|
||||
#deb-src http://repo.yunohost.org/debian stretch extra
|
||||
deb-src http://repo.yunohost.org/debian stretch stable testing unstable extra
|
||||
|
|
2
init.sh
2
init.sh
|
@ -21,7 +21,7 @@ ln -s $VINAIGRETTE_HOME/config/distributions /var/www/repo/debian/conf/distribut
|
|||
rm /etc/rebuildd/rebuilddrc
|
||||
ln -s $VINAIGRETTE_HOME/config/rebuildd.conf /etc/rebuildd/rebuilddrc
|
||||
|
||||
ln -s $VINAIGRETTE_HOME/pbuilder/images /var/cache/pbuilder/images
|
||||
ln -s $VINAIGRETTE_HOME/images /var/cache/pbuilder/images
|
||||
ln -s /var/cache/pbuilder/result $PBUILDER_RESULTS
|
||||
cp $VINAIGRETTE_HOME/conf/nginx.conf /etc/nginx/sites-enabled/repo.conf
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ version=$3
|
|||
arch=$4
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
source /home/vinaigrette/package_helpers.sh
|
||||
source /home/vinaigrette/scripts/package_helpers.sh
|
||||
|
||||
# Build only binary-only limited to architecture dependent packages
|
||||
DEBBUILDOPTS="-B"
|
|
@ -7,7 +7,7 @@ arch=$4
|
|||
job=$5
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
source /home/vinaigrette/package_helpers.sh
|
||||
source /home/vinaigrette/scripts/package_helpers.sh
|
||||
XMPP_BOT_KEY=$(cat /home/vinaigrette/config/keys/xmppbotkey)
|
||||
|
||||
# Repository codename to add package to
|
|
@ -5,7 +5,7 @@ distribution=$2
|
|||
changes_file=$3
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
source /home/vinaigrette/package_helpers.sh
|
||||
source /home/vinaigrette/scripts/package_helpers.sh
|
||||
|
||||
sudo reprepro -C $distribution -V -b $REPO_DIR include $codename $changes_file
|
||||
RET=$?
|
|
@ -3,7 +3,7 @@
|
|||
changes_file=$1
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
source /home/vinaigrette/package_helpers.sh
|
||||
source /home/vinaigrette/scripts/package_helpers.sh
|
||||
|
||||
INCOMING_DIR=${REPO_DIR}/incoming
|
||||
|
|
@ -7,7 +7,7 @@ version=$4
|
|||
changes_file=$5
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
source /home/vinaigrette/package_helpers.sh
|
||||
source /home/vinaigrette/scripts/package_helpers.sh
|
||||
|
||||
# Only care about packages being added
|
||||
if [[ $action != accepted ]]; then
|
Loading…
Add table
Reference in a new issue