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

2011-08-17 Thread Dan McGee
Date: Thursday, August 18, 2011 @ 02:22:30
  Author: dan
Revision: 135730

Fix version comparison issues reported in FS#25408; also a handful of fixes 
from FS#23435

Modified:
  emacs/trunk/PKGBUILD

--+
 PKGBUILD |   53 -
 1 file changed, 28 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-18 05:00:13 UTC (rev 135729)
+++ PKGBUILD2011-08-18 06:22:30 UTC (rev 135730)
@@ -2,7 +2,12 @@
 # Maintainer: Juergen Hoetzel 
 # Contributor: Renchi Raju 
 pkgname=emacs
-pkgver=23.3a
+_majorver=23.3
+_minorver=a
+# We want something like "23.3.a" so pacman version comparison works, but
+# upstream uses "23.3a", which is a bit silly and interpreted as alpha.
+pkgver=$_majorver.$_minorver
+_realver=$_majorver$_minorver
 pkgrel=1
 pkgdesc="The Emacs Editor"
 arch=(i686 x86_64)
@@ -10,41 +15,39 @@
 license=('GPL')
 options=(docs)
 replaces=(cedet)
-depends=('dbus-core' 'librsvg' 'gpm'  'giflib' 'libtiff'  'libxpm' 'libjpeg' 
'gtk2' 'texinfo' 'hicolor-icon-theme' 'gconf')
-source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.gz emacs.desktop)
+depends=('dbus-core' 'librsvg' 'gpm' 'giflib' 'libtiff'  'libxpm' 'libjpeg' 
'libxft' 'gtk2' 'texinfo' 'hicolor-icon-theme' 'gconf')
+source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$_realver.tar.gz emacs.desktop)
 md5sums=('20aef9ea5b5bf8050d39f8b1e96a1c04'
  '8af038d2ba4561271e935bb444ceb4e3')
 install=emacs.install
 
 build() {
-  cd $startdir/src/$pkgname-${pkgver%[a-z]}
-  mandir=/usr/share/man
-
-  # gcc 4.5 Workaround: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43904
-  CFLAGS="${CFLAGS} -fno-optimize-sibling-calls"\
-./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --mandir=${mandir} --without-sound 
--with-x-toolkit=gtk
+  cd "$srcdir"/$pkgname-$_majorver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --mandir=/usr/share/man --without-sound \
+--with-x-toolkit=gtk --with-xft
   make
-  make DESTDIR=$startdir/pkg install
+}
 
+package() {
+  cd "$srcdir"/$pkgname-$_majorver
+  make DESTDIR="$pkgdir" install
+
   # remove conflict with ctags package
-  mv $startdir/pkg/usr/bin/{ctags,ctags.emacs}
-  mv $startdir/pkg/usr/bin/{etags,etags.emacs}
-  mv $startdir/pkg${mandir}/man1/{etags.1,etags.emacs.1}
-  mv $startdir/pkg${mandir}/man1/{ctags.1,ctags.emacs.1}
+  mv "$pkgdir"/usr/bin/{ctags,ctags.emacs}
+  mv "$pkgdir"/usr/share/man/man1/{ctags.1,ctags.emacs.1}
   # fix all the 777 perms on directories
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -type d -exec chmod 755 
{} \;
+  find "$pkgdir"/usr/share/emacs/$_majorver -type d -exec chmod 755 {} \;
   # fix user/root permissions on usr/share files
-  find $startdir/pkg/usr/share/emacs/${pkgver%[a-z]} -exec chown root.root {} 
\;
+  find "$pkgdir"/usr/share/emacs/$_majorver -exec chown root:root {} \;
   # fix perms on /var/games
-  chmod 775 ${startdir}/pkg/var/games
-  chmod 775 ${startdir}/pkg/var/games/emacs
-  chmod 664 ${startdir}/pkg/var/games/emacs/*
-  chown -R root:50 ${startdir}/pkg/var/games
+  chmod 775 "$pkgdir"/var/games
+  chmod 775 "$pkgdir"/var/games/emacs
+  chmod 664 "$pkgdir"/var/games/emacs/*
+  chown -R root:games "$pkgdir"/var/games
 
-
   # fix  FS#9253
-  mkdir -p $startdir/pkg/usr/share/pixmaps 
${startdir}/pkg/usr/share/applications
-  install -D -m644 ${startdir}/src/${pkgname}.desktop   
${startdir}/pkg/usr/share/applications
-  ln -s  
../emacs/${pkgver%[a-z]}/etc/images/icons/hicolor/48x48/apps/emacs.png 
$startdir/pkg/usr/share/pixmaps/emacs-icon.png
+  mkdir -p "$pkgdir"/usr/share/pixmaps "$pkgdir"/usr/share/applications
+  install -D -m644 "$srcdir"/$pkgname.desktop   
"$pkgdir"/usr/share/applications
+  ln -s  ../emacs/$_majorver/etc/images/icons/hicolor/48x48/apps/emacs.png 
"$pkgdir"/usr/share/pixmaps/emacs-icon.png
 }



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

2011-08-17 Thread Tobias Powalowski
Date: Thursday, August 18, 2011 @ 01:00:13
  Author: tpowa
Revision: 135729

archrelease: copy trunk to testing-x86_64

Added:
  linux/repos/testing-x86_64/
  linux/repos/testing-x86_64/PKGBUILD
(from rev 135728, linux/trunk/PKGBUILD)
  linux/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 135728, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-x86_64/config
(from rev 135728, linux/trunk/config)
  linux/repos/testing-x86_64/config.x86_64
(from rev 135728, linux/trunk/config.x86_64)
  linux/repos/testing-x86_64/fix-i915.patch
(from rev 135728, linux/trunk/fix-i915.patch)
  linux/repos/testing-x86_64/linux.install
(from rev 135728, linux/trunk/linux.install)
  linux/repos/testing-x86_64/linux.preset
(from rev 135728, linux/trunk/linux.preset)

---+
 PKGBUILD  |  282 +
 change-default-console-loglevel.patch |   12 
 config| 5772 
 config.x86_64 | 5513 ++
 fix-i915.patch|   26 
 linux.install |   66 
 linux.preset  |   14 
 7 files changed, 11685 insertions(+)

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


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

2011-08-17 Thread Tobias Powalowski
Date: Thursday, August 18, 2011 @ 00:58:55
  Author: tpowa
Revision: 135728

archrelease: copy trunk to testing-i686

Added:
  linux/repos/testing-i686/
  linux/repos/testing-i686/PKGBUILD
(from rev 135727, linux/trunk/PKGBUILD)
  linux/repos/testing-i686/change-default-console-loglevel.patch
(from rev 135727, linux/trunk/change-default-console-loglevel.patch)
  linux/repos/testing-i686/config
(from rev 135727, linux/trunk/config)
  linux/repos/testing-i686/config.x86_64
(from rev 135727, linux/trunk/config.x86_64)
  linux/repos/testing-i686/fix-i915.patch
(from rev 135727, linux/trunk/fix-i915.patch)
  linux/repos/testing-i686/linux.install
(from rev 135727, linux/trunk/linux.install)
  linux/repos/testing-i686/linux.preset
(from rev 135727, linux/trunk/linux.preset)

---+
 PKGBUILD  |  282 +
 change-default-console-loglevel.patch |   12 
 config| 5772 
 config.x86_64 | 5513 ++
 fix-i915.patch|   26 
 linux.install |   66 
 linux.preset  |   14 
 7 files changed, 11685 insertions(+)

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


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

2011-08-17 Thread Tobias Powalowski
Date: Thursday, August 18, 2011 @ 00:57:32
  Author: tpowa
Revision: 135727

upgpkg: linux 3.0.3-1

bump to latest version

Modified:
  linux/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-18 04:48:14 UTC (rev 135726)
+++ PKGBUILD2011-08-18 04:57:32 UTC (rev 135727)
@@ -7,7 +7,7 @@
 # pkgname=linux-custom   # Build kernel with a different name
 _kernelname=${pkgname#linux}
 _basekernel=3.0
-pkgver=${_basekernel}.2
+pkgver=${_basekernel}.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url="http://www.kernel.org/";
@@ -23,7 +23,7 @@
 'fix-i915.patch'
 'change-default-console-loglevel.patch')
 md5sums=('398e95866794def22b12dfbc15ce89c0'
- 'd4ff10b7c9a5d8d0aa4c97579c81b7f9'
+ 'e68b37e9a3fb07f21a4673a7d89359c0'
  'fc6aae0fb4d70feff92ec762d29dee45'
  'fd5a1712ddea696eee5255de2d854218'
  'eb14dcfd80c00852ef81ded6e826826a'
@@ -280,4 +280,3 @@
   # remove a file already in linux package
   rm -f "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
 }
-



[arch-commits] Commit in usbutils/repos/testing-i686 (5 files)

2011-08-17 Thread Eric Bélanger
Date: Thursday, August 18, 2011 @ 00:48:14
  Author: eric
Revision: 135726

archrelease: copy trunk to testing-i686

Added:
  usbutils/repos/testing-i686/PKGBUILD
(from rev 135725, usbutils/trunk/PKGBUILD)
  usbutils/repos/testing-i686/fix-python2.patch
(from rev 135725, usbutils/trunk/fix-python2.patch)
  usbutils/repos/testing-i686/usb.ids-2011.08.17
(from rev 135725, usbutils/trunk/usb.ids-2011.08.17)
Deleted:
  usbutils/repos/testing-i686/PKGBUILD
  usbutils/repos/testing-i686/fix-python2.patch

+
 PKGBUILD   |   86 
 fix-python2.patch  |   34 
 usb.ids-2011.08.17 |16529 +++
 3 files changed, 16589 insertions(+), 60 deletions(-)

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


[arch-commits] Commit in usbutils/repos/testing-x86_64 (5 files)

2011-08-17 Thread Eric Bélanger
Date: Thursday, August 18, 2011 @ 00:47:26
  Author: eric
Revision: 135725

archrelease: copy trunk to testing-x86_64

Added:
  usbutils/repos/testing-x86_64/PKGBUILD
(from rev 135724, usbutils/trunk/PKGBUILD)
  usbutils/repos/testing-x86_64/fix-python2.patch
(from rev 135724, usbutils/trunk/fix-python2.patch)
  usbutils/repos/testing-x86_64/usb.ids-2011.08.17
(from rev 135724, usbutils/trunk/usb.ids-2011.08.17)
Deleted:
  usbutils/repos/testing-x86_64/PKGBUILD
  usbutils/repos/testing-x86_64/fix-python2.patch

+
 PKGBUILD   |   86 
 fix-python2.patch  |   34 
 usb.ids-2011.08.17 |16529 +++
 3 files changed, 16589 insertions(+), 60 deletions(-)

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


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

2011-08-17 Thread Dan McGee
Date: Wednesday, August 17, 2011 @ 23:36:56
  Author: dan
Revision: 135724

archrelease: copy trunk to extra-x86_64

Added:
  memcached/repos/extra-x86_64/



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

2011-08-17 Thread Dan McGee
Date: Wednesday, August 17, 2011 @ 23:36:43
  Author: dan
Revision: 135723

archrelease: remove extra-x86_64

Deleted:
  memcached/repos/extra-x86_64/



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

2011-08-17 Thread Dan McGee
Date: Wednesday, August 17, 2011 @ 23:36:40
  Author: dan
Revision: 135722

archrelease: copy trunk to extra-i686

Added:
  memcached/repos/extra-i686/



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

2011-08-17 Thread Dan McGee
Date: Wednesday, August 17, 2011 @ 23:36:27
  Author: dan
Revision: 135721

archrelease: remove extra-i686

Deleted:
  memcached/repos/extra-i686/



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

2011-08-17 Thread Dan McGee
Date: Wednesday, August 17, 2011 @ 23:34:00
  Author: dan
Revision: 135720

verbump 1.4.7

Modified:
  memcached/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-18 02:53:15 UTC (rev 135719)
+++ PKGBUILD2011-08-18 03:34:00 UTC (rev 135720)
@@ -3,7 +3,7 @@
 # Contributor: Michael Irwin <6d6...@gmail.com>
 
 pkgname=memcached
-pkgver=1.4.6
+pkgver=1.4.7
 pkgrel=1
 pkgdesc="A distributed memory object caching system"
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 memcached.conf
memcached.sh)
 changelog=ChangeLog
-sha256sums=('4dba55457e4e7f5a3e8255325671bf1e1efbe89ee224fcc6993fcd659956d3f7'
+sha256sums=('925837a4cf440e3cb451e338413ed9ad1429fd0d80ba4d903955f5fed8da7be6'
 '0e57a0f528b387f1f04f628ec74856c615d82d44f4d6bc041c33b3814ce13d0a'
 '72efa639c5a39c7c14f07cc51731ebbf82299870d9cf31cf3aaa981bc084b4eb')
 



[arch-commits] Commit in xpdf-languages/repos (testing-any)

2011-08-17 Thread Gaetan Bisson
Date: Wednesday, August 17, 2011 @ 22:53:15
  Author: bisson
Revision: 135719

archrelease: copy trunk to testing-any

Added:
  xpdf-languages/repos/testing-any/



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

2011-08-17 Thread Gaetan Bisson
Date: Wednesday, August 17, 2011 @ 22:47:39
  Author: bisson
Revision: 135718

archrelease: copy trunk to testing-x86_64

Added:
  xpdf/repos/testing-x86_64/



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

2011-08-17 Thread Gaetan Bisson
Date: Wednesday, August 17, 2011 @ 22:47:33
  Author: bisson
Revision: 135717

archrelease: copy trunk to testing-i686

Added:
  xpdf/repos/testing-i686/



[arch-commits] Commit in xpdf/trunk (7 files)

2011-08-17 Thread Gaetan Bisson
Date: Wednesday, August 17, 2011 @ 22:47:24
  Author: bisson
Revision: 135716

upstream update

Added:
  xpdf/trunk/char.patch
  xpdf/trunk/desktop
(from rev 135705, xpdf/trunk/xpdf.desktop)
  xpdf/trunk/install
(from rev 135705, xpdf/trunk/xpdf.install)
Modified:
  xpdf/trunk/PKGBUILD
Deleted:
  xpdf/trunk/xpdf-3.00-xfont.patch
  xpdf/trunk/xpdf.desktop
  xpdf/trunk/xpdf.install

---+
 PKGBUILD  |  104 ++--
 char.patch|   12 +
 desktop   |9 
 install   |   11 +
 xpdf-3.00-xfont.patch |   11 -
 xpdf.desktop  |9 
 xpdf.install  |   11 -
 7 files changed, 80 insertions(+), 87 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-18 02:10:20 UTC (rev 135715)
+++ PKGBUILD2011-08-18 02:47:24 UTC (rev 135716)
@@ -4,71 +4,63 @@
 # Contributor: Sarah Hay 
 
 pkgname=xpdf
-_srcver=3.02
-_patchlevel=pl6
-pkgver=${_srcver}_${_patchlevel}
+#pkgver=3.03_pl1
+pkgver=3.03
 pkgrel=1
-pkgdesc="A viewer for Portable Document Format (PDF) files"
+pkgdesc='Viewer for Portable Document Format (PDF) files'
+url='http://www.foolabs.com/xpdf/'
+license=('GPL2')
 arch=('i686' 'x86_64')
-license=('GPL')
-depends=('lesstif' 'gsfonts' 'libxt' 'desktop-file-utils')
-optdepends=('poppler: pdf tools that used to be included in xpdf')
+depends=('lesstif' 'gsfonts' 'libxt')
+optdepends=('poppler: tools that used to be included in xpdf'
+'desktop-file-utils: for desktop environments')
+#   "ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${pkgver%_*}pl1.patch";
+source=("ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${pkgver%_*}.tar.gz";
+'char.patch'
+'desktop')
+sha1sums=('499423e8a795e0efd76ca798239eb4d0d52fe248'
+  '5c471944685a6b24a2b0c0e000562d1a3263aeeb'
+  '3b6fe01636253676ffa0efe1b237a75af4721f6d')
+
+install=install
 backup=('etc/xpdfrc')
-url="http://www.foolabs.com/xpdf/";
-install=${pkgname}.install
-source=(ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}.tar.gz
-ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}pl1.patch
-ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}pl2.patch
-ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}pl3.patch
-ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}pl4.patch
-ftp://ftp.foolabs.com/pub/${pkgname}/${pkgname}-${_srcver}pl5.patch
-xpdf-3.00-xfont.patch
-xpdf.desktop)
-md5sums=('599dc4cc65a07ee868cf92a667a913d2'
- '877118786dfe27d1b7aa5a6759cc6e45'
- '3a5cb165ae66781e0b21e6219ae06795'
- '581963ede0fb5715e1a69f01b5b8ce63'
- '70b752716798dd341a4bf890df5f6fdc'
- '504902ca5e9d66c67eed03636ec6b163'
- '6490de55687e0d2389212c1b5bbcf916'
- '93b9df5ebef3bc56133236ef3f176bb7')
 
 build() {
-  cd "${srcdir}/${pkgname}-${_srcver}"
+   cd "${srcdir}/${pkgname}-${pkgver%_*}"
 
-  patch -Np1 -i "${srcdir}/${pkgname}-${_srcver}pl1.patch"
-  patch -Np1 -i "${srcdir}/${pkgname}-${_srcver}pl2.patch"
-  patch -Np1 -i "${srcdir}/${pkgname}-${_srcver}pl3.patch"
-  patch -Np1 -i "${srcdir}/${pkgname}-${_srcver}pl4.patch"
-  patch -Np1 -i "${srcdir}/${pkgname}-${_srcver}pl5.patch"
-  patch -Np1 -i "${srcdir}/xpdf-3.00-xfont.patch"
-  sed -i 's:/usr/share/fonts/type1/gsfonts:/usr/share/fonts/Type1:' 
xpdf/GlobalParams.cc
+#  patch -p1 -i "../${pkgname}-${_srcver}pl1.patch"
+   patch -p1 -i ../char.patch
 
-  ./configure  \
---prefix=/usr  \
---sysconfdir=/etc  \
---mandir=/usr/share/man\
---enable-multithreaded \
---enable-wordlist  \
---with-freetype2-library=/usr/lib  \
---with-freetype2-includes=/usr/include/freetype2   \
---x-includes=/usr/include  \
---with-Xm-library=/usr/lib \
---with-Xm-includes=/usr/include
-  make
+   sed -i 's:/usr/share/fonts/type1/gsfonts:/usr/share/fonts/Type1:' 
xpdf/GlobalParams.cc
+   sed -i 's:times-medium-r-normal--16:times-medium-r-normal--14:' 
xpdf/XPDFViewer.cc # FS#14217
+
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --mandir=/usr/share/man \
+   --enable-multithreaded \
+   --enable-wordlist \
+   --with-freetype2-library=/usr/lib \
+   --with-freetype2-includes=/usr/include/freetype2 \
+   --x-includes=/usr/include \
+   --with-Xm-library=/usr/lib \
+   --with-Xm-includes=/usr/include \
+
+   

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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:20
  Author: allan
Revision: 135715

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

Added:
  pcre/repos/core-x86_64/PKGBUILD
(from rev 135709, pcre/repos/testing-x86_64/PKGBUILD)
Deleted:
  pcre/repos/core-x86_64/PKGBUILD
  pcre/repos/testing-x86_64/

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-18 02:10:19 UTC (rev 135714)
+++ core-x86_64/PKGBUILD2011-08-18 02:10:20 UTC (rev 135715)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=pcre
-pkgver=8.12
-pkgrel=1
-pkgdesc="A library that implements Perl 5-style regular expressions"
-arch=('i686' 'x86_64')
-url="http://www.pcre.org/";
-license=('BSD')
-depends=('gcc-libs')
-options=('!libtool')
-source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f14a9fef3c92f3fc6c5ac92d7a2c7eb3')
-sha1sums=('2219b372bff53ee29a7e44ecf5977ad15df01cea')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
-  ./configure --prefix=/usr --enable-utf8 --enable-unicode-properties
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  # grep uses pcre, so we need the libs in /lib
-  install -dm755 "${pkgdir}"/lib
-  mv "${pkgdir}"/usr/lib/libpcre.so.* "${pkgdir}"/lib/
-  ln -sf /lib/libpcre.so.0 "${pkgdir}"/usr/lib/libpcre.so
-
-  install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: pcre/repos/core-x86_64/PKGBUILD (from rev 135709, 
pcre/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-18 02:10:20 UTC (rev 135715)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=pcre
+pkgver=8.13
+pkgrel=1
+pkgdesc="A library that implements Perl 5-style regular expressions"
+arch=('i686' 'x86_64')
+url="http://www.pcre.org/";
+license=('BSD')
+depends=('gcc-libs')
+options=('!libtool')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('5e595edbcded141813fa1a10dbce05cb')
+
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
+  ./configure --prefix=/usr --enable-utf8 --enable-unicode-properties
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # grep uses pcre, so we need the libs in /lib
+  install -dm755 "${pkgdir}"/lib
+  mv "${pkgdir}"/usr/lib/libpcre.so.* "${pkgdir}"/lib/
+  ln -sf /lib/libpcre.so.0 "${pkgdir}"/usr/lib/libpcre.so
+
+  install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:19
  Author: allan
Revision: 135714

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

Added:
  pcre/repos/core-i686/PKGBUILD
(from rev 135709, pcre/repos/testing-i686/PKGBUILD)
Deleted:
  pcre/repos/core-i686/PKGBUILD
  pcre/repos/testing-i686/

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-18 02:10:18 UTC (rev 135713)
+++ core-i686/PKGBUILD  2011-08-18 02:10:19 UTC (rev 135714)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Eric Belanger 
-# Contributor: John Proctor 
-
-pkgname=pcre
-pkgver=8.12
-pkgrel=1
-pkgdesc="A library that implements Perl 5-style regular expressions"
-arch=('i686' 'x86_64')
-url="http://www.pcre.org/";
-license=('BSD')
-depends=('gcc-libs')
-options=('!libtool')
-source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f14a9fef3c92f3fc6c5ac92d7a2c7eb3')
-sha1sums=('2219b372bff53ee29a7e44ecf5977ad15df01cea')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
-  ./configure --prefix=/usr --enable-utf8 --enable-unicode-properties
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-
-  # grep uses pcre, so we need the libs in /lib
-  install -dm755 "${pkgdir}"/lib
-  mv "${pkgdir}"/usr/lib/libpcre.so.* "${pkgdir}"/lib/
-  ln -sf /lib/libpcre.so.0 "${pkgdir}"/usr/lib/libpcre.so
-
-  install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: pcre/repos/core-i686/PKGBUILD (from rev 135709, 
pcre/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-18 02:10:19 UTC (rev 135714)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Eric Belanger 
+# Contributor: John Proctor 
+
+pkgname=pcre
+pkgver=8.13
+pkgrel=1
+pkgdesc="A library that implements Perl 5-style regular expressions"
+arch=('i686' 'x86_64')
+url="http://www.pcre.org/";
+license=('BSD')
+depends=('gcc-libs')
+options=('!libtool')
+source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('5e595edbcded141813fa1a10dbce05cb')
+
+
+build() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  [ "${CARCH}" = "x86_64" ] && export CFLAGS="${CFLAGS} -fPIC"
+  ./configure --prefix=/usr --enable-utf8 --enable-unicode-properties
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # grep uses pcre, so we need the libs in /lib
+  install -dm755 "${pkgdir}"/lib
+  mv "${pkgdir}"/usr/lib/libpcre.so.* "${pkgdir}"/lib/
+  ln -sf /lib/libpcre.so.0 "${pkgdir}"/usr/lib/libpcre.so
+
+  install -Dm644 LICENCE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:18
  Author: allan
Revision: 135713

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

Added:
  wget/repos/core-x86_64/PKGBUILD
(from rev 135709, wget/repos/testing-x86_64/PKGBUILD)
  wget/repos/core-x86_64/wget.install
(from rev 135709, wget/repos/testing-x86_64/wget.install)
Deleted:
  wget/repos/core-x86_64/PKGBUILD
  wget/repos/core-x86_64/wget.install
  wget/repos/testing-x86_64/

--+
 PKGBUILD |   90 -
 wget.install |   40 -
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-18 02:10:16 UTC (rev 135712)
+++ core-x86_64/PKGBUILD2011-08-18 02:10:18 UTC (rev 135713)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Judd Vinet 
-
-pkgname=wget
-pkgver=1.13
-pkgrel=1
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-groups=('base')
-depends=('glibc' 'openssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('48c5384123156e7b7501d2f5b5c7189a')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Note : We do not build with --enable-nls, because there is a bug in wget 
causing
-  # international domain names to be not properly converted to punycode if
-  # the current locale is a UTF-8 one
-  # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
-
-  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cat >> "$pkgdir/etc/wgetrc" <
+# Contributor: Judd Vinet 
+
+pkgname=wget
+pkgver=1.13.1
+pkgrel=1
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'openssl')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('5c9056fcec2f398111e97be65e8592cc')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Note : We do not build with --enable-nls, because there is a bug in wget 
causing
+  # international domain names to be not properly converted to punycode if
+  # the current locale is a UTF-8 one
+  # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
+
+  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  cat >> "$pkgdir/etc/wgetrc" < /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: wget/repos/core-x86_64/wget.install (from rev 135709, 
wget/repos/testing-x86_64/wget.install)
===
--- core-x86_64/wget.install(rev 0)
+++ core-x86_64/wget.install2011-08-18 02:10:18 UTC (rev 135713)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(wget.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}



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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:16
  Author: allan
Revision: 135712

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

Added:
  wget/repos/core-i686/PKGBUILD
(from rev 135709, wget/repos/testing-i686/PKGBUILD)
  wget/repos/core-i686/wget.install
(from rev 135709, wget/repos/testing-i686/wget.install)
Deleted:
  wget/repos/core-i686/PKGBUILD
  wget/repos/core-i686/wget.install
  wget/repos/testing-i686/

--+
 PKGBUILD |   90 -
 wget.install |   40 -
 2 files changed, 65 insertions(+), 65 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-18 02:10:15 UTC (rev 135711)
+++ core-i686/PKGBUILD  2011-08-18 02:10:16 UTC (rev 135712)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Judd Vinet 
-
-pkgname=wget
-pkgver=1.13
-pkgrel=1
-pkgdesc="A network utility to retrieve files from the Web"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/wget/wget.html";
-license=('GPL3')
-groups=('base')
-depends=('glibc' 'openssl')
-optdepends=('ca-certificates: HTTPS downloads')
-backup=('etc/wgetrc')
-install=wget.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('48c5384123156e7b7501d2f5b5c7189a')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Note : We do not build with --enable-nls, because there is a bug in wget 
causing
-  # international domain names to be not properly converted to punycode if
-  # the current locale is a UTF-8 one
-  # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
-
-  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cat >> "$pkgdir/etc/wgetrc" <
+# Contributor: Judd Vinet 
+
+pkgname=wget
+pkgver=1.13.1
+pkgrel=1
+pkgdesc="A network utility to retrieve files from the Web"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/wget/wget.html";
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'openssl')
+optdepends=('ca-certificates: HTTPS downloads')
+backup=('etc/wgetrc')
+install=wget.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('5c9056fcec2f398111e97be65e8592cc')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Note : We do not build with --enable-nls, because there is a bug in wget 
causing
+  # international domain names to be not properly converted to punycode if
+  # the current locale is a UTF-8 one
+  # See : http://lists.gnu.org/archive/html/bug-wget/2011-02/msg00026.html
+
+  ./configure -with-ssl=openssl --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  cat >> "$pkgdir/etc/wgetrc" < /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Copied: wget/repos/core-i686/wget.install (from rev 135709, 
wget/repos/testing-i686/wget.install)
===
--- core-i686/wget.install  (rev 0)
+++ core-i686/wget.install  2011-08-18 02:10:16 UTC (rev 135712)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(wget.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file $infodir/dir 2> /dev/null
+  done
+}



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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:15
  Author: allan
Revision: 135711

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

Added:
  diffutils/repos/core-x86_64/PKGBUILD
(from rev 135709, diffutils/repos/testing-x86_64/PKGBUILD)
  diffutils/repos/core-x86_64/diffutils.install
(from rev 135709, diffutils/repos/testing-x86_64/diffutils.install)
Deleted:
  diffutils/repos/core-x86_64/PKGBUILD
  diffutils/repos/core-x86_64/diffutils.install
  diffutils/repos/testing-x86_64/

---+
 PKGBUILD  |   59 
 diffutils.install |   40 +--
 2 files changed, 52 insertions(+), 47 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2011-08-18 02:10:14 UTC (rev 135710)
+++ core-x86_64/PKGBUILD2011-08-18 02:10:15 UTC (rev 135711)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Andreas Radke 
-
-pkgname=diffutils
-pkgver=3.0
-pkgrel=2
-pkgdesc="Utility programs used for creating patch files"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/diffutils";
-license=('GPL3')
-groups=('base')
-depends=('glibc' 'sh')
-install=diffutils.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('7624eb7e6b53ea3ce38958a092d2216e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: diffutils/repos/core-x86_64/PKGBUILD (from rev 135709, 
diffutils/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2011-08-18 02:10:15 UTC (rev 135711)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=diffutils
+pkgver=3.1
+pkgrel=1
+pkgdesc="Utility programs used for creating patch files"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/diffutils";
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'sh')
+install=diffutils.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('fbb1d804849fa32ff5853f028a3be46f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: core-x86_64/diffutils.install
===
--- core-x86_64/diffutils.install   2011-08-18 02:10:14 UTC (rev 135710)
+++ core-x86_64/diffutils.install   2011-08-18 02:10:15 UTC (rev 135711)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(diff.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}

Copied: diffutils/repos/core-x86_64/diffutils.install (from rev 135709, 
diffutils/repos/testing-x86_64/diffutils.install)
===
--- core-x86_64/diffutils.install   (rev 0)
+++ core-x86_64/diffutils.install   2011-08-18 02:10:15 UTC (rev 135711)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(diffutils.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}



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

2011-08-17 Thread Allan McRae
Date: Wednesday, August 17, 2011 @ 22:10:14
  Author: allan
Revision: 135710

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

Added:
  diffutils/repos/core-i686/PKGBUILD
(from rev 135709, diffutils/repos/testing-i686/PKGBUILD)
  diffutils/repos/core-i686/diffutils.install
(from rev 135709, diffutils/repos/testing-i686/diffutils.install)
Deleted:
  diffutils/repos/core-i686/PKGBUILD
  diffutils/repos/core-i686/diffutils.install
  diffutils/repos/testing-i686/

---+
 PKGBUILD  |   59 
 diffutils.install |   40 +--
 2 files changed, 52 insertions(+), 47 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2011-08-18 01:49:54 UTC (rev 135709)
+++ core-i686/PKGBUILD  2011-08-18 02:10:14 UTC (rev 135710)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae 
-# Contributor: Andreas Radke 
-
-pkgname=diffutils
-pkgver=3.0
-pkgrel=2
-pkgdesc="Utility programs used for creating patch files"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/diffutils";
-license=('GPL3')
-groups=('base')
-depends=('glibc' 'sh')
-install=diffutils.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
-md5sums=('7624eb7e6b53ea3ce38958a092d2216e')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: diffutils/repos/core-i686/PKGBUILD (from rev 135709, 
diffutils/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2011-08-18 02:10:14 UTC (rev 135710)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=diffutils
+pkgver=3.1
+pkgrel=1
+pkgdesc="Utility programs used for creating patch files"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/diffutils";
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'sh')
+install=diffutils.install
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz)
+md5sums=('fbb1d804849fa32ff5853f028a3be46f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Deleted: core-i686/diffutils.install
===
--- core-i686/diffutils.install 2011-08-18 01:49:54 UTC (rev 135709)
+++ core-i686/diffutils.install 2011-08-18 02:10:14 UTC (rev 135710)
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(diff.info)
-
-post_install() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
-  done
-}

Copied: diffutils/repos/core-i686/diffutils.install (from rev 135709, 
diffutils/repos/testing-i686/diffutils.install)
===
--- core-i686/diffutils.install (rev 0)
+++ core-i686/diffutils.install 2011-08-18 02:10:14 UTC (rev 135710)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(diffutils.info)
+
+post_install() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+  done
+}



[arch-commits] Commit in (10 files)

2011-08-17 Thread Gaetan Bisson
Date: Wednesday, August 17, 2011 @ 21:49:54
  Author: bisson
Revision: 135709

this splitpkg replaces/provides all individual encoding packages for xpdf:

xpdf-arabic, xpdf-chinese-simplified, xpdf-chinese-traditional,
xpdf-cyrillic, xpdf-greek, xpdf-hebrew, xpdf-japanese,
xpdf-korean, xpdf-latin2, xpdf-thai, xpdf-turkish

Added:
  xpdf-languages/
  xpdf-languages/repos/
  xpdf-languages/trunk/
  xpdf-languages/trunk/LICENSE.adobe
  xpdf-languages/trunk/PKGBUILD
  xpdf-languages/trunk/install
  xpdf-languages/trunk/xpdfrc-chinese-simplified.add
  xpdf-languages/trunk/xpdfrc-chinese-traditional.add
  xpdf-languages/trunk/xpdfrc-japanese.add
  xpdf-languages/trunk/xpdfrc-korean.add

+
 LICENSE.adobe  |   18 +
 PKGBUILD   |   71 +++
 install|   17 +
 xpdfrc-chinese-simplified.add  |1 
 xpdfrc-chinese-traditional.add |1 
 xpdfrc-japanese.add|   10 +
 xpdfrc-korean.add  |2 +
 7 files changed, 120 insertions(+)

Added: xpdf-languages/trunk/LICENSE.adobe
===
--- xpdf-languages/trunk/LICENSE.adobe  (rev 0)
+++ xpdf-languages/trunk/LICENSE.adobe  2011-08-18 01:49:54 UTC (rev 135709)
@@ -0,0 +1,18 @@
+---
+Copyright 1990-1999 Adobe Systems Incorporated.
+All Rights Reserved.
+
+Patents Pending
+
+NOTICE: All information contained herein is the property
+of Adobe Systems Incorporated.
+
+Permission is granted for redistribution of this file
+provided this copyright notice is maintained intact and
+that the contents of this file are not altered in any
+way from its original form.
+
+PostScript and Display PostScript are trademarks of
+Adobe Systems Incorporated which may be registered in
+certain jurisdictions.
+---

Added: xpdf-languages/trunk/PKGBUILD
===
--- xpdf-languages/trunk/PKGBUILD   (rev 0)
+++ xpdf-languages/trunk/PKGBUILD   2011-08-18 01:49:54 UTC (rev 135709)
@@ -0,0 +1,71 @@
+# $Id$
+# Contributor: Tobias Kieslich 
+# Contributor: Eric Belanger 
+# Maintainer: Gaetan Bisson 
+
+pkgbase=xpdf-languages
+pkgver=20110815
+pkgrel=1
+pkgdesc='Encoding information to use specific character sets in Xpdf; does not 
include fonts'
+url='http://foolabs.com/xpdf/'
+license=('GPL2')
+arch=('any')
+depends=('xpdf')
+
+install=install
+
+pkgname=('xpdf-arabic'
+ 'xpdf-chinese-simplified'
+ 'xpdf-chinese-traditional'
+ 'xpdf-cyrillic'
+ 'xpdf-greek'
+ 'xpdf-hebrew'
+ 'xpdf-japanese'
+ 'xpdf-korean'
+ 'xpdf-latin2'
+ 'xpdf-thai'
+ 'xpdf-turkish')
+
+_tars=(${pkgname[@]/%/.tar.gz})
+source=(${_tars[@]/#/ftp://ftp.foolabs.com/pub/xpdf/}
+'xpdfrc-chinese-simplified.add'
+'xpdfrc-chinese-traditional.add'
+'xpdfrc-japanese.add'
+'xpdfrc-korean.add'
+'LICENSE.adobe')
+
+sha1sums=('b3d1f6fa2299de0b6ee25ea73967502ea3a98228'
+  'aa9745f435841fc0f86f744257446bae82975f18'
+  'a97f21bc551da092abe557ac70ab1fb57703cf57'
+  'c5c55919064e452e712a83c69063479a2de08e80'
+  '0e968c80d21352a36fcded0916b8a623af02ec40'
+  '2820c90b1f303849ed24aabd9afd8581daba095b'
+  '19f263a00dd2b4bbec93c0787d96cd96a05dfd0b'
+  '7b3ce80d37f2abbcafdf20c1524944732c5b4836'
+  '508f237d795bb26abf89fb598a87555af159'
+  'd8bf58d960121508fb823c7bc7475bc0008b670e'
+  'aabf97033e074593b3efccfdd92068e41e48c356'
+  '6bb0b98d0bae449388395e8d211a5998de7de8d6'
+  '87717bed8e5db3b0c6f1b23e9094aebfdffcec75'
+  'd0a88b14d6cdf2ee9cfe12d12fedc22e23c1f435'
+  '5f12a6fb5d45c9052c86b43e0422335be98c492f'
+  '1a6619a36e605909de20ca4cca4dd3ade1494667')
+
+for i in ${pkgname[@]}; do j=${i/xpdf-/}; eval 'package_'${i}'() {
+   cd "${srcdir}"
+   
+   sed \
+   -e "s:/usr/local/share/xpdf:/usr/share/xpdf:" \
+   -e "/displayCIDFontX.*/d" \
+   -i '${i}'/add-to-xpdfrc \
+
+   [[ -e xpdfrc-'${j}'.add ]] && {
+   cat xpdfrc-'${j}'.add >> '${i}'/add-to-xpdfrc
+   # exactly those packages for which `grep -q Adobe *` matches...
+   install -D LICENSE.adobe 
"${pkgdir}"/usr/share/licenses/'${i}'/LICENSE
+   license=(GPL2 custom)
+   }
+
+   install -d "${pkgdir}"/usr/share/xpdf
+   cp -r '${i}' "${pkgdir}"/usr/share/xpdf/'${j}'
+}'; done


Property changes on: xpdf-languages/trunk/PKGBUILD
___
Added: svn:keywords
   + Id

Added: xpdf-languages/trunk/install
==

[arch-commits] Commit in freeciv/repos/extra-x86_64 (4 files)

2011-08-17 Thread Eric Bélanger
Date: Wednesday, August 17, 2011 @ 21:12:48
  Author: eric
Revision: 135708

archrelease: copy trunk to extra-x86_64

Added:
  freeciv/repos/extra-x86_64/PKGBUILD
(from rev 135707, freeciv/trunk/PKGBUILD)
  freeciv/repos/extra-x86_64/freeciv.install
(from rev 135707, freeciv/trunk/freeciv.install)
Deleted:
  freeciv/repos/extra-x86_64/PKGBUILD
  freeciv/repos/extra-x86_64/freeciv.install

-+
 PKGBUILD|   54 +++---
 freeciv.install |   22 +++---
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-18 01:12:31 UTC (rev 135707)
+++ PKGBUILD2011-08-18 01:12:48 UTC (rev 135708)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=freeciv
-pkgver=2.2.7
-pkgrel=1
-pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
-arch=('i686' 'x86_64')
-url="http://www.freeciv.org/";
-license=('GPL')
-depends=('gtk2' 'sdl_mixer' 'bzip2' 'hicolor-icon-theme')
-options=('!libtool')
-install=freeciv.install
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('db61c36222ad0bd1de233cf29226ff27')
-sha1sums=('b7cf680a25e9006cb3a289a2e5c786dd385577cb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-client=gtk --enable-shared
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: freeciv/repos/extra-x86_64/PKGBUILD (from rev 135707, 
freeciv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-18 01:12:48 UTC (rev 135708)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=freeciv
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
+arch=('i686' 'x86_64')
+url="http://www.freeciv.org/";
+license=('GPL')
+depends=('gtk2' 'sdl_mixer' 'bzip2' 'hicolor-icon-theme')
+options=('!libtool')
+install=freeciv.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('70fd4285f2da7d41bdadac43458e62c9')
+sha1sums=('d4e871ad749e1807957df4e353fbb8f5510b7248')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-client=gtk --enable-shared
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: freeciv.install
===
--- freeciv.install 2011-08-18 01:12:31 UTC (rev 135707)
+++ freeciv.install 2011-08-18 01:12:48 UTC (rev 135708)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: freeciv/repos/extra-x86_64/freeciv.install (from rev 135707, 
freeciv/trunk/freeciv.install)
===
--- freeciv.install (rev 0)
+++ freeciv.install 2011-08-18 01:12:48 UTC (rev 135708)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



[arch-commits] Commit in freeciv/repos/extra-i686 (4 files)

2011-08-17 Thread Eric Bélanger
Date: Wednesday, August 17, 2011 @ 21:12:31
  Author: eric
Revision: 135707

archrelease: copy trunk to extra-i686

Added:
  freeciv/repos/extra-i686/PKGBUILD
(from rev 135706, freeciv/trunk/PKGBUILD)
  freeciv/repos/extra-i686/freeciv.install
(from rev 135706, freeciv/trunk/freeciv.install)
Deleted:
  freeciv/repos/extra-i686/PKGBUILD
  freeciv/repos/extra-i686/freeciv.install

-+
 PKGBUILD|   54 +++---
 freeciv.install |   22 +++---
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-18 01:12:04 UTC (rev 135706)
+++ PKGBUILD2011-08-18 01:12:31 UTC (rev 135707)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=freeciv
-pkgver=2.2.7
-pkgrel=1
-pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
-arch=('i686' 'x86_64')
-url="http://www.freeciv.org/";
-license=('GPL')
-depends=('gtk2' 'sdl_mixer' 'bzip2' 'hicolor-icon-theme')
-options=('!libtool')
-install=freeciv.install
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('db61c36222ad0bd1de233cf29226ff27')
-sha1sums=('b7cf680a25e9006cb3a289a2e5c786dd385577cb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-client=gtk --enable-shared
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: freeciv/repos/extra-i686/PKGBUILD (from rev 135706, 
freeciv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-18 01:12:31 UTC (rev 135707)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=freeciv
+pkgver=2.3.0
+pkgrel=1
+pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
+arch=('i686' 'x86_64')
+url="http://www.freeciv.org/";
+license=('GPL')
+depends=('gtk2' 'sdl_mixer' 'bzip2' 'hicolor-icon-theme')
+options=('!libtool')
+install=freeciv.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('70fd4285f2da7d41bdadac43458e62c9')
+sha1sums=('d4e871ad749e1807957df4e353fbb8f5510b7248')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-client=gtk --enable-shared
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: freeciv.install
===
--- freeciv.install 2011-08-18 01:12:04 UTC (rev 135706)
+++ freeciv.install 2011-08-18 01:12:31 UTC (rev 135707)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: freeciv/repos/extra-i686/freeciv.install (from rev 135706, 
freeciv/trunk/freeciv.install)
===
--- freeciv.install (rev 0)
+++ freeciv.install 2011-08-18 01:12:31 UTC (rev 135707)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2011-08-17 Thread Eric Bélanger
Date: Wednesday, August 17, 2011 @ 21:12:04
  Author: eric
Revision: 135706

upgpkg: freeciv 2.3.0-1

Upstream update

Modified:
  freeciv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 16:07:55 UTC (rev 135705)
+++ PKGBUILD2011-08-18 01:12:04 UTC (rev 135706)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=freeciv
-pkgver=2.2.7
+pkgver=2.3.0
 pkgrel=1
 pkgdesc="A multiuser clone of the famous Microprose game of Civilization"
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 options=('!libtool')
 install=freeciv.install
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('db61c36222ad0bd1de233cf29226ff27')
-sha1sums=('b7cf680a25e9006cb3a289a2e5c786dd385577cb')
+md5sums=('70fd4285f2da7d41bdadac43458e62c9')
+sha1sums=('d4e871ad749e1807957df4e353fbb8f5510b7248')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in lensfun/repos/extra-x86_64 (6 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 12:07:55
  Author: tpowa
Revision: 135705

archrelease: copy trunk to extra-x86_64

Added:
  lensfun/repos/extra-x86_64/PKGBUILD
(from rev 135704, lensfun/trunk/PKGBUILD)
  lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch
(from rev 135704, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
  lensfun/repos/extra-x86_64/lensfun-0.2.3-glibc-2.10.patch
(from rev 135704, lensfun/trunk/lensfun-0.2.3-glibc-2.10.patch)
Deleted:
  lensfun/repos/extra-x86_64/PKGBUILD
  lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch
  lensfun/repos/extra-x86_64/lensfun-0.2.3-glibc-2.10.patch

+
 PKGBUILD   |   64 +++
 lensfun-0.2.3-as-needed.patch  |   26 +++
 lensfun-0.2.3-glibc-2.10.patch |   22 ++---
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 16:07:08 UTC (rev 135704)
+++ PKGBUILD2011-08-17 16:07:55 UTC (rev 135705)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=lensfun
-pkgver=0.2.5
-pkgrel=2
-pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
-arch=(i686 x86_64)
-url="http://lensfun.berlios.de/";
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('python' 'libpng' 'doxygen')
-source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
-"runtime.cpu.detection.fix.backport.patch")
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
-patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
-./configure \
---prefix=/usr \
---libdir=/usr/lib
-make all
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make INSTALL_PREFIX="$pkgdir" install
-}
-
-md5sums=('a10438dffae68a5988fc54b0393a3755'
- 'a2033928f263db319de78182ab12fb7d')

Copied: lensfun/repos/extra-x86_64/PKGBUILD (from rev 135704, 
lensfun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 16:07:55 UTC (rev 135705)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=lensfun
+pkgver=0.2.5
+pkgrel=2
+pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
+arch=(i686 x86_64)
+url="http://lensfun.berlios.de/";
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen')
+source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+"runtime.cpu.detection.fix.backport.patch")
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
+patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
+./configure \
+--prefix=/usr \
+--libdir=/usr/lib
+make all
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make INSTALL_PREFIX="$pkgdir" install
+}
+
+md5sums=('a10438dffae68a5988fc54b0393a3755'
+ 'a2033928f263db319de78182ab12fb7d')

Deleted: lensfun-0.2.3-as-needed.patch
===
--- lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:08 UTC (rev 135704)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:55 UTC (rev 135705)
@@ -1,13 +0,0 @@
-diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
 lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
-+++ lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
-@@ -71,7 +71,7 @@
- endef
- 
- LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
--LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-+LINK.GCC.EXEC = $(GCC.LD) $(LDFLAGS) $^ $2 $(GCC.LDFLAGS.LIBS) 
$(LDFLAGS.LIBS) $(GCC.LDFLAGS) $1 -o $@
- define LINK.GCC.SO
-   $(GCC.LD) -o $@.$(SHARED.$3) -Wl,"-soname=$(notdir $@).$(basename 
$(basename $(SHARED.$3)))" $(GCC.LDFLAGS.SHARED) $(GCC.LDFLAGS) $(LDFLAGS) $1 
$^ $(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-   ln -fs $(notdir $@.$(SHARED.$3)) $@.$(basename $(basename $(SHARED.$3)))
-Only in lensfun-0.2.3/out/posix/release: deps

Copied: lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch (from rev 
135704, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
===
--- lensfun-0.2.3-as-needed.patch   (rev 0)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:55 UTC (rev 135705)
@@ -0,0 +1,13 @@
+diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
+--- lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0

[arch-commits] Commit in lensfun/repos/extra-i686 (6 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 12:07:08
  Author: tpowa
Revision: 135704

archrelease: copy trunk to extra-i686

Added:
  lensfun/repos/extra-i686/PKGBUILD
(from rev 135702, lensfun/trunk/PKGBUILD)
  lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch
(from rev 135702, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
  lensfun/repos/extra-i686/lensfun-0.2.3-glibc-2.10.patch
(from rev 135703, lensfun/trunk/lensfun-0.2.3-glibc-2.10.patch)
Deleted:
  lensfun/repos/extra-i686/PKGBUILD
  lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch
  lensfun/repos/extra-i686/lensfun-0.2.3-glibc-2.10.patch

+
 PKGBUILD   |   64 +++
 lensfun-0.2.3-as-needed.patch  |   26 +++
 lensfun-0.2.3-glibc-2.10.patch |   22 ++---
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 16:07:01 UTC (rev 135703)
+++ PKGBUILD2011-08-17 16:07:08 UTC (rev 135704)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=lensfun
-pkgver=0.2.5
-pkgrel=2
-pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
-arch=(i686 x86_64)
-url="http://lensfun.berlios.de/";
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('python' 'libpng' 'doxygen')
-source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
-"runtime.cpu.detection.fix.backport.patch")
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
-patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
-./configure \
---prefix=/usr \
---libdir=/usr/lib
-make all
-}
-
-package() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-make INSTALL_PREFIX="$pkgdir" install
-}
-
-md5sums=('a10438dffae68a5988fc54b0393a3755'
- 'a2033928f263db319de78182ab12fb7d')

Copied: lensfun/repos/extra-i686/PKGBUILD (from rev 135702, 
lensfun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 16:07:08 UTC (rev 135704)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=lensfun
+pkgver=0.2.5
+pkgrel=2
+pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
+arch=(i686 x86_64)
+url="http://lensfun.berlios.de/";
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen')
+source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+"runtime.cpu.detection.fix.backport.patch")
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
+patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
+./configure \
+--prefix=/usr \
+--libdir=/usr/lib
+make all
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make INSTALL_PREFIX="$pkgdir" install
+}
+
+md5sums=('a10438dffae68a5988fc54b0393a3755'
+ 'a2033928f263db319de78182ab12fb7d')

Deleted: lensfun-0.2.3-as-needed.patch
===
--- lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:01 UTC (rev 135703)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:08 UTC (rev 135704)
@@ -1,13 +0,0 @@
-diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
 lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
-+++ lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
-@@ -71,7 +71,7 @@
- endef
- 
- LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
--LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-+LINK.GCC.EXEC = $(GCC.LD) $(LDFLAGS) $^ $2 $(GCC.LDFLAGS.LIBS) 
$(LDFLAGS.LIBS) $(GCC.LDFLAGS) $1 -o $@
- define LINK.GCC.SO
-   $(GCC.LD) -o $@.$(SHARED.$3) -Wl,"-soname=$(notdir $@).$(basename 
$(basename $(SHARED.$3)))" $(GCC.LDFLAGS.SHARED) $(GCC.LDFLAGS) $(LDFLAGS) $1 
$^ $(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-   ln -fs $(notdir $@.$(SHARED.$3)) $@.$(basename $(basename $(SHARED.$3)))
-Only in lensfun-0.2.3/out/posix/release: deps

Copied: lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch (from rev 
135702, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
===
--- lensfun-0.2.3-as-needed.patch   (rev 0)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 16:07:08 UTC (rev 135704)
@@ -0,0 +1,13 @@
+diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
+--- lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
 lensfu

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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 12:07:01
  Author: tpowa
Revision: 135703

archrelease: copy trunk to testing-x86_64

Added:
  usbutils/repos/testing-x86_64/
  usbutils/repos/testing-x86_64/PKGBUILD
(from rev 135702, usbutils/trunk/PKGBUILD)
  usbutils/repos/testing-x86_64/fix-python2.patch
(from rev 135702, usbutils/trunk/fix-python2.patch)

---+
 PKGBUILD  |   43 +++
 fix-python2.patch |   17 +
 2 files changed, 60 insertions(+)

Copied: usbutils/repos/testing-x86_64/PKGBUILD (from rev 135702, 
usbutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2011-08-17 16:07:01 UTC (rev 135703)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Judd Vinet 
+# Contributor: Curtis Campbell 
+pkgname=usbutils
+pkgver=004
+pkgrel=1
+_usb_ids_date=2011.08.17
+pkgdesc="USB Device Utilities"
+arch=(i686 x86_64)
+license=('GPL')
+groups=('base')
+makedepends=('wget')
+depends=('glibc' 'libusb')
+optdepends=('python2: for lsusb.py usage'
+   'coreutils: for lsusb.py usage')
+url="http://linux-usb.sourceforge.net/";
+source=(http://www.kernel.org/pub/linux/utils/usb/$pkgname/$pkgname-$pkgver.tar.gz
+fix-python2.patch
+usb.ids-${_usb_ids_date})  # from 
http://linux-usb.sourceforge.net/usb.ids
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
+ '45766196895b4cc50b53cd56e1bbf3d1'
+ 'f04c301b5363ef618f0ec776deff3117')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  rm usb.ids
+  cp $srcdir/usb.ids-${_usb_ids_date} usb.ids
+  # patch lsusb.py to use correct usb.ids file and python2 interpreter
+  patch -Np1 -i $srcdir/fix-python2.patch
+  ./configure --prefix=/usr --datadir=/usr/share/hwdata --disable-zlib
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # fix pkgconfig file
+  install -dm755 $pkgdir/usr/lib
+  mv $pkgdir/usr/share/pkgconfig $pkgdir/usr/lib/
+}
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
+ '45766196895b4cc50b53cd56e1bbf3d1'
+ 'f04c301b5363ef618f0ec776deff3117')

Copied: usbutils/repos/testing-x86_64/fix-python2.patch (from rev 135702, 
usbutils/trunk/fix-python2.patch)
===
--- testing-x86_64/fix-python2.patch(rev 0)
+++ testing-x86_64/fix-python2.patch2011-08-17 16:07:01 UTC (rev 135703)
@@ -0,0 +1,17 @@
+--- usbutils-002/lsusb.py  2010-12-16 01:07:09.0 +0100
 usbutils-002/lsusb.py  2011-04-09 22:43:59.043828595 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ # lsusb.py
+ # Displays your USB devices in reasonable form.
+ # (c) Kurt Garloff , 2/2009, GPL v2 or v3.
+@@ -16,7 +16,7 @@
+ warnsort = False
+ 
+ prefix = "/sys/bus/usb/devices/"
+-usbids = "/usr/share/usb.ids"
++usbids = "/usr/share/hwdata/usb.ids"
+ 
+ esc = chr(27)
+ norm = esc + "[0;0m"



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 12:06:34
  Author: tpowa
Revision: 135702

archrelease: copy trunk to testing-i686

Added:
  usbutils/repos/testing-i686/
  usbutils/repos/testing-i686/PKGBUILD
(from rev 135701, usbutils/trunk/PKGBUILD)
  usbutils/repos/testing-i686/fix-python2.patch
(from rev 135701, usbutils/trunk/fix-python2.patch)

---+
 PKGBUILD  |   43 +++
 fix-python2.patch |   17 +
 2 files changed, 60 insertions(+)

Copied: usbutils/repos/testing-i686/PKGBUILD (from rev 135701, 
usbutils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2011-08-17 16:06:34 UTC (rev 135702)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Judd Vinet 
+# Contributor: Curtis Campbell 
+pkgname=usbutils
+pkgver=004
+pkgrel=1
+_usb_ids_date=2011.08.17
+pkgdesc="USB Device Utilities"
+arch=(i686 x86_64)
+license=('GPL')
+groups=('base')
+makedepends=('wget')
+depends=('glibc' 'libusb')
+optdepends=('python2: for lsusb.py usage'
+   'coreutils: for lsusb.py usage')
+url="http://linux-usb.sourceforge.net/";
+source=(http://www.kernel.org/pub/linux/utils/usb/$pkgname/$pkgname-$pkgver.tar.gz
+fix-python2.patch
+usb.ids-${_usb_ids_date})  # from 
http://linux-usb.sourceforge.net/usb.ids
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
+ '45766196895b4cc50b53cd56e1bbf3d1'
+ 'f04c301b5363ef618f0ec776deff3117')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  rm usb.ids
+  cp $srcdir/usb.ids-${_usb_ids_date} usb.ids
+  # patch lsusb.py to use correct usb.ids file and python2 interpreter
+  patch -Np1 -i $srcdir/fix-python2.patch
+  ./configure --prefix=/usr --datadir=/usr/share/hwdata --disable-zlib
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # fix pkgconfig file
+  install -dm755 $pkgdir/usr/lib
+  mv $pkgdir/usr/share/pkgconfig $pkgdir/usr/lib/
+}
+md5sums=('481e1de453bcabbd5f43125bb4df2ab7'
+ '45766196895b4cc50b53cd56e1bbf3d1'
+ 'f04c301b5363ef618f0ec776deff3117')

Copied: usbutils/repos/testing-i686/fix-python2.patch (from rev 135701, 
usbutils/trunk/fix-python2.patch)
===
--- testing-i686/fix-python2.patch  (rev 0)
+++ testing-i686/fix-python2.patch  2011-08-17 16:06:34 UTC (rev 135702)
@@ -0,0 +1,17 @@
+--- usbutils-002/lsusb.py  2010-12-16 01:07:09.0 +0100
 usbutils-002/lsusb.py  2011-04-09 22:43:59.043828595 +0200
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ # lsusb.py
+ # Displays your USB devices in reasonable form.
+ # (c) Kurt Garloff , 2/2009, GPL v2 or v3.
+@@ -16,7 +16,7 @@
+ warnsort = False
+ 
+ prefix = "/sys/bus/usb/devices/"
+-usbids = "/usr/share/usb.ids"
++usbids = "/usr/share/hwdata/usb.ids"
+ 
+ esc = chr(27)
+ norm = esc + "[0;0m"



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 12:06:04
  Author: tpowa
Revision: 135701

upgpkg: usbutils 004-1

bump to latest version

Added:
  usbutils/trunk/usb.ids-2011.08.17
Modified:
  usbutils/trunk/PKGBUILD
Deleted:
  usbutils/trunk/usb.ids-2011.04.14

+
 PKGBUILD   |   11 
 usb.ids-2011.04.14 |16374 --
 usb.ids-2011.08.17 |16529 +++
 3 files changed, 16536 insertions(+), 16378 deletions(-)

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


[arch-commits] Commit in kernel26-lts/repos (15 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 11:56:09
  Author: tpowa
Revision: 135700

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

Added:
  kernel26-lts/repos/core-x86_64/PKGBUILD
(from rev 135698, kernel26-lts/repos/testing-x86_64/PKGBUILD)
  kernel26-lts/repos/core-x86_64/buildfix-gcc46.diff
(from rev 135698, kernel26-lts/repos/testing-x86_64/buildfix-gcc46.diff)
  kernel26-lts/repos/core-x86_64/config
(from rev 135698, kernel26-lts/repos/testing-x86_64/config)
  kernel26-lts/repos/core-x86_64/config.x86_64
(from rev 135698, kernel26-lts/repos/testing-x86_64/config.x86_64)
  kernel26-lts/repos/core-x86_64/kernel26-lts.install
(from rev 135698, kernel26-lts/repos/testing-x86_64/kernel26-lts.install)
  kernel26-lts/repos/core-x86_64/kernel26-lts.preset
(from rev 135698, kernel26-lts/repos/testing-x86_64/kernel26-lts.preset)
  kernel26-lts/repos/core-x86_64/libata-alignment.patch
(from rev 135698, kernel26-lts/repos/testing-x86_64/libata-alignment.patch)
Deleted:
  kernel26-lts/repos/core-x86_64/PKGBUILD
  kernel26-lts/repos/core-x86_64/buildfix-gcc46.diff
  kernel26-lts/repos/core-x86_64/config
  kernel26-lts/repos/core-x86_64/config.x86_64
  kernel26-lts/repos/core-x86_64/kernel26-lts.install
  kernel26-lts/repos/core-x86_64/kernel26-lts.preset
  kernel26-lts/repos/core-x86_64/libata-alignment.patch
  kernel26-lts/repos/testing-x86_64/

+
 PKGBUILD   |  428 +-
 buildfix-gcc46.diff|   64 
 config | 9552 +++
 config.x86_64  | 9170 ++---
 kernel26-lts.install   |  294 -
 kernel26-lts.preset|   34 
 libata-alignment.patch |   96 
 7 files changed, 9819 insertions(+), 9819 deletions(-)

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


[arch-commits] Commit in kernel26-lts/repos (15 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 11:56:07
  Author: tpowa
Revision: 135699

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

Added:
  kernel26-lts/repos/core-i686/PKGBUILD
(from rev 135698, kernel26-lts/repos/testing-i686/PKGBUILD)
  kernel26-lts/repos/core-i686/buildfix-gcc46.diff
(from rev 135698, kernel26-lts/repos/testing-i686/buildfix-gcc46.diff)
  kernel26-lts/repos/core-i686/config
(from rev 135698, kernel26-lts/repos/testing-i686/config)
  kernel26-lts/repos/core-i686/config.x86_64
(from rev 135698, kernel26-lts/repos/testing-i686/config.x86_64)
  kernel26-lts/repos/core-i686/kernel26-lts.install
(from rev 135698, kernel26-lts/repos/testing-i686/kernel26-lts.install)
  kernel26-lts/repos/core-i686/kernel26-lts.preset
(from rev 135698, kernel26-lts/repos/testing-i686/kernel26-lts.preset)
  kernel26-lts/repos/core-i686/libata-alignment.patch
(from rev 135698, kernel26-lts/repos/testing-i686/libata-alignment.patch)
Deleted:
  kernel26-lts/repos/core-i686/PKGBUILD
  kernel26-lts/repos/core-i686/buildfix-gcc46.diff
  kernel26-lts/repos/core-i686/config
  kernel26-lts/repos/core-i686/config.x86_64
  kernel26-lts/repos/core-i686/kernel26-lts.install
  kernel26-lts/repos/core-i686/kernel26-lts.preset
  kernel26-lts/repos/core-i686/libata-alignment.patch
  kernel26-lts/repos/testing-i686/

+
 PKGBUILD   |  428 +-
 buildfix-gcc46.diff|   64 
 config | 9552 +++
 config.x86_64  | 9170 ++---
 kernel26-lts.install   |  294 -
 kernel26-lts.preset|   34 
 libata-alignment.patch |   96 
 7 files changed, 9819 insertions(+), 9819 deletions(-)

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


[arch-commits] Commit in telepathy-gabble/repos/extra-x86_64 (4 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 11:28:40
  Author: ibiru
Revision: 135698

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-gabble/repos/extra-x86_64/PKGBUILD
(from rev 135697, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install
(from rev 135697, telepathy-gabble/trunk/telepathy-gabble.install)
Deleted:
  telepathy-gabble/repos/extra-x86_64/PKGBUILD
  telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install

--+
 PKGBUILD |   60 ++---
 telepathy-gabble.install |   26 +--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 15:28:07 UTC (rev 135697)
+++ PKGBUILD2011-08-17 15:28:40 UTC (rev 135698)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Daniel Balieiro 
-# Contributor: Rodrigo L. M. Flores 
-pkgname=telepathy-gabble
-pkgver=0.12.5
-pkgrel=1
-pkgdesc="A Jabber/XMPP connection manager for Telepathy"
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org";
-groups=('telepathy')
-license=('LGPL2.1')
-depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
-makedepends=('libxslt' 'python2')
-options=('!libtool')
-source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
-install=telepathy-gabble.install
-md5sums=('56ad33a698996904e2aa522bbffbd405')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-   --libexecdir=/usr/lib/telepathy --with-tls=openssl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-gabble/repos/extra-x86_64/PKGBUILD (from rev 135697, 
telepathy-gabble/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 15:28:40 UTC (rev 135698)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.12.6
+pkgrel=1
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
+makedepends=('libxslt' 'python2')
+options=('!libtool')
+source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
+install=telepathy-gabble.install
+md5sums=('5524c7b6a29801feedc9ffa82503911a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy --with-tls=openssl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: telepathy-gabble.install
===
--- telepathy-gabble.install2011-08-17 15:28:07 UTC (rev 135697)
+++ telepathy-gabble.install2011-08-17 15:28:40 UTC (rev 135698)
@@ -1,13 +0,0 @@
-post_install() {
-  killall -HUP dbus-daemon 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install (from rev 
135697, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- telepathy-gabble.install(rev 0)
+++ telepathy-gabble.install2011-08-17 15:28:40 UTC (rev 135698)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in telepathy-gabble/repos/extra-i686 (4 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 11:28:07
  Author: ibiru
Revision: 135697

archrelease: copy trunk to extra-i686

Added:
  telepathy-gabble/repos/extra-i686/PKGBUILD
(from rev 135696, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/extra-i686/telepathy-gabble.install
(from rev 135696, telepathy-gabble/trunk/telepathy-gabble.install)
Deleted:
  telepathy-gabble/repos/extra-i686/PKGBUILD
  telepathy-gabble/repos/extra-i686/telepathy-gabble.install

--+
 PKGBUILD |   60 ++---
 telepathy-gabble.install |   26 +--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 15:27:08 UTC (rev 135696)
+++ PKGBUILD2011-08-17 15:28:07 UTC (rev 135697)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Daniel Balieiro 
-# Contributor: Rodrigo L. M. Flores 
-pkgname=telepathy-gabble
-pkgver=0.12.5
-pkgrel=1
-pkgdesc="A Jabber/XMPP connection manager for Telepathy"
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org";
-groups=('telepathy')
-license=('LGPL2.1')
-depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
-makedepends=('libxslt' 'python2')
-options=('!libtool')
-source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
-install=telepathy-gabble.install
-md5sums=('56ad33a698996904e2aa522bbffbd405')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-   --libexecdir=/usr/lib/telepathy --with-tls=openssl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-gabble/repos/extra-i686/PKGBUILD (from rev 135696, 
telepathy-gabble/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 15:28:07 UTC (rev 135697)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.12.6
+pkgrel=1
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
+makedepends=('libxslt' 'python2')
+options=('!libtool')
+source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
+install=telepathy-gabble.install
+md5sums=('5524c7b6a29801feedc9ffa82503911a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy --with-tls=openssl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: telepathy-gabble.install
===
--- telepathy-gabble.install2011-08-17 15:27:08 UTC (rev 135696)
+++ telepathy-gabble.install2011-08-17 15:28:07 UTC (rev 135697)
@@ -1,13 +0,0 @@
-post_install() {
-  killall -HUP dbus-daemon 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-gabble/repos/extra-i686/telepathy-gabble.install (from rev 
135696, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- telepathy-gabble.install(rev 0)
+++ telepathy-gabble.install2011-08-17 15:28:07 UTC (rev 135697)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:



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

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 11:27:08
  Author: ibiru
Revision: 135696

update to 0.12.6

Modified:
  telepathy-gabble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 13:34:01 UTC (rev 135695)
+++ PKGBUILD2011-08-17 15:27:08 UTC (rev 135696)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Balieiro 
 # Contributor: Rodrigo L. M. Flores 
 pkgname=telepathy-gabble
-pkgver=0.12.5
+pkgver=0.12.6
 pkgrel=1
 pkgdesc="A Jabber/XMPP connection manager for Telepathy"
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 options=('!libtool')
 
source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
 install=telepathy-gabble.install
-md5sums=('56ad33a698996904e2aa522bbffbd405')
+md5sums=('5524c7b6a29801feedc9ffa82503911a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in telepathy-gabble/repos/extra-x86_64 (4 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 09:34:01
  Author: ibiru
Revision: 135695

archrelease: copy trunk to extra-x86_64

Added:
  telepathy-gabble/repos/extra-x86_64/PKGBUILD
(from rev 135694, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install
(from rev 135694, telepathy-gabble/trunk/telepathy-gabble.install)
Deleted:
  telepathy-gabble/repos/extra-x86_64/PKGBUILD
  telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install

--+
 PKGBUILD |   60 ++---
 telepathy-gabble.install |   26 +--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 13:33:28 UTC (rev 135694)
+++ PKGBUILD2011-08-17 13:34:01 UTC (rev 135695)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Daniel Balieiro 
-# Contributor: Rodrigo L. M. Flores 
-pkgname=telepathy-gabble
-pkgver=0.12.4
-pkgrel=3
-pkgdesc="A Jabber/XMPP connection manager for Telepathy"
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org";
-groups=('telepathy')
-license=('LGPL2.1')
-depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
-makedepends=('libxslt' 'python2')
-options=('!libtool')
-source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
-install=telepathy-gabble.install
-md5sums=('428962565d568667d3ff1aa7eee3da51')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-   --libexecdir=/usr/lib/telepathy --with-tls=openssl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-gabble/repos/extra-x86_64/PKGBUILD (from rev 135694, 
telepathy-gabble/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 13:34:01 UTC (rev 135695)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.12.5
+pkgrel=1
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
+makedepends=('libxslt' 'python2')
+options=('!libtool')
+source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
+install=telepathy-gabble.install
+md5sums=('56ad33a698996904e2aa522bbffbd405')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy --with-tls=openssl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: telepathy-gabble.install
===
--- telepathy-gabble.install2011-08-17 13:33:28 UTC (rev 135694)
+++ telepathy-gabble.install2011-08-17 13:34:01 UTC (rev 135695)
@@ -1,13 +0,0 @@
-post_install() {
-  killall -HUP dbus-daemon 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-gabble/repos/extra-x86_64/telepathy-gabble.install (from rev 
135694, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- telepathy-gabble.install(rev 0)
+++ telepathy-gabble.install2011-08-17 13:34:01 UTC (rev 135695)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in telepathy-gabble/repos/extra-i686 (4 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 09:33:28
  Author: ibiru
Revision: 135694

archrelease: copy trunk to extra-i686

Added:
  telepathy-gabble/repos/extra-i686/PKGBUILD
(from rev 135693, telepathy-gabble/trunk/PKGBUILD)
  telepathy-gabble/repos/extra-i686/telepathy-gabble.install
(from rev 135693, telepathy-gabble/trunk/telepathy-gabble.install)
Deleted:
  telepathy-gabble/repos/extra-i686/PKGBUILD
  telepathy-gabble/repos/extra-i686/telepathy-gabble.install

--+
 PKGBUILD |   60 ++---
 telepathy-gabble.install |   26 +--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 13:30:55 UTC (rev 135693)
+++ PKGBUILD2011-08-17 13:33:28 UTC (rev 135694)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru 
-# Contributor: Daniel Balieiro 
-# Contributor: Rodrigo L. M. Flores 
-pkgname=telepathy-gabble
-pkgver=0.12.4
-pkgrel=3
-pkgdesc="A Jabber/XMPP connection manager for Telepathy"
-arch=('i686' 'x86_64')
-url="http://telepathy.freedesktop.org";
-groups=('telepathy')
-license=('LGPL2.1')
-depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
-makedepends=('libxslt' 'python2')
-options=('!libtool')
-source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
-install=telepathy-gabble.install
-md5sums=('428962565d568667d3ff1aa7eee3da51')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
-   --libexecdir=/usr/lib/telepathy --with-tls=openssl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: telepathy-gabble/repos/extra-i686/PKGBUILD (from rev 135693, 
telepathy-gabble/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 13:33:28 UTC (rev 135694)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Ionut Biru 
+# Contributor: Daniel Balieiro 
+# Contributor: Rodrigo L. M. Flores 
+pkgname=telepathy-gabble
+pkgver=0.12.5
+pkgrel=1
+pkgdesc="A Jabber/XMPP connection manager for Telepathy"
+arch=('i686' 'x86_64')
+url="http://telepathy.freedesktop.org";
+groups=('telepathy')
+license=('LGPL2.1')
+depends=('telepathy-glib' 'libsoup' 'libnice' 'sqlite3')
+makedepends=('libxslt' 'python2')
+options=('!libtool')
+source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
+install=telepathy-gabble.install
+md5sums=('56ad33a698996904e2aa522bbffbd405')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+   --libexecdir=/usr/lib/telepathy --with-tls=openssl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: telepathy-gabble.install
===
--- telepathy-gabble.install2011-08-17 13:30:55 UTC (rev 135693)
+++ telepathy-gabble.install2011-08-17 13:33:28 UTC (rev 135694)
@@ -1,13 +0,0 @@
-post_install() {
-  killall -HUP dbus-daemon 2>&1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-gabble/repos/extra-i686/telepathy-gabble.install (from rev 
135693, telepathy-gabble/trunk/telepathy-gabble.install)
===
--- telepathy-gabble.install(rev 0)
+++ telepathy-gabble.install2011-08-17 13:33:28 UTC (rev 135694)
@@ -0,0 +1,13 @@
+post_install() {
+  killall -HUP dbus-daemon 2>&1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}
+
+# vim:set ts=2 sw=2 et:



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

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 09:30:55
  Author: ibiru
Revision: 135693

update to 0.12.5

Modified:
  telepathy-gabble/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 10:30:13 UTC (rev 135692)
+++ PKGBUILD2011-08-17 13:30:55 UTC (rev 135693)
@@ -3,8 +3,8 @@
 # Contributor: Daniel Balieiro 
 # Contributor: Rodrigo L. M. Flores 
 pkgname=telepathy-gabble
-pkgver=0.12.4
-pkgrel=3
+pkgver=0.12.5
+pkgrel=1
 pkgdesc="A Jabber/XMPP connection manager for Telepathy"
 arch=('i686' 'x86_64')
 url="http://telepathy.freedesktop.org";
@@ -15,7 +15,7 @@
 options=('!libtool')
 
source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/${pkgname}-${pkgver}.tar.gz)
 install=telepathy-gabble.install
-md5sums=('428962565d568667d3ff1aa7eee3da51')
+md5sums=('56ad33a698996904e2aa522bbffbd405')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 06:30:13
  Author: tpowa
Revision: 135692

archrelease: copy trunk to extra-x86_64

Added:
  lablgtk2/repos/extra-x86_64/PKGBUILD
(from rev 135691, lablgtk2/trunk/PKGBUILD)
Deleted:
  lablgtk2/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 10:29:54 UTC (rev 135691)
+++ PKGBUILD2011-08-17 10:30:13 UTC (rev 135692)
@@ -1,25 +0,0 @@
-# $Id$
-#Maintainer: Tobias Powalowski 
-
-pkgname=lablgtk2
-pkgver=2.14.2
-pkgrel=3
-pkgdesc=" An Objective Caml interface to gtk2"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://lablgtk.forge.ocamlcore.org/";
-depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 
'gtksourceview2')
-makedepends=('ocaml')
-source=(https://forge.ocamlcore.org/frs/download.php/561/lablgtk-${pkgver}.tar.gz)
-options=(!makeflags)
-md5sums=('bad77680a72dab8b915cae99d1ec9b1f')
-
-build() {
-  cd "${srcdir}/lablgtk-${pkgver}"
-  ./configure --prefix=/usr
-  make world
-  make opt
-  make DESTDIR="${pkgdir}" install
-  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
-  rm -r "${pkgdir}/usr/bin"
-}

Copied: lablgtk2/repos/extra-x86_64/PKGBUILD (from rev 135691, 
lablgtk2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 10:30:13 UTC (rev 135692)
@@ -0,0 +1,25 @@
+# $Id$
+#Maintainer: Tobias Powalowski 
+
+pkgname=lablgtk2
+pkgver=2.14.2
+pkgrel=4
+pkgdesc=" An Objective Caml interface to gtk2"
+arch=(i686 x86_64)
+license=('LGPL')
+url="http://lablgtk.forge.ocamlcore.org/";
+depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 
'gtksourceview2')
+makedepends=('ocaml')
+optdepends=('ocaml: for using the tools')
+source=(https://forge.ocamlcore.org/frs/download.php/561/lablgtk-${pkgver}.tar.gz)
+options=(!makeflags)
+md5sums=('bad77680a72dab8b915cae99d1ec9b1f')
+
+build() {
+  cd "${srcdir}/lablgtk-${pkgver}"
+  ./configure --prefix=/usr
+  make world
+  make opt
+  make DESTDIR="${pkgdir}" install
+  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
+}



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 06:29:54
  Author: tpowa
Revision: 135691

archrelease: copy trunk to extra-i686

Added:
  lablgtk2/repos/extra-i686/PKGBUILD
(from rev 135690, lablgtk2/trunk/PKGBUILD)
Deleted:
  lablgtk2/repos/extra-i686/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 10:29:30 UTC (rev 135690)
+++ PKGBUILD2011-08-17 10:29:54 UTC (rev 135691)
@@ -1,25 +0,0 @@
-# $Id$
-#Maintainer: Tobias Powalowski 
-
-pkgname=lablgtk2
-pkgver=2.14.2
-pkgrel=3
-pkgdesc=" An Objective Caml interface to gtk2"
-arch=(i686 x86_64)
-license=('LGPL')
-url="http://lablgtk.forge.ocamlcore.org/";
-depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 
'gtksourceview2')
-makedepends=('ocaml')
-source=(https://forge.ocamlcore.org/frs/download.php/561/lablgtk-${pkgver}.tar.gz)
-options=(!makeflags)
-md5sums=('bad77680a72dab8b915cae99d1ec9b1f')
-
-build() {
-  cd "${srcdir}/lablgtk-${pkgver}"
-  ./configure --prefix=/usr
-  make world
-  make opt
-  make DESTDIR="${pkgdir}" install
-  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
-  rm -r "${pkgdir}/usr/bin"
-}

Copied: lablgtk2/repos/extra-i686/PKGBUILD (from rev 135690, 
lablgtk2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 10:29:54 UTC (rev 135691)
@@ -0,0 +1,25 @@
+# $Id$
+#Maintainer: Tobias Powalowski 
+
+pkgname=lablgtk2
+pkgver=2.14.2
+pkgrel=4
+pkgdesc=" An Objective Caml interface to gtk2"
+arch=(i686 x86_64)
+license=('LGPL')
+url="http://lablgtk.forge.ocamlcore.org/";
+depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 
'gtksourceview2')
+makedepends=('ocaml')
+optdepends=('ocaml: for using the tools')
+source=(https://forge.ocamlcore.org/frs/download.php/561/lablgtk-${pkgver}.tar.gz)
+options=(!makeflags)
+md5sums=('bad77680a72dab8b915cae99d1ec9b1f')
+
+build() {
+  cd "${srcdir}/lablgtk-${pkgver}"
+  ./configure --prefix=/usr
+  make world
+  make opt
+  make DESTDIR="${pkgdir}" install
+  install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
+}



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 06:29:30
  Author: tpowa
Revision: 135690

upgpkg: lablgtk2 2.14.2-4

add the tools to the package

Modified:
  lablgtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 09:02:46 UTC (rev 135689)
+++ PKGBUILD2011-08-17 10:29:30 UTC (rev 135690)
@@ -3,13 +3,14 @@
 
 pkgname=lablgtk2
 pkgver=2.14.2
-pkgrel=3
+pkgrel=4
 pkgdesc=" An Objective Caml interface to gtk2"
 arch=(i686 x86_64)
 license=('LGPL')
 url="http://lablgtk.forge.ocamlcore.org/";
 depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 
'gtksourceview2')
 makedepends=('ocaml')
+optdepends=('ocaml: for using the tools')
 
source=(https://forge.ocamlcore.org/frs/download.php/561/lablgtk-${pkgver}.tar.gz)
 options=(!makeflags)
 md5sums=('bad77680a72dab8b915cae99d1ec9b1f')
@@ -21,5 +22,4 @@
   make opt
   make DESTDIR="${pkgdir}" install
   install -m644 META "${pkgdir}/usr/lib/ocaml/lablgtk2/"
-  rm -r "${pkgdir}/usr/bin"
 }



[arch-commits] Commit in seamonkey/repos/extra-x86_64 (11 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 05:02:46
  Author: ibiru
Revision: 135689

archrelease: copy trunk to extra-x86_64

Added:
  seamonkey/repos/extra-x86_64/PKGBUILD
(from rev 135688, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/extra-x86_64/mozconfig
(from rev 135688, seamonkey/trunk/mozconfig)
  seamonkey/repos/extra-x86_64/seamonkey-2.0-lang.patch
(from rev 135688, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/extra-x86_64/seamonkey.desktop
(from rev 135688, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/extra-x86_64/seamonkey.install
(from rev 135688, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/extra-x86_64/PKGBUILD
  seamonkey/repos/extra-x86_64/mozconfig
  seamonkey/repos/extra-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/extra-x86_64/seamonkey-appversion.patch
  seamonkey/repos/extra-x86_64/seamonkey.desktop
  seamonkey/repos/extra-x86_64/seamonkey.install

+
 PKGBUILD   |  101 +--
 mozconfig  |   88 ++---
 seamonkey-2.0-lang.patch   |   22 -
 seamonkey-appversion.patch |   12 -
 seamonkey.desktop  |   22 -
 seamonkey.install  |   24 +-
 6 files changed, 128 insertions(+), 141 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 09:01:44 UTC (rev 135688)
+++ PKGBUILD2011-08-17 09:02:46 UTC (rev 135689)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-pkgname=seamonkey
-pkgver=2.2
-pkgrel=1
-pkgdesc="SeaMonkey internet suite"
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('gtk2' 'mozilla-common' 'hunspell' 'libxt' 'startup-notification' 
'alsa-lib' 'dbus-glib' 'libnotify' 'desktop-file-utils' 'sqlite3' 'libvpx' 
'lcms' 'nspr' 'nss' 'libevent')
-makedepends=('zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 'wireless_tools' 
'mesa' 'gconf')
-install=$pkgname.install
-url="http://www.mozilla.org/projects/seamonkey";
-options=(!buildflags)
-source=(http://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
-mozconfig
-seamonkey.desktop
-seamonkey-2.0-lang.patch)
-md5sums=('7b5a3d941f6fd5540e9e8adb068bd737'
- '4f010afa06ccd3fe436b7bb24ae52f53'
- '6119a2254716752c9d08e366f8d4c048'
- '25b6fe16ac24cd5c852213e5c1adb272')
-
-build() {
-  cd "${srcdir}/comm-release"
-  patch -Np1 -i "${srcdir}/seamonkey-2.0-lang.patch"
-
-  cp "${srcdir}/mozconfig" .mozconfig
-  export CXXFLAGS="-fpermissive"
-  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver}"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="${MAKEFLAGS}"
-}
-
-package() {
-  cd "${srcdir}/comm-release"
-
-  make -j1 -f client.mk DESTDIR="${pkgdir}" install
-
-  #Remove included dictionaries, add symlink to system myspell path.
-  #Note: this will cause file conflicts when users have installed dictionaries 
in the old location
-  rm -rf "${pkgdir}/usr/lib/seamonkey-${pkgver}/dictionaries"
-  ln -sf /usr/share/myspell/dicts 
"${pkgdir}/usr/lib/seamonkey-${pkgver}/dictionaries"
-
-  install -m755 -d "${pkgdir}/usr/share/applications"
-  install -m755 -d "${pkgdir}/usr/share/pixmaps"
-  install -m644 suite/branding/nightly/icons/gtk/seamonkey.png \
-"${pkgdir}/usr/share/pixmaps/"
-  install -m644 "${srcdir}/seamonkey.desktop" 
"${pkgdir}/usr/share/applications/"
-
-  rm -f "${pkgdir}/usr/lib/pkgconfig/"seamonkey-ns{s,pr}.pc
-}

Copied: seamonkey/repos/extra-x86_64/PKGBUILD (from rev 135688, 
seamonkey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 09:02:46 UTC (rev 135689)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=seamonkey
+pkgver=2.3
+pkgrel=1
+pkgdesc="SeaMonkey internet suite"
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('gtk2' 'mozilla-common' 'hunspell' 'libxt' 'startup-notification' 
'alsa-lib' 'dbus-glib' 'libnotify' 'desktop-file-utils' 'sqlite3' 'libvpx' 
'lcms' 'nspr' 'nss' 'libevent')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 
'wireless_tools' 'mesa' 'gconf')
+install=$pkgname.install
+url="http://www.mozilla.org/projects/seamonkey";
+options=(!buildflags)
+source=(ftp://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
+mozconfig
+seamonkey.desktop
+seamonkey-2.0-lang.patch)
+md5sums=('86caf64b1a0cee27f39c375bbf05223d'
+ '4f010afa06ccd3fe436b7bb24ae52f53'
+ '6119a2254716752c9d08e366f8d4c048'
+ '25b6fe16ac24cd5c852213e5c1adb272')
+
+build() {
+  cd "${srcdir}/comm-release"
+  patch -Np1 -i "${srcdir}/seamonkey-2.0-lang.patch"
+
+  cp "${srcdir}/mozconfig" .mozconfig
+  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver} 
-Wl,-O1,-

[arch-commits] Commit in seamonkey/repos/extra-i686 (11 files)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 05:01:44
  Author: ibiru
Revision: 135688

archrelease: copy trunk to extra-i686

Added:
  seamonkey/repos/extra-i686/PKGBUILD
(from rev 135687, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/extra-i686/mozconfig
(from rev 135687, seamonkey/trunk/mozconfig)
  seamonkey/repos/extra-i686/seamonkey-2.0-lang.patch
(from rev 135687, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/extra-i686/seamonkey.desktop
(from rev 135687, seamonkey/trunk/seamonkey.desktop)
  seamonkey/repos/extra-i686/seamonkey.install
(from rev 135687, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/extra-i686/PKGBUILD
  seamonkey/repos/extra-i686/mozconfig
  seamonkey/repos/extra-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/extra-i686/seamonkey-appversion.patch
  seamonkey/repos/extra-i686/seamonkey.desktop
  seamonkey/repos/extra-i686/seamonkey.install

+
 PKGBUILD   |  101 +--
 mozconfig  |   88 ++---
 seamonkey-2.0-lang.patch   |   22 -
 seamonkey-appversion.patch |   12 -
 seamonkey.desktop  |   22 -
 seamonkey.install  |   24 +-
 6 files changed, 128 insertions(+), 141 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 08:26:37 UTC (rev 135687)
+++ PKGBUILD2011-08-17 09:01:44 UTC (rev 135688)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-pkgname=seamonkey
-pkgver=2.2
-pkgrel=1
-pkgdesc="SeaMonkey internet suite"
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('gtk2' 'mozilla-common' 'hunspell' 'libxt' 'startup-notification' 
'alsa-lib' 'dbus-glib' 'libnotify' 'desktop-file-utils' 'sqlite3' 'libvpx' 
'lcms' 'nspr' 'nss' 'libevent')
-makedepends=('zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 'wireless_tools' 
'mesa' 'gconf')
-install=$pkgname.install
-url="http://www.mozilla.org/projects/seamonkey";
-options=(!buildflags)
-source=(http://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
-mozconfig
-seamonkey.desktop
-seamonkey-2.0-lang.patch)
-md5sums=('7b5a3d941f6fd5540e9e8adb068bd737'
- '4f010afa06ccd3fe436b7bb24ae52f53'
- '6119a2254716752c9d08e366f8d4c048'
- '25b6fe16ac24cd5c852213e5c1adb272')
-
-build() {
-  cd "${srcdir}/comm-release"
-  patch -Np1 -i "${srcdir}/seamonkey-2.0-lang.patch"
-
-  cp "${srcdir}/mozconfig" .mozconfig
-  export CXXFLAGS="-fpermissive"
-  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver}"
-
-  make -j1 -f client.mk build MOZ_MAKE_FLAGS="${MAKEFLAGS}"
-}
-
-package() {
-  cd "${srcdir}/comm-release"
-
-  make -j1 -f client.mk DESTDIR="${pkgdir}" install
-
-  #Remove included dictionaries, add symlink to system myspell path.
-  #Note: this will cause file conflicts when users have installed dictionaries 
in the old location
-  rm -rf "${pkgdir}/usr/lib/seamonkey-${pkgver}/dictionaries"
-  ln -sf /usr/share/myspell/dicts 
"${pkgdir}/usr/lib/seamonkey-${pkgver}/dictionaries"
-
-  install -m755 -d "${pkgdir}/usr/share/applications"
-  install -m755 -d "${pkgdir}/usr/share/pixmaps"
-  install -m644 suite/branding/nightly/icons/gtk/seamonkey.png \
-"${pkgdir}/usr/share/pixmaps/"
-  install -m644 "${srcdir}/seamonkey.desktop" 
"${pkgdir}/usr/share/applications/"
-
-  rm -f "${pkgdir}/usr/lib/pkgconfig/"seamonkey-ns{s,pr}.pc
-}

Copied: seamonkey/repos/extra-i686/PKGBUILD (from rev 135687, 
seamonkey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 09:01:44 UTC (rev 135688)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Jan de Groot 
+pkgname=seamonkey
+pkgver=2.3
+pkgrel=1
+pkgdesc="SeaMonkey internet suite"
+arch=('i686' 'x86_64')
+license=('MPL')
+depends=('gtk2' 'mozilla-common' 'hunspell' 'libxt' 'startup-notification' 
'alsa-lib' 'dbus-glib' 'libnotify' 'desktop-file-utils' 'sqlite3' 'libvpx' 
'lcms' 'nspr' 'nss' 'libevent')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 
'wireless_tools' 'mesa' 'gconf')
+install=$pkgname.install
+url="http://www.mozilla.org/projects/seamonkey";
+options=(!buildflags)
+source=(ftp://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
+mozconfig
+seamonkey.desktop
+seamonkey-2.0-lang.patch)
+md5sums=('86caf64b1a0cee27f39c375bbf05223d'
+ '4f010afa06ccd3fe436b7bb24ae52f53'
+ '6119a2254716752c9d08e366f8d4c048'
+ '25b6fe16ac24cd5c852213e5c1adb272')
+
+build() {
+  cd "${srcdir}/comm-release"
+  patch -Np1 -i "${srcdir}/seamonkey-2.0-lang.patch"
+
+  cp "${srcdir}/mozconfig" .mozconfig
+  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver} 
-Wl,-O1,--sort-common,--hash-style=

[arch-commits] Commit in seamonkey/trunk (PKGBUILD seamonkey-appversion.patch)

2011-08-17 Thread Ionut Biru
Date: Wednesday, August 17, 2011 @ 04:26:37
  Author: ibiru
Revision: 135687

update to 2.3

Modified:
  seamonkey/trunk/PKGBUILD
Deleted:
  seamonkey/trunk/seamonkey-appversion.patch

+
 PKGBUILD   |   11 +--
 seamonkey-appversion.patch |   12 
 2 files changed, 5 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 08:20:57 UTC (rev 135686)
+++ PKGBUILD2011-08-17 08:26:37 UTC (rev 135687)
@@ -1,21 +1,21 @@
 # $Id$
 # Maintainer: Jan de Groot 
 pkgname=seamonkey
-pkgver=2.2
+pkgver=2.3
 pkgrel=1
 pkgdesc="SeaMonkey internet suite"
 arch=('i686' 'x86_64')
 license=('MPL')
 depends=('gtk2' 'mozilla-common' 'hunspell' 'libxt' 'startup-notification' 
'alsa-lib' 'dbus-glib' 'libnotify' 'desktop-file-utils' 'sqlite3' 'libvpx' 
'lcms' 'nspr' 'nss' 'libevent')
-makedepends=('zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 'wireless_tools' 
'mesa' 'gconf')
+makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'libidl2' 'yasm' 
'wireless_tools' 'mesa' 'gconf')
 install=$pkgname.install
 url="http://www.mozilla.org/projects/seamonkey";
 options=(!buildflags)
-source=(http://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
+source=(ftp://releases.mozilla.org/pub/mozilla.org/${pkgname}/releases/${pkgver}/source/${pkgname}-${pkgver}.source.tar.bz2
 mozconfig
 seamonkey.desktop
 seamonkey-2.0-lang.patch)
-md5sums=('7b5a3d941f6fd5540e9e8adb068bd737'
+md5sums=('86caf64b1a0cee27f39c375bbf05223d'
  '4f010afa06ccd3fe436b7bb24ae52f53'
  '6119a2254716752c9d08e366f8d4c048'
  '25b6fe16ac24cd5c852213e5c1adb272')
@@ -25,8 +25,7 @@
   patch -Np1 -i "${srcdir}/seamonkey-2.0-lang.patch"
 
   cp "${srcdir}/mozconfig" .mozconfig
-  export CXXFLAGS="-fpermissive"
-  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver}"
+  export LDFLAGS="-Wl,-rpath,/usr/lib/seamonkey-${pkgver} 
-Wl,-O1,--sort-common,--hash-style=gnu,--as-needed"
 
   make -j1 -f client.mk build MOZ_MAKE_FLAGS="${MAKEFLAGS}"
 }

Deleted: seamonkey-appversion.patch
===
--- seamonkey-appversion.patch  2011-08-17 08:20:57 UTC (rev 135686)
+++ seamonkey-appversion.patch  2011-08-17 08:26:37 UTC (rev 135687)
@@ -1,12 +0,0 @@
-diff -Nur comm-2.0.orig//suite/installer/Makefile.in 
comm-2.0/suite/installer/Makefile.in
 comm-2.0.orig//suite/installer/Makefile.in 2011-06-18 19:04:41.592250768 
+
-+++ comm-2.0/suite/installer/Makefile.in   2011-06-18 19:05:40.416090761 
+
-@@ -42,6 +42,8 @@
- 
- include $(DEPTH)/config/autoconf.mk
- 
-+MOZ_APP_VERSION="2.1"
-+
- include $(topsrcdir)/config/rules.mk
- 
- MOZ_PKG_REMOVALS = $(srcdir)/removed-files.in



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:20:57
  Author: andrea
Revision: 135686

Fix url

Modified:
  python-lxml/trunk/PKGBUILD

--+
 PKGBUILD |   13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 08:08:17 UTC (rev 135685)
+++ PKGBUILD2011-08-17 08:20:57 UTC (rev 135686)
@@ -11,7 +11,7 @@
 pkgdesc="Python binding for the libxml2 and libxslt libraries"
 arch=('i686' 'x86_64')
 license=('BSD' 'GPL' 'custom')
-url="http://codespeak.net/lxml";
+url="http://lxml.de/";
 depends=('python2' 'libxslt')
 optdepends=("beautiful-soup: support for parsing not well formed HTML")
 conflicts=('lxml')
@@ -20,11 +20,14 @@
 md5sums=('a245a015fd59b63e220005f263e1682a')
 
 package() {
-  cd ${srcdir}/lxml-$pkgver
+  cd "${srcdir}"/lxml-$pkgver
 
   python2 setup.py install --root="${pkgdir}" --optimize=1
 
-  install -D -m644 LICENSES.txt ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-  install -D -m644 doc/licenses/BSD.txt 
${pkgdir}/usr/share/licenses/$pkgname/BSD.txt
-  install -D -m644 doc/licenses/elementtree.txt 
${pkgdir}/usr/share/licenses/$pkgname/elementtree.txt
+  install -Dm644 LICENSES.txt \
+"${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 doc/licenses/BSD.txt \
+"${pkgdir}"/usr/share/licenses/$pkgname/BSD.txt
+  install -Dm644 doc/licenses/elementtree.txt \
+"${pkgdir}"/usr/share/licenses/$pkgname/elementtree.txt
 }



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:08:17
  Author: andrea
Revision: 135685

archrelease: copy trunk to extra-x86_64

Added:
  ktorrent/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:08:01
  Author: andrea
Revision: 135684

archrelease: remove extra-x86_64

Deleted:
  ktorrent/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:07:58
  Author: andrea
Revision: 135683

archrelease: copy trunk to extra-i686

Added:
  ktorrent/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:07:42
  Author: andrea
Revision: 135682

archrelease: remove extra-i686

Deleted:
  ktorrent/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 04:07:39
  Author: andrea
Revision: 135681

upgpkg: ktorrent 4.1.2-1
upstream release

Modified:
  ktorrent/trunk/PKGBUILD
  ktorrent/trunk/ktorrent.install

--+
 PKGBUILD |6 +++---
 ktorrent.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:53:05 UTC (rev 135680)
+++ PKGBUILD2011-08-17 08:07:39 UTC (rev 135681)
@@ -4,8 +4,8 @@
 # Contributor: Georg Grabler 
 
 pkgname=ktorrent
-pkgver=4.1.1
-pkgrel=2
+pkgver=4.1.2
+pkgrel=1
 pkgdesc="A powerful BitTorrent client for KDE"
 arch=('i686' 'x86_64')
 url="http://ktorrent.org";
@@ -16,7 +16,7 @@
 'httpserver.patch')
 install=${pkgname}.install
 options=('libtool')
-md5sums=('affadf7c7198e5aa430e91ab75800296'
+md5sums=('8026d9f75257f2e52ac5ba3ce4720d55'
  '1f25b94615b0bbfa0457c99fb20de3e6')
 
 build() {

Modified: ktorrent.install
===
--- ktorrent.install2011-08-17 07:53:05 UTC (rev 135680)
+++ ktorrent.install2011-08-17 08:07:39 UTC (rev 135681)
@@ -1,6 +1,6 @@
 post_install() {
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-mime-database usr/share/mime &> /dev/null
+update-mime-database usr/share/mime &> /dev/null
update-desktop-database -q
 }
 



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:53:05
  Author: andrea
Revision: 135680

archrelease: copy trunk to extra-x86_64

Added:
  libssh/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:52:49
  Author: andrea
Revision: 135679

archrelease: remove extra-x86_64

Deleted:
  libssh/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:52:46
  Author: andrea
Revision: 135678

archrelease: copy trunk to extra-i686

Added:
  libssh/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:52:32
  Author: andrea
Revision: 135677

archrelease: remove extra-i686

Deleted:
  libssh/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:52:28
  Author: andrea
Revision: 135676

upgpkg: libssh 0.5.1-1
upstream release

Modified:
  libssh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:50:36 UTC (rev 135675)
+++ PKGBUILD2011-08-17 07:52:28 UTC (rev 135676)
@@ -4,7 +4,7 @@
 # Contributor: sergeantspoon 
 
 pkgname=libssh
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc="Library for accessing ssh client services through C libraries"
 url="http://www.libssh.org/";
@@ -13,7 +13,7 @@
 depends=('openssl')
 makedepends=('cmake' 'doxygen')
 source=("http://www.libssh.org/files/0.5/${pkgname}-${pkgver}.tar.gz";)
-md5sums=('9b37f45751c0ae7ba66099c1fb136946')
+md5sums=('0cd8bc9336398e23a76f4e25c1412eb4')
 
 build() {
   cd "${srcdir}"



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:50:36
  Author: tpowa
Revision: 135675

archrelease: copy trunk to testing-x86_64

Added:
  kernel26-lts/repos/testing-x86_64/
  kernel26-lts/repos/testing-x86_64/PKGBUILD
(from rev 135669, kernel26-lts/trunk/PKGBUILD)
  kernel26-lts/repos/testing-x86_64/buildfix-gcc46.diff
(from rev 135670, kernel26-lts/trunk/buildfix-gcc46.diff)
  kernel26-lts/repos/testing-x86_64/config
(from rev 135671, kernel26-lts/trunk/config)
  kernel26-lts/repos/testing-x86_64/config.x86_64
(from rev 135673, kernel26-lts/trunk/config.x86_64)
  kernel26-lts/repos/testing-x86_64/kernel26-lts.install
(from rev 135674, kernel26-lts/trunk/kernel26-lts.install)
  kernel26-lts/repos/testing-x86_64/kernel26-lts.preset
(from rev 135674, kernel26-lts/trunk/kernel26-lts.preset)
  kernel26-lts/repos/testing-x86_64/libata-alignment.patch
(from rev 135674, kernel26-lts/trunk/libata-alignment.patch)

+
 PKGBUILD   |  214 ++
 buildfix-gcc46.diff|   32 
 config | 4776 +++
 config.x86_64  | 4585 +
 kernel26-lts.install   |  147 +
 kernel26-lts.preset|   17 
 libata-alignment.patch |   48 
 7 files changed, 9819 insertions(+)

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


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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:50:12
  Author: andrea
Revision: 135674

archrelease: copy trunk to extra-x86_64

Added:
  libktorrent/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:49:57
  Author: andrea
Revision: 135673

archrelease: remove extra-x86_64

Deleted:
  libktorrent/repos/extra-x86_64/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:49:54
  Author: andrea
Revision: 135672

archrelease: copy trunk to extra-i686

Added:
  libktorrent/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:49:41
  Author: andrea
Revision: 135671

archrelease: remove extra-i686

Deleted:
  libktorrent/repos/extra-i686/



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

2011-08-17 Thread Andrea Scarpino
Date: Wednesday, August 17, 2011 @ 03:49:37
  Author: andrea
Revision: 135670

upgpkg: libktorrent 1.1.2-1
upstream release; build docs

Modified:
  libktorrent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:49:16 UTC (rev 135669)
+++ PKGBUILD2011-08-17 07:49:37 UTC (rev 135670)
@@ -3,17 +3,17 @@
 # Maintainer: Andrea Scarpino 
 
 pkgname=libktorrent
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc="A BitTorrent protocol implementation"
 arch=('i686' 'x86_64')
 url="http://ktorrent.org";
 license=('GPL2')
 depends=('kdelibs')
-makedepends=('automoc4' 'cmake' 'boost')
-source=("http://ktorrent.org/downloads/4.1.1/${pkgname}-${pkgver}.tar.bz2";)
+makedepends=('automoc4' 'cmake' 'boost' 'doxygen')
+source=("http://ktorrent.org/downloads/4.1.2/${pkgname}-${pkgver}.tar.bz2";)
 options=('libtool')
-md5sums=('96de8dd6d6cea4255ce946bb4cd69836')
+md5sums=('471b25afc48e195723ac1e264c8a0fc5')
 
 build() {
   cd "${srcdir}"



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:49:16
  Author: tpowa
Revision: 135669

archrelease: copy trunk to testing-i686

Added:
  kernel26-lts/repos/testing-i686/
  kernel26-lts/repos/testing-i686/PKGBUILD
(from rev 135668, kernel26-lts/trunk/PKGBUILD)
  kernel26-lts/repos/testing-i686/buildfix-gcc46.diff
(from rev 135668, kernel26-lts/trunk/buildfix-gcc46.diff)
  kernel26-lts/repos/testing-i686/config
(from rev 135668, kernel26-lts/trunk/config)
  kernel26-lts/repos/testing-i686/config.x86_64
(from rev 135668, kernel26-lts/trunk/config.x86_64)
  kernel26-lts/repos/testing-i686/kernel26-lts.install
(from rev 135668, kernel26-lts/trunk/kernel26-lts.install)
  kernel26-lts/repos/testing-i686/kernel26-lts.preset
(from rev 135668, kernel26-lts/trunk/kernel26-lts.preset)
  kernel26-lts/repos/testing-i686/libata-alignment.patch
(from rev 135668, kernel26-lts/trunk/libata-alignment.patch)

+
 PKGBUILD   |  214 ++
 buildfix-gcc46.diff|   32 
 config | 4776 +++
 config.x86_64  | 4585 +
 kernel26-lts.install   |  147 +
 kernel26-lts.preset|   17 
 libata-alignment.patch |   48 
 7 files changed, 9819 insertions(+)

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


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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:47:57
  Author: tpowa
Revision: 135668

upgpkg: kernel26-lts 2.6.32.45-1

bump to latest version

Modified:
  kernel26-lts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:46:33 UTC (rev 135667)
+++ PKGBUILD2011-08-17 07:47:57 UTC (rev 135668)
@@ -5,7 +5,7 @@
 pkgname=('kernel26-lts' 'kernel26-lts-headers') # Build stock -lts kernel 
 _kernelname=${pkgname#kernel26}
 _basekernel=2.6.32
-pkgver=${_basekernel}.44
+pkgver=${_basekernel}.45
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -18,7 +18,7 @@
 ${pkgname}.preset)
 options=(!strip)
 md5sums=('260551284ac224c3a43c4adac7df4879'
- 'f2eb99ef31c4826798dc573395ced62f'
+ '03249596e078033ad3a52767e7de957f'
  '463b4db10710c17200a584067f7151a0'
  '9990806b3bf3cec6f8bd419249903613'
  '2cbfeb3e2a18d45f82f613e97fc23355')



[arch-commits] Commit in alsa-utils/repos/extra-x86_64 (10 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:46:33
  Author: tpowa
Revision: 135667

archrelease: copy trunk to extra-x86_64

Added:
  alsa-utils/repos/extra-x86_64/90alsa
(from rev 135666, alsa-utils/trunk/90alsa)
  alsa-utils/repos/extra-x86_64/PKGBUILD
(from rev 135666, alsa-utils/trunk/PKGBUILD)
  alsa-utils/repos/extra-x86_64/alsa
(from rev 135666, alsa-utils/trunk/alsa)
  alsa-utils/repos/extra-x86_64/alsa.conf.d
(from rev 135666, alsa-utils/trunk/alsa.conf.d)
  alsa-utils/repos/extra-x86_64/alsaconf.patch
(from rev 135666, alsa-utils/trunk/alsaconf.patch)
Deleted:
  alsa-utils/repos/extra-x86_64/90alsa
  alsa-utils/repos/extra-x86_64/PKGBUILD
  alsa-utils/repos/extra-x86_64/alsa
  alsa-utils/repos/extra-x86_64/alsa.conf.d
  alsa-utils/repos/extra-x86_64/alsaconf.patch

+
 90alsa |   26 +--
 PKGBUILD   |   84 ++---
 alsa   |  124 +++
 alsa.conf.d|   30 ++---
 alsaconf.patch |   64 ++--
 5 files changed, 164 insertions(+), 164 deletions(-)

Deleted: 90alsa
===
--- 90alsa  2011-08-17 07:45:33 UTC (rev 135666)
+++ 90alsa  2011-08-17 07:46:33 UTC (rev 135667)
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# 90alsa: suspend/wakeup ALSA devices
-
-case "$1" in
-hibernate|suspend)
-;;
-thaw|resume)
-aplay -d 1 /dev/zero
-;;
-*) exit $NA
-;;
-esac

Copied: alsa-utils/repos/extra-x86_64/90alsa (from rev 135666, 
alsa-utils/trunk/90alsa)
===
--- 90alsa  (rev 0)
+++ 90alsa  2011-08-17 07:46:33 UTC (rev 135667)
@@ -0,0 +1,13 @@
+#!/bin/sh
+#
+# 90alsa: suspend/wakeup ALSA devices
+
+case "$1" in
+hibernate|suspend)
+;;
+thaw|resume)
+aplay -d 1 /dev/zero
+;;
+*) exit $NA
+;;
+esac

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 07:45:33 UTC (rev 135666)
+++ PKGBUILD2011-08-17 07:46:33 UTC (rev 135667)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=alsa-utils
-pkgver=1.0.24.2
-pkgrel=2
-pkgdesc="An alternative implementation of Linux sound support"
-arch=('i686' 'x86_64')
-url="http://www.alsa-project.org";
-#can not use >=$pkgver due to use of letters in alsa-lib update versioning
-depends=("alsa-lib>1.0.24" 'dialog' 'pciutils' 'ncurses' 'psmisc')
-makedepends=('xmlto' 'docbook-xsl')
-license=('GPL')
-source=(ftp://ftp.alsa-project.org/pub/utils/$pkgname-${pkgver}.tar.bz2
-alsa
-alsaconf.patch
-alsa.conf.d
-90alsa)
-backup=(etc/conf.d/alsa)
-md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
- '2ba1a1cbf653bf1a69f8a720fd6549da'
- '62ebef77d5617d0036012cc541dcf23c'
- '4c8ae9f976c7df5e271a4cb91ccc7767'
- '529216f6a46e61a546640e08ea7a0879')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../alsaconf.patch
-  ./configure --prefix=/usr --with-systemdsystemunitdir=/lib/systemd/system
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m755 ../alsa ${pkgdir}/etc/rc.d/alsa
-  install -D -m644 ../alsa.conf.d ${pkgdir}/etc/conf.d/alsa
-  install -D -m755 ../90alsa ${pkgdir}/etc/pm/sleep.d/90alsa
-  # dir where to save ALSA state
-  install -d ${pkgdir}/var/lib/alsa
-}

Copied: alsa-utils/repos/extra-x86_64/PKGBUILD (from rev 135666, 
alsa-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 07:46:33 UTC (rev 135667)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=alsa-utils
+pkgver=1.0.24.2
+pkgrel=3
+pkgdesc="An alternative implementation of Linux sound support"
+arch=('i686' 'x86_64')
+url="http://www.alsa-project.org";
+#can not use >=$pkgver due to use of letters in alsa-lib update versioning
+depends=("alsa-lib>1.0.24" 'dialog' 'pciutils' 'ncurses' 'psmisc')
+makedepends=('xmlto' 'docbook-xsl')
+license=('GPL')
+source=(ftp://ftp.alsa-project.org/pub/utils/$pkgname-${pkgver}.tar.bz2
+alsa
+alsaconf.patch
+alsa.conf.d
+90alsa)
+backup=(etc/conf.d/alsa)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../alsaconf.patch
+  ./configure --prefix=/usr --with-systemdsystemunitdir=/lib/systemd/system
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ../alsa ${pkgdir}/etc/rc.d/alsa
+  install -D -m644 ../alsa.conf.d ${pkgdir}/etc/conf.d/alsa
+  install -D -m755 ../90alsa ${pkgdir}/etc/pm/sleep.d/90alsa
+  # dir where to save ALSA state
+  install -d ${pkgdir}/var/lib/alsa
+}
+md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
+ '2ba1a1cbf653bf1a69f8a720fd6549da'
+ '7521bf20f5

[arch-commits] Commit in alsa-utils/repos/extra-i686 (10 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:45:33
  Author: tpowa
Revision: 135666

archrelease: copy trunk to extra-i686

Added:
  alsa-utils/repos/extra-i686/90alsa
(from rev 135665, alsa-utils/trunk/90alsa)
  alsa-utils/repos/extra-i686/PKGBUILD
(from rev 135665, alsa-utils/trunk/PKGBUILD)
  alsa-utils/repos/extra-i686/alsa
(from rev 135665, alsa-utils/trunk/alsa)
  alsa-utils/repos/extra-i686/alsa.conf.d
(from rev 135665, alsa-utils/trunk/alsa.conf.d)
  alsa-utils/repos/extra-i686/alsaconf.patch
(from rev 135665, alsa-utils/trunk/alsaconf.patch)
Deleted:
  alsa-utils/repos/extra-i686/90alsa
  alsa-utils/repos/extra-i686/PKGBUILD
  alsa-utils/repos/extra-i686/alsa
  alsa-utils/repos/extra-i686/alsa.conf.d
  alsa-utils/repos/extra-i686/alsaconf.patch

+
 90alsa |   26 +--
 PKGBUILD   |   84 ++---
 alsa   |  124 +++
 alsa.conf.d|   30 ++---
 alsaconf.patch |   64 ++--
 5 files changed, 164 insertions(+), 164 deletions(-)

Deleted: 90alsa
===
--- 90alsa  2011-08-17 07:43:14 UTC (rev 135665)
+++ 90alsa  2011-08-17 07:45:33 UTC (rev 135666)
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# 90alsa: suspend/wakeup ALSA devices
-
-case "$1" in
-hibernate|suspend)
-;;
-thaw|resume)
-aplay -d 1 /dev/zero
-;;
-*) exit $NA
-;;
-esac

Copied: alsa-utils/repos/extra-i686/90alsa (from rev 135665, 
alsa-utils/trunk/90alsa)
===
--- 90alsa  (rev 0)
+++ 90alsa  2011-08-17 07:45:33 UTC (rev 135666)
@@ -0,0 +1,13 @@
+#!/bin/sh
+#
+# 90alsa: suspend/wakeup ALSA devices
+
+case "$1" in
+hibernate|suspend)
+;;
+thaw|resume)
+aplay -d 1 /dev/zero
+;;
+*) exit $NA
+;;
+esac

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 07:43:14 UTC (rev 135665)
+++ PKGBUILD2011-08-17 07:45:33 UTC (rev 135666)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-# Contributor: judd 
-
-pkgname=alsa-utils
-pkgver=1.0.24.2
-pkgrel=2
-pkgdesc="An alternative implementation of Linux sound support"
-arch=('i686' 'x86_64')
-url="http://www.alsa-project.org";
-#can not use >=$pkgver due to use of letters in alsa-lib update versioning
-depends=("alsa-lib>1.0.24" 'dialog' 'pciutils' 'ncurses' 'psmisc')
-makedepends=('xmlto' 'docbook-xsl')
-license=('GPL')
-source=(ftp://ftp.alsa-project.org/pub/utils/$pkgname-${pkgver}.tar.bz2
-alsa
-alsaconf.patch
-alsa.conf.d
-90alsa)
-backup=(etc/conf.d/alsa)
-md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
- '2ba1a1cbf653bf1a69f8a720fd6549da'
- '62ebef77d5617d0036012cc541dcf23c'
- '4c8ae9f976c7df5e271a4cb91ccc7767'
- '529216f6a46e61a546640e08ea7a0879')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ../alsaconf.patch
-  ./configure --prefix=/usr --with-systemdsystemunitdir=/lib/systemd/system
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m755 ../alsa ${pkgdir}/etc/rc.d/alsa
-  install -D -m644 ../alsa.conf.d ${pkgdir}/etc/conf.d/alsa
-  install -D -m755 ../90alsa ${pkgdir}/etc/pm/sleep.d/90alsa
-  # dir where to save ALSA state
-  install -d ${pkgdir}/var/lib/alsa
-}

Copied: alsa-utils/repos/extra-i686/PKGBUILD (from rev 135665, 
alsa-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 07:45:33 UTC (rev 135666)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: judd 
+
+pkgname=alsa-utils
+pkgver=1.0.24.2
+pkgrel=3
+pkgdesc="An alternative implementation of Linux sound support"
+arch=('i686' 'x86_64')
+url="http://www.alsa-project.org";
+#can not use >=$pkgver due to use of letters in alsa-lib update versioning
+depends=("alsa-lib>1.0.24" 'dialog' 'pciutils' 'ncurses' 'psmisc')
+makedepends=('xmlto' 'docbook-xsl')
+license=('GPL')
+source=(ftp://ftp.alsa-project.org/pub/utils/$pkgname-${pkgver}.tar.bz2
+alsa
+alsaconf.patch
+alsa.conf.d
+90alsa)
+backup=(etc/conf.d/alsa)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ../alsaconf.patch
+  ./configure --prefix=/usr --with-systemdsystemunitdir=/lib/systemd/system
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m755 ../alsa ${pkgdir}/etc/rc.d/alsa
+  install -D -m644 ../alsa.conf.d ${pkgdir}/etc/conf.d/alsa
+  install -D -m755 ../90alsa ${pkgdir}/etc/pm/sleep.d/90alsa
+  # dir where to save ALSA state
+  install -d ${pkgdir}/var/lib/alsa
+}
+md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
+ '2ba1a1cbf653bf1a69f8a720fd6549da'
+ '7521bf20f5b3501a510ec4462ae4a934'
+ 

[arch-commits] Commit in alsa-utils/trunk (PKGBUILD alsaconf.patch)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:43:14
  Author: tpowa
Revision: 135665

upgpkg: alsa-utils 1.0.24.2-3

fix alsa conf patch

Modified:
  alsa-utils/trunk/PKGBUILD
  alsa-utils/trunk/alsaconf.patch

+
 PKGBUILD   |   12 ++--
 alsaconf.patch |2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:18:12 UTC (rev 135664)
+++ PKGBUILD2011-08-17 07:43:14 UTC (rev 135665)
@@ -4,7 +4,7 @@
 
 pkgname=alsa-utils
 pkgver=1.0.24.2
-pkgrel=2
+pkgrel=3
 pkgdesc="An alternative implementation of Linux sound support"
 arch=('i686' 'x86_64')
 url="http://www.alsa-project.org";
@@ -18,11 +18,6 @@
 alsa.conf.d
 90alsa)
 backup=(etc/conf.d/alsa)
-md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
- '2ba1a1cbf653bf1a69f8a720fd6549da'
- '62ebef77d5617d0036012cc541dcf23c'
- '4c8ae9f976c7df5e271a4cb91ccc7767'
- '529216f6a46e61a546640e08ea7a0879')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -40,3 +35,8 @@
   # dir where to save ALSA state
   install -d ${pkgdir}/var/lib/alsa
 }
+md5sums=('8238cd57cb301d1c36bcf0ecb59ce6b2'
+ '2ba1a1cbf653bf1a69f8a720fd6549da'
+ '7521bf20f5b3501a510ec4462ae4a934'
+ '4c8ae9f976c7df5e271a4cb91ccc7767'
+ '529216f6a46e61a546640e08ea7a0879')

Modified: alsaconf.patch
===
--- alsaconf.patch  2011-08-17 07:18:12 UTC (rev 135664)
+++ alsaconf.patch  2011-08-17 07:43:14 UTC (rev 135665)
@@ -5,7 +5,7 @@
distribution="redhat"
  elif test -f /etc/fedora-release && grep -q "Fedora" /etc/fedora-release; then
distribution="fedora"
-+elif test -f /etc/arch-release && grep -q "Arch" /etc/arch-release; then
++elif test -f /etc/arch-release; then
 +  distribution="arch"
  elif [ -f /etc/slackware-version -o -f /etc/slamd64-version ]; then
distribution="slackware"



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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:18:12
  Author: tpowa
Revision: 135664

fix homepage URL

Modified:
  musicbrainz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 07:01:41 UTC (rev 135663)
+++ PKGBUILD2011-08-17 07:18:12 UTC (rev 135664)
@@ -10,7 +10,7 @@
 pkgrel=4
 pkgdesc="The second generation incarnation of the CD Index"
 arch=('i686' 'x86_64')
-url="http://www.musicbrainz.org/index.html";
+url="http://www.musicbrainz.org";
 license=('LGPL')
 depends=('expat>=2.0')
 makedepends=('python2')



[arch-commits] Commit in lensfun/repos/extra-x86_64 (6 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:01:41
  Author: tpowa
Revision: 135663

archrelease: copy trunk to extra-x86_64

Added:
  lensfun/repos/extra-x86_64/PKGBUILD
(from rev 135662, lensfun/trunk/PKGBUILD)
  lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch
(from rev 135662, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
  lensfun/repos/extra-x86_64/lensfun-0.2.3-glibc-2.10.patch
(from rev 135662, lensfun/trunk/lensfun-0.2.3-glibc-2.10.patch)
Deleted:
  lensfun/repos/extra-x86_64/PKGBUILD
  lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch
  lensfun/repos/extra-x86_64/lensfun-0.2.3-glibc-2.10.patch

+
 PKGBUILD   |   53 +++
 lensfun-0.2.3-as-needed.patch  |   26 +--
 lensfun-0.2.3-glibc-2.10.patch |   22 
 3 files changed, 56 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 07:01:02 UTC (rev 135662)
+++ PKGBUILD2011-08-17 07:01:41 UTC (rev 135663)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=lensfun
-pkgver=0.2.5
-pkgrel=1
-pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
-arch=(i686 x86_64)
-url="http://lensfun.berlios.de/";
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('python' 'libpng')
-source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2) 
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libdir=/usr/lib || return 1
-make all || return 1
-make INSTALL_PREFIX="$pkgdir" install || return 1
-}
-md5sums=('a10438dffae68a5988fc54b0393a3755')

Copied: lensfun/repos/extra-x86_64/PKGBUILD (from rev 135662, 
lensfun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 07:01:41 UTC (rev 135663)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=lensfun
+pkgver=0.2.5
+pkgrel=2
+pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
+arch=(i686 x86_64)
+url="http://lensfun.berlios.de/";
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen')
+source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+"runtime.cpu.detection.fix.backport.patch")
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
+patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
+./configure \
+--prefix=/usr \
+--libdir=/usr/lib
+make all
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make INSTALL_PREFIX="$pkgdir" install
+}
+
+md5sums=('a10438dffae68a5988fc54b0393a3755'
+ 'a2033928f263db319de78182ab12fb7d')

Deleted: lensfun-0.2.3-as-needed.patch
===
--- lensfun-0.2.3-as-needed.patch   2011-08-17 07:01:02 UTC (rev 135662)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 07:01:41 UTC (rev 135663)
@@ -1,13 +0,0 @@
-diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
 lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
-+++ lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
-@@ -71,7 +71,7 @@
- endef
- 
- LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
--LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-+LINK.GCC.EXEC = $(GCC.LD) $(LDFLAGS) $^ $2 $(GCC.LDFLAGS.LIBS) 
$(LDFLAGS.LIBS) $(GCC.LDFLAGS) $1 -o $@
- define LINK.GCC.SO
-   $(GCC.LD) -o $@.$(SHARED.$3) -Wl,"-soname=$(notdir $@).$(basename 
$(basename $(SHARED.$3)))" $(GCC.LDFLAGS.SHARED) $(GCC.LDFLAGS) $(LDFLAGS) $1 
$^ $(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-   ln -fs $(notdir $@.$(SHARED.$3)) $@.$(basename $(basename $(SHARED.$3)))
-Only in lensfun-0.2.3/out/posix/release: deps

Copied: lensfun/repos/extra-x86_64/lensfun-0.2.3-as-needed.patch (from rev 
135662, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
===
--- lensfun-0.2.3-as-needed.patch   (rev 0)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 07:01:41 UTC (rev 135663)
@@ -0,0 +1,13 @@
+diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
+--- lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
 lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
+@@ -71,7 +71,7 @@
+ endef
+ 
+ LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
+-LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
++LINK.GC

[arch-commits] Commit in lensfun/repos/extra-i686 (6 files)

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:01:02
  Author: tpowa
Revision: 135662

archrelease: copy trunk to extra-i686

Added:
  lensfun/repos/extra-i686/PKGBUILD
(from rev 135661, lensfun/trunk/PKGBUILD)
  lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch
(from rev 135661, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
  lensfun/repos/extra-i686/lensfun-0.2.3-glibc-2.10.patch
(from rev 135661, lensfun/trunk/lensfun-0.2.3-glibc-2.10.patch)
Deleted:
  lensfun/repos/extra-i686/PKGBUILD
  lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch
  lensfun/repos/extra-i686/lensfun-0.2.3-glibc-2.10.patch

+
 PKGBUILD   |   53 +++
 lensfun-0.2.3-as-needed.patch  |   26 +--
 lensfun-0.2.3-glibc-2.10.patch |   22 
 3 files changed, 56 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-17 07:00:23 UTC (rev 135661)
+++ PKGBUILD2011-08-17 07:01:02 UTC (rev 135662)
@@ -1,21 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=lensfun
-pkgver=0.2.5
-pkgrel=1
-pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
-arch=(i686 x86_64)
-url="http://lensfun.berlios.de/";
-license=('LGPL3')
-depends=('glibc' 'glib2')
-makedepends=('python' 'libpng')
-source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2) 
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libdir=/usr/lib || return 1
-make all || return 1
-make INSTALL_PREFIX="$pkgdir" install || return 1
-}
-md5sums=('a10438dffae68a5988fc54b0393a3755')

Copied: lensfun/repos/extra-i686/PKGBUILD (from rev 135661, 
lensfun/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-17 07:01:02 UTC (rev 135662)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=lensfun
+pkgver=0.2.5
+pkgrel=2
+pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
+arch=(i686 x86_64)
+url="http://lensfun.berlios.de/";
+license=('LGPL3')
+depends=('glibc' 'glib2')
+makedepends=('python' 'libpng' 'doxygen')
+source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+"runtime.cpu.detection.fix.backport.patch")
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
+patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
+./configure \
+--prefix=/usr \
+--libdir=/usr/lib
+make all
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make INSTALL_PREFIX="$pkgdir" install
+}
+
+md5sums=('a10438dffae68a5988fc54b0393a3755'
+ 'a2033928f263db319de78182ab12fb7d')

Deleted: lensfun-0.2.3-as-needed.patch
===
--- lensfun-0.2.3-as-needed.patch   2011-08-17 07:00:23 UTC (rev 135661)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 07:01:02 UTC (rev 135662)
@@ -1,13 +0,0 @@
-diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
 lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
-+++ lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
-@@ -71,7 +71,7 @@
- endef
- 
- LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
--LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-+LINK.GCC.EXEC = $(GCC.LD) $(LDFLAGS) $^ $2 $(GCC.LDFLAGS.LIBS) 
$(LDFLAGS.LIBS) $(GCC.LDFLAGS) $1 -o $@
- define LINK.GCC.SO
-   $(GCC.LD) -o $@.$(SHARED.$3) -Wl,"-soname=$(notdir $@).$(basename 
$(basename $(SHARED.$3)))" $(GCC.LDFLAGS.SHARED) $(GCC.LDFLAGS) $(LDFLAGS) $1 
$^ $(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
-   ln -fs $(notdir $@.$(SHARED.$3)) $@.$(basename $(basename $(SHARED.$3)))
-Only in lensfun-0.2.3/out/posix/release: deps

Copied: lensfun/repos/extra-i686/lensfun-0.2.3-as-needed.patch (from rev 
135661, lensfun/trunk/lensfun-0.2.3-as-needed.patch)
===
--- lensfun-0.2.3-as-needed.patch   (rev 0)
+++ lensfun-0.2.3-as-needed.patch   2011-08-17 07:01:02 UTC (rev 135662)
@@ -0,0 +1,13 @@
+diff -ru lensfun-0.2.3.orig/build/mak/compiler/gcc.mak 
lensfun-0.2.3/build/mak/compiler/gcc.mak
+--- lensfun-0.2.3.orig/build/mak/compiler/gcc.mak  2009-03-15 
02:42:40.0 +0100
 lensfun-0.2.3/build/mak/compiler/gcc.mak   2009-03-15 02:43:37.0 
+0100
+@@ -71,7 +71,7 @@
+ endef
+ 
+ LINK.GCC.AR = $(GCC.AR) $(GCC.ARFLAGS) $@ $^
+-LINK.GCC.EXEC = $(GCC.LD) -o $@ $(GCC.LDFLAGS) $(LDFLAGS) $1 $^ 
$(GCC.LDFLAGS.LIBS) $(LDFLAGS.LIBS) $2
++LINK.GCC.EXEC = $(GCC.LD)

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

2011-08-17 Thread Tobias Powalowski
Date: Wednesday, August 17, 2011 @ 03:00:23
  Author: tpowa
Revision: 135661

upgpkg: lensfun 0.2.5-2

fix segfault

Added:
  lensfun/trunk/runtime.cpu.detection.fix.backport.patch
Modified:
  lensfun/trunk/PKGBUILD

--+
 PKGBUILD |   25 +++---
 runtime.cpu.detection.fix.backport.patch |   68 +
 2 files changed, 86 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-17 06:53:34 UTC (rev 135660)
+++ PKGBUILD2011-08-17 07:00:23 UTC (rev 135661)
@@ -3,19 +3,30 @@
 
 pkgname=lensfun
 pkgver=0.2.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Database of photographic lenses and a library that allows advanced 
access to the database"
 arch=(i686 x86_64)
 url="http://lensfun.berlios.de/";
 license=('LGPL3')
 depends=('glibc' 'glib2')
-makedepends=('python' 'libpng')
-source=(http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2) 
+makedepends=('python' 'libpng' 'doxygen')
+source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2";
+"runtime.cpu.detection.fix.backport.patch")
 
 build() {
 cd "${srcdir}/${pkgname}-${pkgver}"
-./configure --prefix=/usr --libdir=/usr/lib || return 1
-make all || return 1
-make INSTALL_PREFIX="$pkgdir" install || return 1
+sed -i 's|#!/usr/bin/python|#!/usr/bin/python2|' configure
+patch -p0 -i "${srcdir}/runtime.cpu.detection.fix.backport.patch"
+./configure \
+--prefix=/usr \
+--libdir=/usr/lib
+make all
 }
-md5sums=('a10438dffae68a5988fc54b0393a3755')
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+make INSTALL_PREFIX="$pkgdir" install
+}
+
+md5sums=('a10438dffae68a5988fc54b0393a3755'
+ 'a2033928f263db319de78182ab12fb7d')

Added: runtime.cpu.detection.fix.backport.patch
===
--- runtime.cpu.detection.fix.backport.patch(rev 0)
+++ runtime.cpu.detection.fix.backport.patch2011-08-17 07:00:23 UTC (rev 
135661)
@@ -0,0 +1,68 @@
+--- libs/lensfun/cpuid.cpp.bak 2011-07-07 00:13:34.227910367 -0400
 libs/lensfun/cpuid.cpp 2011-07-07 03:27:39.676452438 -0400
+@@ -25,17 +25,14 @@
+ guint _lf_detect_cpu_features ()
+ {
+ #define cpuid(cmd) \
+-asm ( \
++__asm volatile ( \
+ "push %%"R_BX"\n" \
+ "cpuid\n" \
+ "pop %%"R_BX"\n" \
+: "=a" (ax), "=c" (cx),  "=d" (dx) \
+: "0" (cmd))
+ 
+-register __SIZE_TYPE__ ax asm (R_AX);
+-register __SIZE_TYPE__ bx asm (R_BX);
+-register __SIZE_TYPE__ dx asm (R_DX);
+-register __SIZE_TYPE__ cx asm (R_CX);
++__SIZE_TYPE__ ax, cx, dx, tmp;
+ static GStaticMutex lock = G_STATIC_MUTEX_INIT;
+ static guint cpuflags = -1;
+ 
+@@ -45,7 +42,7 @@
+ cpuflags = 0;
+ 
+ /* Test cpuid presence by checking bit 21 of eflags */
+-asm (
++__asm volatile (
+ "pushf\n"
+ "pop %0\n"
+ "mov %0, %1\n"
+@@ -57,7 +54,7 @@
+ "cmp %0, %1\n"
+ "setne   %%al\n"
+ "movzb   %%al, %0\n"
+-: "=r" (ax), "=r" (bx));
++: "=r" (ax), "=r" (tmp));
+ 
+ if (ax)
+ {
+@@ -88,12 +85,12 @@
+ cpuflags |= LF_CPU_FLAG_SSE4_2;
+ }
+ 
+-/* Is there extensions */
++/* Are there extensions? */
+ cpuid (0x8000);
+ 
+ if (ax)
+ {
+-/* Request for extensions */
++/* Ask extensions */
+ cpuid (0x8001);
+ 
+ if (dx & 0x8000)
+@@ -112,12 +109,4 @@
+ #undef cpuid
+ }
+ 
+-#else
+-
+-guint
+-rs_detect_cpu_features()
+-{
+-return 0;
+-}
+-
+ #endif /* __i386__ || __x86_64__ */