[arch-commits] Commit in texlive-langcjk/trunk (PKGBUILD texlive.install)

François Charette francois at archlinux.org
Tue Aug 18 09:15:05 UTC 2009


    Date: Tuesday, August 18, 2009 @ 05:15:05
  Author: francois
Revision: 49989

upgpkg: texlive-langcjk 2009.14619-1
    update + better handling of mapfiles during install

Modified:
  texlive-langcjk/trunk/PKGBUILD
  texlive-langcjk/trunk/texlive.install

-----------------+
 PKGBUILD        |    8 ++++---
 texlive.install |   60 ++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 43 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2009-08-18 09:14:32 UTC (rev 49988)
+++ PKGBUILD	2009-08-18 09:15:05 UTC (rev 49989)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus <firmicus āt gmx dōt net>
 
 pkgname=texlive-langcjk
-pkgver=2009.14469
+pkgver=2009.14619
 pkgrel=1
 pkgdesc="TeX Live - CJK (Chinese, Japanese, Korean) macros and fonts"
 license=('GPL')
@@ -9,10 +9,11 @@
 depends=('texlive-core')
 groups=('texlive-lang')
 url='http://tug.org/texlive/'
-source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip")
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip" "$pkgname.maps")
 options=('!emptydirs')
 install=texlive.install
-md5sums=('09308a77a062b886b3206c76c8026475')
+md5sums=('d624f997f8da9a48627eecb7a7759219'
+         'a4c50faea47494bad836b83391eb720e')
 
 build() {
    cd $srcdir
@@ -20,6 +21,7 @@
    sed -i '/^#/d' CONTENTS || return 1
    _revnr=`echo $pkgver | sed 's/2009\.//'`
    install -m644 CONTENTS $pkgdir/usr/share/texmf-var/arch/installedpkgs/${pkgname}_${_revnr}.pkgs || return 1
+   install -m644 $pkgname.maps $pkgdir/usr/share/texmf-var/arch/installedpkgs/ || return 1
    for p in *.tar.xz; do 
 	   bsdtar -xf $p || return 1
    done

Modified: texlive.install
===================================================================
--- texlive.install	2009-08-18 09:14:32 UTC (rev 49988)
+++ texlive.install	2009-08-18 09:15:05 UTC (rev 49989)
@@ -1,5 +1,8 @@
-pre_install() {
-        cat >> /usr/share/texmf-config/web2c/updmap.cfg <<EOF
+PKGNAME="texlive-langcjk"
+UPDMAP="/usr/share/texmf-config/web2c/updmap.cfg"
+SYNCWITHTREES=''
+NEWMAPS=`mktemp`
+cat <<EOF > $NEWMAPS
 Map bkaiu.map
 Map bsmiu.map
 Map dgj.map
@@ -14,6 +17,9 @@
 Map norasi-c90.map
 Map umj.map
 EOF
+
+pre_install() {
+	cat $NEWMAPS >> $UPDMAP
 }
 
 post_install() {
@@ -24,35 +30,45 @@
 	echo    " done." 
 }
 
+
+pre_upgrade() {
+  OLDMAPS="/usr/share/texmf-var/arch/installedpkgs/$PKGNAME.maps"
+  if [ -f $OLDMAPS ] ; then
+    MAPSDIFF=`mktemp`
+    TOADD=`mktemp`
+    diff -B $OLDMAPS $NEWMAPS | sed 's/\s\+/ /g' > $MAPSDIFF
+    TOREMOVE=`cat $MAPSDIFF | egrep '^<' | cut -d' ' -f3`
+    cat $MAPSDIFF | egrep '^>' | sed 's/^> //' > $TOADD
+    if [ "x$TOREMOVE" != "x" ]; then
+      for map in $TOREMOVE; do
+        sed -i "/\s$map/d" $UPDMAP
+      done
+    fi
+    if [ -s $TOADD ]; then
+       cat $TOADD >> $UPDMAP
+    fi
+  else
+    echo "Warning: file $PKGNAME.maps not found" 
+    echo "(ignore the above if updating from TL2008 or from TL2009 in testing)"
+    SYNCWITHTREES="--syncwithtrees"
+  fi
+}
+
+
 post_upgrade() {
 	echo    ">>> texlive: updating the filename database..."
 	texconfig-sys rehash
 	echo    ">>> texlive: updating the fontmap files with updmap..."
-	updmap-sys --quiet --nohash
+	updmap-sys --quiet --nohash $SYNCWITHTREES
 	echo    " done." 
 }
 
 pre_remove() {
-	MAPS="bkaiu.map
-bsmiu.map
-dgj.map
-dmj.map
-garuda-c90.map
-gbsnu.map
-gkaiu.map
-mc2j.map
-mcj.map
-mr2j.map
-mrj.map
-norasi-c90.map
-umj.map"
-	for m in $MAPS; do sed -i "/^M.\+$m/d" /usr/share/texmf-config/web2c/updmap.cfg ; done
+for m in `cut -d' ' -f2 $NEWMAPS`; do 
+  sed -i "/\s$m/d" $UPDMAP ; 
+done
 }
 
 post_remove() {
-	echo    ">>> texlive: updating the filename database..."
-	texconfig-sys rehash
-	echo    ">>> texlive: updating the fontmap files with updmap..."
-	updmap-sys --quiet --nohash
-	echo    " done." 
+  post_install
 }




More information about the arch-commits mailing list