[arch-commits] Commit in kdebase-runtime/repos/kde-unstable-i686 (4 files)

2014-03-23 Thread Andrea Scarpino
Date: Sunday, March 23, 2014 @ 10:34:56
  Author: andrea
Revision: 208518

archrelease: copy kde-unstable to kde-unstable-i686

Added:
  kdebase-runtime/repos/kde-unstable-i686/PKGBUILD
(from rev 208517, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install
(from rev 208517, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-i686/libssh05.patch
(from rev 208517, kdebase-runtime/kde-unstable/libssh05.patch)
Deleted:
  kdebase-runtime/repos/kde-unstable-i686/libssh05.patch

-+
 PKGBUILD|   57 
 kdebase-runtime.install |   13 +
 libssh05.patch  |  538 +++---
 3 files changed, 339 insertions(+), 269 deletions(-)

Copied: kdebase-runtime/repos/kde-unstable-i686/PKGBUILD (from rev 208517, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 09:34:56 UTC (rev 208518)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.12.95
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
+'libssh05.patch')
+sha1sums=('6acf28234222836482a852ef8288cf8b396f019f'
+  'c360f682dc5b51e2f9f893b625807b4d62f646ab')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+  patch -p1 -R -i ${srcdir}/libssh05.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-i686/kdebase-runtime.install (from 
rev 208517, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- kdebase-runtime.install (rev 0)
+++ kdebase-runtime.install 2014-03-23 09:34:56 UTC (rev 208518)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: libssh05.patch
===
--- libssh05.patch  2014-03-23 02:44:34 UTC (rev 208517)
+++ libssh05.patch  2014-03-23 09:34:56 UTC (rev 208518)
@@ -1,269 +0,0 @@
-commit 40076246be995cc006a12f8afc2c18cfacbf0604
-Author: Andreas Schneider a...@cryptomilk.org
-Date:   Thu Jan 9 10:19:06 2014 +0100
-
-kio_sftp: Support ECDSA keys.
-
-This migrates to the API of libssh 0.6.0.
-
-BUG: 327024
-
-diff --git a/kioslave/CMakeLists.txt b/kioslave/CMakeLists.txt
-index 026ae9b..b150290 100644
 a/kioslave/CMakeLists.txt
-+++ b/kioslave/CMakeLists.txt
-@@ -11,7 +11,7 @@ set_package_properties(Samba PROPERTIES DESCRIPTION the SMB 
client library, a v
-   )
- endif(NOT WIN32)
- 
--macro_optional_find_package(LibSSH 0.4.0)
-+macro_optional_find_package(LibSSH 0.6.0)
- set_package_properties(LibSSH PROPERTIES DESCRIPTION the SSH library with 
SFTP support
-URL http://www.libssh.org/;
-TYPE OPTIONAL
-diff --git a/kioslave/sftp/kio_sftp.cpp b/kioslave/sftp/kio_sftp.cpp
-index 8c34faa..14bcaf6 100644
 a/kioslave/sftp/kio_sftp.cpp
-+++ b/kioslave/sftp/kio_sftp.cpp
-@@ -632,8 +632,10 @@ void sftpProtocol::openConnection() {
-   QString msg; // msg for dialog box
-   QString caption; // dialog box caption
-   unsigned char *hash = NULL; // the server hash
-+  ssh_key srv_pubkey;
-   

[arch-commits] Commit in kdebase-runtime/repos/kde-unstable-x86_64 (4 files)

2014-03-23 Thread Andrea Scarpino
Date: Sunday, March 23, 2014 @ 10:35:56
  Author: andrea
Revision: 208519

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD
(from rev 208518, kdebase-runtime/kde-unstable/PKGBUILD)
  kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install
(from rev 208518, kdebase-runtime/kde-unstable/kdebase-runtime.install)
  kdebase-runtime/repos/kde-unstable-x86_64/libssh05.patch
(from rev 208518, kdebase-runtime/kde-unstable/libssh05.patch)
Deleted:
  kdebase-runtime/repos/kde-unstable-x86_64/libssh05.patch

-+
 PKGBUILD|   57 
 kdebase-runtime.install |   13 +
 libssh05.patch  |  538 +++---
 3 files changed, 339 insertions(+), 269 deletions(-)

Copied: kdebase-runtime/repos/kde-unstable-x86_64/PKGBUILD (from rev 208518, 
kdebase-runtime/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 09:35:56 UTC (rev 208519)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-runtime
+pkgver=4.12.95
+pkgrel=1
+pkgdesc=Plugins and applications necessary for the running of KDE 
applications
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-runtime'
+license=('GPL' 'LGPL')
+depends=(kdelibs=${pkgver} 'kactivities' 'smbclient' 'libssh' 'libcanberra'
+ 'oxygen-icons' 'xorg-xauth' 'libwebp')
+makedepends=('pkg-config' 'cmake' 'automoc4' 'kdepimlibs' 'openslp' 'doxygen'
+ 'networkmanager' 'boost')
+optdepends=('kdepimlibs: needed by DrKonqi to send crash reports to KDE.org'
+'gdb: needed by DrKonqi to generate backtrace'
+'htdig: to build the search index in the KHelpCenter'
+'rarian: needed by KHelpCenter')
+install=${pkgname}.install
+source=(http://download.kde.org/unstable/${pkgver}/src/kde-runtime-${pkgver}.tar.xz;
+'libssh05.patch')
+sha1sums=('6acf28234222836482a852ef8288cf8b396f019f'
+  'c360f682dc5b51e2f9f893b625807b4d62f646ab')
+
+prepare() {
+  mkdir build
+
+  cd kde-runtime-${pkgver}
+  patch -p1 -R -i ${srcdir}/libssh05.patch
+}
+
+build() {
+  cd build
+  cmake ../kde-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_QNtrack=OFF \
+-DSAMBA_INCLUDE_DIR=/usr/include/samba-4.0 \
+-DWITH_NepomukCore=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+
+  rm ${pkgdir}/usr/share/icons/hicolor/index.theme
+
+  ln -sf /usr/lib/kde4/libexec/kdesu ${pkgdir}/usr/bin/
+
+  # FS#36668
+  chown :nobody ${pkgdir}/usr/lib/kde4/libexec/kdesud
+  chmod g+s ${pkgdir}/usr/lib/kde4/libexec/kdesud
+}

Copied: kdebase-runtime/repos/kde-unstable-x86_64/kdebase-runtime.install (from 
rev 208518, kdebase-runtime/kde-unstable/kdebase-runtime.install)
===
--- kdebase-runtime.install (rev 0)
+++ kdebase-runtime.install 2014-03-23 09:35:56 UTC (rev 208519)
@@ -0,0 +1,13 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+   update-mime-database usr/share/mime  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: libssh05.patch
===
--- libssh05.patch  2014-03-23 09:34:56 UTC (rev 208518)
+++ libssh05.patch  2014-03-23 09:35:56 UTC (rev 208519)
@@ -1,269 +0,0 @@
-commit 40076246be995cc006a12f8afc2c18cfacbf0604
-Author: Andreas Schneider a...@cryptomilk.org
-Date:   Thu Jan 9 10:19:06 2014 +0100
-
-kio_sftp: Support ECDSA keys.
-
-This migrates to the API of libssh 0.6.0.
-
-BUG: 327024
-
-diff --git a/kioslave/CMakeLists.txt b/kioslave/CMakeLists.txt
-index 026ae9b..b150290 100644
 a/kioslave/CMakeLists.txt
-+++ b/kioslave/CMakeLists.txt
-@@ -11,7 +11,7 @@ set_package_properties(Samba PROPERTIES DESCRIPTION the SMB 
client library, a v
-   )
- endif(NOT WIN32)
- 
--macro_optional_find_package(LibSSH 0.4.0)
-+macro_optional_find_package(LibSSH 0.6.0)
- set_package_properties(LibSSH PROPERTIES DESCRIPTION the SSH library with 
SFTP support
-URL http://www.libssh.org/;
-TYPE OPTIONAL
-diff --git a/kioslave/sftp/kio_sftp.cpp b/kioslave/sftp/kio_sftp.cpp
-index 8c34faa..14bcaf6 100644
 a/kioslave/sftp/kio_sftp.cpp
-+++ b/kioslave/sftp/kio_sftp.cpp
-@@ -632,8 +632,10 @@ void sftpProtocol::openConnection() {
-   QString msg; // msg for dialog box
-   QString caption; // dialog box caption
-   unsigned char *hash = NULL; // the server hash
-+  ssh_key 

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

2014-03-23 Thread Andrea Scarpino
Date: Sunday, March 23, 2014 @ 10:37:39
  Author: andrea
Revision: 208520

archrelease: copy kde-unstable to kde-unstable-i686

Added:
  kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD
(from rev 208519, kdebindings-korundum/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 09:35:56 UTC (rev 208519)
+++ PKGBUILD2014-03-23 09:37:39 UTC (rev 208520)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-korundum
-pkgver=4.12.90
-pkgrel=1
-pkgdesc=Ruby bindings for libraries created by the KDE community
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/korundum;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-qtruby' 'kdebindings-smokekde')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
-optdepends=('kdegraphics-okular: okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;)
-sha1sums=('b1b9a40c8b4bd25fca26f563f8c012cab56069dc')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../korundum-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]') \
--DWITH_Nepomuk=OFF
-
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-korundum/repos/kde-unstable-i686/PKGBUILD (from rev 208519, 
kdebindings-korundum/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 09:37:39 UTC (rev 208520)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-korundum
+pkgver=4.12.95
+pkgrel=1
+pkgdesc=Ruby bindings for libraries created by the KDE community
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/korundum;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-qtruby' 'kdebindings-smokekde')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
+optdepends=('kdegraphics-okular: okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;)
+sha1sums=('188ec1b97495c451e00c87cadf444bfb48f6e73c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../korundum-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]') \
+-DWITH_Nepomuk=OFF
+
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-03-23 Thread Andrea Scarpino
Date: Sunday, March 23, 2014 @ 10:37:58
  Author: andrea
Revision: 208521

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  kdebindings-korundum/repos/kde-unstable-x86_64/PKGBUILD
(from rev 208520, kdebindings-korundum/kde-unstable/PKGBUILD)
Deleted:
  kdebindings-korundum/repos/kde-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 09:37:39 UTC (rev 208520)
+++ PKGBUILD2014-03-23 09:37:58 UTC (rev 208521)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kdebindings-korundum
-pkgver=4.12.90
-pkgrel=1
-pkgdesc=Ruby bindings for libraries created by the KDE community
-url=https://projects.kde.org/projects/kde/kdebindings/ruby/korundum;
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-groups=('kdebindings')
-depends=('kdebindings-qtruby' 'kdebindings-smokekde')
-makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
- 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
-optdepends=('kdegraphics-okular: okular bindings'
-'kdepimlibs: akonadi bindings')
-conflicts=('kdebindings-ruby')
-source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;)
-sha1sums=('b1b9a40c8b4bd25fca26f563f8c012cab56069dc')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-  cmake ../korundum-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DKDE4_BUILD_TESTS=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
--DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]') \
--DWITH_Nepomuk=OFF
-
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kdebindings-korundum/repos/kde-unstable-x86_64/PKGBUILD (from rev 
208520, kdebindings-korundum/kde-unstable/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 09:37:58 UTC (rev 208521)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdebindings-korundum
+pkgver=4.12.95
+pkgrel=1
+pkgdesc=Ruby bindings for libraries created by the KDE community
+url=https://projects.kde.org/projects/kde/kdebindings/ruby/korundum;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kdebindings')
+depends=('kdebindings-qtruby' 'kdebindings-smokekde')
+makedepends=('cmake' 'automoc4' 'kdebindings-smokegen' 'boost'
+ 'kdepimlibs' 'kdegraphics-okular' 'kdesdk-kate')
+optdepends=('kdegraphics-okular: okular bindings'
+'kdepimlibs: akonadi bindings')
+conflicts=('kdebindings-ruby')
+source=(http://download.kde.org/unstable/${pkgver}/src/korundum-${pkgver}.tar.xz;)
+sha1sums=('188ec1b97495c451e00c87cadf444bfb48f6e73c')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake ../korundum-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCUSTOM_RUBY_SITE_LIB_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorlibdir]') \
+-DCUSTOM_RUBY_SITE_ARCH_DIR=$(ruby -e 'puts 
RbConfig::CONFIG[vendorarchdir]') \
+-DWITH_Nepomuk=OFF
+
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in intellij-idea-community-edition/trunk (PKGBUILD)

2014-03-23 Thread Lukas Jirkovsky
Date: Sunday, March 23, 2014 @ 11:09:29
  Author: stativ
Revision: 108113

upgpkg: intellij-idea-community-edition 13.1.1-1

update to 13.1.1

Modified:
  intellij-idea-community-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-22 20:07:23 UTC (rev 108112)
+++ PKGBUILD2014-03-23 10:09:29 UTC (rev 108113)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=intellij-idea-community-edition
-pkgver=13.1
-_pkgver=135.475
+pkgver=13.1.1
+_pkgver=135.480
 pkgrel=1
 pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
 arch=('any')
@@ -12,7 +12,7 @@
 install=idea.install
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
 idea.desktop idea.sh)
-md5sums=('b1ffe55b57afc2447b30e4bf82c3d277'
+md5sums=('a20ade9bc4addbc341af8dcc1a0830ce'
  '29e2d4ab0578a6d44533292bec8843ee'
  'f27bad35ee8e6445ca2f8a591bca895a')
 



[arch-commits] Commit in intellij-idea-community-edition/repos/community-any (8 files)

2014-03-23 Thread Lukas Jirkovsky
Date: Sunday, March 23, 2014 @ 11:09:40
  Author: stativ
Revision: 108114

archrelease: copy trunk to community-any

Added:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
(from rev 108113, intellij-idea-community-edition/trunk/PKGBUILD)
  intellij-idea-community-edition/repos/community-any/idea.desktop
(from rev 108113, intellij-idea-community-edition/trunk/idea.desktop)
  intellij-idea-community-edition/repos/community-any/idea.install
(from rev 108113, intellij-idea-community-edition/trunk/idea.install)
  intellij-idea-community-edition/repos/community-any/idea.sh
(from rev 108113, intellij-idea-community-edition/trunk/idea.sh)
Deleted:
  intellij-idea-community-edition/repos/community-any/PKGBUILD
  intellij-idea-community-edition/repos/community-any/idea.desktop
  intellij-idea-community-edition/repos/community-any/idea.install
  intellij-idea-community-edition/repos/community-any/idea.sh

--+
 PKGBUILD |   78 -
 idea.desktop |   16 +--
 idea.install |   18 ++---
 idea.sh  |8 ++---
 4 files changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 10:09:29 UTC (rev 108113)
+++ PKGBUILD2014-03-23 10:09:40 UTC (rev 108114)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-community-edition
-pkgver=13.1
-_pkgver=135.475
-pkgrel=1
-pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
-arch=('any')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('java-environment' intellij-idea-libs=$pkgver 'giflib')
-install=idea.install
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
-idea.desktop idea.sh)
-md5sums=('b1ffe55b57afc2447b30e4bf82c3d277'
- '29e2d4ab0578a6d44533292bec8843ee'
- 'f27bad35ee8e6445ca2f8a591bca895a')
-
-package() {
-  install -d -m755 $pkgdir/usr/share
-  cp -a idea-IC-$_pkgver $pkgdir/usr/share/intellijidea-ce
-
-  # remove files owned by intellij-idea-libs
-  rm $pkgdir/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
-  rm -rf $pkgdir/usr/share/intellijidea-ce/lib/libpty
-
-  # make sure that all files are owned by root
-  chown -R root:root $pkgdir/usr/share
-
-  # never wait on user input when starting idea
-  sed -i '/.*read IGNORE.*/ d' $pkgdir/usr/share/intellijidea-ce/bin/idea.sh
-
-  install -D -m755 $srcdir/idea.sh $pkgdir/usr/bin/idea.sh
-  install -D -m644 $srcdir/idea.desktop 
$pkgdir/usr/share/applications/idea.desktop
-  install -D -m644 $pkgdir/usr/share/intellijidea-ce/bin/idea.png \
-   $pkgdir/usr/share/pixmaps/idea.png
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-community-edition/repos/community-any/PKGBUILD (from rev 
108113, intellij-idea-community-edition/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 10:09:40 UTC (rev 108114)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-community-edition
+pkgver=13.1.1
+_pkgver=135.480
+pkgrel=1
+pkgdesc=IDE for Java, Groovy and other programming languages with advanced 
refactoring features
+arch=('any')
+url=http://www.jetbrains.org/;
+license=('Apache')
+depends=('java-environment' intellij-idea-libs=$pkgver 'giflib')
+install=idea.install
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz \
+idea.desktop idea.sh)
+md5sums=('a20ade9bc4addbc341af8dcc1a0830ce'
+ '29e2d4ab0578a6d44533292bec8843ee'
+ 'f27bad35ee8e6445ca2f8a591bca895a')
+
+package() {
+  install -d -m755 $pkgdir/usr/share
+  cp -a idea-IC-$_pkgver $pkgdir/usr/share/intellijidea-ce
+
+  # remove files owned by intellij-idea-libs
+  rm $pkgdir/usr/share/intellijidea-ce/bin/{fsnotifier,libbreakgen}*
+  rm -rf $pkgdir/usr/share/intellijidea-ce/lib/libpty
+
+  # make sure that all files are owned by root
+  chown -R root:root $pkgdir/usr/share
+
+  # never wait on user input when starting idea
+  sed -i '/.*read IGNORE.*/ d' $pkgdir/usr/share/intellijidea-ce/bin/idea.sh
+
+  install -D -m755 $srcdir/idea.sh $pkgdir/usr/bin/idea.sh
+  install -D -m644 $srcdir/idea.desktop 
$pkgdir/usr/share/applications/idea.desktop
+  install -D -m644 $pkgdir/usr/share/intellijidea-ce/bin/idea.png \
+   $pkgdir/usr/share/pixmaps/idea.png
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: idea.desktop
===
--- idea.desktop2014-03-23 10:09:29 UTC (rev 108113)
+++ idea.desktop2014-03-23 10:09:40 UTC (rev 108114)
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=IntelliJ IDEA Community Edition
-Comment=A Java IDE
-Exec=idea.sh %u
-Icon=idea
-Terminal=false
-Type=Application
-Categories=Development;IDE;Java;


[arch-commits] Commit in intellij-idea-libs/repos (4 files)

2014-03-23 Thread Lukas Jirkovsky
Date: Sunday, March 23, 2014 @ 11:11:55
  Author: stativ
Revision: 108116

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

Added:
  intellij-idea-libs/repos/community-i686/PKGBUILD
(from rev 108115, intellij-idea-libs/trunk/PKGBUILD)
  intellij-idea-libs/repos/community-x86_64/PKGBUILD
(from rev 108115, intellij-idea-libs/trunk/PKGBUILD)
Deleted:
  intellij-idea-libs/repos/community-i686/PKGBUILD
  intellij-idea-libs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 10:11:42 UTC (rev 108115)
+++ community-i686/PKGBUILD 2014-03-23 10:11:55 UTC (rev 108116)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-libs
-pkgver=13.1
-_pkgver=135.475
-pkgrel=1
-pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
-arch=('i686' 'x86_64')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('b1ffe55b57afc2447b30e4bf82c3d277')
-
-package() {
-  [ $CARCH == x86_64 ]  SUFFIX=64
-  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-i686/PKGBUILD (from rev 108115, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 10:11:55 UTC (rev 108116)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-libs
+pkgver=13.1.1
+_pkgver=135.480
+pkgrel=1
+pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
+arch=('i686' 'x86_64')
+url=http://www.jetbrains.org/;
+license=('Apache')
+depends=('glibc')
+options=(!strip)
+source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
+md5sums=('a20ade9bc4addbc341af8dcc1a0830ce')
+
+package() {
+  [ $CARCH == x86_64 ]  SUFFIX=64
+  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
+  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
+  
+  # libpty
+  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
+  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-23 10:11:42 UTC (rev 108115)
+++ community-x86_64/PKGBUILD   2014-03-23 10:11:55 UTC (rev 108116)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
-pkgname=intellij-idea-libs
-pkgver=13.1
-_pkgver=135.475
-pkgrel=1
-pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
-arch=('i686' 'x86_64')
-url=http://www.jetbrains.org/;
-license=('Apache')
-depends=('glibc')
-options=(!strip)
-source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('b1ffe55b57afc2447b30e4bf82c3d277')
-
-package() {
-  [ $CARCH == x86_64 ]  SUFFIX=64
-  install -D -m755 idea-IC-$_pkgver/bin/fsnotifier${SUFFIX} 
$pkgdir/usr/share/intellijidea-ce/bin/fsnotifier${SUFFIX}
-  install -D -m644 idea-IC-$_pkgver/bin/libbreakgen${SUFFIX}.so 
$pkgdir/usr/lib/libbreakgen${SUFFIX}.so
-  
-  # libpty
-  [ $CARCH == x86_64 ]  _ARCH=x86_64 || _ARCH=x86
-  install -D -m644 idea-IC-$_pkgver/lib/libpty/linux/$_ARCH/libpty.so 
$pkgdir/usr/share/intellijidea-ce/lib/libpty/linux/$_ARCH/libpty.so
-}
-
-# vim:set ts=2 sw=2 et:

Copied: intellij-idea-libs/repos/community-x86_64/PKGBUILD (from rev 108115, 
intellij-idea-libs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-23 10:11:55 UTC (rev 108116)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=intellij-idea-libs
+pkgver=13.1.1
+_pkgver=135.480
+pkgrel=1
+pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
+arch=('i686' 'x86_64')

[arch-commits] Commit in intellij-idea-libs/trunk (PKGBUILD)

2014-03-23 Thread Lukas Jirkovsky
Date: Sunday, March 23, 2014 @ 11:11:42
  Author: stativ
Revision: 108115

upgpkg: intellij-idea-libs 13.1.1-1

update to 13.1.1

Modified:
  intellij-idea-libs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 10:09:40 UTC (rev 108114)
+++ PKGBUILD2014-03-23 10:11:42 UTC (rev 108115)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=intellij-idea-libs
-pkgver=13.1
-_pkgver=135.475
+pkgver=13.1.1
+_pkgver=135.480
 pkgrel=1
 pkgdesc=Architecture dependent libraries needed by the Intellij Idea IDE
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 options=(!strip)
 source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz)
-md5sums=('b1ffe55b57afc2447b30e4bf82c3d277')
+md5sums=('a20ade9bc4addbc341af8dcc1a0830ce')
 
 package() {
   [ $CARCH == x86_64 ]  SUFFIX=64



[arch-commits] Commit in perl-io-bufferedselect/trunk (PKGBUILD)

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 11:57:41
  Author: bluewind
Revision: 108117

upgpkg: perl-io-bufferedselect 1.0-4

fix FS#39589 - build fails

Modified:
  perl-io-bufferedselect/trunk/PKGBUILD

--+
 PKGBUILD |   70 -
 1 file changed, 33 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 10:11:55 UTC (rev 108116)
+++ PKGBUILD2014-03-23 10:57:41 UTC (rev 108117)
@@ -1,46 +1,42 @@
 # Maintainer: Florian Pritz bluew...@xinu.at
-# Generator  : CPANPLUS::Dist::Arch 1.19
 
-pkgname='perl-io-bufferedselect'
-pkgver=1.0.0
-pkgrel=3
-pkgdesc=Line-buffered select interface
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='http://search.cpan.org/dist/IO-BufferedSelect'
-source=('http://search.cpan.org/CPAN/authors/id/A/AF/AFN/IO-BufferedSelect-1.0.tar.gz')
-md5sums=('1c6013480c2acf855312c9a184816857')
-sha512sums=('30bc0ebb5f62c6261938780eaf9eaa9aba2ec9ee3453c35b87614797e74399fbce9cc3aea5742078069e8131ba31ffb5ff5cafed1147b66c8f98b92b40652fc3')
-_distdir=${srcdir}/IO-BufferedSelect
+pkgname=perl-io-bufferedselect
+pkgver=1.0
+pkgrel=4
+pkgdesc='Line-buffered select interface'
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl)
+url=https://metacpan.org/release/IO-BufferedSelect
+source=(http://search.cpan.org/CPAN/authors/id/A/AF/AFN/IO-BufferedSelect-$pkgver.tar.gz;)
+md5sums=(1c6013480c2acf855312c9a184816857)
+sha512sums=(30bc0ebb5f62c6261938780eaf9eaa9aba2ec9ee3453c35b87614797e74399fbce9cc3aea5742078069e8131ba31ffb5ff5cafed1147b66c8f98b92b40652fc3)
+_ddir=IO-BufferedSelect
 
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor \
-  PERL_MB_OPT=--installdirs vendor \
-  MODULEBUILDRC=/dev/null
+build()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
 
-cd $_distdir
-/usr/bin/perl Makefile.PL
-make
-  )
-}
+check()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
 
-check() {
-  cd $_distdir
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-make test
-  )
-}
-
-package() {
-  cd $_distdir
-  make DESTDIR=$pkgdir install
+package()
+(
+  cd $srcdir/$_ddir
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
   find $pkgdir -name .packlist -o -name perllocal.pod -delete
-}
+)
 
 # Local Variables:
 # mode: shell-script



[arch-commits] Commit in perl-io-bufferedselect/repos/community-any (2 files)

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 11:57:45
  Author: bluewind
Revision: 108118

archrelease: copy trunk to community-any

Added:
  perl-io-bufferedselect/repos/community-any/PKGBUILD
(from rev 108117, perl-io-bufferedselect/trunk/PKGBUILD)
Deleted:
  perl-io-bufferedselect/repos/community-any/PKGBUILD

--+
 PKGBUILD |   94 +
 1 file changed, 45 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 10:57:41 UTC (rev 108117)
+++ PKGBUILD2014-03-23 10:57:45 UTC (rev 108118)
@@ -1,49 +0,0 @@
-# Maintainer: Florian Pritz bluew...@xinu.at
-# Generator  : CPANPLUS::Dist::Arch 1.19
-
-pkgname='perl-io-bufferedselect'
-pkgver=1.0.0
-pkgrel=3
-pkgdesc=Line-buffered select interface
-arch=('any')
-license=('PerlArtistic' 'GPL')
-options=('!emptydirs')
-depends=('perl')
-makedepends=()
-url='http://search.cpan.org/dist/IO-BufferedSelect'
-source=('http://search.cpan.org/CPAN/authors/id/A/AF/AFN/IO-BufferedSelect-1.0.tar.gz')
-md5sums=('1c6013480c2acf855312c9a184816857')
-sha512sums=('30bc0ebb5f62c6261938780eaf9eaa9aba2ec9ee3453c35b87614797e74399fbce9cc3aea5742078069e8131ba31ffb5ff5cafed1147b66c8f98b92b40652fc3')
-_distdir=${srcdir}/IO-BufferedSelect
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB= \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT=INSTALLDIRS=vendor \
-  PERL_MB_OPT=--installdirs vendor \
-  MODULEBUILDRC=/dev/null
-
-cd $_distdir
-/usr/bin/perl Makefile.PL
-make
-  )
-}
-
-check() {
-  cd $_distdir
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=
-make test
-  )
-}
-
-package() {
-  cd $_distdir
-  make DESTDIR=$pkgdir install
-  find $pkgdir -name .packlist -o -name perllocal.pod -delete
-}
-
-# Local Variables:
-# mode: shell-script
-# sh-basic-offset: 2
-# End:
-# vim:set ts=2 sw=2 et:

Copied: perl-io-bufferedselect/repos/community-any/PKGBUILD (from rev 108117, 
perl-io-bufferedselect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 10:57:45 UTC (rev 108118)
@@ -0,0 +1,45 @@
+# Maintainer: Florian Pritz bluew...@xinu.at
+
+pkgname=perl-io-bufferedselect
+pkgver=1.0
+pkgrel=4
+pkgdesc='Line-buffered select interface'
+arch=(any)
+license=(PerlArtistic GPL)
+options=(!emptydirs)
+depends=(perl)
+url=https://metacpan.org/release/IO-BufferedSelect
+source=(http://search.cpan.org/CPAN/authors/id/A/AF/AFN/IO-BufferedSelect-$pkgver.tar.gz;)
+md5sums=(1c6013480c2acf855312c9a184816857)
+sha512sums=(30bc0ebb5f62c6261938780eaf9eaa9aba2ec9ee3453c35b87614797e74399fbce9cc3aea5742078069e8131ba31ffb5ff5cafed1147b66c8f98b92b40652fc3)
+_ddir=IO-BufferedSelect
+
+build()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+  unset PERL5LIB PERL_MM_OPT
+  /usr/bin/perl Makefile.PL
+  make
+)
+
+check()
+(
+  cd $srcdir/$_ddir
+  export PERL_MM_USE_DEFAULT=1
+  unset PERL5LIB
+  make test
+)
+
+package()
+(
+  cd $srcdir/$_ddir
+  make install INSTALLDIRS=vendor DESTDIR=$pkgdir
+  find $pkgdir -name .packlist -o -name perllocal.pod -delete
+)
+
+# Local Variables:
+# mode: shell-script
+# sh-basic-offset: 2
+# End:
+# vim:set ts=2 sw=2 et:



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

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 12:08:36
  Author: bluewind
Revision: 108120

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

Added:
  tipp10/repos/community-i686/PKGBUILD
(from rev 108119, tipp10/trunk/PKGBUILD)
  tipp10/repos/community-i686/defines.h.patch
(from rev 108119, tipp10/trunk/defines.h.patch)
  tipp10/repos/community-i686/gcc-4.5.patch
(from rev 108119, tipp10/trunk/gcc-4.5.patch)
  tipp10/repos/community-x86_64/PKGBUILD
(from rev 108119, tipp10/trunk/PKGBUILD)
  tipp10/repos/community-x86_64/defines.h.patch
(from rev 108119, tipp10/trunk/defines.h.patch)
  tipp10/repos/community-x86_64/gcc-4.5.patch
(from rev 108119, tipp10/trunk/gcc-4.5.patch)
Deleted:
  tipp10/repos/community-i686/PKGBUILD
  tipp10/repos/community-i686/defines.h.patch
  tipp10/repos/community-i686/gcc-4.5.patch
  tipp10/repos/community-x86_64/PKGBUILD
  tipp10/repos/community-x86_64/defines.h.patch
  tipp10/repos/community-x86_64/gcc-4.5.patch

--+
 /PKGBUILD|   78 ++
 /defines.h.patch |   28 +
 /gcc-4.5.patch   |  198 +
 community-i686/PKGBUILD  |   40 ---
 community-i686/defines.h.patch   |   14 --
 community-i686/gcc-4.5.patch |   99 --
 community-x86_64/PKGBUILD|   40 ---
 community-x86_64/defines.h.patch |   14 --
 community-x86_64/gcc-4.5.patch   |   99 --
 9 files changed, 304 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 11:08:31 UTC (rev 108119)
+++ community-i686/PKGBUILD 2014-03-23 11:08:36 UTC (rev 108120)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: toliman alter...@hs-albsig.de
-
-pkgname=tipp10
-pkgver=2.1.0
-pkgrel=5
-pkgdesc=intelligent typing tutor
-arch=('i686' 'x86_64')
-url=http://www.tipp10.com/;
-license=('GPL2')
-depends=('qt4')
-source=(defines.h.patch gcc-4.5.patch \
-  http://www.tipp10.com/de/download/tipp10_source_v${pkgver//./-}.zip;)
-md5sums=('73a987123ca842026b7bde5e89370b86'
- 'a9d388ddb17ae93f13acb915bc8eba57'
- '38c1e1fc9c5ba183279efdd22b318b7a')
-
-_srcdir=$srcdir/tipp10_source_v${pkgver//./-}
-
-build() {
-  cd $_srcdir
-
-  sed -i 's#tipp10v2.template#../share/tipp10/tipp10v2.template#' def/defines.h
-  patch -p0  $srcdir/defines.h.patch
-  patch -p0  $srcdir/gcc-4.5.patch
-  qmake
-  make
-}
-
-package() {
-  cd $_srcdir
-
-   make DESTDIR=$pkgdir install
-
-  install -Dm755 tipp10 $pkgdir/usr/bin/tipp10
-  install -Dm644 release/tipp10v2.template 
$pkgdir/usr/share/tipp10/tipp10v2.template
-  install -Dm644 tipp10.png $pkgdir/usr/share/pixmaps/tipp10.png
-  install -Dm644 tipp10.desktop $pkgdir/usr/share/applications/tipp10.desktop
-}

Copied: tipp10/repos/community-i686/PKGBUILD (from rev 108119, 
tipp10/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 11:08:36 UTC (rev 108120)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: toliman alter...@hs-albsig.de
+
+pkgname=tipp10
+pkgver=2.1.0
+pkgrel=6
+pkgdesc=intelligent typing tutor
+arch=('i686' 'x86_64')
+url=http://www.tipp10.com/;
+license=('GPL2')
+depends=('qt4')
+source=(defines.h.patch
+gcc-4.5.patch \
+
http://www.tipp10.com/de/download/tipp10_source_v${pkgver//./-}.zip;)
+md5sums=('73a987123ca842026b7bde5e89370b86'
+ 'a9d388ddb17ae93f13acb915bc8eba57'
+ '38c1e1fc9c5ba183279efdd22b318b7a')
+
+build() {
+  cd $srcdir/tipp10_source_v${pkgver//./-}
+
+  sed -i 's#tipp10v2.template#../share/tipp10/tipp10v2.template#' def/defines.h
+  patch -p0  $srcdir/defines.h.patch
+  patch -p0  $srcdir/gcc-4.5.patch
+  qmake-qt4
+  make
+}
+
+package() {
+  cd $srcdir/tipp10_source_v${pkgver//./-}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm755 tipp10 $pkgdir/usr/bin/tipp10
+  install -Dm644 release/tipp10v2.template 
$pkgdir/usr/share/tipp10/tipp10v2.template
+  install -Dm644 tipp10.png $pkgdir/usr/share/pixmaps/tipp10.png
+  install -Dm644 tipp10.desktop $pkgdir/usr/share/applications/tipp10.desktop
+}

Deleted: community-i686/defines.h.patch
===
--- community-i686/defines.h.patch  2014-03-23 11:08:31 UTC (rev 108119)
+++ community-i686/defines.h.patch  2014-03-23 11:08:36 UTC (rev 108120)
@@ -1,14 +0,0 @@
 def/defines.h.orig 2011-03-12 22:44:51.0 +0100
-+++ def/defines.h  2011-03-12 22:45:02.0 +0100
-@@ -27,9 +27,9 @@
- #define DEFINES_H
- 
- // OS constants
--#define APP_WIN   true
-+#define APP_WIN   false
- #define 

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

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 12:08:31
  Author: bluewind
Revision: 108119

upgpkg: tipp10 2.1.0-6

fix FS#39590 - build fails

Modified:
  tipp10/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 10:57:45 UTC (rev 108118)
+++ PKGBUILD2014-03-23 11:08:31 UTC (rev 108119)
@@ -4,34 +4,33 @@
 
 pkgname=tipp10
 pkgver=2.1.0
-pkgrel=5
+pkgrel=6
 pkgdesc=intelligent typing tutor
 arch=('i686' 'x86_64')
 url=http://www.tipp10.com/;
 license=('GPL2')
 depends=('qt4')
-source=(defines.h.patch gcc-4.5.patch \
-  http://www.tipp10.com/de/download/tipp10_source_v${pkgver//./-}.zip;)
+source=(defines.h.patch
+gcc-4.5.patch \
+
http://www.tipp10.com/de/download/tipp10_source_v${pkgver//./-}.zip;)
 md5sums=('73a987123ca842026b7bde5e89370b86'
  'a9d388ddb17ae93f13acb915bc8eba57'
  '38c1e1fc9c5ba183279efdd22b318b7a')
 
-_srcdir=$srcdir/tipp10_source_v${pkgver//./-}
-
 build() {
-  cd $_srcdir
+  cd $srcdir/tipp10_source_v${pkgver//./-}
 
   sed -i 's#tipp10v2.template#../share/tipp10/tipp10v2.template#' def/defines.h
   patch -p0  $srcdir/defines.h.patch
   patch -p0  $srcdir/gcc-4.5.patch
-  qmake
+  qmake-qt4
   make
 }
 
 package() {
-  cd $_srcdir
+  cd $srcdir/tipp10_source_v${pkgver//./-}
 
-   make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir install
 
   install -Dm755 tipp10 $pkgdir/usr/bin/tipp10
   install -Dm644 release/tipp10v2.template 
$pkgdir/usr/share/tipp10/tipp10v2.template



[arch-commits] Commit in haskell-regex-base/trunk (PKGBUILD)

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 12:52:38
  Author: arodseth
Revision: 108121

upgpkg: haskell-regex-base 0.93.2-16

Modified:
  haskell-regex-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 11:08:36 UTC (rev 108120)
+++ PKGBUILD2014-03-23 11:52:38 UTC (rev 108121)
@@ -6,7 +6,7 @@
 _hkgname=regex-base
 pkgname=haskell-regex-base
 pkgver=0.93.2
-pkgrel=15
+pkgrel=16
 pkgdesc='Interface API for regex-posix,pcre,parsec,tdfa,dfa'
 url='http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base'
 license=('custom:BSD3')



[arch-commits] Commit in haskell-regex-base/repos (8 files)

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 12:53:03
  Author: arodseth
Revision: 108122

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

Added:
  haskell-regex-base/repos/community-i686/PKGBUILD
(from rev 108121, haskell-regex-base/trunk/PKGBUILD)
  haskell-regex-base/repos/community-i686/haskell-regex-base.install
(from rev 108121, haskell-regex-base/trunk/haskell-regex-base.install)
  haskell-regex-base/repos/community-x86_64/PKGBUILD
(from rev 108121, haskell-regex-base/trunk/PKGBUILD)
  haskell-regex-base/repos/community-x86_64/haskell-regex-base.install
(from rev 108121, haskell-regex-base/trunk/haskell-regex-base.install)
Deleted:
  haskell-regex-base/repos/community-i686/PKGBUILD
  haskell-regex-base/repos/community-i686/haskell-regex-base.install
  haskell-regex-base/repos/community-x86_64/PKGBUILD
  haskell-regex-base/repos/community-x86_64/haskell-regex-base.install

-+
 /PKGBUILD   |   88 ++
 /haskell-regex-base.install |   36 ++
 community-i686/PKGBUILD |   44 -
 community-i686/haskell-regex-base.install   |   18 -
 community-x86_64/PKGBUILD   |   44 -
 community-x86_64/haskell-regex-base.install |   18 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 11:52:38 UTC (rev 108121)
+++ community-i686/PKGBUILD 2014-03-23 11:53:03 UTC (rev 108122)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta v...@archlinux.org
-# Contributor: Arch Haskell Team arch-hask...@haskell.org
-# Contributor: Alexander Rødseth rods...@gmail.com
-
-_hkgname=regex-base
-pkgname=haskell-regex-base
-pkgver=0.93.2
-pkgrel=15
-pkgdesc='Interface API for regex-posix,pcre,parsec,tdfa,dfa'
-url='http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base'
-license=('custom:BSD3')
-arch=('x86_64' 'i686')
-depends=('ghc' 'haskell-mtl')
-source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-install=$pkgname.install
-options=('staticlibs')
-sha256sums=('20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278')
-
-build() {
-  cd $_hkgname-$pkgver
-
-  runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
---docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
-  runhaskell Setup build
-  runhaskell Setup haddock
-  runhaskell Setup register   --gen-script
-  runhaskell Setup unregister --gen-script
-  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
-}
-
-package() {
-  cd $_hkgname-$pkgver
-
-  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
-  install-m744 unregister.sh 
${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
-  install -d -m755 ${pkgdir}/usr/share/doc/ghc/html/libraries
-  ln -s /usr/share/doc/${pkgname}/html 
${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}
-  runhaskell Setup copy --destdir=${pkgdir}
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-  rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: haskell-regex-base/repos/community-i686/PKGBUILD (from rev 108121, 
haskell-regex-base/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 11:53:03 UTC (rev 108122)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Vesa Kaihlavirta v...@archlinux.org
+# Contributor: Arch Haskell Team arch-hask...@haskell.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+_hkgname=regex-base
+pkgname=haskell-regex-base
+pkgver=0.93.2
+pkgrel=16
+pkgdesc='Interface API for regex-posix,pcre,parsec,tdfa,dfa'
+url='http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base'
+license=('custom:BSD3')
+arch=('x86_64' 'i686')
+depends=('ghc' 'haskell-mtl')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+install=$pkgname.install
+options=('staticlibs')
+sha256sums=('20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O -p --enable-split-objs --enable-shared 
--prefix=/usr \
+--docdir=/usr/share/doc/${pkgname} 
--libsubdir=\$compiler/site-local/\$pkgid
+  runhaskell Setup build
+  runhaskell Setup haddock
+  runhaskell Setup register   --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e s|ghc-pkg.*unregister[^ ]* |'--force' | unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh   
${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+  install-m744 unregister.sh 

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

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 13:21:16
  Author: bluewind
Revision: 108123

upgpkg: swaks 20130209.0-2

fix FS#39553 - build fails

Modified:
  swaks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 11:53:03 UTC (rev 108122)
+++ PKGBUILD2014-03-23 12:21:16 UTC (rev 108123)
@@ -4,7 +4,7 @@
 
 pkgname=swaks
 pkgver=20130209.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Swiss Army Knife SMTP; Command line SMTP testing, including TLS and 
AUTH'
 arch=('any')
 url=http://jetmore.org/john/code/${pkgname}/;
@@ -13,6 +13,13 @@
 
source=(http://jetmore.org/john/code/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('281af4f487ada31cda1408a19e8da5b4')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # fix perl 5.18 breakage
+  sed -i 's#^=item \([0-9]\+\)$#=item C\1#' doc/ref.pod
+}
+
 package() {
   cd ${pkgname}-${pkgver}
   install -m755 -D ${pkgname} $pkgdir/usr/bin/${pkgname}



[arch-commits] Commit in swaks/repos/community-any (PKGBUILD PKGBUILD)

2014-03-23 Thread Florian Pritz
Date: Sunday, March 23, 2014 @ 13:21:19
  Author: bluewind
Revision: 108124

archrelease: copy trunk to community-any

Added:
  swaks/repos/community-any/PKGBUILD
(from rev 108123, swaks/trunk/PKGBUILD)
Deleted:
  swaks/repos/community-any/PKGBUILD

--+
 PKGBUILD |   53 ++---
 1 file changed, 30 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 12:21:16 UTC (rev 108123)
+++ PKGBUILD2014-03-23 12:21:19 UTC (rev 108124)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@xinu.at
-# Contributor: Testuser_01 m...@nico-siebler.de
-
-pkgname=swaks
-pkgver=20130209.0
-pkgrel=1
-pkgdesc='Swiss Army Knife SMTP; Command line SMTP testing, including TLS and 
AUTH'
-arch=('any')
-url=http://jetmore.org/john/code/${pkgname}/;
-license=('GPL')
-depends=('perl-net-dns')
-source=(http://jetmore.org/john/code/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('281af4f487ada31cda1408a19e8da5b4')
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -m755 -D ${pkgname} $pkgdir/usr/bin/${pkgname}
-  cd doc
-  pod2man ref.pod ${pkgname}.1
-  install -m644 -D ${pkgname}.1 $pkgdir/usr/share/man/man1/${pkgname}.1
-}
-

Copied: swaks/repos/community-any/PKGBUILD (from rev 108123, 
swaks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 12:21:19 UTC (rev 108124)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Florian Pritz f...@xinu.at
+# Contributor: Testuser_01 m...@nico-siebler.de
+
+pkgname=swaks
+pkgver=20130209.0
+pkgrel=2
+pkgdesc='Swiss Army Knife SMTP; Command line SMTP testing, including TLS and 
AUTH'
+arch=('any')
+url=http://jetmore.org/john/code/${pkgname}/;
+license=('GPL')
+depends=('perl-net-dns')
+source=(http://jetmore.org/john/code/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('281af4f487ada31cda1408a19e8da5b4')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # fix perl 5.18 breakage
+  sed -i 's#^=item \([0-9]\+\)$#=item C\1#' doc/ref.pod
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -m755 -D ${pkgname} $pkgdir/usr/bin/${pkgname}
+  cd doc
+  pod2man ref.pod ${pkgname}.1
+  install -m644 -D ${pkgname}.1 $pkgdir/usr/share/man/man1/${pkgname}.1
+}
+



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

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 14:40:11
  Author: arodseth
Revision: 108126

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

Added:
  gendesk/repos/community-i686/PKGBUILD
(from rev 108125, gendesk/trunk/PKGBUILD)
  gendesk/repos/community-x86_64/PKGBUILD
(from rev 108125, gendesk/trunk/PKGBUILD)
Deleted:
  gendesk/repos/community-i686/PKGBUILD
  gendesk/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 13:39:48 UTC (rev 108125)
+++ community-i686/PKGBUILD 2014-03-23 13:40:11 UTC (rev 108126)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=gendesk
-pkgver=0.6
-pkgrel=1
-pkgdesc='Utility to generate .desktop files and download icons'
-arch=('x86_64' 'i686')
-url='http://roboticoverlords.org/gendesk/'
-license=('MIT')
-makedepends=('go')
-depends=('glibc')
-source=(http://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz;
-'http://roboticoverlords.org/images/default.png')
-sha256sums=('ccfe024a2258beb81a82217598b432cb98006af5d7b6cc8e6012d263d82f1b5d'
-'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
-
-build() {
-  cd $pkgname-$pkgver
-
-  go build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -Dm755 $pkgname-$pkgver $pkgdir/usr/bin/$pkgname
-  install -Dm644 $srcdir/default.png $pkgdir/usr/share/pixmaps/default.png
-  install -Dm644 $pkgname.1.gz $pkgdir/usr/share/man/man1/$pkgname.1.gz
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gendesk/repos/community-i686/PKGBUILD (from rev 108125, 
gendesk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 13:40:11 UTC (rev 108126)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=gendesk
+pkgver=0.6.1
+pkgrel=1
+pkgdesc='Utility to generate .desktop files and download icons'
+arch=('x86_64' 'i686')
+url='http://roboticoverlords.org/gendesk/'
+license=('MIT')
+makedepends=('go')
+depends=('glibc')
+source=(http://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz;
+'http://roboticoverlords.org/images/default.png')
+sha256sums=('d4d2bfb23ae1c401f3147ed20206e72015b338067ff40b86271106865774de55'
+'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
+
+build() {
+  cd $pkgname-$pkgver
+
+  go build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -Dm755 $pkgname-$pkgver $pkgdir/usr/bin/$pkgname
+  install -Dm644 $srcdir/default.png $pkgdir/usr/share/pixmaps/default.png
+  install -Dm644 $pkgname.1.gz $pkgdir/usr/share/man/man1/$pkgname.1.gz
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-23 13:39:48 UTC (rev 108125)
+++ community-x86_64/PKGBUILD   2014-03-23 13:40:11 UTC (rev 108126)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-
-pkgname=gendesk
-pkgver=0.6
-pkgrel=1
-pkgdesc='Utility to generate .desktop files and download icons'
-arch=('x86_64' 'i686')
-url='http://roboticoverlords.org/gendesk/'
-license=('MIT')
-makedepends=('go')
-depends=('glibc')
-source=(http://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz;
-'http://roboticoverlords.org/images/default.png')
-sha256sums=('ccfe024a2258beb81a82217598b432cb98006af5d7b6cc8e6012d263d82f1b5d'
-'4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
-
-build() {
-  cd $pkgname-$pkgver
-
-  go build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  install -Dm755 $pkgname-$pkgver $pkgdir/usr/bin/$pkgname
-  install -Dm644 $srcdir/default.png $pkgdir/usr/share/pixmaps/default.png
-  install -Dm644 $pkgname.1.gz $pkgdir/usr/share/man/man1/$pkgname.1.gz
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gendesk/repos/community-x86_64/PKGBUILD (from rev 108125, 
gendesk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-23 13:40:11 UTC (rev 108126)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+
+pkgname=gendesk
+pkgver=0.6.1
+pkgrel=1
+pkgdesc='Utility to generate .desktop files and download icons'
+arch=('x86_64' 'i686')

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

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 14:39:48
  Author: arodseth
Revision: 108125

upgpkg: gendesk 0.6.1-1

Modified:
  gendesk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 12:21:19 UTC (rev 108124)
+++ PKGBUILD2014-03-23 13:39:48 UTC (rev 108125)
@@ -2,7 +2,7 @@
 # Maintainer: Alexander Rødseth rods...@gmail.com
 
 pkgname=gendesk
-pkgver=0.6
+pkgver=0.6.1
 pkgrel=1
 pkgdesc='Utility to generate .desktop files and download icons'
 arch=('x86_64' 'i686')
@@ -12,7 +12,7 @@
 depends=('glibc')
 source=(http://roboticoverlords.org/$pkgname/$pkgname-$pkgver.tar.xz;
 'http://roboticoverlords.org/images/default.png')
-sha256sums=('ccfe024a2258beb81a82217598b432cb98006af5d7b6cc8e6012d263d82f1b5d'
+sha256sums=('d4d2bfb23ae1c401f3147ed20206e72015b338067ff40b86271106865774de55'
 '4d96eded48e536d02e35727c36dc20844c2e44654e81baf78e10aee4eb48e837')
 
 build() {



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

2014-03-23 Thread Guillaume Alaux
Date: Sunday, March 23, 2014 @ 14:50:44
  Author: guillaume
Revision: 108127

FS#39338 - used new upstream download URL

Modified:
  keybinder2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 13:40:11 UTC (rev 108126)
+++ PKGBUILD2014-03-23 13:50:44 UTC (rev 108127)
@@ -6,18 +6,17 @@
 pkgrel=1
 pkgdesc='Library for registering global keyboard shortcuts'
 arch=('i686' 'x86_64')
-url='http://kaizer.se/wiki/keybinder/'
+url='https://github.com/engla/keybinder'
 license=('GPL')
-makedepends=('pygtk')
-source=(http://kaizer.se/publicfiles/${_offname}/${_offname}-${pkgver}.tar.gz)
-sha256sums=('42863ca0174d568a8c02c6fb243fee1681823825e8bcb1718c51611d8e9793bb')
+makedepends=('pygtk' 'gnome-common' 'gtk-doc')
+source=(https://github.com/engla/${_offname}/archive/master.zip)
+sha256sums=('30e46747a76b38395b669079edd0532d3ed8c818d13dd6cbd32da9ffc012919b')
 
 build() {
-  cd ${srcdir}/${_offname}-${pkgver}
+  cd ${srcdir}/${_offname}-master
   export PYTHON=/usr/bin/python2
-  ./configure \
---prefix=/usr \
---disable-lua
+  ./autogen.sh \
+--prefix=/usr
   make
 }
 
@@ -25,7 +24,7 @@
   pkgdesc='Library for registering global keyboard shortcuts'
   depends=('gtk2')
 
-  cd ${srcdir}/${_offname}-${pkgver}
+  cd ${srcdir}/${_offname}-master
   make DESTDIR=${pkgdir}/ install
   rm -rf ${pkgdir}/usr/lib/python2.7
 }
@@ -35,7 +34,7 @@
   depends=('libkeybinder2' 'pygtk')
   provides=('python-keybinder')
 
-  cd ${srcdir}/${_offname}-${pkgver}
+  cd ${srcdir}/${_offname}-master
   make DESTDIR=${pkgdir}/ install
   rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
   rm -rf ${pkgdir}/usr/{include,share}



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

2014-03-23 Thread Guillaume Alaux
Date: Sunday, March 23, 2014 @ 14:51:54
  Author: guillaume
Revision: 108128

Added double-quotes around dir variables

Modified:
  keybinder2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 13:50:44 UTC (rev 108127)
+++ PKGBUILD2014-03-23 13:51:54 UTC (rev 108128)
@@ -26,7 +26,7 @@
 
   cd ${srcdir}/${_offname}-master
   make DESTDIR=${pkgdir}/ install
-  rm -rf ${pkgdir}/usr/lib/python2.7
+  rm -rf ${pkgdir}/usr/lib/python2.7
 }
 
 package_python2-keybinder2() {
@@ -36,6 +36,6 @@
 
   cd ${srcdir}/${_offname}-master
   make DESTDIR=${pkgdir}/ install
-  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
-  rm -rf ${pkgdir}/usr/{include,share}
+  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
+  rm -rf ${pkgdir}/usr/{include,share}
 }



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

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 14:52:11
  Author: arodseth
Revision: 108129

upgpkg: vor 0.5.5-3

Modified:
  vor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 13:51:54 UTC (rev 108128)
+++ PKGBUILD2014-03-23 13:52:11 UTC (rev 108129)
@@ -5,7 +5,7 @@
 
 pkgname=vor
 pkgver=0.5.5
-pkgrel=2
+pkgrel=3
 pkgdesc='Classic spaceship versus asteroid field arcade game'
 arch=('x86_64' 'i686')
 url='http://jasonwoof.org/vor'
@@ -20,8 +20,11 @@
 sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
 '07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
 
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc $pkgdesc
+}
+
 build() {
-  gendesk -f --pkgname $pkgname --pkgdesc $pkgdesc
   cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make LDFLAGS=-lm



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

2014-03-23 Thread Alexander Rødseth
Date: Sunday, March 23, 2014 @ 14:52:23
  Author: arodseth
Revision: 108130

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

Added:
  vor/repos/community-i686/PKGBUILD
(from rev 108129, vor/trunk/PKGBUILD)
  vor/repos/community-i686/vor.png
(from rev 108129, vor/trunk/vor.png)
  vor/repos/community-x86_64/PKGBUILD
(from rev 108129, vor/trunk/PKGBUILD)
  vor/repos/community-x86_64/vor.png
(from rev 108129, vor/trunk/vor.png)
Deleted:
  vor/repos/community-i686/PKGBUILD
  vor/repos/community-i686/vor.png
  vor/repos/community-x86_64/PKGBUILD
  vor/repos/community-x86_64/vor.png

---+
 /PKGBUILD |   82 
 community-i686/PKGBUILD   |   38 
 community-x86_64/PKGBUILD |   38 
 3 files changed, 82 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 13:52:11 UTC (rev 108129)
+++ community-i686/PKGBUILD 2014-03-23 13:52:23 UTC (rev 108130)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: tdy t...@gmx.com
-# Contributor: nut543 k...@online.no
-
-pkgname=vor
-pkgver=0.5.5
-pkgrel=2
-pkgdesc='Classic spaceship versus asteroid field arcade game'
-arch=('x86_64' 'i686')
-url='http://jasonwoof.org/vor'
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer')
-makedepends=('gendesk')
-optdepends=('netpbm: for customizing game graphics'
-'povray: for customizing game graphics')
-options=('!emptydirs')
-source=(http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2;
-$pkgname.png)
-sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
-'07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
-
-build() {
-  gendesk -f --pkgname $pkgname --pkgdesc $pkgdesc
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make LDFLAGS=-lm
-}
-
-package() {
-  install -d $pkgdir/usr/bin
-  make -C $pkgname-$pkgver prefix=/usr DESTDIR=$pkgdir install
-  install -Dm644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
-  install -Dm644 $pkgname.desktop \
-$pkgdir/usr/share/applications/$pkgname.desktop
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vor/repos/community-i686/PKGBUILD (from rev 108129, vor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 13:52:23 UTC (rev 108130)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: tdy t...@gmx.com
+# Contributor: nut543 k...@online.no
+
+pkgname=vor
+pkgver=0.5.5
+pkgrel=3
+pkgdesc='Classic spaceship versus asteroid field arcade game'
+arch=('x86_64' 'i686')
+url='http://jasonwoof.org/vor'
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer')
+makedepends=('gendesk')
+optdepends=('netpbm: for customizing game graphics'
+'povray: for customizing game graphics')
+options=('!emptydirs')
+source=(http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2;
+$pkgname.png)
+sha256sums=('ead1b9786741e26d37ff7c5185b7fe1e91f90f76ebed3785225312e323b7c7da'
+'07a805928f5cf2b3351e2b9ff820ea69352ad80faad43311889ffbd5f62da872')
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc $pkgdesc
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make LDFLAGS=-lm
+}
+
+package() {
+  install -d $pkgdir/usr/bin
+  make -C $pkgname-$pkgver prefix=/usr DESTDIR=$pkgdir install
+  install -Dm644 $pkgname.png $pkgdir/usr/share/pixmaps/$pkgname.png
+  install -Dm644 $pkgname.desktop \
+$pkgdir/usr/share/applications/$pkgname.desktop
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/vor.png
===
(Binary files differ)

Copied: vor/repos/community-i686/vor.png (from rev 108129, vor/trunk/vor.png)
===
(Binary files differ)

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-23 13:52:11 UTC (rev 108129)
+++ community-x86_64/PKGBUILD   2014-03-23 13:52:23 UTC (rev 108130)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: tdy t...@gmx.com
-# Contributor: nut543 k...@online.no
-
-pkgname=vor
-pkgver=0.5.5
-pkgrel=2
-pkgdesc='Classic spaceship versus asteroid field arcade game'
-arch=('x86_64' 'i686')
-url='http://jasonwoof.org/vor'
-license=('GPL')
-depends=('sdl_image' 'sdl_mixer')
-makedepends=('gendesk')
-optdepends=('netpbm: for customizing game graphics'
-'povray: for customizing game graphics')
-options=('!emptydirs')
-source=(http://qualdan.com/$pkgname/$pkgname-$pkgver.tar.bz2;
-$pkgname.png)

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

2014-03-23 Thread Guillaume Alaux
Date: Sunday, March 23, 2014 @ 15:18:46
  Author: guillaume
Revision: 108131

pkgrel bump to push FS#39338

Modified:
  keybinder2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 13:52:23 UTC (rev 108130)
+++ PKGBUILD2014-03-23 14:18:46 UTC (rev 108131)
@@ -3,7 +3,7 @@
 pkgbase=keybinder2
 _offname=keybinder
 pkgver=0.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Library for registering global keyboard shortcuts'
 arch=('i686' 'x86_64')
 url='https://github.com/engla/keybinder'



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

2014-03-23 Thread Guillaume Alaux
Date: Sunday, March 23, 2014 @ 15:20:28
  Author: guillaume
Revision: 108132

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

Added:
  keybinder2/repos/extra-i686/
  keybinder2/repos/extra-i686/PKGBUILD
(from rev 108131, keybinder2/trunk/PKGBUILD)
  keybinder2/repos/extra-x86_64/
  keybinder2/repos/extra-x86_64/PKGBUILD
(from rev 108131, keybinder2/trunk/PKGBUILD)

---+
 extra-i686/PKGBUILD   |   41 +
 extra-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: keybinder2/repos/extra-i686/PKGBUILD (from rev 108131, 
keybinder2/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-23 14:20:28 UTC (rev 108132)
@@ -0,0 +1,41 @@
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=('libkeybinder2' 'python2-keybinder2')
+pkgbase=keybinder2
+_offname=keybinder
+pkgver=0.3.0
+pkgrel=2
+pkgdesc='Library for registering global keyboard shortcuts'
+arch=('i686' 'x86_64')
+url='https://github.com/engla/keybinder'
+license=('GPL')
+makedepends=('pygtk' 'gnome-common' 'gtk-doc')
+source=(https://github.com/engla/${_offname}/archive/master.zip)
+sha256sums=('30e46747a76b38395b669079edd0532d3ed8c818d13dd6cbd32da9ffc012919b')
+
+build() {
+  cd ${srcdir}/${_offname}-master
+  export PYTHON=/usr/bin/python2
+  ./autogen.sh \
+--prefix=/usr
+  make
+}
+
+package_libkeybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts'
+  depends=('gtk2')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/python2.7
+}
+
+package_python2-keybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts - Python 2 
bindings'
+  depends=('libkeybinder2' 'pygtk')
+  provides=('python-keybinder')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
+  rm -rf ${pkgdir}/usr/{include,share}
+}

Copied: keybinder2/repos/extra-x86_64/PKGBUILD (from rev 108131, 
keybinder2/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-03-23 14:20:28 UTC (rev 108132)
@@ -0,0 +1,41 @@
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=('libkeybinder2' 'python2-keybinder2')
+pkgbase=keybinder2
+_offname=keybinder
+pkgver=0.3.0
+pkgrel=2
+pkgdesc='Library for registering global keyboard shortcuts'
+arch=('i686' 'x86_64')
+url='https://github.com/engla/keybinder'
+license=('GPL')
+makedepends=('pygtk' 'gnome-common' 'gtk-doc')
+source=(https://github.com/engla/${_offname}/archive/master.zip)
+sha256sums=('30e46747a76b38395b669079edd0532d3ed8c818d13dd6cbd32da9ffc012919b')
+
+build() {
+  cd ${srcdir}/${_offname}-master
+  export PYTHON=/usr/bin/python2
+  ./autogen.sh \
+--prefix=/usr
+  make
+}
+
+package_libkeybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts'
+  depends=('gtk2')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/python2.7
+}
+
+package_python2-keybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts - Python 2 
bindings'
+  depends=('libkeybinder2' 'pygtk')
+  provides=('python-keybinder')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
+  rm -rf ${pkgdir}/usr/{include,share}
+}



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

2014-03-23 Thread Guillaume Alaux
Date: Sunday, March 23, 2014 @ 15:22:31
  Author: guillaume
Revision: 108133

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

Added:
  keybinder2/repos/community-i686/PKGBUILD
(from rev 108132, keybinder2/trunk/PKGBUILD)
  keybinder2/repos/community-x86_64/PKGBUILD
(from rev 108132, keybinder2/trunk/PKGBUILD)
Deleted:
  keybinder2/repos/community-i686/PKGBUILD
  keybinder2/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 82 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 14:20:28 UTC (rev 108132)
+++ community-i686/PKGBUILD 2014-03-23 14:22:31 UTC (rev 108133)
@@ -1,42 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=('libkeybinder2' 'python2-keybinder2')
-pkgbase=keybinder2
-_offname=keybinder
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='Library for registering global keyboard shortcuts'
-arch=('i686' 'x86_64')
-url='http://kaizer.se/wiki/keybinder/'
-license=('GPL')
-makedepends=('pygtk')
-source=(http://kaizer.se/publicfiles/${_offname}/${_offname}-${pkgver}.tar.gz)
-sha256sums=('42863ca0174d568a8c02c6fb243fee1681823825e8bcb1718c51611d8e9793bb')
-
-build() {
-  cd ${srcdir}/${_offname}-${pkgver}
-  export PYTHON=/usr/bin/python2
-  ./configure \
---prefix=/usr \
---disable-lua
-  make
-}
-
-package_libkeybinder2() {
-  pkgdesc='Library for registering global keyboard shortcuts'
-  depends=('gtk2')
-
-  cd ${srcdir}/${_offname}-${pkgver}
-  make DESTDIR=${pkgdir}/ install
-  rm -rf ${pkgdir}/usr/lib/python2.7
-}
-
-package_python2-keybinder2() {
-  pkgdesc='Library for registering global keyboard shortcuts - Python 2 
bindings'
-  depends=('libkeybinder2' 'pygtk')
-  provides=('python-keybinder')
-
-  cd ${srcdir}/${_offname}-${pkgver}
-  make DESTDIR=${pkgdir}/ install
-  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
-  rm -rf ${pkgdir}/usr/{include,share}
-}

Copied: keybinder2/repos/community-i686/PKGBUILD (from rev 108132, 
keybinder2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 14:22:31 UTC (rev 108133)
@@ -0,0 +1,41 @@
+# Maintainer: Guillaume ALAUX guilla...@archlinux.org
+pkgname=('libkeybinder2' 'python2-keybinder2')
+pkgbase=keybinder2
+_offname=keybinder
+pkgver=0.3.0
+pkgrel=2
+pkgdesc='Library for registering global keyboard shortcuts'
+arch=('i686' 'x86_64')
+url='https://github.com/engla/keybinder'
+license=('GPL')
+makedepends=('pygtk' 'gnome-common' 'gtk-doc')
+source=(https://github.com/engla/${_offname}/archive/master.zip)
+sha256sums=('30e46747a76b38395b669079edd0532d3ed8c818d13dd6cbd32da9ffc012919b')
+
+build() {
+  cd ${srcdir}/${_offname}-master
+  export PYTHON=/usr/bin/python2
+  ./autogen.sh \
+--prefix=/usr
+  make
+}
+
+package_libkeybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts'
+  depends=('gtk2')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/python2.7
+}
+
+package_python2-keybinder2() {
+  pkgdesc='Library for registering global keyboard shortcuts - Python 2 
bindings'
+  depends=('libkeybinder2' 'pygtk')
+  provides=('python-keybinder')
+
+  cd ${srcdir}/${_offname}-master
+  make DESTDIR=${pkgdir}/ install
+  rm -rf ${pkgdir}/usr/lib/{girepository-1.0,libkeybinder*,pkgconfig}
+  rm -rf ${pkgdir}/usr/{include,share}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-23 14:20:28 UTC (rev 108132)
+++ community-x86_64/PKGBUILD   2014-03-23 14:22:31 UTC (rev 108133)
@@ -1,42 +0,0 @@
-# Maintainer: Guillaume ALAUX guilla...@archlinux.org
-pkgname=('libkeybinder2' 'python2-keybinder2')
-pkgbase=keybinder2
-_offname=keybinder
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='Library for registering global keyboard shortcuts'
-arch=('i686' 'x86_64')
-url='http://kaizer.se/wiki/keybinder/'
-license=('GPL')
-makedepends=('pygtk')
-source=(http://kaizer.se/publicfiles/${_offname}/${_offname}-${pkgver}.tar.gz)
-sha256sums=('42863ca0174d568a8c02c6fb243fee1681823825e8bcb1718c51611d8e9793bb')
-
-build() {
-  cd ${srcdir}/${_offname}-${pkgver}
-  export PYTHON=/usr/bin/python2
-  ./configure \
---prefix=/usr \
---disable-lua
-  make
-}
-
-package_libkeybinder2() {
-  pkgdesc='Library for registering global keyboard shortcuts'
-  depends=('gtk2')
-
-  cd ${srcdir}/${_offname}-${pkgver}
-  make DESTDIR=${pkgdir}/ install
-  rm -rf ${pkgdir}/usr/lib/python2.7
-}
-
-package_python2-keybinder2() {
-  pkgdesc='Library for registering global 

[arch-commits] Commit in subversion/trunk (svnserve.conf)

2014-03-23 Thread Felix Yan
Date: Sunday, March 23, 2014 @ 16:56:30
  Author: fyan
Revision: 208522

remove SVNSERVE_USER in .conf file (FS#36794)

Modified:
  subversion/trunk/svnserve.conf

---+
 svnserve.conf |2 --
 1 file changed, 2 deletions(-)

Modified: svnserve.conf
===
--- svnserve.conf   2014-03-23 09:37:58 UTC (rev 208521)
+++ svnserve.conf   2014-03-23 15:56:30 UTC (rev 208522)
@@ -3,5 +3,3 @@
 #
 #SVNSERVE_ARGS=-r /path/to/some/repos
 SVNSERVE_ARGS=
-
-#SVNSERVE_USER=svn



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

2014-03-23 Thread Felix Yan
Date: Sunday, March 23, 2014 @ 17:25:23
  Author: fyan
Revision: 108134

upgpkg: python-pycuda 2013.1.1-5

- rebuild against cuda 6

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 14:22:31 UTC (rev 108133)
+++ PKGBUILD2014-03-23 16:25:23 UTC (rev 108134)
@@ -5,7 +5,7 @@
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
 pkgver=2013.1.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Python wrapper for Nvidia CUDA
 arch=('x86_64')
 url=http://mathema.tician.de/software/pycuda;



[arch-commits] Commit in python-pycuda/repos/community-x86_64 (4 files)

2014-03-23 Thread Felix Yan
Date: Sunday, March 23, 2014 @ 17:26:08
  Author: fyan
Revision: 108135

archrelease: copy trunk to community-x86_64

Added:
  python-pycuda/repos/community-x86_64/LICENSE
(from rev 108134, python-pycuda/trunk/LICENSE)
  python-pycuda/repos/community-x86_64/PKGBUILD
(from rev 108134, python-pycuda/trunk/PKGBUILD)
Deleted:
  python-pycuda/repos/community-x86_64/LICENSE
  python-pycuda/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |   14 ++---
 PKGBUILD |  156 ++---
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-03-23 16:25:23 UTC (rev 108134)
+++ LICENSE 2014-03-23 16:26:08 UTC (rev 108135)
@@ -1,7 +0,0 @@
-Copyright (c) 2009,10 Andreas Klöckner and Contributors.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Copied: python-pycuda/repos/community-x86_64/LICENSE (from rev 108134, 
python-pycuda/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-03-23 16:26:08 UTC (rev 108135)
@@ -0,0 +1,7 @@
+Copyright (c) 2009,10 Andreas Klöckner and Contributors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 16:25:23 UTC (rev 108134)
+++ PKGBUILD2014-03-23 16:26:08 UTC (rev 108135)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgbase=python-pycuda
-pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2013.1.1
-pkgrel=3
-pkgdesc=Python wrapper for Nvidia CUDA
-arch=('x86_64')
-url=http://mathema.tician.de/software/pycuda;
-license=('MIT' 'Apache')
-source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
-LICENSE)
-makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-
-build() {
-   cd ${srcdir}
-  
-   _arch=''
-   [ $CARCH = x86_64 ]  _arch='64'
-
-   cp -a pycuda-${pkgver}{,-python2}
-  
-   cd ${srcdir}/pycuda-${pkgver}
-   python3 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
-  --boost-python-libname=boost_python3
-   make
-
-   cd ${srcdir}/pycuda-${pkgver}-python2
-   python2 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
- --boost-python-libname=boost_python

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

2014-03-23 Thread Felix Yan
Date: Sunday, March 23, 2014 @ 18:40:47
  Author: fyan
Revision: 108136

upgpkg: python-pycuda 2013.1.1-6

- only bump the version for new python 3.4 (community version needs a rebuild 
as -5)

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 16:26:08 UTC (rev 108135)
+++ PKGBUILD2014-03-23 17:40:47 UTC (rev 108136)
@@ -5,7 +5,7 @@
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
 pkgver=2013.1.1
-pkgrel=5
+pkgrel=6
 pkgdesc=Python wrapper for Nvidia CUDA
 arch=('x86_64')
 url=http://mathema.tician.de/software/pycuda;



[arch-commits] Commit in python-pycuda/repos/community-testing-x86_64 (4 files)

2014-03-23 Thread Felix Yan
Date: Sunday, March 23, 2014 @ 18:41:33
  Author: fyan
Revision: 108137

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pycuda/repos/community-testing-x86_64/LICENSE
(from rev 108136, python-pycuda/trunk/LICENSE)
  python-pycuda/repos/community-testing-x86_64/PKGBUILD
(from rev 108136, python-pycuda/trunk/PKGBUILD)
Deleted:
  python-pycuda/repos/community-testing-x86_64/LICENSE
  python-pycuda/repos/community-testing-x86_64/PKGBUILD

--+
 LICENSE  |   14 ++---
 PKGBUILD |  156 ++---
 2 files changed, 85 insertions(+), 85 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-03-23 17:40:47 UTC (rev 108136)
+++ LICENSE 2014-03-23 17:41:33 UTC (rev 108137)
@@ -1,7 +0,0 @@
-Copyright (c) 2009,10 Andreas Klöckner and Contributors.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Copied: python-pycuda/repos/community-testing-x86_64/LICENSE (from rev 108136, 
python-pycuda/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-03-23 17:41:33 UTC (rev 108137)
@@ -0,0 +1,7 @@
+Copyright (c) 2009,10 Andreas Klöckner and Contributors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software and associated documentation files (the “Software”), to deal 
in the Software without restriction, including without limitation the rights to 
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
of the Software, and to permit persons to whom the Software is furnished to do 
so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all 
copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 17:40:47 UTC (rev 108136)
+++ PKGBUILD2014-03-23 17:41:33 UTC (rev 108137)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Stéphane Gaudreault steph...@archlinux.org
-
-pkgbase=python-pycuda
-pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
-pkgver=2013.1.1
-pkgrel=4
-pkgdesc=Python wrapper for Nvidia CUDA
-arch=('x86_64')
-url=http://mathema.tician.de/software/pycuda;
-license=('MIT' 'Apache')
-source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz;
-LICENSE)
-makedepends=('ctags' 'python2-setuptools' 'python-setuptools' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost' 'nvidia-utils')
-
-build() {
-   cd ${srcdir}
-  
-   _arch=''
-   [ $CARCH = x86_64 ]  _arch='64'
-
-   cp -a pycuda-${pkgver}{,-python2}
-  
-   cd ${srcdir}/pycuda-${pkgver}
-   python3 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
-  --boost-python-libname=boost_python3
-   make
-
-   cd ${srcdir}/pycuda-${pkgver}-python2
-   python2 ./configure.py \
-  --cuda-root=/opt/cuda \
-  --cuda-inc-dir=/opt/cuda/include \
-  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
-  --cudart-lib-dir=/opt/cuda/lib${_arch} \
-  --no-use-shipped-boost \
- 

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

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:42:09
  Author: idevolder
Revision: 108138

closure-compiler :: 20140303

Modified:
  closure-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 17:41:33 UTC (rev 108137)
+++ PKGBUILD2014-03-23 19:42:09 UTC (rev 108138)
@@ -2,7 +2,7 @@
 # Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
 # Contributor: Bram Schoenmakers m...@bramschoenmakers.nl
 pkgname=closure-compiler
-pkgver=20140110
+pkgver=20140303
 pkgrel=1
 pkgdesc=Performs checking, instrumentation and optimizations on Javascript 
code.
 arch=('any')
@@ -21,4 +21,4 @@
chmod +x $pkgdir/usr/bin/closure
 }
 
-sha256sums=('fe1034b96ba59fe58deba131b39e2c3c687bf6cfce3a556c0fccb8852c2351cd')
+sha256sums=('40199c405e89525107314d66b4d5a858845526d9ac0ddb24ec764a358587d4a0')



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

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:42:51
  Author: idevolder
Revision: 108139

libnfs :: 1.9.3

Modified:
  libnfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 19:42:09 UTC (rev 108138)
+++ PKGBUILD2014-03-23 19:42:51 UTC (rev 108139)
@@ -2,7 +2,7 @@
 # Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
 
 pkgname=libnfs
-pkgver=1.9.2
+pkgver=1.9.3
 pkgrel=1
 pkgdesc=client library for accessing NFS shares
 arch=('i686' 'x86_64')
@@ -23,4 +23,4 @@
   cd $pkgname-$pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }
-sha256sums=('77d9d543eb1ae3e36497e5a3d4f37c8dd3d66def8d11817d4ed84368225b')
+sha256sums=('9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a')



[arch-commits] Commit in closure-compiler/repos/community-any (PKGBUILD PKGBUILD)

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:43:54
  Author: idevolder
Revision: 108141

archrelease: copy trunk to community-any

Added:
  closure-compiler/repos/community-any/PKGBUILD
(from rev 108140, closure-compiler/trunk/PKGBUILD)
Deleted:
  closure-compiler/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-03-23 19:43:34 UTC (rev 108140)
+++ PKGBUILD2014-03-23 19:43:54 UTC (rev 108141)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Contributor: Bram Schoenmakers m...@bramschoenmakers.nl
-pkgname=closure-compiler
-pkgver=20140110
-pkgrel=1
-pkgdesc=Performs checking, instrumentation and optimizations on Javascript 
code.
-arch=('any')
-url=http://code.google.com/closure;
-license=('APACHE')
-depends=('java-runtime')
-source=(http://dl.google.com/$pkgname/compiler-$pkgver.tar.gz;)
-
-package() {
-   cd $srcdir
-
-   install -m755 -D compiler.jar 
$pkgdir/usr/share/java/closure-compiler/closure-compiler.jar
-   mkdir $pkgdir/usr/bin
-   echo '#!/bin/sh
-   $JAVA_HOME/bin/java -jar 
/usr/share/java/closure-compiler/closure-compiler.jar $@'  
$pkgdir/usr/bin/closure
-   chmod +x $pkgdir/usr/bin/closure
-}
-
-sha256sums=('fe1034b96ba59fe58deba131b39e2c3c687bf6cfce3a556c0fccb8852c2351cd')

Copied: closure-compiler/repos/community-any/PKGBUILD (from rev 108140, 
closure-compiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-03-23 19:43:54 UTC (rev 108141)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Contributor: Bram Schoenmakers m...@bramschoenmakers.nl
+pkgname=closure-compiler
+pkgver=20140303
+pkgrel=1
+pkgdesc=Performs checking, instrumentation and optimizations on Javascript 
code.
+arch=('any')
+url=http://code.google.com/closure;
+license=('APACHE')
+depends=('java-runtime')
+source=(http://dl.google.com/$pkgname/compiler-$pkgver.tar.gz;)
+
+package() {
+   cd $srcdir
+
+   install -m755 -D compiler.jar 
$pkgdir/usr/share/java/closure-compiler/closure-compiler.jar
+   mkdir $pkgdir/usr/bin
+   echo '#!/bin/sh
+   $JAVA_HOME/bin/java -jar 
/usr/share/java/closure-compiler/closure-compiler.jar $@'  
$pkgdir/usr/bin/closure
+   chmod +x $pkgdir/usr/bin/closure
+}
+
+sha256sums=('40199c405e89525107314d66b4d5a858845526d9ac0ddb24ec764a358587d4a0')



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

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:43:34
  Author: idevolder
Revision: 108140

doublecmd :: 0.5.9

Modified:
  doublecmd/trunk/PKGBUILD

--+
 PKGBUILD |   34 ++
 1 file changed, 18 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 19:42:51 UTC (rev 108139)
+++ PKGBUILD2014-03-23 19:43:34 UTC (rev 108140)
@@ -5,7 +5,7 @@
 
 pkgbase=doublecmd
 pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.5.8
+pkgver=0.5.9
 _helpver=0.5.5
 pkgrel=1
 url=http://doublecmd.sourceforge.net/;
@@ -22,6 +22,7 @@
 source=(

http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;

http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
+   http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
 )
 
 build() {
@@ -28,20 +29,22 @@
cp -a $pkgbase-$pkgver $pkgbase-gtk
cp -a $pkgbase-$pkgver $pkgbase-qt
 
-   cd $srcdir/$pkgbase-gtk
-   if [ $CARCH = i686 ]; then
-   sed -e '/fPIC/d' -i 
$srcdir/$pkgbase-gtk/components/doublecmd/doublecmd_common.lpk
-   fi
-   sed -e 's/\(export\ lazbuild=\).*/\1$(which\ lazbuild) 
--lazarusdir=\/usr\/lib\/lazarus/' -i build.sh
+   msg2 'build gtk'
+   gtkdir=$srcdir/$pkgbase-gtk
+   cd $gtkdir
+   bsdtar -zxf $srcdir/lazarus-20140321-2.tar.gz
+   sed -e s/\\(export\\ lazbuild=\\).*/\\1\\$(which lazbuild) 
--primary-config-path=${gtkdir//\//\\\/}\/lazarus\/lazarus-$CARCH\/ -i 
build.sh
+   sed -e s/%%SRCDIR%%/${gtkdir//\//\\\/}/g -i lazarus/packagefiles.xml
./build.sh beta gtk2
 
-   cd $srcdir/$pkgbase-qt
-   # dont use fPIC on i686
-   if [ $CARCH = i686 ]; then
-   sed -e '/fPIC/d' -i 
$srcdir/$pkgbase-qt/components/doublecmd/doublecmd_common.lpk
-   fi
-   sed -e 's/\(export\ lazbuild=\).*/\1$(which\ lazbuild) 
--lazarusdir=\/usr\/lib\/lazarus/' -i build.sh
+   msg2 'build qt'
+   qtdir=$srcdir/$pkgbase-qt
+   cd $qtdir
+   bsdtar -zxf $srcdir/lazarus-20140321-2.tar.gz
+   sed -e s/\\(export\\ lazbuild=\\).*/\\1\\$(which lazbuild) 
--primary-config-path=${qtdir//\//\\\/}\/lazarus\/lazarus-$CARCH\/ -i build.sh
+   sed -e s/%%SRCDIR%%/${qtdir//\//\\\/}/g -i lazarus/packagefiles.xml
./build.sh beta qt
+
 }
 
 package_doublecmd-gtk2() {
@@ -49,7 +52,6 @@
depends=('gtk2')
conflicts=('doublecmd-qt')
cd $srcdir/$pkgbase-gtk
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
./install/linux/install.sh --install-prefix=$pkgdir
 
# install doc
@@ -62,7 +64,6 @@
depends=('qt4pas')
conflicts=('doublecmd-gtk2')
cd $srcdir/$pkgbase-qt
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
./install/linux/install.sh --install-prefix=$pkgdir
 
# install doc
@@ -70,5 +71,6 @@
cp -a * $pkgdir/usr/share/$pkgbase/doc/
 }
 
-sha256sums=('bfa85693b6cc06b7fd28ec8bd443ad9fb9d79d27a541e4f4d54bb9da2fb052ea'
-'5c5d00187df811df0734bf751a581bce7e1bdd4cf4639b2a1101f1da8743daaf')
+sha256sums=('d5b3c93b3029f4b0a45b7c9912d34f753445e031c93bc0268d4cb4c313d06ba4'
+'5c5d00187df811df0734bf751a581bce7e1bdd4cf4639b2a1101f1da8743daaf'
+   
'16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')



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

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:44:44
  Author: idevolder
Revision: 108142

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

Added:
  libnfs/repos/community-i686/PKGBUILD
(from rev 108141, libnfs/trunk/PKGBUILD)
  libnfs/repos/community-x86_64/PKGBUILD
(from rev 108141, libnfs/trunk/PKGBUILD)
Deleted:
  libnfs/repos/community-i686/PKGBUILD
  libnfs/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 19:43:54 UTC (rev 108141)
+++ community-i686/PKGBUILD 2014-03-23 19:44:44 UTC (rev 108142)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-
-pkgname=libnfs
-pkgver=1.9.2
-pkgrel=1
-pkgdesc=client library for accessing NFS shares
-arch=('i686' 'x86_64')
-url=https://github.com/sahlberg/libnfs;
-license=('GPL')
-depends=('glibc')
-source=(https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-
-  autoreconf -vif
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-sha256sums=('77d9d543eb1ae3e36497e5a3d4f37c8dd3d66def8d11817d4ed84368225b')

Copied: libnfs/repos/community-i686/PKGBUILD (from rev 108141, 
libnfs/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 19:44:44 UTC (rev 108142)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+
+pkgname=libnfs
+pkgver=1.9.3
+pkgrel=1
+pkgdesc=client library for accessing NFS shares
+arch=('i686' 'x86_64')
+url=https://github.com/sahlberg/libnfs;
+license=('GPL')
+depends=('glibc')
+source=(https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  autoreconf -vif
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+sha256sums=('9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-23 19:43:54 UTC (rev 108141)
+++ community-x86_64/PKGBUILD   2014-03-23 19:44:44 UTC (rev 108142)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-
-pkgname=libnfs
-pkgver=1.9.2
-pkgrel=1
-pkgdesc=client library for accessing NFS shares
-arch=('i686' 'x86_64')
-url=https://github.com/sahlberg/libnfs;
-license=('GPL')
-depends=('glibc')
-source=(https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
-
-build() {
-  cd $pkgname-$pkgname-$pkgver
-
-  autoreconf -vif
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-sha256sums=('77d9d543eb1ae3e36497e5a3d4f37c8dd3d66def8d11817d4ed84368225b')

Copied: libnfs/repos/community-x86_64/PKGBUILD (from rev 108141, 
libnfs/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-23 19:44:44 UTC (rev 108142)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+
+pkgname=libnfs
+pkgver=1.9.3
+pkgrel=1
+pkgdesc=client library for accessing NFS shares
+arch=('i686' 'x86_64')
+url=https://github.com/sahlberg/libnfs;
+license=('GPL')
+depends=('glibc')
+source=(https://github.com/sahlberg/$pkgname/archive/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  autoreconf -vif
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+sha256sums=('9d1c988065b373ea25e195aedff4c33ca949fee41c61bdb38a26908bb618315a')



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

2014-03-23 Thread Ike Devolder
Date: Sunday, March 23, 2014 @ 20:45:43
  Author: idevolder
Revision: 108143

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

Added:
  doublecmd/repos/community-i686/PKGBUILD
(from rev 108142, doublecmd/trunk/PKGBUILD)
  doublecmd/repos/community-i686/doublecmd.install
(from rev 108142, doublecmd/trunk/doublecmd.install)
  doublecmd/repos/community-x86_64/PKGBUILD
(from rev 108142, doublecmd/trunk/PKGBUILD)
  doublecmd/repos/community-x86_64/doublecmd.install
(from rev 108142, doublecmd/trunk/doublecmd.install)
Deleted:
  doublecmd/repos/community-i686/PKGBUILD
  doublecmd/repos/community-i686/doublecmd.install
  doublecmd/repos/community-x86_64/PKGBUILD
  doublecmd/repos/community-x86_64/doublecmd.install

+
 /PKGBUILD  |  152 +++
 /doublecmd.install |   68 +++
 community-i686/PKGBUILD|   74 -
 community-i686/doublecmd.install   |   34 ---
 community-x86_64/PKGBUILD  |   74 -
 community-x86_64/doublecmd.install |   34 ---
 6 files changed, 220 insertions(+), 216 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-23 19:44:44 UTC (rev 108142)
+++ community-i686/PKGBUILD 2014-03-23 19:45:43 UTC (rev 108143)
@@ -1,74 +0,0 @@
-# vim:set ft=sh:
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.5.8
-_helpver=0.5.5
-pkgrel=1
-url=http://doublecmd.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-install=$pkgbase.install
-provides=($pkgbase)
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
-   'lua51: scripting'
-   'p7zip: support for 7zip archives'
-   'libunrar: support for rar archives'
-)
-source=(
-   
http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;
-   
http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
-)
-
-build() {
-   cp -a $pkgbase-$pkgver $pkgbase-gtk
-   cp -a $pkgbase-$pkgver $pkgbase-qt
-
-   cd $srcdir/$pkgbase-gtk
-   if [ $CARCH = i686 ]; then
-   sed -e '/fPIC/d' -i 
$srcdir/$pkgbase-gtk/components/doublecmd/doublecmd_common.lpk
-   fi
-   sed -e 's/\(export\ lazbuild=\).*/\1$(which\ lazbuild) 
--lazarusdir=\/usr\/lib\/lazarus/' -i build.sh
-   ./build.sh beta gtk2
-
-   cd $srcdir/$pkgbase-qt
-   # dont use fPIC on i686
-   if [ $CARCH = i686 ]; then
-   sed -e '/fPIC/d' -i 
$srcdir/$pkgbase-qt/components/doublecmd/doublecmd_common.lpk
-   fi
-   sed -e 's/\(export\ lazbuild=\).*/\1$(which\ lazbuild) 
--lazarusdir=\/usr\/lib\/lazarus/' -i build.sh
-   ./build.sh beta qt
-}
-
-package_doublecmd-gtk2() {
-   pkgdesc=twin-panel (commander-style) file manager (GTK)
-   depends=('gtk2')
-   conflicts=('doublecmd-qt')
-   cd $srcdir/$pkgbase-gtk
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
-   ./install/linux/install.sh --install-prefix=$pkgdir
-
-   # install doc
-   cd $srcdir/$pkgbase-help-$_helpver
-   cp -a * $pkgdir/usr/share/$pkgbase/doc/
-}
-
-package_doublecmd-qt() {
-   pkgdesc=twin-panel (commander-style) file manager (QT)
-   depends=('qt4pas')
-   conflicts=('doublecmd-gtk2')
-   cd $srcdir/$pkgbase-qt
-   sed -e 's/LIB_SUFFIX=.*/LIB_SUFFIX=/g' -i ./install/linux/install.sh
-   ./install/linux/install.sh --install-prefix=$pkgdir
-
-   # install doc
-   cd $srcdir/$pkgbase-help-$_helpver
-   cp -a * $pkgdir/usr/share/$pkgbase/doc/
-}
-
-sha256sums=('bfa85693b6cc06b7fd28ec8bd443ad9fb9d79d27a541e4f4d54bb9da2fb052ea'
-'5c5d00187df811df0734bf751a581bce7e1bdd4cf4639b2a1101f1da8743daaf')

Copied: doublecmd/repos/community-i686/PKGBUILD (from rev 108142, 
doublecmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-23 19:45:43 UTC (rev 108143)
@@ -0,0 +1,76 @@
+# vim:set ft=sh:
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: (sirocco AT ngs.ru)
+
+pkgbase=doublecmd
+pkgname=('doublecmd-gtk2' 'doublecmd-qt')
+pkgver=0.5.9
+_helpver=0.5.5
+pkgrel=1
+url=http://doublecmd.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+install=$pkgbase.install
+provides=($pkgbase)
+makedepends=('lazarus' 'qt4pas' 'gtk2')
+optdepends=(
+   'lua51: scripting'
+   'p7zip: support for 7zip archives'
+   'libunrar: support for rar archives'
+)
+source=(
+   

[arch-commits] Commit in mldonkey/trunk (PKGBUILD fix_compile_error.patch)

2014-03-23 Thread Anatol Pomozov
Date: Sunday, March 23, 2014 @ 22:01:27
  Author: anatolik
Revision: 108144

upgpkg: mldonkey 3.1.5-1

Modified:
  mldonkey/trunk/PKGBUILD
Deleted:
  mldonkey/trunk/fix_compile_error.patch

-+
 PKGBUILD|   21 ---
 fix_compile_error.patch |  254 --
 2 files changed, 5 insertions(+), 270 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 19:45:43 UTC (rev 108143)
+++ PKGBUILD2014-03-23 21:01:27 UTC (rev 108144)
@@ -2,8 +2,8 @@
 # Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
 
 pkgname=mldonkey
-pkgver=3.1.4
-pkgrel=2
+pkgver=3.1.5
+pkgrel=1
 pkgdesc='A multi-network P2P client'
 arch=(i686 x86_64)
 url='http://mldonkey.sourceforge.net/'
@@ -17,23 +17,12 @@
 
source=(http://downloads.sourceforge.net/sourceforge/mldonkey/$pkgname-$pkgver.tar.bz2
 mldonkey.conf
 mldonkey.service
-mldonkey.tmpfiles
-fix_compile_error.patch)
-sha256sums=('1e454be51fec346d650a72049e4dc4471036d129a488443a67436af62ef375fe'
+mldonkey.tmpfiles)
+sha256sums=('74f9d4bcc72356aa28d0812767ef5b9daa03efc5d1ddabf56447dc04969911cb'
 'f1d9401cefd591662d49011c53fdb2788755a6f745a963e46d8037b990edeb6a'
 '778cebe8edcffd63db3594054c2daa62ce571644a96ad235b8c95470b55c0415'
-'45f45d2a3c064d5bbc0b6b9b70fa3497ed47cfecdd1ec52e175311f48eaa89dc'
-'172d1b129a068caafcb1e48c861b4b78b129b4ba50bb5e692b61cf00dcc66215')
+'45f45d2a3c064d5bbc0b6b9b70fa3497ed47cfecdd1ec52e175311f48eaa89dc')
 
-prepare() {
-  cd mldonkey-$pkgver
-
-  # http://mldonkey.sourceforge.net/phpBB2/viewtopic.php?p=32462#32462
-  patch -p1  $srcdir/fix_compile_error.patch
-
-  rm config/configure  # remove this file to force its regeneration, we've 
just changed ./config/configure.in
-}
-
 build() {
   cd mldonkey-$pkgver
   ./configure --prefix=/usr --enable-gui=newgui2 --enable-upnp-natpmp

Deleted: fix_compile_error.patch
===
--- fix_compile_error.patch 2014-03-23 19:45:43 UTC (rev 108143)
+++ fix_compile_error.patch 2014-03-23 21:01:27 UTC (rev 108144)
@@ -1,254 +0,0 @@
-commit 64cf1e7eabf3087c111b54d7df490c5763d0546b
-Author: ygrek yg...@autistici.org
-Date:   Tue Mar 11 16:15:09 2014 +0800
-
-Revert gettext: reduce complexity, drop unused code
-
-This reverts commit 6a094b4381dacdc9043c8348002179eb87846e16.
-Unused code is actually used in gui
-
-Conflicts:
-   src/utils/lib/gettext.ml4
-
-diff --git a/src/daemon/common/commonMessages.ml 
b/src/daemon/common/commonMessages.ml
-index ebae333..0cffed2 100644
 a/src/daemon/common/commonMessages.ml
-+++ b/src/daemon/common/commonMessages.ml
-@@ -1399,9 +1399,11 @@ let bad_login = _s  Bad login/password
- 
- let full_access = _s Full access enabled
- 
--let download_started n = _s (Printf.sprintf Download of file %d startedbr 
n)
-+let download_started = message download_started
-+(T.boption (T.int T.bformat)) Download of file %d startedbr
- 
--let no_such_command s = _s (Printf.sprintf No such command %s\n s)
-+let no_such_command  = message no_such_command
-+(T.boption (T.string T.bformat))   No such command %s\n
- 
- let bad_number_of_args cmd help = _s (Printf.sprintf Bad number of 
arguments, see help for correct use:\n%s %s cmd help)
- 
-diff --git a/src/daemon/driver/driverCommands.ml 
b/src/daemon/driver/driverCommands.ml
-index 6085073..c24be04 100644
 a/src/daemon/driver/driverCommands.ml
-+++ b/src/daemon/driver/driverCommands.ml
-@@ -87,7 +87,7 @@ let execute_command arg_list output cmd args =
- let rec iter list =
-   match list with
- [] -
--  Buffer.add_string buf (no_such_command cmd)
-+  Gettext.buftext buf no_such_command cmd
-   | (command, _, arg_kind, help) :: tail -
-   if command = cmd then begin
- if !verbose_user_commands  not (user2_is_admin 
output.conn_user.ui_user) then
-diff --git a/src/daemon/driver/driverControlers.ml 
b/src/daemon/driver/driverControlers.ml
-index e07ba77..69a1751 100644
 a/src/daemon/driver/driverControlers.ml
-+++ b/src/daemon/driver/driverControlers.ml
-@@ -1296,7 +1296,7 @@ let http_handler o t r =
- List.iter CommonInteractive.start_download files;
- 
- let module M = CommonMessages in
--Buffer.add_string buf (M.download_started num)
-+Gettext.buftext buf M.download_started num
-   with  e -
-   Printf.bprintf buf Error %s with %sbr
- (Printexc2.to_string e) value;
-diff --git a/src/utils/lib/gettext.ml4 b/src/utils/lib/gettext.ml4
-index 91a9fbb..fcfe50d 100644
 a/src/utils/lib/gettext.ml4
-+++ b/src/utils/lib/gettext.ml4
-@@ -29,15 +29,15 @@ let lprintf_n fmt =
-   lprintf2 

[arch-commits] Commit in mldonkey/repos (22 files)

2014-03-23 Thread Anatol Pomozov
Date: Sunday, March 23, 2014 @ 22:02:34
  Author: anatolik
Revision: 108145

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

Added:
  mldonkey/repos/community-testing-i686/PKGBUILD
(from rev 108144, mldonkey/trunk/PKGBUILD)
  mldonkey/repos/community-testing-i686/mldonkey.conf
(from rev 108144, mldonkey/trunk/mldonkey.conf)
  mldonkey/repos/community-testing-i686/mldonkey.install
(from rev 108144, mldonkey/trunk/mldonkey.install)
  mldonkey/repos/community-testing-i686/mldonkey.service
(from rev 108144, mldonkey/trunk/mldonkey.service)
  mldonkey/repos/community-testing-i686/mldonkey.tmpfiles
(from rev 108144, mldonkey/trunk/mldonkey.tmpfiles)
  mldonkey/repos/community-testing-x86_64/PKGBUILD
(from rev 108144, mldonkey/trunk/PKGBUILD)
  mldonkey/repos/community-testing-x86_64/mldonkey.conf
(from rev 108144, mldonkey/trunk/mldonkey.conf)
  mldonkey/repos/community-testing-x86_64/mldonkey.install
(from rev 108144, mldonkey/trunk/mldonkey.install)
  mldonkey/repos/community-testing-x86_64/mldonkey.service
(from rev 108144, mldonkey/trunk/mldonkey.service)
  mldonkey/repos/community-testing-x86_64/mldonkey.tmpfiles
(from rev 108144, mldonkey/trunk/mldonkey.tmpfiles)
Deleted:
  mldonkey/repos/community-testing-i686/PKGBUILD
  mldonkey/repos/community-testing-i686/fix_compile_error.patch
  mldonkey/repos/community-testing-i686/mldonkey.conf
  mldonkey/repos/community-testing-i686/mldonkey.install
  mldonkey/repos/community-testing-i686/mldonkey.service
  mldonkey/repos/community-testing-i686/mldonkey.tmpfiles
  mldonkey/repos/community-testing-x86_64/PKGBUILD
  mldonkey/repos/community-testing-x86_64/fix_compile_error.patch
  mldonkey/repos/community-testing-x86_64/mldonkey.conf
  mldonkey/repos/community-testing-x86_64/mldonkey.install
  mldonkey/repos/community-testing-x86_64/mldonkey.service
  mldonkey/repos/community-testing-x86_64/mldonkey.tmpfiles

--+
 /PKGBUILD|   84 ++
 /mldonkey.conf   |4 
 /mldonkey.install|   64 +
 /mldonkey.service|   20 +
 /mldonkey.tmpfiles   |2 
 community-testing-i686/PKGBUILD  |   53 
 community-testing-i686/fix_compile_error.patch   |  254 -
 community-testing-i686/mldonkey.conf |2 
 community-testing-i686/mldonkey.install  |   32 --
 community-testing-i686/mldonkey.service  |   10 
 community-testing-i686/mldonkey.tmpfiles |1 
 community-testing-x86_64/PKGBUILD|   53 
 community-testing-x86_64/fix_compile_error.patch |  254 -
 community-testing-x86_64/mldonkey.conf   |2 
 community-testing-x86_64/mldonkey.install|   32 --
 community-testing-x86_64/mldonkey.service|   10 
 community-testing-x86_64/mldonkey.tmpfiles   |1 
 17 files changed, 174 insertions(+), 704 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2014-03-23 21:01:27 UTC (rev 108144)
+++ community-testing-i686/PKGBUILD 2014-03-23 21:02:34 UTC (rev 108145)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-
-pkgname=mldonkey
-pkgver=3.1.4
-pkgrel=2
-pkgdesc='A multi-network P2P client'
-arch=(i686 x86_64)
-url='http://mldonkey.sourceforge.net/'
-license=(GPL)
-depends=(file gd miniupnpc libnatpmp)
-makedepends=(lablgtk2 librsvg ocaml)
-optdepends=('librsvg: GUI support'
-'gtk2: GUI support')
-backup=(etc/conf.d/mldonkey)
-install=mldonkey.install
-source=(http://downloads.sourceforge.net/sourceforge/mldonkey/$pkgname-$pkgver.tar.bz2
-mldonkey.conf
-mldonkey.service
-mldonkey.tmpfiles
-fix_compile_error.patch)
-sha256sums=('1e454be51fec346d650a72049e4dc4471036d129a488443a67436af62ef375fe'
-'f1d9401cefd591662d49011c53fdb2788755a6f745a963e46d8037b990edeb6a'
-'778cebe8edcffd63db3594054c2daa62ce571644a96ad235b8c95470b55c0415'
-'45f45d2a3c064d5bbc0b6b9b70fa3497ed47cfecdd1ec52e175311f48eaa89dc'
-'172d1b129a068caafcb1e48c861b4b78b129b4ba50bb5e692b61cf00dcc66215')
-
-prepare() {
-  cd mldonkey-$pkgver
-
-  # http://mldonkey.sourceforge.net/phpBB2/viewtopic.php?p=32462#32462
-  patch -p1  $srcdir/fix_compile_error.patch
-
-  rm config/configure  # remove this file to force its regeneration, we've 
just changed ./config/configure.in
-}
-
-build() {
-  cd mldonkey-$pkgver
-  ./configure --prefix=/usr --enable-gui=newgui2 --enable-upnp-natpmp
-  make
-}
-
-package() {
-  cd mldonkey-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 icons/rsvg/type_source_normal.svg 
$pkgdir/usr/share/icons/mldonkey.svg
-  install -Dm644 

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

2014-03-23 Thread Eric Bélanger
Date: Sunday, March 23, 2014 @ 22:25:47
  Author: eric
Revision: 208523

upgpkg: libkeybinder3 0.3.0-4

Update url

Modified:
  libkeybinder3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 15:56:30 UTC (rev 208522)
+++ PKGBUILD2014-03-23 21:25:47 UTC (rev 208523)
@@ -4,10 +4,10 @@
 
 pkgname=libkeybinder3
 pkgver=0.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc=A library for registering global keyboard shortcuts
 arch=('i686' 'x86_64')
-url=http://kaizer.se/wiki/keybinder/;
+url=https://github.com/engla/keybinder/tree/keybinder-3.0;
 license=('MIT')
 depends=('gtk3')
 makedepends=('gtk-doc' 'gobject-introspection')



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

2014-03-23 Thread Eric Bélanger
Date: Sunday, March 23, 2014 @ 22:26:50
  Author: eric
Revision: 208524

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

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

---+
 /PKGBUILD |   56 
 extra-i686/PKGBUILD   |   28 
 extra-x86_64/PKGBUILD |   28 
 3 files changed, 56 insertions(+), 56 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-23 21:25:47 UTC (rev 208523)
+++ extra-i686/PKGBUILD 2014-03-23 21:26:50 UTC (rev 208524)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-# Contributor: speps speps at aur dot archlinux dot org
-
-pkgname=libkeybinder3
-pkgver=0.3.0
-pkgrel=3
-pkgdesc=A library for registering global keyboard shortcuts
-arch=('i686' 'x86_64')
-url=http://kaizer.se/wiki/keybinder/;
-license=('MIT')
-depends=('gtk3')
-makedepends=('gtk-doc' 'gobject-introspection')
-optdepends=('lua-lgi: lua bindings')
-source=(http://archive.ubuntu.com/ubuntu/pool/universe/k/keybinder-3.0/keybinder-3.0_${pkgver}.orig.tar.gz)
-sha1sums=('53167d295ffa1d356bfad6f9360b90bd85e8fb26')
-
-build() {
-  cd keybinder-3.0-${pkgver}
-  ./configure --prefix=/usr --enable-gtk-doc
-  make
-}
-
-package() {
-  cd keybinder-3.0-${pkgver}
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libkeybinder3/repos/extra-i686/PKGBUILD (from rev 208523, 
libkeybinder3/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-23 21:26:50 UTC (rev 208524)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: speps speps at aur dot archlinux dot org
+
+pkgname=libkeybinder3
+pkgver=0.3.0
+pkgrel=4
+pkgdesc=A library for registering global keyboard shortcuts
+arch=('i686' 'x86_64')
+url=https://github.com/engla/keybinder/tree/keybinder-3.0;
+license=('MIT')
+depends=('gtk3')
+makedepends=('gtk-doc' 'gobject-introspection')
+optdepends=('lua-lgi: lua bindings')
+source=(http://archive.ubuntu.com/ubuntu/pool/universe/k/keybinder-3.0/keybinder-3.0_${pkgver}.orig.tar.gz)
+sha1sums=('53167d295ffa1d356bfad6f9360b90bd85e8fb26')
+
+build() {
+  cd keybinder-3.0-${pkgver}
+  ./configure --prefix=/usr --enable-gtk-doc
+  make
+}
+
+package() {
+  cd keybinder-3.0-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-03-23 21:25:47 UTC (rev 208523)
+++ extra-x86_64/PKGBUILD   2014-03-23 21:26:50 UTC (rev 208524)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-# Contributor: speps speps at aur dot archlinux dot org
-
-pkgname=libkeybinder3
-pkgver=0.3.0
-pkgrel=3
-pkgdesc=A library for registering global keyboard shortcuts
-arch=('i686' 'x86_64')
-url=http://kaizer.se/wiki/keybinder/;
-license=('MIT')
-depends=('gtk3')
-makedepends=('gtk-doc' 'gobject-introspection')
-optdepends=('lua-lgi: lua bindings')
-source=(http://archive.ubuntu.com/ubuntu/pool/universe/k/keybinder-3.0/keybinder-3.0_${pkgver}.orig.tar.gz)
-sha1sums=('53167d295ffa1d356bfad6f9360b90bd85e8fb26')
-
-build() {
-  cd keybinder-3.0-${pkgver}
-  ./configure --prefix=/usr --enable-gtk-doc
-  make
-}
-
-package() {
-  cd keybinder-3.0-${pkgver}
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libkeybinder3/repos/extra-x86_64/PKGBUILD (from rev 208523, 
libkeybinder3/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-03-23 21:26:50 UTC (rev 208524)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+# Contributor: speps speps at aur dot archlinux dot org
+
+pkgname=libkeybinder3
+pkgver=0.3.0
+pkgrel=4
+pkgdesc=A library for registering global keyboard shortcuts
+arch=('i686' 'x86_64')
+url=https://github.com/engla/keybinder/tree/keybinder-3.0;
+license=('MIT')
+depends=('gtk3')
+makedepends=('gtk-doc' 'gobject-introspection')
+optdepends=('lua-lgi: lua bindings')
+source=(http://archive.ubuntu.com/ubuntu/pool/universe/k/keybinder-3.0/keybinder-3.0_${pkgver}.orig.tar.gz)
+sha1sums=('53167d295ffa1d356bfad6f9360b90bd85e8fb26')
+
+build() {
+  cd keybinder-3.0-${pkgver}
+  ./configure --prefix=/usr --enable-gtk-doc
+  make
+}
+
+package() {
+  

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

2014-03-23 Thread Eric Bélanger
Date: Sunday, March 23, 2014 @ 22:49:56
  Author: eric
Revision: 208525

upgpkg: libmodplug 0.8.8.5-1

Upstream update, Remove old patches

Modified:
  libmodplug/trunk/PKGBUILD
Deleted:
  libmodplug/trunk/libmodplug-CVE-2013-4233-Fix.patch
  libmodplug/trunk/libmodplug-CVE-2013-4234-Fix.patch

+
 PKGBUILD   |   17 +-
 libmodplug-CVE-2013-4233-Fix.patch |   42 ---
 libmodplug-CVE-2013-4234-Fix.patch |   95 ---
 3 files changed, 4 insertions(+), 150 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 21:26:50 UTC (rev 208524)
+++ PKGBUILD2014-03-23 21:49:56 UTC (rev 208525)
@@ -2,25 +2,16 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=libmodplug
-pkgver=0.8.8.4
-pkgrel=2
+pkgver=0.8.8.5
+pkgrel=1
 pkgdesc=A MOD playing library
 arch=('i686' 'x86_64')
 url=http://modplug-xmms.sourceforge.net/;
 license=('custom')
 depends=('gcc-libs')
-source=(http://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz
-libmodplug-CVE-2013-4233-Fix.patch libmodplug-CVE-2013-4234-Fix.patch)
-sha1sums=('df4deffe542b501070ccb0aee37d875ebb0c9e22'
-  'daee7fba80f633236a3d09ad19225c57013140e9'
-  '2e870747261a86dce5056cbf077c5914e9e8b287')
+source=(http://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('771ee75bb8bfcfe95eae434ed1f3b2c5b63b2cb3')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p2 -i ${srcdir}/libmodplug-CVE-2013-4233-Fix.patch
-  patch -p2 -i ${srcdir}/libmodplug-CVE-2013-4234-Fix.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr

Deleted: libmodplug-CVE-2013-4233-Fix.patch
===
--- libmodplug-CVE-2013-4233-Fix.patch  2014-03-23 21:26:50 UTC (rev 208524)
+++ libmodplug-CVE-2013-4233-Fix.patch  2014-03-23 21:49:56 UTC (rev 208525)
@@ -1,42 +0,0 @@
-From c4d4e047862649a75f6dba905c613aff0df81309 Mon Sep 17 00:00:00 2001
-From: Konstanty Bialkowski konsta...@ieee.org
-Date: Wed, 14 Aug 2013 14:15:27 +1000
-Subject: [PATCH] CVE-2013-4233 Fix
-
-Integer overflow in j variable
-
--- reported by Florian Agix Gaultier

- libmodplug/src/load_abc.cpp | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/libmodplug/src/load_abc.cpp b/libmodplug/src/load_abc.cpp
-index 9f4b328..ecb7b62 100644
 a/libmodplug/src/load_abc.cpp
-+++ b/libmodplug/src/load_abc.cpp
-@@ -1814,7 +1814,7 @@ static int abc_extract_tempo(const char *p, int invoice)
- 
- static void   abc_set_parts(char **d, char *p)
- {
--  int i,j,k,m,n;
-+  int i,j,k,m,n,size;
-   char *q;
- #ifdef NEWMIKMOD
-   static MM_ALLOC *h;
-@@ -1852,10 +1852,11 @@ static voidabc_set_parts(char **d, char *p)
-   i += n-1;
-   }
-   }
--  q = (char *)_mm_calloc(h, j+1, sizeof(char));   // enough storage for 
the worst case
-+  size = (j + 1)  0 ? j+1 : j;
-+  q = (char *)_mm_calloc(h, size, sizeof(char));  // enough storage for 
the worst case
-   // now copy bytes from p to *d, taking parens and digits in account
-   j = 0;
--  for( i=0; p[i]  p[i] != '%'; i++ ) {
-+  for( i=0; p[i]  p[i] != '%'  j  size; i++ ) {
-   if( isdigit(p[i]) || isupper(p[i]) || p[i] == '(' || p[i] == 
')' ) {
-   if( p[i] == ')' ) {
-   for( n=j; n  0  q[n-1] != '('; n-- ) ;   
// find open paren in q
--- 
-1.8.4
-

Deleted: libmodplug-CVE-2013-4234-Fix.patch
===
--- libmodplug-CVE-2013-4234-Fix.patch  2014-03-23 21:26:50 UTC (rev 208524)
+++ libmodplug-CVE-2013-4234-Fix.patch  2014-03-23 21:49:56 UTC (rev 208525)
@@ -1,95 +0,0 @@
-From 5de53a46283e7c463115444a9339978011dab961 Mon Sep 17 00:00:00 2001
-From: Konstanty Bialkowski konsta...@ieee.org
-Date: Wed, 14 Aug 2013 15:15:09 +1000
-Subject: [PATCH] CVE-2013-4234 Fix
-
-Heap overflow in abc_MIDI_drum + abc_MIDI_gchord
-
--- reported by Florian Agix Gaultier

- libmodplug/src/load_abc.cpp | 34 +++---
- 1 file changed, 23 insertions(+), 11 deletions(-)
-
-diff --git a/libmodplug/src/load_abc.cpp b/libmodplug/src/load_abc.cpp
-index ecb7b62..dd9cc6b 100644
 a/libmodplug/src/load_abc.cpp
-+++ b/libmodplug/src/load_abc.cpp
-@@ -3205,27 +3205,33 @@ static void abc_MIDI_chordname(const char *p)
- static int abc_MIDI_drum(const char *p, ABCHANDLE *h)
- {
-   char *q;
--  int i,n,m;
-+  int i, n, m, len;
-   while( isspace(*p) ) p++;
-   if( !strncmp(p,on,2)  (isspace(p[2]) || p[2] == '\0') ) return 2;
-   if( !strncmp(p,off,3)  (isspace(p[3]) || p[3] == '\0') ) return 1;
--  n = 0;
-+  n = 0; len = 0;
-   for( q = h-drum; *p  !isspace(*p); p++ ) {
-   if( 

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

2014-03-23 Thread Eric Bélanger
Date: Sunday, March 23, 2014 @ 22:51:07
  Author: eric
Revision: 208526

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

Added:
  libmodplug/repos/extra-i686/PKGBUILD
(from rev 208525, libmodplug/trunk/PKGBUILD)
  libmodplug/repos/extra-x86_64/PKGBUILD
(from rev 208525, libmodplug/trunk/PKGBUILD)
Deleted:
  libmodplug/repos/extra-i686/PKGBUILD
  libmodplug/repos/extra-i686/libmodplug-CVE-2013-4233-Fix.patch
  libmodplug/repos/extra-i686/libmodplug-CVE-2013-4234-Fix.patch
  libmodplug/repos/extra-x86_64/PKGBUILD
  libmodplug/repos/extra-x86_64/libmodplug-CVE-2013-4233-Fix.patch
  libmodplug/repos/extra-x86_64/libmodplug-CVE-2013-4234-Fix.patch

-+
 /PKGBUILD   |   50 +++
 extra-i686/PKGBUILD |   34 ---
 extra-i686/libmodplug-CVE-2013-4233-Fix.patch   |   42 -
 extra-i686/libmodplug-CVE-2013-4234-Fix.patch   |   95 --
 extra-x86_64/PKGBUILD   |   34 ---
 extra-x86_64/libmodplug-CVE-2013-4233-Fix.patch |   42 -
 extra-x86_64/libmodplug-CVE-2013-4234-Fix.patch |   95 --
 7 files changed, 50 insertions(+), 342 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-03-23 21:49:56 UTC (rev 208525)
+++ extra-i686/PKGBUILD 2014-03-23 21:51:07 UTC (rev 208526)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=libmodplug
-pkgver=0.8.8.4
-pkgrel=2
-pkgdesc=A MOD playing library
-arch=('i686' 'x86_64')
-url=http://modplug-xmms.sourceforge.net/;
-license=('custom')
-depends=('gcc-libs')
-source=(http://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz
-libmodplug-CVE-2013-4233-Fix.patch libmodplug-CVE-2013-4234-Fix.patch)
-sha1sums=('df4deffe542b501070ccb0aee37d875ebb0c9e22'
-  'daee7fba80f633236a3d09ad19225c57013140e9'
-  '2e870747261a86dce5056cbf077c5914e9e8b287')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  patch -p2 -i ${srcdir}/libmodplug-CVE-2013-4233-Fix.patch
-  patch -p2 -i ${srcdir}/libmodplug-CVE-2013-4234-Fix.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libmodplug/repos/extra-i686/PKGBUILD (from rev 208525, 
libmodplug/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-03-23 21:51:07 UTC (rev 208526)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=libmodplug
+pkgver=0.8.8.5
+pkgrel=1
+pkgdesc=A MOD playing library
+arch=('i686' 'x86_64')
+url=http://modplug-xmms.sourceforge.net/;
+license=('custom')
+depends=('gcc-libs')
+source=(http://downloads.sourceforge.net/modplug-xmms/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('771ee75bb8bfcfe95eae434ed1f3b2c5b63b2cb3')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-i686/libmodplug-CVE-2013-4233-Fix.patch
===
--- extra-i686/libmodplug-CVE-2013-4233-Fix.patch   2014-03-23 21:49:56 UTC 
(rev 208525)
+++ extra-i686/libmodplug-CVE-2013-4233-Fix.patch   2014-03-23 21:51:07 UTC 
(rev 208526)
@@ -1,42 +0,0 @@
-From c4d4e047862649a75f6dba905c613aff0df81309 Mon Sep 17 00:00:00 2001
-From: Konstanty Bialkowski konsta...@ieee.org
-Date: Wed, 14 Aug 2013 14:15:27 +1000
-Subject: [PATCH] CVE-2013-4233 Fix
-
-Integer overflow in j variable
-
--- reported by Florian Agix Gaultier

- libmodplug/src/load_abc.cpp | 7 ---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/libmodplug/src/load_abc.cpp b/libmodplug/src/load_abc.cpp
-index 9f4b328..ecb7b62 100644
 a/libmodplug/src/load_abc.cpp
-+++ b/libmodplug/src/load_abc.cpp
-@@ -1814,7 +1814,7 @@ static int abc_extract_tempo(const char *p, int invoice)
- 
- static void   abc_set_parts(char **d, char *p)
- {
--  int i,j,k,m,n;
-+  int i,j,k,m,n,size;
-   char *q;
- #ifdef NEWMIKMOD
-   static MM_ALLOC *h;
-@@ -1852,10 +1852,11 @@ static voidabc_set_parts(char **d, char *p)
-   i += n-1;
-   }
-   }
--  q = (char *)_mm_calloc(h, j+1, sizeof(char));   // enough storage for 
the worst case
-+  size = (j + 1)  0 ? j+1 : j;
-+  q = (char *)_mm_calloc(h, size, sizeof(char));  // enough storage for 
the worst case
-   // now copy bytes from p to *d, taking parens and digits in account
-   j = 0;
--  for( i=0; p[i]  p[i] != '%'; i++ ) {
-+ 

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

2014-03-23 Thread Gaetan Bisson
Date: Monday, March 24, 2014 @ 01:56:41
  Author: bisson
Revision: 108146

upstream update

Modified:
  subsurface/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 21:02:34 UTC (rev 108145)
+++ PKGBUILD2014-03-24 00:56:41 UTC (rev 108146)
@@ -4,7 +4,7 @@
 
 pkgname=subsurface
 _pkgname=Subsurface
-pkgver=4.0.2
+pkgver=4.0.3
 pkgrel=1
 pkgdesc='Divelog program'
 url='http://subsurface.hohndel.org/'
@@ -12,7 +12,7 @@
 arch=('i686' 'x86_64')
 depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
 source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('14370c2e91f82a6df32d44e2a0a4b20908c74465')
+sha1sums=('f813196bbef98130b1fcb778baf6b504ec01a1eb')
 
 build() {
cd ${srcdir}/${_pkgname}-${pkgver}



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

2014-03-23 Thread Gaetan Bisson
Date: Monday, March 24, 2014 @ 01:57:29
  Author: bisson
Revision: 108147

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

Added:
  subsurface/repos/community-i686/PKGBUILD
(from rev 108146, subsurface/trunk/PKGBUILD)
  subsurface/repos/community-x86_64/PKGBUILD
(from rev 108146, subsurface/trunk/PKGBUILD)
Deleted:
  subsurface/repos/community-i686/PKGBUILD
  subsurface/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   52 
 community-i686/PKGBUILD   |   26 --
 community-x86_64/PKGBUILD |   26 --
 3 files changed, 52 insertions(+), 52 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-24 00:56:41 UTC (rev 108146)
+++ community-i686/PKGBUILD 2014-03-24 00:57:29 UTC (rev 108147)
@@ -1,26 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne fboulogne at april dot org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=subsurface
-_pkgname=Subsurface
-pkgver=4.0.2
-pkgrel=1
-pkgdesc='Divelog program'
-url='http://subsurface.hohndel.org/'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
-source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('14370c2e91f82a6df32d44e2a0a4b20908c74465')
-
-build() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   qmake-qt4 -config release
-   make
-}
-
-package() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   make INSTALL_ROOT=${pkgdir} install
-} 

Copied: subsurface/repos/community-i686/PKGBUILD (from rev 108146, 
subsurface/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-24 00:57:29 UTC (rev 108147)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: Francois Boulogne fboulogne at april dot org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.0.3
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface.hohndel.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
+source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('f813196bbef98130b1fcb778baf6b504ec01a1eb')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   qmake-qt4 -config release
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   make INSTALL_ROOT=${pkgdir} install
+} 

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-24 00:56:41 UTC (rev 108146)
+++ community-x86_64/PKGBUILD   2014-03-24 00:57:29 UTC (rev 108147)
@@ -1,26 +0,0 @@
-# $Id$
-# Contributor: Francois Boulogne fboulogne at april dot org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=subsurface
-_pkgname=Subsurface
-pkgver=4.0.2
-pkgrel=1
-pkgdesc='Divelog program'
-url='http://subsurface.hohndel.org/'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
-source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
-sha1sums=('14370c2e91f82a6df32d44e2a0a4b20908c74465')
-
-build() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   qmake-qt4 -config release
-   make
-}
-
-package() {
-   cd ${srcdir}/${_pkgname}-${pkgver}
-   make INSTALL_ROOT=${pkgdir} install
-} 

Copied: subsurface/repos/community-x86_64/PKGBUILD (from rev 108146, 
subsurface/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-03-24 00:57:29 UTC (rev 108147)
@@ -0,0 +1,26 @@
+# $Id$
+# Contributor: Francois Boulogne fboulogne at april dot org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=subsurface
+_pkgname=Subsurface
+pkgver=4.0.3
+pkgrel=1
+pkgdesc='Divelog program'
+url='http://subsurface.hohndel.org/'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('qt4' 'kdeedu-marble' 'libzip' 'libxml2' 'libxslt' 'sqlite' 
'libdivecomputer' 'libusbx')
+source=(http://subsurface.hohndel.org/downloads/${_pkgname}-${pkgver}.tgz;)
+sha1sums=('f813196bbef98130b1fcb778baf6b504ec01a1eb')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   qmake-qt4 -config release
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   make INSTALL_ROOT=${pkgdir} install
+} 



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

2014-03-23 Thread Felix Yan
Date: Monday, March 24, 2014 @ 05:24:48
  Author: fyan
Revision: 208527

upgpkg: swig 3.0.0-1

- upstreams claims to have backward incompatibility, need more test before 
moving. FYI https://github.com/swig/swig/blob/master/CHANGES

Modified:
  swig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-23 21:51:07 UTC (rev 208526)
+++ PKGBUILD2014-03-24 04:24:48 UTC (rev 208527)
@@ -1,9 +1,10 @@
 # $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=swig
-pkgver=2.0.12
+pkgver=3.0.0
 pkgrel=1
 pkgdesc=Generate scripting interfaces to C/C++ code
 arch=('i686' 'x86_64')
@@ -10,8 +11,9 @@
 url=http://www.swig.org/;
 license=('custom')
 depends=('pcre' 'gcc-libs')
+#checkdepends=('ruby' 'python' 'python2' 'java-environment' 'tcl' 'php' 'lua' 
'ocaml' 'r' 'go')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('4203c68f79012a2951f542018ff4358d838b5035')
+sha1sums=('10a1cc5ba6abbc7282b8146ccc0d8eefe233bfab')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -19,6 +21,14 @@
   make
 }
 
+# Testcases fail a LOT...
+EOF
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+EOF
+
 package() {
   cd ${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install



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

2014-03-23 Thread Felix Yan
Date: Monday, March 24, 2014 @ 05:25:53
  Author: fyan
Revision: 208528

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

Added:
  swig/repos/testing-i686/
  swig/repos/testing-i686/PKGBUILD
(from rev 208527, swig/trunk/PKGBUILD)
  swig/repos/testing-x86_64/
  swig/repos/testing-x86_64/PKGBUILD
(from rev 208527, swig/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   37 +
 testing-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: swig/repos/testing-i686/PKGBUILD (from rev 208527, swig/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-03-24 04:25:53 UTC (rev 208528)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=swig
+pkgver=3.0.0
+pkgrel=1
+pkgdesc=Generate scripting interfaces to C/C++ code
+arch=('i686' 'x86_64')
+url=http://www.swig.org/;
+license=('custom')
+depends=('pcre' 'gcc-libs')
+#checkdepends=('ruby' 'python' 'python2' 'java-environment' 'tcl' 'php' 'lua' 
'ocaml' 'r' 'go')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('10a1cc5ba6abbc7282b8146ccc0d8eefe233bfab')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+# Testcases fail a LOT...
+EOF
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+EOF
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  install -D -m644 LICENSE-UNIVERSITIES 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-UNIVERSITIES
+}

Copied: swig/repos/testing-x86_64/PKGBUILD (from rev 208527, 
swig/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-03-24 04:25:53 UTC (rev 208528)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=swig
+pkgver=3.0.0
+pkgrel=1
+pkgdesc=Generate scripting interfaces to C/C++ code
+arch=('i686' 'x86_64')
+url=http://www.swig.org/;
+license=('custom')
+depends=('pcre' 'gcc-libs')
+#checkdepends=('ruby' 'python' 'python2' 'java-environment' 'tcl' 'php' 'lua' 
'ocaml' 'r' 'go')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('10a1cc5ba6abbc7282b8146ccc0d8eefe233bfab')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+# Testcases fail a LOT...
+EOF
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+EOF
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  install -D -m644 LICENSE-UNIVERSITIES 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-UNIVERSITIES
+}



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

2014-03-23 Thread Felix Yan
Date: Monday, March 24, 2014 @ 06:53:43
  Author: fyan
Revision: 108148

upgpkg: aria2 1.18.4-1

Modified:
  aria2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-24 00:57:29 UTC (rev 108147)
+++ PKGBUILD2014-03-24 05:53:43 UTC (rev 108148)
@@ -6,7 +6,7 @@
 # Contributor: Daniel J Griffiths ghost1...@archlinux.us
 
 pkgname=aria2
-pkgver=1.18.3
+pkgver=1.18.4
 pkgrel=1
 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
 checkdepends=('cppunit')
 source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('014706c67406be380384484635ca2e811b405c876f0bbcf7a31be79df392d84d')
+sha256sums=('bc6b9d1eb215bba1948ebb7725301658f7125c7345d2a25f971cb8e11204c88d')
 
 build() {
   cd $pkgname-$pkgver



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

2014-03-23 Thread Felix Yan
Date: Monday, March 24, 2014 @ 06:54:46
  Author: fyan
Revision: 108149

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

Added:
  aria2/repos/community-i686/PKGBUILD
(from rev 108148, aria2/trunk/PKGBUILD)
  aria2/repos/community-x86_64/PKGBUILD
(from rev 108148, aria2/trunk/PKGBUILD)
Deleted:
  aria2/repos/community-i686/PKGBUILD
  aria2/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   44 --
 community-x86_64/PKGBUILD |   44 --
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-03-24 05:53:43 UTC (rev 108148)
+++ community-i686/PKGBUILD 2014-03-24 05:54:46 UTC (rev 108149)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=aria2
-pkgver=1.18.3
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
-checkdepends=('cppunit')
-source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('014706c67406be380384484635ca2e811b405c876f0bbcf7a31be79df392d84d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # add bash completion
-  install -d $pkgdir/usr/share/bash-completion/completions
-  install -m644 $pkgdir/usr/share/doc/aria2/bash_completion/aria2c \
-$pkgdir/usr/share/bash-completion/completions
-  rm -rf $pkgdir/usr/share/doc/aria2/bash_completion
-}

Copied: aria2/repos/community-i686/PKGBUILD (from rev 108148, 
aria2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-03-24 05:54:46 UTC (rev 108149)
@@ -0,0 +1,44 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=aria2
+pkgver=1.18.4
+pkgrel=1
+pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
+arch=('i686' 'x86_64')
+url='http://aria2.sourceforge.net/'
+license=('GPL')
+depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
+checkdepends=('cppunit')
+source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
+sha256sums=('bc6b9d1eb215bba1948ebb7725301658f7125c7345d2a25f971cb8e11204c88d')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # add bash completion
+  install -d $pkgdir/usr/share/bash-completion/completions
+  install -m644 $pkgdir/usr/share/doc/aria2/bash_completion/aria2c \
+$pkgdir/usr/share/bash-completion/completions
+  rm -rf $pkgdir/usr/share/doc/aria2/bash_completion
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-03-24 05:53:43 UTC (rev 108148)
+++ community-x86_64/PKGBUILD   2014-03-24 05:54:46 UTC (rev 108149)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=aria2
-pkgver=1.18.3
-pkgrel=1
-pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink'
-arch=('i686' 'x86_64')
-url='http://aria2.sourceforge.net/'
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite' 'c-ares' 'ca-certificates')
-checkdepends=('cppunit')
-source=(http://downloads.sourceforge.net/aria2/aria2-$pkgver.tar.xz)
-sha256sums=('014706c67406be380384484635ca2e811b405c876f0bbcf7a31be79df392d84d')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
-
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir