mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
Add arm64 architecture
This commit is contained in:
parent
e641806e95
commit
9b8766e3f3
5 changed files with 15 additions and 4 deletions
|
@ -3,7 +3,7 @@ Label: YunoHost for Jessie
|
||||||
Suite: stable
|
Suite: stable
|
||||||
Codename: jessie
|
Codename: jessie
|
||||||
Version: 8.0
|
Version: 8.0
|
||||||
Architectures: i386 amd64 armel armhf source
|
Architectures: i386 amd64 armel armhf arm64 source
|
||||||
Components: stable testing unstable extra
|
Components: stable testing unstable extra
|
||||||
AlsoAcceptFor: jessie-stable jessie-testing jessie-unstable stable testing unstable
|
AlsoAcceptFor: jessie-stable jessie-testing jessie-unstable stable testing unstable
|
||||||
Update: jessie-stable jessie-testing
|
Update: jessie-stable jessie-testing
|
||||||
|
@ -18,7 +18,7 @@ Label: YunoHost for Stretch
|
||||||
Suite: testing
|
Suite: testing
|
||||||
Codename: stretch
|
Codename: stretch
|
||||||
Version: 9.0
|
Version: 9.0
|
||||||
Architectures: i386 amd64 armel armhf source
|
Architectures: i386 amd64 armel armhf arm64 source
|
||||||
Components: stable testing unstable extra
|
Components: stable testing unstable extra
|
||||||
AlsoAcceptFor: stretch-stable stretch-testing stretch-unstable stable testing unstable
|
AlsoAcceptFor: stretch-stable stretch-testing stretch-unstable stable testing unstable
|
||||||
Description: YunoHost repository for Debian Stretch
|
Description: YunoHost repository for Debian Stretch
|
||||||
|
|
6
config/pbuilder/arm64.conf
Normal file
6
config/pbuilder/arm64.conf
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# ARM-specific configuration
|
||||||
|
|
||||||
|
DEBOOTSTRAP=debootstrap
|
||||||
|
#DEBOOTSTRAPOPTS=( '--variant=buildd' )
|
||||||
|
ARCHITECTURE=arm64
|
||||||
|
|
|
@ -10,7 +10,7 @@ dists = jessie stretch
|
||||||
work_dir = /var/cache/rebuildd/build
|
work_dir = /var/cache/rebuildd/build
|
||||||
database_uri = sqlite:///var/lib/rebuildd/rebuildd.db
|
database_uri = sqlite:///var/lib/rebuildd/rebuildd.db
|
||||||
build_more_recent = 1
|
build_more_recent = 1
|
||||||
more_archs = i386 armhf all any
|
more_archs = i386 armhf arm64 all any
|
||||||
no_system_arch = 0
|
no_system_arch = 0
|
||||||
|
|
||||||
[mail]
|
[mail]
|
||||||
|
|
|
@ -3,6 +3,6 @@ START_REBUILDD_HTTPD=1
|
||||||
PBUILDER_BIN=/usr/sbin/pbuilder
|
PBUILDER_BIN=/usr/sbin/pbuilder
|
||||||
PBUILDER_CACHE_PATH="/var/cache/pbuilder"
|
PBUILDER_CACHE_PATH="/var/cache/pbuilder"
|
||||||
PBUILDER_MIRROR=https://ftp.debian.org/debian
|
PBUILDER_MIRROR=https://ftp.debian.org/debian
|
||||||
ARCHS="amd64 i386 armhf"
|
ARCHS="amd64 i386 armhf arm64"
|
||||||
DISTS="wheezy jessie stretch"
|
DISTS="wheezy jessie stretch"
|
||||||
ENABLE_BUILDER_MAINT=1
|
ENABLE_BUILDER_MAINT=1
|
||||||
|
|
|
@ -50,6 +50,11 @@ then
|
||||||
CONFIGFILE="--configfile $PBUILDER_CONF/armhf.conf"
|
CONFIGFILE="--configfile $PBUILDER_CONF/armhf.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ $arch == "arm64" ]];
|
||||||
|
then
|
||||||
|
CONFIGFILE="--configfile $PBUILDER_CONF/arm64.conf"
|
||||||
|
fi
|
||||||
|
|
||||||
pbuilder build \
|
pbuilder build \
|
||||||
--basetgz "${BASE_TGZ}" \
|
--basetgz "${BASE_TGZ}" \
|
||||||
--debbuildopts "${DEBBUILDOPTS}" \
|
--debbuildopts "${DEBBUILDOPTS}" \
|
||||||
|
|
Loading…
Add table
Reference in a new issue