termux-packages/scripts
sogaiu efe2d03821 Vagrantfile tweaks
Existing Vagrantfile lead to some problems here during provisioning:

  1. setup-ubuntu.sh would fail

and after:

  2. build-all.sh would run out of disk space
  3. build-all.sh would exit due to permission issues

Issue 1 can be addressed by running sudo apt-get update before setup-ubuntu.sh in the Vagrantfile.

One way to address issue 2 is to use the vagrant-disksize plugin:

  https://github.com/sprotheroe/vagrant-disksize

It can be installed by:

  vagrant plugin install vagrant-disksize

Then modifying Vagrantfile to contain a line like:

  config.disksize.size = '50GB'

causes the first partition to be enlarged to 50GB during provisioning.  Combined with an appropriate invocation of resize2fs:

  sudo resize2fs /dev/sda1

so that the filesystem in the partition is resized, the disk space issue seems alleviated.

Issue 3 can be addressed by changing the user from 'ubuntu' to 'vagrant' in the Vagrantfile -- at least that's what worked here.
2018-01-25 22:15:35 +01:00
..
Dockerfile Remove NDK gnu-libstdc from the docker image 2017-11-19 14:40:31 +01:00
Vagrantfile Vagrantfile tweaks 2018-01-25 22:15:35 +01:00
apt-compare-versions Introduce a scripts/ folder 2016-01-14 22:45:50 -05:00
build-clang.sh Add (currently unused) build-clang.sh script 2017-01-15 19:38:21 +01:00
buildorder.py Modify python formatting 2017-12-05 23:30:44 +01:00
check-pie.sh Introduce a scripts/ folder 2016-01-14 22:45:50 -05:00
check-versions.sh Improve check-versions.sh 2017-11-07 04:58:09 +01:00
clang-pie-wrapper Fix arm issue with clang-pie-wrapper 2017-01-17 17:31:24 +01:00
config.guess Update to latest config.{guess,sub} 2017-01-18 01:02:18 +01:00
config.sub Update to latest config.{guess,sub} 2017-01-18 01:02:18 +01:00
lint-packages.py Add TERMUX_PKG_REVISION check to lint-packages.py 2017-12-20 00:13:01 +01:00
list-packages.sh Improve scripts/list-packages.sh 2017-12-05 22:36:18 +01:00
meson-android.patch Fix meson patch (fixes #2051) 2018-01-21 20:45:35 +01:00
run-docker.ps1 Add PowerShell script to run Docker (#815) 2017-03-04 22:20:43 +01:00
run-docker.sh Docker: login as "builder" even if run-docker.sh is run as root. 2017-07-22 18:52:08 +02:00
setup-android-sdk.sh Update NDK used to r16 2017-11-15 16:48:35 +01:00
setup-archlinux.sh Enable ghostscript (#1135) 2017-08-11 13:25:55 +02:00
setup-ubuntu.sh Slim down the setup created by setup-ubuntu.sh 2017-11-26 00:43:19 +01:00
test-runner.sh Add start of regression testing of packages 2016-05-10 20:43:31 +02:00
update-docker.sh Tweak build script and docker setup 2016-06-03 18:41:30 -04:00