[arch-commits] Commit in llvm/repos (14 files)

2011-12-04 Thread Evangelos Foutras
Date: Sunday, December 4, 2011 @ 23:48:47
  Author: foutrelis
Revision: 144360

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  llvm/repos/testing-i686/
  llvm/repos/testing-i686/PKGBUILD
(from rev 144359, llvm/trunk/PKGBUILD)
  llvm/repos/testing-i686/cindexer-clang-path.patch
(from rev 144359, llvm/trunk/cindexer-clang-path.patch)
  llvm/repos/testing-i686/clang-plugin-loader-registry.patch
(from rev 144359, llvm/trunk/clang-plugin-loader-registry.patch)
  llvm/repos/testing-i686/clang-pure64.patch
(from rev 144359, llvm/trunk/clang-pure64.patch)
  llvm/repos/testing-i686/enable-lto.patch
(from rev 144359, llvm/trunk/enable-lto.patch)
  llvm/repos/testing-i686/fix-gold-lto-linking.patch
(from rev 144359, llvm/trunk/fix-gold-lto-linking.patch)
  llvm/repos/testing-x86_64/
  llvm/repos/testing-x86_64/PKGBUILD
(from rev 144359, llvm/trunk/PKGBUILD)
  llvm/repos/testing-x86_64/cindexer-clang-path.patch
(from rev 144359, llvm/trunk/cindexer-clang-path.patch)
  llvm/repos/testing-x86_64/clang-plugin-loader-registry.patch
(from rev 144359, llvm/trunk/clang-plugin-loader-registry.patch)
  llvm/repos/testing-x86_64/clang-pure64.patch
(from rev 144359, llvm/trunk/clang-pure64.patch)
  llvm/repos/testing-x86_64/enable-lto.patch
(from rev 144359, llvm/trunk/enable-lto.patch)
  llvm/repos/testing-x86_64/fix-gold-lto-linking.patch
(from rev 144359, llvm/trunk/fix-gold-lto-linking.patch)

---+
 testing-i686/PKGBUILD |  199 
 testing-i686/cindexer-clang-path.patch|   10 +
 testing-i686/clang-plugin-loader-registry.patch   |   11 +
 testing-i686/clang-pure64.patch   |   13 +
 testing-i686/enable-lto.patch |   32 +++
 testing-i686/fix-gold-lto-linking.patch   |   11 +
 testing-x86_64/PKGBUILD   |  199 
 testing-x86_64/cindexer-clang-path.patch  |   10 +
 testing-x86_64/clang-plugin-loader-registry.patch |   11 +
 testing-x86_64/clang-pure64.patch |   13 +
 testing-x86_64/enable-lto.patch   |   32 +++
 testing-x86_64/fix-gold-lto-linking.patch |   11 +
 12 files changed, 552 insertions(+)

Copied: llvm/repos/testing-i686/PKGBUILD (from rev 144359, llvm/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-12-05 04:48:47 UTC (rev 144360)
@@ -0,0 +1,199 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: Sebastian Nowicki 
+# Contributor: Devin Cofer 
+# Contributor: Tobias Kieslich 
+# Contributor: Geoffroy Carrier 
+# Contributor: Tomas Lindquist Olsen 
+# Contributor: Roberto Alsina 
+# Contributor: Gerardo Exequiel Pozzi 
+
+pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
+pkgver=3.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url="http://llvm.org/";
+license=('custom:University of Illinois/NCSA Open Source License')
+makedepends=('libffi' 'python2' 'ocaml')
+source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tar.gz
+http://llvm.org/releases/$pkgver/clang-$pkgver.tar.gz
+clang-plugin-loader-registry.patch
+cindexer-clang-path.patch
+clang-pure64.patch
+enable-lto.patch
+fix-gold-lto-linking.patch)
+sha256sums=('519eb11d3499ce99c6ffdb8718651fc91425ed7690eac91c8d6853474f7c0477'
+'b64e72da356d7c3428cfd7ac620d49ec042c84eaee13c26024879f555f4e126d'
+'a0a4494f2a692789670be37fd390906dcaa37b1824f740bdaaea21182f2f3a9c'
+'3074df5322900e087377a8e03a02115463ccc0011c25917c2f06df11facd9b92'
+'288a82fbff17bc554f5863734246500e637882af33ee8511019d5e0d6cd20524'
+'cf8922a932e1859f3783bef2af8ac1e90ce96f8eec79928392327b71b3d7cb89'
+'24d275cdf170f53844bc7174b065fb51b6ddbb9642ced34702cde1f0f74d9192')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver.src"
+
+  # At the present, clang must reside inside the LLVM source code tree to build
+  # See http://llvm.org/bugs/show_bug.cgi?id=4840
+  rm -rf tools/clang
+  cp -r "$srcdir/clang-$pkgver.src" tools/clang
+
+  # Fix symbolic links from OCaml bindings to LLVM libraries
+  sed -i 's:\$(PROJ_libdir):/usr/lib/llvm:' bindings/ocaml/Makefile.ocaml
+
+  # Fix installation directories, ./configure doesn't seem to set them right
+  sed -i -e 's:\$(PROJ_prefix)/etc/llvm:/etc/llvm:' \
+ -e 's:\$(PROJ_prefix)/lib:$(PROJ_prefix)/lib/llvm:' \
+ -e 's:\$(PROJ_prefix)/docs/llvm:$(PROJ_prefix)/share/doc/llvm:' \
+Makefile.config.in
+
+  # Fix insecure rpath (http://bugs.archlinux.org/task/14017)
+  sed -i 's:$(RPATH) -Wl,$(\(ToolDir\|LibDir\|ExmplDir\))::g' Makefile.rules
+
+  # Get the correct list of symbols to export
+  # See http://lists.cs.uiuc.edu/pipermail/cfe-dev/2010-April/008559.h

[arch-commits] Commit in llvm/trunk (6 files)

2011-12-04 Thread Evangelos Foutras
Date: Sunday, December 4, 2011 @ 23:48:10
  Author: foutrelis
Revision: 144359

upgpkg: llvm 3.0-1

New upstream release.

Added:
  llvm/trunk/fix-gold-lto-linking.patch
Modified:
  llvm/trunk/PKGBUILD
  llvm/trunk/clang-pure64.patch
  llvm/trunk/enable-lto.patch
Deleted:
  llvm/trunk/bug-9869-operator-h-c++0x.patch
  llvm/trunk/clang-toolchains-gcc-versions.patch

-+
 PKGBUILD|   86 ++
 bug-9869-operator-h-c++0x.patch |   57 --
 clang-pure64.patch  |   29 ---
 clang-toolchains-gcc-versions.patch |   12 
 enable-lto.patch|   18 ++-
 fix-gold-lto-linking.patch  |   11 
 6 files changed, 47 insertions(+), 166 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-05 03:45:19 UTC (rev 144358)
+++ PKGBUILD2011-12-05 04:48:10 UTC (rev 144359)
@@ -10,39 +10,34 @@
 # Contributor: Gerardo Exequiel Pozzi 
 
 pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
-pkgver=2.9
-_gcc_ver=4.6.2
-pkgrel=7
+pkgver=3.0
+pkgrel=1
 arch=('i686' 'x86_64')
 url="http://llvm.org/";
 license=('custom:University of Illinois/NCSA Open Source License')
-makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=$_gcc_ver")
-source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tgz
-http://llvm.org/releases/$pkgver/clang-$pkgver.tgz
-ftp://ftp.archlinux.org/other/community/clang/gcc-headers-4.5.2.tar.xz
+makedepends=('libffi' 'python2' 'ocaml')
+source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tar.gz
+http://llvm.org/releases/$pkgver/clang-$pkgver.tar.gz
 clang-plugin-loader-registry.patch
 cindexer-clang-path.patch
-clang-toolchains-gcc-versions.patch
 clang-pure64.patch
 enable-lto.patch
-bug-9869-operator-h-c++0x.patch)
-sha256sums=('661236cfa17428b48cfa9cbb9909f7569c64b8ecd219fd91dbc00e3b557b3779'
-'70c41f3f782a71cbaa7bc8d6ea29fce4263ad3e8558dfecc6dc11cdef17909df'
-'12cf0bfb128cd8bd2a308c3c03cf0e607aa47bd87d9a58b422b96bd387e476c1'
+fix-gold-lto-linking.patch)
+sha256sums=('519eb11d3499ce99c6ffdb8718651fc91425ed7690eac91c8d6853474f7c0477'
+'b64e72da356d7c3428cfd7ac620d49ec042c84eaee13c26024879f555f4e126d'
 'a0a4494f2a692789670be37fd390906dcaa37b1824f740bdaaea21182f2f3a9c'
 '3074df5322900e087377a8e03a02115463ccc0011c25917c2f06df11facd9b92'
-'7c05788c02697f0cd05f7c74fe65b460530c0748851313eb950c5d4d17a8115a'
-'5bba4964d0d832c9e97308beb45244ff6ed4e16ed3f9f771babe571f1b82fa33'
-'1a308679edf3078b8f0c33c94d4e6d0c0db6d3baad91babce08bf5370aa052ef'
-'1c37346b0f412556dc979fd510585f3e20d2d45319ec095dbdec37a582d590c7')
+'288a82fbff17bc554f5863734246500e637882af33ee8511019d5e0d6cd20524'
+'cf8922a932e1859f3783bef2af8ac1e90ce96f8eec79928392327b71b3d7cb89'
+'24d275cdf170f53844bc7174b065fb51b6ddbb9642ced34702cde1f0f74d9192')
 
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$srcdir/$pkgname-$pkgver.src"
 
   # At the present, clang must reside inside the LLVM source code tree to build
   # See http://llvm.org/bugs/show_bug.cgi?id=4840
   rm -rf tools/clang
-  cp -r "$srcdir/clang-$pkgver" tools/clang
+  cp -r "$srcdir/clang-$pkgver.src" tools/clang
 
   # Fix symbolic links from OCaml bindings to LLVM libraries
   sed -i 's:\$(PROJ_libdir):/usr/lib/llvm:' bindings/ocaml/Makefile.ocaml
@@ -63,11 +58,8 @@
   # Fix clang path in CIndexer.cpp (https://bugs.archlinux.org/task/22799)
   patch -d tools/clang -Np0 -i "$srcdir/cindexer-clang-path.patch"
 
-  # Add GCC 4.6.1 to GccVersions (FS#23631)
-  patch -d tools/clang -Np1 -i "$srcdir/clang-toolchains-gcc-versions.patch"
-
   if [[ $CARCH == x86_64 ]]; then
-# Adjust lib paths
+# Adjust linker path
 patch -d tools/clang -Np0 -i "$srcdir/clang-pure64.patch"
   fi
 
@@ -75,9 +67,8 @@
   # Use gold instead of default linker, and always use the plugin
   patch -d tools/clang -Np0 -i "$srcdir/enable-lto.patch"
 
-  # Fix upstream bug #9869:
-  #   Operator.h incompatibility with GCC 4.6 in C++0x mode
-  patch -Np2 -i "$srcdir/bug-9869-operator-h-c++0x.patch"
+  # Fix libLTO.so location in gold plugin
+  patch -Np1 -i "$srcdir/fix-gold-lto-linking.patch"
 
   # Apply strip option to configure
   _optimized_switch="enable"
@@ -86,20 +77,8 @@
   # Include location of libffi headers in CPPFLAGS
   export CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libffi)"
 
-  # TODO: Uncomment when clang works with GCC 4.6+
-  #_cxx_headers="/usr/include/c++/$_gcc_ver"
-  #if [[ ! -d $_cxx_headers ]]; then
-  #  error "Couldn't find the C++ headers, PKGBUILD needs fixing!"
-  #  return 1
-  #fi
-  _cxx_headers="/usr/include/c++/clang-$pkgver"
-
-  _32bit_headers=""
-  if [[ $CARCH == x86_64 ]]; then
-# Important for multi

[arch-commits] Commit in hplip/repos (8 files)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 22:45:19
  Author: eric
Revision: 144358

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  hplip/repos/extra-i686/PKGBUILD
(from rev 144357, hplip/trunk/PKGBUILD)
  hplip/repos/extra-i686/hplip.install
(from rev 144357, hplip/trunk/hplip.install)
  hplip/repos/extra-x86_64/PKGBUILD
(from rev 144357, hplip/trunk/PKGBUILD)
  hplip/repos/extra-x86_64/hplip.install
(from rev 144357, hplip/trunk/hplip.install)
Deleted:
  hplip/repos/extra-i686/PKGBUILD
  hplip/repos/extra-i686/hplip.install
  hplip/repos/extra-x86_64/PKGBUILD
  hplip/repos/extra-x86_64/hplip.install

+
 extra-i686/PKGBUILD|  128 ++-
 extra-i686/hplip.install   |   20 +++---
 extra-x86_64/PKGBUILD  |  128 ++-
 extra-x86_64/hplip.install |   20 +++---
 4 files changed, 156 insertions(+), 140 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-05 03:44:51 UTC (rev 144357)
+++ extra-i686/PKGBUILD 2011-12-05 03:45:19 UTC (rev 144358)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer : Rémy Oudompheng 
-# Contributor: Morgan LEFIEUX 
-
-pkgname=hplip
-pkgver=3.11.10
-pkgrel=1
-pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
-arch=('i686' 'x86_64')
-url="http://hplipopensource.com";
-license=('GPL')
-depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
-'net-snmp>=5.7.1')
-makedepends=('python2-qt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
-optdepends=('cups: for printing support'
-'dbus-python: for dbus support'
-'sane: for scanner support'
-'python-imaging: for commandline scanning support'
-'python-notify: for Desktop notification support'
-'rpcbind: for network support'
-'python2-qt: for running hp-toolbox'
-'python2-gobject2: for running hp-toolbox'
-'hplip-plugin: binary blobs for specific devices')
-replaces=('hpijs')
-options=('!libtool')
-install=hplip.install
-source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
-md5sums=('6143f30f3b6905ef22105176a3b80db0'
- '396bbd8c5cc92aa8295e5bcb508692f3')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- export PYTHON=python2
- find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
- sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
- # fix sysfs rules
- sed -i -e "s|SYSFS|ATTR|g" \
--e "s|sysfs|attr|g" \
-   data/rules/56-hpmud_support.rules
-
- ./configure --prefix=/usr \
- --enable-qt4 \
- --enable-foomatic-rip-hplip-install \
- --enable-foomatic-ppd-install \
- --enable-hpcups-install \
- --enable-cups-drv-install \
- --enable-hpijs-install \
- --enable-foomatic-drv-install \
- --enable-pp-build \
- --enable-udev-acl-rules
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make rulesdir=/lib/udev/rules.d  DESTDIR="$pkgdir/" install
- # remove config provided by sane and autostart of hp-daemon
- rm -rf "$pkgdir"/etc/{sane.d,xdg}
-}

Copied: hplip/repos/extra-i686/PKGBUILD (from rev 144357, hplip/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-05 03:45:19 UTC (rev 144358)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer : Rémy Oudompheng 
+# Contributor: Morgan LEFIEUX 
+
+pkgname=hplip
+pkgver=3.11.10
+pkgrel=2
+pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
+arch=('i686' 'x86_64')
+url="http://hplipopensource.com";
+license=('GPL')
+depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine'
+'net-snmp>=5.7.1')
+makedepends=('python2-qt' 'python2-gobject2' 'sane' 'rpcbind' 'cups')
+optdepends=('cups: for printing support'
+'dbus-python: for dbus support'
+'sane: for scanner support'
+'python-imaging: for commandline scanning support'
+'python-notify: for Desktop notification support'
+'rpcbind: for network support'
+'python2-qt: for running hp-toolbox'
+'python2-gobject2: for running hp-toolbox'
+'hplip-plugin: binary blobs for specific devices')
+replaces=('hpijs')
+options=('!libtool')
+install=hplip.install
+source=(http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz{,.asc})
+md5sums=('6143f30f3b6905ef22105176a3b80db0'
+ '396bbd8c5cc92aa8295e5bcb508692f3')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ export PYTHON=python2
+ find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
+ sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
+ sed -i '

[arch-commits] Commit in hplip/trunk (PKGBUILD)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 22:44:51
  Author: eric
Revision: 144357

upgpkg: hplip 3.11.10-2

Add missing ppd (close FS#27443), Add python2 fix

Modified:
  hplip/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-05 01:48:51 UTC (rev 144356)
+++ PKGBUILD2011-12-05 03:44:51 UTC (rev 144357)
@@ -4,7 +4,7 @@
 
 pkgname=hplip
 pkgver=3.11.10
-pkgrel=1
+pkgrel=2
 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and 
some LaserJet"
 arch=('i686' 'x86_64')
 url="http://hplipopensource.com";
@@ -33,6 +33,12 @@
  export PYTHON=python2
  find . -type f -exec sed -i 's~^#.*env python~#!/usr/bin/env python2~' {} +
  sed -i '1s|#!/usr/bin/python|#!/usr/bin/python2|' base/magic.py
+ sed -i 's|python ./print.py|python2 ./print.py|' scan.py
+ sed -i 's|python ./testpage.py|python2 ./testpage.py|' setup.py
+ sed -i 's|python ./setup.py|python2 ./setup.py|' ui4/devmgr5.py 
ui4/nodevicesdialog.py 
+ sed -i 's|python %HOME%|python2 %HOME%|' base/utils.py
+ sed -i 's|python ./plugin.py|python2 ./plugin.py|' base/pkit.py
+
  # fix sysfs rules
  sed -i -e "s|SYSFS|ATTR|g" \
 -e "s|sysfs|attr|g" \
@@ -43,6 +49,8 @@
  --enable-foomatic-rip-hplip-install \
  --enable-foomatic-ppd-install \
  --enable-hpcups-install \
+ --enable-new-hpcups \
+ --enable-cups-ppd-install \
  --enable-cups-drv-install \
  --enable-hpijs-install \
  --enable-foomatic-drv-install \
@@ -54,7 +62,7 @@
 
 package() {
  cd "$srcdir/$pkgname-$pkgver"
- make rulesdir=/lib/udev/rules.d  DESTDIR="$pkgdir/" install
+ make rulesdir=/lib/udev/rules.d DESTDIR="$pkgdir/" install
  # remove config provided by sane and autostart of hp-daemon
  rm -rf "$pkgdir"/etc/{sane.d,xdg}
 }



[arch-commits] Commit in konversation/repos (8 files)

2011-12-04 Thread Stéphane Gaudreault
Date: Sunday, December 4, 2011 @ 20:48:51
  Author: stephane
Revision: 144356

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  konversation/repos/extra-i686/PKGBUILD
(from rev 144355, konversation/trunk/PKGBUILD)
  konversation/repos/extra-i686/konversation.install
(from rev 144355, konversation/trunk/konversation.install)
  konversation/repos/extra-x86_64/PKGBUILD
(from rev 144355, konversation/trunk/PKGBUILD)
  konversation/repos/extra-x86_64/konversation.install
(from rev 144355, konversation/trunk/konversation.install)
Deleted:
  konversation/repos/extra-i686/PKGBUILD
  konversation/repos/extra-i686/konversation.install
  konversation/repos/extra-x86_64/PKGBUILD
  konversation/repos/extra-x86_64/konversation.install

---+
 extra-i686/PKGBUILD   |   76 ++--
 extra-i686/konversation.install   |   23 +-
 extra-x86_64/PKGBUILD |   76 ++--
 extra-x86_64/konversation.install |   23 +-
 4 files changed, 104 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-05 01:48:41 UTC (rev 144355)
+++ extra-i686/PKGBUILD 2011-12-05 01:48:51 UTC (rev 144356)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino 
-# Contributor: James Rayner 
-# Contributor: Sergio Jovani Guzman 
-
-pkgname=konversation
-pkgver=1.3.1
-pkgrel=2
-pkgdesc="A user friendly IRC client for KDE"
-arch=('i686' 'x86_64')
-url="http://konversation.kde.org";
-depends=('kdebase-runtime' 'kdepimlibs')
-makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
-license=('GPL2' 'FDL')
-install=${pkgname}.install
-options=('!makeflags')
-source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('f43ac55e4925e9578e87b13fde173671')
-
-build() {
-  cd ${srcdir}
-  sed 's#/usr/bin/env python#/usr/bin/python2#' \
-   -i ${pkgname}-${pkgver}/data/scripts/media
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: konversation/repos/extra-i686/PKGBUILD (from rev 144355, 
konversation/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-05 01:48:51 UTC (rev 144356)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Andrea Scarpino 
+# Contributor: James Rayner 
+# Contributor: Sergio Jovani Guzman 
+
+pkgname=konversation
+pkgver=1.4
+pkgrel=1
+pkgdesc="A user friendly IRC client for KDE"
+arch=('i686' 'x86_64')
+url="http://konversation.kde.org";
+depends=('kdebase-runtime' 'kdepimlibs' 'python')
+makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
+license=('GPL2' 'FDL')
+install=${pkgname}.install
+options=('!makeflags')
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for lang in pt_BR uk sv et de en nl; do
+ rm  "${pkgdir}"/usr/share/doc/kde/html/${lang}/konversation/common
+  done
+}

Deleted: extra-i686/konversation.install
===
--- extra-i686/konversation.install 2011-12-05 01:48:41 UTC (rev 144355)
+++ extra-i686/konversation.install 2011-12-05 01:48:51 UTC (rev 144356)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: konversation/repos/extra-i686/konversation.install (from rev 144355, 
konversation/trunk/konversation.install)
===
--- extra-i686/konversation.install (rev 0)
+++ extra-i686/konversation.install 2011-12-05 01:48:51 UTC (rev 144356)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-12-05 01:48:41 UTC (rev 144355)
+++ extra-x86_64/PKGBUILD   2011-12-05 01:48:51 UTC (rev 144356)
@@ -1,36 +0,0 @@
-# $Id$
-# 

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

2011-12-04 Thread Stéphane Gaudreault
Date: Sunday, December 4, 2011 @ 20:48:41
  Author: stephane
Revision: 144355

upgpkg: konversation 1.4-1

version bump

Modified:
  konversation/trunk/PKGBUILD
  konversation/trunk/konversation.install

--+
 PKGBUILD |   26 +++---
 konversation.install |1 +
 2 files changed, 16 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-05 00:37:08 UTC (rev 144354)
+++ PKGBUILD2011-12-05 01:48:41 UTC (rev 144355)
@@ -1,26 +1,25 @@
 # $Id$
-# Maintainer: Andrea Scarpino 
+# Maintainer: Stéphane Gaudreault 
+# Contributor: Andrea Scarpino 
 # Contributor: James Rayner 
 # Contributor: Sergio Jovani Guzman 
 
 pkgname=konversation
-pkgver=1.3.1
-pkgrel=2
+pkgver=1.4
+pkgrel=1
 pkgdesc="A user friendly IRC client for KDE"
 arch=('i686' 'x86_64')
 url="http://konversation.kde.org";
-depends=('kdebase-runtime' 'kdepimlibs')
+depends=('kdebase-runtime' 'kdepimlibs' 'python')
 makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
 license=('GPL2' 'FDL')
 install=${pkgname}.install
 options=('!makeflags')
-source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
-md5sums=('f43ac55e4925e9578e87b13fde173671')
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz";)
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
 
 build() {
-  cd ${srcdir}
-  sed 's#/usr/bin/env python#/usr/bin/python2#' \
-   -i ${pkgname}-${pkgver}/data/scripts/media
+  cd "${srcdir}"
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -31,6 +30,11 @@
 }
 
 package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for lang in pt_BR uk sv et de en nl; do
+ rm  "${pkgdir}"/usr/share/doc/kde/html/${lang}/konversation/common
+  done
 }

Modified: konversation.install
===
--- konversation.install2011-12-05 00:37:08 UTC (rev 144354)
+++ konversation.install2011-12-05 01:48:41 UTC (rev 144355)
@@ -1,5 +1,6 @@
 post_install() {
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
 }
 
 post_upgrade() {



[arch-commits] Commit in python-feedparser/repos/extra-any (PKGBUILD PKGBUILD)

2011-12-04 Thread Allan McRae
Date: Sunday, December 4, 2011 @ 19:37:08
  Author: allan
Revision: 144354

archrelease: copy trunk to extra-any

Added:
  python-feedparser/repos/extra-any/PKGBUILD
(from rev 144353, python-feedparser/trunk/PKGBUILD)
Deleted:
  python-feedparser/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  109 -
 1 file changed, 58 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-12-05 00:36:24 UTC (rev 144353)
+++ PKGBUILD2011-12-05 00:37:08 UTC (rev 144354)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Simo Leone 
-
-# Note: python2 version must be built first as packaging python3 version 
"destroys" the source
-pkgname=('python2-feedparser' 'python-feedparser' 'python-sgmllib')
-pkgbase=python-feedparser
-pkgver=5.1
-pkgrel=1
-pkgdesc="Parse RSS and Atom feeds in Python"
-arch=('any')
-url="http://code.google.com/p/feedparser/";
-license=('custom')
-makedepends=('python' 'python2' 'libxml2' 'python2-distribute' 
'python-distribute')
-source=(http://feedparser.googlecode.com/files/feedparser-${pkgver}.tar.bz2)
-md5sums=('bf6ab23038f310eb32734125719c15a2')
-
-package_python2-feedparser() {
-  depends=('python2' 'libxml2' )
-  pkgdesc="Parse RSS and Atom feeds in Python2"
-
-  cd ${srcdir}/feedparser-$pkgver
-  python2 setup.py install --root=${pkgdir}
-  
-  sed -i 's#env python$#env python2#' \
-$pkgdir/usr/lib/python2.7/site-packages/feedparser.py
-  
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/license
-}
-
-package_python-feedparser() {
-  depends=('libxml2' 'python-sgmllib')
-  
-  cd ${srcdir}/feedparser-$pkgver
-  PYTHONPATH=feedparser python setup.py install --root=${pkgdir}  
-  
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/license
-}
-
-package_python-sgmllib() {
-  depends=('python')
-  pkgdesc="Port of sgmllib to python-3"
-  license=('PSF')
-  
-  cd ${srcdir}/feedparser-$pkgver
-  install -Dm644 feedparser/sgmllib3.py \
-${pkgdir}/usr/lib/python3.2/site-packages/sgmllib.py
-  
-  python /usr/lib/python3.2/compileall.py \
-${pkgdir}/usr/lib/python3.2/site-packages/
-}

Copied: python-feedparser/repos/extra-any/PKGBUILD (from rev 144353, 
python-feedparser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-12-05 00:37:08 UTC (rev 144354)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Simo Leone 
+
+# Note: python2 version must be built first as packaging python3 version 
"destroys" the source
+pkgname=('python2-feedparser' 'python-feedparser' 'python-sgmllib')
+pkgbase=python-feedparser
+pkgver=5.1
+pkgrel=2
+pkgdesc="Parse RSS and Atom feeds in Python"
+arch=('any')
+url="http://code.google.com/p/feedparser/";
+license=('custom')
+makedepends=('python' 'python2' 'libxml2' 'python2-distribute' 
'python-distribute')
+source=(http://feedparser.googlecode.com/files/feedparser-${pkgver}.tar.bz2)
+md5sums=('bf6ab23038f310eb32734125719c15a2')
+
+build() {
+  cd ${srcdir}/feedparser-$pkgver
+  
+  # files get installed with (incorrect) permissions in the tarball...
+  chmod 644 feedparser/feedparser.egg-info/*
+}
+
+package_python2-feedparser() {
+  depends=('python2' 'libxml2' )
+  pkgdesc="Parse RSS and Atom feeds in Python2"
+
+  cd ${srcdir}/feedparser-$pkgver
+  python2 setup.py install --root=${pkgdir}
+  
+  sed -i 's#env python$#env python2#' \
+$pkgdir/usr/lib/python2.7/site-packages/feedparser.py
+  
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/license
+}
+
+package_python-feedparser() {
+  depends=('libxml2' 'python-sgmllib')
+  
+  cd ${srcdir}/feedparser-$pkgver
+  PYTHONPATH=feedparser python setup.py install --root=${pkgdir}  
+  
+  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/license
+}
+
+package_python-sgmllib() {
+  depends=('python')
+  pkgdesc="Port of sgmllib to python-3"
+  license=('PSF')
+  
+  cd ${srcdir}/feedparser-$pkgver
+  install -Dm644 feedparser/sgmllib3.py \
+${pkgdir}/usr/lib/python3.2/site-packages/sgmllib.py
+  
+  python /usr/lib/python3.2/compileall.py \
+${pkgdir}/usr/lib/python3.2/site-packages/
+}



[arch-commits] Commit in python-feedparser/trunk (PKGBUILD)

2011-12-04 Thread Allan McRae
Date: Sunday, December 4, 2011 @ 19:36:24
  Author: allan
Revision: 144353

upgpkg: python-feedparser 5.1-2

fix file permissions (FS#27426)

Modified:
  python-feedparser/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 23:08:08 UTC (rev 144352)
+++ PKGBUILD2011-12-05 00:36:24 UTC (rev 144353)
@@ -6,7 +6,7 @@
 pkgname=('python2-feedparser' 'python-feedparser' 'python-sgmllib')
 pkgbase=python-feedparser
 pkgver=5.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Parse RSS and Atom feeds in Python"
 arch=('any')
 url="http://code.google.com/p/feedparser/";
@@ -15,6 +15,13 @@
 source=(http://feedparser.googlecode.com/files/feedparser-${pkgver}.tar.bz2)
 md5sums=('bf6ab23038f310eb32734125719c15a2')
 
+build() {
+  cd ${srcdir}/feedparser-$pkgver
+  
+  # files get installed with (incorrect) permissions in the tarball...
+  chmod 644 feedparser/feedparser.egg-info/*
+}
+
 package_python2-feedparser() {
   depends=('python2' 'libxml2' )
   pkgdesc="Parse RSS and Atom feeds in Python2"



[arch-commits] Commit in gthumb/repos (8 files)

2011-12-04 Thread Jan Steffens
Date: Sunday, December 4, 2011 @ 18:08:08
  Author: heftig
Revision: 144352

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  gthumb/repos/extra-i686/PKGBUILD
(from rev 144351, gthumb/trunk/PKGBUILD)
  gthumb/repos/extra-i686/gthumb.install
(from rev 144351, gthumb/trunk/gthumb.install)
  gthumb/repos/extra-x86_64/PKGBUILD
(from rev 144351, gthumb/trunk/PKGBUILD)
  gthumb/repos/extra-x86_64/gthumb.install
(from rev 144351, gthumb/trunk/gthumb.install)
Deleted:
  gthumb/repos/extra-i686/PKGBUILD
  gthumb/repos/extra-i686/gthumb.install
  gthumb/repos/extra-x86_64/PKGBUILD
  gthumb/repos/extra-x86_64/gthumb.install

-+
 extra-i686/PKGBUILD |   68 +-
 extra-i686/gthumb.install   |   48 ++---
 extra-x86_64/PKGBUILD   |   68 +-
 extra-x86_64/gthumb.install |   48 ++---
 4 files changed, 116 insertions(+), 116 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 23:04:57 UTC (rev 144351)
+++ extra-i686/PKGBUILD 2011-12-04 23:08:08 UTC (rev 144352)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=gthumb
-pkgver=2.14.0
-pkgrel=1
-pkgdesc="Image browser and viewer for the GNOME Desktop"
-arch=(i686 x86_64)
-license=('GPL')
-url="http://gthumb.sourceforge.net/";
-depends=('desktop-file-utils' 'libunique' 'gconf' 'exiv2' 'libsoup-gnome' 
'clutter-gtk2')
-makedepends=('intltool' 'gnome-doc-utils' 'libsm' 'gstreamer0.10-base')
-optdepends=('gstreamer0.10-base: video support')
-options=('!libtool' '!emptydirs')
-install=gthumb.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('9db3e4f714d62b91185e4f8edbee2c98a85bd76f0d4b82a7d7868a9b86ae10a2')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
-  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gthumb "${pkgdir}"/etc/gconf/schemas/*.schemas
-  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
-}

Copied: gthumb/repos/extra-i686/PKGBUILD (from rev 144351, 
gthumb/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 23:08:08 UTC (rev 144352)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgname=gthumb
+pkgver=2.14.1
+pkgrel=1
+pkgdesc="Image browser and viewer for the GNOME Desktop"
+arch=(i686 x86_64)
+license=('GPL')
+url="http://gthumb.sourceforge.net/";
+depends=('desktop-file-utils' 'libunique' 'gconf' 'exiv2' 'libsoup-gnome' 
'clutter-gtk2')
+makedepends=('intltool' 'gnome-doc-utils' 'libsm' 'gstreamer0.10-base')
+optdepends=('gstreamer0.10-base: video support')
+options=('!libtool' '!emptydirs')
+install=gthumb.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('002a662273189348871ff7c717fb3c776f5570656389e3d6c5b26bffa11f')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
+  gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" 
--domain gthumb "${pkgdir}"/etc/gconf/schemas/*.schemas
+  rm -f "${pkgdir}"/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/gthumb.install
===
--- extra-i686/gthumb.install   2011-12-04 23:04:57 UTC (rev 144351)
+++ extra-i686/gthumb.install   2011-12-04 23:08:08 UTC (rev 144352)
@@ -1,24 +0,0 @@
-pkgname=gthumb
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  update-desktop-database -q
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: gthumb/repos/extra-i686/gthumb.install (from rev 144351, 
gthumb/trunk/gthumb.install)
===
--- extra-i686/gthumb.install   (rev 0)
+++ extra-i686/gthumb.install   2011-12-04 23:08:08 UTC (rev 14435

[arch-commits] Commit in gthumb/trunk (PKGBUILD)

2011-12-04 Thread Jan Steffens
Date: Sunday, December 4, 2011 @ 18:04:57
  Author: heftig
Revision: 144351

2.14.1

Modified:
  gthumb/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 22:59:47 UTC (rev 144350)
+++ PKGBUILD2011-12-04 23:04:57 UTC (rev 144351)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich 
 
 pkgname=gthumb
-pkgver=2.14.0
+pkgver=2.14.1
 pkgrel=1
 pkgdesc="Image browser and viewer for the GNOME Desktop"
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 options=('!libtool' '!emptydirs')
 install=gthumb.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('9db3e4f714d62b91185e4f8edbee2c98a85bd76f0d4b82a7d7868a9b86ae10a2')
+sha256sums=('002a662273189348871ff7c717fb3c776f5570656389e3d6c5b26bffa11f')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2011-12-04 Thread Jan Steffens
Date: Sunday, December 4, 2011 @ 17:59:47
  Author: heftig
Revision: 144350

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  sdl_gfx/repos/extra-i686/PKGBUILD
(from rev 144349, sdl_gfx/trunk/PKGBUILD)
  sdl_gfx/repos/extra-x86_64/PKGBUILD
(from rev 144349, sdl_gfx/trunk/PKGBUILD)
Deleted:
  sdl_gfx/repos/extra-i686/PKGBUILD
  sdl_gfx/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/PKGBUILD   |   64 
 extra-x86_64/PKGBUILD |   64 
 2 files changed, 64 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 22:58:31 UTC (rev 144349)
+++ extra-i686/PKGBUILD 2011-12-04 22:59:47 UTC (rev 144350)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Tom Newsom 
-
-pkgname=sdl_gfx
-pkgver=2.0.22
-pkgrel=1
-pkgdesc="SDL Graphic Primitives"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=(!libtool)
-url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx";
-source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
-depends=('sdl')
-md5sums=('330f291f1f09a1bdf397c9b40d92ca41')
-
-build() {
-  cd ${srcdir}/SDL_gfx-${pkgver}
-
-  if [ "${CARCH}" == "x86_64" ]; then
-./configure --prefix=/usr --disable-mmx
-  else
-./configure --prefix=/usr
-  fi
-
-  make
-}
-
-package() {
-  cd ${srcdir}/SDL_gfx-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: sdl_gfx/repos/extra-i686/PKGBUILD (from rev 144349, 
sdl_gfx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 22:59:47 UTC (rev 144350)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sdl_gfx
+pkgver=2.0.23
+pkgrel=1
+pkgdesc="SDL Graphic Primitives"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=(!libtool)
+url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx";
+source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
+depends=('sdl')
+md5sums=('fcc3c4f2d1b4943409bf7e67dd65d03a')
+
+build() {
+  cd ${srcdir}/SDL_gfx-${pkgver}
+
+  if [ "${CARCH}" == "x86_64" ]; then
+./configure --prefix=/usr --disable-mmx
+  else
+./configure --prefix=/usr
+  fi
+
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL_gfx-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-12-04 22:58:31 UTC (rev 144349)
+++ extra-x86_64/PKGBUILD   2011-12-04 22:59:47 UTC (rev 144350)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Tom Newsom 
-
-pkgname=sdl_gfx
-pkgver=2.0.22
-pkgrel=1
-pkgdesc="SDL Graphic Primitives"
-arch=('i686' 'x86_64')
-license=('LGPL')
-options=(!libtool)
-url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx";
-source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
-depends=('sdl')
-md5sums=('330f291f1f09a1bdf397c9b40d92ca41')
-
-build() {
-  cd ${srcdir}/SDL_gfx-${pkgver}
-
-  if [ "${CARCH}" == "x86_64" ]; then
-./configure --prefix=/usr --disable-mmx
-  else
-./configure --prefix=/usr
-  fi
-
-  make
-}
-
-package() {
-  cd ${srcdir}/SDL_gfx-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: sdl_gfx/repos/extra-x86_64/PKGBUILD (from rev 144349, 
sdl_gfx/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-12-04 22:59:47 UTC (rev 144350)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Tom Newsom 
+
+pkgname=sdl_gfx
+pkgver=2.0.23
+pkgrel=1
+pkgdesc="SDL Graphic Primitives"
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=(!libtool)
+url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx";
+source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
+depends=('sdl')
+md5sums=('fcc3c4f2d1b4943409bf7e67dd65d03a')
+
+build() {
+  cd ${srcdir}/SDL_gfx-${pkgver}
+
+  if [ "${CARCH}" == "x86_64" ]; then
+./configure --prefix=/usr --disable-mmx
+  else
+./configure --prefix=/usr
+  fi
+
+  make
+}
+
+package() {
+  cd ${srcdir}/SDL_gfx-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in sdl_gfx/trunk (PKGBUILD)

2011-12-04 Thread Jan Steffens
Date: Sunday, December 4, 2011 @ 17:58:31
  Author: heftig
Revision: 144349

2.0.23

Modified:
  sdl_gfx/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 22:01:25 UTC (rev 144348)
+++ PKGBUILD2011-12-04 22:58:31 UTC (rev 144349)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=sdl_gfx
-pkgver=2.0.22
+pkgver=2.0.23
 pkgrel=1
 pkgdesc="SDL Graphic Primitives"
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 
url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx";
 source=(http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-${pkgver}.tar.gz)
 depends=('sdl')
-md5sums=('330f291f1f09a1bdf397c9b40d92ca41')
+md5sums=('fcc3c4f2d1b4943409bf7e67dd65d03a')
 
 build() {
   cd ${srcdir}/SDL_gfx-${pkgver}



[arch-commits] Commit in glsof/repos (12 files)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 17:01:25
  Author: eric
Revision: 144348

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  glsof/repos/extra-i686/PKGBUILD
(from rev 144347, glsof/trunk/PKGBUILD)
  glsof/repos/extra-i686/glsof-filemonitor
(from rev 144347, glsof/trunk/glsof-filemonitor)
  glsof/repos/extra-i686/glsof-queries
(from rev 144347, glsof/trunk/glsof-queries)
  glsof/repos/extra-x86_64/PKGBUILD
(from rev 144347, glsof/trunk/PKGBUILD)
  glsof/repos/extra-x86_64/glsof-filemonitor
(from rev 144347, glsof/trunk/glsof-filemonitor)
  glsof/repos/extra-x86_64/glsof-queries
(from rev 144347, glsof/trunk/glsof-queries)
Deleted:
  glsof/repos/extra-i686/PKGBUILD
  glsof/repos/extra-i686/glsof-filemonitor
  glsof/repos/extra-i686/glsof-queries
  glsof/repos/extra-x86_64/PKGBUILD
  glsof/repos/extra-x86_64/glsof-filemonitor
  glsof/repos/extra-x86_64/glsof-queries

+
 extra-i686/PKGBUILD|   76 +++
 extra-i686/glsof-filemonitor   |4 +-
 extra-i686/glsof-queries   |4 +-
 extra-x86_64/PKGBUILD  |   76 +++
 extra-x86_64/glsof-filemonitor |4 +-
 extra-x86_64/glsof-queries |4 +-
 6 files changed, 84 insertions(+), 84 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 22:00:58 UTC (rev 144347)
+++ extra-i686/PKGBUILD 2011-12-04 22:01:25 UTC (rev 144348)
@@ -1,38 +0,0 @@
-# $Id$
-#  Maintainer: Eric Bélanger 
-
-pkgname=glsof
-pkgver=1.6
-_fmver=1.6
-_qver=1.0.0
-pkgrel=1
-pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
-arch=('i686' 'x86_64')
-url="http://glsof.sourceforge.net/";
-license=('GPL3')
-depends=('sh' 'java-runtime' 'lsof')
-source=(http://downloads.sourceforge.net/sourceforge/glsof/filemonitor-${_fmver}.tar.gz)
-if [ "$CARCH" = "i686" ]; then
-  source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
-  glsof-filemonitor glsof-queries)
-  sha1sums=('cb6f56170beffcd15faa68a02db976cdab1436da'
-  'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
-  '2797c326904af16a254c3e39b8c529ea14ef37e5')
-elif [ "$CARCH" = "x86_64" ]; then
-  source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
-  glsof-filemonitor glsof-queries)
-  sha1sums=('cb6f56170beffcd15faa68a02db976cdab1436da'
-  'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
-  '2797c326904af16a254c3e39b8c529ea14ef37e5')
-fi
-
-package() {
-  cd "${srcdir}"
-  install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
-  install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
-  install -D -m644 filemonitor/filemonitor.jar 
"${pkgdir}/usr/share/java/glsof/filemonitor.jar"
-  install -D -m644 queries_linux??/queries.jar 
"${pkgdir}/usr/share/java/glsof/queries.jar"
-  install -D -m644 queries_linux??/queries.pdf 
"${pkgdir}/usr/share/doc/glsof/queries.pdf"
-}

Copied: glsof/repos/extra-i686/PKGBUILD (from rev 144347, glsof/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 22:01:25 UTC (rev 144348)
@@ -0,0 +1,38 @@
+# $Id$
+#  Maintainer: Eric Bélanger 
+
+pkgname=glsof
+pkgver=1.6.1
+_fmver=1.6.1
+_qver=1.0.0
+pkgrel=1
+pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
+arch=('i686' 'x86_64')
+url="http://glsof.sourceforge.net/";
+license=('GPL3')
+depends=('sh' 'java-runtime' 'lsof')
+source=(http://downloads.sourceforge.net/sourceforge/glsof/filemonitor-${_fmver}.tar.gz)
+if [ "$CARCH" = "i686" ]; then
+  source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
+  glsof-filemonitor glsof-queries)
+  sha1sums=('afafaafefcfc5f4bb76f6cbe7c4a39a478e351c2'
+'d5a17d66dd02cd78bad5ffdda0b936c7848e4890'
+'197b58f40880995d6442fd42a58fa1f4594fd19d'
+'2797c326904af16a254c3e39b8c529ea14ef37e5')
+elif [ "$CARCH" = "x86_64" ]; then
+  source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
+  glsof-filemonitor glsof-queries)
+  sha1sums=('afafaafefcfc5f4bb76f6cbe7c4a39a478e351c2'
+'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
+'197b58f40880995d6442fd42a58fa1f4594fd19d'
+'2797c326904af16a254c3e39b8c529ea14ef37e5')
+fi
+
+package() {
+  cd "${srcdir}"
+  install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
+  install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
+ 

[arch-commits] Commit in glsof/trunk (PKGBUILD)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 17:00:58
  Author: eric
Revision: 144347

upgpkg: glsof 1.6.1-1

Upstream update

Modified:
  glsof/trunk/PKGBUILD

--+
 PKGBUILD |   20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 21:50:29 UTC (rev 144346)
+++ PKGBUILD2011-12-04 22:00:58 UTC (rev 144347)
@@ -2,8 +2,8 @@
 #  Maintainer: Eric Bélanger 
 
 pkgname=glsof
-pkgver=1.6
-_fmver=1.6
+pkgver=1.6.1
+_fmver=1.6.1
 _qver=1.0.0
 pkgrel=1
 pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof 
command line utility"
@@ -15,17 +15,17 @@
 if [ "$CARCH" = "i686" ]; then
   source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz
 \
   glsof-filemonitor glsof-queries)
-  sha1sums=('cb6f56170beffcd15faa68a02db976cdab1436da'
-  'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
-  '2797c326904af16a254c3e39b8c529ea14ef37e5')
+  sha1sums=('afafaafefcfc5f4bb76f6cbe7c4a39a478e351c2'
+'d5a17d66dd02cd78bad5ffdda0b936c7848e4890'
+'197b58f40880995d6442fd42a58fa1f4594fd19d'
+'2797c326904af16a254c3e39b8c529ea14ef37e5')
 elif [ "$CARCH" = "x86_64" ]; then
   source=(${source[@]} 
http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz
 \
   glsof-filemonitor glsof-queries)
-  sha1sums=('cb6f56170beffcd15faa68a02db976cdab1436da'
-  'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
-  '197b58f40880995d6442fd42a58fa1f4594fd19d'
-  '2797c326904af16a254c3e39b8c529ea14ef37e5')
+  sha1sums=('afafaafefcfc5f4bb76f6cbe7c4a39a478e351c2'
+'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
+'197b58f40880995d6442fd42a58fa1f4594fd19d'
+'2797c326904af16a254c3e39b8c529ea14ef37e5')
 fi
 
 package() {



[arch-commits] Commit in redland/repos (8 files)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 16:50:29
  Author: eric
Revision: 144346

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  redland/repos/extra-i686/PKGBUILD
(from rev 144345, redland/trunk/PKGBUILD)
  redland/repos/extra-i686/rpath.diff
(from rev 144345, redland/trunk/rpath.diff)
  redland/repos/extra-x86_64/PKGBUILD
(from rev 144345, redland/trunk/PKGBUILD)
  redland/repos/extra-x86_64/rpath.diff
(from rev 144345, redland/trunk/rpath.diff)
Deleted:
  redland/repos/extra-i686/PKGBUILD
  redland/repos/extra-i686/rpath.diff
  redland/repos/extra-x86_64/PKGBUILD
  redland/repos/extra-x86_64/rpath.diff

-+
 extra-i686/PKGBUILD |  156 +++---
 extra-i686/rpath.diff   |   22 +++---
 extra-x86_64/PKGBUILD   |  156 +++---
 extra-x86_64/rpath.diff |   22 +++---
 4 files changed, 178 insertions(+), 178 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 21:50:07 UTC (rev 144345)
+++ extra-i686/PKGBUILD 2011-12-04 21:50:29 UTC (rev 144346)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Contributor: Francois Charette  
-
-pkgbase=redland
-epoch=1
-pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.14
-pkgrel=1
-url="http://librdf.org/";
-license=("GPL")
-arch=('i686' 'x86_64')
-makedepends=('rasqal>=0.9.26' 'raptor>=2.0.4' 'db>=5.2' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
-options=('!libtool')
-source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz
-rpath.diff)
-md5sums=('3400579d137da82c4175debf9f6d53ba'
- 'acc85e784f01a656bd56777f95880787')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-   --enable-release \
-   --disable-static \
-   --with-raptor=system \
-   --with-rasqal=system \
-   --with-sqlite=3
-
-  # nuke rpath
-  patch -Np0 -i ${srcdir}/rpath.diff
-
-  make
-}
-
-package_redland() {
- pkgdesc="Library that provides a high-level interface to RDF data"
- depends=('rasqal>=0.9.26' 'raptor>=2.0.4' 'libtool')
- 
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/lib/redland
-}
-
-package_redland-storage-mysql() {
- pkgdesc="MySQL storage support for Redland"
- depends=('redland' 'libmysqlclient')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_mysql.so 
${pkgdir}/usr/lib/redland/librdf_storage_mysql.so 
-}
-
-package_redland-storage-postgresql() {
- pkgdesc="PostgreSQL storage support for Redland"
- depends=('redland' 'postgresql-libs')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_postgresql.so 
${pkgdir}/usr/lib/redland/
-}
-
-package_redland-storage-virtuoso() {
- pkgdesc="Virtuoso storage support for Redland"
- depends=('redland' 'unixodbc' 'db')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_virtuoso.so ${pkgdir}/usr/lib/redland/
-}
-
-package_redland-storage-sqlite() {
- pkgdesc="SQLite storage support for Redland"
- depends=('redland' 'sqlite3' 'db')
- 
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_sqlite.so ${pkgdir}/usr/lib/redland/
-}

Copied: redland/repos/extra-i686/PKGBUILD (from rev 144345, 
redland/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 21:50:29 UTC (rev 144346)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Francois Charette  
+
+pkgbase=redland
+epoch=1
+pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
+pkgver=1.0.15
+pkgrel=1
+url="http://librdf.org/";
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'db>=5.2' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
+options=('!libtool')
+source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz
+rpath.diff)
+md5sums=('b0deb87f3c7d3237a3d587c1e0f2f266'
+ 'acc85e784f01a656bd56777f95880787')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr \
+   --enable-release \
+   --disable-static \
+   --with-raptor=system \
+   --with-rasqal=system \
+   --with-sqlite=3
+
+  # nuke rpath
+  patch -Np0 -i "${srcdir}/rpath.diff"
+
+  make
+}
+
+package_redland() {
+ pkgdesc="Library that provides a high-level interface to RDF data"
+ depends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'libtool')
+ 
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgd

[arch-commits] Commit in redland/trunk (PKGBUILD)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 16:50:07
  Author: eric
Revision: 144345

upgpkg: redland 1:1.0.15-1

Upstream update

Modified:
  redland/trunk/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 21:37:38 UTC (rev 144344)
+++ PKGBUILD2011-12-04 21:50:07 UTC (rev 144345)
@@ -5,20 +5,20 @@
 pkgbase=redland
 epoch=1
 pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.14
+pkgver=1.0.15
 pkgrel=1
 url="http://librdf.org/";
 license=("GPL")
 arch=('i686' 'x86_64')
-makedepends=('rasqal>=0.9.26' 'raptor>=2.0.4' 'db>=5.2' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
+makedepends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'db>=5.2' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
 options=('!libtool')
 source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz
 rpath.diff)
-md5sums=('3400579d137da82c4175debf9f6d53ba'
+md5sums=('b0deb87f3c7d3237a3d587c1e0f2f266'
  'acc85e784f01a656bd56777f95880787')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd "${srcdir}/${pkgname}-${pkgver}"
   ./configure --prefix=/usr \
--enable-release \
--disable-static \
@@ -27,52 +27,52 @@
--with-sqlite=3
 
   # nuke rpath
-  patch -Np0 -i ${srcdir}/rpath.diff
+  patch -Np0 -i "${srcdir}/rpath.diff"
 
   make
 }
 
 package_redland() {
  pkgdesc="Library that provides a high-level interface to RDF data"
- depends=('rasqal>=0.9.26' 'raptor>=2.0.4' 'libtool')
+ depends=('rasqal>=0.9.26' 'raptor>=2.0.6' 'libtool')
  
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/lib/redland
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}/usr/lib/redland"
 }
 
 package_redland-storage-mysql() {
  pkgdesc="MySQL storage support for Redland"
  depends=('redland' 'libmysqlclient')
 
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_mysql.so 
${pkgdir}/usr/lib/redland/librdf_storage_mysql.so 
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  install -dm755 "${pkgdir}/usr/lib/redland"
+  install -m755 src/.libs/librdf_storage_mysql.so 
"${pkgdir}/usr/lib/redland/librdf_storage_mysql.so"
 }
 
 package_redland-storage-postgresql() {
  pkgdesc="PostgreSQL storage support for Redland"
  depends=('redland' 'postgresql-libs')
 
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_postgresql.so 
${pkgdir}/usr/lib/redland/
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  install -dm755 "${pkgdir}/usr/lib/redland"
+  install -m755 src/.libs/librdf_storage_postgresql.so 
"${pkgdir}/usr/lib/redland/"
 }
 
 package_redland-storage-virtuoso() {
  pkgdesc="Virtuoso storage support for Redland"
  depends=('redland' 'unixodbc' 'db')
 
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_virtuoso.so ${pkgdir}/usr/lib/redland/
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  install -dm755 "${pkgdir}/usr/lib/redland"
+  install -m755 src/.libs/librdf_storage_virtuoso.so 
"${pkgdir}/usr/lib/redland/"
 }
 
 package_redland-storage-sqlite() {
  pkgdesc="SQLite storage support for Redland"
  depends=('redland' 'sqlite3' 'db')
  
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  install -dm755 ${pkgdir}/usr/lib/redland
-  install -m755 src/.libs/librdf_storage_sqlite.so ${pkgdir}/usr/lib/redland/
+  cd "${srcdir}/${pkgbase}-${pkgver}"
+  install -dm755 "${pkgdir}/usr/lib/redland"
+  install -m755 src/.libs/librdf_storage_sqlite.so "${pkgdir}/usr/lib/redland/"
 }



[arch-commits] Commit in mercurial/repos (8 files)

2011-12-04 Thread Giovanni Scafora
Date: Sunday, December 4, 2011 @ 16:37:38
  Author: giovanni
Revision: 144344

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  mercurial/repos/extra-i686/PKGBUILD
(from rev 144343, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-i686/mercurial.profile
(from rev 144343, mercurial/trunk/mercurial.profile)
  mercurial/repos/extra-x86_64/PKGBUILD
(from rev 144343, mercurial/trunk/PKGBUILD)
  mercurial/repos/extra-x86_64/mercurial.profile
(from rev 144343, mercurial/trunk/mercurial.profile)
Deleted:
  mercurial/repos/extra-i686/PKGBUILD
  mercurial/repos/extra-i686/mercurial.profile
  mercurial/repos/extra-x86_64/PKGBUILD
  mercurial/repos/extra-x86_64/mercurial.profile

+
 extra-i686/PKGBUILD|   92 +++
 extra-i686/mercurial.profile   |2 
 extra-x86_64/PKGBUILD  |   92 +++
 extra-x86_64/mercurial.profile |2 
 4 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 21:37:13 UTC (rev 144343)
+++ extra-i686/PKGBUILD 2011-12-04 21:37:38 UTC (rev 144344)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Douglas Soares de Andrade 
-
-pkgname=mercurial
-pkgver=2.0
-pkgrel=1
-pkgdesc="A scalable distributed SCM tool"
-arch=('i686' 'x86_64')
-url="http://mercurial.selenic.com/";
-license=('GPL')
-depends=('python2')
-optdepends=('tk: for the hgk GUI')
-backup=('etc/mercurial/hgrc')
-source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
-'mercurial.profile')
-md5sums=('38f439a63bae1687d385758c8ad3d53e'
- '43e1d36564d4c7fbe9a091d3ea370a44')
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  python2 setup.py install --root="${pkgdir}/" --optimize=1
-
-  sed -i -e 's#env python#env python2#' \
-"${pkgdir}"/usr/lib/python2.7/site-packages/mercurial/lsprof.py
-
-  install -d ${pkgdir}/usr/share/man/{man1,man5}
-  install -m644 doc/hg.1 "${pkgdir}/usr/share/man/man1"
-  install -m644 doc/{hgrc.5,hgignore.5} "${pkgdir}/usr/share/man/man5"
-  install -m755 contrib/hgk "${pkgdir}/usr/bin"
-  install -m644 -D contrib/zsh_completion 
"${pkgdir}/usr/share/zsh/site-functions/_hg"
-  install -m644 -D contrib/bash_completion "${pkgdir}/etc/bash_completion.d/hg"
-  install -d "${pkgdir}/usr/share/emacs/site-lisp"
-  install -m644 contrib/{mq.el,mercurial.el} 
"${pkgdir}/usr/share/emacs/site-lisp"
-
-  vimpath="${pkgdir}/usr/share/vim/vimfiles"
-  install -Dm644 contrib/vim/HGAnnotate.vim "${vimpath}/syntax/HGAnnotate.vim"
-
-  # set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/mercurial.profile 
"${pkgdir}/etc/profile.d/mercurial.sh"
-
-  # install configuration file
-  install -m755 -d ${pkgdir}/etc/mercurial
-  install -m644 contrib/sample.hgrc "${pkgdir}/etc/mercurial/hgrc"
-}

Copied: mercurial/repos/extra-i686/PKGBUILD (from rev 144343, 
mercurial/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 21:37:38 UTC (rev 144344)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=mercurial
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="A scalable distributed SCM tool"
+arch=('i686' 'x86_64')
+url="http://mercurial.selenic.com/";
+license=('GPL')
+depends=('python2')
+optdepends=('tk: for the hgk GUI')
+backup=('etc/mercurial/hgrc')
+source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
+'mercurial.profile')
+md5sums=('16576b3089a88a84a35edc30e17a03a9'
+ '43e1d36564d4c7fbe9a091d3ea370a44')
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  python2 setup.py install --root="${pkgdir}/" --optimize=1
+
+  sed -i -e 's#env python#env python2#' \
+"${pkgdir}"/usr/lib/python2.7/site-packages/mercurial/lsprof.py
+
+  install -d ${pkgdir}/usr/share/man/{man1,man5}
+  install -m644 doc/hg.1 "${pkgdir}/usr/share/man/man1"
+  install -m644 doc/{hgrc.5,hgignore.5} "${pkgdir}/usr/share/man/man5"
+  install -m755 contrib/hgk "${pkgdir}/usr/bin"
+  install -m644 -D contrib/zsh_completion 
"${pkgdir}/usr/share/zsh/site-functions/_hg"
+  install -m644 -D contrib/bash_completion "${pkgdir}/etc/bash_completion.d/hg"
+  install -d "${pkgdir}/usr/share/emacs/site-lisp"
+  install -m644 contrib/{mq.el,mercurial.el} 
"${pkgdir}/usr/share/emacs/site-lisp"
+
+  vimpath="${pkgdir}/usr/share/vim/vimfiles"
+  install -Dm644 contrib/vim/HGAnnotate.vim "${vimpath}/syntax/HGAnnotate.vim"
+
+  # set some variables
+  install -m755 -d ${pkgdir}/etc/profile.d
+  install -m755 ${srcdir}/mercurial.profile 
"${pkgdir}/etc/profile.d/mercurial.sh"
+
+  # install configuration file
+  install -m755 -d ${pkgdir}/etc/mercurial
+  install -m644 contrib/sample.hgrc "

[arch-commits] Commit in mercurial/trunk (PKGBUILD)

2011-12-04 Thread Giovanni Scafora
Date: Sunday, December 4, 2011 @ 16:37:13
  Author: giovanni
Revision: 144343

upgpkg: mercurial 2.0.1-1

upstream release

Modified:
  mercurial/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 21:25:01 UTC (rev 144342)
+++ PKGBUILD2011-12-04 21:37:13 UTC (rev 144343)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=mercurial
-pkgver=2.0
+pkgver=2.0.1
 pkgrel=1
 pkgdesc="A scalable distributed SCM tool"
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/mercurial/hgrc')
 source=("http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz";
 'mercurial.profile')
-md5sums=('38f439a63bae1687d385758c8ad3d53e'
+md5sums=('16576b3089a88a84a35edc30e17a03a9'
  '43e1d36564d4c7fbe9a091d3ea370a44')
 
 package() {



[arch-commits] Commit in jhead/repos (8 files)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 16:25:01
  Author: eric
Revision: 144342

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  jhead/repos/extra-i686/LICENSE
(from rev 144341, jhead/trunk/LICENSE)
  jhead/repos/extra-i686/PKGBUILD
(from rev 144341, jhead/trunk/PKGBUILD)
  jhead/repos/extra-x86_64/LICENSE
(from rev 144341, jhead/trunk/LICENSE)
  jhead/repos/extra-x86_64/PKGBUILD
(from rev 144341, jhead/trunk/PKGBUILD)
Deleted:
  jhead/repos/extra-i686/LICENSE
  jhead/repos/extra-i686/PKGBUILD
  jhead/repos/extra-x86_64/LICENSE
  jhead/repos/extra-x86_64/PKGBUILD

---+
 extra-i686/LICENSE|   24 ++--
 extra-i686/PKGBUILD   |   54 +--
 extra-x86_64/LICENSE  |   24 ++--
 extra-x86_64/PKGBUILD |   55 +---
 4 files changed, 82 insertions(+), 75 deletions(-)

Deleted: extra-i686/LICENSE
===
--- extra-i686/LICENSE  2011-12-04 21:24:30 UTC (rev 144341)
+++ extra-i686/LICENSE  2011-12-04 21:25:01 UTC (rev 144342)
@@ -1,12 +0,0 @@
-License:
-
-Jhead is public domain software - that is, you can do whatever you want
-with it, and include it software that is licensesed under the GNU or the 
-BSD license, or whatever other licence you chose, including proprietary
-closed source licenses.  Although not part of the liscense, I do expect
-common courtesy, please.
-
-If you do integrate the code into some software of yours, I'd appreciate
-knowing about it though. 
-
-Matthias Wandel

Copied: jhead/repos/extra-i686/LICENSE (from rev 144341, jhead/trunk/LICENSE)
===
--- extra-i686/LICENSE  (rev 0)
+++ extra-i686/LICENSE  2011-12-04 21:25:01 UTC (rev 144342)
@@ -0,0 +1,12 @@
+License:
+
+Jhead is public domain software - that is, you can do whatever you want
+with it, and include it software that is licensesed under the GNU or the 
+BSD license, or whatever other licence you chose, including proprietary
+closed source licenses.  Although not part of the liscense, I do expect
+common courtesy, please.
+
+If you do integrate the code into some software of yours, I'd appreciate
+knowing about it though. 
+
+Matthias Wandel

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 21:24:30 UTC (rev 144341)
+++ extra-i686/PKGBUILD 2011-12-04 21:25:01 UTC (rev 144342)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: François Charette 
-# Contributor: Giovanni Scafora 
-
-pkgname=jhead
-pkgver=2.90
-pkgrel=1
-pkgdesc="EXIF JPEG info parser and thumbnail remover"
-url="http://www.sentex.net/~mwandel/jhead/";
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('glibc')
-optdepends=('libjpeg: to up-right images according to rotation tag')
-source=(http://www.sentex.net/~mwandel/${pkgname}/${pkgname}-${pkgver}.tar.gz 
-LICENSE)
-md5sums=('661effa9420bb92cb99ced697c5a177f'
- '1f0db611d2642a981719f45252762a45')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make || return 1
-  install -D -m755 jhead "${pkgdir}/usr/bin/jhead" || return 1
-  install -D -m644 jhead.1 "${pkgdir}/usr/share/man/man1/jhead.1" || return 1
-  install -D -m644 ${srcdir}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
-}

Copied: jhead/repos/extra-i686/PKGBUILD (from rev 144341, jhead/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 21:25:01 UTC (rev 144342)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: François Charette 
+# Contributor: Giovanni Scafora 
+
+pkgname=jhead
+pkgver=2.93
+pkgrel=1
+pkgdesc="EXIF JPEG info parser and thumbnail remover"
+url="http://www.sentex.net/~mwandel/jhead/";
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('glibc')
+optdepends=('libjpeg: to up-right images according to rotation tag')
+source=(http://www.sentex.net/~mwandel/${pkgname}/${pkgname}-${pkgver}.tar.gz 
+LICENSE)
+md5sums=('23ac51b4aea2df663d684744e282eb7d'
+ '1f0db611d2642a981719f45252762a45')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  install -D -m755 jhead "${pkgdir}/usr/bin/jhead"
+  install -D -m644 jhead.1 "${pkgdir}/usr/share/man/man1/jhead.1"
+  install -D -m644 ${srcdir}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-x86_64/LICENSE
===
--- extra-x86_64/LICENSE2011-12-04 21:24:30 UTC (rev 144341)
+++ extra-x86_64/LICENSE2011-12-04 21:25:01 UTC (rev 144342)
@@ -1,12 +0,0 @@
-License:
-
-Jhead is public domain software - that is, you can do whatever you 

[arch-commits] Commit in jhead/trunk (PKGBUILD)

2011-12-04 Thread Eric Bélanger
Date: Sunday, December 4, 2011 @ 16:24:30
  Author: eric
Revision: 144341

upgpkg: jhead 2.93-1

Upstream update

Modified:
  jhead/trunk/PKGBUILD

--+
 PKGBUILD |   16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 20:03:38 UTC (rev 144340)
+++ PKGBUILD2011-12-04 21:24:30 UTC (rev 144341)
@@ -3,7 +3,7 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=jhead
-pkgver=2.90
+pkgver=2.93
 pkgrel=1
 pkgdesc="EXIF JPEG info parser and thumbnail remover"
 url="http://www.sentex.net/~mwandel/jhead/";
@@ -13,13 +13,17 @@
 optdepends=('libjpeg: to up-right images according to rotation tag')
 source=(http://www.sentex.net/~mwandel/${pkgname}/${pkgname}-${pkgver}.tar.gz 
 LICENSE)
-md5sums=('661effa9420bb92cb99ced697c5a177f'
+md5sums=('23ac51b4aea2df663d684744e282eb7d'
  '1f0db611d2642a981719f45252762a45')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  make || return 1
-  install -D -m755 jhead "${pkgdir}/usr/bin/jhead" || return 1
-  install -D -m644 jhead.1 "${pkgdir}/usr/share/man/man1/jhead.1" || return 1
-  install -D -m644 ${srcdir}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
+  make
 }
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  install -D -m755 jhead "${pkgdir}/usr/bin/jhead"
+  install -D -m644 jhead.1 "${pkgdir}/usr/share/man/man1/jhead.1"
+  install -D -m644 ${srcdir}/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



[arch-commits] Commit in audiofile/repos (3 files)

2011-12-04 Thread Ray Rashif
Date: Sunday, December 4, 2011 @ 15:03:38
  Author: schiv
Revision: 144340

db-move: moved audiofile from [testing] to [extra] (x86_64)

Added:
  audiofile/repos/extra-x86_64/PKGBUILD
(from rev 144338, audiofile/repos/testing-x86_64/PKGBUILD)
Deleted:
  audiofile/repos/extra-x86_64/PKGBUILD
  audiofile/repos/testing-x86_64/

--+
 PKGBUILD |   50 ++
 1 file changed, 30 insertions(+), 20 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-12-04 20:03:36 UTC (rev 144339)
+++ extra-x86_64/PKGBUILD   2011-12-04 20:03:38 UTC (rev 144340)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: dorphell 
-pkgname=audiofile
-pkgver=0.2.7
-pkgrel=1
-pkgdesc="Silicon Graphics Audio File Library"
-arch=('i686' 'x86_64')
-url="http://www.68k.org/~michael/audiofile/";
-license=('LGPL')
-depends=('glibc')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('61efd278627415b5468426fc9e52aef32ea0fdac12b56bcdd72734c2ece5945e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr || return 1
-  make || return 1
-  make DESTDIR="${pkgdir}" install || return 1
-}

Copied: audiofile/repos/extra-x86_64/PKGBUILD (from rev 144338, 
audiofile/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-12-04 20:03:38 UTC (rev 144340)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: dorphell 
+
+pkgname=audiofile
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Silicon Graphics Audio File Library"
+arch=('i686' 'x86_64')
+url="http://www.68k.org/~michael/audiofile/";
+license=('LGPL')
+depends=('gcc-libs' 'alsa-lib')
+options=('!libtool')
+source=("http://audiofile.68k.org/$pkgname-$pkgver.tar.gz";)
+md5sums=('cb2c4fe6e899e688ffe5d1568581cb63')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in audiofile/repos (3 files)

2011-12-04 Thread Ray Rashif
Date: Sunday, December 4, 2011 @ 15:03:36
  Author: schiv
Revision: 144339

db-move: moved audiofile from [testing] to [extra] (i686)

Added:
  audiofile/repos/extra-i686/PKGBUILD
(from rev 144338, audiofile/repos/testing-i686/PKGBUILD)
Deleted:
  audiofile/repos/extra-i686/PKGBUILD
  audiofile/repos/testing-i686/

--+
 PKGBUILD |   50 ++
 1 file changed, 30 insertions(+), 20 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 19:02:24 UTC (rev 144338)
+++ extra-i686/PKGBUILD 2011-12-04 20:03:36 UTC (rev 144339)
@@ -1,20 +0,0 @@
-# $Id$
-# Maintainer: dorphell 
-pkgname=audiofile
-pkgver=0.2.7
-pkgrel=1
-pkgdesc="Silicon Graphics Audio File Library"
-arch=('i686' 'x86_64')
-url="http://www.68k.org/~michael/audiofile/";
-license=('LGPL')
-depends=('glibc')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.2/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('61efd278627415b5468426fc9e52aef32ea0fdac12b56bcdd72734c2ece5945e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr || return 1
-  make || return 1
-  make DESTDIR="${pkgdir}" install || return 1
-}

Copied: audiofile/repos/extra-i686/PKGBUILD (from rev 144338, 
audiofile/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 20:03:36 UTC (rev 144339)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: dorphell 
+
+pkgname=audiofile
+pkgver=0.3.2
+pkgrel=1
+pkgdesc="Silicon Graphics Audio File Library"
+arch=('i686' 'x86_64')
+url="http://www.68k.org/~michael/audiofile/";
+license=('LGPL')
+depends=('gcc-libs' 'alsa-lib')
+options=('!libtool')
+source=("http://audiofile.68k.org/$pkgname-$pkgver.tar.gz";)
+md5sums=('cb2c4fe6e899e688ffe5d1568581cb63')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2011-12-04 Thread Dave Reisner
Date: Sunday, December 4, 2011 @ 14:02:24
  Author: dreisner
Revision: 144338

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  
mkinitcpio/repos/core-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch
(from rev 144337, 
mkinitcpio/repos/testing-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch)
  mkinitcpio/repos/core-any/PKGBUILD
(from rev 144337, mkinitcpio/repos/testing-any/PKGBUILD)
Deleted:
  mkinitcpio/repos/core-any/PKGBUILD
  mkinitcpio/repos/testing-any/

-+
 0001-init_functions-redirect-poll_device-output-to-stderr.patch |   28 +++
 PKGBUILD|   72 
+-
 2 files changed, 68 insertions(+), 32 deletions(-)

Copied: 
mkinitcpio/repos/core-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch
 (from rev 144337, 
mkinitcpio/repos/testing-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch)
===
--- core-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch
(rev 0)
+++ core-any/0001-init_functions-redirect-poll_device-output-to-stderr.patch
2011-12-04 19:02:24 UTC (rev 144338)
@@ -0,0 +1,28 @@
+From 7effc762a2de2029ccedb659f25426c80b04cf4d Mon Sep 17 00:00:00 2001
+From: Dave Reisner 
+Date: Thu, 1 Dec 2011 11:58:40 -0500
+Subject: [PATCH] init_functions: redirect poll_device output to stderr
+
+Fixes FS#27385
+
+Signed-off-by: Dave Reisner 
+---
+ init_functions |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/init_functions b/init_functions
+index 69cd8fb..787b925 100644
+--- a/init_functions
 b/init_functions
+@@ -15,7 +15,7 @@ poll_device() {
+ [ -b "$device" ] && return 0
+ 
+ if [ "$udevd_running" -eq 1 ]; then
+-msg "Waiting $seconds seconds for device $device ..."
++msg "Waiting $seconds seconds for device $device ..." >&2
+ while [ ! -b "$device" -a "$seconds" -gt 0 ]; do
+ sleep 1
+ seconds=$(( $seconds - 1 ))
+-- 
+1.7.8
+

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2011-12-04 18:35:03 UTC (rev 144337)
+++ core-any/PKGBUILD   2011-12-04 19:02:24 UTC (rev 144338)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner 
-# Maintainer: Thomas Bächler 
-
-pkgname=mkinitcpio
-pkgver=0.8.0
-pkgrel=2
-pkgdesc="Modular initramfs image creation utility"
-arch=('any')
-url="http://www.archlinux.org/";
-license=('GPL')
-depends=('mkinitcpio-busybox>=1.16.1-2' 'module-init-tools' 'util-linux>=2.19' 
'libarchive' 'coreutils'
- 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'udev>=174-1' 
'file' 'gzip')
-optdepends=('xz: Use lzma or xz compression for the initramfs image'
-'bzip2: Use bzip2 compression for the initramfs image'
-'lzop: Use lzo compression for the initramfs image'
-'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
-replaces=('mkinitrd' 'mkinitramfs' 'klibc' 'klibc-extras' 'klibc-kbd'
-  'klibc-module-init-tools' 'klibc-udev')
-backup=(etc/mkinitcpio.conf)
-source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
-sha256sums=('097faaf23aaa6d442e7cc6add7238698abfea4185e7d125dcffd74d0ea159246')
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # add compat symlink until people stop hardcoding paths !$%(&*!#$
-  mkdir "$pkgdir/sbin"
-  ln -s /usr/bin/mkinitcpio "$pkgdir/sbin/mkinitcpio"
-}

Copied: mkinitcpio/repos/core-any/PKGBUILD (from rev 144337, 
mkinitcpio/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2011-12-04 19:02:24 UTC (rev 144338)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Dave Reisner 
+# Maintainer: Thomas Bächler 
+
+pkgname=mkinitcpio
+pkgver=0.8.0
+pkgrel=3
+pkgdesc="Modular initramfs image creation utility"
+arch=('any')
+url="http://www.archlinux.org/";
+license=('GPL')
+depends=('mkinitcpio-busybox>=1.16.1-2' 'module-init-tools' 'util-linux>=2.19' 
'libarchive' 'coreutils'
+ 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'udev>=174-1' 
'file' 'gzip')
+optdepends=('xz: Use lzma or xz compression for the initramfs image'
+'bzip2: Use bzip2 compression for the initramfs image'
+'lzop: Use lzo compression for the initramfs image'
+'mkinitcpio-nfs-utils: Support for root filesystem on NFS')
+replaces=('mkinitrd' 'mkinitramfs' 'klibc' 'klibc-extras' 'klibc-kbd'
+  'klibc-module-init-tools' 'klibc-udev')
+backup=(etc/mkinitcpio.conf)
+source=("ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz";
+'0001-init_functions-redirect-poll_device-output-to-stderr.patch')
+sha256su

[arch-commits] Commit in texlive-games/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:35:03
  Author: remy
Revision: 144337

archrelease: copy trunk to testing-any

Added:
  texlive-games/repos/testing-any/
  texlive-games/repos/testing-any/Changelog
(from rev 144335, texlive-games/trunk/Changelog)
  texlive-games/repos/testing-any/PKGBUILD
(from rev 144335, texlive-games/trunk/PKGBUILD)
  texlive-games/repos/testing-any/texlive-games.maps
(from rev 144335, texlive-games/trunk/texlive-games.maps)
  texlive-games/repos/testing-any/texlive.install
(from rev 144335, texlive-games/trunk/texlive.install)

+
 Changelog  |7 ++
 PKGBUILD   |   46 +
 texlive-games.maps |1 
 texlive.install|   52 +++
 4 files changed, 106 insertions(+)

Copied: texlive-games/repos/testing-any/Changelog (from rev 144335, 
texlive-games/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:35:03 UTC (rev 144337)
@@ -0,0 +1,7 @@
+texlive-games 2011.24714
+
+- upgrade package chess-problem-diagrams 15878 -> 23555
+- new package gamebook
+- new package othelloboard
+- new package schwalbe-chess
+

Copied: texlive-games/repos/testing-any/PKGBUILD (from rev 144335, 
texlive-games/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:35:03 UTC (rev 144337)
@@ -0,0 +1,46 @@
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-games
+pkgver=2011.24714
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Setups for typesetting various board games, including 
chess"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+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=('26d130df4e98f8c3c9acafcc4ca9fa35'
+ '387a994c27b49be1ac3cf64a8f9ab155')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   cd "$srcdir"
+   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
+}

Copied: texlive-games/repos/testing-any/texlive-games.maps (from rev 144335, 
texlive-games/trunk/texlive-games.maps)
===
--- testing-any/texlive-games.maps  (rev 0)
+++ testing-any/texlive-games.maps  2011-12-04 18:35:03 UTC (rev 144337)
@@ -0,0 +1 @@
+Map SkakNew.map

Copied: texlive-games/repos/testing-any/texlive.install (from rev 144335, 
texlive-games/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:35:03 UTC (rev 144337)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-games"
+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 shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
+  echo">>> texlive: updating the filename database..."
+  usr/bin/mktexlsr
+  echo">>> texlive: updating the fontmap files with updmap..."
+  usr/bin/updmap-sys --quiet --nohash
+  echo" done." 
+}
+
+post_upgrade() {
+  TMPFILE=`mktemp`
+  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
+  cp "$UPDMAP" "$TMPFILE"
+  echo">>> texl

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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:34:53
  Author: remy
Revision: 144336

archrelease: copy trunk to testing-any

Added:
  texlive-genericextra/repos/testing-any/
  texlive-genericextra/repos/testing-any/Changelog
(from rev 144335, texlive-genericextra/trunk/Changelog)
  texlive-genericextra/repos/testing-any/PKGBUILD
(from rev 144335, texlive-genericextra/trunk/PKGBUILD)
  texlive-genericextra/repos/testing-any/texlive.install
(from rev 144335, texlive-genericextra/trunk/texlive.install)

-+
 Changelog   |   15 +++
 PKGBUILD|   44 
 texlive.install |   12 
 3 files changed, 71 insertions(+)

Copied: texlive-genericextra/repos/testing-any/Changelog (from rev 144335, 
texlive-genericextra/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:34:53 UTC (rev 144336)
@@ -0,0 +1,15 @@
+texlive-genericextra 2011.24609
+
+- upgrade package barr 15878 -> 23579
+- new package chronosys
+- new package ifetex
+- upgrade package lecturer 20011 -> 23916
+- upgrade package systeme 22493 -> 23336
+- upgrade package texapi 21182 -> 24237
+
+texlive-genericextra 2011.22511
+
+- upgrade package shade 15878 -> 22212
+- upgrade package systeme 21651 -> 22493
+- new package upca
+

Copied: texlive-genericextra/repos/testing-any/PKGBUILD (from rev 144335, 
texlive-genericextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:34:53 UTC (rev 144336)
@@ -0,0 +1,44 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-genericextra
+pkgver=2011.24609
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - mixed bag of generic macro packages and fonts"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('c3d3d0aec468f8910e33ed4e12806be3')
+
+build() {
+   cd "$srcdir"
+   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 -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
+}

Copied: texlive-genericextra/repos/testing-any/texlive.install (from rev 
144335, texlive-genericextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:34:53 UTC (rev 144336)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."
+   /usr/bin/mktexlsr
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in texlive-games/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:30:54
  Author: remy
Revision: 144335

upgpkg: texlive-games 2011.24714-1

Texlive update.

Added:
  texlive-games/trunk/Changelog
Modified:
  texlive-games/trunk/PKGBUILD

---+
 Changelog |7 +++
 PKGBUILD  |   12 +++-
 2 files changed, 14 insertions(+), 5 deletions(-)

Added: Changelog
===
--- Changelog   (rev 0)
+++ Changelog   2011-12-04 18:30:54 UTC (rev 144335)
@@ -0,0 +1,7 @@
+texlive-games 2011.24714
+
+- upgrade package chess-problem-diagrams 15878 -> 23555
+- new package gamebook
+- new package othelloboard
+- new package schwalbe-chess
+

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 18:30:43 UTC (rev 144334)
+++ PKGBUILD2011-12-04 18:30:54 UTC (rev 144335)
@@ -1,8 +1,9 @@
-# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-games
-pkgver=2010.20619
-pkgrel=2
+pkgver=2011.24714
+_revnr=${pkgver#2011.}
+pkgrel=1
 pkgdesc="TeX Live - Setups for typesetting various board games, including 
chess"
 license=('GPL')
 arch=(any)
@@ -13,19 +14,20 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('2057edbdbe789b02bdbf2018ccca80d3'
+md5sums=('26d130df4e98f8c3c9acafcc4ca9fa35'
  '387a994c27b49be1ac3cf64a8f9ab155')
 
 build() {
+   cd "$srcdir"
for p in *.tar.xz; do
   bsdtar -xf $p
done
rm -rf {tlpkg,doc,source} || true
 }
 package() {
+   cd "$srcdir"
install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
sed -i '/^#/d' CONTENTS
-   _revnr=`echo $pkgver | sed 's/2010\.//'`
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



[arch-commits] Commit in texlive-genericextra/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:30:43
  Author: remy
Revision: 144334

upgpkg: texlive-genericextra 2011.24609-1

Texlive update.

Modified:
  texlive-genericextra/trunk/Changelog
  texlive-genericextra/trunk/PKGBUILD

---+
 Changelog |9 +
 PKGBUILD  |6 +++---
 2 files changed, 12 insertions(+), 3 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 18:23:57 UTC (rev 144333)
+++ Changelog   2011-12-04 18:30:43 UTC (rev 144334)
@@ -1,3 +1,12 @@
+texlive-genericextra 2011.24609
+
+- upgrade package barr 15878 -> 23579
+- new package chronosys
+- new package ifetex
+- upgrade package lecturer 20011 -> 23916
+- upgrade package systeme 22493 -> 23336
+- upgrade package texapi 21182 -> 24237
+
 texlive-genericextra 2011.22511
 
 - upgrade package shade 15878 -> 22212

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 18:23:57 UTC (rev 144333)
+++ PKGBUILD2011-12-04 18:30:43 UTC (rev 144334)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-genericextra
-pkgver=2011.22511
+pkgver=2011.24609
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - mixed bag of generic macro packages and fonts"
@@ -15,10 +15,10 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('a0c2bdfcaf11b04ab95892129ebfa982')
+md5sums=('c3d3d0aec468f8910e33ed4e12806be3')
 
 build() {
-   bsdtar xf "$pkgname-$pkgver-src.zip"
+   cd "$srcdir"
for p in *.tar.xz; do
   bsdtar -xf $p
done



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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:23:57
  Author: remy
Revision: 144333

archrelease: copy trunk to testing-any

Added:
  texlive-htmlxml/repos/testing-any/
  texlive-htmlxml/repos/testing-any/Changelog
(from rev 144331, texlive-htmlxml/trunk/Changelog)
  texlive-htmlxml/repos/testing-any/PKGBUILD
(from rev 144331, texlive-htmlxml/trunk/PKGBUILD)
  texlive-htmlxml/repos/testing-any/texlive.install
(from rev 144332, texlive-htmlxml/trunk/texlive.install)

-+
 Changelog   |   10 ++
 PKGBUILD|   54 ++
 texlive.install |   12 
 3 files changed, 76 insertions(+)

Copied: texlive-htmlxml/repos/testing-any/Changelog (from rev 144331, 
texlive-htmlxml/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:23:57 UTC (rev 144333)
@@ -0,0 +1,10 @@
+texlive-htmlxml 2011.24013
+
+- upgrade package jadetex 18835 -> 23409
+- upgrade package tex4ht 22546 -> 24013
+- upgrade package xmltex 18835 -> 23409
+
+texlive-htmlxml 2011.22546
+
+- upgrade package tex4ht 21272 -> 22546
+

Copied: texlive-htmlxml/repos/testing-any/PKGBUILD (from rev 144331, 
texlive-htmlxml/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:23:57 UTC (rev 144333)
@@ -0,0 +1,54 @@
+# Contributor: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-htmlxml
+pkgver=2011.24013
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Packages to convert LaTeX to XML/HTML, and typeset 
XML/SGML"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('1fd5dbf7fd8ae85708643486548da0ce')
+
+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 -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
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/ht.sh $pkgdir/usr/bin/ht
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/htcontext.sh 
$pkgdir/usr/bin/htcontext
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/htlatex.sh 
$pkgdir/usr/bin/htlatex
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/htmex.sh $pkgdir/usr/bin/htmex
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/httex.sh $pkgdir/usr/bin/httex
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/httexi.sh $pkgdir/usr/bin/httexi
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/htxelatex.sh 
$pkgdir/usr/bin/htxelatex
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/htxetex.sh 
$pkgdir/usr/bin/htxetex
+   ln -s /usr/share/texmf-dist/scripts/tex4ht/mk4ht.pl $pkgdir/usr/bin/mk4ht
+}

Copied: texlive-htmlxml/repos/testing-any/texlive.install (from rev 144332, 
texlive-htmlxml/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:23:57 UTC (rev 144333)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."
+   /usr/bin/mktexlsr
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in texlive-humanities/repos (3 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:23:51
  Author: remy
Revision: 144332

archrelease: copy trunk to testing-any

Added:
  texlive-humanities/repos/testing-any/
  texlive-humanities/repos/testing-any/PKGBUILD
(from rev 144331, texlive-humanities/trunk/PKGBUILD)
  texlive-humanities/repos/testing-any/texlive.install
(from rev 144331, texlive-humanities/trunk/texlive.install)

-+
 PKGBUILD|   45 +
 texlive.install |   12 
 2 files changed, 57 insertions(+)

Copied: texlive-humanities/repos/testing-any/PKGBUILD (from rev 144331, 
texlive-humanities/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:23:51 UTC (rev 144332)
@@ -0,0 +1,45 @@
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-humanities
+pkgver=2011.24631
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live -  LaTeX packages for law, linguistics, social sciences, and 
humanities"
+license=('GPL')
+arch=(any)
+depends=('texlive-core' 'texlive-latexextra')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('219482f5298fc186a88940d61c988153')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+
+package() {
+   cd "$srcdir"
+   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 -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
+}

Copied: texlive-humanities/repos/testing-any/texlive.install (from rev 144331, 
texlive-humanities/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:23:51 UTC (rev 144332)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."
+   /usr/bin/mktexlsr
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in texlive-htmlxml/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:22:27
  Author: remy
Revision: 144331

upgpkg: texlive-htmlxml 2011.24013-1

Texlive update.

Modified:
  texlive-htmlxml/trunk/Changelog
  texlive-htmlxml/trunk/PKGBUILD

---+
 Changelog |6 ++
 PKGBUILD  |5 ++---
 2 files changed, 8 insertions(+), 3 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 18:21:09 UTC (rev 144330)
+++ Changelog   2011-12-04 18:22:27 UTC (rev 144331)
@@ -1,3 +1,9 @@
+texlive-htmlxml 2011.24013
+
+- upgrade package jadetex 18835 -> 23409
+- upgrade package tex4ht 22546 -> 24013
+- upgrade package xmltex 18835 -> 23409
+
 texlive-htmlxml 2011.22546
 
 - upgrade package tex4ht 21272 -> 22546

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 18:21:09 UTC (rev 144330)
+++ PKGBUILD2011-12-04 18:22:27 UTC (rev 144331)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-htmlxml
-pkgver=2011.22546
+pkgver=2011.24013
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Packages to convert LaTeX to XML/HTML, and typeset 
XML/SGML"
@@ -15,10 +15,9 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('60fccf7701210b316744f0379a5e6d97')
+md5sums=('1fd5dbf7fd8ae85708643486548da0ce')
 
 build() {
-   bsdtar xf "$pkgname-$pkgver-src.zip"
for p in *.tar.xz; do
   bsdtar -xf $p
done



[arch-commits] Commit in texlive-langcjk/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:21:09
  Author: remy
Revision: 144330

archrelease: copy trunk to testing-any

Added:
  texlive-langcjk/repos/testing-any/
  texlive-langcjk/repos/testing-any/Changelog
(from rev 144329, texlive-langcjk/trunk/Changelog)
  texlive-langcjk/repos/testing-any/PKGBUILD
(from rev 144329, texlive-langcjk/trunk/PKGBUILD)
  texlive-langcjk/repos/testing-any/texlive-langcjk.maps
(from rev 144329, texlive-langcjk/trunk/texlive-langcjk.maps)
  texlive-langcjk/repos/testing-any/texlive.install
(from rev 144329, texlive-langcjk/trunk/texlive.install)

--+
 Changelog|   19 +
 PKGBUILD |   46 +++
 texlive-langcjk.maps |   13 
 texlive.install  |   52 +
 4 files changed, 130 insertions(+)

Copied: texlive-langcjk/repos/testing-any/Changelog (from rev 144329, 
texlive-langcjk/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:21:09 UTC (rev 144330)
@@ -0,0 +1,19 @@
+texlive-langcjk 2011.24689
+
+- new package ipaex
+- new package japanese
+- new package japanese-otf
+- upgrade package ptex 23118 -> 24627
+
+texlive-langcjk 2011.23118
+
+- upgrade package cjkutils 21345 -> 23089
+- upgrade package ptex 22725 -> 23118
+
+texlive-langcjk 2011.22725
+
+- upgrade package ctex 21116 -> 22488
+- upgrade package ptex 21780 -> 22725
+- upgrade package wadalab 15878 -> 22576
+- upgrade package zhmetrics 16067 -> 22207
+

Copied: texlive-langcjk/repos/testing-any/PKGBUILD (from rev 144329, 
texlive-langcjk/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:21:09 UTC (rev 144330)
@@ -0,0 +1,46 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-langcjk
+pkgver=2011.24689
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - CJK (Chinese, Japanese, Korean) macros and fonts"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-lang')
+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=('170938e68b63fab60ab3de02bce929b2'
+ 'a4c50faea47494bad836b83391eb720e')
+
+build() {
+   cd "$srcdir"
+   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
+}

Copied: texlive-langcjk/repos/testing-any/texlive-langcjk.maps (from rev 
144329, texlive-langcjk/trunk/texlive-langcjk.maps)
===
--- testing-any/texlive-langcjk.maps(rev 0)
+++ testing-any/texlive-langcjk.maps2011-12-04 18:21:09 UTC (rev 144330)
@@ -0,0 +1,13 @@
+Map bkaiu.map
+Map bsmiu.map
+Map dgj.map
+Map dmj.map
+Map garuda-c90.map
+Map gbsnu.map
+Map gkaiu.map
+Map mc2j.map
+Map mcj.map
+Map mr2j.map
+Map mrj.map
+Map norasi-c90.map
+Map umj.map

Copied: texlive-langcjk/repos/testing-any/texlive.install (from rev 144329, 
texlive-langcjk/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:21:09 UTC (rev 144330)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-langcjk"
+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 shoud go"
+  echo" into /etc/texmf/web2c/updmap

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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:16:44
  Author: remy
Revision: 144329

upgpkg: texlive-langcjk 2011.24689-1

Texlive update.

Modified:
  texlive-langcjk/trunk/Changelog
  texlive-langcjk/trunk/PKGBUILD

---+
 Changelog |7 +++
 PKGBUILD  |4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 18:10:56 UTC (rev 144328)
+++ Changelog   2011-12-04 18:16:44 UTC (rev 144329)
@@ -1,3 +1,10 @@
+texlive-langcjk 2011.24689
+
+- new package ipaex
+- new package japanese
+- new package japanese-otf
+- upgrade package ptex 23118 -> 24627
+
 texlive-langcjk 2011.23118
 
 - upgrade package cjkutils 21345 -> 23089

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 18:10:56 UTC (rev 144328)
+++ PKGBUILD2011-12-04 18:16:44 UTC (rev 144329)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-langcjk
-pkgver=2011.23118
+pkgver=2011.24689
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - CJK (Chinese, Japanese, Korean) macros and fonts"
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('5ec642d1bddfd67543ef8e500a5b9037'
+md5sums=('170938e68b63fab60ab3de02bce929b2'
  'a4c50faea47494bad836b83391eb720e')
 
 build() {



[arch-commits] Commit in texlive-langcyrillic/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:10:56
  Author: remy
Revision: 144328

archrelease: copy trunk to testing-any

Added:
  texlive-langcyrillic/repos/testing-any/
  texlive-langcyrillic/repos/testing-any/Changelog
(from rev 144325, texlive-langcyrillic/trunk/Changelog)
  texlive-langcyrillic/repos/testing-any/PKGBUILD
(from rev 144325, texlive-langcyrillic/trunk/PKGBUILD)
  texlive-langcyrillic/repos/testing-any/texlive-langcyrillic.maps
(from rev 144325, texlive-langcyrillic/trunk/texlive-langcyrillic.maps)
  texlive-langcyrillic/repos/testing-any/texlive.install
(from rev 144325, texlive-langcyrillic/trunk/texlive.install)

---+
 Changelog |   14 +++
 PKGBUILD  |   47 +++
 texlive-langcyrillic.maps |1 
 texlive.install   |   52 
 4 files changed, 114 insertions(+)

Copied: texlive-langcyrillic/repos/testing-any/Changelog (from rev 144325, 
texlive-langcyrillic/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:10:56 UTC (rev 144328)
@@ -0,0 +1,14 @@
+texlive-langcyrillic 2011.24029
+
+ - upgrade package cyrillic 22150 -> 23396
+ - upgrade package disser 20522 -> 24029
+
+texlive-langcyrillic 2011.23089
+
+ - upgrade package cyrillic-bin 18835 -> 23089
+
+texlive-langcyrillic 2011.22650
+
+ - upgrade package eskdx 15878 -> 22465
+ - upgrade package t2 15878 -> 22650
+

Copied: texlive-langcyrillic/repos/testing-any/PKGBUILD (from rev 144325, 
texlive-langcyrillic/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:10:56 UTC (rev 144328)
@@ -0,0 +1,47 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-langcyrillic
+pkgver=2011.24029
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Fonts and macro packages to typeset Cyrillic texts"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-lang')
+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=('c2e6fb30b14a27c44a4bf10f91024d0d'
+ 'f4a321793d9082c991c68870276dda7b')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   cd "$srcdir"
+   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
+}

Copied: texlive-langcyrillic/repos/testing-any/texlive-langcyrillic.maps (from 
rev 144325, texlive-langcyrillic/trunk/texlive-langcyrillic.maps)
===
--- testing-any/texlive-langcyrillic.maps   (rev 0)
+++ testing-any/texlive-langcyrillic.maps   2011-12-04 18:10:56 UTC (rev 
144328)
@@ -0,0 +1 @@
+Map cmcyr.map

Copied: texlive-langcyrillic/repos/testing-any/texlive.install (from rev 
144325, texlive-langcyrillic/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 18:10:56 UTC (rev 144328)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-langcyrillic"
+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 shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPL

[arch-commits] Commit in texlive-langextra/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:06:41
  Author: remy
Revision: 144327

archrelease: copy trunk to testing-any

Added:
  texlive-langextra/repos/testing-any/
  texlive-langextra/repos/testing-any/Changelog
(from rev 144321, texlive-langextra/trunk/Changelog)
  texlive-langextra/repos/testing-any/PKGBUILD
(from rev 144321, texlive-langextra/trunk/PKGBUILD)
  texlive-langextra/repos/testing-any/texlive-langextra.maps
(from rev 144321, texlive-langextra/trunk/texlive-langextra.maps)
  texlive-langextra/repos/testing-any/texlive.install
(from rev 144321, texlive-langextra/trunk/texlive.install)

+
 Changelog  |   19 +++
 PKGBUILD   |   58 +++
 texlive-langextra.maps |   18 ++
 texlive.install|   52 ++
 4 files changed, 147 insertions(+)

Copied: texlive-langextra/repos/testing-any/Changelog (from rev 144321, 
texlive-langextra/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:06:41 UTC (rev 144327)
@@ -0,0 +1,19 @@
+texlive-langextra 2011.23959
+
+ - upgrade package persian-bib 16848 -> 23267
+ - new package persian-modern
+ - upgrade package velthuis 21570 -> 23224
+ - new package xetex-devanagari
+
+texlive-langextra 2011.23164
+
+ - upgrade package malayalam 15878 -> 23164
+ - upgrade package vntex 18845 -> 22766
+
+texlive-langextra 2011.22550
+
+- upgrade package arabi 20072 -> 22550
+- upgrade package wnri 15878 -> 22459
+- new package wnri-latex
+- deleted package soyombo
+

Copied: texlive-langextra/repos/testing-any/PKGBUILD (from rev 144321, 
texlive-langextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:06:41 UTC (rev 144327)
@@ -0,0 +1,58 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-langextra
+pkgver=2011.23959
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Bundle of all extra language support"
+license=('GPL')
+arch=(any)
+conflicts=('texlive-langafrican' 'texlive-langarab' 'texlive-langarabic'
+   'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew'
+   'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan'
+   'texlive-langvietnamese') 
+provides=('texlive-langafrican' 'texlive-langarabic' 'texlive-langarmenian' 
+  'texlive-langarmenian' 'texlive-langcroatian' 'texlive-langhebrew'
+  'texlive-langindic' 'texlive-langmongolian' 'texlive-langtibetan'
+  'texlive-langvietnamese') 
+depends=('texlive-latexextra')
+groups=('texlive-lang')
+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=('298482bfd870fae837f8075a1bda4623'
+ 'a4cbb2f9de807a04f90956e6f8c354ae')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   cd "$srcdir"
+   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
+   #remove parts of ethiop that depend on Omega:
+   rm -rf $pkgdir/usr/share/texmf-dist/fonts/{ofm,ovf,ovp}
+   rm -rf $pkgdir/usr/share/texmf-dist/omega
+}

Copied: texlive-langextra/repos/testing-any/texlive-langextra.maps (from rev 
144321, texlive-langextra/trunk/texlive-langextra.maps)
===
--- testing-any/texlive-langextra.maps  (rev 0)
+++ testing-any/texlive-langextra.maps  2011-12-04 18:06:41 UTC (rev 144327)
@@ -0,0 +1,18 @@
+Map arabi.map
+Map arevvn.map
+Map burmese.map
+Map chartervn.map
+Map cjhebrew.map
+Map cmbrightvn.map
+Map concretevn.map
+Map grotesqvn.map
+Map skt.map
+Map txttvn.map
+Map urwvn.map
+Map vntop

[arch-commits] Commit in texlive-fontsextra/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 13:01:19
  Author: remy
Revision: 144326

archrelease: copy trunk to testing-any

Added:
  texlive-fontsextra/repos/testing-any/
  texlive-fontsextra/repos/testing-any/Changelog
(from rev 144325, texlive-fontsextra/trunk/Changelog)
  texlive-fontsextra/repos/testing-any/PKGBUILD
(from rev 144325, texlive-fontsextra/trunk/PKGBUILD)
  texlive-fontsextra/repos/testing-any/texlive-fontsextra.maps
(from rev 144325, texlive-fontsextra/trunk/texlive-fontsextra.maps)
  texlive-fontsextra/repos/testing-any/texlive.install
(from rev 144325, texlive-fontsextra/trunk/texlive.install)

-+
 Changelog   |   41 
 PKGBUILD|   51 
 texlive-fontsextra.maps |  113 ++
 texlive.install |   52 +
 4 files changed, 257 insertions(+)

Copied: texlive-fontsextra/repos/testing-any/Changelog (from rev 144325, 
texlive-fontsextra/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 18:01:19 UTC (rev 144326)
@@ -0,0 +1,41 @@
+texlive-fontsextra 2011.24706
+
+- upgrade package Asana-Math 22016 -> 24343
+- upgrade package antiqua 21855 -> 24266
+- upgrade package bookhands 22053 -> 23609
+- new package calligra-type1
+- upgrade package cantarell 22384 -> 24705
+- upgrade package ccicons 22591 -> 24043
+- upgrade package comfortaa 22360 -> 23707
+- new package cookingsymbols
+- new package dejavu
+- upgrade package dingbat 19910 -> 24093
+- upgrade package droid 22359 -> 23912
+- new package dutchcal
+- upgrade package fdsymbol 22691 -> 23797
+- upgrade package frcursive 17270 -> 24559
+- upgrade package lato 22358 -> 24489
+- upgrade package libertine 19593 -> 23455
+- upgrade package mathdesign 19736 -> 24173
+- new package opensans
+- new package paratype
+- upgrade package punknova 19714 -> 24649
+- new package pxtxalfa
+- upgrade package rsfso 21491 -> 23462
+- upgrade package xits 22161 -> 24696
+- deleted package ptsans
+- deleted package ptserif
+
+texlive-fontsextra 2011.22691
+
+- new package boondox
+- new package cantarell
+- upgrade package ccicons 20563 -> 22591
+- upgrade package comfortaa 21035 -> 22360
+- upgrade package droid 21036 -> 22359
+- new package esstix
+- new package fdsymbol
+- upgrade package lato 21244 -> 22358
+- upgrade package stix 19440 -> 22426
+- upgrade package xits 21054 -> 22161
+

Copied: texlive-fontsextra/repos/testing-any/PKGBUILD (from rev 144325, 
texlive-fontsextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 18:01:19 UTC (rev 144326)
@@ -0,0 +1,51 @@
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-fontsextra
+pkgver=2011.24706
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - all sorts of extra fonts"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+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=('cae6076c03573799db348923a4582d97'
+ '6e84e4a8ee6a25adec39cd6310d9bef2')
+
+build() {
+   cd $srcdir
+   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
+   
+   # remove stuff depending on omega/aleph
+   rm -rf $pkgdir/usr/share/texmf-dist/omega
+   find $pkgdir/ -wholename '*ocherokee*' -delete
+   find $pkgdir/ -wholename '*oinuit*' -delete
+}

Copied: texlive-fontsextra/repos/testing-any/texlive-fontsextra.maps (from rev 
144325, texlive-fontsextra/trunk/texlive-fontsextra.maps)
===
--- testing-any/texlive-fontsextra.maps (rev 0)
++

[arch-commits] Commit in texlive-langcyrillic/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:56:59
  Author: remy
Revision: 144325

upgpkg: texlive-langcyrillic 2011.24029-1

Texlive update.

Modified:
  texlive-langcyrillic/trunk/Changelog
  texlive-langcyrillic/trunk/PKGBUILD

---+
 Changelog |5 +
 PKGBUILD  |4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:56:36 UTC (rev 144324)
+++ Changelog   2011-12-04 17:56:59 UTC (rev 144325)
@@ -1,3 +1,8 @@
+texlive-langcyrillic 2011.24029
+
+ - upgrade package cyrillic 22150 -> 23396
+ - upgrade package disser 20522 -> 24029
+
 texlive-langcyrillic 2011.23089
 
  - upgrade package cyrillic-bin 18835 -> 23089

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:56:36 UTC (rev 144324)
+++ PKGBUILD2011-12-04 17:56:59 UTC (rev 144325)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-langcyrillic
-pkgver=2011.23089
+pkgver=2011.24029
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Fonts and macro packages to typeset Cyrillic texts"
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('c14a6d4f919cac295c1f9f48dfdf9d14'
+md5sums=('c2e6fb30b14a27c44a4bf10f91024d0d'
  'f4a321793d9082c991c68870276dda7b')
 
 build() {



[arch-commits] Commit in texlive-fontsextra/trunk (3 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:56:36
  Author: remy
Revision: 144324

upgpkg: texlive-fontsextra 2011.24706-1

Texlive update.

Modified:
  texlive-fontsextra/trunk/Changelog
  texlive-fontsextra/trunk/PKGBUILD
  texlive-fontsextra/trunk/texlive-fontsextra.maps

-+
 Changelog   |   28 
 PKGBUILD|7 +++
 texlive-fontsextra.maps |   10 --
 3 files changed, 39 insertions(+), 6 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:53:23 UTC (rev 144323)
+++ Changelog   2011-12-04 17:56:36 UTC (rev 144324)
@@ -1,3 +1,31 @@
+texlive-fontsextra 2011.24706
+
+- upgrade package Asana-Math 22016 -> 24343
+- upgrade package antiqua 21855 -> 24266
+- upgrade package bookhands 22053 -> 23609
+- new package calligra-type1
+- upgrade package cantarell 22384 -> 24705
+- upgrade package ccicons 22591 -> 24043
+- upgrade package comfortaa 22360 -> 23707
+- new package cookingsymbols
+- new package dejavu
+- upgrade package dingbat 19910 -> 24093
+- upgrade package droid 22359 -> 23912
+- new package dutchcal
+- upgrade package fdsymbol 22691 -> 23797
+- upgrade package frcursive 17270 -> 24559
+- upgrade package lato 22358 -> 24489
+- upgrade package libertine 19593 -> 23455
+- upgrade package mathdesign 19736 -> 24173
+- new package opensans
+- new package paratype
+- upgrade package punknova 19714 -> 24649
+- new package pxtxalfa
+- upgrade package rsfso 21491 -> 23462
+- upgrade package xits 22161 -> 24696
+- deleted package ptsans
+- deleted package ptserif
+
 texlive-fontsextra 2011.22691
 
 - new package boondox

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:53:23 UTC (rev 144323)
+++ PKGBUILD2011-12-04 17:56:36 UTC (rev 144324)
@@ -1,7 +1,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-fontsextra
-pkgver=2011.22691
+pkgver=2011.24706
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - all sorts of extra fonts"
@@ -14,12 +14,11 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('3fd66dd20903712a5ebd9aaa84f119ba'
- '5150fc36c158776c6317ac14bbd677ab')
+md5sums=('cae6076c03573799db348923a4582d97'
+ '6e84e4a8ee6a25adec39cd6310d9bef2')
 
 build() {
cd $srcdir
-   bsdtar xf "$pkgname-$pkgver-src.zip"
for p in *.tar.xz; do
   bsdtar -xf $p
done

Modified: texlive-fontsextra.maps
===
--- texlive-fontsextra.maps 2011-12-04 17:53:23 UTC (rev 144323)
+++ texlive-fontsextra.maps 2011-12-04 17:56:36 UTC (rev 144324)
@@ -19,8 +19,6 @@
 Map MorrisIn.map
 Map Nouveaud.map
 Map OrnementsADF.map
-Map PTSans-type1.map
-Map PTSerif-type1.map
 Map Romantik.map
 Map Rothdn.map
 Map RoyalIn.map
@@ -39,6 +37,7 @@
 Map belleek.map
 Map bera.map
 Map boondox.map
+Map calligra.map
 Map cantarell.map
 Map ccicons.map
 Map clm.map
@@ -46,9 +45,11 @@
 Map cmin.map
 Map comfortaa.map
 Map cyklop.map
+Map dejavu-type1.map
 Map dictsym.map
 Map droid.map
 Map dstroke.map
+Map dutchcal.map
 Map epigrafica.map
 Map esvect.map
 Map fdsymbol.map
@@ -58,6 +59,7 @@
 Map fonetika.map
 Map fourier-utopia-expert.map
 Map fourier.map
+Map frcursive.map
 Map gfsartemisia.map
 Map gfsbodoni.map
 Map gfscomplutum.map
@@ -77,10 +79,14 @@
 Map mdput.map
 Map mdugm.map
 Map ocrb.map
+Map opensans.map
+Map paratype-type1.map
 Map pbsi.map
 Map phaistos.map
 Map prodint.map
+Map pxtx.map
 Map recycle.map
+Map rsfso.map
 Map sqrcaps.map
 Map starfont.map
 Map tfrupee.map



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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:53:23
  Author: remy
Revision: 144323

archrelease: copy trunk to testing-any

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

-+
 Changelog   |  296 ++
 PKGBUILD|   72 +++
 texlive-latexextra.maps |3 
 texlive.install |   52 
 4 files changed, 423 insertions(+)

Copied: texlive-latexextra/repos/testing-any/Changelog (from rev 144321, 
texlive-latexextra/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:53:23 UTC (rev 144323)
@@ -0,0 +1,296 @@
+texlive-latexextra 2011.24718
+
+- upgrade package achemso 21698 -> 24605
+- upgrade package alterqcm 15878 -> 23385
+- upgrade package animate 19937 -> 23986
+- new package bchart
+- upgrade package beamer2thesis 21108 -> 24496
+- new package beameraudience
+- new package beamersubframe
+- new package bhcexam
+- upgrade package canoniclayout 21155 -> 24523
+- upgrade package catoptions 22128 -> 24654
+- upgrade package ccaption 15878 -> 23443
+- upgrade package changes 22239 -> 24203
+- upgrade package chet 22570 -> 24468
+- new package collectbox
+- new package coseoul
+- new package crbox
+- upgrade package csquotes 21867 -> 24393
+- upgrade package csvsimple 21981 -> 24575
+- upgrade package currfile 21012 -> 24047
+- upgrade package dashbox 15878 -> 23425
+- upgrade package dashundergaps 17222 -> 23373
+- upgrade package decimal 15878 -> 23374
+- new package decorule
+- new package delim
+- new package diagbox
+- new package documentation
+- upgrade package dtk 22213 -> 24698
+- new package easyfig
+- new package emarks
+- upgrade package enumitem 15878 -> 24146
+- upgrade package exercise 22107 -> 23328
+- upgrade package fancytabs 22141 -> 23839
+- upgrade package filecontents 15878 -> 24250
+- upgrade package filehook 21669 -> 24280
+- upgrade package filemod 21831 -> 24042
+- upgrade package fink 20654 -> 24329
+- new package floatflt
+- new package fontaxes
+- upgrade package footmisc 15878 -> 23330
+- new package fullwidth
+- upgrade package gauss 17596 -> 24411
+- new package ghab
+- new package gitinfo
+- upgrade package gmutils 21294 -> 24287
+- upgrade package gmverb 21293 -> 24288
+- new package hletter
+- upgrade package hypdvips 19631 -> 23377
+- upgrade package hyperxmp 22306 -> 23378
+- upgrade package ifnextok 22588 -> 23379
+- new package ifoddpage
+- new package invoice
+- upgrade package isotope 15878 -> 23711
+- new package jlabels
+- new package jvlisting
+- new package kantlipsum
+- new package keyval2e
+- upgrade package koma-moderncvclassic 22109 -> 24224
+- upgrade package lastpage 21261 -> 23793
+- upgrade package latex-tds 22144 -> 24252
+- upgrade package lhelp 15878 -> 23638
+- new package logbox
+- new package ltxkeys
+- new package ltxtools
+- upgrade package magaz 17431 -> 24694
+- upgrade package marginfix 19602 -> 24320
+- upgrade package mathalfa 22464 -> 24327
+- upgrade package mbenotes 22556 -> 24321
+- upgrade package mdframed 20841 -> 24594
+- new package meetingmins
+- upgrade package minted 16883 -> 24002
+- upgrade package moderncv 19688 -> 24574
+- new package moderntimeline
+- new package moreenum
+- upgrade package morefloats 21262 -> 23341
+- upgrade package morehype 21360 -> 24369
+- new package morewrites
+- new package mversion
+- upgrade package newvbtm 21935 -> 23996
+- upgrade package newverbs 21441 -> 23342
+- upgrade package niceframe 15878 -> 24120
+- upgrade package nicetext 21257 -> 24388
+- new package nowidow
+- new package pagecolor
+- new package pageslts
+- upgrade package papermas 21258 -> 23667
+- new package paracol
+- upgrade package pax 22179 -> 23306
+- upgrade package pbox 15878 -> 24664
+- upgrade package pdfmarginpar 22334 -> 23492
+- upgrade package probsoln 15878 -> 23668
+- upgrade package protocol 17962 -> 24281
+- new package quoting
+- new package realboxes
+- upgrade package regstats 22508 -> 23662
+- upgrade package relsize 20018 -> 24074
+- upgrade package repeatindex 15878 -> 24305
+- new package serbian-apostrophe
+- new package serbian-date-lat
+- new package serbian-def-cyr
+- upgrade package serbian-lig 22871 -> 23382
+- upgrade package shipunov 20218 -> 24203
+- upgrade package showexpl 15878 -> 23669
+- new package sidenotes
+- upgrade package skeycommand 18493 -> 24652
+- upgrade package spreadtab 22046 -> 23526
+

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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:53:03
  Author: remy
Revision: 144322

archrelease: copy trunk to testing-any

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

+
 PKGBUILD   |   48 +++
 texlive-langgreek.maps |6 +
 texlive.install|   52 +++
 3 files changed, 106 insertions(+)

Copied: texlive-langgreek/repos/testing-any/PKGBUILD (from rev 144321, 
texlive-langgreek/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:53:03 UTC (rev 144322)
@@ -0,0 +1,48 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-langgreek
+pkgver=2011.24147
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Fonts and support for typesetting Greek"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-lang')
+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=('e4abdabdd7e5ad966610d856da8c6a70'
+ 'a1c515e7bbe93c905e20db580aa5a234')
+
+build() {
+   bsdtar xf "$pkgname-$pkgver-src.zip"
+   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
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/mkgrkindex/mkgrkindex 
$pkgdir/usr/bin/mkgrkindex
+}

Copied: texlive-langgreek/repos/testing-any/texlive-langgreek.maps (from rev 
144321, texlive-langgreek/trunk/texlive-langgreek.maps)
===
--- testing-any/texlive-langgreek.maps  (rev 0)
+++ testing-any/texlive-langgreek.maps  2011-12-04 17:53:03 UTC (rev 144322)
@@ -0,0 +1,6 @@
+Map gfsbaskerville.map
+Map gfsporson.map
+Map grverb.map
+Map kerkis.map
+MixedMap cbgreek-full.map
+MixedMap iby.map

Copied: texlive-langgreek/repos/testing-any/texlive.install (from rev 144321, 
texlive-langgreek/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:53:03 UTC (rev 144322)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-langgreek"
+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 shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
+  echo">>> texlive: updating the filename database..."
+  usr/bin/mktexlsr
+  echo">>> texlive: updating the fontmap files with updmap..."
+  usr/bin/updmap-sys --quiet --nohash
+  echo" done." 
+}
+
+post_upgrade() {
+  TMPFILE=`mktemp`
+  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
+  cp "$UPDMAP" "$TMPFILE"
+  echo">>> texlive: regenerating updmap.cfg (custom additions shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UP

[arch-commits] Commit in texlive-langextra/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:52:01
  Author: remy
Revision: 144321

upgpkg: texlive-langextra 2011.23959-1

Texlive update.

Modified:
  texlive-langextra/trunk/Changelog
  texlive-langextra/trunk/PKGBUILD

---+
 Changelog |7 +++
 PKGBUILD  |4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:51:40 UTC (rev 144320)
+++ Changelog   2011-12-04 17:52:01 UTC (rev 144321)
@@ -1,3 +1,10 @@
+texlive-langextra 2011.23959
+
+ - upgrade package persian-bib 16848 -> 23267
+ - new package persian-modern
+ - upgrade package velthuis 21570 -> 23224
+ - new package xetex-devanagari
+
 texlive-langextra 2011.23164
 
  - upgrade package malayalam 15878 -> 23164

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:51:40 UTC (rev 144320)
+++ PKGBUILD2011-12-04 17:52:01 UTC (rev 144321)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-langextra
-pkgver=2011.23164
+pkgver=2011.23959
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Bundle of all extra language support"
@@ -23,7 +23,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('987d87bf1173062cfffb2d93d60e3942'
+md5sums=('298482bfd870fae837f8075a1bda4623'
  'a4cbb2f9de807a04f90956e6f8c354ae')
 
 build() {



[arch-commits] Commit in texlive-latexextra/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:51:40
  Author: remy
Revision: 144320

upgpkg: texlive-latexextra 2011.24718-1

Texlive update.

Modified:
  texlive-latexextra/trunk/Changelog
  texlive-latexextra/trunk/PKGBUILD

---+
 Changelog |  134 
 PKGBUILD  |4 -
 2 files changed, 136 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:48:14 UTC (rev 144319)
+++ Changelog   2011-12-04 17:51:40 UTC (rev 144320)
@@ -1,3 +1,137 @@
+texlive-latexextra 2011.24718
+
+- upgrade package achemso 21698 -> 24605
+- upgrade package alterqcm 15878 -> 23385
+- upgrade package animate 19937 -> 23986
+- new package bchart
+- upgrade package beamer2thesis 21108 -> 24496
+- new package beameraudience
+- new package beamersubframe
+- new package bhcexam
+- upgrade package canoniclayout 21155 -> 24523
+- upgrade package catoptions 22128 -> 24654
+- upgrade package ccaption 15878 -> 23443
+- upgrade package changes 22239 -> 24203
+- upgrade package chet 22570 -> 24468
+- new package collectbox
+- new package coseoul
+- new package crbox
+- upgrade package csquotes 21867 -> 24393
+- upgrade package csvsimple 21981 -> 24575
+- upgrade package currfile 21012 -> 24047
+- upgrade package dashbox 15878 -> 23425
+- upgrade package dashundergaps 17222 -> 23373
+- upgrade package decimal 15878 -> 23374
+- new package decorule
+- new package delim
+- new package diagbox
+- new package documentation
+- upgrade package dtk 22213 -> 24698
+- new package easyfig
+- new package emarks
+- upgrade package enumitem 15878 -> 24146
+- upgrade package exercise 22107 -> 23328
+- upgrade package fancytabs 22141 -> 23839
+- upgrade package filecontents 15878 -> 24250
+- upgrade package filehook 21669 -> 24280
+- upgrade package filemod 21831 -> 24042
+- upgrade package fink 20654 -> 24329
+- new package floatflt
+- new package fontaxes
+- upgrade package footmisc 15878 -> 23330
+- new package fullwidth
+- upgrade package gauss 17596 -> 24411
+- new package ghab
+- new package gitinfo
+- upgrade package gmutils 21294 -> 24287
+- upgrade package gmverb 21293 -> 24288
+- new package hletter
+- upgrade package hypdvips 19631 -> 23377
+- upgrade package hyperxmp 22306 -> 23378
+- upgrade package ifnextok 22588 -> 23379
+- new package ifoddpage
+- new package invoice
+- upgrade package isotope 15878 -> 23711
+- new package jlabels
+- new package jvlisting
+- new package kantlipsum
+- new package keyval2e
+- upgrade package koma-moderncvclassic 22109 -> 24224
+- upgrade package lastpage 21261 -> 23793
+- upgrade package latex-tds 22144 -> 24252
+- upgrade package lhelp 15878 -> 23638
+- new package logbox
+- new package ltxkeys
+- new package ltxtools
+- upgrade package magaz 17431 -> 24694
+- upgrade package marginfix 19602 -> 24320
+- upgrade package mathalfa 22464 -> 24327
+- upgrade package mbenotes 22556 -> 24321
+- upgrade package mdframed 20841 -> 24594
+- new package meetingmins
+- upgrade package minted 16883 -> 24002
+- upgrade package moderncv 19688 -> 24574
+- new package moderntimeline
+- new package moreenum
+- upgrade package morefloats 21262 -> 23341
+- upgrade package morehype 21360 -> 24369
+- new package morewrites
+- new package mversion
+- upgrade package newvbtm 21935 -> 23996
+- upgrade package newverbs 21441 -> 23342
+- upgrade package niceframe 15878 -> 24120
+- upgrade package nicetext 21257 -> 24388
+- new package nowidow
+- new package pagecolor
+- new package pageslts
+- upgrade package papermas 21258 -> 23667
+- new package paracol
+- upgrade package pax 22179 -> 23306
+- upgrade package pbox 15878 -> 24664
+- upgrade package pdfmarginpar 22334 -> 23492
+- upgrade package probsoln 15878 -> 23668
+- upgrade package protocol 17962 -> 24281
+- new package quoting
+- new package realboxes
+- upgrade package regstats 22508 -> 23662
+- upgrade package relsize 20018 -> 24074
+- upgrade package repeatindex 15878 -> 24305
+- new package serbian-apostrophe
+- new package serbian-date-lat
+- new package serbian-def-cyr
+- upgrade package serbian-lig 22871 -> 23382
+- upgrade package shipunov 20218 -> 24203
+- upgrade package showexpl 15878 -> 23669
+- new package sidenotes
+- upgrade package skeycommand 18493 -> 24652
+- upgrade package spreadtab 22046 -> 23526
+- new package srbook-mem
+- new package storebox
+- new package storecmd
+- upgrade package svn-multi 21919 -> 23782
+- new package tabfigures
+- new package tablefootnote
+- new package tagging
+- upgrade package texshade 20065 -> 24716
+- upgrade package textgreek 22047 -> 24282
+- upgrade package thmtools 19813 -> 23659
+- upgrade package thumbs 22558 -> 24332
+- upgrade package titlesec 15878 -> 24623
+- upgrade package tocvsec2 17266 -> 23444
+- upgrade package todonotes 22164 -> 24362
+- new package tram
+- upgrade package turnthepage 21829 -> 23784
+- upgrade package undolabl 21263 -> 23537
+- upgrade package v

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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:48:14
  Author: remy
Revision: 144319

archrelease: copy trunk to testing-any

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

+
 PKGBUILD   |   49 
 texlive-music.maps |1 
 texlive.install|   52 +++
 3 files changed, 102 insertions(+)

Copied: texlive-music/repos/testing-any/PKGBUILD (from rev 144317, 
texlive-music/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:48:14 UTC (rev 144319)
@@ -0,0 +1,49 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-music
+pkgver=2011.24518
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Music typesetting packages"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+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=('6a7fa8135f2c55e063c1a4104e51e097'
+ '6af96d016e18492867d6f4ba2eff0a31')
+
+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
+   # script symlinks
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/musixtex/musixtex.lua 
$pkgdir/usr/bin/musixtex
+   ln -s /usr/share/texmf-dist/scripts/musixtex/musixflx.lua 
$pkgdir/usr/bin/musixflx
+}

Copied: texlive-music/repos/testing-any/texlive-music.maps (from rev 144317, 
texlive-music/trunk/texlive-music.maps)
===
--- testing-any/texlive-music.maps  (rev 0)
+++ testing-any/texlive-music.maps  2011-12-04 17:48:14 UTC (rev 144319)
@@ -0,0 +1 @@
+MixedMap musix.map

Copied: texlive-music/repos/testing-any/texlive.install (from rev 144317, 
texlive-music/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:48:14 UTC (rev 144319)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-music"
+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 shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
+  echo">>> texlive: updating the filename database..."
+  usr/bin/mktexlsr
+  echo">>> texlive: updating the fontmap files with updmap..."
+  usr/bin/updmap-sys --quiet --nohash
+  echo" done." 
+}
+
+post_upgrade() {
+  TMPFILE=`mktemp`
+  echo">>> texlive: saving updmap.cfg as $TMPFILE..."
+  cp "$UPDMAP" "$TMPFILE"
+  echo">>> texlive: regenerating updmap.cfg (custom additions shoud go"
+  echo" into /etc/texmf/web2c/updmap-local.cfg"
+  cp usr/share/texmf/web2c/updmap-hdr.cfg $UPDMAP
+  cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP
+  [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP
+  echo">>> texlive: updating the filename database..."
+  usr/bin/mktexlsr
+  echo">>> texlive: updating the fontmap files

[arch-commits] Commit in texlive-pictures/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:47:10
  Author: remy
Revision: 144318

archrelease: copy trunk to testing-any

Added:
  texlive-pictures/repos/testing-any/
  texlive-pictures/repos/testing-any/Changelog
(from rev 144317, texlive-pictures/trunk/Changelog)
  texlive-pictures/repos/testing-any/PKGBUILD
(from rev 144317, texlive-pictures/trunk/PKGBUILD)
  texlive-pictures/repos/testing-any/texlive-pictures.maps
(from rev 144317, texlive-pictures/trunk/texlive-pictures.maps)
  texlive-pictures/repos/testing-any/texlive.install
(from rev 144317, texlive-pictures/trunk/texlive.install)

---+
 Changelog |   74 
 PKGBUILD  |   52 +
 texlive-pictures.maps |2 +
 texlive.install   |   52 +
 4 files changed, 180 insertions(+)

Copied: texlive-pictures/repos/testing-any/Changelog (from rev 144317, 
texlive-pictures/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:47:10 UTC (rev 144318)
@@ -0,0 +1,74 @@
+texlive-pictures 2011.24715
+
+- upgrade package adjustbox 21789 -> 24593
+- new package braids
+- upgrade package chemfig 22205 -> 24715
+- upgrade package circuitikz 16183 -> 23913
+- upgrade package combinedgraphics 16144 -> 23356
+- upgrade package curve2e 20420 -> 23482
+- upgrade package gincltex 21635 -> 23835
+- upgrade package gnuplottex 22101 -> 23918
+- new package lapdf
+- upgrade package mathspic 18868 -> 23661
+- new package modiagram
+- upgrade package numericplots 19828 -> 23241
+- upgrade package petri-nets 15878 -> 24088
+- upgrade package pgfgantt 22166 -> 24572
+- new package pgfmolbio
+- upgrade package pgfopts 18072 -> 23320
+- upgrade package pgfplots 19839 -> 23292
+- upgrade package prerex 20440 -> 23896
+- upgrade package randomwalk 21161 -> 23924
+- new package rviewport
+- upgrade package texdraw 15878 -> 23717
+- upgrade package tikz-3dplot 21549 -> 23338
+- new package tikz-cd
+- new package tikz-dependency
+- upgrade package tikz-qtree 20936 -> 24259
+- new package tikzpagenodes
+- new package tqft
+- new package tsemlines
+- upgrade package tufte-latex 16378 -> 23722
+- upgrade package xypic 21380 -> 23327
+- deleted package xypdf
+
+texlive-pictures 2011.22961-1
+
+ - new package tkz-base
+ - new package tkz-berge
+ - upgrade package tkz-doc 15878 -> 22959
+ - new package tkz-euclide
+ - new package tkz-fct
+ - new package tkz-graph
+ - new package tkz-kiviat
+ - upgrade package tkz-linknodes 15878 -> 22833
+ - upgrade package tkz-tab 21542 -> 22834
+
+texlive-pictures 2011.22509-1
+
+- new package bloques
+- upgrade package chemfig 22055 -> 22205
+- new package grafcet
+- upgrade package pgfgantt 21681 -> 22166
+
+texlive-pictures 2010.22101-1
+
+- new package adjustbox
+- upgrade package bardiag 15878 -> 22013
+- new package bondgraph
+- upgrade package chemfig 20523 -> 22055
+- upgrade package epspdf 20860 -> 21628
+- new package gincltex
+- upgrade package gnuplottex 15878 -> 22101
+- new package gradientframe
+- upgrade package pgf-umlsd 17744 -> 21301
+- new package pgfgantt
+- new package piano
+- upgrade package pict2e 15878 -> 21987
+- upgrade package pictex 15878 -> 21943
+- new package randomwalk
+- upgrade package tikz-3dplot 19879 -> 21549
+- upgrade package tikz-timing 16761 -> 21013
+- upgrade package tkz-tab 15878 -> 21542
+- upgrade package xypic 20081 -> 21380
+

Copied: texlive-pictures/repos/testing-any/PKGBUILD (from rev 144317, 
texlive-pictures/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:47:10 UTC (rev 144318)
@@ -0,0 +1,52 @@
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-pictures
+pkgver=2011.24715
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Packages for drawings graphics"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+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=('8ed222d584e96379bd4ccfd1edfad1dc'
+ '7d08cb8ade87687bd8676f8e8ba20697')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   cd "$srcdir"
+   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
+   fo

[arch-commits] Commit in texlive-pictures/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:42:23
  Author: remy
Revision: 144317

upgpkg: texlive-pictures 2011.24715-1

Texlive update.

Modified:
  texlive-pictures/trunk/Changelog
  texlive-pictures/trunk/PKGBUILD

---+
 Changelog |   34 ++
 PKGBUILD  |4 ++--
 2 files changed, 36 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:42:17 UTC (rev 144316)
+++ Changelog   2011-12-04 17:42:23 UTC (rev 144317)
@@ -1,3 +1,37 @@
+texlive-pictures 2011.24715
+
+- upgrade package adjustbox 21789 -> 24593
+- new package braids
+- upgrade package chemfig 22205 -> 24715
+- upgrade package circuitikz 16183 -> 23913
+- upgrade package combinedgraphics 16144 -> 23356
+- upgrade package curve2e 20420 -> 23482
+- upgrade package gincltex 21635 -> 23835
+- upgrade package gnuplottex 22101 -> 23918
+- new package lapdf
+- upgrade package mathspic 18868 -> 23661
+- new package modiagram
+- upgrade package numericplots 19828 -> 23241
+- upgrade package petri-nets 15878 -> 24088
+- upgrade package pgfgantt 22166 -> 24572
+- new package pgfmolbio
+- upgrade package pgfopts 18072 -> 23320
+- upgrade package pgfplots 19839 -> 23292
+- upgrade package prerex 20440 -> 23896
+- upgrade package randomwalk 21161 -> 23924
+- new package rviewport
+- upgrade package texdraw 15878 -> 23717
+- upgrade package tikz-3dplot 21549 -> 23338
+- new package tikz-cd
+- new package tikz-dependency
+- upgrade package tikz-qtree 20936 -> 24259
+- new package tikzpagenodes
+- new package tqft
+- new package tsemlines
+- upgrade package tufte-latex 16378 -> 23722
+- upgrade package xypic 21380 -> 23327
+- deleted package xypdf
+
 texlive-pictures 2011.22961-1
 
  - new package tkz-base

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:42:17 UTC (rev 144316)
+++ PKGBUILD2011-12-04 17:42:23 UTC (rev 144317)
@@ -1,7 +1,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-pictures
-pkgver=2011.22961
+pkgver=2011.24715
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Packages for drawings graphics"
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('c8e448dd4d5ab4868835995a77409e4d'
+md5sums=('8ed222d584e96379bd4ccfd1edfad1dc'
  '7d08cb8ade87687bd8676f8e8ba20697')
 
 build() {



[arch-commits] Commit in texlive-plainextra/repos (3 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:42:17
  Author: remy
Revision: 144316

archrelease: copy trunk to testing-any

Added:
  texlive-plainextra/repos/testing-any/
  texlive-plainextra/repos/testing-any/PKGBUILD
(from rev 144315, texlive-plainextra/trunk/PKGBUILD)
  texlive-plainextra/repos/testing-any/texlive.install
(from rev 144315, texlive-plainextra/trunk/texlive.install)

-+
 PKGBUILD|   43 +++
 texlive.install |   12 
 2 files changed, 55 insertions(+)

Copied: texlive-plainextra/repos/testing-any/PKGBUILD (from rev 144315, 
texlive-plainextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:42:17 UTC (rev 144316)
@@ -0,0 +1,43 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-plainextra
+pkgver=2011.23567
+pkgrel=1
+pkgdesc="TeX Live - A collection of add-on packages and macros for plain TeX"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('fc9af44b3df1370396a7163f77fb60d8')
+
+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
+   _revnr=`echo $pkgver | sed 's/2010\.//'`
+   install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
+   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
+}

Copied: texlive-plainextra/repos/testing-any/texlive.install (from rev 144315, 
texlive-plainextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:42:17 UTC (rev 144316)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."
+   /usr/bin/mktexlsr
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:38:19
  Author: remy
Revision: 144315

archrelease: copy trunk to testing-any

Added:
  texlive-pstricks/repos/testing-any/
  texlive-pstricks/repos/testing-any/Changelog
(from rev 144314, texlive-pstricks/trunk/Changelog)
  texlive-pstricks/repos/testing-any/PKGBUILD
(from rev 144314, texlive-pstricks/trunk/PKGBUILD)
  texlive-pstricks/repos/testing-any/texlive.install
(from rev 144314, texlive-pstricks/trunk/texlive.install)

-+
 Changelog   |   45 +
 PKGBUILD|   45 +
 texlive.install |   12 
 3 files changed, 102 insertions(+)

Copied: texlive-pstricks/repos/testing-any/Changelog (from rev 144314, 
texlive-pstricks/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:38:19 UTC (rev 144315)
@@ -0,0 +1,45 @@
+texlive-pstricks 2011.24695
+
+- upgrade package auto-pst-pdf 15878 -> 23723
+- upgrade package bclogo 16938 -> 23305
+- upgrade package pst-bspline 20173 -> 23632
+- upgrade package pst-coil 16895 -> 24020
+- upgrade package pst-eucl 22405 -> 24069
+- upgrade package pst-func 22177 -> 24491
+- upgrade package pst-node 22385 -> 24693
+- upgrade package pst-plot 22268 -> 24581
+- new package pst-rubans
+- upgrade package pst-slpe 15878 -> 24391
+- upgrade package pst-tree 21589 -> 24142
+- upgrade package pst-tvz 21266 -> 23451
+- upgrade package pstricks 22178 -> 24695
+- upgrade package pstricks-add 21290 -> 23657
+
+texlive-pstricks 2011.22586
+
+- upgrade package pst-circ 21599 -> 22444
+- upgrade package pst-eucl 15878 -> 22405
+- upgrade package pst-func 20299 -> 22177
+- new package pst-layout
+- upgrade package pst-node 21550 -> 22385
+- upgrade package pst-plot 22099 -> 22268
+- upgrade package pstricks 22140 -> 22178
+
+texlive-pstricks 2010.22140-1
+
+- upgrade package pst-3dplot 17113 -> 21588
+- upgrade package pst-asr 17171 -> 22138
+- upgrade package pst-barcode 15878 -> 21716
+- upgrade package pst-circ 20358 -> 21599
+- upgrade package pst-electricfield 19320 -> 21864
+- upgrade package pst-exa 16615 -> 22113
+- new package pst-graphicx
+- upgrade package pst-node 20879 -> 21550
+- upgrade package pst-plot 20743 -> 22099
+- upgrade package pst-sigsys 19063 -> 21667
+- upgrade package pst-tree 15878 -> 21589
+- new package pst-tvz
+- upgrade package pst2pdf 18835 -> 21135
+- upgrade package pstricks 20594 -> 22140
+- upgrade package pstricks-add 20794 -> 21290
+

Copied: texlive-pstricks/repos/testing-any/PKGBUILD (from rev 144314, 
texlive-pstricks/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:38:19 UTC (rev 144315)
@@ -0,0 +1,45 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-pstricks
+pkgver=2011.24695
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Additional PSTricks packages"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('d7958bcae8c58f75b4d5fce9932b7d39')
+
+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 -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
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/pst2pdf/pst2pdf $pkgdir/usr/bin/pst2pdf
+}

Copied: texlive-pstricks/repos/testing-any/texlive.install (from rev 144314, 
texlive-pstricks/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:38:19 UTC (rev 144315)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."

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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:36:43
  Author: remy
Revision: 144314

archrelease: copy trunk to testing-any

Added:
  texlive-publishers/repos/testing-any/
  texlive-publishers/repos/testing-any/Changelog
(from rev 144313, texlive-publishers/trunk/Changelog)
  texlive-publishers/repos/testing-any/PKGBUILD
(from rev 144313, texlive-publishers/trunk/PKGBUILD)
  texlive-publishers/repos/testing-any/texlive.install
(from rev 144313, texlive-publishers/trunk/texlive.install)

-+
 Changelog   |   53 +
 PKGBUILD|   43 +++
 texlive.install |   12 
 3 files changed, 108 insertions(+)

Copied: texlive-publishers/repos/testing-any/Changelog (from rev 144313, 
texlive-publishers/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:36:43 UTC (rev 144314)
@@ -0,0 +1,53 @@
+texlive-publishers 2011.24723
+
+ - upgrade package aomart 21666 -> 23349
+ - new package apa6
+ - upgrade package apa6e 21585 -> 23350
+ - upgrade package arsclassica 17051 -> 23434
+ - upgrade package ascelike 18785 -> 24568
+ - new package cascadilla
+ - upgrade package classicthesis 21196 -> 23354
+ - upgrade package cmpj 22062 -> 23860
+ - upgrade package confproc 20346 -> 23358
+ - new package ejpecp
+ - new package fcltxdoc
+ - new package kdgdocs
+ - new package msu-thesis
+ - new package musuos
+ - upgrade package muthesis 20697 -> 23861
+ - upgrade package philosophersimprint 15878 -> 24674
+ - new package sapthesis
+ - upgrade package stellenbosch 15878 -> 23900
+ - upgrade package suftesi 19798 -> 24552
+ - upgrade package thuthesis 15878 -> 24361
+ - upgrade package toptesi 22647 -> 24466
+ - upgrade package uothesis 22489 -> 23485
+ - upgrade package york-thesis 18148 -> 23348
+ - deleted package msuthesis
+ - deleted package vxu
+
+texlive-publishers 2011.22647
+
+ - upgrade package elteikthesis 19800 -> 22513
+ - upgrade package toptesi 22063 -> 22647
+ - upgrade package tugboat 20545 -> 22462
+ - new package uafthesis
+ - new package unamthesis
+ - upgrade package uothesis 22075 -> 22489
+
+texlive-publishers 2010.22075-1
+
+ - upgrade package aomart 20919 -> 21666
+ - new package apa6e
+ - upgrade package classicthesis 18063 -> 21196
+ - new package cmpj
+ - upgrade package elbioimp 20469 -> 21758
+ - new package fbithesis
+ - upgrade package jmlr 20630 -> 21830
+ - upgrade package lps 15878 -> 21322
+ - upgrade package nature 15878 -> 21819
+ - upgrade package ryethesis 19255 -> 21316
+ - upgrade package toptesi 20458 -> 22063
+ - upgrade package tugboat-plain 15878 -> 21720
+ - upgrade package uothesis 20890 -> 22075
+

Copied: texlive-publishers/repos/testing-any/PKGBUILD (from rev 144313, 
texlive-publishers/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:36:43 UTC (rev 144314)
@@ -0,0 +1,43 @@
+# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-publishers
+pkgver=2011.24723
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - LaTeX classes and packages for specific publishers"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=('!emptydirs')
+options=(!strip)
+install=texlive.install
+md5sums=('552991914d8b43181018918d06983e61')
+
+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 -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
+}

Copied: texlive-publishers/repos/testing-any/texlive.install (from rev 144313, 
texlive-publishers/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:36:43 UTC (rev 1443

[arch-commits] Commit in texlive-pstricks/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:34:47
  Author: remy
Revision: 144313

upgpkg: texlive-pstricks 2011.24695-1

Texlive update.

Modified:
  texlive-pstricks/trunk/Changelog
  texlive-pstricks/trunk/PKGBUILD

---+
 Changelog |   17 +
 PKGBUILD  |5 ++---
 2 files changed, 19 insertions(+), 3 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:33:07 UTC (rev 144312)
+++ Changelog   2011-12-04 17:34:47 UTC (rev 144313)
@@ -1,3 +1,20 @@
+texlive-pstricks 2011.24695
+
+- upgrade package auto-pst-pdf 15878 -> 23723
+- upgrade package bclogo 16938 -> 23305
+- upgrade package pst-bspline 20173 -> 23632
+- upgrade package pst-coil 16895 -> 24020
+- upgrade package pst-eucl 22405 -> 24069
+- upgrade package pst-func 22177 -> 24491
+- upgrade package pst-node 22385 -> 24693
+- upgrade package pst-plot 22268 -> 24581
+- new package pst-rubans
+- upgrade package pst-slpe 15878 -> 24391
+- upgrade package pst-tree 21589 -> 24142
+- upgrade package pst-tvz 21266 -> 23451
+- upgrade package pstricks 22178 -> 24695
+- upgrade package pstricks-add 21290 -> 23657
+
 texlive-pstricks 2011.22586
 
 - upgrade package pst-circ 21599 -> 22444

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:33:07 UTC (rev 144312)
+++ PKGBUILD2011-12-04 17:34:47 UTC (rev 144313)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-pstricks
-pkgver=2011.22586
+pkgver=2011.24695
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Additional PSTricks packages"
@@ -15,10 +15,9 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('7914e28584505b34b6e5d43c7316a8ce')
+md5sums=('d7958bcae8c58f75b4d5fce9932b7d39')
 
 build() {
-   bsdtar xf "$pkgname-$pkgver-src.zip"
for p in *.tar.xz; do
   bsdtar -xf $p
done



[arch-commits] Commit in texlive-publishers/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:33:07
  Author: remy
Revision: 144312

upgpkg: texlive-publishers 2011.24723-1

Texlive update.

Modified:
  texlive-publishers/trunk/Changelog
  texlive-publishers/trunk/PKGBUILD

---+
 Changelog |   28 
 PKGBUILD  |5 ++---
 2 files changed, 30 insertions(+), 3 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:27:47 UTC (rev 144311)
+++ Changelog   2011-12-04 17:33:07 UTC (rev 144312)
@@ -1,3 +1,31 @@
+texlive-publishers 2011.24723
+
+ - upgrade package aomart 21666 -> 23349
+ - new package apa6
+ - upgrade package apa6e 21585 -> 23350
+ - upgrade package arsclassica 17051 -> 23434
+ - upgrade package ascelike 18785 -> 24568
+ - new package cascadilla
+ - upgrade package classicthesis 21196 -> 23354
+ - upgrade package cmpj 22062 -> 23860
+ - upgrade package confproc 20346 -> 23358
+ - new package ejpecp
+ - new package fcltxdoc
+ - new package kdgdocs
+ - new package msu-thesis
+ - new package musuos
+ - upgrade package muthesis 20697 -> 23861
+ - upgrade package philosophersimprint 15878 -> 24674
+ - new package sapthesis
+ - upgrade package stellenbosch 15878 -> 23900
+ - upgrade package suftesi 19798 -> 24552
+ - upgrade package thuthesis 15878 -> 24361
+ - upgrade package toptesi 22647 -> 24466
+ - upgrade package uothesis 22489 -> 23485
+ - upgrade package york-thesis 18148 -> 23348
+ - deleted package msuthesis
+ - deleted package vxu
+
 texlive-publishers 2011.22647
 
  - upgrade package elteikthesis 19800 -> 22513

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:27:47 UTC (rev 144311)
+++ PKGBUILD2011-12-04 17:33:07 UTC (rev 144312)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-publishers
-pkgver=2011.22647
+pkgver=2011.24723
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - LaTeX classes and packages for specific publishers"
@@ -15,10 +15,9 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('435c8f6822aa02cf0a94c42d9aeb73fa')
+md5sums=('552991914d8b43181018918d06983e61')
 
 build() {
-   bsdtar xf "$pkgname-$pkgver-src.zip"
for p in *.tar.xz; do
   bsdtar -xf $p
done



[arch-commits] Commit in texlive-core/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:27:47
  Author: remy
Revision: 144311

archrelease: copy trunk to testing-any

Added:
  texlive-core/repos/testing-any/
  texlive-core/repos/testing-any/Changelog
(from rev 144310, texlive-core/trunk/Changelog)
  texlive-core/repos/testing-any/PKGBUILD
(from rev 144310, texlive-core/trunk/PKGBUILD)
  texlive-core/repos/testing-any/texlive-core.maps
(from rev 144310, texlive-core/trunk/texlive-core.maps)
  texlive-core/repos/testing-any/texlive.install
(from rev 144310, texlive-core/trunk/texlive.install)

---+
 Changelog |  309 
 PKGBUILD  |  142 +++
 texlive-core.maps |   45 +++
 texlive.install   |   58 +
 4 files changed, 554 insertions(+)

Copied: texlive-core/repos/testing-any/Changelog (from rev 144310, 
texlive-core/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:27:47 UTC (rev 144311)
@@ -0,0 +1,309 @@
+texlive-core 2011.24722
+
+- upgrade package amscls 22145 -> 23392
+- upgrade package amsmath 22147 -> 23390
+- upgrade package babel 22149 -> 23397
+- upgrade package beamer 19443 -> 24067
+- upgrade package bibleref-french 22077 -> 24267
+- upgrade package bidi 22125 -> 24680
+- upgrade package caption 16715 -> 24571
+- upgrade package cmarrows 15878 -> 24378
+- upgrade package context 23169 -> 24174
+- upgrade package context-filter 23170 -> 24389
+- upgrade package context-french 23167 -> 24582
+- new package context-gantt
+- upgrade package context-gnuplot 23167 -> 24028
+- upgrade package context-letter 23167 -> 24045
+- upgrade package context-rst 23167 -> 24199
+- upgrade package context-simplefonts 23167 -> 23369
+- upgrade package context-simpleslides 23167 -> 24165
+- upgrade package context-typescripts 23167 -> 24492
+- upgrade package context-vim 23167 -> 24359
+- upgrade package cslatex 22650 -> 23409
+- upgrade package ctable 22269 -> 23834
+- new package ctanify
+- new package ctanupload
+- upgrade package dehyph-exptl 18640 -> 23403
+- new package dhua
+- upgrade package dvips 23089 -> 24563
+- upgrade package emp 15878 -> 23483
+- new package facture
+- new package fontbook
+- upgrade package fontname 23088 -> 24661
+- upgrade package fontools 20048 -> 23329
+- upgrade package fontspec 21527 -> 24114
+- upgrade package frontespizio 21648 -> 24054
+- upgrade package graphics 22151 -> 23395
+- upgrade package hatching 18486 -> 23818
+- upgrade package hyperref 22110 -> 24686
+- upgrade package hyph-utf8 23085 -> 24089
+- new package impnattypo
+- upgrade package index 15878 -> 24099
+Upgrading package texlive-core from 23170 to 24722
+- upgrade package amscls 22145 -> 23392
+- upgrade package amsmath 22147 -> 23390
+- upgrade package babel 22149 -> 23397
+- upgrade package beamer 19443 -> 24067
+- upgrade package bibleref-french 22077 -> 24267
+- upgrade package bidi 22125 -> 24680
+- upgrade package caption 16715 -> 24571
+- upgrade package cmarrows 15878 -> 24378
+- upgrade package context 23169 -> 24174
+- upgrade package context-filter 23170 -> 24389
+- upgrade package context-french 23167 -> 24582
+- new package context-gantt
+- upgrade package context-gnuplot 23167 -> 24028
+- upgrade package context-letter 23167 -> 24045
+- upgrade package context-rst 23167 -> 24199
+- upgrade package context-simplefonts 23167 -> 23369
+- upgrade package context-simpleslides 23167 -> 24165
+- upgrade package context-typescripts 23167 -> 24492
+- upgrade package context-vim 23167 -> 24359
+- upgrade package cslatex 22650 -> 23409
+- upgrade package ctable 22269 -> 23834
+- new package ctanify
+- new package ctanupload
+- upgrade package dehyph-exptl 18640 -> 23403
+- new package dhua
+- upgrade package dvips 23089 -> 24563
+- upgrade package emp 15878 -> 23483
+- new package facture
+- new package fontbook
+- upgrade package fontname 23088 -> 24661
+- upgrade package fontools 20048 -> 23329
+- upgrade package fontspec 21527 -> 24114
+- upgrade package frontespizio 21648 -> 24054
+- upgrade package graphics 22151 -> 23395
+- upgrade package hatching 18486 -> 23818
+- upgrade package hyperref 22110 -> 24686
+- upgrade package hyph-utf8 23085 -> 24089
+- new package impnattypo
+- upgrade package index 15878 -> 24099
+- new package interpreter
+- upgrade package ionumbers 15878 -> 23380
+- upgrade package koma-script 21983 -> 23235
+- new package l3experimental
+- new package l3kernel
+- new package l3packages
+- upgrade package latex 22152 -> 23639
+- upgrade package latexmk 22466 -> 24722
+- new package luabibentry
+- new package luaindex
+- upgrade package lualatex-math 22339 -> 24009
+- new package luapersian
+- upgrade package marvosym 22202 -> 23630
+- new package match_parens
+- new package mf2pt1
+- upgrade package mh 21405 -> 2
+- upgrade package misc 17497 -> 23699
+- new

[arch-commits] Commit in texlive-core/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:27:36
  Author: remy
Revision: 144310

upgpkg: texlive-core 2011.24722-1

Texlive update.

Modified:
  texlive-core/trunk/Changelog
  texlive-core/trunk/PKGBUILD

---+
 Changelog |  128 
 PKGBUILD  |   11 +++--
 2 files changed, 136 insertions(+), 3 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:25:43 UTC (rev 144309)
+++ Changelog   2011-12-04 17:27:36 UTC (rev 144310)
@@ -1,3 +1,131 @@
+texlive-core 2011.24722
+
+- upgrade package amscls 22145 -> 23392
+- upgrade package amsmath 22147 -> 23390
+- upgrade package babel 22149 -> 23397
+- upgrade package beamer 19443 -> 24067
+- upgrade package bibleref-french 22077 -> 24267
+- upgrade package bidi 22125 -> 24680
+- upgrade package caption 16715 -> 24571
+- upgrade package cmarrows 15878 -> 24378
+- upgrade package context 23169 -> 24174
+- upgrade package context-filter 23170 -> 24389
+- upgrade package context-french 23167 -> 24582
+- new package context-gantt
+- upgrade package context-gnuplot 23167 -> 24028
+- upgrade package context-letter 23167 -> 24045
+- upgrade package context-rst 23167 -> 24199
+- upgrade package context-simplefonts 23167 -> 23369
+- upgrade package context-simpleslides 23167 -> 24165
+- upgrade package context-typescripts 23167 -> 24492
+- upgrade package context-vim 23167 -> 24359
+- upgrade package cslatex 22650 -> 23409
+- upgrade package ctable 22269 -> 23834
+- new package ctanify
+- new package ctanupload
+- upgrade package dehyph-exptl 18640 -> 23403
+- new package dhua
+- upgrade package dvips 23089 -> 24563
+- upgrade package emp 15878 -> 23483
+- new package facture
+- new package fontbook
+- upgrade package fontname 23088 -> 24661
+- upgrade package fontools 20048 -> 23329
+- upgrade package fontspec 21527 -> 24114
+- upgrade package frontespizio 21648 -> 24054
+- upgrade package graphics 22151 -> 23395
+- upgrade package hatching 18486 -> 23818
+- upgrade package hyperref 22110 -> 24686
+- upgrade package hyph-utf8 23085 -> 24089
+- new package impnattypo
+- upgrade package index 15878 -> 24099
+Upgrading package texlive-core from 23170 to 24722
+- upgrade package amscls 22145 -> 23392
+- upgrade package amsmath 22147 -> 23390
+- upgrade package babel 22149 -> 23397
+- upgrade package beamer 19443 -> 24067
+- upgrade package bibleref-french 22077 -> 24267
+- upgrade package bidi 22125 -> 24680
+- upgrade package caption 16715 -> 24571
+- upgrade package cmarrows 15878 -> 24378
+- upgrade package context 23169 -> 24174
+- upgrade package context-filter 23170 -> 24389
+- upgrade package context-french 23167 -> 24582
+- new package context-gantt
+- upgrade package context-gnuplot 23167 -> 24028
+- upgrade package context-letter 23167 -> 24045
+- upgrade package context-rst 23167 -> 24199
+- upgrade package context-simplefonts 23167 -> 23369
+- upgrade package context-simpleslides 23167 -> 24165
+- upgrade package context-typescripts 23167 -> 24492
+- upgrade package context-vim 23167 -> 24359
+- upgrade package cslatex 22650 -> 23409
+- upgrade package ctable 22269 -> 23834
+- new package ctanify
+- new package ctanupload
+- upgrade package dehyph-exptl 18640 -> 23403
+- new package dhua
+- upgrade package dvips 23089 -> 24563
+- upgrade package emp 15878 -> 23483
+- new package facture
+- new package fontbook
+- upgrade package fontname 23088 -> 24661
+- upgrade package fontools 20048 -> 23329
+- upgrade package fontspec 21527 -> 24114
+- upgrade package frontespizio 21648 -> 24054
+- upgrade package graphics 22151 -> 23395
+- upgrade package hatching 18486 -> 23818
+- upgrade package hyperref 22110 -> 24686
+- upgrade package hyph-utf8 23085 -> 24089
+- new package impnattypo
+- upgrade package index 15878 -> 24099
+- new package interpreter
+- upgrade package ionumbers 15878 -> 23380
+- upgrade package koma-script 21983 -> 23235
+- new package l3experimental
+- new package l3kernel
+- new package l3packages
+- upgrade package latex 22152 -> 23639
+- upgrade package latexmk 22466 -> 24722
+- new package luabibentry
+- new package luaindex
+- upgrade package lualatex-math 22339 -> 24009
+- new package luapersian
+- upgrade package marvosym 22202 -> 23630
+- new package match_parens
+- new package mf2pt1
+- upgrade package mh 21405 -> 2
+- upgrade package misc 17497 -> 23699
+- new package mpcolornames
+- upgrade package ms 16596 -> 24467
+- upgrade package pdfcrop 19781 -> 23499
+- upgrade package pdfpages 21680 -> 23319
+- upgrade package polyglossia 19698 -> 24291
+- upgrade package powerdot 22510 -> 24587
+- new package przechlewski-book
+- upgrade package psnfss 22153 -> 23394
+- new package showhyphens
+- upgrade package statex2 20307 -> 23961
+- upgrade package tabvar 21678 -> 23278
+- upgrade package texcount 18835 -> 23293
+- upgrade package texdef 22049 -> 23260
+- upgrade package texdoc 23089 -> 24354
+- upgrade pack

[arch-commits] Commit in texlive-science/repos (5 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:25:43
  Author: remy
Revision: 144309

archrelease: copy trunk to testing-any

Added:
  texlive-science/repos/testing-any/
  texlive-science/repos/testing-any/Changelog
(from rev 144308, texlive-science/trunk/Changelog)
  texlive-science/repos/testing-any/PKGBUILD
(from rev 144308, texlive-science/trunk/PKGBUILD)
  texlive-science/repos/testing-any/texlive-science.maps
(from rev 144308, texlive-science/trunk/texlive-science.maps)
  texlive-science/repos/testing-any/texlive.install
(from rev 144308, texlive-science/trunk/texlive.install)

--+
 Changelog|   33 +++
 PKGBUILD |   48 +
 texlive-science.maps |1 
 texlive.install  |   52 +
 4 files changed, 134 insertions(+)

Copied: texlive-science/repos/testing-any/Changelog (from rev 144308, 
texlive-science/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:25:43 UTC (rev 144309)
@@ -0,0 +1,33 @@
+texlive-science 2011.24724
+
+- upgrade package bytefield 21365 -> 23351
+- upgrade package chemmacros 22492 -> 24494
+- new package chemnum
+- upgrade package computational-complexity 20116 -> 23291
+- upgrade package mhchem 22589 -> 23334
+- new package sasnrdisplay
+- upgrade package siunitx 22994 -> 24604
+- upgrade package textopo 15878 -> 23796
+
+texlive-science 2011.22994-1
+
+- upgrade package siunitx 22648 -> 22994
+
+texlive-science 2011.22648-1
+
+- new package chemmacros
+- upgrade package mhchem 19018 -> 22589
+- upgrade package mychemistry 22097 -> 22242
+- new package nuc
+- upgrade package physymb 20944 -> 22406
+- upgrade package siunitx 22139 -> 22648
+
+texlive-science 2010.22139-1
+
+- upgrade package bytefield 20297 -> 21365
+- new package chemexec
+- upgrade package chemstyle 20330 -> 20996
+- upgrade package karnaugh 15878 -> 21338
+- new package mychemistry
+- upgrade package siunitx 20830 -> 22139
+

Copied: texlive-science/repos/testing-any/PKGBUILD (from rev 144308, 
texlive-science/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:25:43 UTC (rev 144309)
@@ -0,0 +1,48 @@
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-science
+pkgver=2011.24724
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Typesetting for natural and computer sciences"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+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=('1b5f93ccc66512ac39f9e454cb972fe2'
+ '72206bb981d3d491df018e0e13334be5')
+
+build() {
+   cd "$srcdir"
+   for p in *.tar.xz; do
+  bsdtar -xf $p
+   done
+   rm -rf {tlpkg,doc,source} || true
+}
+package() {
+   cd "$srcdir"
+   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
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/ulqda/ulqda.pl $pkgdir/usr/bin/ulqda
+}

Copied: texlive-science/repos/testing-any/texlive-science.maps (from rev 
144308, texlive-science/trunk/texlive-science.maps)
===
--- testing-any/texlive-science.maps(rev 0)
+++ testing-any/texlive-science.maps2011-12-04 17:25:43 UTC (rev 144309)
@@ -0,0 +1 @@
+Map chemarrow.map

Copied: texlive-science/repos/testing-any/texlive.install (from rev 144308, 
texlive-science/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:25:43 UTC (rev 144309)
@@ -0,0 +1,52 @@
+PKGNAME="texlive-science"
+UP

[arch-commits] Commit in texlive-science/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:25:34
  Author: remy
Revision: 144308

upgpkg: texlive-science 2011.24724-1

Texlive update.

Modified:
  texlive-science/trunk/Changelog
  texlive-science/trunk/PKGBUILD

---+
 Changelog |   11 +++
 PKGBUILD  |4 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:23:27 UTC (rev 144307)
+++ Changelog   2011-12-04 17:25:34 UTC (rev 144308)
@@ -1,3 +1,14 @@
+texlive-science 2011.24724
+
+- upgrade package bytefield 21365 -> 23351
+- upgrade package chemmacros 22492 -> 24494
+- new package chemnum
+- upgrade package computational-complexity 20116 -> 23291
+- upgrade package mhchem 22589 -> 23334
+- new package sasnrdisplay
+- upgrade package siunitx 22994 -> 24604
+- upgrade package textopo 15878 -> 23796
+
 texlive-science 2011.22994-1
 
 - upgrade package siunitx 22648 -> 22994

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:23:27 UTC (rev 144307)
+++ PKGBUILD2011-12-04 17:25:34 UTC (rev 144308)
@@ -1,7 +1,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-science
-pkgver=2011.22994
+pkgver=2011.24724
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Typesetting for natural and computer sciences"
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('58c2a08293444fd9ccbc223a15644bba'
+md5sums=('1b5f93ccc66512ac39f9e454cb972fe2'
  '72206bb981d3d491df018e0e13334be5')
 
 build() {



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

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:23:27
  Author: remy
Revision: 144307

archrelease: copy trunk to testing-any

Added:
  texlive-bibtexextra/repos/testing-any/
  texlive-bibtexextra/repos/testing-any/Changelog
(from rev 144306, texlive-bibtexextra/trunk/Changelog)
  texlive-bibtexextra/repos/testing-any/PKGBUILD
(from rev 144306, texlive-bibtexextra/trunk/PKGBUILD)
  texlive-bibtexextra/repos/testing-any/texlive.install
(from rev 144306, texlive-bibtexextra/trunk/texlive.install)

-+
 Changelog   |   41 +
 PKGBUILD|   46 ++
 texlive.install |   12 
 3 files changed, 99 insertions(+)

Copied: texlive-bibtexextra/repos/testing-any/Changelog (from rev 144306, 
texlive-bibtexextra/trunk/Changelog)
===
--- testing-any/Changelog   (rev 0)
+++ testing-any/Changelog   2011-12-04 17:23:27 UTC (rev 144307)
@@ -0,0 +1,41 @@
+texlive-bibtexextra 2011.24688
+
+- upgrade package amsrefs 23139 -> 23391
+- upgrade package beebe 23155 -> 24191
+- upgrade package biber 22893 -> 24683
+- upgrade package bibexport 21947 -> 24688
+- upgrade package biblatex 22892 -> 24596
+- upgrade package biblatex-apa 22894 -> 24597
+- upgrade package biblatex-chem 21801 -> 24286
+- upgrade package biblatex-chicago 21760 -> 24608
+- upgrade package biblatex-dw 21335 -> 24647
+- new package biblatex-fiwi
+- new package biblatex-juradiss
+- new package biblatex-luh-ipw
+- new package biblatex-musuos
+- upgrade package biblatex-nature 21702 -> 23952
+- new package biblatex-nejm
+- new package chscite
+- new package ksfh_nat
+- upgrade package notes2bib 21541 -> 23899
+- upgrade package urlbst 21650 -> 23262
+- new package vak
+- new package xcite
+
+texlive-bibtexextra 2011.23155
+
+- upgrade package amsrefs 22146 -> 23139
+- upgrade package beebe 22263 -> 23155
+- upgrade package biber 21970 -> 22893
+- upgrade package biblatex 22460 -> 22892
+- upgrade package biblatex-apa 22305 -> 22894
+
+texlive-bibtexextra 2011.22499
+
+- upgrade package beebe 21464 -> 22263
+- upgrade package biblatex 22074 -> 22460
+- upgrade package biblatex-apa 21913 -> 22305
+- upgrade package biblatex-ieee 22015 -> 22384
+- upgrade package biblatex-philosophy 20530 -> 22499
+- new package uni-wtal-ger
+

Copied: texlive-bibtexextra/repos/testing-any/PKGBUILD (from rev 144306, 
texlive-bibtexextra/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2011-12-04 17:23:27 UTC (rev 144307)
@@ -0,0 +1,46 @@
+# Contributor: Firmicus 
+# Maintainer: Rémy Oudompheng 
+
+pkgname=texlive-bibtexextra
+pkgver=2011.24688
+_revnr=${pkgver#2011.}
+pkgrel=1
+pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases"
+license=('GPL')
+arch=(any)
+depends=('texlive-core')
+groups=('texlive-most')
+url='http://tug.org/texlive/'
+source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
+options=(!strip)
+install=texlive.install
+md5sums=('0d9e2606d39e901b820aaa0dee70b8e3')
+
+build() {
+   cd "$srcdir"
+   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 -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
+   install -m755 -d $pkgdir/usr/bin
+   ln -s /usr/share/texmf-dist/scripts/bibexport/bibexport.sh 
$pkgdir/usr/bin/bibexport
+   ln -s /usr/share/texmf-dist/scripts/urlbst/urlbst $pkgdir/usr/bin/urlbst
+}

Copied: texlive-bibtexextra/repos/testing-any/texlive.install (from rev 144306, 
texlive-bibtexextra/trunk/texlive.install)
===
--- testing-any/texlive.install (rev 0)
+++ testing-any/texlive.install 2011-12-04 17:23:27 UTC (rev 144307)
@@ -0,0 +1,12 @@
+post_install() {
+   echo">>> texlive: updating the filename database..."
+   /usr/bin/mktexlsr
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

[arch-commits] Commit in texlive-bibtexextra/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:19:55
  Author: remy
Revision: 144306

upgpkg: texlive-bibtexextra 2011.24688-1

Texlive update.

Modified:
  texlive-bibtexextra/trunk/Changelog
  texlive-bibtexextra/trunk/PKGBUILD

---+
 Changelog |   24 
 PKGBUILD  |5 +++--
 2 files changed, 27 insertions(+), 2 deletions(-)

Modified: Changelog
===
--- Changelog   2011-12-04 17:19:06 UTC (rev 144305)
+++ Changelog   2011-12-04 17:19:55 UTC (rev 144306)
@@ -1,3 +1,27 @@
+texlive-bibtexextra 2011.24688
+
+- upgrade package amsrefs 23139 -> 23391
+- upgrade package beebe 23155 -> 24191
+- upgrade package biber 22893 -> 24683
+- upgrade package bibexport 21947 -> 24688
+- upgrade package biblatex 22892 -> 24596
+- upgrade package biblatex-apa 22894 -> 24597
+- upgrade package biblatex-chem 21801 -> 24286
+- upgrade package biblatex-chicago 21760 -> 24608
+- upgrade package biblatex-dw 21335 -> 24647
+- new package biblatex-fiwi
+- new package biblatex-juradiss
+- new package biblatex-luh-ipw
+- new package biblatex-musuos
+- upgrade package biblatex-nature 21702 -> 23952
+- new package biblatex-nejm
+- new package chscite
+- new package ksfh_nat
+- upgrade package notes2bib 21541 -> 23899
+- upgrade package urlbst 21650 -> 23262
+- new package vak
+- new package xcite
+
 texlive-bibtexextra 2011.23155
 
 - upgrade package amsrefs 22146 -> 23139

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 17:19:06 UTC (rev 144305)
+++ PKGBUILD2011-12-04 17:19:55 UTC (rev 144306)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-bibtexextra
-pkgver=2011.23155
+pkgver=2011.24688
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Additional BibTeX styles and bibliography databases"
@@ -14,7 +14,7 @@
 source=("ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip";)
 options=(!strip)
 install=texlive.install
-md5sums=('0b25a1325c67551b5635de59b09a8503')
+md5sums=('0d9e2606d39e901b820aaa0dee70b8e3')
 
 build() {
cd "$srcdir"
@@ -42,4 +42,5 @@
fi
install -m755 -d $pkgdir/usr/bin
ln -s /usr/share/texmf-dist/scripts/bibexport/bibexport.sh 
$pkgdir/usr/bin/bibexport
+   ln -s /usr/share/texmf-dist/scripts/urlbst/urlbst $pkgdir/usr/bin/urlbst
 }



[arch-commits] Commit in texlive-bin/repos (14 files)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:19:06
  Author: remy
Revision: 144305

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  texlive-bin/repos/testing-i686/
  texlive-bin/repos/testing-i686/09-texlive-fonts.conf
(from rev 144304, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/testing-i686/PKGBUILD
(from rev 144304, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-i686/archlinux-build.patch
(from rev 144304, texlive-bin/trunk/archlinux-build.patch)
  texlive-bin/repos/testing-i686/fix-fontforge-encoding.patch
(from rev 144304, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-i686/texlive.install
(from rev 144304, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-i686/texmf.cnf
(from rev 144304, texlive-bin/trunk/texmf.cnf)
  texlive-bin/repos/testing-x86_64/
  texlive-bin/repos/testing-x86_64/09-texlive-fonts.conf
(from rev 144304, texlive-bin/trunk/09-texlive-fonts.conf)
  texlive-bin/repos/testing-x86_64/PKGBUILD
(from rev 144304, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/testing-x86_64/archlinux-build.patch
(from rev 144304, texlive-bin/trunk/archlinux-build.patch)
  texlive-bin/repos/testing-x86_64/fix-fontforge-encoding.patch
(from rev 144304, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/testing-x86_64/texlive.install
(from rev 144304, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/testing-x86_64/texmf.cnf
(from rev 144304, texlive-bin/trunk/texmf.cnf)

-+
 testing-i686/09-texlive-fonts.conf  |9 
 testing-i686/PKGBUILD   |  348 
 testing-i686/archlinux-build.patch  |   36 +
 testing-i686/fix-fontforge-encoding.patch   |   12 
 testing-i686/texlive.install|   18 
 testing-i686/texmf.cnf  |  724 ++
 testing-x86_64/09-texlive-fonts.conf|9 
 testing-x86_64/PKGBUILD |  348 
 testing-x86_64/archlinux-build.patch|   36 +
 testing-x86_64/fix-fontforge-encoding.patch |   12 
 testing-x86_64/texlive.install  |   18 
 testing-x86_64/texmf.cnf|  724 ++
 12 files changed, 2294 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 144304:144305 to see the changes.


[arch-commits] Commit in texlive-bin/trunk (PKGBUILD archlinux-build.patch texmf.cnf)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 12:18:44
  Author: remy
Revision: 144304

upgpkg: texlive-bin 2011.2-1

Texlive update.

Modified:
  texlive-bin/trunk/PKGBUILD
  texlive-bin/trunk/archlinux-build.patch
  texlive-bin/trunk/texmf.cnf

---+
 PKGBUILD  |   26 +++-
 archlinux-build.patch |   58 +
 texmf.cnf |   74 +++-
 3 files changed, 105 insertions(+), 53 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 16:54:45 UTC (rev 144303)
+++ PKGBUILD2011-12-04 17:18:44 UTC (rev 144304)
@@ -2,9 +2,9 @@
 # Contributor: francois 
 
 pkgname=texlive-bin
-pkgver=2011.1
+pkgver=2011.2
 _luatex_ver=0.70.1
-pkgrel=5
+pkgrel=1
 pkgdesc="TeX Live binaries"
 license=('GPL')
 arch=('i686' 'x86_64')
@@ -20,8 +20,8 @@
 'fix-fontforge-encoding.patch'
 '09-texlive-fonts.conf'
 'archlinux-build.patch'
-
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-20110724.tar.xz'
-
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-texmf-20110724.tar.xz'
+
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-20111204.tar.xz'
+
'http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-texmf-20111204.tar.xz'
 # 
"http://foundry.supelec.fr/gf/download/frsrelease/392/1730/luatex-beta-${_luatex_ver}.tar.bz2";
 'http://ftp.archlinux.org/other/texlive/luatex-svn4356.tar.xz'
 )
@@ -39,12 +39,12 @@
etc/texmf/dvipdfm/config/config \
etc/texmf/xdvi/XDvi)
 
-md5sums=('ff30d6813babd2e41c414365eea9c147'
+md5sums=('220a4f4cc0d915bf8fcbcb553dcee1ae'
  'bfb9716aa00c86c08cd31e5b32edeb98'
  '393a4bf67adc7ca5df2b386759d1a637'
- '94ef5571a54262790ab64d6d044dd10c'
- '58e8ab64188eaf15897b7acf472dca9f'
- '9f7ae1aa24afd9e34289ac10a8f9e87b'
+ 'ec009f1a1e5aee701ccc1dd0910db1c4'
+ '94c4a11fe6c6a152b6ccf1a3a64fae07'
+ '7da3ef4faed74dd2234708e1e7b82ce2'
  'e7f0197559ef865d8c01683dab3b8526')
 
 build() {
@@ -248,13 +248,18 @@
PATH="$PATH:${pkgdir}/usr/bin" texlinks -f 
$pkgdir/usr/share/texmf/web2c/fmtutil.cnf $pkgdir/usr/bin/
#
# remove dangling symlinks
-   _bibtexextra_scripts="bibexport"
+   _bibtexextra_scripts="
+bibexport
+urlbst
+"
_core_scripts="
 afm2afm
 arlatex
 autoinst
 bundledoc
 cmap2enc
+ctanify
+ctanupload
 de-macro
 dviasm
 epstopdf
@@ -268,6 +273,8 @@
 latexmk
 latexrevise
 listings-ext.sh
+match_parens
+mf2pt1
 mkjobtexmf
 mkluatexfontdb
 mkt1font
@@ -299,6 +306,7 @@
 texdef
 texdiff
 texdirflatten
+texliveonfly
 texloganalyser
 thumbpdf
 vpl2ovp

Modified: archlinux-build.patch
===
--- archlinux-build.patch   2011-12-04 16:54:45 UTC (rev 144303)
+++ archlinux-build.patch   2011-12-04 17:18:44 UTC (rev 144304)
@@ -1,21 +1,19 @@
-diff -ur source.old/texk/am/script_links.am source/texk/am/script_links.am
 source.old/texk/am/script_links.am 2011-05-02 13:54:33.0 +0200
-+++ source/texk/am/script_links.am 2011-06-05 11:22:53.118216353 +0200
-@@ -51,8 +51,8 @@
- # We support both multiplatform and non-multiplatform builds.
+diff -aur source/texk/am/script_links.am source.new/texk/am/script_links.am
+--- source/texk/am/script_links.am 2011-09-29 14:17:38.0 +0200
 source.new/texk/am/script_links.am 2011-12-04 13:14:35.480368959 +0100
+@@ -52,7 +52,7 @@
+ 
+ # We support native builds, multiplatform or not, as well as distro builds.
  install-links:
-   case "$(bindir)" in \
--*/bin) $(MAKE) $(AM_MAKEFLAGS) REL=.. TYPE=$(TYPE) EXT=$(EXT) 
make-links;; \
--*/bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=../.. TYPE=$(TYPE) EXT=$(EXT) 
make-links;; \
-+*/bin) $(MAKE) $(AM_MAKEFLAGS) REL=$(datadir) TYPE=$(TYPE) EXT=$(EXT) 
make-links;; \
-+*/bin/*) $(MAKE) $(AM_MAKEFLAGS) REL=$(datadir) TYPE=$(TYPE) 
EXT=$(EXT) make-links;; \
- *) echo "strange directory '$(bindir)' for linked $(TYPE) scripts" 
>&2; \
-exit 1;; \
-   esac
-diff -ur source.old/texk/tetex/Makefile.am source/texk/tetex/Makefile.am
 source.old/texk/tetex/Makefile.am  2011-05-31 11:47:04.0 +0200
-+++ source/texk/tetex/Makefile.am  2011-06-05 10:28:40.287025375 +0200
-@@ -35,7 +35,7 @@
+-  @REL=`$(SHELL) $(srcdir)/../../build-aux/relpath '$(DESTDIR)' 
'$(bindir)' '$(prefix)'`; \
++  @REL=

[arch-commits] Commit in jack/repos (6 files)

2011-12-04 Thread Ray Rashif
Date: Sunday, December 4, 2011 @ 11:54:45
  Author: schiv
Revision: 144303

db-move: moved jack from [testing] to [extra] (x86_64)

Added:
  jack/repos/extra-x86_64/40-hpet-permissions.rules
(from rev 144301, jack/repos/testing-x86_64/40-hpet-permissions.rules)
  jack/repos/extra-x86_64/99-audio.conf
(from rev 144301, jack/repos/testing-x86_64/99-audio.conf)
  jack/repos/extra-x86_64/PKGBUILD
(from rev 144301, jack/repos/testing-x86_64/PKGBUILD)
Deleted:
  jack/repos/extra-x86_64/PKGBUILD
  jack/repos/extra-x86_64/jack.changelog
  jack/repos/testing-x86_64/

---+
 40-hpet-permissions.rules |2 
 99-audio.conf |2 
 PKGBUILD  |   97 +---
 jack.changelog|   21 -
 4 files changed, 61 insertions(+), 61 deletions(-)

Copied: jack/repos/extra-x86_64/40-hpet-permissions.rules (from rev 144301, 
jack/repos/testing-x86_64/40-hpet-permissions.rules)
===
--- extra-x86_64/40-hpet-permissions.rules  (rev 0)
+++ extra-x86_64/40-hpet-permissions.rules  2011-12-04 16:54:45 UTC (rev 
144303)
@@ -0,0 +1,2 @@
+KERNEL=="rtc0", GROUP="audio"
+KERNEL=="hpet", GROUP="audio"

Copied: jack/repos/extra-x86_64/99-audio.conf (from rev 144301, 
jack/repos/testing-x86_64/99-audio.conf)
===
--- extra-x86_64/99-audio.conf  (rev 0)
+++ extra-x86_64/99-audio.conf  2011-12-04 16:54:45 UTC (rev 144303)
@@ -0,0 +1,2 @@
+@audio - rtprio99
+@audio - memlock   unlimited

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2011-12-04 16:54:44 UTC (rev 144302)
+++ extra-x86_64/PKGBUILD   2011-12-04 16:54:45 UTC (rev 144303)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: tobias 
-# Contributor: Robert Emil Berge 
-
-pkgname=jack
-_longname=jack-audio-connection-kit
-pkgver=0.121.3
-pkgrel=1
-pkgdesc="A low-latency audio server"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL')
-depends=('libsamplerate' 'readline')
-makedepends=('doxygen' 'libffado' 'celt')
-optdepends=('libffado: FireWire support'
-'celt: NetJACK driver')
-url="http://jackaudio.org/";
-options=('!libtool')
-provides=("$_longname=$pkgver")
-conflicts=("$_longname")
-replaces=("$_longname")
-changelog=$pkgname.changelog
-source=("http://jackaudio.org/downloads/$_longname-$pkgver.tar.gz";)
-md5sums=('35f470f7422c37b33eb965033f7a42e8')
-
-build() {
-  cd "$srcdir/$_longname-$pkgver"
-
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd "$srcdir/$_longname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jack/repos/extra-x86_64/PKGBUILD (from rev 144301, 
jack/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2011-12-04 16:54:45 UTC (rev 144303)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: tobias 
+# Contributor: Robert Emil Berge 
+
+pkgname=jack
+_longname=jack-audio-connection-kit
+pkgver=0.121.3
+pkgrel=4
+pkgdesc="A low-latency audio server"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('libsamplerate' 'readline')
+makedepends=('doxygen' 'libffado' 'celt')
+optdepends=('libffado: FireWire support'
+'celt: NetJACK driver')
+url="http://jackaudio.org/";
+backup=(etc/security/limits.d/99-audio.conf)
+options=('!libtool')
+provides=("$_longname=$pkgver")
+conflicts=("$_longname")
+replaces=("$_longname")
+source=("http://jackaudio.org/downloads/$_longname-$pkgver.tar.gz";
+'99-audio.conf'
+'40-hpet-permissions.rules')
+md5sums=('35f470f7422c37b33eb965033f7a42e8'
+ 'ae65b7c9ebe0fff6c918ba9d97ae342d'
+ '471aad533ff56c5d3cbbf65ce32cadef')
+
+build() {
+  cd "$srcdir/$_longname-$pkgver"
+
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd "$srcdir/$_longname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # configure realtime access/scheduling
+  # see https://bugs.archlinux.org/task/26343
+  install -Dm644 "$srcdir/99-audio.conf" \
+"$pkgdir/etc/security/limits.d/99-audio.conf"
+
+  install -Dm644 "$srcdir/40-hpet-permissions.rules" \
+"$pkgdir/lib/udev/rules.d/40-hpet-permissions.rules"
+
+  # install a missing header forgotten by upstream
+  # see https://bugs.archlinux.org/task/26865
+  install -Dm644 "$srcdir/$_longname-$pkgver/jack/jslist.h" \
+"$pkgdir/usr/include/jack/jslist.h"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/jack.changelog
===
--- extra-x86_64/jack.changelog 2011-12-04 16:54:44 UTC (rev 1443

[arch-commits] Commit in jack/repos (6 files)

2011-12-04 Thread Ray Rashif
Date: Sunday, December 4, 2011 @ 11:54:44
  Author: schiv
Revision: 144302

db-move: moved jack from [testing] to [extra] (i686)

Added:
  jack/repos/extra-i686/40-hpet-permissions.rules
(from rev 144301, jack/repos/testing-i686/40-hpet-permissions.rules)
  jack/repos/extra-i686/99-audio.conf
(from rev 144301, jack/repos/testing-i686/99-audio.conf)
  jack/repos/extra-i686/PKGBUILD
(from rev 144301, jack/repos/testing-i686/PKGBUILD)
Deleted:
  jack/repos/extra-i686/PKGBUILD
  jack/repos/extra-i686/jack.changelog
  jack/repos/testing-i686/

---+
 40-hpet-permissions.rules |2 
 99-audio.conf |2 
 PKGBUILD  |   97 +---
 jack.changelog|   21 -
 4 files changed, 61 insertions(+), 61 deletions(-)

Copied: jack/repos/extra-i686/40-hpet-permissions.rules (from rev 144301, 
jack/repos/testing-i686/40-hpet-permissions.rules)
===
--- extra-i686/40-hpet-permissions.rules(rev 0)
+++ extra-i686/40-hpet-permissions.rules2011-12-04 16:54:44 UTC (rev 
144302)
@@ -0,0 +1,2 @@
+KERNEL=="rtc0", GROUP="audio"
+KERNEL=="hpet", GROUP="audio"

Copied: jack/repos/extra-i686/99-audio.conf (from rev 144301, 
jack/repos/testing-i686/99-audio.conf)
===
--- extra-i686/99-audio.conf(rev 0)
+++ extra-i686/99-audio.conf2011-12-04 16:54:44 UTC (rev 144302)
@@ -0,0 +1,2 @@
+@audio - rtprio99
+@audio - memlock   unlimited

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2011-12-04 16:49:15 UTC (rev 144301)
+++ extra-i686/PKGBUILD 2011-12-04 16:54:44 UTC (rev 144302)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: tobias 
-# Contributor: Robert Emil Berge 
-
-pkgname=jack
-_longname=jack-audio-connection-kit
-pkgver=0.121.3
-pkgrel=1
-pkgdesc="A low-latency audio server"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL')
-depends=('libsamplerate' 'readline')
-makedepends=('doxygen' 'libffado' 'celt')
-optdepends=('libffado: FireWire support'
-'celt: NetJACK driver')
-url="http://jackaudio.org/";
-options=('!libtool')
-provides=("$_longname=$pkgver")
-conflicts=("$_longname")
-replaces=("$_longname")
-changelog=$pkgname.changelog
-source=("http://jackaudio.org/downloads/$_longname-$pkgver.tar.gz";)
-md5sums=('35f470f7422c37b33eb965033f7a42e8')
-
-build() {
-  cd "$srcdir/$_longname-$pkgver"
-
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd "$srcdir/$_longname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jack/repos/extra-i686/PKGBUILD (from rev 144301, 
jack/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2011-12-04 16:54:44 UTC (rev 144302)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: tobias 
+# Contributor: Robert Emil Berge 
+
+pkgname=jack
+_longname=jack-audio-connection-kit
+pkgver=0.121.3
+pkgrel=4
+pkgdesc="A low-latency audio server"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL')
+depends=('libsamplerate' 'readline')
+makedepends=('doxygen' 'libffado' 'celt')
+optdepends=('libffado: FireWire support'
+'celt: NetJACK driver')
+url="http://jackaudio.org/";
+backup=(etc/security/limits.d/99-audio.conf)
+options=('!libtool')
+provides=("$_longname=$pkgver")
+conflicts=("$_longname")
+replaces=("$_longname")
+source=("http://jackaudio.org/downloads/$_longname-$pkgver.tar.gz";
+'99-audio.conf'
+'40-hpet-permissions.rules')
+md5sums=('35f470f7422c37b33eb965033f7a42e8'
+ 'ae65b7c9ebe0fff6c918ba9d97ae342d'
+ '471aad533ff56c5d3cbbf65ce32cadef')
+
+build() {
+  cd "$srcdir/$_longname-$pkgver"
+
+  ./configure --prefix=/usr \
+  --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd "$srcdir/$_longname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # configure realtime access/scheduling
+  # see https://bugs.archlinux.org/task/26343
+  install -Dm644 "$srcdir/99-audio.conf" \
+"$pkgdir/etc/security/limits.d/99-audio.conf"
+
+  install -Dm644 "$srcdir/40-hpet-permissions.rules" \
+"$pkgdir/lib/udev/rules.d/40-hpet-permissions.rules"
+
+  # install a missing header forgotten by upstream
+  # see https://bugs.archlinux.org/task/26865
+  install -Dm644 "$srcdir/$_longname-$pkgver/jack/jslist.h" \
+"$pkgdir/usr/include/jack/jslist.h"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-i686/jack.changelog
===
--- extra-i686/jack.changelog   2011-12-04 16:49:15 UTC (rev 144301)
+++ extra-i686/jack.changelog   2011-12-04 16:54:44 UTC (rev 144

[arch-commits] Commit in texlive-music/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 11:49:15
  Author: remy
Revision: 144301

Texlive update.

- upgrade package musixtex 22568 -> 24518
- new package musixtex-fonts

Modified:
  texlive-music/trunk/PKGBUILD
Deleted:
  texlive-music/trunk/Changelog

---+
 Changelog |   12 
 PKGBUILD  |5 ++---
 2 files changed, 2 insertions(+), 15 deletions(-)

Deleted: Changelog
===
--- Changelog   2011-12-04 16:48:11 UTC (rev 144300)
+++ Changelog   2011-12-04 16:49:15 UTC (rev 144301)
@@ -1,12 +0,0 @@
-texlive-music 2011.22568-1
-
-- upgrade package musixtex 21982 -> 22568
-- deleted package musixflx
-
-texlive-music 2010.21982-1
-
-- upgrade package figbas 15878 -> 21037
-- upgrade package musixflx 13822 -> 21348
-- new package musixguit
-- upgrade package musixtex 20424 -> 21982
-

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 16:48:11 UTC (rev 144300)
+++ PKGBUILD2011-12-04 16:49:15 UTC (rev 144301)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-music
-pkgver=2011.22568
+pkgver=2011.24518
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Music typesetting packages"
@@ -15,11 +15,10 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('8e629217b7a9e10cd57a252ba29958e0'
+md5sums=('6a7fa8135f2c55e063c1a4104e51e097'
  '6af96d016e18492867d6f4ba2eff0a31')
 
 build() {
-   bsdtar xf "$pkgname-$pkgver-src.zip"
for p in *.tar.xz; do
   bsdtar -xf $p
done



[arch-commits] Commit in texlive-humanities/trunk (PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 11:48:11
  Author: remy
Revision: 144300

Texlive update.

- upgrade package ledmac 15878 -> 24631
- upgrade package poemscol 15878 -> 23762

Modified:
  texlive-humanities/trunk/PKGBUILD

--+
 PKGBUILD |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 16:47:15 UTC (rev 144299)
+++ PKGBUILD2011-12-04 16:48:11 UTC (rev 144300)
@@ -1,7 +1,8 @@
-# Maintainer: Firmicus 
+# Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-humanities
-pkgver=2010.22054
+pkgver=2011.24631
+_revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live -  LaTeX packages for law, linguistics, social sciences, and 
humanities"
 license=('GPL')
@@ -13,18 +14,20 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('3e2d99a656336fc662d217d7f10ad2fe')
+md5sums=('219482f5298fc186a88940d61c988153')
 
 build() {
+   cd "$srcdir"
for p in *.tar.xz; do
   bsdtar -xf $p
done
rm -rf {tlpkg,doc,source} || true
 }
+
 package() {
+   cd "$srcdir"
install -m755 -d $pkgdir/var/lib/texmf/arch/installedpkgs
sed -i '/^#/d' CONTENTS
-   _revnr=`echo $pkgver | sed 's/2010\.//'`
install -m644 CONTENTS 
$pkgdir/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
install -m755 -d $pkgdir/usr/share
wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; 
done) || true



[arch-commits] Commit in texlive-langgreek/trunk (PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 11:47:15
  Author: remy
Revision: 144299

TeXLive update.

- upgrade package teubner 20309 -> 23854
- upgrade package xgreek 20945 -> 24147

Modified:
  texlive-langgreek/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 16:46:31 UTC (rev 144298)
+++ PKGBUILD2011-12-04 16:47:15 UTC (rev 144299)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-langgreek
-pkgver=2011.22613
+pkgver=2011.24147
 _revnr=${pkgver#2011.}
 pkgrel=1
 pkgdesc="TeX Live - Fonts and support for typesetting Greek"
@@ -15,7 +15,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('37f4730fb761fd36e1fe7b66d1d949d6'
+md5sums=('e4abdabdd7e5ad966610d856da8c6a70'
  'a1c515e7bbe93c905e20db580aa5a234')
 
 build() {



[arch-commits] Commit in (texlive-latex3)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 11:46:31
  Author: remy
Revision: 144298

Delete dead texlive-latex3 package.

Deleted:
  texlive-latex3/



[arch-commits] Commit in texlive-plainextra/trunk (Changelog PKGBUILD)

2011-12-04 Thread Rémy Oudompheng
Date: Sunday, December 4, 2011 @ 11:44:30
  Author: remy
Revision: 144297

TeXLive update.

- new package getoptk

Modified:
  texlive-plainextra/trunk/PKGBUILD
Deleted:
  texlive-plainextra/trunk/Changelog

---+
 Changelog |4 
 PKGBUILD  |4 ++--
 2 files changed, 2 insertions(+), 6 deletions(-)

Deleted: Changelog
===
--- Changelog   2011-12-04 10:42:58 UTC (rev 144296)
+++ Changelog   2011-12-04 16:44:30 UTC (rev 144297)
@@ -1,4 +0,0 @@
-texlive-plainextra 2010.21462-1
-
-- upgrade package figflow 15878 -> 21462
-

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 10:42:58 UTC (rev 144296)
+++ PKGBUILD2011-12-04 16:44:30 UTC (rev 144297)
@@ -2,7 +2,7 @@
 # Maintainer: Rémy Oudompheng 
 
 pkgname=texlive-plainextra
-pkgver=2010.21462
+pkgver=2011.23567
 pkgrel=1
 pkgdesc="TeX Live - A collection of add-on packages and macros for plain TeX"
 license=('GPL')
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('48e28cd8fd66f78278d262649c95647b')
+md5sums=('fc9af44b3df1370396a7163f77fb60d8')
 
 build() {
for p in *.tar.xz; do



[arch-commits] Commit in graphviz/repos (12 files)

2011-12-04 Thread Gaetan Bisson
Date: Sunday, December 4, 2011 @ 05:42:58
  Author: bisson
Revision: 144296

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  graphviz/repos/extra-i686/LICENSE
(from rev 144295, graphviz/trunk/LICENSE)
  graphviz/repos/extra-i686/PKGBUILD
(from rev 144295, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-i686/install
(from rev 144295, graphviz/trunk/install)
  graphviz/repos/extra-x86_64/LICENSE
(from rev 144295, graphviz/trunk/LICENSE)
  graphviz/repos/extra-x86_64/PKGBUILD
(from rev 144295, graphviz/trunk/PKGBUILD)
  graphviz/repos/extra-x86_64/install
(from rev 144295, graphviz/trunk/install)
Deleted:
  graphviz/repos/extra-i686/LICENSE
  graphviz/repos/extra-i686/PKGBUILD
  graphviz/repos/extra-i686/install
  graphviz/repos/extra-x86_64/LICENSE
  graphviz/repos/extra-x86_64/PKGBUILD
  graphviz/repos/extra-x86_64/install

---+
 extra-i686/LICENSE|  174 
 extra-i686/PKGBUILD   |  103 ++--
 extra-i686/install|   24 +++---
 extra-x86_64/LICENSE  |  174 
 extra-x86_64/PKGBUILD |  103 ++--
 extra-x86_64/install  |   24 +++---
 6 files changed, 302 insertions(+), 300 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 144295:144296 to see the changes.


[arch-commits] Commit in graphviz/trunk (PKGBUILD)

2011-12-04 Thread Gaetan Bisson
Date: Sunday, December 4, 2011 @ 05:42:14
  Author: bisson
Revision: 144295

fix FS#27442

Modified:
  graphviz/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-12-04 09:51:04 UTC (rev 144294)
+++ PKGBUILD2011-12-04 10:42:14 UTC (rev 144295)
@@ -1,16 +1,17 @@
 # $Id$
+
 # Maintainer: Gaetan Bisson 
 # Contributor: kevin 
 # Contributor: John Proctor 
 
 pkgname=graphviz
 pkgver=2.28.0
-pkgrel=5
+pkgrel=6
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('custom:EPL')
 arch=('i686' 'x86_64')
-depends=('gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
+depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
 makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'php' 'python2' 'r' 
'ruby' 'tk' 'qt')
 optdepends=('mono: sharp bindings'
 'guile: guile bindings'



[arch-commits] Commit in kde-wallpapers/repos (staging-any staging-any/PKGBUILD)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:51:04
  Author: andrea
Revision: 144294

KDE 4.7.4

Added:
  kde-wallpapers/repos/staging-any/
Modified:
  kde-wallpapers/repos/staging-any/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: staging-any/PKGBUILD
===
--- extra-any/PKGBUILD  2011-12-04 09:50:15 UTC (rev 144293)
+++ staging-any/PKGBUILD2011-12-04 09:51:04 UTC (rev 144294)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kde-wallpapers
-pkgver=4.7.3
+pkgver=4.7.4
 pkgrel=1
 pkgdesc="A set of wallpapers for KDE"
 arch=('any')
@@ -11,7 +11,7 @@
 groups=('kde' 'kde-meta')
 makedepends=('kdelibs' 'cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('d1b5b9a65a731469a3fbeaae9169d50196fe4158')
+sha1sums=('9380bc39db369457e9cea9166c374f3390cc52cc')
 
 package() {
   cd "${srcdir}"



[arch-commits] Commit in oxygen-icons/repos (staging-any staging-any/PKGBUILD)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:50:15
  Author: andrea
Revision: 144293

KDE 4.7.4

Added:
  oxygen-icons/repos/staging-any/
Modified:
  oxygen-icons/repos/staging-any/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: staging-any/PKGBUILD
===
--- extra-any/PKGBUILD  2011-12-04 09:44:31 UTC (rev 144292)
+++ staging-any/PKGBUILD2011-12-04 09:50:15 UTC (rev 144293)
@@ -5,7 +5,7 @@
 pkgbase=oxygen-icons
 pkgname=('oxygen-icons'
  'oxygen-icons-svg')
-pkgver=4.7.3
+pkgver=4.7.4
 pkgrel=1
 pkgdesc="The Oxygen Icon Theme"
 arch=('any')
@@ -13,7 +13,7 @@
 license=('LGPL')
 makedepends=('pkgconfig' 'cmake' 'automoc4')
 
source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2";)
-sha1sums=('eb26498ba287098127fc259816335f21cffe3784')
+sha1sums=('b8ebe40c26be41558ac26151894f975ac278b791')
 
 build() {
cd $srcdir



[arch-commits] Commit in kdebindings-korundum/repos (2 files)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:44:31
  Author: andrea
Revision: 144292

KDE 4.7.4

Modified:
  kdebindings-korundum/repos/staging-i686/PKGBUILD
  kdebindings-korundum/repos/staging-x86_64/PKGBUILD

-+
 staging-i686/PKGBUILD   |4 ++--
 staging-x86_64/PKGBUILD |4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2011-12-04 09:43:23 UTC (rev 144291)
+++ staging-i686/PKGBUILD   2011-12-04 09:44:31 UTC (rev 144292)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdebindings-korundum
-pkgver=4.7.80
+pkgver=4.7.4
 pkgrel=1
 pkgdesc="KDE bindings for ruby"
 url="http://kde.org/";
@@ -14,7 +14,7 @@
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
 conflicts=('kdebindings-ruby')
 
source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.bz2";)
-sha1sums=('8336a5504f90111772ff4004eff971e779f92327')
+sha1sums=('e220dc672461aa1369e58de325f980139fcd52f6')
 
 build() {
   cd "${srcdir}"

Modified: staging-x86_64/PKGBUILD
===
--- staging-x86_64/PKGBUILD 2011-12-04 09:43:23 UTC (rev 144291)
+++ staging-x86_64/PKGBUILD 2011-12-04 09:44:31 UTC (rev 144292)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=kdebindings-korundum
-pkgver=4.7.80
+pkgver=4.7.4
 pkgrel=1
 pkgdesc="KDE bindings for ruby"
 url="http://kde.org/";
@@ -14,7 +14,7 @@
  'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
 conflicts=('kdebindings-ruby')
 
source=("http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.bz2";)
-sha1sums=('8336a5504f90111772ff4004eff971e779f92327')
+sha1sums=('e220dc672461aa1369e58de325f980139fcd52f6')
 
 build() {
   cd "${srcdir}"



[arch-commits] Commit in kdebindings-korundum/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:43:23
  Author: andrea
Revision: 144291

KDE 4.7.4

Added:
  kdebindings-korundum/repos/staging-x86_64/



[arch-commits] Commit in kdebase/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:41:09
  Author: andrea
Revision: 144289

KDE 4.7.4

Added:
  kdebase/repos/staging-x86_64/



[arch-commits] Commit in libkdeedu/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:41:11
  Author: andrea
Revision: 144290

KDE 4.7.4

Added:
  libkdeedu/repos/staging-x86_64/



[arch-commits] Commit in kdebase-workspace/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:41:06
  Author: andrea
Revision: 144288

KDE 4.7.4

Added:
  kdebase-workspace/repos/staging-x86_64/



[arch-commits] Commit in kdebindings-qtruby/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:41:03
  Author: andrea
Revision: 144287

KDE 4.7.4

Added:
  kdebindings-qtruby/repos/staging-x86_64/



[arch-commits] Commit in kdebindings-qyoto/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:41:00
  Author: andrea
Revision: 144286

KDE 4.7.4

Added:
  kdebindings-qyoto/repos/staging-x86_64/



[arch-commits] Commit in kdebindings-python/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:58
  Author: andrea
Revision: 144285

KDE 4.7.4

Added:
  kdebindings-python/repos/staging-x86_64/



[arch-commits] Commit in kdebindings-perlqt/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:54
  Author: andrea
Revision: 144284

KDE 4.7.4

Added:
  kdebindings-perlqt/repos/staging-x86_64/



[arch-commits] Commit in kdebindings-smokekde/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:52
  Author: andrea
Revision: 144283

KDE 4.7.4

Added:
  kdebindings-smokekde/repos/staging-x86_64/



[arch-commits] Commit in kdesdk-kate/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:49
  Author: andrea
Revision: 144282

KDE 4.7.4

Added:
  kdesdk-kate/repos/staging-x86_64/



[arch-commits] Commit in kdewebdev/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:43
  Author: andrea
Revision: 144281

KDE 4.7.4

Added:
  kdewebdev/repos/staging-x86_64/



[arch-commits] Commit in kdeutils/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:41
  Author: andrea
Revision: 144280

KDE 4.7.4

Added:
  kdeutils/repos/staging-x86_64/



[arch-commits] Commit in kdetoys/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:38
  Author: andrea
Revision: 144279

KDE 4.7.4

Added:
  kdetoys/repos/staging-x86_64/



[arch-commits] Commit in kdesdk/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:35
  Author: andrea
Revision: 144278

KDE 4.7.4

Added:
  kdesdk/repos/staging-x86_64/



[arch-commits] Commit in kdeplasma-addons/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:32
  Author: andrea
Revision: 144277

KDE 4.7.4

Added:
  kdeplasma-addons/repos/staging-x86_64/



[arch-commits] Commit in kdepim/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:30
  Author: andrea
Revision: 144276

KDE 4.7.4

Added:
  kdepim/repos/staging-x86_64/



[arch-commits] Commit in kdenetwork/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:27
  Author: andrea
Revision: 144275

KDE 4.7.4

Added:
  kdenetwork/repos/staging-x86_64/



[arch-commits] Commit in kdemultimedia/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:24
  Author: andrea
Revision: 144274

KDE 4.7.4

Added:
  kdemultimedia/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-thumbnailers/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:21
  Author: andrea
Revision: 144273

KDE 4.7.4

Added:
  kdegraphics-thumbnailers/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-svgpart/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:19
  Author: andrea
Revision: 144272

KDE 4.7.4

Added:
  kdegraphics-svgpart/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-strigi-analyzer/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:16
  Author: andrea
Revision: 144271

KDE 4.7.4

Added:
  kdegraphics-strigi-analyzer/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-mobipocket/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:13
  Author: andrea
Revision: 144270

KDE 4.7.4

Added:
  kdegraphics-mobipocket/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-ksnapshot/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:11
  Author: andrea
Revision: 144269

KDE 4.7.4

Added:
  kdegraphics-ksnapshot/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-ksaneplugin/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:08
  Author: andrea
Revision: 144268

KDE 4.7.4

Added:
  kdegraphics-ksaneplugin/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-kruler/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:05
  Author: andrea
Revision: 144267

KDE 4.7.4

Added:
  kdegraphics-kruler/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-kolourpaint/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:40:02
  Author: andrea
Revision: 144266

KDE 4.7.4

Added:
  kdegraphics-kolourpaint/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-kgamma/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:39:59
  Author: andrea
Revision: 144265

KDE 4.7.4

Added:
  kdegraphics-kgamma/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-kcolorchooser/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:39:56
  Author: andrea
Revision: 144264

KDE 4.7.4

Added:
  kdegraphics-kcolorchooser/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-kamera/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:39:53
  Author: andrea
Revision: 144263

KDE 4.7.4

Added:
  kdegraphics-kamera/repos/staging-x86_64/



[arch-commits] Commit in kdegraphics-gwenview/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:39:51
  Author: andrea
Revision: 144262

KDE 4.7.4

Added:
  kdegraphics-gwenview/repos/staging-x86_64/



[arch-commits] Commit in kdegames/repos (staging-x86_64)

2011-12-04 Thread Andrea Scarpino
Date: Sunday, December 4, 2011 @ 04:39:48
  Author: andrea
Revision: 144261

KDE 4.7.4

Added:
  kdegames/repos/staging-x86_64/



  1   2   3   >