summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 04:45:44 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 04:45:44 -0300
commit41923140b560cfc76c3ca2f69762f134e25320b3 (patch)
tree45c8fb089f5601999caf9d3cd9671067e034046f
parent199657a8144a339a889e10496f471f6fde66363e (diff)
texlive-bin-2016.41290-5.parabola1: bump to Arch's revision
* silence log messages in pacman hooks * mention biber as an optional dependency
-rw-r--r--libre/texlive-bin/PKGBUILD13
-rw-r--r--libre/texlive-bin/mktexlsr.script3
-rw-r--r--libre/texlive-bin/texlive-updmap.script4
3 files changed, 8 insertions, 12 deletions
diff --git a/libre/texlive-bin/PKGBUILD b/libre/texlive-bin/PKGBUILD
index 984a43bdc..873f5d990 100644
--- a/libre/texlive-bin/PKGBUILD
+++ b/libre/texlive-bin/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 272795 2016-08-01 23:01:50Z remy $
+# $Id: PKGBUILD 273426 2016-08-06 18:30:35Z remy $
# Maintainer (Arch): Rémy Oudompheng <remy@archlinux.org>
# Contributor (Arch): francois <francois.archlinux.org>
# Maintainer: Michał Masłowski <mtjm@mtjm.eu>
@@ -6,7 +6,7 @@
pkgname=texlive-bin
pkgver=2016.41290
-pkgrel=4.parabola1
+pkgrel=5.parabola1
license=('GPL')
arch=('i686' 'x86_64' 'armv7h')
makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.46.0'
@@ -24,9 +24,9 @@ source=('fix-fontforge-encoding.patch'
md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
'7303361f2d441eb5c962a996fd77e8fa'
'7bc9cef52d3b0c15d2364b7d8658faa6'
- 'b8005a998186d3846df357ef0f4b4560'
+ '2bbbef810687f4b2804a4b8cb91ce02f'
'c18cbbd000aac60813b1695aa058964f'
- '06034157badeeefe9982d7b29e7f5b51')
+ 'c64d77b5111a26b9995263b49df4937c')
build() {
cd "$srcdir"
@@ -96,7 +96,7 @@ build() {
}
package() {
- pkgdesc="TeX Live binaries, without biber binaries (Parabola rebranded)"
+ pkgdesc="TeX Live binaries (Parabola rebranded)"
depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler=0.46.0'
'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
'icu=57.1' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper'
@@ -104,7 +104,8 @@ package() {
provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
conflicts=('pdfjam' 'texlive-bin-libre' 'texlive-bin-parabola')
replaces=('texlive-bin-libre' 'texlive-bin-parabola')
- optdepends=('ed: for texconfig')
+ optdepends=('ed: for texconfig'
+ 'biber: for bibliography processing')
install="texlive.install"
options=('!strip')
diff --git a/libre/texlive-bin/mktexlsr.script b/libre/texlive-bin/mktexlsr.script
index e0c98f349..689441538 100644
--- a/libre/texlive-bin/mktexlsr.script
+++ b/libre/texlive-bin/mktexlsr.script
@@ -1,13 +1,12 @@
#!/bin/bash
/usr/bin/mktexlsr
-echo ">>> Updating LuaTeX filename database..."
(cd /etc/texmf && /usr/bin/mtxrun --generate >/dev/null)
# We need to remove directory "." from luatex cache to avoid absurd
# behaviour.
for item in /var/lib/texmf/luatex-cache/context/*/trees/*.lua; do
if grep -F '["root"]="."' "$item" >/dev/null; then
- rm -vf "$item" "${item%.lua}.luc"
+ rm -f "$item" "${item%.lua}.luc"
fi
done
diff --git a/libre/texlive-bin/texlive-updmap.script b/libre/texlive-bin/texlive-updmap.script
index 88be8e460..1d79186ff 100644
--- a/libre/texlive-bin/texlive-updmap.script
+++ b/libre/texlive-bin/texlive-updmap.script
@@ -3,15 +3,11 @@
UPDMAP="etc/texmf/web2c/updmap.cfg"
UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg"
-echo ">>> texlive: regenerating updmap.cfg (custom additions should go"
-echo " into /etc/texmf/web2c/updmap-local.cfg"
cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP
cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
if [[ -f "$UPDMAPLOCAL" ]]; then
cat "$UPDMAPLOCAL" >> $UPDMAP
fi
-echo ">>> texlive: updating the fontmap files with updmap..."
/usr/bin/updmap-sys --quiet --nohash
-echo " done."