Here is an updated version of the PKGBUILD.

Changelog:
- Split mksource() to prepare() and build() to have a more standard
 PKGBUID closer to Arch's one. Remove the corresponding variables.
- Add command to remove 'clock' from CONTENTS (line 43). It seems to me,
 that it was forgotten.

PKGBUILD:


# Maintainer (Arch): Firmicus <firmicus āt gmx dōt net>
# Maintainer (Arch): Rémy Oudompheng <[email protected]>
# Contributor (Hyperbola): André Silva <[email protected]>
# Maintainer: Michał Masłowski <[email protected]>
# Contributor: Isaac David <isacdaavid@at@isacdaavid@dot@info>

pkgname=texlive-latexextra
pkgver=2019.50920
_revnr=${pkgver#2019.}
pkgrel=1
pkgrel+=.par1
pkgdesc="TeX Live - Large collection of add-on packages for LaTeX"
pkgdesc+=", without nonfree add-on packages"
license=('GPL')
arch=(any)
depends=('texlive-core'
        'perl-file-which' # for pdfannotextractor
       )
optdepends=(
 'python2-pygments: for pygmentex'
 'texlive-genericextra: to use the calctab package'
 'texlive-pictures: to use the package overpic'
 'java-environment: to use pdfannotextractor'
)
groups=('texlive-most')
replaces=('texlive-latexextra-libre')
conflicts=('texlive-latexextra-libre')
url='http://tug.org/texlive/'
options=('!emptydirs')
source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";
       "$pkgname.maps")
sha256sums=('362fe75eafe2cdc8e6fd3bd7eb3b40420966ad87a264f2c553de93a41d7d455b'
           'd53750a03a52472a1c7c5ba5142959ba382a5d69215471691c0b12c3663950ce')

prepare() {
  # remove nonfree packages
  # no specific free license
  rm -v {authoraftertitle,clock,fnpara}.tar.xz
  # nonfree license (CC BY-NC)
  rm -v axessibility.tar.xz

  # remove nonfree packages references from package list
  sed -ri '/^(axessibility|authoraftertitle|clock|fnpara) /d' CONTENTS
}

build() {
  echo "   --> extracting all packages... "
  for p in *.tar.xz; do
           bsdtar -xf $p
  done
  rm -rf {tlpkg,doc,source} || true

}

package() {
  install -m755 -d "$pkgdir"/var/lib/texmf/arch/installedpkgs
  sed -i '/^#/d' CONTENTS
  install -m644 CONTENTS 
"$pkgdir"/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
  install -m644 $srcdir/$pkgname.maps 
"$pkgdir"/var/lib/texmf/arch/installedpkgs/
  install -m755 -d "$pkgdir"/usr/share
  wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; 
done) || true
  for dir in $wanteddirs; do
    find $dir -type d -exec install -d -m755 
"$pkgdir"/usr/share/texmf-dist/'{}' \;
    find $dir -type f -exec install -m644 '{}' 
"$pkgdir"/usr/share/texmf-dist/'{}' \;
  done
  if [[ -d texmf-dist ]]; then
    find texmf-dist -type d -exec install -d -m755 "$pkgdir"/usr/share/'{}' \;
    find texmf-dist -type f -exec install -m644 '{}' "$pkgdir"/usr/share/'{}' \;
  fi
  if [[ -d "$pkgdir"/usr/share/texmf-dist/scripts ]]; then
    find "$pkgdir"/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
  fi

   #add symlinks that were in texlive-bin:
   _linked_scripts="
authorindex/authorindex
exceltex/exceltex
glossaries/makeglossaries
glossaries/makeglossaries-lite.lua
l3build/l3build.lua
makedtx/makedtx.pl
pax/pdfannotextractor.pl
perltex/perltex.pl
pygmentex/pygmentex.py
splitindex/splitindex.pl
svn-multi/svn-multi.pl
vpe/vpe.pl
wordcount/wordcount.sh
yplan/yplan
"
   install -m755 -d "$pkgdir"/usr/bin
   for _script in ${_linked_scripts}; do
       _scriptbase=$(basename $_script)
       _scriptbase=${_scriptbase%.*}
       ln -s /usr/share/texmf-dist/scripts/${_script} 
${pkgdir}/usr/bin/${_scriptbase}
   done

   rm "$pkgdir"/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
}




Parabola Website Notification <[email protected]> schrieb am Tue, 16. Jul 19 
20:06:
[email protected] wants to notify you that the following packages may be 
out-of-date:


* texlive-latexextra 2018.49282-1.par1 [libre] (armv7h): 
https://parabolagnulinux.org/packages/libre/armv7h/texlive-latexextra/
* texlive-latexextra 2018.49282-1.par1 [libre] (i686): 
https://parabolagnulinux.org/packages/libre/i686/texlive-latexextra/
* texlive-latexextra 2018.49282-1.par1 [libre] (x86_64): 
https://parabolagnulinux.org/packages/libre/x86_64/texlive-latexextra/


The user provided the following additional text:

Version 2019.50920-1 is packaged in Arch Linux.

This is probably related to issue #2347 (https://labs.parabola.nu/issues/2347).

_______________________________________________
Dev mailing list
[email protected]
https://lists.parabola.nu/mailman/listinfo/dev

Attachment: signature.asc
Description: PGP signature

_______________________________________________
Dev mailing list
[email protected]
https://lists.parabola.nu/mailman/listinfo/dev

Reply via email to