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

2012-03-05 Thread Tobias Powalowski
Date: Monday, March 5, 2012 @ 03:19:59
  Author: tpowa
Revision: 152195

upgpkg: qemu 1.0.1-1

bump to latest version

Modified:
  qemu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 07:53:46 UTC (rev 152194)
+++ PKGBUILD2012-03-05 08:19:59 UTC (rev 152195)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=qemu
-pkgver=1.0
-pkgrel=3
+pkgver=1.0.1
+pkgrel=1
 pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
 arch=('i686' 'x86_64')
 license=('GPL2' 'LGPL2.1')
@@ -29,9 +29,9 @@
   cd ${srcdir}/
   git clone git://git.seabios.org/seabios.git
   cd seabios
-  find 'tools/' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
+  #find 'tools/' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
   make clean
-  make
+  make PYTHON=python2
 }
 
 package() {
@@ -52,5 +52,5 @@
 done
 
 }
-md5sums=('a64b36067a191451323b0d34ebb44954'
+md5sums=('5efd1091f01e3bc31bfdec27b8edeb00'
  'b316a066d2f1bb57d8f5b7ea1d0d1caf')



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

2012-03-05 Thread Tobias Powalowski
Date: Monday, March 5, 2012 @ 03:20:34
  Author: tpowa
Revision: 152196

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

Added:
  qemu/repos/extra-i686/65-kvm.rules
(from rev 152195, qemu/trunk/65-kvm.rules)
  qemu/repos/extra-i686/PKGBUILD
(from rev 152195, qemu/trunk/PKGBUILD)
  qemu/repos/extra-i686/qemu.install
(from rev 152195, qemu/trunk/qemu.install)
  qemu/repos/extra-x86_64/65-kvm.rules
(from rev 152195, qemu/trunk/65-kvm.rules)
  qemu/repos/extra-x86_64/PKGBUILD
(from rev 152195, qemu/trunk/PKGBUILD)
  qemu/repos/extra-x86_64/qemu.install
(from rev 152195, qemu/trunk/qemu.install)
Deleted:
  qemu/repos/extra-i686/65-kvm.rules
  qemu/repos/extra-i686/PKGBUILD
  qemu/repos/extra-i686/qemu.install
  qemu/repos/extra-x86_64/65-kvm.rules
  qemu/repos/extra-x86_64/PKGBUILD
  qemu/repos/extra-x86_64/qemu.install

---+
 extra-i686/65-kvm.rules   |2 
 extra-i686/PKGBUILD   |  112 ++--
 extra-i686/qemu.install   |   48 +-
 extra-x86_64/65-kvm.rules |2 
 extra-x86_64/PKGBUILD |  112 ++--
 extra-x86_64/qemu.install |   48 +-
 6 files changed, 162 insertions(+), 162 deletions(-)

Deleted: extra-i686/65-kvm.rules
===
--- extra-i686/65-kvm.rules 2012-03-05 08:19:59 UTC (rev 152195)
+++ extra-i686/65-kvm.rules 2012-03-05 08:20:34 UTC (rev 152196)
@@ -1 +0,0 @@
-KERNEL==kvm, GROUP=kvm, MODE=0660

Copied: qemu/repos/extra-i686/65-kvm.rules (from rev 152195, 
qemu/trunk/65-kvm.rules)
===
--- extra-i686/65-kvm.rules (rev 0)
+++ extra-i686/65-kvm.rules 2012-03-05 08:20:34 UTC (rev 152196)
@@ -0,0 +1 @@
+KERNEL==kvm, GROUP=kvm, MODE=0660

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:19:59 UTC (rev 152195)
+++ extra-i686/PKGBUILD 2012-03-05 08:20:34 UTC (rev 152196)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-pkgname=qemu
-pkgver=1.0
-pkgrel=3
-pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
-arch=('i686' 'x86_64')
-license=('GPL2' 'LGPL2.1')
-url=http://wiki.qemu.org/Index.html;
-makedepends=('iasl' 'git' 'texi2html' 'perl' 'python2')
-depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl' 'libpulse')
-backup=('etc/qemu/target-x86_64.conf')
-install=qemu.install
-source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.gz
-65-kvm.rules)
-options=(!strip)
-
-build()
-{
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i -e 's/lib64/lib/g' x86_64.ld
-  ./configure --prefix=/usr --sysconfdir=/etc --audio-drv-list=oss,alsa,sdl,pa 
\
-  --python=/usr/bin/python2 \
-  --audio-card-list=ac97,sb16,es1370,hda \
-  --enable-docs
-  make
-  # Use latest seabios version
-  # https://bugs.archlinux.org/task/27616
-  cd ${srcdir}/
-  git clone git://git.seabios.org/seabios.git
-  cd seabios
-  find 'tools/' 'contrib' -type f | xargs sed -i 
's@^#!.*python$@#!/usr/bin/python2@'
-  make clean
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  # Use latest seabios version
-  # https://bugs.archlinux.org/task/27616
-  cp ${srcdir}/seabios/out/bios.bin ${pkgdir}/usr/share/qemu/bios.bin
-
-  install -D -m644 ${srcdir}/65-kvm.rules \
-   ${pkgdir}/lib/udev/rules.d/65-kvm.rules
-  # strip scripts directory
-find ${pkgdir}/usr/src/linux-${_kernver}/scripts  -type f -perm -u+w 
2/dev/null | while read binary ; do
-  case $(file -bi $binary) in
-*application/x-executable*) # Binaries
-/usr/bin/strip $STRIP_BINARIES $binary;;
-  esac
-done
-
-}
-md5sums=('a64b36067a191451323b0d34ebb44954'
- 'b316a066d2f1bb57d8f5b7ea1d0d1caf')

Copied: qemu/repos/extra-i686/PKGBUILD (from rev 152195, qemu/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:20:34 UTC (rev 152196)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+pkgname=qemu
+pkgver=1.0.1
+pkgrel=1
+pkgdesc=A generic and open source processor emulator which achieves a good 
emulation speed by using dynamic translation.
+arch=('i686' 'x86_64')
+license=('GPL2' 'LGPL2.1')
+url=http://wiki.qemu.org/Index.html;
+makedepends=('iasl' 'git' 'texi2html' 'perl' 'python2')
+depends=('libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls=2.4.1' 
'bluez' 'vde2' 'util-linux-ng' 'curl' 'libsasl' 'libgl' 'libpulse')
+backup=('etc/qemu/target-x86_64.conf')
+install=qemu.install

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:36
  Author: ibiru
Revision: 152197

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

Added:
  akonadi/repos/extra-i686/PKGBUILD
(from rev 152196, akonadi/repos/testing-i686/PKGBUILD)
  akonadi/repos/extra-i686/akonadi.install
(from rev 152196, akonadi/repos/testing-i686/akonadi.install)
Deleted:
  akonadi/repos/extra-i686/PKGBUILD
  akonadi/repos/extra-i686/akonadi.install
  akonadi/repos/testing-i686/

-+
 PKGBUILD|   64 +++---
 akonadi.install |   22 +-
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:20:34 UTC (rev 152196)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:36 UTC (rev 152197)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=akonadi
-pkgver=1.7.0
-pkgrel=1
-pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
-arch=('i686' 'x86_64')
-url='http://pim.kde.org/akonadi'
-license=('LGPL')
-depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('804309dca70ede35b4a654ab764e9079')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: akonadi/repos/extra-i686/PKGBUILD (from rev 152196, 
akonadi/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:36 UTC (rev 152197)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.7.1
+pkgrel=1
+pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
+arch=('i686' 'x86_64')
+url='http://pim.kde.org/akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('54e0556d73c22c7b3393069071e0b717')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/akonadi.install
===
--- extra-i686/akonadi.install  2012-03-05 08:20:34 UTC (rev 152196)
+++ extra-i686/akonadi.install  2012-03-05 08:55:36 UTC (rev 152197)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: akonadi/repos/extra-i686/akonadi.install (from rev 152196, 
akonadi/repos/testing-i686/akonadi.install)
===
--- extra-i686/akonadi.install  (rev 0)
+++ extra-i686/akonadi.install  2012-03-05 08:55:36 UTC (rev 152197)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:37
  Author: ibiru
Revision: 152198

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

Added:
  akonadi/repos/extra-x86_64/PKGBUILD
(from rev 152196, akonadi/repos/testing-x86_64/PKGBUILD)
  akonadi/repos/extra-x86_64/akonadi.install
(from rev 152196, akonadi/repos/testing-x86_64/akonadi.install)
Deleted:
  akonadi/repos/extra-x86_64/PKGBUILD
  akonadi/repos/extra-x86_64/akonadi.install
  akonadi/repos/testing-x86_64/

-+
 PKGBUILD|   64 +++---
 akonadi.install |   22 +-
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:55:36 UTC (rev 152197)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:37 UTC (rev 152198)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=akonadi
-pkgver=1.7.0
-pkgrel=1
-pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
-arch=('i686' 'x86_64')
-url='http://pim.kde.org/akonadi'
-license=('LGPL')
-depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('804309dca70ede35b4a654ab764e9079')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: akonadi/repos/extra-x86_64/PKGBUILD (from rev 152196, 
akonadi/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:37 UTC (rev 152198)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.7.1
+pkgrel=1
+pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
+arch=('i686' 'x86_64')
+url='http://pim.kde.org/akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('54e0556d73c22c7b3393069071e0b717')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/akonadi.install
===
--- extra-x86_64/akonadi.install2012-03-05 08:55:36 UTC (rev 152197)
+++ extra-x86_64/akonadi.install2012-03-05 08:55:37 UTC (rev 152198)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: akonadi/repos/extra-x86_64/akonadi.install (from rev 152196, 
akonadi/repos/testing-x86_64/akonadi.install)
===
--- extra-x86_64/akonadi.install(rev 0)
+++ extra-x86_64/akonadi.install2012-03-05 08:55:37 UTC (rev 152198)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



[arch-commits] Commit in avogadro/repos (10 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:39
  Author: ibiru
Revision: 152199

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

Added:
  avogadro/repos/extra-i686/PKGBUILD
(from rev 152196, avogadro/repos/testing-i686/PKGBUILD)
  avogadro/repos/extra-i686/avogadro.install
(from rev 152196, avogadro/repos/testing-i686/avogadro.install)
  avogadro/repos/extra-i686/fix-boost.patch
(from rev 152196, avogadro/repos/testing-i686/fix-boost.patch)
  avogadro/repos/extra-i686/fix-opengl-headers.patch
(from rev 152196, avogadro/repos/testing-i686/fix-opengl-headers.patch)
  avogadro/repos/extra-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch
(from rev 152196, 
avogadro/repos/testing-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch)
Deleted:
  avogadro/repos/extra-i686/PKGBUILD
  avogadro/repos/extra-i686/avogadro.install
  avogadro/repos/extra-i686/fix-boost.patch
  avogadro/repos/extra-i686/replace-qt4_automoc-with-qt4_wrap_cpp.patch
  avogadro/repos/testing-i686/

-+
 PKGBUILD|   87 -
 avogadro.install|   22 
 fix-boost.patch |   66 -
 fix-opengl-headers.patch|   53 
 replace-qt4_automoc-with-qt4_wrap_cpp.patch | 1556 +-
 5 files changed, 920 insertions(+), 864 deletions(-)

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


[arch-commits] Commit in avogadro/repos (10 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:44
  Author: ibiru
Revision: 152200

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

Added:
  avogadro/repos/extra-x86_64/PKGBUILD
(from rev 152196, avogadro/repos/testing-x86_64/PKGBUILD)
  avogadro/repos/extra-x86_64/avogadro.install
(from rev 152196, avogadro/repos/testing-x86_64/avogadro.install)
  avogadro/repos/extra-x86_64/fix-boost.patch
(from rev 152196, avogadro/repos/testing-x86_64/fix-boost.patch)
  avogadro/repos/extra-x86_64/fix-opengl-headers.patch
(from rev 152196, avogadro/repos/testing-x86_64/fix-opengl-headers.patch)
  avogadro/repos/extra-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch
(from rev 152196, 
avogadro/repos/testing-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch)
Deleted:
  avogadro/repos/extra-x86_64/PKGBUILD
  avogadro/repos/extra-x86_64/avogadro.install
  avogadro/repos/extra-x86_64/fix-boost.patch
  avogadro/repos/extra-x86_64/replace-qt4_automoc-with-qt4_wrap_cpp.patch
  avogadro/repos/testing-x86_64/

-+
 PKGBUILD|   87 -
 avogadro.install|   22 
 fix-boost.patch |   66 -
 fix-opengl-headers.patch|   53 
 replace-qt4_automoc-with-qt4_wrap_cpp.patch | 1556 +-
 5 files changed, 920 insertions(+), 864 deletions(-)

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


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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:51
  Author: ibiru
Revision: 152201

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

Added:
  boost/repos/extra-i686/PKGBUILD
(from rev 152196, boost/repos/testing-i686/PKGBUILD)
  boost/repos/extra-i686/exceptions.patch
(from rev 152196, boost/repos/testing-i686/exceptions.patch)
Deleted:
  boost/repos/extra-i686/BOOST_FOREACH.patch
  boost/repos/extra-i686/PKGBUILD
  boost/repos/extra-i686/exceptions.patch
  boost/repos/testing-i686/

-+
 BOOST_FOREACH.patch |   60 
 PKGBUILD|  239 --
 exceptions.patch|   50 +-
 3 files changed, 143 insertions(+), 206 deletions(-)

Deleted: extra-i686/BOOST_FOREACH.patch
===
--- extra-i686/BOOST_FOREACH.patch  2012-03-05 08:55:44 UTC (rev 152200)
+++ extra-i686/BOOST_FOREACH.patch  2012-03-05 08:55:51 UTC (rev 152201)
@@ -1,60 +0,0 @@
-Index: /trunk/boost/foreach_fwd.hpp
-===
 /trunk/boost/foreach_fwd.hpp   (revision 62661)
-+++ /trunk/boost/foreach_fwd.hpp   (revision 75540)
-@@ -15,4 +15,6 @@
- #define BOOST_FOREACH_FWD_HPP
- 
-+#include utility // for std::pair
-+
- // This must be at global scope, hence the uglified name
- enum boost_foreach_argument_dependent_lookup_hack
-@@ -26,4 +28,7 @@
- namespace foreach
- {
-+templatetypename T
-+std::pairT, T in_range(T begin, T end);
-+
- 
///
- // boost::foreach::tag
-@@ -47,4 +52,22 @@
- } // namespace foreach
- 
-+// Workaround for unfortunate https://svn.boost.org/trac/boost/ticket/6131
-+namespace BOOST_FOREACH
-+{
-+using foreach::in_range;
-+using foreach::tag;
-+
-+templatetypename T
-+struct is_lightweight_proxy
-+  : foreach::is_lightweight_proxyT
-+{};
-+
-+templatetypename T
-+struct is_noncopyable
-+  : foreach::is_noncopyableT
-+{};
-+
-+} // namespace BOOST_FOREACH
-+
- } // namespace boost
- 
-Index: /trunk/boost/foreach.hpp
-===
 /trunk/boost/foreach.hpp   (revision 75077)
-+++ /trunk/boost/foreach.hpp   (revision 75540)
-@@ -166,5 +166,5 @@
- //   at the global namespace for your type.
- templatetypename T
--inline boost::foreach::is_lightweight_proxyT *
-+inline boost::BOOST_FOREACH::is_lightweight_proxyT *
- boost_foreach_is_lightweight_proxy(T *, BOOST_FOREACH_TAG_DEFAULT) { return 
0; }
- 
-@@ -191,5 +191,5 @@
- //   at the global namespace for your type.
- templatetypename T
--inline boost::foreach::is_noncopyableT *
-+inline boost::BOOST_FOREACH::is_noncopyableT *
- boost_foreach_is_noncopyable(T *, BOOST_FOREACH_TAG_DEFAULT) { return 0; }
- 

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:55:44 UTC (rev 152200)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:51 UTC (rev 152201)
@@ -1,121 +0,0 @@
-# $Id$
-# Maintainer: kevin ke...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Kritoke krit...@gamebox.net
-# Contributor: Luca Roccia little_r...@users.sourceforge.net
-
-pkgbase=boost
-pkgname=('boost-libs' 'boost')
-pkgver=1.48.0
-_boostver=${pkgver//./_}
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.boost.org/;
-makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
-source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
-exceptions.patch
-BOOST_FOREACH.patch)
-license=('custom')
-md5sums=('313a11e97eb56eb7efd18325354631be'
- '9b44c28b36303152050c8c82469569c5'
- '2db6098a1a39bced4c6162eb46418320')
-
-_stagedir=${srcdir}/stagedir
-
-build() {
-  # set python path for bjam
-  cd ${srcdir}/${pkgbase}_${_boostver}/tools
-  echo using python : 2.7 : /usr/bin/python2 ;  build/v2/user-config.jam
-  echo using python : 3.2 : /usr/bin/python : /usr/include/python3.2mu : 
/usr/lib ;  build/v2/user-config.jam
-  echo using mpi ;  build/v2/user-config.jam
-
-  cd ${srcdir}/${pkgbase}_${_boostver}
-  # https://svn.boost.org/trac/boost/ticket/5731
-  patch -p0 -i ${srcdir}/exceptions.patch
-  # https://svn.boost.org/trac/boost/ticket/6131
-  patch -p2 -i ${srcdir}/BOOST_FOREACH.patch
-
-
-  # build bjam
-  cd ${srcdir}/${pkgbase}_${_boostver}/tools/build/v2/engine
-  ./build.sh cc
-
-  _bindir=bin.linuxx86
-  [ ${CARCH} = x86_64 ]  _bindir=bin.linuxx86_64
-
-  install -d ${_stagedir}/usr/bin
-  install ${_bindir}/bjam ${_stagedir}/usr/bin/bjam
-
-  # build tools
-  cd ${srcdir}/${pkgbase}_${_boostver}/tools/
-  ${_stagedir}/usr/bin/bjam --toolset=gcc
-
-  # copy the tools
-  cd ${srcdir}/${pkgbase}_${_boostver}/dist/bin
-  for i in *;do
-  install -m755 ${i} ${_stagedir}/usr/bin/${i}
-  done
-
-  #boostbook needed by 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:54
  Author: ibiru
Revision: 152203

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

Added:
  ekiga/repos/extra-i686/PKGBUILD
(from rev 152196, ekiga/repos/testing-i686/PKGBUILD)
  ekiga/repos/extra-i686/ekiga.install
(from rev 152196, ekiga/repos/testing-i686/ekiga.install)
Deleted:
  ekiga/repos/extra-i686/PKGBUILD
  ekiga/repos/extra-i686/ekiga.install
  ekiga/repos/testing-i686/

---+
 PKGBUILD  |   72 
 ekiga.install |   44 +-
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:55:53 UTC (rev 152202)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:54 UTC (rev 152203)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Tom K t...@runbox.com
-
-pkgname=ekiga
-pkgver=3.3.2
-pkgrel=2
-pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
-url=http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-common')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-groups=('gnome-extra')
-install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
-
-  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
-  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
-}

Copied: ekiga/repos/extra-i686/PKGBUILD (from rev 152196, 
ekiga/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:54 UTC (rev 152203)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=3
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/ekiga.install
===
--- extra-i686/ekiga.install2012-03-05 08:55:53 UTC (rev 152202)
+++ extra-i686/ekiga.install2012-03-05 08:55:54 UTC (rev 152203)
@@ -1,22 +0,0 @@
-pkgname=ekiga
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: ekiga/repos/extra-i686/ekiga.install (from rev 152196, 
ekiga/repos/testing-i686/ekiga.install)
===
--- extra-i686/ekiga.install(rev 0)
+++ extra-i686/ekiga.install2012-03-05 08:55:54 UTC (rev 152203)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:56
  Author: ibiru
Revision: 152204

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

Added:
  ekiga/repos/extra-x86_64/PKGBUILD
(from rev 152196, ekiga/repos/testing-x86_64/PKGBUILD)
  ekiga/repos/extra-x86_64/ekiga.install
(from rev 152196, ekiga/repos/testing-x86_64/ekiga.install)
Deleted:
  ekiga/repos/extra-x86_64/PKGBUILD
  ekiga/repos/extra-x86_64/ekiga.install
  ekiga/repos/testing-x86_64/

---+
 PKGBUILD  |   72 
 ekiga.install |   44 +-
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:55:54 UTC (rev 152203)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:56 UTC (rev 152204)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Tom K t...@runbox.com
-
-pkgname=ekiga
-pkgver=3.3.2
-pkgrel=2
-pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
-url=http://www.ekiga.org;
-license=(GPL)
-arch=(i686 x86_64)
-depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
-makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 
'gnome-common')
-optdepends=('evolution-data-server: Evolution integration')
-options=(!emptydirs)
-groups=('gnome-extra')
-install=ekiga.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-schemas-install \
-  --disable-scrollkeeper --enable-dbus
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
-
-  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
-  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
-}

Copied: ekiga/repos/extra-x86_64/PKGBUILD (from rev 152196, 
ekiga/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:56 UTC (rev 152204)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Tom K t...@runbox.com
+
+pkgname=ekiga
+pkgver=3.3.2
+pkgrel=3
+pkgdesc=VOIP/Videoconferencing app with full SIP and H.323 support 
(GnomeMeeting expanded and renamed)
+url=http://www.ekiga.org;
+license=(GPL)
+arch=(i686 x86_64)
+depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 
'gtk2' 'gconf')
+makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost')
+optdepends=('evolution-data-server: Evolution integration')
+options=(!emptydirs)
+groups=('gnome-extra')
+install=ekiga.install
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('d4dd47a47696c53e6f3839eef6e0e896dd3d07babb2e68ff8fe994d67ba8807a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-schemas-install \
+  --disable-scrollkeeper --enable-dbus
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install
+
+  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain ekiga ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Deleted: extra-x86_64/ekiga.install
===
--- extra-x86_64/ekiga.install  2012-03-05 08:55:54 UTC (rev 152203)
+++ extra-x86_64/ekiga.install  2012-03-05 08:55:56 UTC (rev 152204)
@@ -1,22 +0,0 @@
-pkgname=ekiga
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: ekiga/repos/extra-x86_64/ekiga.install (from rev 152196, 
ekiga/repos/testing-x86_64/ekiga.install)
===
--- extra-x86_64/ekiga.install  (rev 0)
+++ extra-x86_64/ekiga.install  2012-03-05 08:55:56 UTC (rev 152204)
@@ -0,0 +1,22 @@
+pkgname=ekiga
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:58
  Author: ibiru
Revision: 152205

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

Added:
  hugin/repos/extra-i686/PKGBUILD
(from rev 152196, hugin/repos/testing-i686/PKGBUILD)
  hugin/repos/extra-i686/hugin.install
(from rev 152196, hugin/repos/testing-i686/hugin.install)
Deleted:
  hugin/repos/extra-i686/PKGBUILD
  hugin/repos/extra-i686/hugin.install
  hugin/repos/testing-i686/

---+
 PKGBUILD  |   69 
 hugin.install |   30 
 2 files changed, 50 insertions(+), 49 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:55:56 UTC (rev 152204)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:58 UTC (rev 152205)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Dominik Ryba domr...@post.pl
-
-pkgname=hugin
-pkgver=2011.4.0
-pkgrel=1
-pkgdesc=A frontend to the panorama-tools
-arch=('i686' 'x86_64')
-url=http://hugin.sourceforge.net/;
-license=('GPL')
-depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
- 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
-makedepends=('zip' 'cmake' 'boost' 'tclap')
-install=hugin.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b')
-
-build() {
-  cd ${srcdir}
-  mkdir build  cd build
-  cmake ${srcdir}/${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_EXE_LINKER_FLAGS=-lpthread \
--DENABLE_LAPACK=yes
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: hugin/repos/extra-i686/PKGBUILD (from rev 152196, 
hugin/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:55:58 UTC (rev 152205)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=hugin
+pkgver=2011.4.0
+pkgrel=2
+pkgdesc=A frontend to the panorama-tools
+arch=('i686' 'x86_64')
+url=http://hugin.sourceforge.net/;
+license=('GPL')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
+ 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
+makedepends=('zip' 'cmake' 'boost' 'tclap')
+install=hugin.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ${srcdir}/${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_EXE_LINKER_FLAGS=-lpthread \
+-DENABLE_LAPACK=yes
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/hugin.install
===
--- extra-i686/hugin.install2012-03-05 08:55:56 UTC (rev 152204)
+++ extra-i686/hugin.install2012-03-05 08:55:58 UTC (rev 152205)
@@ -1,15 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}

Copied: hugin/repos/extra-i686/hugin.install (from rev 152196, 
hugin/repos/testing-i686/hugin.install)
===
--- extra-i686/hugin.install(rev 0)
+++ extra-i686/hugin.install2012-03-05 08:55:58 UTC (rev 152205)
@@ -0,0 +1,15 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:55:59
  Author: ibiru
Revision: 152206

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

Added:
  hugin/repos/extra-x86_64/PKGBUILD
(from rev 152196, hugin/repos/testing-x86_64/PKGBUILD)
  hugin/repos/extra-x86_64/hugin.install
(from rev 152196, hugin/repos/testing-x86_64/hugin.install)
Deleted:
  hugin/repos/extra-x86_64/PKGBUILD
  hugin/repos/extra-x86_64/hugin.install
  hugin/repos/testing-x86_64/

---+
 PKGBUILD  |   69 
 hugin.install |   30 
 2 files changed, 50 insertions(+), 49 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:55:58 UTC (rev 152205)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:59 UTC (rev 152206)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Dominik Ryba domr...@post.pl
-
-pkgname=hugin
-pkgver=2011.4.0
-pkgrel=1
-pkgdesc=A frontend to the panorama-tools
-arch=('i686' 'x86_64')
-url=http://hugin.sourceforge.net/;
-license=('GPL')
-depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
- 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
-makedepends=('zip' 'cmake' 'boost' 'tclap')
-install=hugin.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b')
-
-build() {
-  cd ${srcdir}
-  mkdir build  cd build
-  cmake ${srcdir}/${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_EXE_LINKER_FLAGS=-lpthread \
--DENABLE_LAPACK=yes
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: hugin/repos/extra-x86_64/PKGBUILD (from rev 152196, 
hugin/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:55:59 UTC (rev 152206)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=hugin
+pkgver=2011.4.0
+pkgrel=2
+pkgdesc=A frontend to the panorama-tools
+arch=('i686' 'x86_64')
+url=http://hugin.sourceforge.net/;
+license=('GPL')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
+ 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
+makedepends=('zip' 'cmake' 'boost' 'tclap')
+install=hugin.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ${srcdir}/${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_EXE_LINKER_FLAGS=-lpthread \
+-DENABLE_LAPACK=yes
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/hugin.install
===
--- extra-x86_64/hugin.install  2012-03-05 08:55:58 UTC (rev 152205)
+++ extra-x86_64/hugin.install  2012-03-05 08:55:59 UTC (rev 152206)
@@ -1,15 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
-  update-desktop-database -q
-  update-mime-database usr/share/mime  /dev/null
-}

Copied: hugin/repos/extra-x86_64/hugin.install (from rev 152196, 
hugin/repos/testing-x86_64/hugin.install)
===
--- extra-x86_64/hugin.install  (rev 0)
+++ extra-x86_64/hugin.install  2012-03-05 08:55:59 UTC (rev 152206)
@@ -0,0 +1,15 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/gnome
+  update-desktop-database -q
+  update-mime-database usr/share/mime  /dev/null
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:01
  Author: ibiru
Revision: 152207

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

Added:
  kdeedu-kig/repos/extra-i686/PKGBUILD
(from rev 152196, kdeedu-kig/repos/testing-i686/PKGBUILD)
  kdeedu-kig/repos/extra-i686/kdeedu-kig.install
(from rev 152196, kdeedu-kig/repos/testing-i686/kdeedu-kig.install)
Deleted:
  kdeedu-kig/repos/extra-i686/PKGBUILD
  kdeedu-kig/repos/extra-i686/kdeedu-kig.install
  kdeedu-kig/repos/testing-i686/

+
 PKGBUILD   |   68 +--
 kdeedu-kig.install |   24 +-
 2 files changed, 46 insertions(+), 46 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:55:59 UTC (rev 152206)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:01 UTC (rev 152207)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-kig
-pkgver=4.8.0
-pkgrel=1
-pkgdesc=Interactive Geometry
-url=http://kde.org/applications/education/kig/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/xz/kig-${pkgver}.tar.xz;)
-sha1sums=('141a4c9230ab134dcf7016c2880357d9e52b8f69')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kig-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
-}

Copied: kdeedu-kig/repos/extra-i686/PKGBUILD (from rev 152196, 
kdeedu-kig/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:01 UTC (rev 152207)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-kig
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=Interactive Geometry
+url=http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/xz/kig-${pkgver}.tar.xz;)
+sha1sums=('141a4c9230ab134dcf7016c2880357d9e52b8f69')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
+}

Deleted: extra-i686/kdeedu-kig.install
===
--- extra-i686/kdeedu-kig.install   2012-03-05 08:55:59 UTC (rev 152206)
+++ extra-i686/kdeedu-kig.install   2012-03-05 08:56:01 UTC (rev 152207)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-kig/repos/extra-i686/kdeedu-kig.install (from rev 152196, 
kdeedu-kig/repos/testing-i686/kdeedu-kig.install)
===
--- extra-i686/kdeedu-kig.install   (rev 0)
+++ extra-i686/kdeedu-kig.install   2012-03-05 08:56:01 UTC (rev 152207)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:03
  Author: ibiru
Revision: 152208

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

Added:
  kdeedu-kig/repos/extra-x86_64/PKGBUILD
(from rev 152196, kdeedu-kig/repos/testing-x86_64/PKGBUILD)
  kdeedu-kig/repos/extra-x86_64/kdeedu-kig.install
(from rev 152196, kdeedu-kig/repos/testing-x86_64/kdeedu-kig.install)
Deleted:
  kdeedu-kig/repos/extra-x86_64/PKGBUILD
  kdeedu-kig/repos/extra-x86_64/kdeedu-kig.install
  kdeedu-kig/repos/testing-x86_64/

+
 PKGBUILD   |   68 +--
 kdeedu-kig.install |   24 +-
 2 files changed, 46 insertions(+), 46 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:01 UTC (rev 152207)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:03 UTC (rev 152208)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-kig
-pkgver=4.8.0
-pkgrel=1
-pkgdesc=Interactive Geometry
-url=http://kde.org/applications/education/kig/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/xz/kig-${pkgver}.tar.xz;)
-sha1sums=('141a4c9230ab134dcf7016c2880357d9e52b8f69')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../kig-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-
-  # Use the python2 executable
-  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
-}

Copied: kdeedu-kig/repos/extra-x86_64/PKGBUILD (from rev 152196, 
kdeedu-kig/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:03 UTC (rev 152208)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-kig
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=Interactive Geometry
+url=http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/xz/kig-${pkgver}.tar.xz;)
+sha1sums=('141a4c9230ab134dcf7016c2880357d9e52b8f69')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
+}

Deleted: extra-x86_64/kdeedu-kig.install
===
--- extra-x86_64/kdeedu-kig.install 2012-03-05 08:56:01 UTC (rev 152207)
+++ extra-x86_64/kdeedu-kig.install 2012-03-05 08:56:03 UTC (rev 152208)
@@ -1,12 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kdeedu-kig/repos/extra-x86_64/kdeedu-kig.install (from rev 152196, 
kdeedu-kig/repos/testing-x86_64/kdeedu-kig.install)
===
--- extra-x86_64/kdeedu-kig.install (rev 0)
+++ extra-x86_64/kdeedu-kig.install 2012-03-05 08:56:03 UTC (rev 152208)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:06
  Author: ibiru
Revision: 152209

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

Added:
  kdeedu-rocs/repos/extra-i686/PKGBUILD
(from rev 152196, kdeedu-rocs/repos/testing-i686/PKGBUILD)
Deleted:
  kdeedu-rocs/repos/extra-i686/PKGBUILD
  kdeedu-rocs/repos/testing-i686/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:03 UTC (rev 152208)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:06 UTC (rev 152209)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-rocs
-pkgver=4.8.0
-pkgrel=1
-pkgdesc=Rocs Graph Theory
-url=http://kde.org/applications/education/rocs/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/stable/${pkgver}/src/xz/rocs-${pkgver}.tar.xz;)
-sha1sums=('d29daa9633e2ba6e2d3e0c7155ade752216a8969')
-options=('!makeflags')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../rocs-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-rocs/repos/extra-i686/PKGBUILD (from rev 152196, 
kdeedu-rocs/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:06 UTC (rev 152209)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-rocs
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=Rocs Graph Theory
+url=http://kde.org/applications/education/rocs/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/xz/rocs-${pkgver}.tar.xz;)
+sha1sums=('d29daa9633e2ba6e2d3e0c7155ade752216a8969')
+options=('!makeflags')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:08
  Author: ibiru
Revision: 152211

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

Added:
  liborigin2/repos/extra-i686/PKGBUILD
(from rev 152196, liborigin2/repos/testing-i686/PKGBUILD)
  liborigin2/repos/extra-i686/liborigin.pro.archlinux
(from rev 152196, liborigin2/repos/testing-i686/liborigin.pro.archlinux)
Deleted:
  liborigin2/repos/extra-i686/PKGBUILD
  liborigin2/repos/extra-i686/liborigin.pro.archlinux
  liborigin2/repos/testing-i686/

-+
 PKGBUILD|  114 +++---
 liborigin.pro.archlinux |   61 
 2 files changed, 77 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:07 UTC (rev 152210)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:08 UTC (rev 152211)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgbase=liborigin2
-pkgname=('liborigin2' 'liborigin2-docs')
-pkgver=20100913
-pkgrel=6
-arch=('i686' 'x86_64')
-url=http://soft.proindependent.com/liborigin2/;
-license=('GPL3')
-makedepends=('doxygen' 'qt' 'boost')
-replaces=('liborigin')
-provides=('liborigin')
-source=(http://download.berlios.de/qtiplot/${pkgbase}-13092010.zip
-   liborigin.pro.archlinux
-   http://tree.phi-sci.com/tree.hh)
-md5sums=('e2b41c4d8a1e2d357dd2b5b331d31375'
- '2b19f7a4bd120f6d689edc327468e48e'
- '966ef25cb42d192a694a71eedf484c1c')
-
-build() {
-   cd ${srcdir}/${pkgbase}
-
-   install -Dm644 ${srcdir}/liborigin.pro.archlinux ./liborigin.pro
-install -Dm644 ${srcdir}/tree.hh ./tree.hh # get the header back 
like it was in previous releases
-   qmake liborigin.pro QMAKESPEC=linux-g++
-   make QTDIR=/usr/ QMAKESPEC=linux-g++
-
-# create documentation
-cd doc
-doxygen
-}
-
-package_liborigin2() {
-pkgdesc=A library for reading OriginLab OPJ project files
-depends=('boost-libs')
-
-cd ${srcdir}/${pkgbase}
-
-   INSTALL_ROOT=${pkgdir} make install
-
-# install missing includes
-install -Dm644 tree.hh ${pkgdir}/usr/include/liborigin2/tree.hh
-for i in *.h; do
-  install -Dm644 ${i} ${pkgdir}/usr/include/liborigin2/${i}
-done
-}
-package_liborigin2-docs() {
-pkgdesc=Documentation for liborigin2: a library for reading OriginLab 
OPJ project files
-
-cd ${srcdir}/${pkgbase}/doc
-   install -d ${pkgdir}/usr/share/doc/${pkgbase}
-   cp -rf html/* ${pkgdir}/usr/share/doc/${pkgbase}
-   chmod 755 ${pkgdir}/usr/share/doc/liborigin2/images
-   chmod 644 ${pkgdir}/usr/share/doc/liborigin2/images/origin_import.png
-}

Copied: liborigin2/repos/extra-i686/PKGBUILD (from rev 152196, 
liborigin2/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:08 UTC (rev 152211)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgbase=liborigin2
+pkgname=('liborigin2' 'liborigin2-docs')
+pkgver=20110829
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://soft.proindependent.com/liborigin2/;
+license=('GPL3')
+makedepends=('doxygen' 'qt' 'boost')
+replaces=('liborigin')
+provides=('liborigin')
+source=(http://download.berlios.de/qtiplot/${pkgbase}-20110829.zip
+   liborigin.pro.archlinux
+   http://tree.phi-sci.com/tree.hh)
+sha1sums=('13851b17b21ec49375e4f5dfbd3ab4b9bf72f5be'
+  '9bb73eccc031b3a9e7c061b8cdbaf3e20aa2669d'
+  '2fd9ff17ff6b6f34b20fc473c82bf17ac1922e86')
+
+build() {
+   cd ${srcdir}/${pkgbase}
+
+   install -Dm644 ${srcdir}/liborigin.pro.archlinux ./liborigin2.pro
+install -Dm644 ${srcdir}/tree.hh ./tree.hh # get the header back 
like it was in previous releases
+   qmake liborigin2.pro QMAKESPEC=linux-g++
+   make QTDIR=/usr/ QMAKESPEC=linux-g++
+
+# create documentation
+cd doc
+doxygen
+}
+
+package_liborigin2() {
+pkgdesc=A library for reading OriginLab OPJ project files
+depends=('boost-libs')
+
+cd ${srcdir}/${pkgbase}
+
+   INSTALL_ROOT=${pkgdir} make install
+
+# install missing includes
+install -Dm644 tree.hh ${pkgdir}/usr/include/liborigin2/tree.hh
+for i in *.h; do
+  install -Dm644 ${i} ${pkgdir}/usr/include/liborigin2/${i}
+done
+}
+package_liborigin2-docs() {
+pkgdesc=Documentation for liborigin2: a library for reading OriginLab 
OPJ project files
+
+cd ${srcdir}/${pkgbase}/doc
+   install -d ${pkgdir}/usr/share/doc/${pkgbase}
+   cp -rf html/* ${pkgdir}/usr/share/doc/${pkgbase}
+   chmod 755 ${pkgdir}/usr/share/doc/liborigin2/images
+   

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:07
  Author: ibiru
Revision: 152210

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

Added:
  kdeedu-rocs/repos/extra-x86_64/PKGBUILD
(from rev 152196, kdeedu-rocs/repos/testing-x86_64/PKGBUILD)
Deleted:
  kdeedu-rocs/repos/extra-x86_64/PKGBUILD
  kdeedu-rocs/repos/testing-x86_64/

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:06 UTC (rev 152209)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:07 UTC (rev 152210)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdeedu-rocs
-pkgver=4.8.0
-pkgrel=1
-pkgdesc=Rocs Graph Theory
-url=http://kde.org/applications/education/rocs/;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kde' 'kdeedu')
-depends=('kdebase-runtime' 'boost-libs')
-makedepends=('cmake' 'automoc4' 'boost')
-source=(http://download.kde.org/stable/${pkgver}/src/xz/rocs-${pkgver}.tar.xz;)
-sha1sums=('d29daa9633e2ba6e2d3e0c7155ade752216a8969')
-options=('!makeflags')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../rocs-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdeedu-rocs/repos/extra-x86_64/PKGBUILD (from rev 152196, 
kdeedu-rocs/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:07 UTC (rev 152210)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-rocs
+pkgver=4.8.0
+pkgrel=2
+pkgdesc=Rocs Graph Theory
+url=http://kde.org/applications/education/rocs/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime' 'boost-libs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=(http://download.kde.org/stable/${pkgver}/src/xz/rocs-${pkgver}.tar.xz;)
+sha1sums=('d29daa9633e2ba6e2d3e0c7155ade752216a8969')
+options=('!makeflags')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../rocs-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:10
  Author: ibiru
Revision: 152212

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

Added:
  liborigin2/repos/extra-x86_64/PKGBUILD
(from rev 152196, liborigin2/repos/testing-x86_64/PKGBUILD)
  liborigin2/repos/extra-x86_64/liborigin.pro.archlinux
(from rev 152196, liborigin2/repos/testing-x86_64/liborigin.pro.archlinux)
Deleted:
  liborigin2/repos/extra-x86_64/PKGBUILD
  liborigin2/repos/extra-x86_64/liborigin.pro.archlinux
  liborigin2/repos/testing-x86_64/

-+
 PKGBUILD|  114 +++---
 liborigin.pro.archlinux |   61 
 2 files changed, 77 insertions(+), 98 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:08 UTC (rev 152211)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:10 UTC (rev 152212)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: damir da...@archlinux.org
-
-pkgbase=liborigin2
-pkgname=('liborigin2' 'liborigin2-docs')
-pkgver=20100913
-pkgrel=6
-arch=('i686' 'x86_64')
-url=http://soft.proindependent.com/liborigin2/;
-license=('GPL3')
-makedepends=('doxygen' 'qt' 'boost')
-replaces=('liborigin')
-provides=('liborigin')
-source=(http://download.berlios.de/qtiplot/${pkgbase}-13092010.zip
-   liborigin.pro.archlinux
-   http://tree.phi-sci.com/tree.hh)
-md5sums=('e2b41c4d8a1e2d357dd2b5b331d31375'
- '2b19f7a4bd120f6d689edc327468e48e'
- '966ef25cb42d192a694a71eedf484c1c')
-
-build() {
-   cd ${srcdir}/${pkgbase}
-
-   install -Dm644 ${srcdir}/liborigin.pro.archlinux ./liborigin.pro
-install -Dm644 ${srcdir}/tree.hh ./tree.hh # get the header back 
like it was in previous releases
-   qmake liborigin.pro QMAKESPEC=linux-g++
-   make QTDIR=/usr/ QMAKESPEC=linux-g++
-
-# create documentation
-cd doc
-doxygen
-}
-
-package_liborigin2() {
-pkgdesc=A library for reading OriginLab OPJ project files
-depends=('boost-libs')
-
-cd ${srcdir}/${pkgbase}
-
-   INSTALL_ROOT=${pkgdir} make install
-
-# install missing includes
-install -Dm644 tree.hh ${pkgdir}/usr/include/liborigin2/tree.hh
-for i in *.h; do
-  install -Dm644 ${i} ${pkgdir}/usr/include/liborigin2/${i}
-done
-}
-package_liborigin2-docs() {
-pkgdesc=Documentation for liborigin2: a library for reading OriginLab 
OPJ project files
-
-cd ${srcdir}/${pkgbase}/doc
-   install -d ${pkgdir}/usr/share/doc/${pkgbase}
-   cp -rf html/* ${pkgdir}/usr/share/doc/${pkgbase}
-   chmod 755 ${pkgdir}/usr/share/doc/liborigin2/images
-   chmod 644 ${pkgdir}/usr/share/doc/liborigin2/images/origin_import.png
-}

Copied: liborigin2/repos/extra-x86_64/PKGBUILD (from rev 152196, 
liborigin2/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:10 UTC (rev 152212)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir da...@archlinux.org
+
+pkgbase=liborigin2
+pkgname=('liborigin2' 'liborigin2-docs')
+pkgver=20110829
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://soft.proindependent.com/liborigin2/;
+license=('GPL3')
+makedepends=('doxygen' 'qt' 'boost')
+replaces=('liborigin')
+provides=('liborigin')
+source=(http://download.berlios.de/qtiplot/${pkgbase}-20110829.zip
+   liborigin.pro.archlinux
+   http://tree.phi-sci.com/tree.hh)
+sha1sums=('13851b17b21ec49375e4f5dfbd3ab4b9bf72f5be'
+  '9bb73eccc031b3a9e7c061b8cdbaf3e20aa2669d'
+  '2fd9ff17ff6b6f34b20fc473c82bf17ac1922e86')
+
+build() {
+   cd ${srcdir}/${pkgbase}
+
+   install -Dm644 ${srcdir}/liborigin.pro.archlinux ./liborigin2.pro
+install -Dm644 ${srcdir}/tree.hh ./tree.hh # get the header back 
like it was in previous releases
+   qmake liborigin2.pro QMAKESPEC=linux-g++
+   make QTDIR=/usr/ QMAKESPEC=linux-g++
+
+# create documentation
+cd doc
+doxygen
+}
+
+package_liborigin2() {
+pkgdesc=A library for reading OriginLab OPJ project files
+depends=('boost-libs')
+
+cd ${srcdir}/${pkgbase}
+
+   INSTALL_ROOT=${pkgdir} make install
+
+# install missing includes
+install -Dm644 tree.hh ${pkgdir}/usr/include/liborigin2/tree.hh
+for i in *.h; do
+  install -Dm644 ${i} ${pkgdir}/usr/include/liborigin2/${i}
+done
+}
+package_liborigin2-docs() {
+pkgdesc=Documentation for liborigin2: a library for reading OriginLab 
OPJ project files
+
+cd ${srcdir}/${pkgbase}/doc
+   install -d ${pkgdir}/usr/share/doc/${pkgbase}
+   cp -rf html/* ${pkgdir}/usr/share/doc/${pkgbase}
+   chmod 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:11
  Author: ibiru
Revision: 152213

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

Added:
  libpst/repos/extra-i686/PKGBUILD
(from rev 152196, libpst/repos/testing-i686/PKGBUILD)
Deleted:
  libpst/repos/extra-i686/PKGBUILD
  libpst/repos/testing-i686/

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:10 UTC (rev 152212)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:11 UTC (rev 152213)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=libpst
-pkgname=('libpst' 'libpst-docs')
-pkgver=0.6.53
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.five-ten-sg.com/libpst/;
-license=('GPL')
-makedepends=('python2' 'boost')
-source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('b8e5972429091fd0e915fd3eb695b68adbe1f7cc')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
-  make
-}
-
-package_libpst() {
-  pkgdesc=Outlook .pst file converter
-  depends=('gcc-libs')
-  optdepends=('boost-libs: for libpst python interface')
-  options=('!libtool' '!docs')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-
-package_libpst-docs() {
-  pkgdesc=Documentation for Outlook .pst file converter
-  options=('!libtool')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-htmlDATA
-  cd ${srcdir}/${pkgbase}-${pkgver}/html
-  make DESTDIR=${pkgdir} install-htmldevelDATA
-}

Copied: libpst/repos/extra-i686/PKGBUILD (from rev 152196, 
libpst/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:11 UTC (rev 152213)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.54
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('a4713b87e330556acb0786b4efa975a3c739cd84')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  make
+}
+
+package_libpst() {
+  pkgdesc=Outlook .pst file converter
+  depends=('gcc-libs')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!libtool' '!docs')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+package_libpst-docs() {
+  pkgdesc=Documentation for Outlook .pst file converter
+  options=('!libtool')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install-htmlDATA
+  cd ${srcdir}/${pkgbase}-${pkgver}/html
+  make DESTDIR=${pkgdir} install-htmldevelDATA
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:12
  Author: ibiru
Revision: 152214

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

Added:
  libpst/repos/extra-x86_64/PKGBUILD
(from rev 152196, libpst/repos/testing-x86_64/PKGBUILD)
Deleted:
  libpst/repos/extra-x86_64/PKGBUILD
  libpst/repos/testing-x86_64/

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:11 UTC (rev 152213)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:12 UTC (rev 152214)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=libpst
-pkgname=('libpst' 'libpst-docs')
-pkgver=0.6.53
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.five-ten-sg.com/libpst/;
-license=('GPL')
-makedepends=('python2' 'boost')
-source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
-sha1sums=('b8e5972429091fd0e915fd3eb695b68adbe1f7cc')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
-  make
-}
-
-package_libpst() {
-  pkgdesc=Outlook .pst file converter
-  depends=('gcc-libs')
-  optdepends=('boost-libs: for libpst python interface')
-  options=('!libtool' '!docs')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-
-package_libpst-docs() {
-  pkgdesc=Documentation for Outlook .pst file converter
-  options=('!libtool')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  make DESTDIR=${pkgdir} install-htmlDATA
-  cd ${srcdir}/${pkgbase}-${pkgver}/html
-  make DESTDIR=${pkgdir} install-htmldevelDATA
-}

Copied: libpst/repos/extra-x86_64/PKGBUILD (from rev 152196, 
libpst/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:12 UTC (rev 152214)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=libpst
+pkgname=('libpst' 'libpst-docs')
+pkgver=0.6.54
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://www.five-ten-sg.com/libpst/;
+license=('GPL')
+makedepends=('python2' 'boost')
+source=(http://www.five-ten-sg.com/libpst/packages/${pkgbase}-${pkgver}.tar.gz)
+sha1sums=('a4713b87e330556acb0786b4efa975a3c739cd84')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --disable-static --enable-libpst-shared --disable-dii PYTHON_VERSION=2
+  make
+}
+
+package_libpst() {
+  pkgdesc=Outlook .pst file converter
+  depends=('gcc-libs')
+  optdepends=('boost-libs: for libpst python interface')
+  options=('!libtool' '!docs')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+
+package_libpst-docs() {
+  pkgdesc=Documentation for Outlook .pst file converter
+  options=('!libtool')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install-htmlDATA
+  cd ${srcdir}/${pkgbase}-${pkgver}/html
+  make DESTDIR=${pkgdir} install-htmldevelDATA
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:13
  Author: ibiru
Revision: 152215

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

Added:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
(from rev 152196, libtorrent-rasterbar/repos/testing-i686/PKGBUILD)
Deleted:
  libtorrent-rasterbar/repos/extra-i686/PKGBUILD
  libtorrent-rasterbar/repos/testing-i686/

--+
 PKGBUILD |   60 
 1 file changed, 32 insertions(+), 28 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:12 UTC (rev 152214)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:13 UTC (rev 152215)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=libtorrent-rasterbar
-pkgver=0.15.9
-pkgrel=1
-pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
-url=http://www.rasterbar.com/products/libtorrent/;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('boost-libs' 'python2')
-makedepends=('boost')
-options=('!libtool' '!emptydirs')
-source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha1sums=('d86eb9d4452d07715a355d3a67312f162d6eff3a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --enable-python-binding
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libtorrent-rasterbar/repos/extra-i686/PKGBUILD (from rev 152196, 
libtorrent-rasterbar/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:13 UTC (rev 152215)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.15.10
+pkgrel=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!libtool' '!emptydirs')
+source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+sha1sums=('3e461d9ede5fab3fb59be6a9f0cbc52121d536c4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  export CFLAGS+= -fvisibility=hidden
+  export CXXFLAGS+= -fvisibility=hidden
+  ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:15
  Author: ibiru
Revision: 152216

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

Added:
  libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD
(from rev 152196, libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD)
Deleted:
  libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD
  libtorrent-rasterbar/repos/testing-x86_64/

--+
 PKGBUILD |   60 
 1 file changed, 32 insertions(+), 28 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:13 UTC (rev 152215)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:15 UTC (rev 152216)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgname=libtorrent-rasterbar
-pkgver=0.15.9
-pkgrel=1
-pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
-url=http://www.rasterbar.com/products/libtorrent/;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('boost-libs' 'python2')
-makedepends=('boost')
-options=('!libtool' '!emptydirs')
-source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-sha1sums=('d86eb9d4452d07715a355d3a67312f162d6eff3a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --enable-python-binding
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libtorrent-rasterbar/repos/extra-x86_64/PKGBUILD (from rev 152196, 
libtorrent-rasterbar/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:15 UTC (rev 152216)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Hugo Doria h...@archlinux.org
+
+pkgname=libtorrent-rasterbar
+pkgver=0.15.10
+pkgrel=1
+pkgdesc=A C++ library that aims to be a good alternative to all the other 
bittorrent implementations around
+url=http://www.rasterbar.com/products/libtorrent/;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('boost-libs' 'geoip' 'python2')
+makedepends=('boost')
+options=('!libtool' '!emptydirs')
+source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz)
+sha1sums=('3e461d9ede5fab3fb59be6a9f0cbc52121d536c4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  export CFLAGS+= -fvisibility=hidden
+  export CXXFLAGS+= -fvisibility=hidden
+  ./configure --prefix=/usr \
+  --enable-python-binding \
+  --with-libgeoip=system
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:26
  Author: ibiru
Revision: 152217

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

Added:
  licq/repos/extra-i686/PKGBUILD
(from rev 152196, licq/repos/testing-i686/PKGBUILD)
Deleted:
  licq/repos/extra-i686/PKGBUILD
  licq/repos/testing-i686/

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:15 UTC (rev 152216)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:26 UTC (rev 152217)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=licq
-pkgver=1.6.0
-pkgrel=3
-pkgdesc=Advanced graphical ICQ clone and more for Unix 
-arch=('i686' 'x86_64')
-url=http://www.licq.org;
-license=('GPL')
-depends=('boost-libs' 'gpgme' 'libxss' 'qt')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
-md5sums=('383153697e281a0b1b4ff008936731b8')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # licq
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
-  make
-
-  # qt4-gui
-  cd ../plugins/qt4-gui
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH=${srcdir}/${pkgname}-${pkgver}/cmake  ..
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/build
-  make DESTDIR=${pkgdir} install
-
-  cd ../plugins/qt4-gui/build
-  make DESTDIR=${pkgdir} install
-}

Copied: licq/repos/extra-i686/PKGBUILD (from rev 152196, 
licq/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:26 UTC (rev 152217)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=licq
+pkgver=1.6.0
+pkgrel=4
+pkgdesc=Advanced graphical ICQ clone and more for Unix 
+arch=('i686' 'x86_64')
+url=http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt')
+makedepends=('cmake' 'boost')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('383153697e281a0b1b4ff008936731b8')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # licq
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
+  make
+
+  # qt4-gui
+  cd ../plugins/qt4-gui
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH=${srcdir}/${pkgname}-${pkgver}/cmake  ..
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/build
+  make DESTDIR=${pkgdir} install
+
+  cd ../plugins/qt4-gui/build
+  make DESTDIR=${pkgdir} install
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:28
  Author: ibiru
Revision: 152218

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

Added:
  licq/repos/extra-x86_64/PKGBUILD
(from rev 152196, licq/repos/testing-x86_64/PKGBUILD)
Deleted:
  licq/repos/extra-x86_64/PKGBUILD
  licq/repos/testing-x86_64/

--+
 PKGBUILD |   80 ++---
 1 file changed, 40 insertions(+), 40 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:26 UTC (rev 152217)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:28 UTC (rev 152218)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=licq
-pkgver=1.6.0
-pkgrel=3
-pkgdesc=Advanced graphical ICQ clone and more for Unix 
-arch=('i686' 'x86_64')
-url=http://www.licq.org;
-license=('GPL')
-depends=('boost-libs' 'gpgme' 'libxss' 'qt')
-makedepends=('cmake' 'boost')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
-md5sums=('383153697e281a0b1b4ff008936731b8')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # licq
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
-  make
-
-  # qt4-gui
-  cd ../plugins/qt4-gui
-  mkdir build
-  cd build
-  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH=${srcdir}/${pkgname}-${pkgver}/cmake  ..
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}/build
-  make DESTDIR=${pkgdir} install
-
-  cd ../plugins/qt4-gui/build
-  make DESTDIR=${pkgdir} install
-}

Copied: licq/repos/extra-x86_64/PKGBUILD (from rev 152196, 
licq/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:28 UTC (rev 152218)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=licq
+pkgver=1.6.0
+pkgrel=4
+pkgdesc=Advanced graphical ICQ clone and more for Unix 
+arch=('i686' 'x86_64')
+url=http://www.licq.org;
+license=('GPL')
+depends=('boost-libs' 'gpgme' 'libxss' 'qt')
+makedepends=('cmake' 'boost')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/licq/licq-${pkgver}.tar.bz2)
+md5sums=('383153697e281a0b1b4ff008936731b8')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # licq
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr  ..
+  make
+
+  # qt4-gui
+  cd ../plugins/qt4-gui
+  mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr 
-DCMAKE_MODULE_PATH=${srcdir}/${pkgname}-${pkgver}/cmake  ..
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}/build
+  make DESTDIR=${pkgdir} install
+
+  cd ../plugins/qt4-gui/build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in lyx/repos (9 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:29
  Author: ibiru
Revision: 152219

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

Added:
  lyx/repos/extra-i686/PKGBUILD
(from rev 152196, lyx/repos/testing-i686/PKGBUILD)
  lyx/repos/extra-i686/lyx.desktop
(from rev 152196, lyx/repos/testing-i686/lyx.desktop)
  lyx/repos/extra-i686/lyx.install
(from rev 152196, lyx/repos/testing-i686/lyx.install)
  lyx/repos/extra-i686/lyxrc.dist
(from rev 152196, lyx/repos/testing-i686/lyxrc.dist)
Deleted:
  lyx/repos/extra-i686/PKGBUILD
  lyx/repos/extra-i686/lyx.desktop
  lyx/repos/extra-i686/lyx.install
  lyx/repos/extra-i686/lyxrc.dist
  lyx/repos/testing-i686/

-+
 PKGBUILD|  100 +-
 lyx.desktop |   28 
 lyx.install |   28 
 lyxrc.dist  |   28 
 4 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:28 UTC (rev 152218)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:29 UTC (rev 152219)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=lyx
-pkgver=2.0.3
-pkgrel=1
-pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
-arch=('i686' 'x86_64')
-url=http://www.lyx.org;
-depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
-makedepends=('boost')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
-  export CXXFLAGS=$CXXFLAGS -fpermissive
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # install desktop entry
-  install -Dm644 ${srcdir}/lyx.desktop \
-${pkgdir}/usr/share/applications/lyx.desktop
-  install -Dm644 lib/images/lyx.png \
-${pkgdir}/usr/share/pixmaps/lyx.png
-
-  # install default config file
-  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
-  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
-}

Copied: lyx/repos/extra-i686/PKGBUILD (from rev 152196, 
lyx/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:29 UTC (rev 152219)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.0.3
+pkgrel=2
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
+makedepends=('boost')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  # install desktop entry
+  install -Dm644 ${srcdir}/lyx.desktop \
+${pkgdir}/usr/share/applications/lyx.desktop
+  install -Dm644 lib/images/lyx.png \
+${pkgdir}/usr/share/pixmaps/lyx.png
+
+  # install default config file
+  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
+  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
+}

Deleted: extra-i686/lyx.desktop
===
--- extra-i686/lyx.desktop  2012-03-05 08:56:28 UTC (rev 152218)
+++ extra-i686/lyx.desktop  2012-03-05 

[arch-commits] Commit in lyx/repos (9 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:31
  Author: ibiru
Revision: 152220

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

Added:
  lyx/repos/extra-x86_64/PKGBUILD
(from rev 152196, lyx/repos/testing-x86_64/PKGBUILD)
  lyx/repos/extra-x86_64/lyx.desktop
(from rev 152196, lyx/repos/testing-x86_64/lyx.desktop)
  lyx/repos/extra-x86_64/lyx.install
(from rev 152196, lyx/repos/testing-x86_64/lyx.install)
  lyx/repos/extra-x86_64/lyxrc.dist
(from rev 152196, lyx/repos/testing-x86_64/lyxrc.dist)
Deleted:
  lyx/repos/extra-x86_64/PKGBUILD
  lyx/repos/extra-x86_64/lyx.desktop
  lyx/repos/extra-x86_64/lyx.install
  lyx/repos/extra-x86_64/lyxrc.dist
  lyx/repos/testing-x86_64/

-+
 PKGBUILD|  100 +-
 lyx.desktop |   28 
 lyx.install |   28 
 lyxrc.dist  |   28 
 4 files changed, 92 insertions(+), 92 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:29 UTC (rev 152219)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:31 UTC (rev 152220)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=lyx
-pkgver=2.0.3
-pkgrel=1
-pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
-arch=('i686' 'x86_64')
-url=http://www.lyx.org;
-depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
-makedepends=('boost')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
-  export CXXFLAGS=$CXXFLAGS -fpermissive
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # install desktop entry
-  install -Dm644 ${srcdir}/lyx.desktop \
-${pkgdir}/usr/share/applications/lyx.desktop
-  install -Dm644 lib/images/lyx.png \
-${pkgdir}/usr/share/pixmaps/lyx.png
-
-  # install default config file
-  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
-  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
-}

Copied: lyx/repos/extra-x86_64/PKGBUILD (from rev 152196, 
lyx/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:31 UTC (rev 152220)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.0.3
+pkgrel=2
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
+makedepends=('boost')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+
+  # install desktop entry
+  install -Dm644 ${srcdir}/lyx.desktop \
+${pkgdir}/usr/share/applications/lyx.desktop
+  install -Dm644 lib/images/lyx.png \
+${pkgdir}/usr/share/pixmaps/lyx.png
+
+  # install default config file
+  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
+  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
+}

Deleted: extra-x86_64/lyx.desktop
===
--- extra-x86_64/lyx.desktop2012-03-05 08:56:29 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:32
  Author: ibiru
Revision: 152221

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

Added:
  mkvtoolnix/repos/extra-i686/PKGBUILD
(from rev 152196, mkvtoolnix/repos/testing-i686/PKGBUILD)
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
(from rev 152196, mkvtoolnix/repos/testing-i686/mkvtoolnix.install)
Deleted:
  mkvtoolnix/repos/extra-i686/PKGBUILD
  mkvtoolnix/repos/extra-i686/mkvtoolnix.install
  mkvtoolnix/repos/testing-i686/

+
 PKGBUILD   |  168 +--
 mkvtoolnix.install |   28 
 2 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:31 UTC (rev 152220)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:32 UTC (rev 152221)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: xduugu xdu...@gmx.com
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=5.3.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
-source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('2cd84ff24e1d9217dd3caf170f34e758')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS= CURL_LIBS=
-
-  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-
-  autoreconf
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  rake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  rake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - CLI 
version
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo2')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli ${pkgdir}/usr/bin/mkvinfo
-
-  rm -rf ${pkgdir}/usr/bin/mmg
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/applications
-  rm -rf ${pkgdir}/usr/share/icons
-  rm -rf ${pkgdir}/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - wxGTK GUI
-  depends=(mkvtoolnix-cli=${pkgver} 'wxgtk' 'xdg-utils')
-  install=mkvtoolnix.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkv*
-  install -Dm755 src/mkvinfo ${pkgdir}/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
${pkgdir}/usr/share/applications/mkvinfo.desktop
-
-  rm -rf ${pkgdir}/usr/share/doc
-  rm -rf ${pkgdir}/usr/share/locale
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-i686/PKGBUILD (from rev 152196, 
mkvtoolnix/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:32 UTC (rev 152221)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: xduugu xdu...@gmx.com
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=5.3.0
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
+makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
+ 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
+source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2;)
+md5sums=('2cd84ff24e1d9217dd3caf170f34e758')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  # Disable automagic curl dep used for online update checking
+  sed -i -e '/curl/d' configure.in
+  export CURL_CFLAGS= CURL_LIBS=
+
+  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
+  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
+
+  autoreconf
+
+  ./configure --prefix=/usr \
+  --with-boost-libdir=/usr/lib \
+  --disable-gui
+  rake
+
+  mv src/mkvinfo{,-cli}
+
+  ./configure --prefix=/usr \
+   

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:33
  Author: ibiru
Revision: 15

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

Added:
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
(from rev 152196, mkvtoolnix/repos/testing-x86_64/PKGBUILD)
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install
(from rev 152196, mkvtoolnix/repos/testing-x86_64/mkvtoolnix.install)
Deleted:
  mkvtoolnix/repos/extra-x86_64/PKGBUILD
  mkvtoolnix/repos/extra-x86_64/mkvtoolnix.install
  mkvtoolnix/repos/testing-x86_64/

+
 PKGBUILD   |  168 +--
 mkvtoolnix.install |   28 
 2 files changed, 98 insertions(+), 98 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:32 UTC (rev 152221)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:33 UTC (rev 15)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: xduugu xdu...@gmx.com
-
-pkgbase=mkvtoolnix
-pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=5.3.0
-pkgrel=1
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
-makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
- 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
-source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('2cd84ff24e1d9217dd3caf170f34e758')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  # Disable automagic curl dep used for online update checking
-  sed -i -e '/curl/d' configure.in
-  export CURL_CFLAGS= CURL_LIBS=
-
-  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
-
-  autoreconf
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib \
-  --disable-gui
-  rake
-
-  mv src/mkvinfo{,-cli}
-
-  ./configure --prefix=/usr \
-  --with-boost-libdir=/usr/lib
-  rake
-}
-
-package_mkvtoolnix-cli() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - CLI 
version
-  depends=('libmatroska' 'expat' 'flac' 'libvorbis' 'file' 'boost-libs' 'lzo2')
-  provides=('mkvtoolnix')
-  conflicts=('mkvtoolnix')
-  replaces=('mkvtoolnix')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkvinfo
-  install -Dm755 src/mkvinfo-cli ${pkgdir}/usr/bin/mkvinfo
-
-  rm -rf ${pkgdir}/usr/bin/mmg
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mmg.1
-  rm -rf ${pkgdir}/usr/share/applications
-  rm -rf ${pkgdir}/usr/share/icons
-  rm -rf ${pkgdir}/usr/share/mime
-}
-
-package_mkvtoolnix-gtk() {
-  pkgdesc=Set of tools to create, edit and inspect Matroska files - wxGTK GUI
-  depends=(mkvtoolnix-cli=${pkgver} 'wxgtk' 'xdg-utils')
-  install=mkvtoolnix.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  rake DESTDIR=${pkgdir} install
-  rm -rf ${pkgdir}/usr/bin/mkv*
-  install -Dm755 src/mkvinfo ${pkgdir}/usr/bin/mkvinfo-gtk
-  sed -ri 's/^(Exec=mkvinfo)/\1-gtk/' 
${pkgdir}/usr/share/applications/mkvinfo.desktop
-
-  rm -rf ${pkgdir}/usr/share/doc
-  rm -rf ${pkgdir}/usr/share/locale
-  rm -rf ${pkgdir}/usr/share/man/ja/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/nl/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/zh_CN/man1/mkv*
-  rm -rf ${pkgdir}/usr/share/man/uk/man1/mkv*
-}

Copied: mkvtoolnix/repos/extra-x86_64/PKGBUILD (from rev 152196, 
mkvtoolnix/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:33 UTC (rev 15)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: xduugu xdu...@gmx.com
+
+pkgbase=mkvtoolnix
+pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
+pkgver=5.3.0
+pkgrel=2
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.bunkus.org/videotools/mkvtoolnix/index.html;
+makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
+ 'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
+source=(http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.bz2;)
+md5sums=('2cd84ff24e1d9217dd3caf170f34e758')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  # Disable automagic curl dep used for online update checking
+  sed -i -e '/curl/d' configure.in
+  export CURL_CFLAGS= CURL_LIBS=
+
+  export CFLAGS=${CFLAGS} -DBOOST_FILESYSTEM_VERSION=3
+  export CXXFLAGS=${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=3
+
+  autoreconf
+
+  ./configure --prefix=/usr \
+  --with-boost-libdir=/usr/lib \
+  --disable-gui
+  rake
+
+  mv 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:35
  Author: ibiru
Revision: 152223

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

Added:
  source-highlight/repos/extra-i686/PKGBUILD
(from rev 152196, source-highlight/repos/testing-i686/PKGBUILD)
  source-highlight/repos/extra-i686/source-highlight.install
(from rev 152196, 
source-highlight/repos/testing-i686/source-highlight.install)
Deleted:
  source-highlight/repos/extra-i686/PKGBUILD
  source-highlight/repos/extra-i686/source-highlight.install
  source-highlight/repos/testing-i686/

--+
 PKGBUILD |   64 ++---
 source-highlight.install |   36 -
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 08:56:33 UTC (rev 15)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:35 UTC (rev 152223)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=source-highlight
-pkgver=3.1.6
-pkgrel=1
-pkgdesc=Convert source code to syntax highlighted document
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/src-highlite/;
-license=('GPL')
-depends=('gcc-libs' 'bash' 'boost-libs')
-makedepends=('ctags' 'boost')
-options=('!libtool')
-install=$pkgname.install
-source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('44856c15a5dc8694e30d92f640ed348f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
- --with-bash-completion=${pkgdir}/etc/bash_completion.d
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=${pkgdir}/usr install
-}

Copied: source-highlight/repos/extra-i686/PKGBUILD (from rev 152196, 
source-highlight/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 08:56:35 UTC (rev 152223)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=source-highlight
+pkgver=3.1.6
+pkgrel=2
+pkgdesc=Convert source code to syntax highlighted document
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('gcc-libs' 'bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+options=('!libtool')
+install=$pkgname.install
+source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('44856c15a5dc8694e30d92f640ed348f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+ --with-bash-completion=${pkgdir}/etc/bash_completion.d
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=${pkgdir}/usr install
+}

Deleted: extra-i686/source-highlight.install
===
--- extra-i686/source-highlight.install 2012-03-05 08:56:33 UTC (rev 15)
+++ extra-i686/source-highlight.install 2012-03-05 08:56:35 UTC (rev 152223)
@@ -1,18 +0,0 @@
-info_dir=usr/share/info
-info_files=(source-highlight.info source-highlight-lib.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
-  done
-}

Copied: source-highlight/repos/extra-i686/source-highlight.install (from rev 
152196, source-highlight/repos/testing-i686/source-highlight.install)
===
--- extra-i686/source-highlight.install (rev 0)
+++ extra-i686/source-highlight.install 2012-03-05 08:56:35 UTC (rev 152223)
@@ -0,0 +1,18 @@
+info_dir=usr/share/info
+info_files=(source-highlight.info source-highlight-lib.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 03:56:36
  Author: ibiru
Revision: 152224

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

Added:
  source-highlight/repos/extra-x86_64/PKGBUILD
(from rev 152196, source-highlight/repos/testing-x86_64/PKGBUILD)
  source-highlight/repos/extra-x86_64/source-highlight.install
(from rev 152196, 
source-highlight/repos/testing-x86_64/source-highlight.install)
Deleted:
  source-highlight/repos/extra-x86_64/PKGBUILD
  source-highlight/repos/extra-x86_64/source-highlight.install
  source-highlight/repos/testing-x86_64/

--+
 PKGBUILD |   64 ++---
 source-highlight.install |   36 -
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 08:56:35 UTC (rev 152223)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:36 UTC (rev 152224)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=source-highlight
-pkgver=3.1.6
-pkgrel=1
-pkgdesc=Convert source code to syntax highlighted document
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/src-highlite/;
-license=('GPL')
-depends=('gcc-libs' 'bash' 'boost-libs')
-makedepends=('ctags' 'boost')
-options=('!libtool')
-install=$pkgname.install
-source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('44856c15a5dc8694e30d92f640ed348f')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
- --with-bash-completion=${pkgdir}/etc/bash_completion.d
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make prefix=${pkgdir}/usr install
-}

Copied: source-highlight/repos/extra-x86_64/PKGBUILD (from rev 152196, 
source-highlight/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-05 08:56:36 UTC (rev 152224)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=source-highlight
+pkgver=3.1.6
+pkgrel=2
+pkgdesc=Convert source code to syntax highlighted document
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/src-highlite/;
+license=('GPL')
+depends=('gcc-libs' 'bash' 'boost-libs')
+makedepends=('ctags' 'boost')
+options=('!libtool')
+install=$pkgname.install
+source=(ftp://ftp.gnu.org/gnu/src-highlite/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('44856c15a5dc8694e30d92f640ed348f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+ --with-bash-completion=${pkgdir}/etc/bash_completion.d
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make prefix=${pkgdir}/usr install
+}

Deleted: extra-x86_64/source-highlight.install
===
--- extra-x86_64/source-highlight.install   2012-03-05 08:56:35 UTC (rev 
152223)
+++ extra-x86_64/source-highlight.install   2012-03-05 08:56:36 UTC (rev 
152224)
@@ -1,18 +0,0 @@
-info_dir=usr/share/info
-info_files=(source-highlight.info source-highlight-lib.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
-  done
-}
-
-post_upgrade() {
-   post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
-  done
-}

Copied: source-highlight/repos/extra-x86_64/source-highlight.install (from rev 
152196, source-highlight/repos/testing-x86_64/source-highlight.install)
===
--- extra-x86_64/source-highlight.install   (rev 0)
+++ extra-x86_64/source-highlight.install   2012-03-05 08:56:36 UTC (rev 
152224)
@@ -0,0 +1,18 @@
+info_dir=usr/share/info
+info_files=(source-highlight.info source-highlight-lib.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}
+
+post_upgrade() {
+   post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  done
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 04:21:37
  Author: ibiru
Revision: 152225

enabled unsupported interface until mplayer is fixed. FS#28759

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 08:56:36 UTC (rev 152224)
+++ PKGBUILD2012-03-05 09:21:37 UTC (rev 152225)
@@ -4,7 +4,7 @@
 
 pkgname=live-media
 pkgver=2012.02.29
-pkgrel=1
+pkgrel=2
 pkgdesc=A set of C++ libraries for multimedia streaming
 arch=('i686' 'x86_64')
 license=('LGPL')
@@ -17,7 +17,7 @@
   cd ${srcdir}/live
 
   sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DSOCKLEN_T/g' \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
   -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
   -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
   -i config.linux



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 04:23:14
  Author: ibiru
Revision: 152226

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 152225, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 152225, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 09:21:37 UTC (rev 152225)
+++ extra-i686/PKGBUILD 2012-03-05 09:23:14 UTC (rev 152226)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.02.29
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('ee00b4f9ca4efaa1aeaf47b5c185fe93')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment UsageEnvironment groupsock liveMedia; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 152225, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 09:23:14 UTC (rev 152226)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Gilles CHAUVIN gcn...@gmail.com
+
+pkgname=live-media
+pkgver=2012.02.29
+pkgrel=2
+pkgdesc=A set of C++ libraries for multimedia streaming
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://live555.com/liveMedia;
+depends=('gcc-libs')
+source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+md5sums=('ee00b4f9ca4efaa1aeaf47b5c185fe93')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
+  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment UsageEnvironment groupsock liveMedia; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a ${pkgdir}/usr/lib
+install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} ${pkgdir}/usr/bin
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-05 09:21:37 UTC (rev 152225)
+++ extra-x86_64/PKGBUILD   2012-03-05 09:23:14 UTC (rev 152226)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.02.29
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('ee00b4f9ca4efaa1aeaf47b5c185fe93')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment UsageEnvironment groupsock liveMedia; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 04:38:48
  Author: ibiru
Revision: 152227

fix live-media compilation FS#28759
libcdio instead of libcdparanoia FS#27970
--enable-radio-capture FS#28253 

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 09:23:14 UTC (rev 152226)
+++ PKGBUILD2012-03-05 09:38:48 UTC (rev 152227)
@@ -4,22 +4,26 @@
 
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
-pkgver=34426
-pkgrel=3
+pkgver=34799
+pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'cdparanoia' 'libxinerama' 
'sdl' 'lame' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
 'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 
'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx'
-'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 
'mpg123' 'ladspa' 'libass' 'libbluray')
+'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 
'mpg123' 'ladspa' 'libass' 'libbluray' 'libcdio')
 license=('GPL')
 url=http://www.mplayerhq.hu/;
 options=(!buildflags !emptydirs)
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz 
mplayer.desktop)
-md5sums=('ff81117293e76b59e54debc439d8e612'
- 'c0d6ef795cf6de48e3b87ff7c23f0319')
+source=(ftp://ftp.archlinux.org/other/$pkgbase/$pkgbase-$pkgver.tar.xz 
mplayer.desktop
+live-media.patch)
+md5sums=('e8bd960bcdb48fdc5a1f45390dc13c53'
+ 'c0d6ef795cf6de48e3b87ff7c23f0319'
+ 'b6c057633ff7001ee0c102b5f81ec1e3')
 
 build() {
-cd ${srcdir}/${pkgname}
+cd $srcdir/$pkgbase
 
+patch -Np0 -i $srcdir/live-media.patch
+
 ./configure --prefix=/usr \
 --enable-runtime-cpudetection \
 --disable-gui \
@@ -32,8 +36,10 @@
 --disable-esd \
 --disable-mga \
 --disable-ass-internal \
+--disable-cdparanoia \
 --enable-xvmc \
 --enable-radio \
+--enable-radio-capture \
 --language=all \
 --confdir=/etc/mplayer
 [ $CARCH = i686 ]   sed 's|-march=i486|-march=i686|g' -i config.mak
@@ -47,26 +53,26 @@
 backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
 depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 
'libvpx' 'lirc-utils' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig'  
'libgl'
 'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 
'jack' 'cdparanoia' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi'
-'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass' 
'libxxf86vm' 'libbluray')
+'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass' 
'libxxf86vm' 'libbluray' 'libcdio')
 
-cd ${srcdir}/${pkgbase}
+cd $srcdir/$pkgbase
 
-make DESTDIR=${pkgdir} install-mplayer install-mplayer-man
-install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
${pkgdir}/etc/mplayer/
-install -dm755 ${pkgdir}/usr/share/mplayer/
-ln -s /usr/share/fonts/TTF/DejaVuSans.ttf 
${pkgdir}/usr/share/mplayer/subfont.ttf
-rm -rf ${pkgdir}/usr/share/mplayer/font
+make DESTDIR=$pkgdir install-mplayer install-mplayer-man
+install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
$pkgdir/etc/mplayer/
+install -dm755 $pkgdir/usr/share/mplayer/
+ln -s /usr/share/fonts/TTF/DejaVuSans.ttf 
$pkgdir/usr/share/mplayer/subfont.ttf
+rm -rf $pkgdir/usr/share/mplayer/font
 #desktop file  FS#14770
-install -Dm644 ${srcdir}/mplayer.desktop 
${pkgdir}/usr/share/applications/mplayer.desktop
-install -Dm644 etc/mplayer.png ${pkgdir}/usr/share/pixmaps/mplayer.png
+install -Dm644 $srcdir/mplayer.desktop 
$pkgdir/usr/share/applications/mplayer.desktop
+install -Dm644 etc/mplayer256x256.png 
$pkgdir/usr/share/pixmaps/mplayer.png
 }
 
 package_mencoder() {
 pkgdesc=Free command line video decoding, encoding and filtering tool
 depends=('enca' 'a52dec' 'libvpx' 'x264' 'libmng' 'libdca' 'bzip2' 'lame' 
'alsa-lib' 'fontconfig' 'giflib' 'libpng' 'smbclient' 'xvidcore' 'opencore-amr' 
'cdparanoia'
-'libmad' 'libtheora' 'fribidi' 'libjpeg' 'faac' 'faad2' 'schroedinger' 
'mpg123' 'libass' 'libbluray')
+'libmad' 'libtheora' 'fribidi' 'libjpeg' 'faac' 'faad2' 'schroedinger' 
'mpg123' 'libass' 'libbluray' 'libcdio')
 
-cd ${srcdir}/${pkgbase}
-make DESTDIR=${pkgdir} install-mencoder install-mencoder-man
+cd $srcdir/$pkgbase
+make DESTDIR=$pkgdir install-mencoder install-mencoder-man
 find $pkgdir/usr/share/man -name 'mplayer.1' -exec bash -c 'mv $1 
${1/mplayer/mencoder}' _ {} \;
 }



[arch-commits] Commit in mplayer/trunk (live-media.patch)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 04:39:42
  Author: ibiru
Revision: 152228

missing patch

Added:
  mplayer/trunk/live-media.patch

--+
 live-media.patch |   13 +
 1 file changed, 13 insertions(+)

Added: live-media.patch
===
--- live-media.patch(rev 0)
+++ live-media.patch2012-03-05 09:39:42 UTC (rev 152228)
@@ -0,0 +1,13 @@
+Index: libmpdemux/demux_rtp.cpp
+===
+--- libmpdemux/demux_rtp.cpp   (revision 34798)
 libmpdemux/demux_rtp.cpp   (working copy)
+@@ -19,6 +19,8 @@
+  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+  */
+ 
++#define RTSPCLIENT_SYNCHRONOUS_INTERFACE 1
++
+ extern C {
+ // on MinGW, we must include windows.h before the things it conflicts
+ #ifdef __MINGW32__// with.  they are each protected from



[arch-commits] Commit in mplayer/repos (18 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 04:55:27
  Author: ibiru
Revision: 152229

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

Added:
  mplayer/repos/extra-i686/PKGBUILD
(from rev 152228, mplayer/trunk/PKGBUILD)
  mplayer/repos/extra-i686/live-media.patch
(from rev 152228, mplayer/trunk/live-media.patch)
  mplayer/repos/extra-i686/mplayer.desktop
(from rev 152228, mplayer/trunk/mplayer.desktop)
  mplayer/repos/extra-i686/mplayer.install
(from rev 152228, mplayer/trunk/mplayer.install)
  mplayer/repos/extra-i686/mplayer.png
(from rev 152228, mplayer/trunk/mplayer.png)
  mplayer/repos/extra-x86_64/PKGBUILD
(from rev 152228, mplayer/trunk/PKGBUILD)
  mplayer/repos/extra-x86_64/live-media.patch
(from rev 152228, mplayer/trunk/live-media.patch)
  mplayer/repos/extra-x86_64/mplayer.desktop
(from rev 152228, mplayer/trunk/mplayer.desktop)
  mplayer/repos/extra-x86_64/mplayer.install
(from rev 152228, mplayer/trunk/mplayer.install)
  mplayer/repos/extra-x86_64/mplayer.png
(from rev 152228, mplayer/trunk/mplayer.png)
Deleted:
  mplayer/repos/extra-i686/PKGBUILD
  mplayer/repos/extra-i686/mplayer.desktop
  mplayer/repos/extra-i686/mplayer.install
  mplayer/repos/extra-i686/mplayer.png
  mplayer/repos/extra-x86_64/PKGBUILD
  mplayer/repos/extra-x86_64/mplayer.desktop
  mplayer/repos/extra-x86_64/mplayer.install
  mplayer/repos/extra-x86_64/mplayer.png

---+
 extra-i686/PKGBUILD   |  150 
 extra-i686/live-media.patch   |   13 +++
 extra-i686/mplayer.desktop|   42 +--
 extra-i686/mplayer.install|   22 ++---
 extra-x86_64/PKGBUILD |  150 
 extra-x86_64/live-media.patch |   13 +++
 extra-x86_64/mplayer.desktop  |   42 +--
 extra-x86_64/mplayer.install  |   22 ++---
 8 files changed, 246 insertions(+), 208 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 09:39:42 UTC (rev 152228)
+++ extra-i686/PKGBUILD 2012-03-05 09:55:27 UTC (rev 152229)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgbase=mplayer
-pkgname=('mplayer' 'mencoder')
-pkgver=34426
-pkgrel=3
-arch=('i686' 'x86_64')
-makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'cdparanoia' 'libxinerama' 
'sdl' 'lame' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
-'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 
'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx'
-'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 
'mpg123' 'ladspa' 'libass' 'libbluray')
-license=('GPL')
-url=http://www.mplayerhq.hu/;
-options=(!buildflags !emptydirs)
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz 
mplayer.desktop)
-md5sums=('ff81117293e76b59e54debc439d8e612'
- 'c0d6ef795cf6de48e3b87ff7c23f0319')
-
-build() {
-cd ${srcdir}/${pkgname}
-
-./configure --prefix=/usr \
---enable-runtime-cpudetection \
---disable-gui \
---disable-arts \
---disable-liblzo \
---disable-speex \
---disable-openal \
---disable-libdv \
---disable-musepack \
---disable-esd \
---disable-mga \
---disable-ass-internal \
---enable-xvmc \
---enable-radio \
---language=all \
---confdir=/etc/mplayer
-[ $CARCH = i686 ]   sed 's|-march=i486|-march=i686|g' -i config.mak
-
-make
-}
-
-package_mplayer() {
-pkgdesc=A movie player for linux
-install=mplayer.install
-backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
-depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 
'libvpx' 'lirc-utils' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig'  
'libgl'
-'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 
'jack' 'cdparanoia' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi'
-'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass' 
'libxxf86vm' 'libbluray')
-
-cd ${srcdir}/${pkgbase}
-
-make DESTDIR=${pkgdir} install-mplayer install-mplayer-man
-install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
${pkgdir}/etc/mplayer/
-install -dm755 ${pkgdir}/usr/share/mplayer/
-ln -s /usr/share/fonts/TTF/DejaVuSans.ttf 
${pkgdir}/usr/share/mplayer/subfont.ttf
-rm -rf ${pkgdir}/usr/share/mplayer/font
-#desktop file  FS#14770
-install -Dm644 ${srcdir}/mplayer.desktop 
${pkgdir}/usr/share/applications/mplayer.desktop
-install -Dm644 etc/mplayer.png ${pkgdir}/usr/share/pixmaps/mplayer.png
-}
-
-package_mencoder() {
-pkgdesc=Free command line video decoding, encoding and filtering tool
-depends=('enca' 'a52dec' 'libvpx' 'x264' 'libmng' 'libdca' 'bzip2' 'lame' 
'alsa-lib' 'fontconfig' 'giflib' 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 05:00:23
  Author: ibiru
Revision: 152230

update to 11.1.102.63

Modified:
  flashplugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 09:55:27 UTC (rev 152229)
+++ PKGBUILD2012-03-05 10:00:23 UTC (rev 152230)
@@ -4,7 +4,7 @@
 
 pkgname=flashplugin
 _licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.1.102.62
+pkgver=11.1.102.63
 pkgrel=1
 pkgdesc='Adobe Flash Player'
 url='http://get.adobe.com/flashplayer'
@@ -21,14 +21,14 @@
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('c73d490e552e92016d53247a869ce64b'
+md5sums=('edc3326dd25adee13a8109834d8c05ce'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 elif [ $CARCH = x86_64 ]; then
 
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
 http://www.adobe.com/products/eulas/pdfs/${_licensefile};
 mms.cfg)
-md5sums=('76be6fe21f68684c19ccee138a42fff9'
+md5sums=('144b9ab0fec08d589b5369b1417d8332'
  '94ca2aecb409abfe36494d1a7ec7591d'
  'f34aae6279b40e0bd2abfb0d9963d7b8')
 fi



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 05:01:59
  Author: ibiru
Revision: 152231

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

Added:
  flashplugin/repos/extra-i686/PKGBUILD
(from rev 152230, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-i686/flashplugin.install
(from rev 152230, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-i686/mms.cfg
(from rev 152230, flashplugin/trunk/mms.cfg)
  flashplugin/repos/extra-x86_64/PKGBUILD
(from rev 152230, flashplugin/trunk/PKGBUILD)
  flashplugin/repos/extra-x86_64/flashplugin.install
(from rev 152230, flashplugin/trunk/flashplugin.install)
  flashplugin/repos/extra-x86_64/mms.cfg
(from rev 152230, flashplugin/trunk/mms.cfg)
Deleted:
  flashplugin/repos/extra-i686/PKGBUILD
  flashplugin/repos/extra-i686/flashplugin.install
  flashplugin/repos/extra-i686/mms.cfg
  flashplugin/repos/extra-x86_64/PKGBUILD
  flashplugin/repos/extra-x86_64/flashplugin.install
  flashplugin/repos/extra-x86_64/mms.cfg

--+
 extra-i686/PKGBUILD  |  106 ++---
 extra-i686/flashplugin.install   |   28 -
 extra-i686/mms.cfg   |4 -
 extra-x86_64/PKGBUILD|  106 ++---
 extra-x86_64/flashplugin.install |   28 -
 extra-x86_64/mms.cfg |4 -
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 10:00:23 UTC (rev 152230)
+++ extra-i686/PKGBUILD 2012-03-05 10:01:59 UTC (rev 152231)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-
-pkgname=flashplugin
-_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
-pkgver=11.1.102.62
-pkgrel=1
-pkgdesc='Adobe Flash Player'
-url='http://get.adobe.com/flashplayer'
-arch=('i686' 'x86_64')
-depends=('mozilla-common' 'libxt' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme')
-optdepends=('libvdpau: GPU acceleration on Nvidia card')
-provides=('flashplayer')
-license=('custom')
-options=(!strip)
-install=flashplugin.install
-backup=(etc/adobe/mms.cfg)
-
-if [ $CARCH = i686 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.i386.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('c73d490e552e92016d53247a869ce64b'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-elif [ $CARCH = x86_64 ]; then
-
source=(http://fpdownload.macromedia.com/get/flashplayer/pdc/$pkgver/install_flash_player_11_linux.x86_64.tar.gz;
-http://www.adobe.com/products/eulas/pdfs/${_licensefile};
-mms.cfg)
-md5sums=('76be6fe21f68684c19ccee138a42fff9'
- '94ca2aecb409abfe36494d1a7ec7591d'
- 'f34aae6279b40e0bd2abfb0d9963d7b8')
-fi
-
-package () {
-cd $srcdir
-install -Dm755 libflashplayer.so 
$pkgdir/usr/lib/mozilla/plugins/libflashplayer.so
-if [ $CARCH = x86_64 ]; then
-install -Dm755 usr/lib64/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-else
-install -Dm755 usr/lib/kde4/kcm_adobe_flash_player.so 
$pkgdir/usr/lib/kde4/kcm_adobe_flash_player.so
-fi
-install -Dm755 usr/bin/flash-player-properties 
$pkgdir/usr/bin/flash-player-properties
-for i in 16x16 22x22 24x24 32x32 48x48; do
-install -Dm644 
usr/share/icons/hicolor/$i/apps/flash-player-properties.png \
-
$pkgdir/usr/share/icons/hicolor/$i/apps/flash-player-properties.png
-done
-install -Dm644 usr/share/applications/flash-player-properties.desktop 
$pkgdir/usr/share/applications/flash-player-properties.desktop
-install -Dm644 usr/share/kde4/services/kcm_adobe_flash_player.desktop 
$pkgdir/usr/share/kde4/services/kcm_adobe_flash_player.desktop
-install -Dm644 ${_licensefile} 
$pkgdir/usr/share/licenses/$pkgname/LICENSE.pdf
-install -Dm644 $srcdir/mms.cfg $pkgdir/etc/adobe/mms.cfg
-}

Copied: flashplugin/repos/extra-i686/PKGBUILD (from rev 152230, 
flashplugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 10:01:59 UTC (rev 152231)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+
+pkgname=flashplugin
+_licensefile='PlatformClients_PC_WWEULA_Combined_20100108_1657.pdf'
+pkgver=11.1.102.63
+pkgrel=1
+pkgdesc='Adobe Flash Player'
+url='http://get.adobe.com/flashplayer'
+arch=('i686' 'x86_64')
+depends=('mozilla-common' 'libxt' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme')
+optdepends=('libvdpau: GPU acceleration on Nvidia card')
+provides=('flashplayer')
+license=('custom')

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 08:35:15
  Author: ibiru
Revision: 152232

really compile against boost 1.49. FS#28790

Modified:
  lyx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 10:01:59 UTC (rev 152231)
+++ PKGBUILD2012-03-05 13:35:15 UTC (rev 152232)
@@ -4,7 +4,7 @@
 
 pkgname=lyx
 pkgver=2.0.3
-pkgrel=2
+pkgrel=3
 pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
 arch=('i686' 'x86_64')
 url=http://www.lyx.org;



[arch-commits] Commit in lyx/repos (16 files)

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 08:38:37
  Author: ibiru
Revision: 152233

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

Added:
  lyx/repos/extra-i686/PKGBUILD
(from rev 152232, lyx/trunk/PKGBUILD)
  lyx/repos/extra-i686/lyx.desktop
(from rev 152232, lyx/trunk/lyx.desktop)
  lyx/repos/extra-i686/lyx.install
(from rev 152232, lyx/trunk/lyx.install)
  lyx/repos/extra-i686/lyxrc.dist
(from rev 152232, lyx/trunk/lyxrc.dist)
  lyx/repos/extra-x86_64/PKGBUILD
(from rev 152232, lyx/trunk/PKGBUILD)
  lyx/repos/extra-x86_64/lyx.desktop
(from rev 152232, lyx/trunk/lyx.desktop)
  lyx/repos/extra-x86_64/lyx.install
(from rev 152232, lyx/trunk/lyx.install)
  lyx/repos/extra-x86_64/lyxrc.dist
(from rev 152232, lyx/trunk/lyxrc.dist)
Deleted:
  lyx/repos/extra-i686/PKGBUILD
  lyx/repos/extra-i686/lyx.desktop
  lyx/repos/extra-i686/lyx.install
  lyx/repos/extra-i686/lyxrc.dist
  lyx/repos/extra-x86_64/PKGBUILD
  lyx/repos/extra-x86_64/lyx.desktop
  lyx/repos/extra-x86_64/lyx.install
  lyx/repos/extra-x86_64/lyxrc.dist

--+
 extra-i686/PKGBUILD  |  100 ++---
 extra-i686/lyx.desktop   |   28 ++--
 extra-i686/lyx.install   |   28 ++--
 extra-i686/lyxrc.dist|   28 ++--
 extra-x86_64/PKGBUILD|  100 ++---
 extra-x86_64/lyx.desktop |   28 ++--
 extra-x86_64/lyx.install |   28 ++--
 extra-x86_64/lyxrc.dist  |   28 ++--
 8 files changed, 184 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-05 13:35:15 UTC (rev 152232)
+++ extra-i686/PKGBUILD 2012-03-05 13:38:37 UTC (rev 152233)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Jason Chu ja...@archlinux.org
-
-pkgname=lyx
-pkgver=2.0.3
-pkgrel=2
-pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
-arch=('i686' 'x86_64')
-url=http://www.lyx.org;
-depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
-makedepends=('boost')
-optdepends=('rcs: built-in version control system'
-'texlive-latexextra: float wrap support')
-license=('GPL')
-source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
-lyx.desktop lyxrc.dist)
-backup=('etc/lyx/lyxrc.dist')
-install=lyx.install
-options=('emptydirs')
-sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
-  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
-  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
-  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
-  export CXXFLAGS=$CXXFLAGS -fpermissive
-  ./configure --prefix=/usr \
---with-frontend=qt4 --without-included-boost \
---without-included-mythes
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # install desktop entry
-  install -Dm644 ${srcdir}/lyx.desktop \
-${pkgdir}/usr/share/applications/lyx.desktop
-  install -Dm644 lib/images/lyx.png \
-${pkgdir}/usr/share/pixmaps/lyx.png
-
-  # install default config file
-  install -Dm644 ${srcdir}/lyxrc.dist ${pkgdir}/etc/lyx/lyxrc.dist
-  ln -sf /etc/lyx/lyxrc.dist ${pkgdir}/usr/share/lyx/lyxrc.dist
-}

Copied: lyx/repos/extra-i686/PKGBUILD (from rev 152232, lyx/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-05 13:38:37 UTC (rev 152233)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Jason Chu ja...@archlinux.org
+
+pkgname=lyx
+pkgver=2.0.3
+pkgrel=3
+pkgdesc=An advanced WYSIWYM document processor  LaTeX front-end
+arch=('i686' 'x86_64')
+url=http://www.lyx.org;
+depends=('qt' 'texlive-core' 'python2' 'imagemagick' 'enchant' 'boost-libs' 
'libmythes')
+makedepends=('boost')
+optdepends=('rcs: built-in version control system'
+'texlive-latexextra: float wrap support')
+license=('GPL')
+source=(ftp://ftp.lip6.fr/pub/lyx/stable/2.0.x/$pkgname-$pkgver.tar.xz
+lyx.desktop lyxrc.dist)
+backup=('etc/lyx/lyxrc.dist')
+install=lyx.install
+options=('emptydirs')
+sha1sums=('109dae0ef22a7d8944964b32ee380ad170b0665f'
+  'e2b8f6d6cdeec41e1d5795167f5557e4a6ea28ad'
+  '56416642cc3da2a13b87b84e6b87c1a239f3d09a')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  find . -type f -exec sed -i 's|#!.*python|#!/usr/bin/env python2|' {} +
+  sed -i 's|python|python2|' lib/configure.py src/support/os.cpp
+  export CXXFLAGS=$CXXFLAGS -fpermissive
+  ./configure --prefix=/usr \
+--with-frontend=qt4 --without-included-boost \
+--without-included-mythes
+  make
+}
+
+package() {
+  cd 

[arch-commits] Commit in bluez/trunk (PKGBUILD fix-compile-issue.patch)

2012-03-05 Thread Andrea Scarpino
Date: Monday, March 5, 2012 @ 08:53:46
  Author: andrea
Revision: 152234

upgpkg: bluez 4.98-4

Fix compile issue with C++ (FS#28789)

Added:
  bluez/trunk/fix-compile-issue.patch
Modified:
  bluez/trunk/PKGBUILD

-+
 PKGBUILD|   26 +--
 fix-compile-issue.patch |   50 ++
 2 files changed, 65 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 13:38:37 UTC (rev 152233)
+++ PKGBUILD2012-03-05 13:53:46 UTC (rev 152234)
@@ -1,11 +1,11 @@
 # $Id$
-# Maintainer:
+# Maintainer: Tom Gundersen t...@jklm.no
 # Contributor: Andrea Scarpino and...@archlinux.org
 # Contributor: Geoffroy Carrier geoff...@archlinux.org
 
 pkgname=bluez
 pkgver=4.98
-pkgrel=3
+pkgrel=4
 pkgdesc=Libraries and tools for the Bluetooth protocol stack
 url=http://www.bluez.org/;
 arch=('i686' 'x86_64')
@@ -13,28 +13,32 @@
 depends=('dbus-core')
 makedepends=('gstreamer0.10-base' 'libusb-compat' 'libsndfile')
 optdepends=(gstreamer0.10-base: bluetooth GStreamer support
-   alsa-lib: Audio bluetooth devices support
-   dbus-python: to run bluez-simple-agent
-   pygobject: to run bluez-simple-agent
-   libusb-compat: USB adapters support
-cups: CUPS backend)
+alsa-lib: Audio bluetooth devices support
+dbus-python: to run bluez-simple-agent
+pygobject: to run bluez-simple-agent
+libusb-compat: USB adapters support
+cups: CUPS backend)
 conflicts=('bluez-libs' 'bluez-utils')
 provides=('bluez-libs' 'bluez-utils')
 replaces=('bluez-libs' 'bluez-utils')
-options=('!libtool' 'emptydirs')
+options=('!libtool')
 backup=(etc/bluetooth/{main,rfcomm,audio,network,input,serial}.conf
 'etc/conf.d/bluetooth' 'etc/dbus-1/system.d/bluetooth.conf')
 
source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.bz2;
-'bluetooth.conf.d' 'rc.bluetooth' 'fix-a2dp.patch')
+'bluetooth.conf.d' 'rc.bluetooth'
+'fix-a2dp.patch'
+'fix-compile-issue.patch')
 md5sums=('4aca8a0929250212e9a75fb60dd75b05'
  '7412982b440f29fa7f76a41a87fef985'
  '8f9498707f809506928b2e480d3b6789'
- 'd6a34317e56b7c2bd990791d89d6c3cb')
+ 'd6a34317e56b7c2bd990791d89d6c3cb'
+ 'd81860cd0d7c3ddd2515591453a85e65')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  patch -Np1 -i ${srcdir}/fix-a2dp.patch
+  patch -p1 -i ${srcdir}/fix-a2dp.patch
+  patch -p1 -i ${srcdir}/fix-compile-issue.patch
 
   ./configure --prefix=/usr \
 --sysconfdir=/etc \

Added: fix-compile-issue.patch
===
--- fix-compile-issue.patch (rev 0)
+++ fix-compile-issue.patch 2012-03-05 13:53:46 UTC (rev 152234)
@@ -0,0 +1,50 @@
+From 4002cf271e3939714296c535a1ed8d4f0d5ac005 Mon Sep 17 00:00:00 2001
+From: Patrick Ohly patrick.o...@intel.com
+Date: Mon, 16 Jan 2012 11:11:55 +0100
+Subject: [PATCH] lib: Fix compile issue when using in C++
+MIME-Version: 1.0
+Content-Type: text/plain; charset=utf8
+Content-Transfer-Encoding: 8bit
+
+The compiler error is:
+ /usr/include/bluetooth/bluetooth.h::131:9: error: invalid conversion 
from 'void*' to 'bt_get_le64(void*)::anonymous struct*'
+ ...
+
+The reason is that C++, in contrast to C, does not allow conversion of
+void * to anything, and this code gets compiled as C++ when the app is
+written in C++. The macro with the assignment itself is older, but only
+recent Bluez starts to use it in inline functions, thus triggering the
+problem.
+
+This patch keeps the struct __attribute__((packed)) magic and merely
+changes the typecast so that it works in C and C++. Like the existing
+macro this patch relies on support for typeof.
+---
+ lib/bluetooth.h |4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lib/bluetooth.h b/lib/bluetooth.h
+index ea7373d..0541842 100644
+--- a/lib/bluetooth.h
 b/lib/bluetooth.h
+@@ -141,7 +141,7 @@ enum {
+ ({\
+   struct __attribute__((packed)) {\
+   typeof(*(ptr)) __v; \
+-  } *__p = (void *) (ptr);\
++  } *__p = (typeof(__p)) (ptr);   \
+   __p-__v;   \
+ })
+ 
+@@ -149,7 +149,7 @@ enum {
+ do {  \
+   struct __attribute__((packed)) {\
+   typeof(*(ptr)) __v; \
+-  } *__p = (void *) (ptr);\
++  } *__p = (typeof(__p)) (ptr);   \
+   __p-__v = (val);   \
+ } while(0)
+ 
+-- 
+1.7.6.5
+



[arch-commits] Commit in bluez/repos (18 files)

2012-03-05 Thread Andrea Scarpino
Date: Monday, March 5, 2012 @ 08:54:25
  Author: andrea
Revision: 152235

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

Added:
  bluez/repos/extra-i686/PKGBUILD
(from rev 152234, bluez/trunk/PKGBUILD)
  bluez/repos/extra-i686/bluetooth.conf.d
(from rev 152234, bluez/trunk/bluetooth.conf.d)
  bluez/repos/extra-i686/fix-a2dp.patch
(from rev 152234, bluez/trunk/fix-a2dp.patch)
  bluez/repos/extra-i686/fix-compile-issue.patch
(from rev 152234, bluez/trunk/fix-compile-issue.patch)
  bluez/repos/extra-i686/rc.bluetooth
(from rev 152234, bluez/trunk/rc.bluetooth)
  bluez/repos/extra-x86_64/PKGBUILD
(from rev 152234, bluez/trunk/PKGBUILD)
  bluez/repos/extra-x86_64/bluetooth.conf.d
(from rev 152234, bluez/trunk/bluetooth.conf.d)
  bluez/repos/extra-x86_64/fix-a2dp.patch
(from rev 152234, bluez/trunk/fix-a2dp.patch)
  bluez/repos/extra-x86_64/fix-compile-issue.patch
(from rev 152234, bluez/trunk/fix-compile-issue.patch)
  bluez/repos/extra-x86_64/rc.bluetooth
(from rev 152234, bluez/trunk/rc.bluetooth)
Deleted:
  bluez/repos/extra-i686/PKGBUILD
  bluez/repos/extra-i686/bluetooth.conf.d
  bluez/repos/extra-i686/fix-a2dp.patch
  bluez/repos/extra-i686/rc.bluetooth
  bluez/repos/extra-x86_64/PKGBUILD
  bluez/repos/extra-x86_64/bluetooth.conf.d
  bluez/repos/extra-x86_64/fix-a2dp.patch
  bluez/repos/extra-x86_64/rc.bluetooth

--+
 extra-i686/PKGBUILD  |  176 ++---
 extra-i686/bluetooth.conf.d  |   60 -
 extra-i686/fix-a2dp.patch|  136 +++---
 extra-i686/fix-compile-issue.patch   |   50 
 extra-i686/rc.bluetooth  |  200 -
 extra-x86_64/PKGBUILD|  176 ++---
 extra-x86_64/bluetooth.conf.d|   60 -
 extra-x86_64/fix-a2dp.patch  |  136 +++---
 extra-x86_64/fix-compile-issue.patch |   50 
 extra-x86_64/rc.bluetooth|  200 -
 10 files changed, 676 insertions(+), 568 deletions(-)

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


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

2012-03-05 Thread Pierre Schmitz
Date: Monday, March 5, 2012 @ 12:04:32
  Author: pierre
Revision: 152236

upgpkg: devtools 20120305-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 13:54:25 UTC (rev 152235)
+++ PKGBUILD2012-03-05 17:04:32 UTC (rev 152236)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=devtools
-pkgver=20120215
+pkgver=20120305
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -11,8 +11,8 @@
 depends=('namcap' 'openssh' 'subversion' 'rsync')
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('f316952cd0036522b19c61d05501fd29'
- '8d28cdb97f516e73661464c09661457c')
+md5sums=('0c2945e44c59a190097eaf07c1ca9896'
+ 'f1db3e998280aeeb5e5e3bbfe4d7e521')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



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

2012-03-05 Thread Pierre Schmitz
Date: Monday, March 5, 2012 @ 12:04:50
  Author: pierre
Revision: 152237

archrelease: copy trunk to extra-any

Added:
  devtools/repos/extra-any/PKGBUILD
(from rev 152236, devtools/trunk/PKGBUILD)
Deleted:
  devtools/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2012-03-05 17:04:32 UTC (rev 152236)
+++ PKGBUILD2012-03-05 17:04:50 UTC (rev 152237)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=devtools
-pkgver=20120215
-pkgrel=1
-pkgdesc='Tools for Arch Linux package maintainers'
-arch=('any')
-license=('GPL')
-url='http://projects.archlinux.org/devtools.git/'
-depends=('namcap' 'openssh' 'subversion' 'rsync')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('f316952cd0036522b19c61d05501fd29'
- '8d28cdb97f516e73661464c09661457c')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr DESTDIR=${pkgdir} install
-}

Copied: devtools/repos/extra-any/PKGBUILD (from rev 152236, 
devtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-03-05 17:04:50 UTC (rev 152237)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=devtools
+pkgver=20120305
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='http://projects.archlinux.org/devtools.git/'
+depends=('namcap' 'openssh' 'subversion' 'rsync')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('0c2945e44c59a190097eaf07c1ca9896'
+ 'f1db3e998280aeeb5e5e3bbfe4d7e521')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}



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

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 12:06:10
  Author: stephane
Revision: 152238

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

Added:
  dialog/repos/core-i686/PKGBUILD
(from rev 152237, dialog/repos/testing-i686/PKGBUILD)
Deleted:
  dialog/repos/core-i686/PKGBUILD
  dialog/repos/testing-i686/

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-03-05 17:04:50 UTC (rev 152237)
+++ core-i686/PKGBUILD  2012-03-05 17:06:10 UTC (rev 152238)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-
-pkgname=dialog
-pkgver=1.1_20111020
-pkgrel=1
-pkgdesc=A tool to display dialog boxes from shell scripts
-arch=('i686' 'x86_64')
-url=http://invisible-island.net/dialog/;
-license=('LGPL2.1')
-depends=('ncurses')
-source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz)
-sha1sums=('ddabc0950275db4e9cef382a862ff3b20746e843')
-
-build() {
-  cd ${srcdir}/$pkgname-${pkgver/_/-}
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --with-ncursesw --enable-nls
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-${pkgver/_/-}
-  make DESTDIR=${pkgdir} install install-lib
-}

Copied: dialog/repos/core-i686/PKGBUILD (from rev 152237, 
dialog/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-03-05 17:06:10 UTC (rev 152238)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=dialog
+pkgver=1.1_20120215
+pkgrel=1
+pkgdesc=A tool to display dialog boxes from shell scripts
+arch=('i686' 'x86_64')
+url=http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('ncurses')
+source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz)
+sha1sums=('0d8a07e064c6d4f9cc7d9cb21c4609dc4a19537e')
+
+build() {
+  cd ${srcdir}/$pkgname-${pkgver/_/-}
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --with-ncursesw --enable-nls
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-${pkgver/_/-}
+  make DESTDIR=${pkgdir} install install-lib
+}



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

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 12:06:10
  Author: stephane
Revision: 152239

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

Added:
  dialog/repos/core-x86_64/PKGBUILD
(from rev 152237, dialog/repos/testing-x86_64/PKGBUILD)
Deleted:
  dialog/repos/core-x86_64/PKGBUILD
  dialog/repos/testing-x86_64/

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2012-03-05 17:06:10 UTC (rev 152238)
+++ core-x86_64/PKGBUILD2012-03-05 17:06:10 UTC (rev 152239)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-
-pkgname=dialog
-pkgver=1.1_20111020
-pkgrel=1
-pkgdesc=A tool to display dialog boxes from shell scripts
-arch=('i686' 'x86_64')
-url=http://invisible-island.net/dialog/;
-license=('LGPL2.1')
-depends=('ncurses')
-source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz)
-sha1sums=('ddabc0950275db4e9cef382a862ff3b20746e843')
-
-build() {
-  cd ${srcdir}/$pkgname-${pkgver/_/-}
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-  --with-ncursesw --enable-nls
-  make
-}
-
-package() {
-  cd ${srcdir}/$pkgname-${pkgver/_/-}
-  make DESTDIR=${pkgdir} install install-lib
-}

Copied: dialog/repos/core-x86_64/PKGBUILD (from rev 152237, 
dialog/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2012-03-05 17:06:10 UTC (rev 152239)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: Andreas Radke andy...@archlinux.org
+
+pkgname=dialog
+pkgver=1.1_20120215
+pkgrel=1
+pkgdesc=A tool to display dialog boxes from shell scripts
+arch=('i686' 'x86_64')
+url=http://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('ncurses')
+source=(ftp://invisible-island.net/${pkgname}/${pkgname}-${pkgver/_/-}.tgz)
+sha1sums=('0d8a07e064c6d4f9cc7d9cb21c4609dc4a19537e')
+
+build() {
+  cd ${srcdir}/$pkgname-${pkgver/_/-}
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+  --with-ncursesw --enable-nls
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname-${pkgver/_/-}
+  make DESTDIR=${pkgdir} install install-lib
+}



[arch-commits] Commit in webmin/trunk (PKGBUILD webmin-config.tar.bz2)

2012-03-05 Thread Tobias Powalowski
Date: Monday, March 5, 2012 @ 14:11:53
  Author: tpowa
Revision: 152240

upgpkg: webmin 1.580-1

bump to latest version, fix syslog-ng config

Modified:
  webmin/trunk/PKGBUILD
  webmin/trunk/webmin-config.tar.bz2

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 17:06:10 UTC (rev 152239)
+++ PKGBUILD2012-03-05 19:11:53 UTC (rev 152240)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=webmin
-pkgver=1.570
+pkgver=1.580
 pkgrel=1
 pkgdesc=a web-based interface for system administration
 arch=(i686 x86_64)
@@ -210,7 +210,7 @@
   # install license
   install -m 644 -D $startdir/src/$pkgname-$pkgver/LICENCE 
$startdir/pkg/usr/share/licenses/webmin/LICENCE
 }
-md5sums=('20b4f488637366c39458b9b93162eff3'
- 'da6bea412a5be8cf82a813078fec5847'
+md5sums=('2aa5378bc3ed6471c460d18e87a06fa3'
+ '43a77243acd519c4efe9577090b59912'
  'bfebb75bb94029b48c46b7f1ba1aa811'
  '0673e51af0e81418b4a6c1e205f7e5cd')

Modified: webmin-config.tar.bz2
===
(Binary files differ)



[arch-commits] Commit in webmin/repos (20 files)

2012-03-05 Thread Tobias Powalowski
Date: Monday, March 5, 2012 @ 14:12:45
  Author: tpowa
Revision: 152241

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

Added:
  webmin/repos/extra-i686/PKGBUILD
(from rev 152240, webmin/trunk/PKGBUILD)
  webmin/repos/extra-i686/webmin-config.tar.bz2
(from rev 152240, webmin/trunk/webmin-config.tar.bz2)
  webmin/repos/extra-i686/webmin-pacman.tar.bz2
(from rev 152240, webmin/trunk/webmin-pacman.tar.bz2)
  webmin/repos/extra-i686/webmin.install
(from rev 152240, webmin/trunk/webmin.install)
  webmin/repos/extra-i686/webmin.rc
(from rev 152240, webmin/trunk/webmin.rc)
  webmin/repos/extra-x86_64/PKGBUILD
(from rev 152240, webmin/trunk/PKGBUILD)
  webmin/repos/extra-x86_64/webmin-config.tar.bz2
(from rev 152240, webmin/trunk/webmin-config.tar.bz2)
  webmin/repos/extra-x86_64/webmin-pacman.tar.bz2
(from rev 152240, webmin/trunk/webmin-pacman.tar.bz2)
  webmin/repos/extra-x86_64/webmin.install
(from rev 152240, webmin/trunk/webmin.install)
  webmin/repos/extra-x86_64/webmin.rc
(from rev 152240, webmin/trunk/webmin.rc)
Deleted:
  webmin/repos/extra-i686/PKGBUILD
  webmin/repos/extra-i686/webmin-config.tar.bz2
  webmin/repos/extra-i686/webmin-pacman.tar.bz2
  webmin/repos/extra-i686/webmin.install
  webmin/repos/extra-i686/webmin.rc
  webmin/repos/extra-x86_64/PKGBUILD
  webmin/repos/extra-x86_64/webmin-config.tar.bz2
  webmin/repos/extra-x86_64/webmin-pacman.tar.bz2
  webmin/repos/extra-x86_64/webmin.install
  webmin/repos/extra-x86_64/webmin.rc

-+
 extra-i686/PKGBUILD |  432 +-
 extra-i686/webmin.install   |   70 +++---
 extra-i686/webmin.rc|   88 
 extra-x86_64/PKGBUILD   |  432 +-
 extra-x86_64/webmin.install |   70 +++---
 extra-x86_64/webmin.rc  |   88 
 6 files changed, 590 insertions(+), 590 deletions(-)

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


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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 14:21:51
  Author: ibiru
Revision: 152242

update to 2.31.20

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 19:12:45 UTC (rev 152241)
+++ PKGBUILD2012-03-05 19:21:51 UTC (rev 152242)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=glib2
-pkgver=2.30.2
-pkgrel=2
+pkgver=2.31.20
+pkgrel=1
 pkgdesc=Common C routines used by GTK+ and other libs
 url=http://www.gtk.org/;
 arch=(i686 x86_64)
@@ -12,15 +12,15 @@
 makedepends=('pkgconfig' 'python2')
 optdepends=('python2: for gdbus-codegen')
 options=('!libtool' '!docs' '!emptydirs')
-source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
 glib2.sh
 glib2.csh)
-sha256sums=('f0e91e621ddb48fa12b5c66f56c3d5f05325748c66dd2e9016c278ff8e82'
+sha256sums=('3475e1d866c462a36b89d4bae91181513c390ad0af25f445618321da1e022c2a'
 '9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
 '8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
 
 build() {
-  cd ${srcdir}/glib-${pkgver}
+  cd $srcdir/glib-$pkgver
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
   --sysconfdir=/etc \
   --with-pcre=system \
@@ -29,15 +29,15 @@
 }
 
 package() {
-  cd ${srcdir}/glib-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd $srcdir/glib-$pkgver
+  make DESTDIR=$pkgdir install
 
-  install -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/glib2.sh ${pkgdir}/etc/profile.d/
-  install -m755 ${srcdir}/glib2.csh ${pkgdir}/etc/profile.d/
+  install -d $pkgdir/etc/profile.d
+  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
+  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
 
-  for _i in ${pkgdir}/etc/bash_completion.d/*; do
-  chmod -x ${_i}
+  for _i in $pkgdir/etc/bash_completion.d/*; do
+  chmod -x $_i
   done
   sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
 }



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 14:24:43
  Author: ibiru
Revision: 152243

archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64

Added:
  glib2/repos/gnome-unstable-i686/
  glib2/repos/gnome-unstable-i686/PKGBUILD
(from rev 152242, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-i686/glib2.csh
(from rev 152242, glib2/trunk/glib2.csh)
  glib2/repos/gnome-unstable-i686/glib2.sh
(from rev 152242, glib2/trunk/glib2.sh)
  glib2/repos/gnome-unstable-x86_64/
  glib2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152242, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-x86_64/glib2.csh
(from rev 152242, glib2/trunk/glib2.csh)
  glib2/repos/gnome-unstable-x86_64/glib2.sh
(from rev 152242, glib2/trunk/glib2.sh)

-+
 gnome-unstable-i686/PKGBUILD|   43 ++
 gnome-unstable-i686/glib2.csh   |1 
 gnome-unstable-i686/glib2.sh|1 
 gnome-unstable-x86_64/PKGBUILD  |   43 ++
 gnome-unstable-x86_64/glib2.csh |1 
 gnome-unstable-x86_64/glib2.sh  |1 
 6 files changed, 90 insertions(+)

Copied: glib2/repos/gnome-unstable-i686/PKGBUILD (from rev 152242, 
glib2/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-05 19:24:43 UTC (rev 152243)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.31.20
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkgconfig' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
+glib2.sh
+glib2.csh)
+sha256sums=('3475e1d866c462a36b89d4bae91181513c390ad0af25f445618321da1e022c2a'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
+
+build() {
+  cd $srcdir/glib-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd $srcdir/glib-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/profile.d
+  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
+  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
+
+  for _i in $pkgdir/etc/bash_completion.d/*; do
+  chmod -x $_i
+  done
+  sed -i s|#!/usr/bin/env python|#!/usr/bin/env python2| 
$pkgdir/usr/bin/gdbus-codegen
+}

Copied: glib2/repos/gnome-unstable-i686/glib2.csh (from rev 152242, 
glib2/trunk/glib2.csh)
===
--- gnome-unstable-i686/glib2.csh   (rev 0)
+++ gnome-unstable-i686/glib2.csh   2012-03-05 19:24:43 UTC (rev 152243)
@@ -0,0 +1 @@
+setenv G_BROKEN_FILENAMES 1

Copied: glib2/repos/gnome-unstable-i686/glib2.sh (from rev 152242, 
glib2/trunk/glib2.sh)
===
--- gnome-unstable-i686/glib2.sh(rev 0)
+++ gnome-unstable-i686/glib2.sh2012-03-05 19:24:43 UTC (rev 152243)
@@ -0,0 +1 @@
+export G_BROKEN_FILENAMES=1

Copied: glib2/repos/gnome-unstable-x86_64/PKGBUILD (from rev 152242, 
glib2/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-05 19:24:43 UTC (rev 152243)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=glib2
+pkgver=2.31.20
+pkgrel=1
+pkgdesc=Common C routines used by GTK+ and other libs
+url=http://www.gtk.org/;
+arch=(i686 x86_64)
+license=('LGPL')
+depends=('pcre' 'libffi')
+makedepends=('pkgconfig' 'python2')
+optdepends=('python2: for gdbus-codegen')
+options=('!libtool' '!docs' '!emptydirs')
+source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
+glib2.sh
+glib2.csh)
+sha256sums=('3475e1d866c462a36b89d4bae91181513c390ad0af25f445618321da1e022c2a'
+'9456872cdedcc639fb679448d74b85b0facf81033e27157d2861b991823b5a2a'
+'8d5626ffa361304ad3696493c0ef041d0ab10c857f6ef32116b3e2878ecf89e3')
+
+build() {
+  cd $srcdir/glib-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --with-pcre=system \
+  --disable-fam
+  make
+}
+
+package() {
+  cd $srcdir/glib-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -d $pkgdir/etc/profile.d
+  install -m755 $srcdir/glib2.sh $pkgdir/etc/profile.d/
+  install -m755 $srcdir/glib2.csh $pkgdir/etc/profile.d/
+
+  for _i in 

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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 14:39:01
  Author: ibiru
Revision: 152244

update to 1.31.20

Modified:
  gobject-introspection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 19:24:43 UTC (rev 152243)
+++ PKGBUILD2012-03-05 19:39:01 UTC (rev 152244)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gobject-introspection
-pkgver=1.30.0
+pkgver=1.31.20
 pkgrel=1
 pkgdesc=Introspection system for GObject-based libraries
 url=http://live.gnome.org/GObjectInstrospection;
@@ -11,19 +11,19 @@
 depends=('glib2' 'python2')
 makedepends=('cairo')
 options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.30/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('8e4274579096e983fad3148cdab50295a4701e45cd9a4e02f7242fc0a04c47b2')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e1552884b642e7e5a56a175ae85bfdebfd16c29a7bbe4f6ca9cdf591e333f070')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd $srcdir/$pkgname-$pkgver
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
 
   sed -i '1s|#!/usr/bin/env python$|2|' \
-${pkgdir}/usr/lib/gobject-introspection/giscanner/*.py
+$pkgdir/usr/lib/gobject-introspection/giscanner/*.py
 }



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 14:44:03
  Author: ibiru
Revision: 152245

archrelease: copy trunk to gnome-unstable-x86_64, gnome-unstable-i686

Added:
  gobject-introspection/repos/gnome-unstable-i686/
  gobject-introspection/repos/gnome-unstable-i686/PKGBUILD
(from rev 152244, gobject-introspection/trunk/PKGBUILD)
  gobject-introspection/repos/gnome-unstable-x86_64/
  gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 152244, gobject-introspection/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   29 +
 gnome-unstable-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: gobject-introspection/repos/gnome-unstable-i686/PKGBUILD (from rev 
152244, gobject-introspection/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-05 19:44:03 UTC (rev 152245)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gobject-introspection
+pkgver=1.31.20
+pkgrel=1
+pkgdesc=Introspection system for GObject-based libraries
+url=http://live.gnome.org/GObjectInstrospection;
+arch=('x86_64' 'i686')
+license=('LGPL' 'GPL')
+depends=('glib2' 'python2')
+makedepends=('cairo')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e1552884b642e7e5a56a175ae85bfdebfd16c29a7bbe4f6ca9cdf591e333f070')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  sed -i '1s|#!/usr/bin/env python$|2|' \
+$pkgdir/usr/lib/gobject-introspection/giscanner/*.py
+}

Copied: gobject-introspection/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
152244, gobject-introspection/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-05 19:44:03 UTC (rev 152245)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gobject-introspection
+pkgver=1.31.20
+pkgrel=1
+pkgdesc=Introspection system for GObject-based libraries
+url=http://live.gnome.org/GObjectInstrospection;
+arch=('x86_64' 'i686')
+license=('LGPL' 'GPL')
+depends=('glib2' 'python2')
+makedepends=('cairo')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('e1552884b642e7e5a56a175ae85bfdebfd16c29a7bbe4f6ca9cdf591e333f070')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  sed -i '1s|#!/usr/bin/env python$|2|' \
+$pkgdir/usr/lib/gobject-introspection/giscanner/*.py
+}



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

2012-03-05 Thread Ionut Biru
Date: Monday, March 5, 2012 @ 15:00:00
  Author: ibiru
Revision: 152246

update to 1.31.20

Modified:
  gjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 19:44:03 UTC (rev 152245)
+++ PKGBUILD2012-03-05 20:00:00 UTC (rev 152246)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gjs
-pkgver=1.30.1
+pkgver=1.31.20
 pkgrel=1
 pkgdesc=Javascript Bindings for GNOME
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('cairo' 'dbus-glib' 'gobject-introspection' 'js')
 options=('!libtool')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('f5db07ddf70458a33a5d0bdf83f84070fc234237ecb0d49a8676e67b52119a05')
+sha256sums=('4601f1423dbc0326529cba95cd0475a32ca62ee3215812665cf58e32080a9d11')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in xorg-util-macros/trunk (PKGBUILD)

2012-03-05 Thread andyrtr
Date: Monday, March 5, 2012 @ 15:26:35
  Author: andyrtr
Revision: 152247

upgpkg: xorg-util-macros 1.16.2-1

upstream update 1.16.2

Modified:
  xorg-util-macros/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 20:00:00 UTC (rev 152246)
+++ PKGBUILD2012-03-05 20:26:35 UTC (rev 152247)
@@ -2,14 +2,14 @@
 #Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=xorg-util-macros
-pkgver=1.16.1
+pkgver=1.16.2
 pkgrel=1
 pkgdesc=X.Org Autotools macros
 arch=(any)
 license=('custom')
 url=http://xorg.freedesktop.org/;
 source=(${url}/releases/individual/util/util-macros-${pkgver}.tar.bz2)
-sha1sums=('56d8a9f67ba0571547a8e8e27f009ed1b4431471')
+sha1sums=('17340193e7ba5d9fd5a787a9401e84d223fcc918')
 
 build() {
   cd ${srcdir}/util-macros-${pkgver}



[arch-commits] Commit in xorg-util-macros/repos/extra-any (PKGBUILD PKGBUILD)

2012-03-05 Thread andyrtr
Date: Monday, March 5, 2012 @ 15:27:02
  Author: andyrtr
Revision: 152248

archrelease: copy trunk to extra-any

Added:
  xorg-util-macros/repos/extra-any/PKGBUILD
(from rev 152247, xorg-util-macros/trunk/PKGBUILD)
Deleted:
  xorg-util-macros/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2012-03-05 20:26:35 UTC (rev 152247)
+++ PKGBUILD2012-03-05 20:27:02 UTC (rev 152248)
@@ -1,28 +0,0 @@
-# $Id$
-#Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xorg-util-macros
-pkgver=1.16.1
-pkgrel=1
-pkgdesc=X.Org Autotools macros
-arch=(any)
-license=('custom')
-url=http://xorg.freedesktop.org/;
-source=(${url}/releases/individual/util/util-macros-${pkgver}.tar.bz2)
-sha1sums=('56d8a9f67ba0571547a8e8e27f009ed1b4431471')
-
-build() {
-  cd ${srcdir}/util-macros-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/util-macros-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/lib
-  mv ${pkgdir}/usr/share/pkgconfig ${pkgdir}/usr/lib/
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xorg-util-macros/repos/extra-any/PKGBUILD (from rev 152247, 
xorg-util-macros/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-03-05 20:27:02 UTC (rev 152248)
@@ -0,0 +1,28 @@
+# $Id$
+#Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=xorg-util-macros
+pkgver=1.16.2
+pkgrel=1
+pkgdesc=X.Org Autotools macros
+arch=(any)
+license=('custom')
+url=http://xorg.freedesktop.org/;
+source=(${url}/releases/individual/util/util-macros-${pkgver}.tar.bz2)
+sha1sums=('17340193e7ba5d9fd5a787a9401e84d223fcc918')
+
+build() {
+  cd ${srcdir}/util-macros-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/util-macros-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  install -m755 -d ${pkgdir}/usr/lib
+  mv ${pkgdir}/usr/share/pkgconfig ${pkgdir}/usr/lib/
+  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
+  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
+}



[arch-commits] Commit in python-egenix-mx-base/trunk (PKGBUILD)

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 20:50:20
  Author: stephane
Revision: 152249

upgpkg: python-egenix-mx-base 3.2.3-1

upstream update

Modified:
  python-egenix-mx-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-05 20:27:02 UTC (rev 152248)
+++ PKGBUILD2012-03-06 01:50:20 UTC (rev 152249)
@@ -4,7 +4,7 @@
 
 pkgname=python-egenix-mx-base
 _origname=egenix-mx-base
-pkgver=3.2.2
+pkgver=3.2.3
 pkgrel=1
 pkgdesc=A collection of Python tools
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 replaces=('egenix-mx-base')
 provides=('egenix-mx-base')
 source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
-sha1sums=('9faaf608a29b80d9a8daf16b8b3578e896b6395b')
+sha1sums=('6f56a301859b8f9513141fbeeca3e537e082aa53')
 
 build() {
   cd ${srcdir}/${_origname}-${pkgver}



[arch-commits] Commit in python-egenix-mx-base/repos (4 files)

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 20:50:30
  Author: stephane
Revision: 152250

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

Added:
  python-egenix-mx-base/repos/extra-i686/PKGBUILD
(from rev 152249, python-egenix-mx-base/trunk/PKGBUILD)
  python-egenix-mx-base/repos/extra-x86_64/PKGBUILD
(from rev 152249, python-egenix-mx-base/trunk/PKGBUILD)
Deleted:
  python-egenix-mx-base/repos/extra-i686/PKGBUILD
  python-egenix-mx-base/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-06 01:50:20 UTC (rev 152249)
+++ extra-i686/PKGBUILD 2012-03-06 01:50:30 UTC (rev 152250)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=python-egenix-mx-base
-_origname=egenix-mx-base
-pkgver=3.2.2
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-depends=('python2')
-replaces=('egenix-mx-base')
-provides=('egenix-mx-base')
-source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
-sha1sums=('9faaf608a29b80d9a8daf16b8b3578e896b6395b')
-
-build() {
-  cd ${srcdir}/${_origname}-${pkgver}
-
-  find . -name \*.py -exec sed -i -e s|#!/usr/bin/env python|#!/usr/bin/env 
python2| \
-  -e s|#!/usr/local/.*python.*|#!/usr/bin/env 
python2| {} \;
-
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${_origname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-egenix-mx-base/repos/extra-i686/PKGBUILD (from rev 152249, 
python-egenix-mx-base/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-06 01:50:30 UTC (rev 152250)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=python-egenix-mx-base
+_origname=egenix-mx-base
+pkgver=3.2.3
+pkgrel=1
+pkgdesc=A collection of Python tools
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://www.egenix.com/products/python/mxBase/;
+depends=('python2')
+replaces=('egenix-mx-base')
+provides=('egenix-mx-base')
+source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
+sha1sums=('6f56a301859b8f9513141fbeeca3e537e082aa53')
+
+build() {
+  cd ${srcdir}/${_origname}-${pkgver}
+
+  find . -name \*.py -exec sed -i -e s|#!/usr/bin/env python|#!/usr/bin/env 
python2| \
+  -e s|#!/usr/local/.*python.*|#!/usr/bin/env 
python2| {} \;
+
+  python2 setup.py build
+}
+
+package() {
+  cd ${srcdir}/${_origname}-${pkgver}
+  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
+  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-06 01:50:20 UTC (rev 152249)
+++ extra-x86_64/PKGBUILD   2012-03-06 01:50:30 UTC (rev 152250)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=python-egenix-mx-base
-_origname=egenix-mx-base
-pkgver=3.2.2
-pkgrel=1
-pkgdesc=A collection of Python tools
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://www.egenix.com/products/python/mxBase/;
-depends=('python2')
-replaces=('egenix-mx-base')
-provides=('egenix-mx-base')
-source=(http://downloads.egenix.com/python/${_origname}-${pkgver}.tar.gz;)
-sha1sums=('9faaf608a29b80d9a8daf16b8b3578e896b6395b')
-
-build() {
-  cd ${srcdir}/${_origname}-${pkgver}
-
-  find . -name \*.py -exec sed -i -e s|#!/usr/bin/env python|#!/usr/bin/env 
python2| \
-  -e s|#!/usr/local/.*python.*|#!/usr/bin/env 
python2| {} \;
-
-  python2 setup.py build
-}
-
-package() {
-  cd ${srcdir}/${_origname}-${pkgver}
-  python2 setup.py install --root=${pkgdir} --skip-build --optimize=1
-  install -D -m644 COPYRIGHT ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-egenix-mx-base/repos/extra-x86_64/PKGBUILD (from rev 152249, 
python-egenix-mx-base/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-06 01:50:30 UTC (rev 152250)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault 

[arch-commits] Commit in dnsmasq/trunk (PKGBUILD dnsmasq.service rc.dnsmasq)

2012-03-05 Thread Dave Reisner
Date: Monday, March 5, 2012 @ 20:59:22
  Author: dreisner
Revision: 152251

upgpkg: dnsmasq 2.60-1

- upstrema release 2.60
- install daemon to /usr/bin

Modified:
  dnsmasq/trunk/PKGBUILD
  dnsmasq/trunk/dnsmasq.service
  dnsmasq/trunk/rc.dnsmasq

-+
 PKGBUILD|   22 --
 dnsmasq.service |4 ++--
 rc.dnsmasq  |6 +++---
 3 files changed, 17 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 01:50:30 UTC (rev 152250)
+++ PKGBUILD2012-03-06 01:59:22 UTC (rev 152251)
@@ -4,14 +4,13 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=dnsmasq
-pkgver=2.59
-pkgrel=2
+pkgver=2.60
+pkgrel=1
 pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
 url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('glibc' 'dbus-core')
-makedepends=('libcap=2.16')
 install=$pkgname.install
 backup=('etc/dnsmasq.conf'
 'etc/conf.d/dnsmasq')
@@ -19,24 +18,27 @@
 'dnsmasq.confd'
 'rc.dnsmasq'
 'dnsmasq.service')
-md5sums=('b5757ef2d7b651748eeebb88af29d7d6'
+md5sums=('5a09908e02724d759ac60d9cafd27de8'
  '66479e99123faeab83ebaed709ef95b5'
  '9f180cc236808bbd02ca8652fd2e8217'
- 'f329d86f8ba1cd85f9b6ee59e0ce3791')
+ '631d8349acbed1b01d4e11d9f42fdb7d')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  # link against dbus
-  echo '#define HAVE_DBUS'  src/config.h
+  # link against dbus. this ugliness is needed to ensure that the
+  # compile time opts report properly on startup. yuck.
+  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ {
+i#define HAVE_DBUS
+  }' src/config.h
 
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-  make PREFIX=/usr DESTDIR=$pkgdir install
+  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
 
   install -Dm755 $srcdir/rc.dnsmasq $pkgdir/etc/rc.d/dnsmasq
   install -Dm644 $srcdir/dnsmasq.confd $pkgdir/etc/conf.d/dnsmasq

Modified: dnsmasq.service
===
--- dnsmasq.service 2012-03-06 01:50:30 UTC (rev 152250)
+++ dnsmasq.service 2012-03-06 01:59:22 UTC (rev 152251)
@@ -4,8 +4,8 @@
 [Service]
 Type=dbus
 BusName=uk.org.thekelleys.dnsmasq
-ExecStartPre=/usr/sbin/dnsmasq --test
-ExecStart=/usr/sbin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file
+ExecStartPre=/usr/bin/dnsmasq --test
+ExecStart=/usr/bin/dnsmasq -k --enable-dbus --user=dnsmasq --pid-file
 ExecReload=/bin/kill -HUP $MAINPID
 
 [Install]

Modified: rc.dnsmasq
===
--- rc.dnsmasq  2012-03-06 01:50:30 UTC (rev 152250)
+++ rc.dnsmasq  2012-03-06 01:59:22 UTC (rev 152251)
@@ -7,7 +7,7 @@
 checkconfig() {
   local testout
 
-  if ! testout=$(/usr/sbin/dnsmasq --test 21); then
+  if ! testout=$(/usr/bin/dnsmasq --test 21); then
 echo $testout
 return 1
   fi
@@ -29,7 +29,7 @@
   start)
 stat_busy Starting DNS/DHCP daemon
 if [[ -z $PID ]]  checkconfig 
-/usr/sbin/dnsmasq --user=${DNSMASQ_USER:-nobody} \
+/usr/bin/dnsmasq --user=${DNSMASQ_USER:-nobody} \
   --pid-file=$pidfile \
   ${DNSMASQ_OPTS[@]}; then
   add_daemon dnsmasq
@@ -56,7 +56,7 @@
 ;;
   checkconfig)
 # diagnostics will be printed, with zero/non-zero exit
-/usr/sbin/dnsmasq --test
+/usr/bin/dnsmasq --test
 ;;
   *)
 echo usage: $0 start|stop|restart|checkconfig



[arch-commits] Commit in dnsmasq/repos (20 files)

2012-03-05 Thread Dave Reisner
Date: Monday, March 5, 2012 @ 20:59:40
  Author: dreisner
Revision: 152252

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

Added:
  dnsmasq/repos/extra-i686/PKGBUILD
(from rev 152251, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-i686/dnsmasq.confd
(from rev 152251, dnsmasq/trunk/dnsmasq.confd)
  dnsmasq/repos/extra-i686/dnsmasq.install
(from rev 152251, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-i686/dnsmasq.service
(from rev 152251, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-i686/rc.dnsmasq
(from rev 152251, dnsmasq/trunk/rc.dnsmasq)
  dnsmasq/repos/extra-x86_64/PKGBUILD
(from rev 152251, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-x86_64/dnsmasq.confd
(from rev 152251, dnsmasq/trunk/dnsmasq.confd)
  dnsmasq/repos/extra-x86_64/dnsmasq.install
(from rev 152251, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-x86_64/dnsmasq.service
(from rev 152251, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-x86_64/rc.dnsmasq
(from rev 152251, dnsmasq/trunk/rc.dnsmasq)
Deleted:
  dnsmasq/repos/extra-i686/PKGBUILD
  dnsmasq/repos/extra-i686/dnsmasq.confd
  dnsmasq/repos/extra-i686/dnsmasq.install
  dnsmasq/repos/extra-i686/dnsmasq.service
  dnsmasq/repos/extra-i686/rc.dnsmasq
  dnsmasq/repos/extra-x86_64/PKGBUILD
  dnsmasq/repos/extra-x86_64/dnsmasq.confd
  dnsmasq/repos/extra-x86_64/dnsmasq.install
  dnsmasq/repos/extra-x86_64/dnsmasq.service
  dnsmasq/repos/extra-x86_64/rc.dnsmasq

--+
 extra-i686/PKGBUILD  |  100 
 extra-i686/dnsmasq.confd |   18 ++---
 extra-i686/dnsmasq.install   |   42 ++---
 extra-i686/dnsmasq.service   |   26 
 extra-i686/rc.dnsmasq|  128 -
 extra-x86_64/PKGBUILD|  100 
 extra-x86_64/dnsmasq.confd   |   18 ++---
 extra-x86_64/dnsmasq.install |   42 ++---
 extra-x86_64/dnsmasq.service |   26 
 extra-x86_64/rc.dnsmasq  |  128 -
 10 files changed, 316 insertions(+), 312 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-06 01:59:22 UTC (rev 152251)
+++ extra-i686/PKGBUILD 2012-03-06 01:59:40 UTC (rev 152252)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=dnsmasq
-pkgver=2.59
-pkgrel=2
-pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
-url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('glibc' 'dbus-core')
-makedepends=('libcap=2.16')
-install=$pkgname.install
-backup=('etc/dnsmasq.conf'
-'etc/conf.d/dnsmasq')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
-'dnsmasq.confd'
-'rc.dnsmasq'
-'dnsmasq.service')
-md5sums=('b5757ef2d7b651748eeebb88af29d7d6'
- '66479e99123faeab83ebaed709ef95b5'
- '9f180cc236808bbd02ca8652fd2e8217'
- 'f329d86f8ba1cd85f9b6ee59e0ce3791')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # link against dbus
-  echo '#define HAVE_DBUS'  src/config.h
-
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make PREFIX=/usr DESTDIR=$pkgdir install
-
-  install -Dm755 $srcdir/rc.dnsmasq $pkgdir/etc/rc.d/dnsmasq
-  install -Dm644 $srcdir/dnsmasq.confd $pkgdir/etc/conf.d/dnsmasq
-
-  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
-  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
-  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/lib/systemd/system/dnsmasq.service
-}
-
-# vim: ts=2 sw=2 et ft=sh

Copied: dnsmasq/repos/extra-i686/PKGBUILD (from rev 152251, 
dnsmasq/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-06 01:59:40 UTC (rev 152252)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=dnsmasq
+pkgver=2.60
+pkgrel=1
+pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
+url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc' 'dbus-core')
+install=$pkgname.install
+backup=('etc/dnsmasq.conf'
+'etc/conf.d/dnsmasq')
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
+'dnsmasq.confd'
+'rc.dnsmasq'
+'dnsmasq.service')
+md5sums=('5a09908e02724d759ac60d9cafd27de8'
+ '66479e99123faeab83ebaed709ef95b5'
+ '9f180cc236808bbd02ca8652fd2e8217'
+ '631d8349acbed1b01d4e11d9f42fdb7d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # link against dbus. this ugliness is needed to 

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

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 21:06:22
  Author: stephane
Revision: 152253

upgpkg: hwloc 1.4.1-1

upstream update

Modified:
  hwloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 01:59:40 UTC (rev 152252)
+++ PKGBUILD2012-03-06 02:06:22 UTC (rev 152253)
@@ -4,8 +4,8 @@
 # Contributor: Hervé YVIQUEL ellde...@gmail.com
 
 pkgname=hwloc
-pkgver=1.4
-pkgrel=2
+pkgver=1.4.1
+pkgrel=1
 pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
 arch=('i686' 'x86_64')
 url=http://www.open-mpi.org/projects/hwloc/;
@@ -14,7 +14,7 @@
 makedepends=('pkg-config')
 options=('!libtool' '!docs')
 
source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('04326ebbf5a084164d72269f05e37ae23996c023')
+sha1sums=('911d2ba77fa968c3c72caf75a9e21637f3677acc')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



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

2012-03-05 Thread Stéphane Gaudreault
Date: Monday, March 5, 2012 @ 21:06:32
  Author: stephane
Revision: 152254

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-06 02:06:22 UTC (rev 152253)
+++ extra-i686/PKGBUILD 2012-03-06 02:06:32 UTC (rev 152254)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sylvain HENRY hsy...@yahoo.fr
-# Contributor: Hervé YVIQUEL ellde...@gmail.com
-
-pkgname=hwloc
-pkgver=1.4
-pkgrel=2
-pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
-arch=('i686' 'x86_64')
-url=http://www.open-mpi.org/projects/hwloc/;
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('04326ebbf5a084164d72269f05e37ae23996c023')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-i686/PKGBUILD (from rev 152253, hwloc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-06 02:06:32 UTC (rev 152254)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sylvain HENRY hsy...@yahoo.fr
+# Contributor: Hervé YVIQUEL ellde...@gmail.com
+
+pkgname=hwloc
+pkgver=1.4.1
+pkgrel=1
+pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
+arch=('i686' 'x86_64')
+url=http://www.open-mpi.org/projects/hwloc/;
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('911d2ba77fa968c3c72caf75a9e21637f3677acc')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-03-06 02:06:22 UTC (rev 152253)
+++ extra-x86_64/PKGBUILD   2012-03-06 02:06:32 UTC (rev 152254)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Sylvain HENRY hsy...@yahoo.fr
-# Contributor: Hervé YVIQUEL ellde...@gmail.com
-
-pkgname=hwloc
-pkgver=1.4
-pkgrel=2
-pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
-arch=('i686' 'x86_64')
-url=http://www.open-mpi.org/projects/hwloc/;
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-makedepends=('pkg-config')
-options=('!libtool' '!docs')
-source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('04326ebbf5a084164d72269f05e37ae23996c023')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-x86_64/PKGBUILD (from rev 152253, 
hwloc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-06 02:06:32 UTC (rev 152254)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Sylvain HENRY hsy...@yahoo.fr
+# Contributor: Hervé YVIQUEL ellde...@gmail.com
+
+pkgname=hwloc
+pkgver=1.4.1
+pkgrel=1
+pkgdesc=Portable Hardware Locality is a portable abstraction of hierarchical 
architectures
+arch=('i686' 'x86_64')
+url=http://www.open-mpi.org/projects/hwloc/;
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+makedepends=('pkg-config')
+options=('!libtool' '!docs')
+source=(http://www.open-mpi.org/software/hwloc/v1.4/downloads/${pkgname}-${pkgver}.tar.bz2)

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

2012-03-05 Thread Dave Reisner
Date: Monday, March 5, 2012 @ 23:00:46
  Author: dreisner
Revision: 152255

upgpkg: dnsmasq 2.60-2

- fix daemon script

Modified:
  dnsmasq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 02:06:32 UTC (rev 152254)
+++ PKGBUILD2012-03-06 04:00:46 UTC (rev 152255)
@@ -5,7 +5,7 @@
 
 pkgname=dnsmasq
 pkgver=2.60
-pkgrel=1
+pkgrel=2
 pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
 url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 'dnsmasq.service')
 md5sums=('5a09908e02724d759ac60d9cafd27de8'
  '66479e99123faeab83ebaed709ef95b5'
- '9f180cc236808bbd02ca8652fd2e8217'
+ '819fbdf6440d710616e6df5f8ca9cdba'
  '631d8349acbed1b01d4e11d9f42fdb7d')
 
 build() {



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

2012-03-05 Thread Dave Reisner
Date: Monday, March 5, 2012 @ 23:00:59
  Author: dreisner
Revision: 152256

archrelease: copy trunk to extra-i686

Added:
  dnsmasq/repos/extra-i686/PKGBUILD
(from rev 152255, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-i686/dnsmasq.confd
(from rev 152255, dnsmasq/trunk/dnsmasq.confd)
  dnsmasq/repos/extra-i686/dnsmasq.install
(from rev 152255, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-i686/dnsmasq.service
(from rev 152255, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-i686/rc.dnsmasq
(from rev 152255, dnsmasq/trunk/rc.dnsmasq)
Deleted:
  dnsmasq/repos/extra-i686/PKGBUILD
  dnsmasq/repos/extra-i686/dnsmasq.confd
  dnsmasq/repos/extra-i686/dnsmasq.install
  dnsmasq/repos/extra-i686/dnsmasq.service
  dnsmasq/repos/extra-i686/rc.dnsmasq

-+
 PKGBUILD|  102 +--
 dnsmasq.confd   |   18 +++
 dnsmasq.install |   42 -
 dnsmasq.service |   26 +-
 rc.dnsmasq  |  128 +++---
 5 files changed, 158 insertions(+), 158 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-03-06 04:00:46 UTC (rev 152255)
+++ PKGBUILD2012-03-06 04:00:59 UTC (rev 152256)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=dnsmasq
-pkgver=2.60
-pkgrel=1
-pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
-url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('glibc' 'dbus-core')
-install=$pkgname.install
-backup=('etc/dnsmasq.conf'
-'etc/conf.d/dnsmasq')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
-'dnsmasq.confd'
-'rc.dnsmasq'
-'dnsmasq.service')
-md5sums=('5a09908e02724d759ac60d9cafd27de8'
- '66479e99123faeab83ebaed709ef95b5'
- '9f180cc236808bbd02ca8652fd2e8217'
- '631d8349acbed1b01d4e11d9f42fdb7d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # link against dbus. this ugliness is needed to ensure that the
-  # compile time opts report properly on startup. yuck.
-  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ {
-i#define HAVE_DBUS
-  }' src/config.h
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
-
-  install -Dm755 $srcdir/rc.dnsmasq $pkgdir/etc/rc.d/dnsmasq
-  install -Dm644 $srcdir/dnsmasq.confd $pkgdir/etc/conf.d/dnsmasq
-
-  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
-  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
-  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/lib/systemd/system/dnsmasq.service
-}
-
-# vim: ts=2 sw=2 et ft=sh

Copied: dnsmasq/repos/extra-i686/PKGBUILD (from rev 152255, 
dnsmasq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-03-06 04:00:59 UTC (rev 152256)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=dnsmasq
+pkgver=2.60
+pkgrel=2
+pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
+url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc' 'dbus-core')
+install=$pkgname.install
+backup=('etc/dnsmasq.conf'
+'etc/conf.d/dnsmasq')
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
+'dnsmasq.confd'
+'rc.dnsmasq'
+'dnsmasq.service')
+md5sums=('5a09908e02724d759ac60d9cafd27de8'
+ '66479e99123faeab83ebaed709ef95b5'
+ '819fbdf6440d710616e6df5f8ca9cdba'
+ '631d8349acbed1b01d4e11d9f42fdb7d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # link against dbus. this ugliness is needed to ensure that the
+  # compile time opts report properly on startup. yuck.
+  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ {
+i#define HAVE_DBUS
+  }' src/config.h
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
+
+  install -Dm755 $srcdir/rc.dnsmasq $pkgdir/etc/rc.d/dnsmasq
+  install -Dm644 $srcdir/dnsmasq.confd $pkgdir/etc/conf.d/dnsmasq
+
+  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
+  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
+  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/lib/systemd/system/dnsmasq.service
+}
+
+# vim: ts=2 sw=2 et ft=sh

Deleted: dnsmasq.confd
===
--- dnsmasq.confd   2012-03-06 04:00:46 UTC (rev 152255)
+++ dnsmasq.confd   2012-03-06 04:00:59 UTC (rev 152256)
@@ -1,9 +0,0 @@
-#
-# runtime config for dnsmasq
-#
-
-# if unset, dnsmasq 

[arch-commits] Commit in dnsmasq/repos (20 files)

2012-03-05 Thread Dave Reisner
Date: Monday, March 5, 2012 @ 23:01:25
  Author: dreisner
Revision: 152257

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

Added:
  dnsmasq/repos/extra-i686/PKGBUILD
(from rev 152256, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-i686/dnsmasq.confd
(from rev 152256, dnsmasq/trunk/dnsmasq.confd)
  dnsmasq/repos/extra-i686/dnsmasq.install
(from rev 152256, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-i686/dnsmasq.service
(from rev 152256, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-i686/rc.dnsmasq
(from rev 152256, dnsmasq/trunk/rc.dnsmasq)
  dnsmasq/repos/extra-x86_64/PKGBUILD
(from rev 152256, dnsmasq/trunk/PKGBUILD)
  dnsmasq/repos/extra-x86_64/dnsmasq.confd
(from rev 152256, dnsmasq/trunk/dnsmasq.confd)
  dnsmasq/repos/extra-x86_64/dnsmasq.install
(from rev 152256, dnsmasq/trunk/dnsmasq.install)
  dnsmasq/repos/extra-x86_64/dnsmasq.service
(from rev 152256, dnsmasq/trunk/dnsmasq.service)
  dnsmasq/repos/extra-x86_64/rc.dnsmasq
(from rev 152256, dnsmasq/trunk/rc.dnsmasq)
Deleted:
  dnsmasq/repos/extra-i686/PKGBUILD
  dnsmasq/repos/extra-i686/dnsmasq.confd
  dnsmasq/repos/extra-i686/dnsmasq.install
  dnsmasq/repos/extra-i686/dnsmasq.service
  dnsmasq/repos/extra-i686/rc.dnsmasq
  dnsmasq/repos/extra-x86_64/PKGBUILD
  dnsmasq/repos/extra-x86_64/dnsmasq.confd
  dnsmasq/repos/extra-x86_64/dnsmasq.install
  dnsmasq/repos/extra-x86_64/dnsmasq.service
  dnsmasq/repos/extra-x86_64/rc.dnsmasq

--+
 extra-i686/PKGBUILD  |  102 
 extra-i686/dnsmasq.confd |   18 ++---
 extra-i686/dnsmasq.install   |   42 ++---
 extra-i686/dnsmasq.service   |   26 
 extra-i686/rc.dnsmasq|  128 -
 extra-x86_64/PKGBUILD|  102 
 extra-x86_64/dnsmasq.confd   |   18 ++---
 extra-x86_64/dnsmasq.install |   42 ++---
 extra-x86_64/dnsmasq.service |   26 
 extra-x86_64/rc.dnsmasq  |  128 -
 10 files changed, 316 insertions(+), 316 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-06 04:00:59 UTC (rev 152256)
+++ extra-i686/PKGBUILD 2012-03-06 04:01:25 UTC (rev 152257)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Contributor: Paul Mattal p...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=dnsmasq
-pkgver=2.60
-pkgrel=2
-pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
-url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('glibc' 'dbus-core')
-install=$pkgname.install
-backup=('etc/dnsmasq.conf'
-'etc/conf.d/dnsmasq')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
-'dnsmasq.confd'
-'rc.dnsmasq'
-'dnsmasq.service')
-md5sums=('5a09908e02724d759ac60d9cafd27de8'
- '66479e99123faeab83ebaed709ef95b5'
- '819fbdf6440d710616e6df5f8ca9cdba'
- '631d8349acbed1b01d4e11d9f42fdb7d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # link against dbus. this ugliness is needed to ensure that the
-  # compile time opts report properly on startup. yuck.
-  sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ {
-i#define HAVE_DBUS
-  }' src/config.h
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
-
-  install -Dm755 $srcdir/rc.dnsmasq $pkgdir/etc/rc.d/dnsmasq
-  install -Dm644 $srcdir/dnsmasq.confd $pkgdir/etc/conf.d/dnsmasq
-
-  install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
-  install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf
-  install -Dm644 $srcdir/dnsmasq.service 
$pkgdir/lib/systemd/system/dnsmasq.service
-}
-
-# vim: ts=2 sw=2 et ft=sh

Copied: dnsmasq/repos/extra-i686/PKGBUILD (from rev 152256, 
dnsmasq/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-06 04:01:25 UTC (rev 152257)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Contributor: Paul Mattal p...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=dnsmasq
+pkgver=2.60
+pkgrel=2
+pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
+url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('glibc' 'dbus-core')
+install=$pkgname.install
+backup=('etc/dnsmasq.conf'
+'etc/conf.d/dnsmasq')
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz;
+'dnsmasq.confd'
+'rc.dnsmasq'
+'dnsmasq.service')
+md5sums=('5a09908e02724d759ac60d9cafd27de8'
+ '66479e99123faeab83ebaed709ef95b5'
+ '819fbdf6440d710616e6df5f8ca9cdba'
+ 

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

2012-03-05 Thread andyrtr
Date: Tuesday, March 6, 2012 @ 00:28:44
  Author: andyrtr
Revision: 152258

upgpkg: icedtea-web 1.1.5-1

upstream update 1.1.5

Modified:
  icedtea-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-06 04:01:25 UTC (rev 152257)
+++ PKGBUILD2012-03-06 05:28:44 UTC (rev 152258)
@@ -3,14 +3,14 @@
 
 pkgbase=icedtea-web
 pkgname=('icedtea-web' 'icedtea-web-doc')
-pkgver=1.1.4
-pkgrel=2
+pkgver=1.1.5
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://icedtea.classpath.org/wiki/IcedTea-Web;
 license=('GPL2')
 makedepends=('openjdk6' 'zip' 'gtk2' 'npapi-sdk' 'rhino' 'junit')
 source=(http://icedtea.classpath.org/download/source/$pkgname-$pkgver.tar.gz)
-md5sums=('1ed24b7e58da26471187dfae80b020b6')
+sha256sums=('ab5c34a9dc6bff48baf1f1d1a34bf54bfb954ad93ee9e7e44d642fa991bcc919')
 
   _javaver=6
   _jvmdir=/usr/lib/jvm/java-${_javaver}-openjdk



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

2012-03-05 Thread andyrtr
Date: Tuesday, March 6, 2012 @ 00:29:22
  Author: andyrtr
Revision: 152259

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

Added:
  icedtea-web/repos/extra-i686/PKGBUILD
(from rev 152258, icedtea-web/trunk/PKGBUILD)
  icedtea-web/repos/extra-i686/icedtea-web.install
(from rev 152258, icedtea-web/trunk/icedtea-web.install)
  icedtea-web/repos/extra-x86_64/PKGBUILD
(from rev 152258, icedtea-web/trunk/PKGBUILD)
  icedtea-web/repos/extra-x86_64/icedtea-web.install
(from rev 152258, icedtea-web/trunk/icedtea-web.install)
Deleted:
  icedtea-web/repos/extra-i686/PKGBUILD
  icedtea-web/repos/extra-i686/icedtea-web.install
  icedtea-web/repos/extra-x86_64/PKGBUILD
  icedtea-web/repos/extra-x86_64/icedtea-web.install

--+
 extra-i686/PKGBUILD  |  146 ++---
 extra-i686/icedtea-web.install   |   22 ++---
 extra-x86_64/PKGBUILD|  146 ++---
 extra-x86_64/icedtea-web.install |   22 ++---
 4 files changed, 168 insertions(+), 168 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-06 05:28:44 UTC (rev 152258)
+++ extra-i686/PKGBUILD 2012-03-06 05:29:22 UTC (rev 152259)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-
-pkgbase=icedtea-web
-pkgname=('icedtea-web' 'icedtea-web-doc')
-pkgver=1.1.4
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://icedtea.classpath.org/wiki/IcedTea-Web;
-license=('GPL2')
-makedepends=('openjdk6' 'zip' 'gtk2' 'npapi-sdk' 'rhino' 'junit')
-source=(http://icedtea.classpath.org/download/source/$pkgname-$pkgver.tar.gz)
-md5sums=('1ed24b7e58da26471187dfae80b020b6')
-
-  _javaver=6
-  _jvmdir=/usr/lib/jvm/java-${_javaver}-openjdk
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr/lib/jvm/java-6-openjdk \
-  --datarootdir=/usr/share
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make -k check
-}
-
-
-package_icedtea-web() {
-
-  pkgdesc=provides a Free Software web browser plugin running applets written 
in the Java programming language and an implementation of Java Web Start, 
originally based on the NetX project
-  depends=('openjdk6' 'gtk2' 'desktop-file-utils')
-  install=$pkgname.install
-
-  cd $srcdir/$pkgname-$pkgver
-  # possible make target (see bottom of Makefile.am: install-exec-local 
install-data-local
-  make DESTDIR=$pkgdir install-exec-local install-data-local
-
-  # Install desktop files.
-  install -m755 -d ${pkgdir}/usr/share/{applications,pixmaps}
-  install -m644 javaws.png ${pkgdir}/usr/share/pixmaps
-  install -m644 {javaws,itweb-settings}.desktop 
${pkgdir}/usr/share/applications
-  # remove splitted doc files
-  rm -rf ${pkgdir}/usr/share/doc
-
-  # link binaries into /usr/bin + jre/bin
-  install -m755 -d ${pkgdir}/usr/bin
-  install -m755 -d ${pkgdir}/${_jvmdir}/jre/bin
-  pushd ${pkgdir}/${_jvmdir}/bin
-  for file in *; do
-ln -sf ${_jvmdir}/bin/${file} ${pkgdir}/usr/bin
-ln -sf ${_jvmdir}/bin/${file} ${pkgdir}/${_jvmdir}/jre/bin
-  done
-  popd
-
-  # link the mozilla-plugin - test it here 
http://www.java.com/en/download/help/testvm.xml
-  install -m755 -d ${pkgdir}/usr/lib/mozilla/plugins/
-  ln -sf ${_jvmdir}/lib/IcedTeaPlugin.so ${pkgdir}/usr/lib/mozilla/plugins/
-}
-
-package_icedtea-web-doc() {
-
-  pkgdesc=icedtea-web browser plugin + Java WebStart - documentation files
-
-  cd $srcdir/$pkgbase-$pkgver
-  make DESTDIR=$pkgdir install-data-local
-  # remove javaws about and man page
-  rm -rf ${pkgdir}/usr/lib
-  rm -rf ${pkgdir}/usr/share/man
-  rm -rf ${pkgdir}/usr/share/icedtea-web # conflicting and unneeded file it 
seems
-}

Copied: icedtea-web/repos/extra-i686/PKGBUILD (from rev 152258, 
icedtea-web/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-06 05:29:22 UTC (rev 152259)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=icedtea-web
+pkgname=('icedtea-web' 'icedtea-web-doc')
+pkgver=1.1.5
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://icedtea.classpath.org/wiki/IcedTea-Web;
+license=('GPL2')
+makedepends=('openjdk6' 'zip' 'gtk2' 'npapi-sdk' 'rhino' 'junit')
+source=(http://icedtea.classpath.org/download/source/$pkgname-$pkgver.tar.gz)
+sha256sums=('ab5c34a9dc6bff48baf1f1d1a34bf54bfb954ad93ee9e7e44d642fa991bcc919')
+
+  _javaver=6
+  _jvmdir=/usr/lib/jvm/java-${_javaver}-openjdk
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr/lib/jvm/java-6-openjdk \
+  --datarootdir=/usr/share
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$pkgver
+  make -k check
+}
+
+
+package_icedtea-web() {
+
+  pkgdesc=provides a Free Software web browser plugin running applets written 
in the Java programming language and an implementation of Java Web Start, 
originally based on the NetX project
+ 

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

2012-03-05 Thread Tobias Powalowski
Date: Tuesday, March 6, 2012 @ 01:39:49
  Author: tpowa
Revision: 152260

remove qemu binary reference from install file #27593

Modified:
  qemu/trunk/qemu.install

--+
 qemu.install |1 -
 1 file changed, 1 deletion(-)

Modified: qemu.install
===
--- qemu.install2012-03-06 05:29:22 UTC (rev 152259)
+++ qemu.install2012-03-06 06:39:49 UTC (rev 152260)
@@ -5,7 +5,6 @@
   echo  PLEASE READ FOR KVM USAGE!
   echo   Load the correct KVM module, you will need a KVM capable CPU!
   echo   Add yourself to the group 'kvm'.
-  echo   Use 'qemu -enable-kvm' to use KVM.
   echo 
   if [ $(vercmp $2 0.11) -lt 0 ]; then
 echo With the release of qemu and qemu-kvm 0.12.X, the kqemu kernel 
module