[arch-commits] Commit in texlive-latexextra/repos (4 files)

2020-04-02 Thread Rémy Oudompheng via arch-commits
Date: Thursday, April 2, 2020 @ 06:54:08
  Author: remy
Revision: 379112

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 379111, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.fmts
(from rev 379111, texlive-latexextra/trunk/texlive-latexextra.fmts)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 379111, texlive-latexextra/trunk/texlive-latexextra.maps)

-+
 PKGBUILD|   80 ++
 texlive-latexextra.fmts |4 ++
 texlive-latexextra.maps |3 +
 3 files changed, 87 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 379111, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-04-02 06:54:08 UTC (rev 379112)
@@ -0,0 +1,80 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-latexextra
+pkgver=2020.54584
+_revnr=${pkgver#2020.}
+pkgrel=1
+pkgdesc="TeX Live - Large collection of add-on packages for LaTeX"
+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')
+url='http://tug.org/texlive/'
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;
+"$pkgname.maps"
+"$pkgname.fmts")
+options=('!emptydirs')
+sha256sums=('b3ea17f040ddc998a0a491386bbe9e9394f597173cfe5daa0eb3f39beb116686'
+'d53750a03a52472a1c7c5ba5142959ba382a5d69215471691c0b12c3663950ce'
+'828a9cf082b9a89a4aa0eec402a9c32b8056bb873e4a5dc92ce60aec2ea69435')
+
+build() {
+   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 $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
+webquiz/webquiz.py
+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
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.fmts (from rev 
379111, texlive-latexextra/trunk/texlive-latexextra.fmts)
===
--- testing-any/texlive-latexextra.fmts (rev 0)
+++ testing-any/texlive-latexextra.fmts 2020-04-02 06:54:08 UTC (rev 379112)
@@ -0,0 +1,4 @@
+dvilualatex-dev luatex language.dat,language.dat.lua dvilualatex.ini
+latex-dev pdftex language.dat -translate-file=cp227.tcx *latex.ini
+lualatex-dev luahbtex language.dat,language.dat.lua lualatex.ini
+pdflatex-dev pdftex language.dat -translate-file=cp227.tcx *pdflatex.ini

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
379111, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2020-04-02 06:54:08 UTC (rev 379112)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+Map scanpages.map
+MixedMap esint.map


[arch-commits] Commit in texlive-latexextra/repos (4 files)

2016-06-19 Thread Rémy Oudompheng
Date: Sunday, June 19, 2016 @ 22:33:09
  Author: remy
Revision: 270221

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 270220, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 270220, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 270220, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   79 ++
 texlive-latexextra.maps |2 +
 texlive.install |   52 ++
 3 files changed, 133 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 270220, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2016-06-19 22:33:09 UTC (rev 270221)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-latexextra
+pkgver=2016.41473
+_revnr=${pkgver#2016.}
+pkgrel=1
+pkgdesc="TeX Live - Large collection of add-on packages for LaTeX"
+license=('GPL')
+arch=(any)
+depends=('texlive-core'
+ 'perl-file-which' # for pdfannotextractor
+)
+optdepends=(
+  'texlive-genericextra: to use the calctab package'
+  'texlive-pictures: to use the package overpic'
+  'java-environment: to use pdfannotextractor'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
+options=('!emptydirs')
+install=texlive.install
+md5sums=('04e9310f60d2936ce08747dba24ceadc'
+ '017fc9ed83747aa8884ca9ae0767531f')
+
+build() {
+   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 $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
+makedtx/makedtx.pl
+pax/pdfannotextractor.pl
+perltex/perltex.pl
+pst-pdf/ps4pdf
+splitindex/splitindex.pl
+svn-multi/svn-multi.pl
+vpe/vpe.pl
+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/glossaries/makeglossaries.bat
+rm "$pkgdir"/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+rm "$pkgdir"/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
270220, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2016-06-19 22:33:09 UTC (rev 270221)
@@ -0,0 +1,2 @@
+Map epiolmec.map
+MixedMap esint.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 270220, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2016-06-19 22:33:09 UTC (rev 270221)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-latexextra"
+UPDMAP="etc/texmf/web2c/updmap.cfg"
+UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg"
+SYNCWITHTREES=''
+
+MAPFILE="var/lib/texmf/arch/installedpkgs/$PKGNAME.maps"
+
+post_install() {
+  TMPFILE=`mktemp`
+  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
+  cp "$UPDMAP" "$TMPFILE"
+  echo">>> texlive: regenerating updmap.cfg (custom additions should go"
+  echo" 

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2015-09-01 Thread Rémy Oudompheng
Date: Tuesday, September 1, 2015 @ 12:30:59
  Author: remy
Revision: 245143

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 245142, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 245142, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 245142, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   77 ++
 texlive-latexextra.maps |2 +
 texlive.install |   52 +++
 3 files changed, 131 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 245142, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2015-09-01 10:30:59 UTC (rev 245143)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-latexextra
+pkgver=2015.37553
+_revnr=${pkgver#2015.}
+pkgrel=1
+pkgdesc="TeX Live - Large collection of add-on packages for LaTeX"
+license=('GPL')
+arch=(any)
+depends=('texlive-core'
+ 'perl-file-which' # for pdfannotextractor
+)
+optdepends=(
+  'texlive-genericextra: to use the calctab package'
+  'texlive-pictures: to use the package overpic'
+  'java-environment: to use pdfannotextractor'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
"$pkgname.maps")
+options=('!emptydirs')
+install=texlive.install
+md5sums=('456518aa966d23306dfbf23d33fa940a'
+ '017fc9ed83747aa8884ca9ae0767531f')
+
+build() {
+   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 $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
+pax/pdfannotextractor.pl
+perltex/perltex.pl
+pst-pdf/ps4pdf
+splitindex/splitindex.pl
+svn-multi/svn-multi.pl
+vpe/vpe.pl
+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/glossaries/makeglossaries.bat
+rm "$pkgdir"/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+rm "$pkgdir"/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
245142, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2015-09-01 10:30:59 UTC (rev 245143)
@@ -0,0 +1,2 @@
+Map epiolmec.map
+MixedMap esint.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 245142, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2015-09-01 10:30:59 UTC (rev 245143)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-latexextra"
+UPDMAP="etc/texmf/web2c/updmap.cfg"
+UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg"
+SYNCWITHTREES=''
+
+MAPFILE="var/lib/texmf/arch/installedpkgs/$PKGNAME.maps"
+
+post_install() {
+  TMPFILE=`mktemp`
+  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
+  cp "$UPDMAP" "$TMPFILE"
+  echo">>> texlive: regenerating updmap.cfg (custom additions should go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp 

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2014-08-13 Thread Rémy Oudompheng
Date: Thursday, August 14, 2014 @ 01:16:45
  Author: remy
Revision: 219692

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 219691, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 219691, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 219691, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   66 ++
 texlive-latexextra.maps |3 ++
 texlive.install |   52 
 3 files changed, 121 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 219691, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-08-13 23:16:45 UTC (rev 219692)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Firmicus firmicus āt gmx dōt net
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+
+pkgname=texlive-latexextra
+pkgver=2014.34865
+_revnr=${pkgver#2014.}
+pkgrel=1
+pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
+license=('GPL')
+arch=(any)
+depends=('texlive-core'
+ 'perl-file-which' # for pdfannotextractor
+)
+optdepends=(
+  'texlive-genericextra: to use the calctab package'
+  'texlive-pictures: to use the package overpic'
+  'java-environment: to use pdfannotextractor'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
+options=('!emptydirs')
+install=texlive.install
+md5sums=('720366292fe9b8d9548dd1e369159580'
+ '9e4825f47dac663dd62c4bfa67899e84')
+
+build() {
+   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 $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:
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/authorindex/authorindex 
$pkgdir/usr/bin/authorindex
+   ln -s /usr/share/texmf-dist/scripts/exceltex/exceltex 
$pkgdir/usr/bin/exceltex
+   ln -s /usr/share/texmf-dist/scripts/glossaries/makeglossaries 
$pkgdir/usr/bin/makeglossaries
+   ln -s /usr/share/texmf-dist/scripts/pax/pdfannotextractor.pl 
$pkgdir/usr/bin/pdfannotextractor
+   ln -s /usr/share/texmf-dist/scripts/perltex/perltex.pl 
$pkgdir/usr/bin/perltex
+   ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf
+   ln -s /usr/share/texmf-dist/scripts/splitindex/splitindex.pl 
$pkgdir/usr/bin/splitindex
+   ln -s /usr/share/texmf-dist/scripts/svn-multi/svn-multi.pl 
$pkgdir/usr/bin/svn-multi
+   ln -s /usr/share/texmf-dist/scripts/vpe/vpe.pl $pkgdir/usr/bin/vpe
+   rm $pkgdir/usr/share/texmf-dist/scripts/glossaries/makeglossaries.bat
+   rm $pkgdir/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+   rm $pkgdir/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
219691, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2014-08-13 23:16:45 UTC (rev 219692)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+MixedMap esint.map
+MixedMap manfnt.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 219691, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2014-08-13 23:16:45 UTC (rev 219692)
@@ -0,0 +1,52 @@
+PKGNAME=texlive-latexextra
+UPDMAP=etc/texmf/web2c/updmap.cfg
+UPDMAPLOCAL=etc/texmf/web2c/updmap-local.cfg
+SYNCWITHTREES=''
+

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2013-07-02 Thread Rémy Oudompheng
Date: Tuesday, July 2, 2013 @ 23:55:51
  Author: remy
Revision: 189317

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 189316, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 189316, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 189316, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   64 ++
 texlive-latexextra.maps |3 ++
 texlive.install |   52 +
 3 files changed, 119 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 189316, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-07-02 21:55:51 UTC (rev 189317)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Firmicus firmicus āt gmx dōt net
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+
+pkgname=texlive-latexextra
+pkgver=2013.30964
+_revnr=${pkgver#2013.}
+pkgrel=1
+pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+optdepends=(
+  'texlive-pictures: to use the package overpic'
+  'java-environment: to use pdfannotextractor'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('64386dfe9fc40f2d4edc7c653d716bdf'
+ '9e4825f47dac663dd62c4bfa67899e84')
+
+build() {
+   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 $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:
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/authorindex/authorindex 
$pkgdir/usr/bin/authorindex
+   ln -s /usr/share/texmf-dist/scripts/exceltex/exceltex 
$pkgdir/usr/bin/exceltex
+   ln -s /usr/share/texmf-dist/scripts/glossaries/makeglossaries 
$pkgdir/usr/bin/makeglossaries
+   ln -s /usr/share/texmf-dist/scripts/pax/pdfannotextractor.pl 
$pkgdir/usr/bin/pdfannotextractor
+   ln -s /usr/share/texmf-dist/scripts/perltex/perltex.pl 
$pkgdir/usr/bin/perltex
+   ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf
+   ln -s /usr/share/texmf-dist/scripts/splitindex/splitindex.pl 
$pkgdir/usr/bin/splitindex
+   ln -s /usr/share/texmf-dist/scripts/svn-multi/svn-multi.pl 
$pkgdir/usr/bin/svn-multi
+   ln -s /usr/share/texmf-dist/scripts/vpe/vpe.pl $pkgdir/usr/bin/vpe
+   rm $pkgdir/usr/share/texmf-dist/scripts/glossaries/makeglossaries.bat
+   rm $pkgdir/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+   rm $pkgdir/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
189316, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2013-07-02 21:55:51 UTC (rev 189317)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+MixedMap esint.map
+MixedMap manfnt.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 189316, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2013-07-02 21:55:51 UTC (rev 189317)
@@ -0,0 +1,52 @@
+PKGNAME=texlive-latexextra
+UPDMAP=etc/texmf/web2c/updmap.cfg
+UPDMAPLOCAL=etc/texmf/web2c/updmap-local.cfg
+SYNCWITHTREES=''
+
+MAPFILE=var/lib/texmf/arch/installedpkgs/$PKGNAME.maps
+
+post_install() {
+  TMPFILE=`mktemp`
+  echo texlive: 

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2013-04-18 Thread Rémy Oudompheng
Date: Friday, April 19, 2013 @ 01:52:34
  Author: remy
Revision: 183222

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 183221, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 183221, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 183221, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   72 ++
 texlive-latexextra.maps |3 +
 texlive.install |   52 +
 3 files changed, 127 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 183221, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2013-04-18 23:52:34 UTC (rev 183222)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Firmicus firmicus āt gmx dōt net
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+
+pkgname=texlive-latexextra
+pkgver=2012.29701
+_revnr=${pkgver#2012.}
+pkgrel=1
+pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+optdepends=(
+  'texlive-pictures: to use the package overpic'
+  'openjdk6: for use by ppower4'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('1b67842cdc5debc80730fced7ce369ce'
+ '9e4825f47dac663dd62c4bfa67899e84')
+
+build() {
+   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 $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:
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/authorindex/authorindex 
$pkgdir/usr/bin/authorindex
+   ln -s /usr/share/texmf-dist/scripts/exceltex/exceltex 
$pkgdir/usr/bin/exceltex
+   ln -s /usr/share/texmf-dist/scripts/glossaries/makeglossaries 
$pkgdir/usr/bin/makeglossaries
+   ln -s /usr/share/texmf-dist/scripts/pax/pdfannotextractor.pl 
$pkgdir/usr/bin/pdfannotextractor
+ln -s /usr/share/texmf-dist/scripts/perltex/perltex.pl 
$pkgdir/usr/bin/perltex
+   ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf
+   ln -s /usr/share/texmf-dist/scripts/splitindex/perl/splitindex.pl 
$pkgdir/usr/bin/splitindex
+   ln -s /usr/share/texmf-dist/scripts/svn-multi/svn-multi.pl 
$pkgdir/usr/bin/svn-multi
+   ln -s /usr/share/texmf-dist/scripts/vpe/vpe.pl $pkgdir/usr/bin/vpe
+   # but ppower4 was a symlink to ppower4.tlu, which was broken, but this is 
far better:
+   (
+   cat END
+#!/bin/bash
+java -jar /usr/share/texmf-dist/scripts/ppower4/pp4p.jar $@
+END
+   )  /tmp/ppower4 
+   install -m755 /tmp/ppower4 $pkgdir/usr/bin/
+   rm $pkgdir/usr/share/texmf-dist/scripts/glossaries/makeglossaries.bat
+   rm $pkgdir/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+   rm $pkgdir/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
183221, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2013-04-18 23:52:34 UTC (rev 183222)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+MixedMap esint.map
+MixedMap manfnt.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 183221, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2013-04-18 23:52:34 UTC (rev 183222)
@@ -0,0 +1,52 @@

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2012-11-18 Thread Rémy Oudompheng
Date: Monday, November 19, 2012 @ 02:38:05
  Author: remy
Revision: 171570

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 171569, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 171569, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 171569, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   72 ++
 texlive-latexextra.maps |3 +
 texlive.install |   52 +
 3 files changed, 127 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 171569, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-11-19 07:38:05 UTC (rev 171570)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Firmicus firmicus āt gmx dōt net
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+
+pkgname=texlive-latexextra
+pkgver=2012.28272
+_revnr=${pkgver#2012.}
+pkgrel=1
+pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+optdepends=(
+  'texlive-pictures: to use the package overpic'
+  'openjdk6: for use by ppower4'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('75db29b9e9bea30e9b6c1b77c4fca964'
+ '9e4825f47dac663dd62c4bfa67899e84')
+
+build() {
+   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 $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:
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/authorindex/authorindex 
$pkgdir/usr/bin/authorindex
+   ln -s /usr/share/texmf-dist/scripts/exceltex/exceltex 
$pkgdir/usr/bin/exceltex
+   ln -s /usr/share/texmf-dist/scripts/glossaries/makeglossaries 
$pkgdir/usr/bin/makeglossaries
+   ln -s /usr/share/texmf-dist/scripts/pax/pdfannotextractor.pl 
$pkgdir/usr/bin/pdfannotextractor
+ln -s /usr/share/texmf-dist/scripts/perltex/perltex.pl 
$pkgdir/usr/bin/perltex
+   ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf
+   ln -s /usr/share/texmf-dist/scripts/splitindex/perl/splitindex.pl 
$pkgdir/usr/bin/splitindex
+   ln -s /usr/share/texmf-dist/scripts/svn-multi/svn-multi.pl 
$pkgdir/usr/bin/svn-multi
+   ln -s /usr/share/texmf-dist/scripts/vpe/vpe.pl $pkgdir/usr/bin/vpe
+   # but ppower4 was a symlink to ppower4.tlu, which was broken, but this is 
far better:
+   (
+   cat END
+#!/bin/bash
+java -jar /usr/share/texmf-dist/scripts/ppower4/pp4p.jar $@
+END
+   )  /tmp/ppower4 
+   install -m755 /tmp/ppower4 $pkgdir/usr/bin/
+   rm $pkgdir/usr/share/texmf-dist/scripts/glossaries/makeglossaries.bat
+   rm $pkgdir/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+   rm $pkgdir/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
171569, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2012-11-19 07:38:05 UTC (rev 171570)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+MixedMap esint.map
+MixedMap manfnt.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 171569, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2012-11-19 07:38:05 UTC (rev 171570)
@@ -0,0 +1,52 

[arch-commits] Commit in texlive-latexextra/repos (4 files)

2012-06-26 Thread Rémy Oudompheng
Date: Tuesday, June 26, 2012 @ 16:22:39
  Author: remy
Revision: 162413

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/
  texlive-latexextra/repos/testing-any/PKGBUILD
(from rev 162412, texlive-latexextra/trunk/PKGBUILD)
  texlive-latexextra/repos/testing-any/texlive-latexextra.maps
(from rev 162412, texlive-latexextra/trunk/texlive-latexextra.maps)
  texlive-latexextra/repos/testing-any/texlive.install
(from rev 162412, texlive-latexextra/trunk/texlive.install)

-+
 PKGBUILD|   72 ++
 texlive-latexextra.maps |3 +
 texlive.install |   52 +
 3 files changed, 127 insertions(+)

Copied: texlive-latexextra/repos/testing-any/PKGBUILD (from rev 162412, 
texlive-latexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-06-26 20:22:39 UTC (rev 162413)
@@ -0,0 +1,72 @@
+# Maintainer: Firmicus firmicus āt gmx dōt net
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+
+pkgname=texlive-latexextra
+pkgver=2012.26807
+_revnr=${pkgver#2012.}
+pkgrel=1
+pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+optdepends=(
+  'texlive-pictures: to use the package overpic'
+  'openjdk6: for use by ppower4'
+)
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip; 
$pkgname.maps)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('868dc1824391768e120fdd71ba28e520'
+ '9e4825f47dac663dd62c4bfa67899e84')
+
+build() {
+   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 $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:
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/authorindex/authorindex 
$pkgdir/usr/bin/authorindex
+   ln -s /usr/share/texmf-dist/scripts/exceltex/exceltex 
$pkgdir/usr/bin/exceltex
+   ln -s /usr/share/texmf-dist/scripts/glossaries/makeglossaries 
$pkgdir/usr/bin/makeglossaries
+   ln -s /usr/share/texmf-dist/scripts/pax/pdfannotextractor.pl 
$pkgdir/usr/bin/pdfannotextractor
+   ln -s /usr/share/texmf-dist/scripts/ppower4/pdfthumb.tlu 
$pkgdir/usr/bin/pdfthumb
+   ln -s /usr/share/texmf-dist/scripts/perltex/perltex.pl 
$pkgdir/usr/bin/perltex
+   ln -s /usr/share/texmf-dist/scripts/pst-pdf/ps4pdf $pkgdir/usr/bin/ps4pdf
+   ln -s /usr/share/texmf-dist/scripts/splitindex/perl/splitindex.pl 
$pkgdir/usr/bin/splitindex
+   ln -s /usr/share/texmf-dist/scripts/svn-multi/svn-multi.pl 
$pkgdir/usr/bin/svn-multi
+   ln -s /usr/share/texmf-dist/scripts/vpe/vpe.pl $pkgdir/usr/bin/vpe
+   # but ppower4 was a symlink to ppower4.tlu, which was broken, but this is 
far better:
+   (
+   cat END
+#!/bin/bash
+java -jar /usr/share/texmf-dist/scripts/ppower4/pp4p.jar $@
+END
+   )  /tmp/ppower4 
+   install -m755 /tmp/ppower4 $pkgdir/usr/bin/
+   rm $pkgdir/usr/share/texmf-dist/scripts/glossaries/makeglossaries.bat
+   rm $pkgdir/usr/share/texmf-dist/scripts/pst-pdf/ps4pdf.bat*
+   rm $pkgdir/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
+}

Copied: texlive-latexextra/repos/testing-any/texlive-latexextra.maps (from rev 
162412, texlive-latexextra/trunk/texlive-latexextra.maps)
===
--- testing-any/texlive-latexextra.maps (rev 0)
+++ testing-any/texlive-latexextra.maps 2012-06-26 20:22:39 UTC (rev 162413)
@@ -0,0 +1,3 @@
+Map epiolmec.map
+MixedMap esint.map
+MixedMap manfnt.map

Copied: texlive-latexextra/repos/testing-any/texlive.install (from rev 162412, 
texlive-latexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++