* texlive-full: depend on texlive-bibtexextra as well
Fixes https://github.com/termux/termux-packages/issues/4871
* texlive-tlmgr: remove package
Will look at creating a "texlive-installer" package in the unstable
repository instead.
* texlive: fix paths in a couple of scripts
Fixes https://github.com/termux/termux-packages/issues/4823.
* texlive: upgrade to 20200410
* texlive-bin: fix path to host built otangle
* texlive: fix tlpdb version
* texlive: conflict with more subpackages from last year
Don't use %n in vasnprintf.c, it breaks things.
$ gzip --version
FORTIFY: %n not allowed on Android
Aborted
See m4's issue in #4381.
This should be fixed in the next gzip release, though, as gnulib has
been updated in the master branch. However, for now, this will fix
things.
The previous approach appended TERMUX_PREFIX to the empty default sysroot, which would
render those paths useless if the --sysroot command-line flag was ever set. With this
approach, clang reuses much more of the existing sysroot logic and makes it more
likely that a passed-in sysroot will work.
Also, remove the rpath for alternate architectures, as it wasn't working.
The original comment indicates that using `bzero()` directly may result in dead store elimination, so they explicitly avoided calling `bzero()` as you do now. `explicit_bzero` is used in cryptographic software to clear keys from process memory after use, even if that memory is not read any more afterwards.
Maybe it would be safer like this? (I copied the approach from https://android.googlesource.com/platform/external/openssh/+/refs/tags/android-6.0.1_r70/openbsd-compat/explicit_bzero.c, so that should work on Android.)
Caveat, I was hand-editing the diff and did not find time to set up the toolchain to build this; but the general approach should work?