[arch-commits] Commit in xscreensaver/repos (extra-i686)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 02:00:26
  Author: eric
Revision: 91277

archrelease: remove extra-i686

Deleted:
  xscreensaver/repos/extra-i686/



[arch-commits] Commit in xscreensaver/repos (extra-i686)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 02:00:37
  Author: eric
Revision: 91278

archrelease: copy trunk to extra-i686

Added:
  xscreensaver/repos/extra-i686/



[arch-commits] Commit in xscreensaver/repos (extra-x86_64)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 02:01:37
  Author: eric
Revision: 91279

archrelease: remove extra-x86_64

Deleted:
  xscreensaver/repos/extra-x86_64/



[arch-commits] Commit in xscreensaver/repos (extra-x86_64)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 02:01:47
  Author: eric
Revision: 91280

archrelease: copy trunk to extra-x86_64

Added:
  xscreensaver/repos/extra-x86_64/



[arch-commits] Commit in mythplugins/trunk (PKGBUILD qt-4.7-buildfixes.diff)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 02:04:21
  Author: remy
Revision: 91281

upgpkg: mythplugins 25574-2
Rebuild for python2

Added:
  mythplugins/trunk/qt-4.7-buildfixes.diff
Modified:
  mythplugins/trunk/PKGBUILD

+
 PKGBUILD   |   37 -
 qt-4.7-buildfixes.diff |   26 ++
 2 files changed, 46 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 06:01:47 UTC (rev 91280)
+++ PKGBUILD2010-09-26 06:04:21 UTC (rev 91281)
@@ -15,7 +15,7 @@
  'mythplugins-mythweb'
  'mythplugins-mythzoneminder')
 pkgver=25574
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://www.mythtv.org;
 license=('GPL')
@@ -23,17 +23,20 @@
  'python-imaging' 'libcdaudio' 'taglib' 'perl-xml-simple'
  'libvisual' 'perl-xml-xpath' 'perl-image-size' 
'perl-class-inspector' 'perl-datetime-format-iso8601')
 source=(ftp://ftp.archlinux.org/other/mythtv/${pkgbase}-${pkgver}.tar.xz
-mtd)
+mtd qt-4.7-buildfixes.diff)
 md5sums=('933f0c8ac21652af1d83d502c0ca6516'
- '476c12ba074794ad7f4ae092bdf949d6')
+ '476c12ba074794ad7f4ae092bdf949d6'
+'65fad68e51c52bf5176a2ade35e71bc3')
 
 build() {
   cd ${srcdir}/${pkgbase}
+  patch -Np4 -i ${srcdir}/qt-4.7-buildfixes.diff
+  find . -name '*.py' -type f | xargs sed -i 
's...@^#!.*python$@#!/usr/bin/python2@' 
   ./configure --prefix=/usr \
   --enable-all
 
-  qmake mythplugins.pro || return 1
-  make || return 1
+  qmake mythplugins.pro
+  make
 }
 
 package_mythplugins-mytharchive() {
@@ -41,7 +44,7 @@
   depends=(mythtv=${pkgver} 'libxmu' 'pil' 'dvdauthor')
   replaces=('mytharchive')
   cd ${srcdir}/${pkgbase}/mytharchive
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythbrowser() {
@@ -49,7 +52,7 @@
   depends=(mythtv=${pkgver})
   replaces=('mythbrowser')
   cd ${srcdir}/${pkgbase}/mythbrowser
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythgallery() {
@@ -57,7 +60,7 @@
   depends=(mythtv=${pkgver} 'libexif')
   replaces=('mythgallery')
   cd ${srcdir}/${pkgbase}/mythgallery
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythgame() {
@@ -65,7 +68,7 @@
   depends=(mythtv=${pkgver} 'zlib')
   replaces=('mythgame')
   cd ${srcdir}/${pkgbase}/mythgame
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythmovies() {
@@ -73,7 +76,7 @@
   depends=(mythtv=${pkgver})
   replaces=('mythmovies')
   cd ${srcdir}/${pkgbase}/mythmovies
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythmusic() {
@@ -81,14 +84,14 @@
   depends=(mythtv=${pkgver} 'flac' 'libcdaudio' 'cdparanoia' 'taglib' 
'libvisual')
   replaces=('mythmusic')
   cd ${srcdir}/${pkgbase}/mythmusic
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythnetvision() {
   pkgdesc=MythNetvision plugin for MythTV
   depends=(mythtv=${pkgver})
   cd ${srcdir}/${pkgbase}/mythnetvision
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythnews() {
@@ -96,7 +99,7 @@
   depends=(mythtv=${pkgver})
   replaces=('mythnews')
   cd ${srcdir}/${pkgbase}/mythnews
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythvideo() {
@@ -104,8 +107,8 @@
   depends=(mythtv=${pkgver} 'mplayer' 'perl-xml-simple')
   replaces=('mythvideo')
   cd ${srcdir}/${pkgbase}/mythvideo
-  make INSTALL_ROOT=${pkgdir} install || return 1
-  install -D -m755 ${srcdir}/mtd ${pkgdir}/etc/rc.d/mtd || return 1
+  make INSTALL_ROOT=${pkgdir} install
+  install -D -m755 ${srcdir}/mtd ${pkgdir}/etc/rc.d/mtd
 }
 
 package_mythplugins-mythweather() {
@@ -113,7 +116,7 @@
   depends=(mythtv=${pkgver} 'perl-xml-xpath' 'perl-image-size' 
'perl-class-inspector' 'perl-datetime-format-iso8601')
   replaces=('mythweather')
   cd ${srcdir}/${pkgbase}/mythweather
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }
 
 package_mythplugins-mythweb() {
@@ -134,5 +137,5 @@
   replaces=('mythzoneminder')
   install=mythplugins-mythzoneminder.install
   cd ${srcdir}/${pkgbase}/mythzoneminder
-  make INSTALL_ROOT=${pkgdir} install || return 1
+  make INSTALL_ROOT=${pkgdir} install
 }

Added: qt-4.7-buildfixes.diff
===
--- qt-4.7-buildfixes.diff  (rev 0)
+++ qt-4.7-buildfixes.diff  2010-09-26 06:04:21 UTC (rev 91281)
@@ -0,0 +1,26 @@
+Index: 

[arch-commits] Commit in mythplugins/repos (staging-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 02:13:03
  Author: remy
Revision: 91282

archrelease: copy trunk to staging-i686

Added:
  mythplugins/repos/staging-i686/



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 02:20:10
  Author: remy
Revision: 91283

archrelease: copy trunk to staging-x86_64

Added:
  mythplugins/repos/staging-x86_64/



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 03:27:56
  Author: remy
Revision: 91284

upgpkg: texmacs 1.0.7.3-3
Rebuild (change python to python2)

Modified:
  texmacs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 06:20:10 UTC (rev 91283)
+++ PKGBUILD2010-09-26 07:27:56 UTC (rev 91284)
@@ -4,12 +4,12 @@
 
 pkgname=texmacs
 pkgver=1.0.7.3
-pkgrel=2
+pkgrel=3
 pkgdesc=GNU TeXmacs is a free scientific text editor, which was both inspired 
by TeX and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, 
GTybalt, Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one.
 arch=('i686' 'x86_64')
 url=http://www.texmacs.org/;
 license=('GPL')
-depends=('perl' 'guile' 'texlive-core' 'python' 'libxext' 'freetype2')
+depends=('perl' 'guile' 'texlive-core' 'python2' 'libxext' 'freetype2')
 # do not remove texlive-core dependency, as it is needed!
 optdepends=('transfig: convert images using fig2ps')
 source=(ftp://ftp.texmacs.org/pub/TeXmacs/targz/TeXmacs-${pkgver}-src.tar.gz)
@@ -17,13 +17,20 @@
 
 build() {
   cd ${srcdir}/TeXmacs-${pkgver}-src
+  sed -i 's/env python/env python2/' \
+plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage}
+  sed -i 's/python/python2/' plugins/python/progs/init-python.scm
   sed -i '/^LDPATH/d' src/makefile.in
   ./configure --prefix=/usr \
   --mandir=/usr/share/man \
   --libexecdir=/usr/lib
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  make
+}
 
+package() {
+  cd ${srcdir}/TeXmacs-${pkgver}-src
+  make DESTDIR=${pkgdir} install
+
  # fix fig2ps script
  sed -i 's|${prefix}|/usr|' ${pkgdir}/usr/bin/fig2ps
 }



[arch-commits] Commit in texmacs/repos (staging-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 03:28:54
  Author: remy
Revision: 91285

archrelease: copy trunk to staging-i686

Added:
  texmacs/repos/staging-i686/



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 03:29:54
  Author: remy
Revision: 91286

archrelease: copy trunk to staging-x86_64

Added:
  texmacs/repos/staging-x86_64/



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

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 04:13:23
  Author: tpowa
Revision: 91287

upgpkg: hdparm 9.32-1
bump to latest version

Modified:
  hdparm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 07:29:54 UTC (rev 91286)
+++ PKGBUILD2010-09-26 08:13:23 UTC (rev 91287)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal p...@archlinux.org
 
 pkgname=hdparm
-pkgver=9.30
+pkgver=9.32
 pkgrel=1
 pkgdesc=A shell utility for manipulating Linux IDE drive/driver parameters
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 url=http://sourceforge.net/projects/hdparm/;
 optdepends=('bash: for wiper.sh script')
 options=('emptydirs')
-md5sums=('b4cc528afb1db7c35e3701d2d96012b2'
+md5sums=('9819ba0c537003815bede9aaaee7c6d0'
  '5b99485ee6881de8e009597bffba7eea')
 
 build() {



[arch-commits] Commit in hdparm/repos (testing-i686)

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 04:13:32
  Author: tpowa
Revision: 91288

archrelease: remove testing-i686

Deleted:
  hdparm/repos/testing-i686/



[arch-commits] Commit in hdparm/repos (testing-i686)

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 04:13:51
  Author: tpowa
Revision: 91289

archrelease: copy trunk to testing-i686

Added:
  hdparm/repos/testing-i686/



[arch-commits] Commit in hdparm/repos (testing-x86_64)

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 04:14:00
  Author: tpowa
Revision: 91290

archrelease: remove testing-x86_64

Deleted:
  hdparm/repos/testing-x86_64/



[arch-commits] Commit in hdparm/repos (testing-x86_64)

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 04:14:18
  Author: tpowa
Revision: 91291

archrelease: copy trunk to testing-x86_64

Added:
  hdparm/repos/testing-x86_64/



[arch-commits] Commit in apollon/repos (extra-i686)

2010-09-26 Thread Andrea Scarpino
Date: Sunday, September 26, 2010 @ 06:33:57
  Author: andrea
Revision: 91292

db-remove: apollon removed by andrea

Deleted:
  apollon/repos/extra-i686/



[arch-commits] Commit in apollon/repos (extra-x86_64)

2010-09-26 Thread Andrea Scarpino
Date: Sunday, September 26, 2010 @ 06:34:09
  Author: andrea
Revision: 91293

db-remove: apollon removed by andrea

Deleted:
  apollon/repos/extra-x86_64/



[arch-commits] Commit in qt/trunk (2 files)

2010-09-26 Thread Andrea Scarpino
Date: Sunday, September 26, 2010 @ 07:20:42
  Author: andrea
Revision: 91295

fix qt regression: QTreeView scrolls to top if current item is removed

Added:
  qt/trunk/fix-scroll-when-last-item-is-removed.patch
Modified:
  qt/trunk/PKGBUILD

+
 PKGBUILD   |   11 ++-
 fix-scroll-when-last-item-is-removed.patch |   77 +++
 2 files changed, 85 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 10:34:58 UTC (rev 91294)
+++ PKGBUILD2010-09-26 11:20:42 UTC (rev 91295)
@@ -4,7 +4,7 @@
 
 pkgname=qt
 pkgver=4.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A cross-platform application and UI framework'
 arch=('i686' 'x86_64')
 url='http://qt.nokia.com/'
@@ -17,12 +17,14 @@
 options=('!libtool')
 _pkgfqn=qt-everywhere-opensource-src-${pkgver}
 source=(ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz;
-'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qtconfig.desktop')
+'assistant.desktop' 'designer.desktop' 'linguist.desktop' 
'qtconfig.desktop'
+   'fix-scroll-when-last-item-is-removed.patch')
 md5sums=('3a2f25b9b115037277f4fb759194a7a5'
  'a445c6917086d80f1cfc1e40cb6b0132'
  'd457f0a0ad68a3861c3cadefe3b42ded'
  '668331d9798a0e2b94381efb7be4c513'
- 'c29f2993d6a0f73d756d2fa36e130e1c')
+ 'c29f2993d6a0f73d756d2fa36e130e1c'
+ '072a9b008878e171a86fb90cdf8ce52d')
 
 build() {
unset QMAKESPEC
@@ -32,6 +34,9 @@
 
cd $srcdir/$_pkgfqn
 
+   # Already fixed in 4.7.1
+   patch -Np1 -i ${srcdir}/fix-scroll-when-last-item-is-removed.patch
+
sed -i s|-O2|$CXXFLAGS| mkspecs/common/g++.conf
sed -i /^QMAKE_RPATH/s| -Wl,-rpath,||g mkspecs/common/g++.conf
sed -i /^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g mkspecs/common/g++.conf

Added: fix-scroll-when-last-item-is-removed.patch
===
--- fix-scroll-when-last-item-is-removed.patch  (rev 0)
+++ fix-scroll-when-last-item-is-removed.patch  2010-09-26 11:20:42 UTC (rev 
91295)
@@ -0,0 +1,77 @@
+From 6da6b7099d4e0b49329793e4b90703ec3d868048 Mon Sep 17 00:00:00 2001
+From: Frank Reininghaus frank7...@googlemail.com
+Date: Wed, 22 Sep 2010 10:19:59 +0200
+Subject: [PATCH] QTreeView: do not scroll to top if last item is removed
+
+When the last item is the current item and is removed,
+QTreeViewPrivate::updateScrollBars() is called after QTreeViewPrivate's
+viewItems member is cleared. This commit makes sure that viewItems is
+restored by calling QTreeView::doItemsLayout() in this case, preventing
+that the scroll bar range is set to zero temporarily and the view is
+scrolled to the top unexpectedly (this was a regression in 4.7.0:
+QTBUG-13567).
+
+Merge-request: 2481
+Reviewed-by: Olivier Goffart olivier.goff...@nokia.com
+---
+ src/gui/itemviews/qtreeview.cpp|4 
+ tests/auto/qtreeview/tst_qtreeview.cpp |   22 ++
+ 2 files changed, 26 insertions(+), 0 deletions(-)
+
+diff --git a/src/gui/itemviews/qtreeview.cpp b/src/gui/itemviews/qtreeview.cpp
+index b797776..40b51fe 100644
+--- a/src/gui/itemviews/qtreeview.cpp
 b/src/gui/itemviews/qtreeview.cpp
+@@ -3435,6 +3435,10 @@ void QTreeViewPrivate::updateScrollBars()
+ if (!viewportSize.isValid())
+ viewportSize = QSize(0, 0);
+ 
++if (viewItems.isEmpty()) {
++q-doItemsLayout();
++}
++
+ int itemsInViewport = 0;
+ if (uniformRowHeights) {
+ if (defaultItemHeight = 0)
+diff --git a/tests/auto/qtreeview/tst_qtreeview.cpp 
b/tests/auto/qtreeview/tst_qtreeview.cpp
+index 7e2e800..c7b53e9 100644
+--- a/tests/auto/qtreeview/tst_qtreeview.cpp
 b/tests/auto/qtreeview/tst_qtreeview.cpp
+@@ -240,6 +240,7 @@ private slots:
+ void taskQTBUG_6450_selectAllWith1stColumnHidden();
+ void taskQTBUG_9216_setSizeAndUniformRowHeightsWrongRepaint();
+ void taskQTBUG_11466_keyboardNavigationRegression();
++void taskQTBUG_13567_removeLastItemRegression();
+ };
+ 
+ class QtTestModel: public QAbstractItemModel
+@@ -3910,5 +3911,26 @@ void 
tst_QTreeView::taskQTBUG_11466_keyboardNavigationRegression()
+ QTRY_COMPARE(treeView.currentIndex(), 
treeView.selectionModel()-selection().indexes().first());
+ }
+ 
++void tst_QTreeView::taskQTBUG_13567_removeLastItemRegression()
++{
++QtTestModel model(200, 1);
++
++QTreeView view;
++view.setSelectionMode(QAbstractItemView::ExtendedSelection);
++view.setModel(model);
++view.show();
++QTest::qWaitForWindowShown(view);
++
++view.scrollToBottom();
++QTest::qWait(10);
++CHECK_VISIBLE(199, 0);
++
++view.setCurrentIndex(model.index(199, 0));
++model.removeLastRow();
++QTest::qWait(10);
++QCOMPARE(view.currentIndex(), model.index(198, 0));
++CHECK_VISIBLE(198, 0);
++}
++
+ 

[arch-commits] Commit in libtorrent-rasterbar/repos (extra-i686)

2010-09-26 Thread Ionut Biru
Date: Sunday, September 26, 2010 @ 08:34:20
  Author: ibiru
Revision: 91297

archrelease: remove extra-i686

Deleted:
  libtorrent-rasterbar/repos/extra-i686/



[arch-commits] Commit in libtorrent-rasterbar/repos (extra-x86_64)

2010-09-26 Thread Ionut Biru
Date: Sunday, September 26, 2010 @ 08:35:05
  Author: ibiru
Revision: 91300

archrelease: copy trunk to extra-x86_64

Added:
  libtorrent-rasterbar/repos/extra-x86_64/



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

2010-09-26 Thread Ionut Biru
Date: Sunday, September 26, 2010 @ 08:42:50
  Author: ibiru
Revision: 91301

upgpkg: libtorrent-rasterbar 0.15.3-2
python2.7

Modified:
  libtorrent-rasterbar/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 12:35:05 UTC (rev 91300)
+++ PKGBUILD2010-09-26 12:42:50 UTC (rev 91301)
@@ -5,7 +5,7 @@
 
 pkgname=libtorrent-rasterbar
 pkgver=0.15.3
-pkgrel=1
+pkgrel=2
 pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
 url=http://www.rasterbar.com/products/libtorrent/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in libtorrent-rasterbar/repos (staging-i686)

2010-09-26 Thread Ionut Biru
Date: Sunday, September 26, 2010 @ 08:43:00
  Author: ibiru
Revision: 91302

archrelease: remove staging-i686

Deleted:
  libtorrent-rasterbar/repos/staging-i686/



[arch-commits] Commit in libtorrent-rasterbar/repos (staging-i686)

2010-09-26 Thread Ionut Biru
Date: Sunday, September 26, 2010 @ 08:43:14
  Author: ibiru
Revision: 91303

archrelease: copy trunk to staging-i686

Added:
  libtorrent-rasterbar/repos/staging-i686/



[arch-commits] Commit in kernel26-lts/repos (core-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 10:49:38
  Author: andyrtr
Revision: 91306

db-move: kernel26-lts removed by andyrtr for move to [core] (i686)

Deleted:
  kernel26-lts/repos/core-i686/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 10:49:39
  Author: andyrtr
Revision: 91308

db-move: kernel26-lts removed by andyrtr for move to [core] (x86_64)

Deleted:
  kernel26-lts/repos/core-x86_64/



[arch-commits] Commit in ttf-sazanami/repos (extra-any)

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 11:20:14
  Author: bisson
Revision: 91310

archrelease: remove extra-any

Deleted:
  ttf-sazanami/repos/extra-any/



[arch-commits] Commit in tiacx-lts/repos (core-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:22:57
  Author: andyrtr
Revision: 91312

db-move: tiacx-lts removed by andyrtr for move to [core] (i686)

Deleted:
  tiacx-lts/repos/core-i686/



[arch-commits] Commit in tiacx-lts/repos (core-i686 testing-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:22:58
  Author: andyrtr
Revision: 91313

db-move: moved tiacx-lts from [testing] to [core] (i686)

Added:
  tiacx-lts/repos/core-i686/
Deleted:
  tiacx-lts/repos/testing-i686/



[arch-commits] Commit in tiacx-lts/repos (core-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:22:59
  Author: andyrtr
Revision: 91314

db-move: tiacx-lts removed by andyrtr for move to [core] (x86_64)

Deleted:
  tiacx-lts/repos/core-x86_64/



[arch-commits] Commit in tiacx-lts/repos (core-x86_64 testing-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:00
  Author: andyrtr
Revision: 91315

db-move: moved tiacx-lts from [testing] to [core] (x86_64)

Added:
  tiacx-lts/repos/core-x86_64/
Deleted:
  tiacx-lts/repos/testing-x86_64/



[arch-commits] Commit in ndiswrapper-lts/repos (core-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:02
  Author: andyrtr
Revision: 91316

db-move: ndiswrapper-lts removed by andyrtr for move to [core] (i686)

Deleted:
  ndiswrapper-lts/repos/core-i686/



[arch-commits] Commit in ndiswrapper-lts/repos (core-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:04
  Author: andyrtr
Revision: 91318

db-move: ndiswrapper-lts removed by andyrtr for move to [core] (x86_64)

Deleted:
  ndiswrapper-lts/repos/core-x86_64/



[arch-commits] Commit in ed/repos (core-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:06
  Author: andyrtr
Revision: 91320

db-move: ed removed by andyrtr for move to [core] (i686)

Deleted:
  ed/repos/core-i686/



[arch-commits] Commit in ed/repos (core-i686 testing-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:07
  Author: andyrtr
Revision: 91321

db-move: moved ed from [testing] to [core] (i686)

Added:
  ed/repos/core-i686/
Deleted:
  ed/repos/testing-i686/



[arch-commits] Commit in nouveau-drm-lts/repos (extra-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:26
  Author: andyrtr
Revision: 91324

db-move: nouveau-drm-lts removed by andyrtr for move to [extra] (i686)

Deleted:
  nouveau-drm-lts/repos/extra-i686/



[arch-commits] Commit in nouveau-drm-lts/repos (extra-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:35
  Author: andyrtr
Revision: 91326

db-move: nouveau-drm-lts removed by andyrtr for move to [extra] (x86_64)

Deleted:
  nouveau-drm-lts/repos/extra-x86_64/



[arch-commits] Commit in nouveau-drm-lts/repos (extra-x86_64 testing-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:23:40
  Author: andyrtr
Revision: 91327

db-move: moved nouveau-drm-lts from [testing] to [extra] (x86_64)

Added:
  nouveau-drm-lts/repos/extra-x86_64/
Deleted:
  nouveau-drm-lts/repos/testing-x86_64/



[arch-commits] Commit in (5 files)

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 11:35:45
  Author: bisson
Revision: 91329

korean truetype font

Added:
  ttf-baekmuk/
  ttf-baekmuk/repos/
  ttf-baekmuk/trunk/
  ttf-baekmuk/trunk/PKGBUILD
  ttf-baekmuk/trunk/install

--+
 PKGBUILD |   23 +++
 install  |   13 +
 2 files changed, 36 insertions(+)

Added: ttf-baekmuk/trunk/PKGBUILD
===
--- ttf-baekmuk/trunk/PKGBUILD  (rev 0)
+++ ttf-baekmuk/trunk/PKGBUILD  2010-09-26 15:35:45 UTC (rev 91329)
@@ -0,0 +1,23 @@
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Darwin M. Bautista djclue...@gmail.com
+
+pkgname=ttf-baekmuk
+pkgver=2.2
+pkgrel=5
+pkgdesc='Korean TrueType fonts'
+arch=('any')
+url='http://kldp.net/projects/baekmuk/'
+license=('BSD')
+depends=('fontconfig' 'xorg-fonts-encodings')
+source=(http://kldp.net/frs/download.php/1429/baekmuk-ttf-${pkgver}.tar.gz;)
+sha1sums=('afdee34f77de6ea87b43c92a88b7385ba65b')
+
+install=install
+
+build() {
+   cd ${srcdir}/baekmuk-ttf-${pkgver}/ttf
+   install -d ${pkgdir}/usr/share/{fonts/TTF,licenses/${pkgname}}
+
+   for i in *.ttf; do install $i 
${pkgdir}/usr/share/fonts/TTF/baekmuk-$i; done
+   install ../COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/
+}


Property changes on: ttf-baekmuk/trunk/PKGBUILD
___
Added: svn:keywords
   + Id

Added: ttf-baekmuk/trunk/install
===
--- ttf-baekmuk/trunk/install   (rev 0)
+++ ttf-baekmuk/trunk/install   2010-09-26 15:35:45 UTC (rev 91329)
@@ -0,0 +1,13 @@
+post_install() {
+   post_upgrade
+}
+
+post_upgrade() {
+   fc-cache -fs
+   mkfontscale usr/share/fonts/TTF
+   mkfontdir usr/share/fonts/TTF
+}
+
+post_remove() {
+   post_upgrade
+}



[arch-commits] Commit in kernel26-lts/repos (testing-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:35:52
  Author: andyrtr
Revision: 91330

archrelease: copy trunk to testing-x86_64

Added:
  kernel26-lts/repos/testing-x86_64/



[arch-commits] Commit in ttf-baekmuk/repos (extra-any)

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 11:38:38
  Author: bisson
Revision: 91331

archrelease: copy trunk to extra-any

Added:
  ttf-baekmuk/repos/extra-any/



[arch-commits] Commit in kernel26-lts/repos (core-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:38:59
  Author: andyrtr
Revision: 91332

db-move: kernel26-lts removed by andyrtr for move to [core] (i686)

Deleted:
  kernel26-lts/repos/core-i686/



[arch-commits] Commit in kernel26-lts/repos (core-i686 testing-i686)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:39:01
  Author: andyrtr
Revision: 91333

db-move: moved kernel26-lts from [testing] to [core] (i686)

Added:
  kernel26-lts/repos/core-i686/
Deleted:
  kernel26-lts/repos/testing-i686/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:39:04
  Author: andyrtr
Revision: 91334

db-move: kernel26-lts removed by andyrtr for move to [core] (x86_64)

Deleted:
  kernel26-lts/repos/core-x86_64/



[arch-commits] Commit in kernel26-lts/repos (core-x86_64 testing-x86_64)

2010-09-26 Thread andyrtr
Date: Sunday, September 26, 2010 @ 11:39:06
  Author: andyrtr
Revision: 91335

db-move: moved kernel26-lts from [testing] to [core] (x86_64)

Added:
  kernel26-lts/repos/core-x86_64/
Deleted:
  kernel26-lts/repos/testing-x86_64/



[arch-commits] Commit in dssi/repos (extra-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:45
  Author: schiv
Revision: 91336

db-move: dssi removed by schiv for move to [extra] (i686)

Deleted:
  dssi/repos/extra-i686/



[arch-commits] Commit in dssi/repos (extra-i686 testing-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:46
  Author: schiv
Revision: 91337

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

Added:
  dssi/repos/extra-i686/
Deleted:
  dssi/repos/testing-i686/



[arch-commits] Commit in dssi/repos (extra-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:47
  Author: schiv
Revision: 91338

db-move: dssi removed by schiv for move to [extra] (x86_64)

Deleted:
  dssi/repos/extra-x86_64/



[arch-commits] Commit in dssi/repos (extra-x86_64 testing-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:49
  Author: schiv
Revision: 91339

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

Added:
  dssi/repos/extra-x86_64/
Deleted:
  dssi/repos/testing-x86_64/



[arch-commits] Commit in hydrogen/repos (extra-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:52
  Author: schiv
Revision: 91340

db-move: hydrogen removed by schiv for move to [extra] (i686)

Deleted:
  hydrogen/repos/extra-i686/



[arch-commits] Commit in hydrogen/repos (extra-i686 testing-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:53
  Author: schiv
Revision: 91341

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

Added:
  hydrogen/repos/extra-i686/
Deleted:
  hydrogen/repos/testing-i686/



[arch-commits] Commit in hydrogen/repos (extra-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:54
  Author: schiv
Revision: 91342

db-move: hydrogen removed by schiv for move to [extra] (x86_64)

Deleted:
  hydrogen/repos/extra-x86_64/



[arch-commits] Commit in hydrogen/repos (extra-x86_64 testing-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:55
  Author: schiv
Revision: 91343

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

Added:
  hydrogen/repos/extra-x86_64/
Deleted:
  hydrogen/repos/testing-x86_64/



[arch-commits] Commit in fluidsynth/repos (extra-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:56
  Author: schiv
Revision: 91344

db-move: fluidsynth removed by schiv for move to [extra] (i686)

Deleted:
  fluidsynth/repos/extra-i686/



[arch-commits] Commit in fluidsynth/repos (extra-i686 testing-i686)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:57
  Author: schiv
Revision: 91345

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

Added:
  fluidsynth/repos/extra-i686/
Deleted:
  fluidsynth/repos/testing-i686/



[arch-commits] Commit in fluidsynth/repos (extra-x86_64 testing-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:46:00
  Author: schiv
Revision: 91347

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

Added:
  fluidsynth/repos/extra-x86_64/
Deleted:
  fluidsynth/repos/testing-x86_64/



[arch-commits] Commit in fluidsynth/repos (extra-x86_64)

2010-09-26 Thread Ray Rashif
Date: Sunday, September 26, 2010 @ 11:45:58
  Author: schiv
Revision: 91346

db-move: fluidsynth removed by schiv for move to [extra] (x86_64)

Deleted:
  fluidsynth/repos/extra-x86_64/



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

2010-09-26 Thread Tobias Powalowski
Date: Sunday, September 26, 2010 @ 11:53:08
  Author: tpowa
Revision: 91348

change to new upstrean url

Modified:
  kexec-tools/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 15:46:00 UTC (rev 91347)
+++ PKGBUILD2010-09-26 15:53:08 UTC (rev 91348)
@@ -8,7 +8,7 @@
 pkgdesc=Load another kernel from the currently executing Linux kernel
 arch=(i686 x86_64)
 url=http://kernel.org/pub/linux/utils/kernel/kexec/;
-source=(http://www.kernel.org/pub/linux/kernel/people/horms/kexec/kexec-tools-2.0.2.tar.bz2
+source=(http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-2.0.2.tar.bz2
 kexec kexec.conf.d)
 depends=('zlib' 'gawk' 'xz')
 backup=('etc/conf.d/kexec')



[arch-commits] Commit in (6 files)

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 12:08:39
  Author: bisson
Revision: 91349

korean truetype font

Added:
  ttf-hannom/
  ttf-hannom/repos/
  ttf-hannom/trunk/
  ttf-hannom/trunk/PKGBUILD
  ttf-hannom/trunk/README
  ttf-hannom/trunk/install

--+
 PKGBUILD |   25 +
 README   |7 +++
 install  |   13 +
 3 files changed, 45 insertions(+)

Added: ttf-hannom/trunk/PKGBUILD
===
--- ttf-hannom/trunk/PKGBUILD   (rev 0)
+++ ttf-hannom/trunk/PKGBUILD   2010-09-26 16:08:39 UTC (rev 91349)
@@ -0,0 +1,25 @@
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Willey Chen chwil...@gmail.com
+
+pkgname=ttf-hannom
+pkgver=2005
+pkgrel=1
+pkgdesc='Chinese and Vietnamese TrueType font'
+arch=('any')
+url='http://vietunicode.sourceforge.net/fonts/fonts_hannom.html'
+license=('custom:non-profit')
+depends=('fontconfig' 'xorg-fonts-encodings')
+source=(http://downloads.sourceforge.net/project/vietunicode/hannom/hannom%20v$pkgver/hannomH.zip;
+'README')
+sha1sums=('1a207b5ade4984521fa476f50c979a4674f48079'
+  '13e207063602d498a1b6949505bb3ef3d47f6f03')
+
+install=install
+
+build() {
+   cd $srcdir
+   install -d ${pkgdir}/usr/share/{fonts/TTF,licenses/${pkgname}}
+
+   install *.ttf ${pkgdir}/usr/share/fonts/TTF/
+   install README ${pkgdir}/usr/share/licenses/${pkgname}/
+}

Added: ttf-hannom/trunk/README
===
--- ttf-hannom/trunk/README (rev 0)
+++ ttf-hannom/trunk/README 2010-09-26 16:08:39 UTC (rev 91349)
@@ -0,0 +1,7 @@
+Complete licensing information is embedded in the TTF files; most importantly:
+
+   Chỉ được dùng riêng, tuyệt đối không được dùng để kinh doanh  vụ lợi
+
+Loose translation:
+
+   For non-commercial, non-profit, personal use only.

Added: ttf-hannom/trunk/install
===
--- ttf-hannom/trunk/install(rev 0)
+++ ttf-hannom/trunk/install2010-09-26 16:08:39 UTC (rev 91349)
@@ -0,0 +1,13 @@
+post_install() {
+   post_upgrade
+}
+
+post_upgrade() {
+   fc-cache -fs
+   mkfontscale usr/share/fonts/TTF
+   mkfontdir usr/share/fonts/TTF
+}
+
+post_remove() {
+   post_upgrade
+}



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

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 12:09:26
  Author: bisson
Revision: 91350

Modified:
  ttf-hannom/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 16:08:39 UTC (rev 91349)
+++ PKGBUILD2010-09-26 16:09:26 UTC (rev 91350)
@@ -4,7 +4,7 @@
 pkgname=ttf-hannom
 pkgver=2005
 pkgrel=1
-pkgdesc='Chinese and Vietnamese TrueType font'
+pkgdesc='Chinese and Vietnamese TrueType fonts'
 arch=('any')
 url='http://vietunicode.sourceforge.net/fonts/fonts_hannom.html'
 license=('custom:non-profit')



[arch-commits] Commit in ttf-hannom/repos (extra-any)

2010-09-26 Thread Gaetan Bisson
Date: Sunday, September 26, 2010 @ 12:18:57
  Author: bisson
Revision: 91351

archrelease: copy trunk to extra-any

Added:
  ttf-hannom/repos/extra-any/



[arch-commits] Commit in (12 files)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 12:41:28
  Author: remy
Revision: 91352

Update for TL2010 final (round 1)

Modified:
  texlive-bibtexextra/trunk/PKGBUILD
  texlive-fontsextra/trunk/PKGBUILD
  texlive-fontsextra/trunk/texlive-fontsextra.maps
  texlive-fontsextra/trunk/texlive.install
  texlive-genericextra/trunk/PKGBUILD
  texlive-htmlxml/trunk/PKGBUILD
  texlive-langcjk/trunk/PKGBUILD
  texlive-pictures/trunk/PKGBUILD
  texlive-plainextra/trunk/PKGBUILD
  texlive-pstricks/trunk/PKGBUILD
  texlive-publishers/trunk/PKGBUILD
  texlive-science/trunk/PKGBUILD

--+
 texlive-bibtexextra/trunk/PKGBUILD   |4 ++--
 texlive-fontsextra/trunk/PKGBUILD|6 +++---
 texlive-fontsextra/trunk/texlive-fontsextra.maps |5 -
 texlive-fontsextra/trunk/texlive.install |2 --
 texlive-genericextra/trunk/PKGBUILD  |4 ++--
 texlive-htmlxml/trunk/PKGBUILD   |4 ++--
 texlive-langcjk/trunk/PKGBUILD   |4 ++--
 texlive-pictures/trunk/PKGBUILD  |4 ++--
 texlive-plainextra/trunk/PKGBUILD|4 ++--
 texlive-pstricks/trunk/PKGBUILD  |4 ++--
 texlive-publishers/trunk/PKGBUILD|4 ++--
 texlive-science/trunk/PKGBUILD   |4 ++--
 12 files changed, 25 insertions(+), 24 deletions(-)

Modified: texlive-bibtexextra/trunk/PKGBUILD
===
--- texlive-bibtexextra/trunk/PKGBUILD  2010-09-26 16:18:57 UTC (rev 91351)
+++ texlive-bibtexextra/trunk/PKGBUILD  2010-09-26 16:41:28 UTC (rev 91352)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus firmicus āt gmx dōt net
 
 pkgname=texlive-bibtexextra
-pkgver=2010.19523
+pkgver=2010.19862
 pkgrel=1
 pkgdesc=TeX Live - Additional BibTeX styles and bibliography databases
 license=('GPL')
@@ -12,7 +12,7 @@
 source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;)
 options=(!strip)
 install=texlive.install
-md5sums=('b9e6b1fa154b800c59db869eb462d175')
+md5sums=('1bcecd30d8162134cf386e6f13bf30af')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-fontsextra/trunk/PKGBUILD
===
--- texlive-fontsextra/trunk/PKGBUILD   2010-09-26 16:18:57 UTC (rev 91351)
+++ texlive-fontsextra/trunk/PKGBUILD   2010-09-26 16:41:28 UTC (rev 91352)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus firmicus āt gmx dōt net
 
 pkgname=texlive-fontsextra
-pkgver=2010.19537
+pkgver=2010.19878
 pkgrel=1
 pkgdesc=TeX Live - all sorts of extra fonts
 license=('GPL')
@@ -13,8 +13,8 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('e15060dc0c2b7f39119acd529e43f4d9'
- '2fb08666d193d8f5999365c0ce4b9339')
+md5sums=('a93c42c465b5e42c866bb3aab0681adf'
+ '88a2f1df482bc46abdb8a987b3cc83c2')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-fontsextra/trunk/texlive-fontsextra.maps
===
--- texlive-fontsextra/trunk/texlive-fontsextra.maps2010-09-26 16:18:57 UTC 
(rev 91351)
+++ texlive-fontsextra/trunk/texlive-fontsextra.maps2010-09-26 16:41:28 UTC 
(rev 91352)
@@ -15,6 +15,7 @@
 Map MnSymbol.map
 Map MorrisIn.map
 Map Nouveaud.map
+Map OrnementsADF.map
 Map Romantik.map
 Map Rothdn.map
 Map RoyalIn.map
@@ -22,8 +23,8 @@
 Map Starburst.map
 Map Typocaps.map
 Map Zallman.map
-Map antp.map
 Map antt.map
+Map ap.map
 Map archaicprw.map
 Map arev.map
 Map ascii.map
@@ -33,6 +34,7 @@
 Map belleek.map
 Map bera.map
 Map ccicons.map
+Map clm.map
 Map cm-lgc.map
 Map cmin.map
 Map cyklop.map
@@ -70,6 +72,7 @@
 Map uaq.map
 Map ugq.map
 Map ybv.map
+Map yes.map
 Map yfrak.map
 Map yly.map
 Map yrd.map

Modified: texlive-fontsextra/trunk/texlive.install
===
--- texlive-fontsextra/trunk/texlive.install2010-09-26 16:18:57 UTC (rev 
91351)
+++ texlive-fontsextra/trunk/texlive.install2010-09-26 16:41:28 UTC (rev 
91352)
@@ -74,10 +74,8 @@
 Map troff-updmap.map
 Map uaq.map
 Map ugq.map
-Map ybv.map
 Map yfrak.map
 Map yly.map
-Map yrd.map
 Map yv1.map
 Map yv2.map
 Map yv3.map

Modified: texlive-genericextra/trunk/PKGBUILD
===
--- texlive-genericextra/trunk/PKGBUILD 2010-09-26 16:18:57 UTC (rev 91351)
+++ texlive-genericextra/trunk/PKGBUILD 2010-09-26 16:41:28 UTC (rev 91352)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus firmicus āt gmx dōt net
 
 pkgname=texlive-genericextra
-pkgver=2010.19456
+pkgver=2010.19884
 pkgrel=1
 pkgdesc=TeX Live - mixed bag of generic macro packages and fonts
 license=('GPL')
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('e8ef13209cb290e7ca50dcafc2d2c160')
+md5sums=('b5831a30ad01e5aee61bdb8374316de0')
 
 build() {
for p in *.tar.xz; do

Modified: 

[arch-commits] Commit in (2 files)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 13:00:48
  Author: remy
Revision: 91353

Update for TL2010 final (round 2)

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

---+
 texlive-core/trunk/PKGBUILD   |6 +++---
 texlive-latexextra/trunk/PKGBUILD |4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: texlive-core/trunk/PKGBUILD
===
--- texlive-core/trunk/PKGBUILD 2010-09-26 16:41:28 UTC (rev 91352)
+++ texlive-core/trunk/PKGBUILD 2010-09-26 17:00:48 UTC (rev 91353)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus firmicus ατ gmx δοτ net
 
 pkgname=texlive-core
-pkgver=2010.19536
+pkgver=2010.19888
 pkgrel=1
 pkgdesc=TeX Live core distribution
 license=('GPL')
@@ -25,8 +25,8 @@
 options=(!strip)
 install=texlive.install
 backup=(etc/texmf/tex/context/config/cont-usr.tex)
-md5sums=('08e1f13e414dc7d50b75e7872b890717'
- 'b91ffccea6a4c17d206f0dea64405565')
+md5sums=('cd2e3304beb7b48e8e7acf1246628f3c'
+ 'f27c9370a4fe7c9fe7d746da7fbc37c0')
 
 build() {
echo -n-- extracting all packages... 

Modified: texlive-latexextra/trunk/PKGBUILD
===
--- texlive-latexextra/trunk/PKGBUILD   2010-09-26 16:41:28 UTC (rev 91352)
+++ texlive-latexextra/trunk/PKGBUILD   2010-09-26 17:00:48 UTC (rev 91353)
@@ -1,7 +1,7 @@
 # Maintainer: Firmicus firmicus āt gmx dōt net
 
 pkgname=texlive-latexextra
-pkgver=2010.19548
+pkgver=2010.19882
 pkgrel=1
 pkgdesc=TeX Live - Large collection of add-on packages for LaTeX
 license=('GPL')
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('ca2ea429e45e205110cb481202977a69'
+md5sums=('e15eb1f93ccecf366e159c7a7f0297a7'
  '9e4825f47dac663dd62c4bfa67899e84')
 
 build() {



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 13:05:32
  Author: remy
Revision: 91354

Update for TL2010 final (binaries)

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 17:00:48 UTC (rev 91353)
+++ PKGBUILD2010-09-26 17:05:32 UTC (rev 91354)
@@ -2,7 +2,7 @@
 
 pkgname=texlive-bin
 pkgver=2010.1
-_luatex_ver=0.62.0
+_luatex_ver=0.63.0
 pkgrel=1
 pkgdesc=TeX Live binaries
 license=('GPL')
@@ -16,9 +16,9 @@
 source=('texmf.cnf'
 'fix-fontforge-encoding.patch'
 '09-texlive-fonts.conf'
-
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-source-20100720.tar.xz'
-
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-texmf-20100720.tar.xz'
-   
http://foundry.supelec.fr/gf/download/frsrelease/381/1533/luatex-beta-${_luatex_ver}.tar.bz2;)
+
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-source-20100926.tar.xz'
+
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-texmf-20100926.tar.xz'
+
http://foundry.supelec.fr/gf/download/frsrelease/382/1568/luatex-beta-${_luatex_ver}.tar.bz2;)
 backup=(etc/texmf/web2c/texmf.cnf \
   etc/texmf/chktex/chktexrc \
etc/texmf/web2c/mktex.cnf \
@@ -282,6 +282,6 @@
 md5sums=('626f900fb59f036d6fea95f08c74b00b'
  'bfb9716aa00c86c08cd31e5b32edeb98'
  '393a4bf67adc7ca5df2b386759d1a637'
- '1cac8cf889fbb50b9f39042be49c8482'
- '99cd8dd0b7c71b7cf0bb0f8c6fd49412'
-'4b22a50866849ec14886906474a72a01')
+ '0b2c3a4a1b1e4befb90d7fbb5f08a6e9'
+ '3514962f77a23a0a2c5d52c24cc66d6c'
+ '12b1d1bbab17fd368457f2c45d4ee721')



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 13:29:35
  Author: remy
Revision: 91355

Regenerate correctly the install script.

Modified:
  texlive-fontsextra/trunk/texlive.install

-+
 texlive.install |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: texlive.install
===
--- texlive.install 2010-09-26 17:05:32 UTC (rev 91354)
+++ texlive.install 2010-09-26 17:29:35 UTC (rev 91355)
@@ -20,6 +20,7 @@
 Map MnSymbol.map
 Map MorrisIn.map
 Map Nouveaud.map
+Map OrnementsADF.map
 Map Romantik.map
 Map Rothdn.map
 Map RoyalIn.map
@@ -27,8 +28,8 @@
 Map Starburst.map
 Map Typocaps.map
 Map Zallman.map
-Map antp.map
 Map antt.map
+Map ap.map
 Map archaicprw.map
 Map arev.map
 Map ascii.map
@@ -38,6 +39,7 @@
 Map belleek.map
 Map bera.map
 Map ccicons.map
+Map clm.map
 Map cm-lgc.map
 Map cmin.map
 Map cyklop.map
@@ -74,8 +76,11 @@
 Map troff-updmap.map
 Map uaq.map
 Map ugq.map
+Map ybv.map
+Map yes.map
 Map yfrak.map
 Map yly.map
+Map yrd.map
 Map yv1.map
 Map yv2.map
 Map yv3.map



[arch-commits] Commit in (21 files)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 13:33:06
  Author: remy
Revision: 91356

texlive: remove return 1 from PKGBUILDs

Modified:
  texlive-bibtexextra/trunk/PKGBUILD
  texlive-bin/trunk/PKGBUILD
  texlive-core/trunk/PKGBUILD
  texlive-fontsextra/trunk/PKGBUILD
  texlive-formatsextra/trunk/PKGBUILD
  texlive-games/trunk/PKGBUILD
  texlive-genericextra/trunk/PKGBUILD
  texlive-htmlxml/trunk/PKGBUILD
  texlive-humanities/trunk/PKGBUILD
  texlive-langcjk/trunk/PKGBUILD
  texlive-langcyrillic/trunk/PKGBUILD
  texlive-langextra/trunk/PKGBUILD
  texlive-langgreek/trunk/PKGBUILD
  texlive-latex3/trunk/PKGBUILD
  texlive-latexextra/trunk/PKGBUILD
  texlive-music/trunk/PKGBUILD
  texlive-pictures/trunk/PKGBUILD
  texlive-plainextra/trunk/PKGBUILD
  texlive-pstricks/trunk/PKGBUILD
  texlive-publishers/trunk/PKGBUILD
  texlive-science/trunk/PKGBUILD

-+
 texlive-bibtexextra/trunk/PKGBUILD  |   24 
 texlive-bin/trunk/PKGBUILD  |   32 
 texlive-core/trunk/PKGBUILD |   20 ++--
 texlive-fontsextra/trunk/PKGBUILD   |   20 ++--
 texlive-formatsextra/trunk/PKGBUILD |   18 +-
 texlive-games/trunk/PKGBUILD|   20 ++--
 texlive-genericextra/trunk/PKGBUILD |   18 +-
 texlive-htmlxml/trunk/PKGBUILD  |   20 ++--
 texlive-humanities/trunk/PKGBUILD   |   18 +-
 texlive-langcjk/trunk/PKGBUILD  |   20 ++--
 texlive-langcyrillic/trunk/PKGBUILD |   20 ++--
 texlive-langextra/trunk/PKGBUILD|   22 +++---
 texlive-langgreek/trunk/PKGBUILD|   22 +++---
 texlive-latex3/trunk/PKGBUILD   |   18 +-
 texlive-latexextra/trunk/PKGBUILD   |   22 +++---
 texlive-music/trunk/PKGBUILD|   20 ++--
 texlive-pictures/trunk/PKGBUILD |   22 +++---
 texlive-plainextra/trunk/PKGBUILD   |   18 +-
 texlive-pstricks/trunk/PKGBUILD |   20 ++--
 texlive-publishers/trunk/PKGBUILD   |   18 +-
 texlive-science/trunk/PKGBUILD  |   22 +++---
 21 files changed, 217 insertions(+), 217 deletions(-)

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


[arch-commits] Commit in texlive-bin/repos (testing-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 14:06:33
  Author: remy
Revision: 91357

archrelease: remove testing-i686

Deleted:
  texlive-bin/repos/testing-i686/



[arch-commits] Commit in texlive-bin/repos (testing-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 14:06:43
  Author: remy
Revision: 91358

archrelease: copy trunk to testing-i686

Added:
  texlive-bin/repos/testing-i686/



[arch-commits] Commit in texlive-bin/repos (testing-x86_64)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 14:09:06
  Author: remy
Revision: 91359

archrelease: remove testing-x86_64

Deleted:
  texlive-bin/repos/testing-x86_64/



[arch-commits] Commit in texlive-bin/repos (testing-x86_64)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 14:09:17
  Author: remy
Revision: 91360

archrelease: copy trunk to testing-x86_64

Added:
  texlive-bin/repos/testing-x86_64/



[arch-commits] Commit in (12 files)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 14:16:21
  Author: remy
Revision: 91361

Fix incorrect checksums

Modified:
  texlive-bibtexextra/trunk/PKGBUILD
  texlive-core/trunk/PKGBUILD
  texlive-fontsextra/trunk/PKGBUILD
  texlive-genericextra/trunk/PKGBUILD
  texlive-htmlxml/trunk/PKGBUILD
  texlive-langcjk/trunk/PKGBUILD
  texlive-latexextra/trunk/PKGBUILD
  texlive-pictures/trunk/PKGBUILD
  texlive-plainextra/trunk/PKGBUILD
  texlive-pstricks/trunk/PKGBUILD
  texlive-publishers/trunk/PKGBUILD
  texlive-science/trunk/PKGBUILD

-+
 texlive-bibtexextra/trunk/PKGBUILD  |2 +-
 texlive-core/trunk/PKGBUILD |2 +-
 texlive-fontsextra/trunk/PKGBUILD   |4 ++--
 texlive-genericextra/trunk/PKGBUILD |2 +-
 texlive-htmlxml/trunk/PKGBUILD  |2 +-
 texlive-langcjk/trunk/PKGBUILD  |2 +-
 texlive-latexextra/trunk/PKGBUILD   |2 +-
 texlive-pictures/trunk/PKGBUILD |2 +-
 texlive-plainextra/trunk/PKGBUILD   |2 +-
 texlive-pstricks/trunk/PKGBUILD |2 +-
 texlive-publishers/trunk/PKGBUILD   |2 +-
 texlive-science/trunk/PKGBUILD  |2 +-
 12 files changed, 13 insertions(+), 13 deletions(-)

Modified: texlive-bibtexextra/trunk/PKGBUILD
===
--- texlive-bibtexextra/trunk/PKGBUILD  2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-bibtexextra/trunk/PKGBUILD  2010-09-26 18:16:21 UTC (rev 91361)
@@ -12,7 +12,7 @@
 source=(ftp://ftp.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip;)
 options=(!strip)
 install=texlive.install
-md5sums=('1bcecd30d8162134cf386e6f13bf30af')
+md5sums=('030767077f484395a47edc099ce5d017')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-core/trunk/PKGBUILD
===
--- texlive-core/trunk/PKGBUILD 2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-core/trunk/PKGBUILD 2010-09-26 18:16:21 UTC (rev 91361)
@@ -25,7 +25,7 @@
 options=(!strip)
 install=texlive.install
 backup=(etc/texmf/tex/context/config/cont-usr.tex)
-md5sums=('cd2e3304beb7b48e8e7acf1246628f3c'
+md5sums=('e9608003acf07ab79e1cb6fea630c57d'
  'f27c9370a4fe7c9fe7d746da7fbc37c0')
 
 build() {

Modified: texlive-fontsextra/trunk/PKGBUILD
===
--- texlive-fontsextra/trunk/PKGBUILD   2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-fontsextra/trunk/PKGBUILD   2010-09-26 18:16:21 UTC (rev 91361)
@@ -13,8 +13,8 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('a93c42c465b5e42c866bb3aab0681adf'
- '88a2f1df482bc46abdb8a987b3cc83c2')
+md5sums=('3e2a1ea758bf9b4b5a64d43d57a38e94'
+ '038007ecc64393e68248ba43ba67d673')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-genericextra/trunk/PKGBUILD
===
--- texlive-genericextra/trunk/PKGBUILD 2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-genericextra/trunk/PKGBUILD 2010-09-26 18:16:21 UTC (rev 91361)
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('b5831a30ad01e5aee61bdb8374316de0')
+md5sums=('1226a7d528b19bab323a65bf8222f2ef')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-htmlxml/trunk/PKGBUILD
===
--- texlive-htmlxml/trunk/PKGBUILD  2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-htmlxml/trunk/PKGBUILD  2010-09-26 18:16:21 UTC (rev 91361)
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('b869903de0294d30b843df06c6ed4f85')
+md5sums=('ef08cc67e0d8c702dc7ecfde6a9c0894')
 
 build() {
for p in *.tar.xz; do

Modified: texlive-langcjk/trunk/PKGBUILD
===
--- texlive-langcjk/trunk/PKGBUILD  2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-langcjk/trunk/PKGBUILD  2010-09-26 18:16:21 UTC (rev 91361)
@@ -13,7 +13,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('2598f1c145fe7dc69a8e6eb2e9e85615'
+md5sums=('bc298d29c916e742155d29986037c748'
  'a4c50faea47494bad836b83391eb720e')
 
 build() {

Modified: texlive-latexextra/trunk/PKGBUILD
===
--- texlive-latexextra/trunk/PKGBUILD   2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-latexextra/trunk/PKGBUILD   2010-09-26 18:16:21 UTC (rev 91361)
@@ -14,7 +14,7 @@
 options=('!emptydirs')
 options=(!strip)
 install=texlive.install
-md5sums=('e15eb1f93ccecf366e159c7a7f0297a7'
+md5sums=('24146c743520799544cf617bee428575'
  '9e4825f47dac663dd62c4bfa67899e84')
 
 build() {

Modified: texlive-pictures/trunk/PKGBUILD
===
--- texlive-pictures/trunk/PKGBUILD 2010-09-26 18:09:17 UTC (rev 91360)
+++ texlive-pictures/trunk/PKGBUILD 2010-09-26 

[arch-commits] Commit in texlive-core/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:38:43
  Author: remy
Revision: 91363

archrelease: remove testing-any

Deleted:
  texlive-core/repos/testing-any/



[arch-commits] Commit in texlive-core/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:38:53
  Author: remy
Revision: 91364

archrelease: copy trunk to testing-any

Added:
  texlive-core/repos/testing-any/



[arch-commits] Commit in texlive-latexextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:44:00
  Author: remy
Revision: 91365

archrelease: remove testing-any

Deleted:
  texlive-latexextra/repos/testing-any/



[arch-commits] Commit in texlive-latexextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:44:13
  Author: remy
Revision: 91366

archrelease: copy trunk to testing-any

Added:
  texlive-latexextra/repos/testing-any/



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

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:52:29
  Author: remy
Revision: 91367

upgpkg: texlive-bin 2010.1-1
Revert to luatex 0.62 (hyphenation issues)

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 19:44:13 UTC (rev 91366)
+++ PKGBUILD2010-09-26 19:52:29 UTC (rev 91367)
@@ -2,7 +2,7 @@
 
 pkgname=texlive-bin
 pkgver=2010.1
-_luatex_ver=0.63.0
+_luatex_ver=0.62.0
 pkgrel=1
 pkgdesc=TeX Live binaries
 license=('GPL')
@@ -18,7 +18,7 @@
 '09-texlive-fonts.conf'
 
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-source-20100926.tar.xz'
 
'ftp://ftp.archlinux.org/other/texlive/texlive-bin-texmf-20100926.tar.xz'
-
http://foundry.supelec.fr/gf/download/frsrelease/382/1568/luatex-beta-${_luatex_ver}.tar.bz2;)
+
http://foundry.supelec.fr/gf/download/frsrelease/381/1533/luatex-beta-${_luatex_ver}.tar.bz2;)
 backup=(etc/texmf/web2c/texmf.cnf \
   etc/texmf/chktex/chktexrc \
etc/texmf/web2c/mktex.cnf \
@@ -284,4 +284,4 @@
  '393a4bf67adc7ca5df2b386759d1a637'
  '0b2c3a4a1b1e4befb90d7fbb5f08a6e9'
  '3514962f77a23a0a2c5d52c24cc66d6c'
- '12b1d1bbab17fd368457f2c45d4ee721')
+ '4b22a50866849ec14886906474a72a01')



[arch-commits] Commit in texlive-bin/repos (testing-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:54:39
  Author: remy
Revision: 91368

archrelease: remove testing-i686

Deleted:
  texlive-bin/repos/testing-i686/



[arch-commits] Commit in texlive-bin/repos (testing-i686)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:54:50
  Author: remy
Revision: 91369

archrelease: copy trunk to testing-i686

Added:
  texlive-bin/repos/testing-i686/



[arch-commits] Commit in texlive-bin/repos (testing-x86_64)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:57:12
  Author: remy
Revision: 91370

archrelease: remove testing-x86_64

Deleted:
  texlive-bin/repos/testing-x86_64/



[arch-commits] Commit in texlive-bin/repos (testing-x86_64)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 15:57:23
  Author: remy
Revision: 91371

archrelease: copy trunk to testing-x86_64

Added:
  texlive-bin/repos/testing-x86_64/



[arch-commits] Commit in texlive-fontsextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 16:20:54
  Author: remy
Revision: 91372

archrelease: remove testing-any

Deleted:
  texlive-fontsextra/repos/testing-any/



[arch-commits] Commit in texlive-fontsextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 16:21:06
  Author: remy
Revision: 91373

archrelease: copy trunk to testing-any

Added:
  texlive-fontsextra/repos/testing-any/



[arch-commits] Commit in grantlee/kde-unstable (PKGBUILD)

2010-09-26 Thread Andrea Scarpino
Date: Sunday, September 26, 2010 @ 18:01:38
  Author: andrea
Revision: 91374

upstream release

Modified:
  grantlee/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 20:21:06 UTC (rev 91373)
+++ PKGBUILD2010-09-26 22:01:38 UTC (rev 91374)
@@ -1,8 +1,8 @@
-# $Id $
+# $Id$
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=grantlee
-pkgver=0.1.4
+pkgver=0.1.6
 pkgrel=1
 pkgdesc=A string template engine based on the Django template system and 
written in Qt
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('qt')
 makedepends=('cmake')
 source=(http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('87f2c5f1f76355c51d2ae1e458a24797')
+md5sums=('6260d3d05cf9e602668bcb0a35b49b2c')
 
 build() {
   cd ${srcdir}



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

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 20:43:27
  Author: eric
Revision: 91375

upgpkg: enlightenment 1.0.6-1
Upstream update

Modified:
  enlightenment/trunk/ChangeLog
  enlightenment/trunk/PKGBUILD

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

Modified: ChangeLog
===
--- ChangeLog   2010-09-26 22:01:38 UTC (rev 91374)
+++ ChangeLog   2010-09-27 00:43:27 UTC (rev 91375)
@@ -1,3 +1,8 @@
+2010-09-26  Eric Belanger  e...@archlinux.org
+
+   * enlightenment 1.0.6-1
+   * Upstream update
+
 2010-08-29  Eric Belanger  e...@archlinux.org
 
* enlightenment 1.0.5-1

Modified: PKGBUILD
===
--- PKGBUILD2010-09-26 22:01:38 UTC (rev 91374)
+++ PKGBUILD2010-09-27 00:43:27 UTC (rev 91375)
@@ -3,7 +3,7 @@
 # Contributor: Judd Vinet jvi...@zeroflux.org
 
 pkgname=enlightenment
-pkgver=1.0.5
+pkgver=1.0.6
 _themever=1.0.1
 pkgrel=1
 pkgdesc=A fast, flexible, and very extensible Window Manager
@@ -17,8 +17,8 @@
 changelog=ChangeLog
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/e16-${pkgver}.tar.gz
 \
 
http://downloads.sourceforge.net/enlightenment/e16-themes-${_themever}.tar.gz)
-md5sums=('8e915d0a8e0a7498712bc81c32362db2' 'bbd9cfd969610c29c7627c2ba1ce3094')
-sha1sums=('e50f11439023079fb2d7a1876e4bf6cf59a9b832' 
'ae34e2df1294198795736bf953bf695aba93b710')
+md5sums=('b587bfd879ae9abc0b5faffa5f1c2c07' 'bbd9cfd969610c29c7627c2ba1ce3094')
+sha1sums=('04b2f79b0641a6473c31e8469baec6098501e9dc' 
'ae34e2df1294198795736bf953bf695aba93b710')
 
 build() {
   cd ${srcdir}/e16-${pkgver}



[arch-commits] Commit in enlightenment/repos (extra-i686)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 20:45:23
  Author: eric
Revision: 91376

archrelease: remove extra-i686

Deleted:
  enlightenment/repos/extra-i686/



[arch-commits] Commit in enlightenment/repos (extra-i686)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 20:45:36
  Author: eric
Revision: 91377

archrelease: copy trunk to extra-i686

Added:
  enlightenment/repos/extra-i686/



[arch-commits] Commit in enlightenment/repos (extra-x86_64)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 20:47:32
  Author: eric
Revision: 91378

archrelease: remove extra-x86_64

Deleted:
  enlightenment/repos/extra-x86_64/



[arch-commits] Commit in enlightenment/repos (extra-x86_64)

2010-09-26 Thread Eric Bélanger
Date: Sunday, September 26, 2010 @ 20:47:46
  Author: eric
Revision: 91379

archrelease: copy trunk to extra-x86_64

Added:
  enlightenment/repos/extra-x86_64/



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

2010-09-26 Thread Paul Mattal
Date: Sunday, September 26, 2010 @ 22:12:24
  Author: paul
Revision: 91380

upgpkg: truecrypt 7.0a-1
upstream update to 7.0a

Modified:
  truecrypt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-27 00:47:46 UTC (rev 91379)
+++ PKGBUILD2010-09-27 02:12:24 UTC (rev 91380)
@@ -2,7 +2,7 @@
 # Maintainer: Paul Mattal paul.archlinux.org
 
 pkgname=truecrypt
-pkgver=7.0
+pkgver=7.0a
 pkgrel=1
 pkgdesc=Free open-source cross-platform disk encryption software
 url=http://www.truecrypt.org/;
@@ -15,7 +15,7 @@
 options=('force')
 # N.B. Truecrypt's web-based source download is incompatible with
 # makepkg. Source has been placed on ftp.archlinux.org instead
-source=( truecrypt_7.tar.gz \
+source=( truecrypt_7.0a.tar.gz \
 'ftp://ftp.archlinux.org/other/tc/pkcs-2.20.tar.gz' \
 ${pkgname}.desktop) 
 
@@ -35,6 +35,6 @@
   # Install License
   install -D -m644 License.txt 
${pkgdir}/usr/share/licenses/${pkgname}/License.txt || return 1
 }
-md5sums=('da60dcc842b88ae7c8eb2171b1701abc'
+md5sums=('0a61616bc5c5ad90e876b4014c004ac9'
  'ce6a707b79411e82e8e558aa03e764b0'
  '183b9bf04a943454d4e216130bcbac01')



[arch-commits] Commit in truecrypt/repos (extra-i686)

2010-09-26 Thread Paul Mattal
Date: Sunday, September 26, 2010 @ 22:12:31
  Author: paul
Revision: 91381

archrelease: remove extra-i686

Deleted:
  truecrypt/repos/extra-i686/



[arch-commits] Commit in truecrypt/repos (extra-i686)

2010-09-26 Thread Paul Mattal
Date: Sunday, September 26, 2010 @ 22:12:39
  Author: paul
Revision: 91382

archrelease: copy trunk to extra-i686

Added:
  truecrypt/repos/extra-i686/



[arch-commits] Commit in truecrypt/repos (extra-x86_64)

2010-09-26 Thread Paul Mattal
Date: Sunday, September 26, 2010 @ 22:12:43
  Author: paul
Revision: 91383

archrelease: remove extra-x86_64

Deleted:
  truecrypt/repos/extra-x86_64/



[arch-commits] Commit in truecrypt/repos (extra-x86_64)

2010-09-26 Thread Paul Mattal
Date: Sunday, September 26, 2010 @ 22:12:53
  Author: paul
Revision: 91384

archrelease: copy trunk to extra-x86_64

Added:
  truecrypt/repos/extra-x86_64/



[arch-commits] Commit in texlive-genericextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:14:24
  Author: remy
Revision: 91386

archrelease: copy trunk to testing-any

Added:
  texlive-genericextra/repos/testing-any/



[arch-commits] Commit in texlive-plainextra/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:15:10
  Author: remy
Revision: 91387

archrelease: remove testing-any

Deleted:
  texlive-plainextra/repos/testing-any/



[arch-commits] Commit in texlive-pictures/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:16:42
  Author: remy
Revision: 91389

archrelease: remove testing-any

Deleted:
  texlive-pictures/repos/testing-any/



[arch-commits] Commit in texlive-pictures/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:16:50
  Author: remy
Revision: 91390

archrelease: copy trunk to testing-any

Added:
  texlive-pictures/repos/testing-any/



[arch-commits] Commit in texlive-langcjk/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:29:39
  Author: remy
Revision: 91391

archrelease: remove testing-any

Deleted:
  texlive-langcjk/repos/testing-any/



[arch-commits] Commit in texlive-langcjk/repos (testing-any)

2010-09-26 Thread Rémy Oudompheng
Date: Sunday, September 26, 2010 @ 23:29:50
  Author: remy
Revision: 91392

archrelease: copy trunk to testing-any

Added:
  texlive-langcjk/repos/testing-any/