diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2020-05-04 12:48:40 -0400 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2020-05-04 12:49:58 -0400 |
commit | afc15703678cda346910f9ffe487253e40acede9 (patch) | |
tree | c855eb650fa81a10360f4651f5591d51168f3b91 /libre/texlive-bin | |
parent | bf133a8fa6e3a6d2d1353b1097ef903eb0f27f75 (diff) | |
download | abslibre-afc15703678cda346910f9ffe487253e40acede9.tar.gz abslibre-afc15703678cda346910f9ffe487253e40acede9.tar.bz2 abslibre-afc15703678cda346910f9ffe487253e40acede9.zip |
[texlive-bin]: revert icu-parabola dependency
Diffstat (limited to 'libre/texlive-bin')
-rw-r--r-- | libre/texlive-bin/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libre/texlive-bin/PKGBUILD b/libre/texlive-bin/PKGBUILD index 938e5022b..27398d640 100644 --- a/libre/texlive-bin/PKGBUILD +++ b/libre/texlive-bin/PKGBUILD @@ -8,7 +8,7 @@ # parabola changes and rationale: # - rebranded to parabola -# - versioned dependencies to mitigate breakage from Arch's .so bumps +# - pinned versioned dependencies to mitigate breakage from Arch's .so bumps # - diable xindy on armv7h pkgname=('texlive-bin' 'libsynctex') @@ -20,7 +20,7 @@ arch=('x86_64') arch+=('i686' 'armv7h') makedepends=('git' 'cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler' 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2' - 'icu-parabola' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper' + 'icu' 'harfbuzz' 'harfbuzz-icu' 'gmp' 'mpfr' 'potrace' 'libpaper' 'perl') makedepends_x86_64=('clisp' 'ffcall') makedepends_i686=('clisp' 'ffcall') @@ -124,10 +124,10 @@ package_texlive-bin() { options=('!strip') # pin to current 'icu' and 'poppler' libs - local _icu_ver=$( pacman -S --print-format='%v' icu-parabola) - local _poppler_ver=$(pacman -S --print-format='%v' poppler ) - depends+=("icu-parabola>=${_icu_ver}" "icu-parabola<$(( ${_icu_ver%%.*} + 1 ))" - "poppler=${_poppler_ver}" ) + local _icu_ver=$( pacman -S --print-format='%v' icu ) + local _poppler_ver=$(pacman -S --print-format='%v' poppler) + depends+=("icu>=${_icu_ver}" "icu<$(( ${_icu_ver%%.*} + 1 ))" + "poppler=${_poppler_ver}" ) cd "$srcdir/texlive-source" |