aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2020-03-03 09:35:25 +0100
committerRasmus Thomsen <oss@cogitri.dev>2020-03-03 10:28:26 +0100
commitf41b896df86ea12950381730202a0cc92366eb04 (patch)
tree7212267b985953c4570119eb432769fc2d50318f
parent4ca832f45067ee0eadd5538587a88b92bac19a8d (diff)
downloadaports-f41b896df86ea12950381730202a0cc92366eb04.tar.bz2
aports-f41b896df86ea12950381730202a0cc92366eb04.tar.xz
community/texlive: fix license and redirect stdout to /dev/null in trigger
Otherwise the trigger spams the terminal a lot. Don't redirect stderr since that mentions some modules which aren't being built due to missing tex packages (I suppose because we disable those in our build), which is valuable information.
-rw-r--r--community/texlive/APKBUILD4
-rw-r--r--community/texlive/texlive.trigger4
2 files changed, 4 insertions, 4 deletions
diff --git a/community/texlive/APKBUILD b/community/texlive/APKBUILD
index 2b816fde33..6d6769923e 100644
--- a/community/texlive/APKBUILD
+++ b/community/texlive/APKBUILD
@@ -2,11 +2,11 @@
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
pkgname=texlive
pkgver=20190410
-pkgrel=8
+pkgrel=9
pkgdesc="Comprehensive TeX document production system"
url="https://tug.org/texlive/"
arch="all"
-license="GPL"
+license="GPL-2.0-or-later AND GPL-3.0-or-later"
depends="perl texmf-dist>=2018.50036"
makedepends="freetype-dev libpng-dev poppler-dev icu-dev harfbuzz-dev
cairo-dev pixman-dev zziplib-dev libpaper-dev graphite2-dev
diff --git a/community/texlive/texlive.trigger b/community/texlive/texlive.trigger
index d549354929..cd2bae5533 100644
--- a/community/texlive/texlive.trigger
+++ b/community/texlive/texlive.trigger
@@ -1,4 +1,4 @@
#!/bin/sh
-texhash
-fmtutil-sys --all
+texhash > /dev/null 2>&1 > /dev/null
+fmtutil-sys --all > /dev/null
exit 0