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

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 09:02:17
  Author: andrea
Revision: 22

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

Added:
  cmake/repos/staging-i686/
  cmake/repos/staging-i686/PKGBUILD
(from rev 227776, cmake/trunk/PKGBUILD)
  cmake/repos/staging-i686/cmake.install
(from rev 227776, cmake/trunk/cmake.install)
  cmake/repos/staging-x86_64/
  cmake/repos/staging-x86_64/PKGBUILD
(from rev 227776, cmake/trunk/PKGBUILD)
  cmake/repos/staging-x86_64/cmake.install
(from rev 227776, cmake/trunk/cmake.install)

--+
 staging-i686/PKGBUILD|   54 +
 staging-i686/cmake.install   |   12 +
 staging-x86_64/PKGBUILD  |   54 +
 staging-x86_64/cmake.install |   12 +
 4 files changed, 132 insertions(+)

Copied: cmake/repos/staging-i686/PKGBUILD (from rev 227776, 
cmake/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-19 08:02:17 UTC (rev 22)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=cmake
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url=http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+install=${pkgname}.install
+source=(http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('188eb7dc9b1b82b363bc51c0d3f1d461')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -d ${vimpath}/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
+${vimpath}/help/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
+${vimpath}/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
+${vimpath}/syntax/
+
+  install -d ${pkgdir}/usr/share/emacs/site-lisp/
+  emacs -batch -f batch-byte-compile \
+${pkgdir}/usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/emacs/cmake-mode.el \
+${pkgdir}/usr/share/emacs/site-lisp/
+
+  install -Dm644 Copyright.txt \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: cmake/repos/staging-i686/cmake.install (from rev 227776, 
cmake/trunk/cmake.install)
===
--- staging-i686/cmake.install  (rev 0)
+++ staging-i686/cmake.install  2014-12-19 08:02:17 UTC (rev 22)
@@ -0,0 +1,12 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+[[ -x usr/bin/update-desktop-database ]]  update-desktop-database -q || 
true
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: cmake/repos/staging-x86_64/PKGBUILD (from rev 227776, 
cmake/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-12-19 08:02:17 UTC (rev 22)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=cmake
+pkgver=3.1.0
+pkgrel=1
+pkgdesc='A cross-platform open-source make system'
+arch=('i686' 'x86_64')
+url=http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info')
+makedepends=('qt5-base' 'python-sphinx' 'emacs')
+optdepends=('qt5-base: cmake-gui'
+'libxkbcommon-x11: cmake-gui')
+install=${pkgname}.install
+source=(http://www.cmake.org/files/v${pkgver%.*}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('188eb7dc9b1b82b363bc51c0d3f1d461')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--sphinx-man \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -d ${vimpath}/{help,indent,syntax}
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-help.vim \
+${vimpath}/help/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-indent.vim \
+${vimpath}/indent/
+  ln -s /usr/share/cmake-${pkgver%.*}/editors/vim/cmake-syntax.vim \
+ 

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

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 09:06:58
  Author: andrea
Revision: 227778

upgpkg: quazip 0.7-2

cmake rebuild

Modified:
  quazip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 08:02:17 UTC (rev 22)
+++ PKGBUILD2014-12-19 08:06:58 UTC (rev 227778)
@@ -4,7 +4,7 @@
 
 pkgname=quazip
 pkgver=0.7
-pkgrel=1
+pkgrel=2
 pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
 url=http://sourceforge.net/projects/quazip/;
 license=('LGPL')
@@ -23,7 +23,7 @@
   cd ${pkgname}-${pkgver}/${pkgname}
   make INSTALL_ROOT=${pkgdir} install
 
-  install -d ${pkgdir}/usr/share/cmake-3.0/Modules
+  install -d ${pkgdir}/usr/share/cmake-3.1/Modules
   install -m644 ../FindQuaZip.cmake\
-${pkgdir}/usr/share/cmake-3.0/Modules
+${pkgdir}/usr/share/cmake-3.1/Modules
 }


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

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 09:07:06
  Author: andrea
Revision: 227779

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

Added:
  quazip/repos/staging-i686/
  quazip/repos/staging-i686/PKGBUILD
(from rev 227778, quazip/trunk/PKGBUILD)
  quazip/repos/staging-x86_64/
  quazip/repos/staging-x86_64/PKGBUILD
(from rev 227778, quazip/trunk/PKGBUILD)

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

Copied: quazip/repos/staging-i686/PKGBUILD (from rev 227778, 
quazip/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-19 08:07:06 UTC (rev 227779)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: trya tryagainp...@gmail.com
+
+pkgname=quazip
+pkgver=0.7
+pkgrel=2
+pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
+url=http://sourceforge.net/projects/quazip/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('qt4')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('52a9d807934ce4e9c30ead677a3148d2')
+
+build() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  make INSTALL_ROOT=${pkgdir} install
+
+  install -d ${pkgdir}/usr/share/cmake-3.1/Modules
+  install -m644 ../FindQuaZip.cmake\
+${pkgdir}/usr/share/cmake-3.1/Modules
+}

Copied: quazip/repos/staging-x86_64/PKGBUILD (from rev 227778, 
quazip/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-12-19 08:07:06 UTC (rev 227779)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: trya tryagainp...@gmail.com
+
+pkgname=quazip
+pkgver=0.7
+pkgrel=2
+pkgdesc=C++ wrapper for the Gilles Vollant's ZIP/UNZIP C package
+url=http://sourceforge.net/projects/quazip/;
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('qt4')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('52a9d807934ce4e9c30ead677a3148d2')
+
+build() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  qmake-qt4 PREFIX=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/${pkgname}
+  make INSTALL_ROOT=${pkgdir} install
+
+  install -d ${pkgdir}/usr/share/cmake-3.1/Modules
+  install -m644 ../FindQuaZip.cmake\
+${pkgdir}/usr/share/cmake-3.1/Modules
+}


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

2014-12-19 Thread Massimiliano Torromeo
Date: Friday, December 19, 2014 @ 09:36:37
  Author: mtorromeo
Revision: 124097

upgpkg: libuv 1.0.2-1

Updated to 1.0.2

Modified:
  libuv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 05:24:03 UTC (rev 124096)
+++ PKGBUILD2014-12-19 08:36:37 UTC (rev 124097)
@@ -2,7 +2,7 @@
 # Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
 
 pkgname=libuv
-pkgver=1.0.1
+pkgver=1.0.2
 pkgrel=1
 pkgdesc=A new platform layer for Node.JS
 arch=('i686' 'x86_64')
@@ -38,4 +38,4 @@
$pkgdir/usr/share/doc/$pkgname/ChangeLog
 }
 
-sha256sums=('9e4852f5fb430ce66a9b23d1bbf2e65ac2cd63873742f18edbc59e213260e1b0')
+sha256sums=('5f12b66942d9df302c826c869fed1aabc1959fced8c67cdd8c0e2a98c1185b42')


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

2014-12-19 Thread Massimiliano Torromeo
Date: Friday, December 19, 2014 @ 09:37:05
  Author: mtorromeo
Revision: 124098

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-19 08:36:37 UTC (rev 124097)
+++ community-i686/PKGBUILD 2014-12-19 08:37:05 UTC (rev 124098)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=libuv
-pkgver=1.0.1
-pkgrel=1
-pkgdesc=A new platform layer for Node.JS
-arch=('i686' 'x86_64')
-url=https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc')
-source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-
-   make DESTDIR=$pkgdir install
-
-   install -Dm644 LICENSE \
-   $pkgdir/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   $pkgdir/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   $pkgdir/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   $pkgdir/usr/share/doc/$pkgname/ChangeLog
-}
-
-sha256sums=('9e4852f5fb430ce66a9b23d1bbf2e65ac2cd63873742f18edbc59e213260e1b0')

Copied: libuv/repos/community-i686/PKGBUILD (from rev 124097, 
libuv/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 08:37:05 UTC (rev 124098)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
+
+pkgname=libuv
+pkgver=1.0.2
+pkgrel=1
+pkgdesc=A new platform layer for Node.JS
+arch=('i686' 'x86_64')
+url=https://github.com/libuv/libuv;
+license=('custom')
+depends=('glibc')
+source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   ./autogen.sh
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd $srcdir/$pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+
+   make DESTDIR=$pkgdir install
+
+   install -Dm644 LICENSE \
+   $pkgdir/usr/share/licenses/$pkgname/LICENSE
+   install -Dm644 AUTHORS \
+   $pkgdir/usr/share/doc/$pkgname/AUTHORS
+   install -Dm644 README.md \
+   $pkgdir/usr/share/doc/$pkgname/README.md
+   install -Dm644 ChangeLog \
+   $pkgdir/usr/share/doc/$pkgname/ChangeLog
+}
+
+sha256sums=('5f12b66942d9df302c826c869fed1aabc1959fced8c67cdd8c0e2a98c1185b42')

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 08:36:37 UTC (rev 124097)
+++ community-x86_64/PKGBUILD   2014-12-19 08:37:05 UTC (rev 124098)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-
-pkgname=libuv
-pkgver=1.0.1
-pkgrel=1
-pkgdesc=A new platform layer for Node.JS
-arch=('i686' 'x86_64')
-url=https://github.com/libuv/libuv;
-license=('custom')
-depends=('glibc')
-source=(https://github.com/libuv/libuv/archive/v$pkgver.tar.gz;)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   ./autogen.sh
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-
-   make DESTDIR=$pkgdir install
-
-   install -Dm644 LICENSE \
-   $pkgdir/usr/share/licenses/$pkgname/LICENSE
-   install -Dm644 AUTHORS \
-   $pkgdir/usr/share/doc/$pkgname/AUTHORS
-   install -Dm644 README.md \
-   $pkgdir/usr/share/doc/$pkgname/README.md
-   install -Dm644 ChangeLog \
-   $pkgdir/usr/share/doc/$pkgname/ChangeLog
-}
-
-sha256sums=('9e4852f5fb430ce66a9b23d1bbf2e65ac2cd63873742f18edbc59e213260e1b0')

Copied: libuv/repos/community-x86_64/PKGBUILD (from rev 124097, 
libuv/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 08:37:05 UTC (rev 124098)
@@ -0,0 +1,41 @@
+# $Id$
+# 

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

2014-12-19 Thread Allan McRae
Date: Friday, December 19, 2014 @ 12:10:20
  Author: allan
Revision: 227781

upgpkg: pacman 4.2.0-1

upstream update

Modified:
  pacman/trunk/PKGBUILD
Deleted:
  pacman/trunk/0001-pacman-key-compatibility-with-gnupg-2.1.patch

+
 0001-pacman-key-compatibility-with-gnupg-2.1.patch |   27 ---
 PKGBUILD   |   15 ++
 2 files changed, 4 insertions(+), 38 deletions(-)

Deleted: 0001-pacman-key-compatibility-with-gnupg-2.1.patch
===
--- 0001-pacman-key-compatibility-with-gnupg-2.1.patch  2014-12-19 10:31:10 UTC 
(rev 227780)
+++ 0001-pacman-key-compatibility-with-gnupg-2.1.patch  2014-12-19 11:10:20 UTC 
(rev 227781)
@@ -1,27 +0,0 @@
-From 41c8263ba289dac191d7f74faaa62476baf41c28 Mon Sep 17 00:00:00 2001
-From: Tobias Powalowski tp...@archlinux.org
-Date: Fri, 21 Nov 2014 20:54:58 +1000
-Subject: [PATCH] pacman-key: compatibility with gnupg-2.1
-
-GnuPG 2.1 no longer allow empty passphrases by default.
-
-Signed-off-by: Allan McRae al...@archlinux.org

- scripts/pacman-key.sh.in | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
-index ba8d02e..5ba0ad8 100644
 a/scripts/pacman-key.sh.in
-+++ b/scripts/pacman-key.sh.in
-@@ -151,6 +151,7 @@ Key-Usage: sign
- Name-Real: Pacman Keyring Master Key
- Name-Email: pacman@localhost
- Expire-Date: 0
-+%no-protection
- %commit
- %echo Done
- EOF
--- 
-2.1.3
-

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 10:31:10 UTC (rev 227780)
+++ PKGBUILD2014-12-19 11:10:20 UTC (rev 227781)
@@ -4,14 +4,14 @@
 # Maintainer: Dave Reisner dreis...@archlinux.org
 
 pkgname=pacman
-pkgver=4.1.2
-pkgrel=7
+pkgver=4.2.0
+pkgrel=1
 pkgdesc=A library-based package manager with dependency support
 arch=('i686' 'x86_64')
 url=http://www.archlinux.org/pacman/;
 license=('GPL')
 groups=('base' 'base-devel')
-depends=('bash=4.2.042-2' 'glibc=2.17-2' 'libarchive=3.1.2' 'curl=7.19.4'
+depends=('bash' 'glibc' 'libarchive=3.1.2' 'curl=7.39.0'
  'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
 checkdepends=('python2' 'fakechroot')
 optdepends=('fakeroot: for makepkg usage as normal user')
@@ -21,23 +21,16 @@
 backup=(etc/pacman.conf etc/makepkg.conf)
 options=('strip' 'debug')
 source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
-   0001-pacman-key-compatibility-with-gnupg-2.1.patch
 pacman.conf.i686
 pacman.conf.x86_64
 makepkg.conf)
-md5sums=('063c8b0ff6bdf903dc235445525627cd'
+md5sums=('184ce14f1f326fede72012cca51bba51'
  'SKIP'
- 'd0e015b1bf78cbf9762d9c44ea5f77a9'
  '2db6c94709bb30cc614a176ecf8badb1'
  'de74a13618347f08ae4a9637f74471c4'
  '2da6544e387f940588a90cb4b9b914e2')
 validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 
al...@archlinux.org
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i $srcdir/0001-pacman-key-compatibility-with-gnupg-2.1.patch
-}
-
 build() {
   cd $pkgname-$pkgver
 


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

2014-12-19 Thread Allan McRae
Date: Friday, December 19, 2014 @ 12:11:55
  Author: allan
Revision: 227782

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

Added:
  pacman/repos/testing-i686/
  pacman/repos/testing-i686/PKGBUILD
(from rev 227781, pacman/trunk/PKGBUILD)
  pacman/repos/testing-i686/makepkg.conf
(from rev 227781, pacman/trunk/makepkg.conf)
  pacman/repos/testing-i686/pacman.conf.i686
(from rev 227781, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-i686/pacman.conf.x86_64
(from rev 227781, pacman/trunk/pacman.conf.x86_64)
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 227781, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 227781, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman.conf.i686
(from rev 227781, pacman/trunk/pacman.conf.i686)
  pacman/repos/testing-x86_64/pacman.conf.x86_64
(from rev 227781, pacman/trunk/pacman.conf.x86_64)

---+
 testing-i686/PKGBUILD |   89 ++
 testing-i686/makepkg.conf |  140 
 testing-i686/pacman.conf.i686 |   90 +++
 testing-i686/pacman.conf.x86_64   |   99 +
 testing-x86_64/PKGBUILD   |   89 ++
 testing-x86_64/makepkg.conf   |  140 
 testing-x86_64/pacman.conf.i686   |   90 +++
 testing-x86_64/pacman.conf.x86_64 |   99 +
 8 files changed, 836 insertions(+)

Copied: pacman/repos/testing-i686/PKGBUILD (from rev 227781, 
pacman/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-19 11:11:55 UTC (rev 227782)
@@ -0,0 +1,89 @@
+# vim: set ts=2 sw=2 et:
+# $Id$
+# Maintainer: Dan McGee d...@archlinux.org
+# Maintainer: Dave Reisner dreis...@archlinux.org
+
+pkgname=pacman
+pkgver=4.2.0
+pkgrel=1
+pkgdesc=A library-based package manager with dependency support
+arch=('i686' 'x86_64')
+url=http://www.archlinux.org/pacman/;
+license=('GPL')
+groups=('base' 'base-devel')
+depends=('bash' 'glibc' 'libarchive=3.1.2' 'curl=7.39.0'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+checkdepends=('python2' 'fakechroot')
+optdepends=('fakeroot: for makepkg usage as normal user')
+provides=('pacman-contrib')
+conflicts=('pacman-contrib')
+replaces=('pacman-contrib')
+backup=(etc/pacman.conf etc/makepkg.conf)
+options=('strip' 'debug')
+source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf.i686
+pacman.conf.x86_64
+makepkg.conf)
+md5sums=('184ce14f1f326fede72012cca51bba51'
+ 'SKIP'
+ '2db6c94709bb30cc614a176ecf8badb1'
+ 'de74a13618347f08ae4a9637f74471c4'
+ '2da6544e387f940588a90cb4b9b914e2')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD')  # Allan McRae 
al...@archlinux.org
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make
+  make -C contrib
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C contrib install
+
+  # install Arch specific stuff
+  install -dm755 $pkgdir/etc
+  install -m644 $srcdir/pacman.conf.$CARCH $pkgdir/etc/pacman.conf
+
+  case $CARCH in
+i686)
+  mycarch=i686
+  mychost=i686-pc-linux-gnu
+  myflags=-march=i686
+  ;;
+x86_64)
+  mycarch=x86_64
+  mychost=x86_64-unknown-linux-gnu
+  myflags=-march=x86-64
+  ;;
+  esac
+
+  # set things correctly in the default conf file
+  install -m644 $srcdir/makepkg.conf $pkgdir/etc
+  sed -i $pkgdir/etc/makepkg.conf \
+-e s|@CARCH[@]|$mycarch|g \
+-e s|@CHOST[@]|$mychost|g \
+-e s|@CARCHFLAGS[@]|$myflags|g
+
+  # put bash_completion in the right location
+  install -dm755 $pkgdir/usr/share/bash-completion/completions
+  mv $pkgdir/etc/bash_completion.d/pacman 
$pkgdir/usr/share/bash-completion/completions
+  rmdir $pkgdir/etc/bash_completion.d
+
+  for f in makepkg pacman-key; do
+ln -s pacman $pkgdir/usr/share/bash-completion/completions/$f
+  done
+
+  install -Dm644 contrib/PKGBUILD.vim 
$pkgdir/usr/share/vim/vimfiles/syntax/PKGBUILD.vim
+}

Copied: pacman/repos/testing-i686/makepkg.conf (from rev 227781, 
pacman/trunk/makepkg.conf)
===
--- testing-i686/makepkg.conf   (rev 0)
+++ testing-i686/makepkg.conf   2014-12-19 11:11:55 UTC (rev 227782)
@@ -0,0 +1,140 @@
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION

[arch-commits] Commit in plex-home-theater/trunk (PKGBUILD)

2014-12-19 Thread Maxime Gauduin
Date: Friday, December 19, 2014 @ 12:25:07
  Author: alucryd
Revision: 124099

upgpkg: plex-home-theater 1.3.3.427-1

Modified:
  plex-home-theater/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 08:37:05 UTC (rev 124098)
+++ PKGBUILD2014-12-19 11:25:07 UTC (rev 124099)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Wallace daniel.wall...@gatech.edu
 
 pkgname=plex-home-theater
-_pkgver=1.3.2.417-04be1687
+_pkgver=1.3.3.427-1fa83b88
 pkgver=${_pkgver%-*}
 pkgrel=1
 pkgdesc='Plex Home Theater'
@@ -25,7 +25,7 @@
 'plex-libcec-2.2.0.patch'
 'plex-lirc-socket.patch'
 'plexhometheater.sh')
-sha256sums=('6896f3e00852d7afc5bb6f773196b967db975c30678d4ed37b33bf256bc27c1d'
+sha256sums=('f119d11e13ce2ea8a31805a5ea91b65d95f0fc9370d49d8da51bda1e028b564c'
 '5b370e4dec6998130df46ad6bd5ca6258e3a040dd6c6cc4085c335dc3d6050bd'
 '13032e8da35b0abdd22109f9ee34c63e43e0f9863fe81d4fa503c05ede23a212'
 '630070125ad5239163d89fed5bf7f83abf4a411ac3e24aa2e41f99c5c3c8fb7f'
@@ -63,6 +63,7 @@
   install -dm 755 
${pkgdir}/usr/{lib/plexhometheater,share/{applications,pixmaps}}
   mv ${pkgdir}/usr/bin/{system,xbmc-xrandr} 
${pkgdir}/usr/lib/plexhometheater/
   mv ${pkgdir}/usr/share/XBMC ${pkgdir}/usr/share/plexhometheater
+  rm -rf ${pkgdir}/usr/bin/*.so
   install -m 755 ${srcdir}/plexhometheater.sh ${pkgdir}/usr/bin/
   install -m 644 ../plex/Resources/plexhometheater.desktop 
${pkgdir}/usr/share/applications/
   install -m 644 ../plex/Resources/plex-icon-256.png 
${pkgdir}/usr/share/pixmaps/plexhometheater.png


[arch-commits] Commit in plex-home-theater/repos (20 files)

2014-12-19 Thread Maxime Gauduin
Date: Friday, December 19, 2014 @ 12:25:36
  Author: alucryd
Revision: 124100

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

Added:
  plex-home-theater/repos/community-i686/PKGBUILD
(from rev 124099, plex-home-theater/trunk/PKGBUILD)
  plex-home-theater/repos/community-i686/plex-ffmpeg-compat.patch
(from rev 124099, plex-home-theater/trunk/plex-ffmpeg-compat.patch)
  plex-home-theater/repos/community-i686/plex-libcec-2.2.0.patch
(from rev 124099, plex-home-theater/trunk/plex-libcec-2.2.0.patch)
  plex-home-theater/repos/community-i686/plex-lirc-socket.patch
(from rev 124099, plex-home-theater/trunk/plex-lirc-socket.patch)
  plex-home-theater/repos/community-i686/plexhometheater.sh
(from rev 124099, plex-home-theater/trunk/plexhometheater.sh)
  plex-home-theater/repos/community-x86_64/PKGBUILD
(from rev 124099, plex-home-theater/trunk/PKGBUILD)
  plex-home-theater/repos/community-x86_64/plex-ffmpeg-compat.patch
(from rev 124099, plex-home-theater/trunk/plex-ffmpeg-compat.patch)
  plex-home-theater/repos/community-x86_64/plex-libcec-2.2.0.patch
(from rev 124099, plex-home-theater/trunk/plex-libcec-2.2.0.patch)
  plex-home-theater/repos/community-x86_64/plex-lirc-socket.patch
(from rev 124099, plex-home-theater/trunk/plex-lirc-socket.patch)
  plex-home-theater/repos/community-x86_64/plexhometheater.sh
(from rev 124099, plex-home-theater/trunk/plexhometheater.sh)
Deleted:
  plex-home-theater/repos/community-i686/PKGBUILD
  plex-home-theater/repos/community-i686/plex-ffmpeg-compat.patch
  plex-home-theater/repos/community-i686/plex-libcec-2.2.0.patch
  plex-home-theater/repos/community-i686/plex-lirc-socket.patch
  plex-home-theater/repos/community-i686/plexhometheater.sh
  plex-home-theater/repos/community-x86_64/PKGBUILD
  plex-home-theater/repos/community-x86_64/plex-ffmpeg-compat.patch
  plex-home-theater/repos/community-x86_64/plex-libcec-2.2.0.patch
  plex-home-theater/repos/community-x86_64/plex-lirc-socket.patch
  plex-home-theater/repos/community-x86_64/plexhometheater.sh

---+
 /PKGBUILD |  144 +
 /plex-ffmpeg-compat.patch |   58 +++
 /plex-libcec-2.2.0.patch  |  228 
 /plex-lirc-socket.patch   |  112 +
 /plexhometheater.sh   |   10 +
 community-i686/PKGBUILD   |   71 
 community-i686/plex-ffmpeg-compat.patch   |   29 ---
 community-i686/plex-libcec-2.2.0.patch|  114 --
 community-i686/plex-lirc-socket.patch |   56 --
 community-i686/plexhometheater.sh |5 
 community-x86_64/PKGBUILD |   71 
 community-x86_64/plex-ffmpeg-compat.patch |   29 ---
 community-x86_64/plex-libcec-2.2.0.patch  |  114 --
 community-x86_64/plex-lirc-socket.patch   |   56 --
 community-x86_64/plexhometheater.sh   |5 
 15 files changed, 552 insertions(+), 550 deletions(-)

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


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

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 14:21:33
  Author: andrea
Revision: 227783

upgpkg: calligra 2.8.7-2

poppler rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 11:11:55 UTC (rev 227782)
+++ PKGBUILD2014-12-19 13:21:33 UTC (rev 227783)
@@ -19,7 +19,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.8.7
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')


[arch-commits] Commit in calligra/repos (32 files)

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 14:21:59
  Author: andrea
Revision: 227784

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/0001-switch-to-librevenge-based-import-libs.patch
(from rev 227783, 
calligra/trunk/0001-switch-to-librevenge-based-import-libs.patch)
  calligra/repos/staging-i686/PKGBUILD
(from rev 227783, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 227783, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 227783, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 227783, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 227783, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 227783, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 227783, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 227783, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 227783, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 227783, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 227783, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 227783, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 227783, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 227783, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/
  
calligra/repos/staging-x86_64/0001-switch-to-librevenge-based-import-libs.patch
(from rev 227783, 
calligra/trunk/0001-switch-to-librevenge-based-import-libs.patch)
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 227783, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 227783, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 227783, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 227783, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 227783, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 227783, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 227783, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 227783, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 227783, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 227783, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 227783, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 227783, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 227783, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 227783, calligra/trunk/calligra.install)

--+
 staging-i686/0001-switch-to-librevenge-based-import-libs.patch   |  882 
++
 staging-i686/PKGBUILD|  255 ++
 staging-i686/calligra-braindump.install  |   12 
 staging-i686/calligra-extras.install |   11 
 staging-i686/calligra-filters.install|   12 
 staging-i686/calligra-flow.install   |   12 
 staging-i686/calligra-karbon.install |   12 
 staging-i686/calligra-kexi.install   |   12 
 staging-i686/calligra-krita.install  |   13 
 staging-i686/calligra-plan.install   |   12 
 staging-i686/calligra-plugins.install|   11 
 staging-i686/calligra-sheets.install |   12 
 staging-i686/calligra-stage.install  |   12 
 staging-i686/calligra-words.install  |   12 
 staging-i686/calligra.install|   11 
 staging-x86_64/0001-switch-to-librevenge-based-import-libs.patch |  882 

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

2014-12-19 Thread Timothy Redaelli
Date: Friday, December 19, 2014 @ 14:43:04
  Author: tredaelli
Revision: 124101

upgpkg: tcpreplay 4.1.0-1

Modified:
  tcpreplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 11:25:36 UTC (rev 124100)
+++ PKGBUILD2014-12-19 13:43:04 UTC (rev 124101)
@@ -3,7 +3,7 @@
 # Contributor: Sébastien Duquette ekse...@gmail.com
 # Contributor: Dawid Wrobel cr...@klej.net
 pkgname=tcpreplay
-pkgver=4.0.5
+pkgver=4.1.0
 pkgrel=1
 pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
 url=http://tcpreplay.appneta.com;
@@ -14,11 +14,11 @@
 optdepends=('tcpdump: decoding of packets support')
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
+md5sums=('fd48d73d84ade30ece0a9abb538c82d5')
 
 build() {
  cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
  make
 }
 


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

2014-12-19 Thread Timothy Redaelli
Date: Friday, December 19, 2014 @ 14:43:17
  Author: tredaelli
Revision: 124102

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-19 13:43:04 UTC (rev 124101)
+++ community-i686/PKGBUILD 2014-12-19 13:43:17 UTC (rev 124102)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=4.0.5
-pkgrel=1
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-i686/PKGBUILD (from rev 124101, 
tcpreplay/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 13:43:17 UTC (rev 124102)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.1.0
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('fd48d73d84ade30ece0a9abb538c82d5')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump ac_cv_header_net_bpf_h=n
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make DESTDIR=$pkgdir/ install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 13:43:04 UTC (rev 124101)
+++ community-x86_64/PKGBUILD   2014-12-19 13:43:17 UTC (rev 124102)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
-# Contributor: Sébastien Duquette ekse...@gmail.com
-# Contributor: Dawid Wrobel cr...@klej.net
-pkgname=tcpreplay
-pkgver=4.0.5
-pkgrel=1
-pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
-url=http://tcpreplay.appneta.com;
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('libpcap' 'libdnet')
-makedepends=('tcpdump')
-optdepends=('tcpdump: decoding of packets support')
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/tcpreplay/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1a6f108a62bf526eeffa2998a6f311af')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --enable-dynamic-link 
--with-tcpdump=/usr/sbin/tcpdump
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir/ install
-}

Copied: tcpreplay/repos/community-x86_64/PKGBUILD (from rev 124101, 
tcpreplay/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 13:43:17 UTC (rev 124102)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Timothy Redaelli timothy.redae...@gmail.com
+# Contributor: Sébastien Duquette ekse...@gmail.com
+# Contributor: Dawid Wrobel cr...@klej.net
+pkgname=tcpreplay
+pkgver=4.1.0
+pkgrel=1
+pkgdesc=Gives the ability to replay previously captured traffic in a libpcap 
format
+url=http://tcpreplay.appneta.com;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('libpcap' 'libdnet')
+makedepends=('tcpdump')
+optdepends=('tcpdump: decoding of packets support')

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

2014-12-19 Thread Dave Reisner
Date: Friday, December 19, 2014 @ 14:52:49
  Author: dreisner
Revision: 227786

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

Added:
  expac/repos/testing-i686/
  expac/repos/testing-i686/0001-fix-target-processing.patch
(from rev 227785, expac/trunk/0001-fix-target-processing.patch)
  expac/repos/testing-i686/PKGBUILD
(from rev 227785, expac/trunk/PKGBUILD)
  expac/repos/testing-x86_64/
  expac/repos/testing-x86_64/0001-fix-target-processing.patch
(from rev 227785, expac/trunk/0001-fix-target-processing.patch)
  expac/repos/testing-x86_64/PKGBUILD
(from rev 227785, expac/trunk/PKGBUILD)

-+
 testing-i686/0001-fix-target-processing.patch   |   27 ++
 testing-i686/PKGBUILD   |   42 ++
 testing-x86_64/0001-fix-target-processing.patch |   27 ++
 testing-x86_64/PKGBUILD |   42 ++
 4 files changed, 138 insertions(+)

Copied: expac/repos/testing-i686/0001-fix-target-processing.patch (from rev 
227785, expac/trunk/0001-fix-target-processing.patch)
===
--- testing-i686/0001-fix-target-processing.patch   
(rev 0)
+++ testing-i686/0001-fix-target-processing.patch   2014-12-19 13:52:49 UTC 
(rev 227786)
@@ -0,0 +1,27 @@
+From ea25d7e51c2236e739aef2718499781dd37ef53d Mon Sep 17 00:00:00 2001
+From: Dave Reisner dreis...@archlinux.org
+Date: Tue, 25 Nov 2014 10:50:19 -0500
+Subject: [PATCH] fix target processing
+
+lack of targets is not an error.
+---
+ expac.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/expac.c b/expac.c
+index 5a11a59..d89e072 100644
+--- a/expac.c
 b/expac.c
+@@ -848,9 +848,6 @@ int main(int argc, char *argv[])
+   }
+ 
+   targets = process_targets(argc, argv);
+-  if(targets == NULL) {
+-return 1;
+-  }
+ 
+   r = expac_new(expac, opt_config_file);
+   if(r  0) {
+-- 
+2.1.3
+

Copied: expac/repos/testing-i686/PKGBUILD (from rev 227785, 
expac/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-19 13:52:49 UTC (rev 227786)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 87501 2013-04-02 00:06:04Z dreisner $
+# Maintainer: Dave Reisner d...@falconindy.com
+
+pkgname=expac
+pkgver=4
+pkgrel=3
+pkgdesc=pacman database extraction utility
+arch=('i686' 'x86_64')
+url=http://github.com/falconindy/expac;
+license=('GPL')
+depends=('pacman')
+makedepends=('perl')
+source=(http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}
+'0001-fix-target-processing.patch')
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
+md5sums=('5104ad808155e8d2d381d9282caf7bae'
+ 'SKIP'
+ '80433a259a4f5996520f42217b1896b8')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -Np1 ../0001-fix-target-processing.patch
+
+  sed '/\*\//q' expac.c LICENSE
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make PREFIX=/usr DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim: ft=sh syn=sh

Copied: expac/repos/testing-x86_64/0001-fix-target-processing.patch (from rev 
227785, expac/trunk/0001-fix-target-processing.patch)
===
--- testing-x86_64/0001-fix-target-processing.patch 
(rev 0)
+++ testing-x86_64/0001-fix-target-processing.patch 2014-12-19 13:52:49 UTC 
(rev 227786)
@@ -0,0 +1,27 @@
+From ea25d7e51c2236e739aef2718499781dd37ef53d Mon Sep 17 00:00:00 2001
+From: Dave Reisner dreis...@archlinux.org
+Date: Tue, 25 Nov 2014 10:50:19 -0500
+Subject: [PATCH] fix target processing
+
+lack of targets is not an error.
+---
+ expac.c | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/expac.c b/expac.c
+index 5a11a59..d89e072 100644
+--- a/expac.c
 b/expac.c
+@@ -848,9 +848,6 @@ int main(int argc, char *argv[])
+   }
+ 
+   targets = process_targets(argc, argv);
+-  if(targets == NULL) {
+-return 1;
+-  }
+ 
+   r = expac_new(expac, opt_config_file);
+   if(r  0) {
+-- 
+2.1.3
+

Copied: expac/repos/testing-x86_64/PKGBUILD (from rev 227785, 
expac/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-12-19 13:52:49 UTC (rev 227786)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 87501 2013-04-02 00:06:04Z dreisner $
+# Maintainer: Dave Reisner d...@falconindy.com
+
+pkgname=expac
+pkgver=4
+pkgrel=3
+pkgdesc=pacman database extraction utility
+arch=('i686' 'x86_64')
+url=http://github.com/falconindy/expac;
+license=('GPL')
+depends=('pacman')
+makedepends=('perl')

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

2014-12-19 Thread Dave Reisner
Date: Friday, December 19, 2014 @ 14:52:25
  Author: dreisner
Revision: 227785

upgpkg: expac 4-3

- rebuild against libalpm.so.9

Modified:
  expac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 13:21:59 UTC (rev 227784)
+++ PKGBUILD2014-12-19 13:52:25 UTC (rev 227785)
@@ -3,7 +3,7 @@
 
 pkgname=expac
 pkgver=4
-pkgrel=2
+pkgrel=3
 pkgdesc=pacman database extraction utility
 arch=('i686' 'x86_64')
 url=http://github.com/falconindy/expac;
@@ -12,6 +12,7 @@
 makedepends=('perl')
 
source=(http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.gz{,.sig}
 '0001-fix-target-processing.patch')
+validpgpkeys=('487EACC08557AD082088DABA1EB2638FF56C0C53')  # Dave Reisner
 md5sums=('5104ad808155e8d2d381d9282caf7bae'
  'SKIP'
  '80433a259a4f5996520f42217b1896b8')


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

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 14:58:10
  Author: fyan
Revision: 124104

archrelease: copy trunk to community-testing-any

Added:
  scapy/repos/community-testing-any/
  scapy/repos/community-testing-any/PKGBUILD
(from rev 124103, scapy/trunk/PKGBUILD)

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

Copied: scapy/repos/community-testing-any/PKGBUILD (from rev 124103, 
scapy/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2014-12-19 13:58:10 UTC (rev 124104)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Levente Polyak levente[at]leventepolyak[dot]net
+# Contributor: Ebubekir KARUL ebubekirka...@yandex.com
+# Contributor: s1gma,shirokuro
+
+pkgname=scapy
+pkgver=2.3.0
+pkgrel=1
+pkgdesc=A powerful interactive packet manipulation program written in Python
+url=http://www.secdev.org/projects/scapy/;
+depends=('tcpdump' 'python2' )
+optdepends=('python2-crypto: WEP decryption support'
+'python2-pyx: psdump() and pdfdump() functions'
+'python2-gnuplot: plotting support'
+'graphviz: conversations() method support'
+'sox: for VOIP support')
+checkdepends=('python2-crypto' 'python2-pyx' 'python2-gnuplot' 'graphviz' 
'sox')
+arch=('any')
+license=('GPL')
+source=(https://bitbucket.org/secdev/scapy/downloads/${pkgname}-${pkgver}.zip)
+sha256sums=('1e63e845ff7a86d4915122945cad2a3b5c60b6914b23713bcbdbab7b24fd47c8')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -e 's/env python$/env python2/g' -i doc/scapy/*.rst \
+run_scapy scapy/tools/check_asdis.py scapy/layers/inet6.py setup.py
+  sed -e 's/exec python$/exec python2/g' -i run_scapy setup.py
+  sed -e 's/exec python /exec python2 /' -i test/run_tests
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}/test
+  # Disabled tests as they currently hang
+  # ./run_tests
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install -O1 --skip-build --prefix=${pkgdir}/usr
+  mkdir -p ${pkgdir}/usr/share/doc/${pkgname}
+  install -Dm 644 doc/scapy/*.rst ${pkgdir}/usr/share/doc/${pkgname}/
+}
+
+# vim: ts=2 sw=2 et:


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

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 14:57:50
  Author: fyan
Revision: 124103

upgpkg: scapy 2.3.0-1

upstream new release

Modified:
  scapy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 13:43:17 UTC (rev 124102)
+++ PKGBUILD2014-12-19 13:57:50 UTC (rev 124103)
@@ -1,12 +1,12 @@
 # $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
+# Maintainer: Felix Yan felixonm...@archlinux.org
 # Contributor: Levente Polyak levente[at]leventepolyak[dot]net
 # Contributor: Ebubekir KARUL ebubekirka...@yandex.com
 # Contributor: s1gma,shirokuro
 
 pkgname=scapy
-pkgver=2.2.0
-pkgrel=9
+pkgver=2.3.0
+pkgrel=1
 pkgdesc=A powerful interactive packet manipulation program written in Python
 url=http://www.secdev.org/projects/scapy/;
 depends=('tcpdump' 'python2' )
@@ -13,17 +13,20 @@
 optdepends=('python2-crypto: WEP decryption support'
 'python2-pyx: psdump() and pdfdump() functions'
 'python2-gnuplot: plotting support'
-'graphviz: conversations() method support')
+'graphviz: conversations() method support'
+'sox: for VOIP support')
+checkdepends=('python2-crypto' 'python2-pyx' 'python2-gnuplot' 'graphviz' 
'sox')
 arch=('any')
 license=('GPL')
-source=(http://www.secdev.org/projects/scapy/files/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('c5363b224df0efbd78d7dc4d8a518e5518b2e7affc2e5f1fcecd4efa3ab815af')
+source=(https://bitbucket.org/secdev/scapy/downloads/${pkgname}-${pkgver}.zip)
+sha256sums=('1e63e845ff7a86d4915122945cad2a3b5c60b6914b23713bcbdbab7b24fd47c8')
 
 prepare() {
   cd ${pkgname}-${pkgver}
   sed -e 's/env python$/env python2/g' -i doc/scapy/*.rst \
 run_scapy scapy/tools/check_asdis.py scapy/layers/inet6.py setup.py
-  sed -e 's/exec python$/exec python2/g' -i run_scapy setup.py 
+  sed -e 's/exec python$/exec python2/g' -i run_scapy setup.py
+  sed -e 's/exec python /exec python2 /' -i test/run_tests
 }
 
 build() {
@@ -31,9 +34,15 @@
   python2 setup.py build
 }
 
+check() {
+  cd ${pkgname}-${pkgver}/test
+  # Disabled tests as they currently hang
+  # ./run_tests
+}
+
 package() {
   cd ${pkgname}-${pkgver}
-  python2 setup.py install -O1 --prefix=${pkgdir}/usr
+  python2 setup.py install -O1 --skip-build --prefix=${pkgdir}/usr
   mkdir -p ${pkgdir}/usr/share/doc/${pkgname}
   install -Dm 644 doc/scapy/*.rst ${pkgdir}/usr/share/doc/${pkgname}/
 }


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

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 16:08:46
  Author: fyan
Revision: 124105

upgpkg: docker 1:1.4.1-1

upstream new release

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 13:58:10 UTC (rev 124104)
+++ PKGBUILD2014-12-19 15:08:46 UTC (rev 124105)
@@ -2,8 +2,8 @@
 # Maintainer: Sébastien Seblu Luttringer
 
 pkgname=docker
-pkgver=1.4.0
-pkgrel=2
+pkgver=1.4.1
+pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
 arch=('x86_64')


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

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 16:09:05
  Author: fyan
Revision: 124106

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 124105, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.install
(from rev 124105, docker/trunk/docker.install)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.install

+
 PKGBUILD   |  108 +++
 docker.install |   36 +-
 2 files changed, 72 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-19 15:08:46 UTC (rev 124105)
+++ PKGBUILD2014-12-19 15:09:05 UTC (rev 124106)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Seblu Luttringer
-
-pkgname=docker
-pkgver=1.4.0
-pkgrel=2
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='http://www.docker.io/'
-license=('Apache')
-depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
-makedepends=('git' 'go' 'btrfs-progs')
-optdepends=('btrfs-progs: btrfs backend support'
-'lxc: lxc backend support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip')
-install=$pkgname.install
-source=(git+https://github.com/docker/docker.git#tag=v$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd docker
-  export AUTO_GOPATH=1
-  ./hack/make.sh dynbinary
-}
-
-#check() {
-#  cd $_magic/docker
-#  # Will be added upstream soon
-#  ./hack/make.sh dyntest
-#}
-
-package() {
-  cd docker
-  install -Dm755 bundles/$pkgver/dynbinary/docker-$pkgver 
$pkgdir/usr/bin/docker
-  install -Dm755 bundles/$pkgver/dynbinary/dockerinit-$pkgver 
$pkgdir/usr/lib/docker/dockerinit
-  # completion
-  install -Dm644 'contrib/completion/bash/docker' 
$pkgdir/usr/share/bash-completion/completions/docker
-  install -Dm644 'contrib/completion/zsh/_docker' 
$pkgdir/usr/share/zsh/site-functions/_docker
-  install -Dm644 'contrib/completion/fish/docker.fish' 
$pkgdir/usr/share/fish/completions/docker.fish
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-$pkgdir/usr/lib/systemd/system/docker.service
-  install -Dm644 'contrib/init/systemd/docker.socket' \
-$pkgdir/usr/lib/systemd/system/docker.socket
-  # vim syntax
-  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' \
-$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim
-  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' \
-$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
-}
-
-# vim:set ts=2 sw=2 et:

Copied: docker/repos/community-x86_64/PKGBUILD (from rev 124105, 
docker/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-19 15:09:05 UTC (rev 124106)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Sébastien Seblu Luttringer
+
+pkgname=docker
+pkgver=1.4.1
+pkgrel=1
+epoch=1
+pkgdesc='Pack, ship and run any application as a lightweight container'
+arch=('x86_64')
+url='http://www.docker.io/'
+license=('Apache')
+depends=('bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 'systemd')
+makedepends=('git' 'go' 'btrfs-progs')
+optdepends=('btrfs-progs: btrfs backend support'
+'lxc: lxc backend support')
+# don't strip binaries! A sha1 is used to check binary consistency.
+options=('!strip')
+install=$pkgname.install
+source=(git+https://github.com/docker/docker.git#tag=v$pkgver;)
+md5sums=('SKIP')
+
+build() {
+  cd docker
+  export AUTO_GOPATH=1
+  ./hack/make.sh dynbinary
+}
+
+#check() {
+#  cd $_magic/docker
+#  # Will be added upstream soon
+#  ./hack/make.sh dyntest
+#}
+
+package() {
+  cd docker
+  install -Dm755 bundles/$pkgver/dynbinary/docker-$pkgver 
$pkgdir/usr/bin/docker
+  install -Dm755 bundles/$pkgver/dynbinary/dockerinit-$pkgver 
$pkgdir/usr/lib/docker/dockerinit
+  # completion
+  install -Dm644 'contrib/completion/bash/docker' 
$pkgdir/usr/share/bash-completion/completions/docker
+  install -Dm644 'contrib/completion/zsh/_docker' 
$pkgdir/usr/share/zsh/site-functions/_docker
+  install -Dm644 'contrib/completion/fish/docker.fish' 
$pkgdir/usr/share/fish/completions/docker.fish
+  # systemd
+  install -Dm644 'contrib/init/systemd/docker.service' \
+$pkgdir/usr/lib/systemd/system/docker.service
+  install -Dm644 'contrib/init/systemd/docker.socket' \
+$pkgdir/usr/lib/systemd/system/docker.socket
+  # vim syntax
+  install -Dm644 'contrib/syntax/vim/syntax/dockerfile.vim' \
+$pkgdir/usr/share/vim/vimfiles/syntax/dockerfile.vim
+  install -Dm644 'contrib/syntax/vim/ftdetect/dockerfile.vim' \
+$pkgdir/usr/share/vim/vimfiles/ftdetect/dockerfile.vim
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: docker.install
===
--- docker.install  2014-12-19 15:08:46 UTC (rev 124105)
+++ 

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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 16:19:47
  Author: svenstaro
Revision: 124107

upgpkg: glm 0.9.6.1-2

cmake 3.1

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 15:09:05 UTC (rev 124106)
+++ PKGBUILD2014-12-19 15:19:47 UTC (rev 124107)
@@ -2,7 +2,7 @@
 # Contributor: Peter Hatina phatina AT gmail.com
 pkgname=glm
 pkgver=0.9.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
 arch=('any')
 license=('MIT')
@@ -20,6 +20,6 @@
 find $pkgdir -type f -exec chmod 644 {} \;
 find $pkgdir -type d -exec chmod 755 {} \;
 
-install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.0/Modules/FindGLM.cmake
+install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.1/Modules/FindGLM.cmake
 install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
 }


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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 16:20:12
  Author: svenstaro
Revision: 124108

archrelease: copy trunk to community-staging-any

Added:
  glm/repos/community-staging-any/
  glm/repos/community-staging-any/PKGBUILD
(from rev 124107, glm/trunk/PKGBUILD)

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

Copied: glm/repos/community-staging-any/PKGBUILD (from rev 124107, 
glm/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2014-12-19 15:20:12 UTC (rev 124108)
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Peter Hatina phatina AT gmail.com
+pkgname=glm
+pkgver=0.9.6.1
+pkgrel=2
+pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
+arch=('any')
+license=('MIT')
+url=http://glm.g-truc.net;
+source=(http://sourceforge.net/projects/ogl-math/files/glm-$pkgver/glm-$pkgver.zip;)
+md5sums=('b1c5f1811d3fac4e3f4932bdab0cb7a6')
+
+package() {
+cd $pkgname
+mkdir -p $pkgdir/usr/include/glm
+mkdir -p $pkgdir/usr/share/doc
+cp -r glm $pkgdir/usr/include
+cp -r doc $pkgdir/usr/share/doc/glm
+rm -f $pkgdir/usr/include/glm/CMakeLists.txt
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.1/Modules/FindGLM.cmake
+install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in ca-certificates/repos/testing-any (8 files)

2014-12-19 Thread Evangelos Foutras
Date: Friday, December 19, 2014 @ 16:20:27
  Author: foutrelis
Revision: 227788

archrelease: copy trunk to testing-any

Added:
  ca-certificates/repos/testing-any/PKGBUILD
(from rev 227787, ca-certificates/trunk/PKGBUILD)
  ca-certificates/repos/testing-any/ca-certificates-utils.install
(from rev 227787, ca-certificates/trunk/ca-certificates-utils.install)
  ca-certificates/repos/testing-any/update-ca-trust
(from rev 227787, ca-certificates/trunk/update-ca-trust)
  ca-certificates/repos/testing-any/update-ca-trust.8.txt
(from rev 227787, ca-certificates/trunk/update-ca-trust.8.txt)
Deleted:
  ca-certificates/repos/testing-any/PKGBUILD
  ca-certificates/repos/testing-any/ca-certificates-utils.install
  ca-certificates/repos/testing-any/update-ca-trust
  ca-certificates/repos/testing-any/update-ca-trust.8.txt

---+
 PKGBUILD  |   96 +++
 ca-certificates-utils.install |   84 +++---
 update-ca-trust   |   56 ++--
 update-ca-trust.8.txt |  510 
 4 files changed, 373 insertions(+), 373 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-19 15:20:13 UTC (rev 227787)
+++ PKGBUILD2014-12-19 15:20:27 UTC (rev 227788)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=ca-certificates
-pkgname=(ca-certificates-utils ca-certificates)
-pkgver=20140923
-pkgrel=8
-pkgdesc='Common CA certificates'
-arch=('any')
-url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
-license=('GPL2')
-depends=('sh' 'p11-kit')
-makedepends=('asciidoc')
-source=(update-ca-trust update-ca-trust.8.txt)
-sha256sums=('fe6d5bc3bd133d7bd1047abef9f98ad9b9c1e3762766e1b2df9dbeabe3420abe'
-'916bc0582b5230aedc7fdada70bc387fbd605dbc9d3d421621e4736c60a8ef41')
-
-build() {
-   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
-   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
-}
-
-package_ca-certificates-utils() {
-   pkgdesc+= (utilities)
-   install=ca-certificates-utils.install
-   provides=(ca-certificates ca-certificates-java)
-   conflicts=(ca-certificates-java)
-   replaces=(ca-certificates-java)
-
-   install -D update-ca-trust ${pkgdir}/usr/bin/update-ca-trust
-   install -Dm644 update-ca-trust.8 
${pkgdir}/usr/share/man/man8/update-ca-trust.8
-
-   # Trust source directories
-   install -d 
${pkgdir}/{etc,usr/share}/${pkgbase}/trust-source/{anchors,blacklist}
-
-   # Directories used by update-ca-trust (aka trust extract-compat)
-   install -d ${pkgdir}/etc/{ssl/certs/java,${pkgbase}/extracted}
-
-   # Contrary to Fedora, the /etc/ssl/certs dir is generated
-   ln -srT ${pkgdir}/etc/ssl/{certs/ca-certificates.crt,cert.pem}
-}
-
-package_ca-certificates() {
-   pkgdesc+= (default providers)
-   depends=(ca-certificates-{mozilla,cacert})
-}
-
-# vim:set noet ts=8 sw=8:

Copied: ca-certificates/repos/testing-any/PKGBUILD (from rev 227787, 
ca-certificates/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-19 15:20:27 UTC (rev 227788)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgbase=ca-certificates
+pkgname=(ca-certificates-utils ca-certificates)
+pkgver=20140923
+pkgrel=9
+pkgdesc='Common CA certificates'
+arch=('any')
+url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
+license=('GPL2')
+makedepends=('asciidoc' 'p11-kit')
+source=(update-ca-trust update-ca-trust.8.txt)
+sha256sums=('fe6d5bc3bd133d7bd1047abef9f98ad9b9c1e3762766e1b2df9dbeabe3420abe'
+'916bc0582b5230aedc7fdada70bc387fbd605dbc9d3d421621e4736c60a8ef41')
+
+build() {
+   asciidoc.py -v -d manpage -b docbook update-ca-trust.8.txt
+   xsltproc --nonet -o update-ca-trust.8 
/etc/asciidoc/docbook-xsl/manpage.xsl update-ca-trust.8.xml
+}
+
+package_ca-certificates-utils() {
+   pkgdesc+= (utilities)
+   depends=('bash' 'coreutils' 'findutils' 'p11-kit')
+   install=ca-certificates-utils.install
+   provides=(ca-certificates ca-certificates-java)
+   conflicts=(ca-certificates-java)
+   replaces=(ca-certificates-java)
+
+   install -D update-ca-trust ${pkgdir}/usr/bin/update-ca-trust
+   install -Dm644 update-ca-trust.8 
${pkgdir}/usr/share/man/man8/update-ca-trust.8
+
+   # Trust source directories
+   install -d 
${pkgdir}/{etc,usr/share}/${pkgbase}/trust-source/{anchors,blacklist}
+
+   # Directories used by update-ca-trust (aka trust extract-compat)
+   install -d ${pkgdir}/etc/{ssl/certs/java,${pkgbase}/extracted}
+
+   # Contrary to Fedora, the /etc/ssl/certs dir is generated
+   ln -srT ${pkgdir}/etc/ssl/{certs/ca-certificates.crt,cert.pem}
+}
+
+package_ca-certificates() {
+  

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

2014-12-19 Thread Evangelos Foutras
Date: Friday, December 19, 2014 @ 16:20:13
  Author: foutrelis
Revision: 227787

upgpkg: ca-certificates 20140923-9

ca-certificates-utils: explicitly depend on 'bash' 'coreutils' 'findutils'

This fixes a case where ca-certificates-utils would get installed before
coreutils on [testing] chroots.

Modified:
  ca-certificates/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 13:52:49 UTC (rev 227786)
+++ PKGBUILD2014-12-19 15:20:13 UTC (rev 227787)
@@ -4,13 +4,12 @@
 pkgbase=ca-certificates
 pkgname=(ca-certificates-utils ca-certificates)
 pkgver=20140923
-pkgrel=8
+pkgrel=9
 pkgdesc='Common CA certificates'
 arch=('any')
 url='http://pkgs.fedoraproject.org/cgit/ca-certificates.git'
 license=('GPL2')
-depends=('sh' 'p11-kit')
-makedepends=('asciidoc')
+makedepends=('asciidoc' 'p11-kit')
 source=(update-ca-trust update-ca-trust.8.txt)
 sha256sums=('fe6d5bc3bd133d7bd1047abef9f98ad9b9c1e3762766e1b2df9dbeabe3420abe'
 '916bc0582b5230aedc7fdada70bc387fbd605dbc9d3d421621e4736c60a8ef41')
@@ -22,6 +21,7 @@
 
 package_ca-certificates-utils() {
pkgdesc+= (utilities)
+   depends=('bash' 'coreutils' 'findutils' 'p11-kit')
install=ca-certificates-utils.install
provides=(ca-certificates ca-certificates-java)
conflicts=(ca-certificates-java)


[arch-commits] Commit in nvidia-304xx/trunk (PKGBUILD nv-drm.patch)

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 17:10:29
  Author: fyan
Revision: 227789

upgpkg: nvidia-304xx 304.125-5

fix FS#43147

Added:
  nvidia-304xx/trunk/nv-drm.patch
Modified:
  nvidia-304xx/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 nv-drm.patch |   27 +++
 2 files changed, 34 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 15:20:27 UTC (rev 227788)
+++ PKGBUILD2014-12-19 16:10:29 UTC (rev 227789)
@@ -5,7 +5,7 @@
 pkgname=nvidia-304xx
 pkgver=304.125
 _extramodules=extramodules-3.18-ARCH
-pkgrel=4
+pkgrel=5
 pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
 arch=('i686' 'x86_64')
 url=http://www.nvidia.com/;
@@ -23,16 +23,20 @@
 md5sums=('bc3b0ac291fa998d5109a6f7e94fb2d4')
 elif [ $CARCH = x86_64 ]; then
 _arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
 
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
 md5sums=('291d41ccdbcc08f752a38f9e0a7eeea0')
 fi
 
+source+=('nv-drm.patch')
+md5sums+=('79671a27131da619a33eb02ed0c2c031')
+
 prepare() {
 cd ${srcdir}
 sh ${_pkg}.run --extract-only
-cd ${pkg}
+cd ${_pkg}
 # patches here
+patch -p0 -i $srcdir/nv-drm.patch
 }
 
 build() {

Added: nv-drm.patch
===
--- nv-drm.patch(rev 0)
+++ nv-drm.patch2014-12-19 16:10:29 UTC (rev 227789)
@@ -0,0 +1,27 @@
+--- kernel/nv-drm.c~ 2014-09-12 00:33:06.0 +0200
 kernel/nv-drm.c 2014-10-14 11:35:52.854400737 +0200
+@@ -18,6 +18,11 @@
+
+ #include drm/drmP.h
+
++/* 3.18-rc0+ */
++#ifndef drm_gem_object
++#include drm/drm_gem.h
++#endif
++
+ extern nv_linux_state_t *nv_linux_devices;
+
+ struct nv_gem_object {
+diff --git a/kernel/nv-drm.c~ b/kernel/nv-drm.c
+index ecc982a..60d7aae 100644
+--- kernel/nv-drm.c~
 kernel/nv-drm.c
+@@ -129,6 +129,8 @@ static struct drm_driver nv_drm_driver = {
+ .gem_prime_vmap = nv_gem_prime_vmap,
+ .gem_prime_vunmap = nv_gem_prime_vunmap,
+
++.set_busid = drm_pci_set_busid,
++
+ .name = nvidia-drm,
+ .desc = NVIDIA DRM driver,
+ .date = 20130102,


[arch-commits] Commit in nvidia-304xx/repos (10 files)

2014-12-19 Thread Felix Yan
Date: Friday, December 19, 2014 @ 17:11:03
  Author: fyan
Revision: 227790

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

Added:
  nvidia-304xx/repos/testing-i686/PKGBUILD
(from rev 227789, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-i686/nv-drm.patch
(from rev 227789, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/testing-i686/nvidia.install
(from rev 227789, nvidia-304xx/trunk/nvidia.install)
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
(from rev 227789, nvidia-304xx/trunk/PKGBUILD)
  nvidia-304xx/repos/testing-x86_64/nv-drm.patch
(from rev 227789, nvidia-304xx/trunk/nv-drm.patch)
  nvidia-304xx/repos/testing-x86_64/nvidia.install
(from rev 227789, nvidia-304xx/trunk/nvidia.install)
Deleted:
  nvidia-304xx/repos/testing-i686/PKGBUILD
  nvidia-304xx/repos/testing-i686/nvidia.install
  nvidia-304xx/repos/testing-x86_64/PKGBUILD
  nvidia-304xx/repos/testing-x86_64/nvidia.install

---+
 /PKGBUILD |  114 
 /nvidia.install   |   30 ++
 testing-i686/PKGBUILD |   53 --
 testing-i686/nv-drm.patch |   27 +
 testing-i686/nvidia.install   |   15 -
 testing-x86_64/PKGBUILD   |   53 --
 testing-x86_64/nv-drm.patch   |   27 +
 testing-x86_64/nvidia.install |   15 -
 8 files changed, 198 insertions(+), 136 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-12-19 16:10:29 UTC (rev 227789)
+++ testing-i686/PKGBUILD   2014-12-19 16:11:03 UTC (rev 227790)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Thomas Baechler tho...@archlinux.org
-
-pkgname=nvidia-304xx
-pkgver=304.125
-_extramodules=extramodules-3.18-ARCH
-pkgrel=4
-pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
-arch=('i686' 'x86_64')
-url=http://www.nvidia.com/;
-depends=('linux=3.18' 'linux3.19' 'nvidia-304xx-libgl' 
nvidia-304xx-utils=${pkgver})
-makedepends=('linux-headers=3.18' 'linux-headers3.19')
-conflicts=('nvidia')
-license=('custom')
-install=nvidia.install
-options=(!strip)
-
-if [ $CARCH = i686 ]; then
-_arch='x86'
-_pkg=NVIDIA-Linux-${_arch}-${pkgver}
-
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('bc3b0ac291fa998d5109a6f7e94fb2d4')
-elif [ $CARCH = x86_64 ]; then
-_arch='x86_64'
-   _pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
-
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
-md5sums=('291d41ccdbcc08f752a38f9e0a7eeea0')
-fi
-
-prepare() {
-cd ${srcdir}
-sh ${_pkg}.run --extract-only
-cd ${pkg}
-# patches here
-}
-
-build() {
-_kernver=$(cat /usr/lib/modules/${_extramodules}/version)
-cd ${_pkg}/kernel
-make SYSSRC=/usr/lib/modules/${_kernver}/build module
-}
-
-package() {
-install -D -m644 ${srcdir}/${_pkg}/kernel/nvidia.ko \
-${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-install -d -m755 ${pkgdir}/usr/lib/modprobe.d
-echo blacklist nouveau  ${pkgdir}/usr/lib/modprobe.d/nvidia.conf
-sed -i -e s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/ 
${startdir}/nvidia.install
-gzip ${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}

Copied: nvidia-304xx/repos/testing-i686/PKGBUILD (from rev 227789, 
nvidia-304xx/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-19 16:11:03 UTC (rev 227790)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Thomas Baechler tho...@archlinux.org
+
+pkgname=nvidia-304xx
+pkgver=304.125
+_extramodules=extramodules-3.18-ARCH
+pkgrel=5
+pkgdesc=NVIDIA drivers for linux, 304xx legacy branch
+arch=('i686' 'x86_64')
+url=http://www.nvidia.com/;
+depends=('linux=3.18' 'linux3.19' 'nvidia-304xx-libgl' 
nvidia-304xx-utils=${pkgver})
+makedepends=('linux-headers=3.18' 'linux-headers3.19')
+conflicts=('nvidia')
+license=('custom')
+install=nvidia.install
+options=(!strip)
+
+if [ $CARCH = i686 ]; then
+_arch='x86'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('bc3b0ac291fa998d5109a6f7e94fb2d4')
+elif [ $CARCH = x86_64 ]; then
+_arch='x86_64'
+_pkg=NVIDIA-Linux-${_arch}-${pkgver}-no-compat32
+
source=(http://us.download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run;)
+md5sums=('291d41ccdbcc08f752a38f9e0a7eeea0')
+fi
+
+source+=('nv-drm.patch')
+md5sums+=('79671a27131da619a33eb02ed0c2c031')
+
+prepare() {
+cd ${srcdir}
+sh 

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

2014-12-19 Thread Dan McGee
Date: Friday, December 19, 2014 @ 17:22:47
  Author: dan
Revision: 227791

upgpkg: git 2.2.1-1

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 16:11:03 UTC (rev 227790)
+++ PKGBUILD2014-12-19 16:22:47 UTC (rev 227791)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -115,7 +115,7 @@
   install -D -m 644 $srcdir/git-daemon.socket 
$pkgdir/usr/lib/systemd/system/git-daemon.socket
 }
 
-md5sums=('5c9d20582297f8f24606fe49f515b584'
+md5sums=('43e01f9d96ba8c11611e0eef0d9f9f28'
  '5383e27f24bfd356f24b709ea27f8201'
  '9bb82b29aee1772a893cc2a0a1584b89'
  '042524f942785772d7bd52a1f02fe5ae'


[arch-commits] Commit in git/repos (24 files)

2014-12-19 Thread Dan McGee
Date: Friday, December 19, 2014 @ 17:23:03
  Author: dan
Revision: 227792

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

Added:
  git/repos/extra-i686/0001-create-gpg-homedir-on-the-fly.patch
(from rev 227791, git/trunk/0001-create-gpg-homedir-on-the-fly.patch)
  git/repos/extra-i686/0002-skip-RFC1991-tests-for-gnupg-2.1.patch
(from rev 227791, git/trunk/0002-skip-RFC1991-tests-for-gnupg-2.1.patch)
  git/repos/extra-i686/PKGBUILD
(from rev 227791, git/trunk/PKGBUILD)
  git/repos/extra-i686/git-daemon.socket
(from rev 227791, git/trunk/git-daemon.socket)
  git/repos/extra-i686/git-daemon@.service
(from rev 227791, git/trunk/git-daemon@.service)
  git/repos/extra-i686/git.install
(from rev 227791, git/trunk/git.install)
  git/repos/extra-x86_64/0001-create-gpg-homedir-on-the-fly.patch
(from rev 227791, git/trunk/0001-create-gpg-homedir-on-the-fly.patch)
  git/repos/extra-x86_64/0002-skip-RFC1991-tests-for-gnupg-2.1.patch
(from rev 227791, git/trunk/0002-skip-RFC1991-tests-for-gnupg-2.1.patch)
  git/repos/extra-x86_64/PKGBUILD
(from rev 227791, git/trunk/PKGBUILD)
  git/repos/extra-x86_64/git-daemon.socket
(from rev 227791, git/trunk/git-daemon.socket)
  git/repos/extra-x86_64/git-daemon@.service
(from rev 227791, git/trunk/git-daemon@.service)
  git/repos/extra-x86_64/git.install
(from rev 227791, git/trunk/git.install)
Deleted:
  git/repos/extra-i686/0001-create-gpg-homedir-on-the-fly.patch
  git/repos/extra-i686/0002-skip-RFC1991-tests-for-gnupg-2.1.patch
  git/repos/extra-i686/PKGBUILD
  git/repos/extra-i686/git-daemon.socket
  git/repos/extra-i686/git-daemon@.service
  git/repos/extra-i686/git.install
  git/repos/extra-x86_64/0001-create-gpg-homedir-on-the-fly.patch
  git/repos/extra-x86_64/0002-skip-RFC1991-tests-for-gnupg-2.1.patch
  git/repos/extra-x86_64/PKGBUILD
  git/repos/extra-x86_64/git-daemon.socket
  git/repos/extra-x86_64/git-daemon@.service
  git/repos/extra-x86_64/git.install

--+
 /0001-create-gpg-homedir-on-the-fly.patch|  116 ++
 /0002-skip-RFC1991-tests-for-gnupg-2.1.patch |  186 +
 /PKGBUILD|  244 +
 /git-daemon.socket   |   18 
 /git-daemon@.service |   20 +
 /git.install |   42 ++
 extra-i686/0001-create-gpg-homedir-on-the-fly.patch  |   58 ---
 extra-i686/0002-skip-RFC1991-tests-for-gnupg-2.1.patch   |   93 
 extra-i686/PKGBUILD  |  122 --
 extra-i686/git-daemon.socket |9 
 extra-i686/git-daemon@.service   |   10 
 extra-i686/git.install   |   21 -
 extra-x86_64/0001-create-gpg-homedir-on-the-fly.patch|   58 ---
 extra-x86_64/0002-skip-RFC1991-tests-for-gnupg-2.1.patch |   93 
 extra-x86_64/PKGBUILD|  122 --
 extra-x86_64/git-daemon.socket   |9 
 extra-x86_64/git-daemon@.service |   10 
 extra-x86_64/git.install |   21 -
 18 files changed, 626 insertions(+), 626 deletions(-)

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


[arch-commits] Commit in plasma-workspace/trunk (PKGBUILD kde.pam)

2014-12-19 Thread Andrea Scarpino
Date: Friday, December 19, 2014 @ 17:54:17
  Author: andrea
Revision: 227793

Provide KDE pam file (FS#43149)

Added:
  plasma-workspace/trunk/kde.pam
Modified:
  plasma-workspace/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 kde.pam  |   18 ++
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 16:23:03 UTC (rev 227792)
+++ PKGBUILD2014-12-19 16:54:17 UTC (rev 227793)
@@ -5,7 +5,7 @@
 
 pkgname=plasma-workspace
 pkgver=5.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE Plasma Workspace'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/workspace/plasma-workspace'
@@ -21,8 +21,10 @@
 conflicts=('kdebase-workspace')
 groups=('plasma-next')
 options=('!buildflags')
-source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;)
-md5sums=('8a01835179b25e3a7ff644fd7e52ec96')
+source=(http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz;
+'kde.pam')
+md5sums=('8a01835179b25e3a7ff644fd7e52ec96'
+ 'f7bc45ed3598a9e1bc1435f051d9ad78')
 
 prepare() {
   mkdir -p build
@@ -46,4 +48,7 @@
 
   # be sure to use the Qt5 version of qtpaths
   sed 's:qtpaths:qtpaths-qt5:' -i $pkgdir/usr/bin/startkde
+
+  install -D ${srcdir}/kde.pam \
+${pkgdir}/etc/pam.d/kde
 }

Added: kde.pam
===
--- kde.pam (rev 0)
+++ kde.pam 2014-12-19 16:54:17 UTC (rev 227793)
@@ -0,0 +1,18 @@
+#%PAM-1.0
+#auth [user_unknown=ignore success=ok ignore=ignore default=bad] 
pam_securetty.so
+auth   substack system-auth
+auth   include  postlogin
+accountrequired pam_nologin.so
+accountinclude  system-auth
+password   include  system-auth
+# pam_selinux.so close should be the first session rule
+sessionrequired pam_selinux.so close
+sessionrequired pam_loginuid.so
+sessionoptional pam_console.so
+# pam_selinux.so open should only be followed by sessions to be executed in 
the user context
+sessionrequired pam_selinux.so open
+sessionrequired pam_namespace.so
+sessionoptional pam_keyinit.so force revoke
+sessioninclude  system-auth
+sessioninclude  postlogin
+#-session   optional pam_ck_connector.so


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

2014-12-19 Thread Giovanni Scafora
Date: Friday, December 19, 2014 @ 18:37:51
  Author: giovanni
Revision: 227794

upgpkg: mercurial 3.2.3-1

upstream release

Modified:
  mercurial/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 16:54:17 UTC (rev 227793)
+++ PKGBUILD2014-12-19 17:37:51 UTC (rev 227794)
@@ -3,7 +3,7 @@
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 
 pkgname=mercurial
-pkgver=3.2.2
+pkgver=3.2.3
 pkgrel=1
 pkgdesc=A scalable distributed SCM tool
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 backup=('etc/mercurial/hgrc')
 source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
 'mercurial.profile')
-md5sums=('51305e11767a4c334a1e685c1f8f42b5'
+md5sums=('ca6d1a0b0fd255fb1b9fb3fa46a856b8'
  '43e1d36564d4c7fbe9a091d3ea370a44')
 
 prepare() {


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

2014-12-19 Thread Giovanni Scafora
Date: Friday, December 19, 2014 @ 18:38:00
  Author: giovanni
Revision: 227795

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

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

+
 /PKGBUILD  |  102 +++
 /mercurial.profile |2 
 extra-i686/PKGBUILD|   51 ---
 extra-i686/mercurial.profile   |1 
 extra-x86_64/PKGBUILD  |   51 ---
 extra-x86_64/mercurial.profile |1 
 6 files changed, 104 insertions(+), 104 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-19 17:37:51 UTC (rev 227794)
+++ extra-i686/PKGBUILD 2014-12-19 17:38:00 UTC (rev 227795)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=mercurial
-pkgver=3.2.2
-pkgrel=1
-pkgdesc=A scalable distributed SCM tool
-arch=('i686' 'x86_64')
-url=http://mercurial.selenic.com/;
-license=('GPL')
-depends=('python2')
-optdepends=('tk: for the hgk GUI')
-backup=('etc/mercurial/hgrc')
-source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
-'mercurial.profile')
-md5sums=('51305e11767a4c334a1e685c1f8f42b5'
- '43e1d36564d4c7fbe9a091d3ea370a44')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i -e 's#env python#env python2#' mercurial/lsprof.py
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  python2 setup.py install --root=${pkgdir}/ --optimize=1
-
-  install -d ${pkgdir}/usr/share/man/{man1,man5}
-  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
-  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
-  install -m755 contrib/hgk ${pkgdir}/usr/bin
-  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
-  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
-  install -d ${pkgdir}/usr/share/emacs/site-lisp
-  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
-
-  vimpath=${pkgdir}/usr/share/vim/vimfiles
-  install -Dm644 contrib/vim/HGAnnotate.vim ${vimpath}/syntax/HGAnnotate.vim
-
-  # set some variables
-  install -m755 -d ${pkgdir}/etc/profile.d
-  install -m755 ${srcdir}/mercurial.profile 
${pkgdir}/etc/profile.d/mercurial.sh
-
-  # install configuration file
-  install -m755 -d ${pkgdir}/etc/mercurial
-  # install -m644 contrib/sample.hgrc ${pkgdir}/etc/mercurial/hgrc
-
-  # FS#38825 - Add certs config to package
-  echo -e \n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt\n  
${pkgdir}/etc/mercurial/hgrc
-}

Copied: mercurial/repos/extra-i686/PKGBUILD (from rev 227794, 
mercurial/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-19 17:38:00 UTC (rev 227795)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=mercurial
+pkgver=3.2.3
+pkgrel=1
+pkgdesc=A scalable distributed SCM tool
+arch=('i686' 'x86_64')
+url=http://mercurial.selenic.com/;
+license=('GPL')
+depends=('python2')
+optdepends=('tk: for the hgk GUI')
+backup=('etc/mercurial/hgrc')
+source=(http://mercurial.selenic.com/release/${pkgname}-${pkgver}.tar.gz;
+'mercurial.profile')
+md5sums=('ca6d1a0b0fd255fb1b9fb3fa46a856b8'
+ '43e1d36564d4c7fbe9a091d3ea370a44')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i -e 's#env python#env python2#' mercurial/lsprof.py
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}/ --optimize=1
+
+  install -d ${pkgdir}/usr/share/man/{man1,man5}
+  install -m644 doc/hg.1 ${pkgdir}/usr/share/man/man1
+  install -m644 doc/{hgrc.5,hgignore.5} ${pkgdir}/usr/share/man/man5
+  install -m755 contrib/hgk ${pkgdir}/usr/bin
+  install -m644 -D contrib/zsh_completion 
${pkgdir}/usr/share/zsh/site-functions/_hg
+  install -m644 -D contrib/bash_completion 
${pkgdir}/usr/share/bash-completion/completions/hg
+  install -d ${pkgdir}/usr/share/emacs/site-lisp
+  install -m644 contrib/{mq.el,mercurial.el} 
${pkgdir}/usr/share/emacs/site-lisp
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -Dm644 contrib/vim/HGAnnotate.vim 

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

2014-12-19 Thread Sébastien Luttringer
Date: Friday, December 19, 2014 @ 19:32:32
  Author: seblu
Revision: 227796

db-move: moved file from [testing] to [core] (i686, x86_64)

Added:
  file/repos/core-i686/01-fix-broken-xz.patch
(from rev 227795, file/repos/testing-i686/01-fix-broken-xz.patch)
  file/repos/core-i686/02-ignore-exit-code-from-uncompress.patch
(from rev 227795, 
file/repos/testing-i686/02-ignore-exit-code-from-uncompress.patch)
  file/repos/core-i686/PKGBUILD
(from rev 227795, file/repos/testing-i686/PKGBUILD)
  file/repos/core-x86_64/01-fix-broken-xz.patch
(from rev 227795, file/repos/testing-x86_64/01-fix-broken-xz.patch)
  file/repos/core-x86_64/02-ignore-exit-code-from-uncompress.patch
(from rev 227795, 
file/repos/testing-x86_64/02-ignore-exit-code-from-uncompress.patch)
  file/repos/core-x86_64/PKGBUILD
(from rev 227795, file/repos/testing-x86_64/PKGBUILD)
Deleted:
  file/repos/core-i686/01-cve-2014-3710.patch
  file/repos/core-i686/PKGBUILD
  file/repos/core-x86_64/01-cve-2014-3710.patch
  file/repos/core-x86_64/PKGBUILD
  file/repos/testing-i686/
  file/repos/testing-x86_64/

---+
 /PKGBUILD |   84 
 core-i686/01-cve-2014-3710.patch  |   18 ---
 core-i686/01-fix-broken-xz.patch  |   44 
 core-i686/02-ignore-exit-code-from-uncompress.patch   |   34 ++
 core-i686/PKGBUILD|   38 ---
 core-x86_64/01-cve-2014-3710.patch|   18 ---
 core-x86_64/01-fix-broken-xz.patch|   44 
 core-x86_64/02-ignore-exit-code-from-uncompress.patch |   34 ++
 core-x86_64/PKGBUILD  |   38 ---
 9 files changed, 240 insertions(+), 112 deletions(-)

Deleted: core-i686/01-cve-2014-3710.patch
===
--- core-i686/01-cve-2014-3710.patch2014-12-19 17:38:00 UTC (rev 227795)
+++ core-i686/01-cve-2014-3710.patch2014-12-19 18:32:32 UTC (rev 227796)
@@ -1,18 +0,0 @@
-diff --git a/src/readelf.c b/src/readelf.c
-index 08f81f5..9ebdebd 100644
 a/src/readelf.c
-+++ b/src/readelf.c
-@@ -477,6 +477,13 @@ donote(struct magic_set *ms, void *vbuf, size_t offset, 
size_t size,
-   uint32_t namesz, descsz;
-   unsigned char *nbuf = CAST(unsigned char *, vbuf);
- 
-+  if (xnh_sizeof + offset  size) {
-+  /*
-+   * We're out of note headers.
-+   */
-+  return xnh_sizeof + offset;
-+  }
-+
-   (void)memcpy(xnh_addr, nbuf[offset], xnh_sizeof);
-   offset += xnh_sizeof;
- 

Copied: file/repos/core-i686/01-fix-broken-xz.patch (from rev 227795, 
file/repos/testing-i686/01-fix-broken-xz.patch)
===
--- core-i686/01-fix-broken-xz.patch(rev 0)
+++ core-i686/01-fix-broken-xz.patch2014-12-19 18:32:32 UTC (rev 227796)
@@ -0,0 +1,44 @@
+From abc95cd644418cc5205a8ad07d864f0851ac49df Mon Sep 17 00:00:00 2001
+From: Christos Zoulas chris...@zoulas.com
+Date: Thu, 11 Dec 2014 11:47:08 +
+Subject: [PATCH] PR/405: file -bizL git-2.1.3.tar.xz broke because the xz
+ decompressor dies with SIGPIPE when we stop reading from it early. ignore
+ SIGPIPE
+
+---
+ src/compress.c | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/src/compress.c b/src/compress.c
+index fa9e07a..bf93839 100644
+--- a/src/compress.c
 b/src/compress.c
+@@ -45,6 +45,7 @@ FILE_RCSID(@(#)$File: compress.c,v 1.74 2014/10/26 20:23:30 
christos Exp $)
+ #endif
+ #include string.h
+ #include errno.h
++#include signal.h
+ #if !defined(__MINGW32__)  !defined(WIN32)
+ #include sys/ioctl.h
+ #endif
+@@ -103,10 +104,12 @@ file_zmagic(struct magic_set *ms, int fd, const char 
*name,
+   size_t i, nsz;
+   int rv = 0;
+   int mime = ms-flags  MAGIC_MIME;
++  sig_t osigpipe;
+ 
+   if ((ms-flags  MAGIC_COMPRESS) == 0)
+   return 0;
+ 
++  osigpipe = signal(SIGPIPE, SIG_IGN);
+   for (i = 0; i  ncompr; i++) {
+   if (nbytes  compr[i].maglen)
+   continue;
+@@ -133,6 +136,7 @@ file_zmagic(struct magic_set *ms, int fd, const char *name,
+   }
+   }
+ error:
++  (void)signal(SIGPIPE, osigpipe);
+   free(newbuf);
+   ms-flags |= MAGIC_COMPRESS;
+   return rv;

Copied: file/repos/core-i686/02-ignore-exit-code-from-uncompress.patch (from 
rev 227795, file/repos/testing-i686/02-ignore-exit-code-from-uncompress.patch)
===
--- core-i686/02-ignore-exit-code-from-uncompress.patch 
(rev 0)
+++ core-i686/02-ignore-exit-code-from-uncompress.patch 2014-12-19 18:32:32 UTC 
(rev 227796)
@@ -0,0 +1,34 @@
+From 05463f7b3d4588a656089e20ab53a5b81b875341 Mon Sep 17 00:00:00 2001
+From: 

[arch-commits] Commit in virtualbox/repos (82 files)

2014-12-19 Thread Sébastien Luttringer
Date: Friday, December 19, 2014 @ 19:31:55
  Author: seblu
Revision: 124109

db-move: moved virtualbox from [community-testing] to [community] (i686, x86_64)

Added:
  virtualbox/repos/community-i686/001-vboxdrv-reference.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/001-vboxdrv-reference.patch)
  virtualbox/repos/community-i686/002-dri-driver-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/002-dri-driver-path.patch)
  virtualbox/repos/community-i686/003-ogl-include-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/003-ogl-include-path.patch)
  virtualbox/repos/community-i686/004-xorg.patch
(from rev 124108, virtualbox/repos/community-testing-i686/004-xorg.patch)
  virtualbox/repos/community-i686/005-gsoap-build.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/005-gsoap-build.patch)
  virtualbox/repos/community-i686/006-rdesktop-vrdp-keymap-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-i686/007-python2-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-i686/007-python2-path.patch)
  virtualbox/repos/community-i686/60-vboxdrv.rules
(from rev 124108, virtualbox/repos/community-testing-i686/60-vboxdrv.rules)
  virtualbox/repos/community-i686/60-vboxguest.rules
(from rev 124108, 
virtualbox/repos/community-testing-i686/60-vboxguest.rules)
  virtualbox/repos/community-i686/LocalConfig.kmk
(from rev 124108, virtualbox/repos/community-testing-i686/LocalConfig.kmk)
  virtualbox/repos/community-i686/PKGBUILD
(from rev 124108, virtualbox/repos/community-testing-i686/PKGBUILD)
  virtualbox/repos/community-i686/vboxreload
(from rev 124108, virtualbox/repos/community-testing-i686/vboxreload)
  virtualbox/repos/community-i686/vboxservice-nox.service
(from rev 124108, 
virtualbox/repos/community-testing-i686/vboxservice-nox.service)
  virtualbox/repos/community-i686/vboxservice.service
(from rev 124108, 
virtualbox/repos/community-testing-i686/vboxservice.service)
  virtualbox/repos/community-i686/vboxweb.service
(from rev 124108, virtualbox/repos/community-testing-i686/vboxweb.service)
  virtualbox/repos/community-i686/virtualbox-ext-vnc.install
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox-ext-vnc.install)
  virtualbox/repos/community-i686/virtualbox-guest-dkms.install
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox-guest-dkms.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.install
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox-guest-utils.install)
  virtualbox/repos/community-i686/virtualbox-guest-utils.sysusers
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox-guest-utils.sysusers)
  virtualbox/repos/community-i686/virtualbox-host-dkms.install
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox-host-dkms.install)
  virtualbox/repos/community-i686/virtualbox.install
(from rev 124108, 
virtualbox/repos/community-testing-i686/virtualbox.install)
  virtualbox/repos/community-x86_64/001-vboxdrv-reference.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/001-vboxdrv-reference.patch)
  virtualbox/repos/community-x86_64/002-dri-driver-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/002-dri-driver-path.patch)
  virtualbox/repos/community-x86_64/003-ogl-include-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/003-ogl-include-path.patch)
  virtualbox/repos/community-x86_64/004-xorg.patch
(from rev 124108, virtualbox/repos/community-testing-x86_64/004-xorg.patch)
  virtualbox/repos/community-x86_64/005-gsoap-build.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/005-gsoap-build.patch)
  virtualbox/repos/community-x86_64/006-rdesktop-vrdp-keymap-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/006-rdesktop-vrdp-keymap-path.patch)
  virtualbox/repos/community-x86_64/007-python2-path.patch
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/007-python2-path.patch)
  virtualbox/repos/community-x86_64/60-vboxdrv.rules
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/60-vboxdrv.rules)
  virtualbox/repos/community-x86_64/60-vboxguest.rules
(from rev 124108, 
virtualbox/repos/community-testing-x86_64/60-vboxguest.rules)
  virtualbox/repos/community-x86_64/LocalConfig.kmk
(from rev 124108, virtualbox/repos/community-testing-x86_64/LocalConfig.kmk)
  virtualbox/repos/community-x86_64/PKGBUILD
(from rev 124108, virtualbox/repos/community-testing-x86_64/PKGBUILD)
  virtualbox/repos/community-x86_64/vboxreload
(from rev 124108, virtualbox/repos/community-testing-x86_64/vboxreload)
  virtualbox/repos/community-x86_64/vboxservice-nox.service
(from rev 124108, 

[arch-commits] Commit in openldap/repos (24 files)

2014-12-19 Thread Sébastien Luttringer
Date: Friday, December 19, 2014 @ 19:32:36
  Author: seblu
Revision: 227798

db-move: moved openldap from [testing] to [core] (i686, x86_64)

Added:
  openldap/repos/core-i686/PKGBUILD
(from rev 227795, openldap/repos/testing-i686/PKGBUILD)
  openldap/repos/core-i686/openldap-ntlm.patch
(from rev 227795, openldap/repos/testing-i686/openldap-ntlm.patch)
  openldap/repos/core-i686/openldap.install
(from rev 227795, openldap/repos/testing-i686/openldap.install)
  openldap/repos/core-i686/slapd.service
(from rev 227795, openldap/repos/testing-i686/slapd.service)
  openldap/repos/core-i686/slapd.sysusers
(from rev 227795, openldap/repos/testing-i686/slapd.sysusers)
  openldap/repos/core-i686/slapd.tmpfiles
(from rev 227795, openldap/repos/testing-i686/slapd.tmpfiles)
  openldap/repos/core-x86_64/PKGBUILD
(from rev 227795, openldap/repos/testing-x86_64/PKGBUILD)
  openldap/repos/core-x86_64/openldap-ntlm.patch
(from rev 227795, openldap/repos/testing-x86_64/openldap-ntlm.patch)
  openldap/repos/core-x86_64/openldap.install
(from rev 227795, openldap/repos/testing-x86_64/openldap.install)
  openldap/repos/core-x86_64/slapd.service
(from rev 227795, openldap/repos/testing-x86_64/slapd.service)
  openldap/repos/core-x86_64/slapd.sysusers
(from rev 227795, openldap/repos/testing-x86_64/slapd.sysusers)
  openldap/repos/core-x86_64/slapd.tmpfiles
(from rev 227795, openldap/repos/testing-x86_64/slapd.tmpfiles)
Deleted:
  openldap/repos/core-i686/PKGBUILD
  openldap/repos/core-i686/openldap-ntlm.patch
  openldap/repos/core-i686/openldap.install
  openldap/repos/core-i686/slapd.service
  openldap/repos/core-i686/slapd.tmpfiles
  openldap/repos/core-x86_64/PKGBUILD
  openldap/repos/core-x86_64/openldap-ntlm.patch
  openldap/repos/core-x86_64/openldap.install
  openldap/repos/core-x86_64/slapd.service
  openldap/repos/core-x86_64/slapd.tmpfiles
  openldap/repos/testing-i686/
  openldap/repos/testing-x86_64/

-+
 /PKGBUILD   |  234 +++
 /openldap-ntlm.patch|  460 ++
 /openldap.install   |8 
 /slapd.service  |   18 +
 /slapd.tmpfiles |2 
 core-i686/PKGBUILD  |  113 -
 core-i686/openldap-ntlm.patch   |  230 ---
 core-i686/openldap.install  |   21 -
 core-i686/slapd.service |9 
 core-i686/slapd.sysusers|1 
 core-i686/slapd.tmpfiles|1 
 core-x86_64/PKGBUILD|  113 -
 core-x86_64/openldap-ntlm.patch |  230 ---
 core-x86_64/openldap.install|   21 -
 core-x86_64/slapd.service   |9 
 core-x86_64/slapd.sysusers  |1 
 core-x86_64/slapd.tmpfiles  |1 
 17 files changed, 724 insertions(+), 748 deletions(-)

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


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

2014-12-19 Thread Sébastien Luttringer
Date: Friday, December 19, 2014 @ 19:32:34
  Author: seblu
Revision: 227797

db-move: moved lz4 from [testing] to [core] (i686, x86_64)

Added:
  lz4/repos/core-i686/01-no-sudo.patch
(from rev 227795, lz4/repos/testing-i686/01-no-sudo.patch)
  lz4/repos/core-i686/PKGBUILD
(from rev 227795, lz4/repos/testing-i686/PKGBUILD)
  lz4/repos/core-x86_64/01-no-sudo.patch
(from rev 227795, lz4/repos/testing-x86_64/01-no-sudo.patch)
  lz4/repos/core-x86_64/PKGBUILD
(from rev 227795, lz4/repos/testing-x86_64/PKGBUILD)
Deleted:
  lz4/repos/core-i686/PKGBUILD
  lz4/repos/core-x86_64/PKGBUILD
  lz4/repos/testing-i686/
  lz4/repos/testing-x86_64/

--+
 /PKGBUILD|   86 +
 core-i686/01-no-sudo.patch   |   13 ++
 core-i686/PKGBUILD   |   37 -
 core-x86_64/01-no-sudo.patch |   13 ++
 core-x86_64/PKGBUILD |   37 -
 5 files changed, 112 insertions(+), 74 deletions(-)

Copied: lz4/repos/core-i686/01-no-sudo.patch (from rev 227795, 
lz4/repos/testing-i686/01-no-sudo.patch)
===
--- core-i686/01-no-sudo.patch  (rev 0)
+++ core-i686/01-no-sudo.patch  2014-12-19 18:32:34 UTC (rev 227797)
@@ -0,0 +1,13 @@
+--- a/Makefile 2014-12-13 13:22:59.470287957 +0100
 b/Makefile 2014-12-13 16:48:35.988030397 +0100
+@@ -93,8 +93,8 @@
+ ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
+ 
+ install:
+-  @cd $(LZ4DIR); sudo $(MAKE) -e install
+-  @cd $(PRGDIR); sudo $(MAKE) -e install
++  @cd $(LZ4DIR); $(MAKE) -e install
++  @cd $(PRGDIR); $(MAKE) -e install
+ 
+ uninstall:
+   @cd $(LZ4DIR); $(MAKE) uninstall

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2014-12-19 18:32:32 UTC (rev 227796)
+++ core-i686/PKGBUILD  2014-12-19 18:32:34 UTC (rev 227797)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-# Contacted by mail, author use svn commit as release version.
-# He only push tested release code into svn and support using revision as 
version
-
-pkgname=lz4
-pkgver=124
-pkgrel=1
-pkgdesc='Very fast lossless compression algorithm'
-arch=('i686' 'x86_64')
-url='https://code.google.com/p/lz4/'
-license=('GPL2')
-makedepends=('svn')
-checkdepends=('diffutils')
-depends=('glibc')
-source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;)
-md5sums=('SKIP')
-
-build() {
-  cd $pkgname
-  make
-}
-
-check() {
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install DESTDIR=$pkgdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/core-i686/PKGBUILD (from rev 227795, 
lz4/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2014-12-19 18:32:34 UTC (rev 227797)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+# Contacted by mail, author use svn commit as release version.
+# He only push tested release code into svn and support using revision as 
version
+
+pkgname=lz4
+pkgver=125
+pkgrel=1
+pkgdesc='Very fast lossless compression algorithm'
+arch=('i686' 'x86_64')
+url='https://code.google.com/p/lz4/'
+license=('GPL2')
+makedepends=('svn')
+checkdepends=('diffutils')
+depends=('glibc')
+source=($pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver;
+'01-no-sudo.patch')
+md5sums=('SKIP'
+ '316915aff147579235092f3081447802')
+
+prepare() {
+  patch -d $pkgname -p1  01-no-sudo.patch
+}
+
+build() {
+  cd $pkgname
+  make
+}
+
+check() {
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install DESTDIR=$pkgdir
+}
+
+# vim:set ts=2 sw=2 et:

Copied: lz4/repos/core-x86_64/01-no-sudo.patch (from rev 227795, 
lz4/repos/testing-x86_64/01-no-sudo.patch)
===
--- core-x86_64/01-no-sudo.patch(rev 0)
+++ core-x86_64/01-no-sudo.patch2014-12-19 18:32:34 UTC (rev 227797)
@@ -0,0 +1,13 @@
+--- a/Makefile 2014-12-13 13:22:59.470287957 +0100
 b/Makefile 2014-12-13 16:48:35.988030397 +0100
+@@ -93,8 +93,8 @@
+ ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
+ 
+ install:
+-  @cd $(LZ4DIR); sudo $(MAKE) -e install
+-  @cd $(PRGDIR); sudo $(MAKE) -e install
++  @cd $(LZ4DIR); $(MAKE) -e install
++  @cd $(PRGDIR); $(MAKE) -e install
+ 
+ uninstall:
+   @cd $(LZ4DIR); $(MAKE) uninstall

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2014-12-19 

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

2014-12-19 Thread Balló György
Date: Friday, December 19, 2014 @ 19:38:06
  Author: bgyorgy
Revision: 124111

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

Added:
  buoh/repos/community-i686/PKGBUILD
(from rev 124110, buoh/trunk/PKGBUILD)
  buoh/repos/community-i686/buoh-libsoup24.patch
(from rev 124110, buoh/trunk/buoh-libsoup24.patch)
  buoh/repos/community-i686/buoh.install
(from rev 124110, buoh/trunk/buoh.install)
  buoh/repos/community-i686/gtk3-port.patch
(from rev 124110, buoh/trunk/gtk3-port.patch)
  buoh/repos/community-i686/hide-help.patch
(from rev 124110, buoh/trunk/hide-help.patch)
  buoh/repos/community-x86_64/PKGBUILD
(from rev 124110, buoh/trunk/PKGBUILD)
  buoh/repos/community-x86_64/buoh-libsoup24.patch
(from rev 124110, buoh/trunk/buoh-libsoup24.patch)
  buoh/repos/community-x86_64/buoh.install
(from rev 124110, buoh/trunk/buoh.install)
  buoh/repos/community-x86_64/gtk3-port.patch
(from rev 124110, buoh/trunk/gtk3-port.patch)
  buoh/repos/community-x86_64/hide-help.patch
(from rev 124110, buoh/trunk/hide-help.patch)
Deleted:
  buoh/repos/community-i686/PKGBUILD
  buoh/repos/community-i686/buoh-libsoup24.patch
  buoh/repos/community-i686/buoh.install
  buoh/repos/community-x86_64/PKGBUILD
  buoh/repos/community-x86_64/buoh-libsoup24.patch
  buoh/repos/community-x86_64/buoh.install

---+
 /PKGBUILD |  104 +++
 /buoh-libsoup24.patch |  142 +
 /buoh.install |   44 +
 community-i686/PKGBUILD   |   41 -
 community-i686/buoh-libsoup24.patch   |   71 --
 community-i686/buoh.install   |   22 
 community-i686/gtk3-port.patch|  878 
 community-i686/hide-help.patch|   27 
 community-x86_64/PKGBUILD |   41 -
 community-x86_64/buoh-libsoup24.patch |   71 --
 community-x86_64/buoh.install |   22 
 community-x86_64/gtk3-port.patch  |  878 
 community-x86_64/hide-help.patch  |   27 
 13 files changed, 2100 insertions(+), 268 deletions(-)

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


[arch-commits] Commit in (4 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 19:38:40
  Author: arojas
Revision: 124112

Adding speedcrunch (188 votes)

Added:
  speedcrunch/
  speedcrunch/repos/
  speedcrunch/trunk/
  speedcrunch/trunk/PKGBUILD

--+
 PKGBUILD |   26 ++
 1 file changed, 26 insertions(+)

Added: speedcrunch/trunk/PKGBUILD
===
--- speedcrunch/trunk/PKGBUILD  (rev 0)
+++ speedcrunch/trunk/PKGBUILD  2014-12-19 18:38:40 UTC (rev 124112)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=1
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}


Property changes on: speedcrunch/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in buoh/trunk (PKGBUILD gtk3-port.patch hide-help.patch)

2014-12-19 Thread Balló György
Date: Friday, December 19, 2014 @ 19:37:53
  Author: bgyorgy
Revision: 124110

upgpkg: buoh 0.8.2-8

Build with GTK+ 3, hide Help menuitem

Added:
  buoh/trunk/gtk3-port.patch
  buoh/trunk/hide-help.patch
Modified:
  buoh/trunk/PKGBUILD

-+
 PKGBUILD|   35 +-
 gtk3-port.patch |  878 ++
 hide-help.patch |   27 +
 3 files changed, 928 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 18:31:55 UTC (rev 124109)
+++ PKGBUILD2014-12-19 18:37:53 UTC (rev 124110)
@@ -5,37 +5,48 @@
 
 pkgname=buoh
 pkgver=0.8.2
-pkgrel=7
-pkgdesc=Reader for online strips comics
+pkgrel=8
+pkgdesc=Online strips comics reader for GNOME
 arch=('i686' 'x86_64')
 url=http://buoh.steve-o.org/;
 license=('GPL')
-depends=('gtk2' 'libsoup=2.4.0' 'gconf' 'hicolor-icon-theme')
-makedepends=('intltool')
+depends=('gtk3' 'libsoup' 'gconf')
+makedepends=('intltool' 'gnome-common')
 options=('!emptydirs')
 install=buoh.install
 source=(http://buoh.steve-o.org/downloads/$pkgname-$pkgver.tar.bz2;
-buoh-libsoup24.patch)
+buoh-libsoup24.patch
+gtk3-port.patch
+hide-help.patch)
 md5sums=('50474a8712ad20ab36d8f8058a4647fb'
- 'c44f0e1828492a5d7d8efee764558fb4')
+ 'c44f0e1828492a5d7d8efee764558fb4'
+ '7647016612381fd6bbfd8862d8314039'
+ '14859095081954a3902f741a4fd673c7')
 
 prepare() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
 
   # Port to libsoup 2.4
-  patch -p1  ../buoh-libsoup24.patch
+  patch -Np1 -i ../buoh-libsoup24.patch
+
+  # Port to gtk3
+  patch -Np1 -i ../gtk3-port.patch
+
+  # Hide unimplemented Help menuitem
+  patch -Np1 -i ../hide-help.patch
+
+  autoreconf -fi
 }
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  autoconf
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --disable-schemas-install \
-  --with-gconf-schema-file-dir=/usr/share/gconf/schemas 
--without-libgnomeui
+  --with-gconf-schema-file-dir=/usr/share/gconf/schemas
   make AM_CFLAGS=-lxml2
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }

Added: gtk3-port.patch
===
--- gtk3-port.patch (rev 0)
+++ gtk3-port.patch 2014-12-19 18:37:53 UTC (rev 124110)
@@ -0,0 +1,878 @@
+diff -Naur buoh-0.8.2.orig/configure.in buoh-0.8.2/configure.in
+--- buoh-0.8.2.orig/configure.in   2014-12-19 18:30:13.922773000 +0100
 buoh-0.8.2/configure.in2014-12-19 18:30:44.960277530 +0100
+@@ -28,41 +28,18 @@
+ dnl **
+ 
+ GLIB_REQUIRED=2.6.0
+-GTK_REQUIRED=2.6.0
++GTK_REQUIRED=3.0.0
+ LIBSOUP_REQUIRED=2.4.0
+ GCONF_REQUIRED=2.2.0
+ 
+ PKG_CHECK_MODULES(BUOH, 
+ glib-2.0   = $GLIB_REQUIRED
+-gtk+-2.0   = $GTK_REQUIRED 
++gtk+-3.0   = $GTK_REQUIRED
+ libsoup-2.4= $LIBSOUP_REQUIRED
+ gconf-2.0  = $GCONF_REQUIRED) 
+ AC_SUBST(BUOH_CFLAGS)
+ AC_SUBST(BUOH_LIBS)
+ 
+-AC_ARG_WITH(libgnomeui,
+-  [AC_HELP_STRING([--with-libgnomeui], [Compile with print support 
[default=auto]])],
+-  with_libgnomeui=$withval,
+-  with_libgnomeui=auto)
+-
+-LIBGNOMEUI_REQUIRED=2.6.0
+-
+-PKG_CHECK_MODULES(LIBGNOMEUI, 
+-libgnomeui-2.0 = $LIBGNOMEUI_REQUIRED,
+-have_libgnomeui=yes, have_libgnomeui=no)
+-
+-enable_libgnomeui=no
+-if test x$have_libgnomeui = xyes; then
+-   if test x$with_libgnomeui = xyes -o x$with_libgnomeui = xauto; then
+-  AC_SUBST(LIBGNOMEUI_CFLAGS)
+-  AC_SUBST(LIBGNOMEUI_LIBS)
+-  AC_DEFINE([HAVE_LIBGNOMEUI],[1],[Enable GNOME UI.])
+-  enable_libgnomeui=yes
+-   fi
+-fi
+-
+-AM_CONDITIONAL(HAVE_LIBGNOMEUI, test x$enable_libgnomeui = xyes)
+-
+ AM_GCONF_SOURCE_2
+ 
+ AC_PATH_PROG([GCONFTOOL], [gconftool-2], [no])
+diff -Naur buoh-0.8.2.orig/src/buoh-add-comic-dialog.c 
buoh-0.8.2/src/buoh-add-comic-dialog.c
+--- buoh-0.8.2.orig/src/buoh-add-comic-dialog.c2006-10-21 
16:56:37.0 +0200
 buoh-0.8.2/src/buoh-add-comic-dialog.c 2014-12-19 18:30:44.963610954 
+0100
+@@ -67,9 +67,9 @@
+   gtk_window_set_title (GTK_WINDOW (dialog), _(Add Comic));
+   gtk_window_set_default_size (GTK_WINDOW (dialog), 400, 300);
+   gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
+-  gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+   gtk_container_set_border_width (GTK_CONTAINER (dialog), 5);
+-  gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)-vbox), 12);
++  gtk_box_set_spacing (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG 
(dialog))),
++   12);
+ 
+   gtk_dialog_add_button (GTK_DIALOG (dialog), GTK_STOCK_CLOSE,
+   

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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 19:41:02
  Author: arojas
Revision: 124113

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

Added:
  speedcrunch/repos/community-i686/
  speedcrunch/repos/community-i686/PKGBUILD
(from rev 124112, speedcrunch/trunk/PKGBUILD)
  speedcrunch/repos/community-x86_64/
  speedcrunch/repos/community-x86_64/PKGBUILD
(from rev 124112, speedcrunch/trunk/PKGBUILD)

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

Copied: speedcrunch/repos/community-i686/PKGBUILD (from rev 124112, 
speedcrunch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 18:41:02 UTC (rev 124113)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=1
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}

Copied: speedcrunch/repos/community-x86_64/PKGBUILD (from rev 124112, 
speedcrunch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 18:41:02 UTC (rev 124113)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=1
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}


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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 20:09:04
  Author: svenstaro
Revision: 124114

upgpkg: glm 0.9.6.1-3

cmake 3.1

Modified:
  glm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 18:41:02 UTC (rev 124113)
+++ PKGBUILD2014-12-19 19:09:04 UTC (rev 124114)
@@ -2,7 +2,7 @@
 # Contributor: Peter Hatina phatina AT gmail.com
 pkgname=glm
 pkgver=0.9.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
 arch=('any')
 license=('MIT')


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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 20:09:10
  Author: svenstaro
Revision: 124115

archrelease: copy trunk to community-staging-any

Added:
  glm/repos/community-staging-any/PKGBUILD
(from rev 124114, glm/trunk/PKGBUILD)
Deleted:
  glm/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-19 19:09:04 UTC (rev 124114)
+++ PKGBUILD2014-12-19 19:09:10 UTC (rev 124115)
@@ -1,25 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Peter Hatina phatina AT gmail.com
-pkgname=glm
-pkgver=0.9.6.1
-pkgrel=2
-pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
-arch=('any')
-license=('MIT')
-url=http://glm.g-truc.net;
-source=(http://sourceforge.net/projects/ogl-math/files/glm-$pkgver/glm-$pkgver.zip;)
-md5sums=('b1c5f1811d3fac4e3f4932bdab0cb7a6')
-
-package() {
-cd $pkgname
-mkdir -p $pkgdir/usr/include/glm
-mkdir -p $pkgdir/usr/share/doc
-cp -r glm $pkgdir/usr/include
-cp -r doc $pkgdir/usr/share/doc/glm
-rm -f $pkgdir/usr/include/glm/CMakeLists.txt
-find $pkgdir -type f -exec chmod 644 {} \;
-find $pkgdir -type d -exec chmod 755 {} \;
-
-install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.1/Modules/FindGLM.cmake
-install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: glm/repos/community-staging-any/PKGBUILD (from rev 124114, 
glm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-19 19:09:10 UTC (rev 124115)
@@ -0,0 +1,25 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Peter Hatina phatina AT gmail.com
+pkgname=glm
+pkgver=0.9.6.1
+pkgrel=3
+pkgdesc=C++ mathematics library for 3D software based on the OpenGL Shading 
Language (GLSL) specification
+arch=('any')
+license=('MIT')
+url=http://glm.g-truc.net;
+source=(http://sourceforge.net/projects/ogl-math/files/glm-$pkgver/glm-$pkgver.zip;)
+md5sums=('b1c5f1811d3fac4e3f4932bdab0cb7a6')
+
+package() {
+cd $pkgname
+mkdir -p $pkgdir/usr/include/glm
+mkdir -p $pkgdir/usr/share/doc
+cp -r glm $pkgdir/usr/include
+cp -r doc $pkgdir/usr/share/doc/glm
+rm -f $pkgdir/usr/include/glm/CMakeLists.txt
+find $pkgdir -type f -exec chmod 644 {} \;
+find $pkgdir -type d -exec chmod 755 {} \;
+
+install -Dm644 util/FindGLM.cmake 
$pkgdir/usr/share/cmake-3.1/Modules/FindGLM.cmake
+install -Dm644 copying.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 20:11:31
  Author: svenstaro
Revision: 124117

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-19 19:11:25 UTC (rev 124116)
+++ community-i686/PKGBUILD 2014-12-19 19:11:31 UTC (rev 124117)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.33.0
-pkgrel=2
-pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
-arch=('i686' 'x86_64')
-url=http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('d0d2b135910b9925999bd7983a10c2ff96381859')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-i686/PKGBUILD (from rev 124116, 
openmw/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 19:11:31 UTC (rev 124117)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.34.0
+pkgrel=1
+pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
+arch=('i686' 'x86_64')
+url=http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('269998405293964462b4af8f48294ee19832c540')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 19:11:25 UTC (rev 124116)
+++ community-x86_64/PKGBUILD   2014-12-19 19:11:31 UTC (rev 124117)
@@ -1,28 +0,0 @@
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Sandy Carter bwrsand...@gmail.com
-
-pkgname=openmw
-pkgver=0.33.0
-pkgrel=2
-pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
-arch=('i686' 'x86_64')
-url=http://www.openmw.org;
-license=('GPL3' 'MIT' 'custom')
-depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
-makedepends=('cmake' 'boost')
-source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('d0d2b135910b9925999bd7983a10c2ff96381859')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: openmw/repos/community-x86_64/PKGBUILD (from rev 124116, 
openmw/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 19:11:31 UTC (rev 124117)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Sandy Carter bwrsand...@gmail.com
+
+pkgname=openmw
+pkgver=0.34.0
+pkgrel=1
+pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
+arch=('i686' 'x86_64')
+url=http://www.openmw.org;
+license=('GPL3' 'MIT' 'custom')
+depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
+makedepends=('cmake' 'boost')
+source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
+sha1sums=('269998405293964462b4af8f48294ee19832c540')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make

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

2014-12-19 Thread Sven-Hendrik Haase
Date: Friday, December 19, 2014 @ 20:11:25
  Author: svenstaro
Revision: 124116

upgpkg: openmw 0.34.0-1

upstream release 0.34.0

Modified:
  openmw/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 19:09:10 UTC (rev 124115)
+++ PKGBUILD2014-12-19 19:11:25 UTC (rev 124116)
@@ -2,8 +2,8 @@
 # Contributor: Sandy Carter bwrsand...@gmail.com
 
 pkgname=openmw
-pkgver=0.33.0
-pkgrel=2
+pkgver=0.34.0
+pkgrel=1
 pkgdesc=An open-source engine reimplementation for the role-playing game 
Morrowind
 arch=('i686' 'x86_64')
 url=http://www.openmw.org;
@@ -11,7 +11,7 @@
 depends=('openal' 'ogre' 'mygui' 'bullet' 'qt4' 'ffmpeg' 'sdl2' 'unshield')
 makedepends=('cmake' 'boost')
 source=(https://github.com/OpenMW/openmw/archive/openmw-${pkgver}.tar.gz;)
-sha1sums=('d0d2b135910b9925999bd7983a10c2ff96381859')
+sha1sums=('269998405293964462b4af8f48294ee19832c540')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgname}-${pkgver}


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 20:21:00
  Author: arojas
Revision: 124118

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

Added:
  speedcrunch/repos/community-i686/PKGBUILD
(from rev 124117, speedcrunch/trunk/PKGBUILD)
  speedcrunch/repos/community-x86_64/PKGBUILD
(from rev 124117, speedcrunch/trunk/PKGBUILD)
Deleted:
  speedcrunch/repos/community-i686/PKGBUILD
  speedcrunch/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-12-19 19:11:31 UTC (rev 124117)
+++ community-i686/PKGBUILD 2014-12-19 19:21:00 UTC (rev 124118)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=speedcrunch
-pkgver=0.11
-pkgrel=1
-pkgdesc=Simple but powerful calculator using Qt
-arch=('i686' 'x86_64')
-url=http://speedcrunch.org/;
-license=('GPL2')
-depends=('qt4')
-makedepends=('cmake')
-source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
-md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
-
-build() {
-   cd SpeedCrunch-$pkgver/src
-   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
-   make
-}
-
-package() {
-   cd SpeedCrunch-$pkgver/src
-   make DESTDIR=$pkgdir install
-}

Copied: speedcrunch/repos/community-i686/PKGBUILD (from rev 124117, 
speedcrunch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 19:21:00 UTC (rev 124118)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=1
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 19:11:31 UTC (rev 124117)
+++ community-x86_64/PKGBUILD   2014-12-19 19:21:00 UTC (rev 124118)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=speedcrunch
-pkgver=0.11
-pkgrel=1
-pkgdesc=Simple but powerful calculator using Qt
-arch=('i686' 'x86_64')
-url=http://speedcrunch.org/;
-license=('GPL2')
-depends=('qt4')
-makedepends=('cmake')
-source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
-md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
-
-build() {
-   cd SpeedCrunch-$pkgver/src
-   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
-   make
-}
-
-package() {
-   cd SpeedCrunch-$pkgver/src
-   make DESTDIR=$pkgdir install
-}

Copied: speedcrunch/repos/community-x86_64/PKGBUILD (from rev 124117, 
speedcrunch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 19:21:00 UTC (rev 124118)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=1
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 20:34:24
  Author: arojas
Revision: 124119

upgpkg: speedcrunch 0.11-2

Rebuild to fix PACKAGER

Modified:
  speedcrunch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 19:21:00 UTC (rev 124118)
+++ PKGBUILD2014-12-19 19:34:24 UTC (rev 124119)
@@ -4,7 +4,7 @@
 
 pkgname=speedcrunch
 pkgver=0.11
-pkgrel=1
+pkgrel=2
 pkgdesc=Simple but powerful calculator using Qt
 arch=('i686' 'x86_64')
 url=http://speedcrunch.org/;


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 20:35:19
  Author: arojas
Revision: 124120

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

Added:
  speedcrunch/repos/community-i686/PKGBUILD
(from rev 124119, speedcrunch/trunk/PKGBUILD)
  speedcrunch/repos/community-x86_64/PKGBUILD
(from rev 124119, speedcrunch/trunk/PKGBUILD)
Deleted:
  speedcrunch/repos/community-i686/PKGBUILD
  speedcrunch/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-12-19 19:34:24 UTC (rev 124119)
+++ community-i686/PKGBUILD 2014-12-19 19:35:19 UTC (rev 124120)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=speedcrunch
-pkgver=0.11
-pkgrel=1
-pkgdesc=Simple but powerful calculator using Qt
-arch=('i686' 'x86_64')
-url=http://speedcrunch.org/;
-license=('GPL2')
-depends=('qt4')
-makedepends=('cmake')
-source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
-md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
-
-build() {
-   cd SpeedCrunch-$pkgver/src
-   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
-   make
-}
-
-package() {
-   cd SpeedCrunch-$pkgver/src
-   make DESTDIR=$pkgdir install
-}

Copied: speedcrunch/repos/community-i686/PKGBUILD (from rev 124119, 
speedcrunch/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 19:35:19 UTC (rev 124120)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=2
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 19:34:24 UTC (rev 124119)
+++ community-x86_64/PKGBUILD   2014-12-19 19:35:19 UTC (rev 124120)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas aro...@archlinux.org
-# Contributor: Ronald van Haren ronald.archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=speedcrunch
-pkgver=0.11
-pkgrel=1
-pkgdesc=Simple but powerful calculator using Qt
-arch=('i686' 'x86_64')
-url=http://speedcrunch.org/;
-license=('GPL2')
-depends=('qt4')
-makedepends=('cmake')
-source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
-md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
-
-build() {
-   cd SpeedCrunch-$pkgver/src
-   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
-   make
-}
-
-package() {
-   cd SpeedCrunch-$pkgver/src
-   make DESTDIR=$pkgdir install
-}

Copied: speedcrunch/repos/community-x86_64/PKGBUILD (from rev 124119, 
speedcrunch/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 19:35:19 UTC (rev 124120)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Ronald van Haren ronald.archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+
+pkgname=speedcrunch
+pkgver=0.11
+pkgrel=2
+pkgdesc=Simple but powerful calculator using Qt
+arch=('i686' 'x86_64')
+url=http://speedcrunch.org/;
+license=('GPL2')
+depends=('qt4')
+makedepends=('cmake')
+source=(https://github.com/speedcrunch/SpeedCrunch/archive/$pkgver.tar.gz;)
+md5sums=('0d4458d98a3630cc121ca04d5a36e38c')
+
+build() {
+   cd SpeedCrunch-$pkgver/src
+   cmake . -DCMAKE_INSTALL_PREFIX=/usr -DQT_QMAKE_EXECUTABLE=qmake-qt4
+   make
+}
+
+package() {
+   cd SpeedCrunch-$pkgver/src
+   make DESTDIR=$pkgdir install
+}


[arch-commits] Commit in (4 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 20:57:04
  Author: arojas
Revision: 124121

Add clipgrab (84 votes)

Added:
  clipgrab/
  clipgrab/trunk/
  clipgrab/trunk/PKGBUILD
  clipgrab/trunk/clipgrab.desktop

--+
 PKGBUILD |   31 +++
 clipgrab.desktop |   13 +
 2 files changed, 44 insertions(+)

Added: clipgrab/trunk/PKGBUILD
===
--- clipgrab/trunk/PKGBUILD (rev 0)
+++ clipgrab/trunk/PKGBUILD 2014-12-19 19:57:04 UTC (rev 124121)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: thacrazze thacrazze|googlemail|com
+
+pkgname=clipgrab
+pkgver=3.4.8
+pkgrel=1
+pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
+arch=('i686' 'x86_64')
+url='http://clipgrab.de/en'
+license=('GPL3')
+depends=('qtwebkit')
+optdepends=('ffmpeg: for the conversion functionality')
+source=(http://download.clipgrab.de/$pkgname-$pkgver.tar.bz2
+$pkgname.desktop)
+md5sums=('f15acc189a2bbf43fd0ed3a47e1d9ee0'
+ '9a141791f6952917c441050c3dac81ce')
+
+build() {
+  cd $pkgname
+
+  qmake-qt4 clipgrab.pro
+  make
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 icon.png $pkgdir/usr/share/pixmaps/$pkgname.png
+  install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Added: clipgrab/trunk/clipgrab.desktop
===
--- clipgrab/trunk/clipgrab.desktop (rev 0)
+++ clipgrab/trunk/clipgrab.desktop 2014-12-19 19:57:04 UTC (rev 124121)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=ClipGrab
+GenericName=Video Downloader
+GenericName[de]=Video-Downloader
+Comment=Download videos and convert it
+Comment[de]=Videos herunterladen und konvertieren
+Icon=/usr/share/pixmaps/clipgrab.png
+Exec=clipgrab
+TryExec=clipgrab
+Terminal=false
+Categories=Qt;AudioVideo;Audio;Video;


[arch-commits] Commit in clipgrab (7 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:09:41
  Author: arojas
Revision: 124122

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

Added:
  clipgrab/repos/
  clipgrab/repos/community-i686/
  clipgrab/repos/community-i686/PKGBUILD
(from rev 124121, clipgrab/trunk/PKGBUILD)
  clipgrab/repos/community-i686/clipgrab.desktop
(from rev 124121, clipgrab/trunk/clipgrab.desktop)
  clipgrab/repos/community-x86_64/
  clipgrab/repos/community-x86_64/PKGBUILD
(from rev 124121, clipgrab/trunk/PKGBUILD)
  clipgrab/repos/community-x86_64/clipgrab.desktop
(from rev 124121, clipgrab/trunk/clipgrab.desktop)

---+
 community-i686/PKGBUILD   |   31 +++
 community-i686/clipgrab.desktop   |   13 +
 community-x86_64/PKGBUILD |   31 +++
 community-x86_64/clipgrab.desktop |   13 +
 4 files changed, 88 insertions(+)

Copied: clipgrab/repos/community-i686/PKGBUILD (from rev 124121, 
clipgrab/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 20:09:41 UTC (rev 124122)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: thacrazze thacrazze|googlemail|com
+
+pkgname=clipgrab
+pkgver=3.4.8
+pkgrel=1
+pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
+arch=('i686' 'x86_64')
+url='http://clipgrab.de/en'
+license=('GPL3')
+depends=('qtwebkit')
+optdepends=('ffmpeg: for the conversion functionality')
+source=(http://download.clipgrab.de/$pkgname-$pkgver.tar.bz2
+$pkgname.desktop)
+md5sums=('f15acc189a2bbf43fd0ed3a47e1d9ee0'
+ '9a141791f6952917c441050c3dac81ce')
+
+build() {
+  cd $pkgname
+
+  qmake-qt4 clipgrab.pro
+  make
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 icon.png $pkgdir/usr/share/pixmaps/$pkgname.png
+  install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: clipgrab/repos/community-i686/clipgrab.desktop (from rev 124121, 
clipgrab/trunk/clipgrab.desktop)
===
--- repos/community-i686/clipgrab.desktop   (rev 0)
+++ repos/community-i686/clipgrab.desktop   2014-12-19 20:09:41 UTC (rev 
124122)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=ClipGrab
+GenericName=Video Downloader
+GenericName[de]=Video-Downloader
+Comment=Download videos and convert it
+Comment[de]=Videos herunterladen und konvertieren
+Icon=/usr/share/pixmaps/clipgrab.png
+Exec=clipgrab
+TryExec=clipgrab
+Terminal=false
+Categories=Qt;AudioVideo;Audio;Video;

Copied: clipgrab/repos/community-x86_64/PKGBUILD (from rev 124121, 
clipgrab/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 20:09:41 UTC (rev 124122)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: thacrazze thacrazze|googlemail|com
+
+pkgname=clipgrab
+pkgver=3.4.8
+pkgrel=1
+pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, 
MyVideo, ...'
+arch=('i686' 'x86_64')
+url='http://clipgrab.de/en'
+license=('GPL3')
+depends=('qtwebkit')
+optdepends=('ffmpeg: for the conversion functionality')
+source=(http://download.clipgrab.de/$pkgname-$pkgver.tar.bz2
+$pkgname.desktop)
+md5sums=('f15acc189a2bbf43fd0ed3a47e1d9ee0'
+ '9a141791f6952917c441050c3dac81ce')
+
+build() {
+  cd $pkgname
+
+  qmake-qt4 clipgrab.pro
+  make
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 icon.png $pkgdir/usr/share/pixmaps/$pkgname.png
+  install -Dm644 $srcdir/$pkgname.desktop 
$pkgdir/usr/share/applications/$pkgname.desktop
+}

Copied: clipgrab/repos/community-x86_64/clipgrab.desktop (from rev 124121, 
clipgrab/trunk/clipgrab.desktop)
===
--- repos/community-x86_64/clipgrab.desktop (rev 0)
+++ repos/community-x86_64/clipgrab.desktop 2014-12-19 20:09:41 UTC (rev 
124122)
@@ -0,0 +1,13 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=ClipGrab
+GenericName=Video Downloader
+GenericName[de]=Video-Downloader
+Comment=Download videos and convert it
+Comment[de]=Videos herunterladen und konvertieren
+Icon=/usr/share/pixmaps/clipgrab.png
+Exec=clipgrab
+TryExec=clipgrab
+Terminal=false
+Categories=Qt;AudioVideo;Audio;Video;


[arch-commits] Commit in (5 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:22:15
  Author: arojas
Revision: 124123

Add knights (73 votes)

Added:
  knights/
  knights/repos/
  knights/trunk/
  knights/trunk/PKGBUILD
  knights/trunk/knights.install

-+
 PKGBUILD|   32 
 knights.install |   11 +++
 2 files changed, 43 insertions(+)

Added: knights/trunk/PKGBUILD
===
--- knights/trunk/PKGBUILD  (rev 0)
+++ knights/trunk/PKGBUILD  2014-12-19 20:22:15 UTC (rev 124123)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=knights
+pkgver=2.5.0
+pkgrel=2
+pkgdesc=Chess board for KDE with XBoard protocol support
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/Knights?content=122046;
+license=('GPL')
+depends=('libkdegames' 'kdebase-runtime')
+optdepends=('gnuchess: for playing against the computer')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://dl.dropbox.com/u/2888238/Knights/$pkgname-$pkgver.tar.bz2;)
+md5sums=('58237998aeee8b6414f6e6f92d070395')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Added: knights/trunk/knights.install
===
--- knights/trunk/knights.install   (rev 0)
+++ knights/trunk/knights.install   2014-12-19 20:22:15 UTC (rev 124123)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:30:42
  Author: arojas
Revision: 124124

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

Added:
  knights/repos/community-i686/
  knights/repos/community-i686/PKGBUILD
(from rev 124123, knights/trunk/PKGBUILD)
  knights/repos/community-i686/knights.install
(from rev 124123, knights/trunk/knights.install)
  knights/repos/community-x86_64/
  knights/repos/community-x86_64/PKGBUILD
(from rev 124123, knights/trunk/PKGBUILD)
  knights/repos/community-x86_64/knights.install
(from rev 124123, knights/trunk/knights.install)

--+
 community-i686/PKGBUILD  |   32 
 community-i686/knights.install   |   11 +++
 community-x86_64/PKGBUILD|   32 
 community-x86_64/knights.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: knights/repos/community-i686/PKGBUILD (from rev 124123, 
knights/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 20:30:42 UTC (rev 124124)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=knights
+pkgver=2.5.0
+pkgrel=2
+pkgdesc=Chess board for KDE with XBoard protocol support
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/Knights?content=122046;
+license=('GPL')
+depends=('libkdegames' 'kdebase-runtime')
+optdepends=('gnuchess: for playing against the computer')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://dl.dropbox.com/u/2888238/Knights/$pkgname-$pkgver.tar.bz2;)
+md5sums=('58237998aeee8b6414f6e6f92d070395')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: knights/repos/community-i686/knights.install (from rev 124123, 
knights/trunk/knights.install)
===
--- community-i686/knights.install  (rev 0)
+++ community-i686/knights.install  2014-12-19 20:30:42 UTC (rev 124124)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: knights/repos/community-x86_64/PKGBUILD (from rev 124123, 
knights/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-12-19 20:30:42 UTC (rev 124124)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=knights
+pkgver=2.5.0
+pkgrel=2
+pkgdesc=Chess board for KDE with XBoard protocol support
+arch=('i686' 'x86_64')
+url=http://kde-apps.org/content/show.php/Knights?content=122046;
+license=('GPL')
+depends=('libkdegames' 'kdebase-runtime')
+optdepends=('gnuchess: for playing against the computer')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://dl.dropbox.com/u/2888238/Knights/$pkgname-$pkgver.tar.bz2;)
+md5sums=('58237998aeee8b6414f6e6f92d070395')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: knights/repos/community-x86_64/knights.install (from rev 124123, 
knights/trunk/knights.install)
===
--- community-x86_64/knights.install(rev 0)
+++ community-x86_64/knights.install2014-12-19 20:30:42 UTC (rev 124124)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


[arch-commits] Commit in (4 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:36:07
  Author: arojas
Revision: 124125

Add partitionmanager (29 votes)

Added:
  partitionmanager/
  partitionmanager/trunk/
  partitionmanager/trunk/PKGBUILD
  partitionmanager/trunk/partitionmanager.install

--+
 PKGBUILD |   41 +
 partitionmanager.install |   11 +++
 2 files changed, 52 insertions(+)

Added: partitionmanager/trunk/PKGBUILD
===
--- partitionmanager/trunk/PKGBUILD (rev 0)
+++ partitionmanager/trunk/PKGBUILD 2014-12-19 20:36:07 UTC (rev 124125)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Nick B Shirakawasuna at gmail _dot_com
+
+pkgname=partitionmanager
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=A KDE utility that allows you to manage disks, partitions, and file 
systems
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/system/kdepartitionmanager/;
+license=('GPL2')
+depends=('kdebase-runtime' 'parted')
+makedepends=('cmake' 'automoc4')
+optdepends=('e2fsprogs: ext2/3/4 support'
+   'xfsprogs: XFS support'
+   'jfsutils: JFS support'
+   'reiserfsprogs: Reiser support'
+   'ntfsprogs: NTFS support'
+   'dosfstools: FAT32 support')
+install=$pkgname.install
+source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('4a752c250fc5c98e22aba1d2ea309bec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_UDISKS2=ON \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Added: partitionmanager/trunk/partitionmanager.install
===
--- partitionmanager/trunk/partitionmanager.install 
(rev 0)
+++ partitionmanager/trunk/partitionmanager.install 2014-12-19 20:36:07 UTC 
(rev 124125)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}


[arch-commits] Commit in partitionmanager (7 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:44:54
  Author: arojas
Revision: 124126

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

Added:
  partitionmanager/repos/
  partitionmanager/repos/community-i686/
  partitionmanager/repos/community-i686/PKGBUILD
(from rev 124125, partitionmanager/trunk/PKGBUILD)
  partitionmanager/repos/community-i686/partitionmanager.install
(from rev 124125, partitionmanager/trunk/partitionmanager.install)
  partitionmanager/repos/community-x86_64/
  partitionmanager/repos/community-x86_64/PKGBUILD
(from rev 124125, partitionmanager/trunk/PKGBUILD)
  partitionmanager/repos/community-x86_64/partitionmanager.install
(from rev 124125, partitionmanager/trunk/partitionmanager.install)

---+
 community-i686/PKGBUILD   |   41 
 community-i686/partitionmanager.install   |   11 +++
 community-x86_64/PKGBUILD |   41 
 community-x86_64/partitionmanager.install |   11 +++
 4 files changed, 104 insertions(+)

Copied: partitionmanager/repos/community-i686/PKGBUILD (from rev 124125, 
partitionmanager/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 20:44:54 UTC (rev 124126)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Nick B Shirakawasuna at gmail _dot_com
+
+pkgname=partitionmanager
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=A KDE utility that allows you to manage disks, partitions, and file 
systems
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/system/kdepartitionmanager/;
+license=('GPL2')
+depends=('kdebase-runtime' 'parted')
+makedepends=('cmake' 'automoc4')
+optdepends=('e2fsprogs: ext2/3/4 support'
+   'xfsprogs: XFS support'
+   'jfsutils: JFS support'
+   'reiserfsprogs: Reiser support'
+   'ntfsprogs: NTFS support'
+   'dosfstools: FAT32 support')
+install=$pkgname.install
+source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('4a752c250fc5c98e22aba1d2ea309bec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_UDISKS2=ON \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: partitionmanager/repos/community-i686/partitionmanager.install (from 
rev 124125, partitionmanager/trunk/partitionmanager.install)
===
--- repos/community-i686/partitionmanager.install   
(rev 0)
+++ repos/community-i686/partitionmanager.install   2014-12-19 20:44:54 UTC 
(rev 124126)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: partitionmanager/repos/community-x86_64/PKGBUILD (from rev 124125, 
partitionmanager/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 20:44:54 UTC (rev 124126)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+# Contributor: Nick B Shirakawasuna at gmail _dot_com
+
+pkgname=partitionmanager
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=A KDE utility that allows you to manage disks, partitions, and file 
systems
+arch=('i686' 'x86_64')
+url=http://kde.org/applications/system/kdepartitionmanager/;
+license=('GPL2')
+depends=('kdebase-runtime' 'parted')
+makedepends=('cmake' 'automoc4')
+optdepends=('e2fsprogs: ext2/3/4 support'
+   'xfsprogs: XFS support'
+   'jfsutils: JFS support'
+   'reiserfsprogs: Reiser support'
+   'ntfsprogs: NTFS support'
+   'dosfstools: FAT32 support')
+install=$pkgname.install
+source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+md5sums=('4a752c250fc5c98e22aba1d2ea309bec')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DENABLE_UDISKS2=ON \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}

Copied: partitionmanager/repos/community-x86_64/partitionmanager.install (from 
rev 124125, partitionmanager/trunk/partitionmanager.install)
===
--- repos/community-x86_64/partitionmanager.install 
(rev 

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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 21:49:34
  Author: arojas
Revision: 124127

Update dependency

Modified:
  partitionmanager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 20:44:54 UTC (rev 124126)
+++ PKGBUILD2014-12-19 20:49:34 UTC (rev 124127)
@@ -15,7 +15,7 @@
'xfsprogs: XFS support'
'jfsutils: JFS support'
'reiserfsprogs: Reiser support'
-   'ntfsprogs: NTFS support'
+   'ntfs-3g: NTFS support'
'dosfstools: FAT32 support')
 install=$pkgname.install
 
source=(http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)


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

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 21:55:15
  Author: andyrtr
Revision: 227799

upgpkg: libreoffice-still 4.2.8-2

poppler 0.29.0 rebuild

Modified:
  libreoffice-still/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 18:32:36 UTC (rev 227798)
+++ PKGBUILD2014-12-19 20:55:15 UTC (rev 227799)
@@ -20,7 +20,7 @@
'libreoffice-still-extension-nlpsolver')
 _LOver=4.2.8.2
 pkgver=4.2.8
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url=http://www.libreoffice.org/;
@@ -183,6 +183,7 @@
  '07d2bf5ad839a394cca008b3ec6e7bb1'
  '4195735a80876ae812fca5736b50192a'
  'e7e4b3e70e99e5cba8f8dfcacf3b0d87')
+validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3')
 
 prepare() {
 


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

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 21:56:20
  Author: andyrtr
Revision: 227800

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

Added:
  libreoffice-still/repos/staging-i686/
  libreoffice-still/repos/staging-i686/PKGBUILD
(from rev 227799, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/staging-i686/libreoffice-still-base.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-base.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-calc.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-calc.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.csh
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.csh)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-common.sh
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.sh)
  libreoffice-still/repos/staging-i686/libreoffice-still-draw.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-draw.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-impress.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-impress.install)
  libreoffice-still/repos/staging-i686/libreoffice-still-writer.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-writer.install)
  
libreoffice-still/repos/staging-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 227799, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  libreoffice-still/repos/staging-x86_64/
  libreoffice-still/repos/staging-x86_64/PKGBUILD
(from rev 227799, libreoffice-still/trunk/PKGBUILD)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-base.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-base.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-calc.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-calc.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.csh
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.csh)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-common.sh
(from rev 227799, libreoffice-still/trunk/libreoffice-still-common.sh)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-draw.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-draw.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-impress.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-impress.install)
  libreoffice-still/repos/staging-x86_64/libreoffice-still-writer.install
(from rev 227799, libreoffice-still/trunk/libreoffice-still-writer.install)
  
libreoffice-still/repos/staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 227799, 
libreoffice-still/trunk/make-pyuno-work-with-system-wide-module-install.diff)

-+
 staging-i686/PKGBUILD   |  736 
++
 staging-i686/libreoffice-still-base.install |   11 
 staging-i686/libreoffice-still-calc.install |   11 
 staging-i686/libreoffice-still-common.csh   |6 
 staging-i686/libreoffice-still-common.install   |   22 
 staging-i686/libreoffice-still-common.sh|6 
 staging-i686/libreoffice-still-draw.install |   11 
 staging-i686/libreoffice-still-impress.install  |   11 
 staging-i686/libreoffice-still-writer.install   |   11 
 staging-i686/make-pyuno-work-with-system-wide-module-install.diff   |   44 
 staging-x86_64/PKGBUILD |  736 
++
 staging-x86_64/libreoffice-still-base.install   |   11 
 staging-x86_64/libreoffice-still-calc.install   |   11 
 staging-x86_64/libreoffice-still-common.csh |6 
 staging-x86_64/libreoffice-still-common.install |   22 
 staging-x86_64/libreoffice-still-common.sh  |6 
 staging-x86_64/libreoffice-still-draw.install   |   11 
 staging-x86_64/libreoffice-still-impress.install|   11 
 staging-x86_64/libreoffice-still-writer.install |   11 
 staging-x86_64/make-pyuno-work-with-system-wide-module-install.diff |   44 
 20 files changed, 1738 insertions(+)

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


[arch-commits] Commit in (3 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:06:09
  Author: arojas
Revision: 124128

Set Id keyword

Modified:
  clipgrab/trunk/PKGBUILD   (properties)
  knights/trunk/PKGBUILD(properties)
  partitionmanager/trunk/PKGBUILD   (properties)

Index: clipgrab/trunk/PKGBUILD
===
--- clipgrab/trunk/PKGBUILD 2014-12-19 20:49:34 UTC (rev 124127)
+++ clipgrab/trunk/PKGBUILD 2014-12-19 21:06:09 UTC (rev 124128)

Property changes on: clipgrab/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: knights/trunk/PKGBUILD
===
--- knights/trunk/PKGBUILD  2014-12-19 20:49:34 UTC (rev 124127)
+++ knights/trunk/PKGBUILD  2014-12-19 21:06:09 UTC (rev 124128)

Property changes on: knights/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: partitionmanager/trunk/PKGBUILD
===
--- partitionmanager/trunk/PKGBUILD 2014-12-19 20:49:34 UTC (rev 124127)
+++ partitionmanager/trunk/PKGBUILD 2014-12-19 21:06:09 UTC (rev 124128)

Property changes on: partitionmanager/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 22:16:46
  Author: andyrtr
Revision: 227801

upgpkg: cups-filters 1.0.61-4

poppler 0.29.0 rebuild

Modified:
  cups-filters/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 20:56:20 UTC (rev 227800)
+++ PKGBUILD2014-12-19 21:16:46 UTC (rev 227801)
@@ -3,7 +3,7 @@
 
 pkgname=cups-filters
 pkgver=1.0.61
-pkgrel=3
+pkgrel=4
 pkgdesc=OpenPrinting CUPS Filters
 arch=('i686' 'x86_64')
 url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;


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

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 22:17:00
  Author: andyrtr
Revision: 227802

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

Added:
  cups-filters/repos/staging-i686/
  cups-filters/repos/staging-i686/PKGBUILD
(from rev 227801, cups-filters/trunk/PKGBUILD)
  cups-filters/repos/staging-x86_64/
  cups-filters/repos/staging-x86_64/PKGBUILD
(from rev 227801, cups-filters/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   54 ++
 staging-x86_64/PKGBUILD |   54 ++
 2 files changed, 108 insertions(+)

Copied: cups-filters/repos/staging-i686/PKGBUILD (from rev 227801, 
cups-filters/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-19 21:17:00 UTC (rev 227802)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.61
+pkgrel=4
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('3d77ee5eb9c6ee82036c0f7b67d5c3c5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|cups.service|org.cups.cupsd.service|g 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  
+  # use lp group from cups pkg FS#36769
+  chgrp -R lp ${pkgdir}/etc/cups
+}

Copied: cups-filters/repos/staging-x86_64/PKGBUILD (from rev 227801, 
cups-filters/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-12-19 21:17:00 UTC (rev 227802)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=cups-filters
+pkgver=1.0.61
+pkgrel=4
+pkgdesc=OpenPrinting CUPS Filters
+arch=('i686' 'x86_64')
+url=http://www.linuxfoundation.org/collaborate/workgroups/openprinting;
+license=('GPL')
+depends=('lcms2' 'poppler' 'qpdf')
+makedepends=('ghostscript' 'ttf-dejavu') # ttf-dejavu for make check
+optdepends=('ghostscript: for non-PostScript printers to print with CUPS to 
convert PostScript to raster images'
+   'foomatic-db: drivers use Ghostscript to convert PostScript to a 
printable form directly'
+   'foomatic-db-engine: drivers use Ghostscript to convert PostScript 
to a printable form directly'
+   'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript 
to a printable form directly')
+backup=(etc/fonts/conf.d/99pdftoopvp.conf
+etc/cups/cups-browsed.conf)
+source=(http://www.openprinting.org/download/cups-filters/$pkgname-$pkgver.tar.gz)
+provides=('foomatic-filters')
+replaces=('foomatic-filters')
+conflicts=('foomatic-filters')
+md5sums=('3d77ee5eb9c6ee82036c0f7b67d5c3c5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr  \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--with-rcdir=no \
+--enable-avahi \
+--with-browseremoteprotocols=DNSSD,CUPS \
+--with-test-font-path=/usr/share/fonts/TTF/DejaVuSans.ttf
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir/ install
+  
+  # add upstream systemd support file
+  install -Dm644 utils/cups-browsed.service 
${pkgdir}/usr/lib/systemd/system/cups-browsed.service
+  sed -i s|/usr/sbin/cups-browsed|/usr/bin/cups-browsed| 

[arch-commits] Commit in (6 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:37:06
  Author: arojas
Revision: 124129

Splitting sage-mathematics

Added:
  cblas/
  cblas/trunk/
  cblas/trunk/LICENSE
  cblas/trunk/Makefile.in
  cblas/trunk/PKGBUILD
  cblas/trunk/cblas.patch

-+
 LICENSE |1 +
 Makefile.in |   52 
 PKGBUILD|   41 +
 cblas.patch |   11 +++
 4 files changed, 105 insertions(+)

Added: cblas/trunk/LICENSE
===
(Binary files differ)

Index: cblas/trunk/LICENSE
===
--- cblas/trunk/LICENSE 2014-12-19 21:06:09 UTC (rev 124128)
+++ cblas/trunk/LICENSE 2014-12-19 21:37:06 UTC (rev 124129)

Property changes on: cblas/trunk/LICENSE
___
Added: svn:mime-type
## -0,0 +1 ##
+message/rfc822
\ No newline at end of property
Added: cblas/trunk/Makefile.in
===
--- cblas/trunk/Makefile.in (rev 0)
+++ cblas/trunk/Makefile.in 2014-12-19 21:37:06 UTC (rev 124129)
@@ -0,0 +1,52 @@
+#
+# Makefile.LINUX
+#
+#
+# If you compile, change the name to Makefile.in.
+#
+#
+ 
+#-
+# Shell
+#-
+
+SHELL = /bin/sh
+
+#-
+# Platform
+#-
+
+PLAT = LINUX
+
+#-
+# Libraries and includs
+#-
+ 
+BLLIB = libblas.so
+CBDIR = $(PWD)
+CBLIBDIR = $(CBDIR)/lib
+CBLIB = $(CBLIBDIR)/libcblas.a
+CBSHLIB = $(CBLIBDIR)/libcblas.so
+
+#-
+# Compilers
+#-
+
+CC = gcc
+FC = gfortran
+LOADER = $(FC)
+
+#-
+# Flags for Compilers
+#-
+
+CFLAGS = -O3 -DADD_ -fPIC
+FFLAGS = -O3 -fPIC
+
+#-
+# Archive programs and flags
+#-
+
+ARCH = ar
+ARCHFLAGS = r
+RANLIB = echo

Added: cblas/trunk/PKGBUILD
===
--- cblas/trunk/PKGBUILD(rev 0)
+++ cblas/trunk/PKGBUILD2014-12-19 21:37:06 UTC (rev 124129)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
+# Contributor: Sebastien Binet binet@farnsworthpkgname=cblas
+
+pkgname=cblas
+pkgver=3.5.0
+pkgrel=1
+pkgdesc=C interface to BLAS
+url=http://www.netlib.org/blas;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('glibc' 'blas')
+makedepends=('gcc-fortran')
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
+
+prepare() {
+  cd CBLAS
+
+  /bin/cp $srcdir/Makefile.in .
+  patch -p0 -i $srcdir/cblas.patch
+
+  install -d CBLAS/src/lib
+}
+
+build() {
+  cd BLAS
+  make alllib
+}
+
+package() {
+  install -d $pkgdir/usr/lib
+  install -d $pkgdir/usr/include
+
+  install -m755 CBLAS/src/lib/* $pkgdir/usr/lib
+  install -m644 CBLAS/include/cblas.h $pkgdir/usr/include
+
+  install -m755 -d $pkgdir/usr/share/licenses/cblas
+  install -m644 LICENSE $pkgdir/usr/share/licenses/cblas/
+}
+


Property changes on: cblas/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: cblas/trunk/cblas.patch
===
--- cblas/trunk/cblas.patch (rev 0)
+++ cblas/trunk/cblas.patch 2014-12-19 21:37:06 UTC (rev 124129)
@@ -0,0 +1,11 @@
+--- src/Makefile.orig  2011-01-05 11:39:24.0 +0100
 src/Makefile   2011-01-05 11:42:20.0 +0100
+@@ -234,7 +234,7 @@
+ all: $(alev)  
+   $(ARCH) $(ARCHFLAGS)  $(CBLIB) $(alev) 
+   $(RANLIB) $(CBLIB)
+-
++  $(CC) $(CCFLAGS) -shared -Wl,--allow-multiple-definition -o $(CBSHLIB) 
$(alev) -lm -lc -lblas
+ 
+ .SUFFIXES: .o .c .f
+ 


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:38:39
  Author: arojas
Revision: 124130

Fix md5sums

Modified:
  cblas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 21:37:06 UTC (rev 124129)
+++ PKGBUILD2014-12-19 21:38:39 UTC (rev 124130)
@@ -13,6 +13,10 @@
 depends=('glibc' 'blas')
 makedepends=('gcc-fortran')
 source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
+md5sums=('1e8830f622d2112239a4a8a83b84209a'
+ 'e779fc195f8f48672656522bcfd642e4'
+ 'a4dc51bcd46f80b921be46f1fa855f00'
+ '38b6acb8ed5691d25863319d30a8b365')
 
 prepare() {
   cd CBLAS


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:44:53
  Author: arojas
Revision: 124131

Fix build

Modified:
  cblas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 21:38:39 UTC (rev 124130)
+++ PKGBUILD2014-12-19 21:44:53 UTC (rev 124131)
@@ -10,7 +10,7 @@
 url=http://www.netlib.org/blas;
 arch=('i686' 'x86_64')
 license=('custom')
-depends=('glibc' 'blas')
+depends=('blas')
 makedepends=('gcc-fortran')
 source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
 md5sums=('1e8830f622d2112239a4a8a83b84209a'
@@ -24,11 +24,11 @@
   /bin/cp $srcdir/Makefile.in .
   patch -p0 -i $srcdir/cblas.patch
 
-  install -d CBLAS/src/lib
+  install -d src/lib
 }
 
 build() {
-  cd BLAS
+  cd CBLAS
   make alllib
 }
 


[arch-commits] Commit in cblas (11 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:46:49
  Author: arojas
Revision: 124132

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

Added:
  cblas/repos/
  cblas/repos/community-i686/
  cblas/repos/community-i686/LICENSE
(from rev 124131, cblas/trunk/LICENSE)
  cblas/repos/community-i686/Makefile.in
(from rev 124131, cblas/trunk/Makefile.in)
  cblas/repos/community-i686/PKGBUILD
(from rev 124131, cblas/trunk/PKGBUILD)
  cblas/repos/community-i686/cblas.patch
(from rev 124131, cblas/trunk/cblas.patch)
  cblas/repos/community-x86_64/
  cblas/repos/community-x86_64/LICENSE
(from rev 124131, cblas/trunk/LICENSE)
  cblas/repos/community-x86_64/Makefile.in
(from rev 124131, cblas/trunk/Makefile.in)
  cblas/repos/community-x86_64/PKGBUILD
(from rev 124131, cblas/trunk/PKGBUILD)
  cblas/repos/community-x86_64/cblas.patch
(from rev 124131, cblas/trunk/cblas.patch)

--+
 community-i686/Makefile.in   |   52 +
 community-i686/PKGBUILD  |   45 +++
 community-i686/cblas.patch   |   11 
 community-x86_64/Makefile.in |   52 +
 community-x86_64/PKGBUILD|   45 +++
 community-x86_64/cblas.patch |   11 
 6 files changed, 216 insertions(+)

Copied: cblas/repos/community-i686/LICENSE (from rev 124131, 
cblas/trunk/LICENSE)
===
(Binary files differ)

Copied: cblas/repos/community-i686/Makefile.in (from rev 124131, 
cblas/trunk/Makefile.in)
===
--- repos/community-i686/Makefile.in(rev 0)
+++ repos/community-i686/Makefile.in2014-12-19 21:46:49 UTC (rev 124132)
@@ -0,0 +1,52 @@
+#
+# Makefile.LINUX
+#
+#
+# If you compile, change the name to Makefile.in.
+#
+#
+ 
+#-
+# Shell
+#-
+
+SHELL = /bin/sh
+
+#-
+# Platform
+#-
+
+PLAT = LINUX
+
+#-
+# Libraries and includs
+#-
+ 
+BLLIB = libblas.so
+CBDIR = $(PWD)
+CBLIBDIR = $(CBDIR)/lib
+CBLIB = $(CBLIBDIR)/libcblas.a
+CBSHLIB = $(CBLIBDIR)/libcblas.so
+
+#-
+# Compilers
+#-
+
+CC = gcc
+FC = gfortran
+LOADER = $(FC)
+
+#-
+# Flags for Compilers
+#-
+
+CFLAGS = -O3 -DADD_ -fPIC
+FFLAGS = -O3 -fPIC
+
+#-
+# Archive programs and flags
+#-
+
+ARCH = ar
+ARCHFLAGS = r
+RANLIB = echo

Copied: cblas/repos/community-i686/PKGBUILD (from rev 124131, 
cblas/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 21:46:49 UTC (rev 124132)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Andreas B. Wagner andreasbwag...@pointfree.net
+# Contributor: Sebastien Binet binet@farnsworthpkgname=cblas
+
+pkgname=cblas
+pkgver=3.5.0
+pkgrel=1
+pkgdesc=C interface to BLAS
+url=http://www.netlib.org/blas;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('blas')
+makedepends=('gcc-fortran')
+source=('http://www.netlib.org/blas/blast-forum/cblas.tgz' 'cblas.patch' 
'Makefile.in' 'LICENSE')
+md5sums=('1e8830f622d2112239a4a8a83b84209a'
+ 'e779fc195f8f48672656522bcfd642e4'
+ 'a4dc51bcd46f80b921be46f1fa855f00'
+ '38b6acb8ed5691d25863319d30a8b365')
+
+prepare() {
+  cd CBLAS
+
+  /bin/cp $srcdir/Makefile.in .
+  patch -p0 -i $srcdir/cblas.patch
+
+  install -d src/lib
+}
+
+build() {
+  cd CBLAS
+  make alllib
+}
+
+package() {
+  install -d $pkgdir/usr/lib
+  install -d $pkgdir/usr/include
+
+  install -m755 CBLAS/src/lib/* $pkgdir/usr/lib
+  install -m644 CBLAS/include/cblas.h $pkgdir/usr/include
+
+  install -m755 -d $pkgdir/usr/share/licenses/cblas
+  install -m644 LICENSE $pkgdir/usr/share/licenses/cblas/
+}
+

Copied: cblas/repos/community-i686/cblas.patch (from rev 124131, 
cblas/trunk/cblas.patch)
===
--- repos/community-i686/cblas.patch   

[arch-commits] Commit in libreoffice-fresh-i18n/trunk (PKGBUILD)

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 22:51:15
  Author: andyrtr
Revision: 227803

upgpkg: libreoffice-fresh-i18n 4.3.5-1

upstream update 4.3.5

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  336 ++---
 1 file changed, 168 insertions(+), 168 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 21:17:00 UTC (rev 227802)
+++ PKGBUILD2014-12-19 21:51:15 UTC (rev 227803)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=4.3.4
+pkgver=4.3.5
 pkgrel=1
-_rcver=${pkgver}.1
+_rcver=${pkgver}.2
 #_oodlver=${pkgver}.0.beta1
 _oodlver=${pkgver}
 
@@ -136,172 +136,172 @@
   'zh-TW Chinese (traditional)'
   'zuZulu'
 )
-md5sums=('a21b95ace70b35df92ad7227ab6e107a'
- 'a011ad99b44f826938fb639c5fb8b207'
- '28dc3107359bb61e2e4eff1c7713d17b'
- '71f4feeb1f46833a7ea6403c079451be'
- '8dd7d47ad48996fcc83607cd530fc592'
- '894ff70a75711ab1ad1c3b705cb741b3'
- '66e6c48a01350973f9df788fa9ddec89'
- 'db5a1877f3903442b2693c6e8a73a672'
- 'e4ea9d9b22832e216ae54e4baf8e4902'
- '38635463edc458fbc1e0c4c41f709e4b'
- '2da562e292a960d753b5dea072560a9a'
- '9f0cc0db2e18cc2209b6db4b07d92290'
- '9fbe77e0e65ab5907d8d2a32cd46bbb8'
- '2fb5dff3617646458f256cdf0d3659c0'
- '81235a51d3c483e8d2f6d310cdf41c62'
- '74cad5768c469ef1d3cb9a13a6de16d4'
- '0beb8ea4ca20af97a379abcbf3909725'
- '5bebc0c96a01c27d844a28c04b9a2e4a'
- 'dc1d1f67a261f3524c34c3f633b7f896'
- '8f7994cd52297c9629bc476a9c8b2815'
- '86324740bf6f983be3bcfa0820f7b52e'
- '7ca86875645105bc17432e72da6690e6'
- 'f4b8ae9be043a10f89ae1c8fe480331f'
- 'c6a62b32171c62c1adaada2b937693ac'
- '10be0eaf88a0b826548374ffd78a9079'
- 'f796137c355b75245c3319e084d665d5'
- '19176359a5b65b3ea622239f12b669c0'
- 'bb94fdc1583cacda0f900badd5159164'
- '745e0ab44d43324001e1ae6e6f9d65ba'
- 'e15ef9b25038a6b2061abb5930fc39e0'
- 'fc3850af0c99bd60a9ff22b3adf41ffe'
- 'f64dc20e240d46b67950987bda140f87'
- 'd5b350cbb68b5bca431580e2cd6c1a56'
- 'cea28a61ecca1591efcbe5420c35d943'
- '7c36b77822a100367d2e911b04bccfa1'
- '33393f602b3e64b5e92e327a02845e37'
- '5958433af4f69297a0ed60105dca336a'
- '4d58695b729109e973a37969be6c0fd6'
- '5de7409bc1db798225cc1993bc867d12'
- '22f02c0bce28b548f787a01b96440977'
- 'dee8cea32a88901b0214e5bf60ad45a1'
- '48258df6c90558bde3c6f5c95611437a'
- 'ed65b06acb45fe77674474a05b7738c2'
- 'e1b21018e8c2f0d8e9c784b414c22a7b'
- 'aa5fd2687e655043d7da345915067765'
- '659597a293c6eeac0f375ba1694e1aff'
- '42f689b3bebe2d60e8a68ed308c0ef49'
- '241cfdee7923e35289eea335da22a2df'
- '8b13b6d1e2e40132d4ac2c7054e92e13'
- '0db4f1be203b61c661cc9fc5075eb6d7'
- 'b1de9e4d27201fcb75c3119f9b2be4f6'
- '1eca3c423f9c10f5f5d5d294b2f2bf8d'
- '9995abad81f772d29110b9835d6a1bf0'
- '462c224d2d74b8576444bb12f855c3d3'
- 'c5a1a1048c0c4415e2f0a44aaa64594c'
- 'a4783d46ee79fa3a2e287cded9252e88'
- '65cf901b2fbc01638b09950907d39356'
- 'bfbec58a6177b38eb176bb8fbda4a271'
- '543d03335fa3decc67040b4030085beb'
- '999e2f9fa2a76d497164439bb4685724'
- '428c6b3c639cf7b10a9eee0e28b5a3ba'
- 'd04853266ad1c34852cba7bb00471ce0'
- '89ed6a05ece762897b06e21a8773bc64'
- 'f3d9d81cd36d31c2e6da279f64165b8e'
- '114c9d0d77efe24594f454728c195f46'
- '1d5d79dbfb0b078f8ae65775ba11a37f'
- '46f3577f2b8c8bedb9f473a359c55c9f'
- '6b3c1b2389019f8a39ab03ea7b185918'
- 'a9492de6eb3d94d3c8b13f6b71f12cef'
- 'e313181a382d4c1ee2aa7739682dae21'
- 'f5dfcc2ec3756c22504f21232146fe13'
- '945344358a3d3741b89a2b7708f6a420'
- 'ec73e14aad184354829b29146a7bfc06'
- '16a9b73cef3776ca65249fe41e771d80'
- 'a50f473a49962efdb797877255382417'
- '43bd8e55fa25f09e53d62d2ad1a6f997'
- 'f5fecb70d20b8596dcaf956ba3368990'
- '62af027c1f39219b8b4fc60adcc4a526'
- '53770721b667b62273eb487e758d5c14'
- 'c8ee4bcdfefa5849ad71ff2f18c6a2f4'
- '925479bc99faf31e4effa98c7029fe64'
- '3c7fa8627869258b02837b424f96d060'
- '6a9cd4f075dd1fadedfb65ef1d23d6e7'
- 'a040cb3682c01f4b71632f508f0434a3'
- '0fdd923785cf2491a1d339e32ca9c013'
- 'c4f7230a2508c393436ad38ad64c8af5'
- '2bc55673439939f1d4ab38c98e780a97'
- 'cffc3481c79004e3efe31da3be54b3a4'
- 'f56af71252f2c71c16c3c49ec8e43a00'
- '8471b5e1606b4aa80823c92a116e5289'
- '142d21007d829ebd2273cb648c832791'
- 'c434ce479b9039148ae62f4e8129fc61'
- '7e17270d45ec3980837be26f71161d0c'
- 

[arch-commits] Commit in libreoffice-fresh-i18n/repos (2 files)

2014-12-19 Thread Andreas Radke
Date: Friday, December 19, 2014 @ 22:53:50
  Author: andyrtr
Revision: 227804

archrelease: copy trunk to staging-any

Added:
  libreoffice-fresh-i18n/repos/staging-any/
  libreoffice-fresh-i18n/repos/staging-any/PKGBUILD
(from rev 227803, libreoffice-fresh-i18n/trunk/PKGBUILD)

--+
 PKGBUILD |  354 +
 1 file changed, 354 insertions(+)

Copied: libreoffice-fresh-i18n/repos/staging-any/PKGBUILD (from rev 227803, 
libreoffice-fresh-i18n/trunk/PKGBUILD)
===
--- staging-any/PKGBUILD(rev 0)
+++ staging-any/PKGBUILD2014-12-19 21:53:50 UTC (rev 227804)
@@ -0,0 +1,354 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Maintainer: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+
+pkgbase=libreoffice-fresh-i18n
+
+pkgver=4.3.5
+pkgrel=1
+_rcver=${pkgver}.2
+#_oodlver=${pkgver}.0.beta1
+_oodlver=${pkgver}
+
+arch=('any')
+url=http://www.documentfoundation.org;
+license=('LGPL')
+makedepends=('rpmextract')
+
+#http://download.documentfoundation.org/mirrors/all.html
+_url=http://download.documentfoundation.org/libreoffice/stable;
+#_url=http://download.documentfoundation.org/libreoffice/testing;
+#_url=http://dev-builds.libreoffice.org/pre-releases;
+#_url=http://www.libreoffice.org/download/pre-releases;
+
+#_url+=/${pkgver}-rc2/rpm/x86
+_url+=/${pkgver}/rpm/x86
+#_url+=/rpm/x86
+
+_languages=(
+  'afAfrikaans'
+  'amAmharic'
+  'arArabic'
+  'asAssamese (India)'
+  'ast   Asturianu'
+  'beBelarusian'
+  'bgBulgarian'
+  'bnBengali'
+  'bn-IN Bengali (India)'
+  'boTibetan'
+  'brBreton'
+  'brx   Bodo'
+  'bsBosnian'
+  'caCatalan'
+  'ca-valencia   Catalan (Valencia)'
+  'csCzech'
+  'cyWelsh'
+  'daDanish'
+  'deGerman'
+  'dgo   Dogri'
+  'dzDzongkha'
+  'elGreek'
+  'en-GB English (GB)'
+  'en-ZA English (ZA)'
+  'eoEsperanto'
+  'esSpanish'
+  'etEstonian'
+  'euBasque'
+  'faPersian'
+  'fiFinnish'
+  'frFrench'
+  'gaIrish'
+  'gdGaelic (Scottish)'
+  'glGalician'
+  'guGujarati'
+  'heHebrew'
+  'hiHindi'
+  'hrCroatian'
+  'huHungarian'
+  'idIndonesian'
+  'isIcelandic'
+  'itItalian'
+  'jaJapanese'
+  'kaGeorgian'
+  'kkKazakh'
+  'kmKhmer (Cambodia)'
+  'kmr-Latn  Kurdish'
+  'knKannada'
+  'koKorean'
+  'kok   Konkani'
+  'ksKashmiri'
+  'lbLuxembourgish'
+  'loLao'
+  'ltLithuanian'
+  'lvLatvian'
+  'mai   Maithili'
+  'mkMacedonian'
+  'mlMalayalam'
+  'mnMongolian'
+  'mni   Manipuri'
+  'mrMarathi'
+  'myBurmese'
+  'nbNorwegian Bokmal'
+  'neNepali'
+  'nlDutch'
+  'nnNorwegian Nynorsk'
+  'nrNdebele (South)'
+  'nso   Northern Sotho'
+  'ocOccitan'
+  'omOromo'
+  'orOriya'
+  'pa-IN Punjabi (India)'
+  'plPolish'
+  'ptPortuguese'
+  'pt-BR Portuguese (Brasil)'
+  'roRomanian'
+  'ruRussian'
+  'rwKinyarwanda'
+  'sa-IN Sanskrit (India)'
+  'sat   Santali'
+  'sdSindhi'
+  'siSinghalese'
+  'sid   Sidama'
+  'skSlovak'
+  'slSlovenian'
+  'sqAlbanien'
+  'srSerbian'
+  'sr-Latn   Serbian (Latin)'
+  'ssSwati'
+  'stSouthern Sotho'
+  'svSwedish'
+  'sw-TZ Swahili (Tanzania)'
+  'taTamil'
+  'teTelugu'
+  'tgTajik'
+  'thThai'
+  'tnTswana'
+  'trTurkish'
+  'tsTsonga'
+  'ttTatar'
+  'ugUighur'
+  'ukUkrainian'
+  'uzUzbek'
+  'veVenda'
+  'viVietnamese'
+  'xhXhosa'
+  'zh-CN Chinese (simplified)'
+  'zh-TW Chinese (traditional)'
+  'zuZulu'
+)
+md5sums=('099491600411ddaf521143e622e03872'
+ '0a3b7e4bdcaf16b95f4227a39bdb8368'
+ 'dadd5a3fba52ef316c2b7375237789f9'
+ '580c8a1006ecedd088e62f0c7b49b752'
+ '409cbe6c339f91e4b46eec990e40f1ce'
+ '77fb264426dc547f0d483c5c663d6f60'
+ 'f1b7f70305dbe80849e946c4c8bbf21a'
+ '8a1465194aa7d90fc597f95441892d7a'
+ 

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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:55:53
  Author: arojas
Revision: 124133

Splitting sage-mathematics

Added:
  iml/
  iml/trunk/
  iml/trunk/PKGBUILD

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

Added: iml/trunk/PKGBUILD
===
--- iml/trunk/PKGBUILD  (rev 0)
+++ iml/trunk/PKGBUILD  2014-12-19 21:55:53 UTC (rev 124133)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=iml
+pkgver=1.0.4
+pkgrel=2
+pkgdesc=C Library of integer matrix algorithms
+arch=('i686' 'x86_64')
+url=https://cs.uwaterloo.ca/~astorjoh/iml.html;
+license=('GPL')
+depends=('gmp' 'cblas')
+source=(http://www.cs.uwaterloo.ca/~astorjoh/$pkgname-$pkgver.tar.bz2;)
+md5sums=('b5958c8d6ba89fff96ee82af6854cf7d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-shared --with-cblas=-lcblas
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: iml/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:57:59
  Author: arojas
Revision: 124134

Fix md5sum

Modified:
  iml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 21:55:53 UTC (rev 124133)
+++ PKGBUILD2014-12-19 21:57:59 UTC (rev 124134)
@@ -10,7 +10,7 @@
 license=('GPL')
 depends=('gmp' 'cblas')
 source=(http://www.cs.uwaterloo.ca/~astorjoh/$pkgname-$pkgver.tar.bz2;)
-md5sums=('b5958c8d6ba89fff96ee82af6854cf7d')
+md5sums=('cfe3ebc69748c4ac240d6e200b6937ca')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in iml (5 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 22:58:50
  Author: arojas
Revision: 124135

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

Added:
  iml/repos/
  iml/repos/community-i686/
  iml/repos/community-i686/PKGBUILD
(from rev 124134, iml/trunk/PKGBUILD)
  iml/repos/community-x86_64/
  iml/repos/community-x86_64/PKGBUILD
(from rev 124134, iml/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   24 
 community-x86_64/PKGBUILD |   24 
 2 files changed, 48 insertions(+)

Copied: iml/repos/community-i686/PKGBUILD (from rev 124134, iml/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 21:58:50 UTC (rev 124135)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=iml
+pkgver=1.0.4
+pkgrel=2
+pkgdesc=C Library of integer matrix algorithms
+arch=('i686' 'x86_64')
+url=https://cs.uwaterloo.ca/~astorjoh/iml.html;
+license=('GPL')
+depends=('gmp' 'cblas')
+source=(http://www.cs.uwaterloo.ca/~astorjoh/$pkgname-$pkgver.tar.bz2;)
+md5sums=('cfe3ebc69748c4ac240d6e200b6937ca')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-shared --with-cblas=-lcblas
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: iml/repos/community-x86_64/PKGBUILD (from rev 124134, 
iml/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 21:58:50 UTC (rev 124135)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+
+pkgname=iml
+pkgver=1.0.4
+pkgrel=2
+pkgdesc=C Library of integer matrix algorithms
+arch=('i686' 'x86_64')
+url=https://cs.uwaterloo.ca/~astorjoh/iml.html;
+license=('GPL')
+depends=('gmp' 'cblas')
+source=(http://www.cs.uwaterloo.ca/~astorjoh/$pkgname-$pkgver.tar.bz2;)
+md5sums=('cfe3ebc69748c4ac240d6e200b6937ca')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-shared --with-cblas=-lcblas
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 23:15:07
  Author: arojas
Revision: 124136

Splitting sage-mathematics

Added:
  gf2x/
  gf2x/trunk/
  gf2x/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 29 insertions(+)

Added: gf2x/trunk/PKGBUILD
===
--- gf2x/trunk/PKGBUILD (rev 0)
+++ gf2x/trunk/PKGBUILD 2014-12-19 22:15:07 UTC (rev 124136)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=gf2x
+pkgver=1.1
+pkgrel=1
+pkgdesc=A library for multiplying polynomials over the binary field
+arch=('i686' 'x86_64')
+url=http://gforge.inria.fr/projects/gf2x/;
+license=('GPL' 'LGPL')
+depends=('glibc')
+options=('!libtool')
+source=(http://gforge.inria.fr/frs/download.php/30873/gf2x-1.1.tar.gz;)
+md5sums=('d9ce3a0d8cb6be50e3a1ff6d90be669f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-sse2 CFLAGS=$CFLAGS -msse2
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}


Property changes on: gf2x/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in gf2x (5 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 23:15:58
  Author: arojas
Revision: 124137

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

Added:
  gf2x/repos/
  gf2x/repos/community-i686/
  gf2x/repos/community-i686/PKGBUILD
(from rev 124136, gf2x/trunk/PKGBUILD)
  gf2x/repos/community-x86_64/
  gf2x/repos/community-x86_64/PKGBUILD
(from rev 124136, gf2x/trunk/PKGBUILD)

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

Copied: gf2x/repos/community-i686/PKGBUILD (from rev 124136, 
gf2x/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 22:15:58 UTC (rev 124137)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=gf2x
+pkgver=1.1
+pkgrel=1
+pkgdesc=A library for multiplying polynomials over the binary field
+arch=('i686' 'x86_64')
+url=http://gforge.inria.fr/projects/gf2x/;
+license=('GPL' 'LGPL')
+depends=('glibc')
+options=('!libtool')
+source=(http://gforge.inria.fr/frs/download.php/30873/gf2x-1.1.tar.gz;)
+md5sums=('d9ce3a0d8cb6be50e3a1ff6d90be669f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-sse2 CFLAGS=$CFLAGS -msse2
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}

Copied: gf2x/repos/community-x86_64/PKGBUILD (from rev 124136, 
gf2x/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 22:15:58 UTC (rev 124137)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+
+pkgname=gf2x
+pkgver=1.1
+pkgrel=1
+pkgdesc=A library for multiplying polynomials over the binary field
+arch=('i686' 'x86_64')
+url=http://gforge.inria.fr/projects/gf2x/;
+license=('GPL' 'LGPL')
+depends=('glibc')
+options=('!libtool')
+source=(http://gforge.inria.fr/frs/download.php/30873/gf2x-1.1.tar.gz;)
+md5sums=('d9ce3a0d8cb6be50e3a1ff6d90be669f')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-sse2 CFLAGS=$CFLAGS -msse2
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make prefix=$pkgdir/usr install
+}


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

2014-12-19 Thread Gaetan Bisson
Date: Friday, December 19, 2014 @ 23:34:32
  Author: bisson
Revision: 227805

upstream update

Modified:
  ntp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 21:53:50 UTC (rev 227804)
+++ PKGBUILD2014-12-19 22:34:32 UTC (rev 227805)
@@ -4,9 +4,10 @@
 
 pkgname=ntp
 _pkgname=ntp-dev
-_pkgver=4.2.7p465
-pkgver=${_pkgver/p/.p}
-pkgrel=2
+_pkgver=4.2.7p486-RC
+__pkgver=${_pkgver/p/.p}
+pkgver=${__pkgver%-RC}
+pkgrel=1
 pkgdesc='Network Time Protocol reference implementation'
 url='http://www.ntp.org/'
 license=('custom')
@@ -17,7 +18,7 @@
 'ntp.conf'
 'ntpd.service'
 'ntpdate.service')
-sha1sums=('fa25baa9c215403c4f54ab005a65bc9eb744cdd3'
+sha1sums=('b4d88b1a817550677ebccca56bdc2c2f8369eda7'
   'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
   '0a872385e0142888ab48d273fec0669b30a8'
   '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')


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

2014-12-19 Thread Gaetan Bisson
Date: Friday, December 19, 2014 @ 23:35:40
  Author: bisson
Revision: 227806

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

Added:
  ntp/repos/extra-i686/PKGBUILD
(from rev 227805, ntp/trunk/PKGBUILD)
  ntp/repos/extra-i686/install
(from rev 227805, ntp/trunk/install)
  ntp/repos/extra-i686/ntp.conf
(from rev 227805, ntp/trunk/ntp.conf)
  ntp/repos/extra-i686/ntpd.service
(from rev 227805, ntp/trunk/ntpd.service)
  ntp/repos/extra-i686/ntpdate.service
(from rev 227805, ntp/trunk/ntpdate.service)
  ntp/repos/extra-x86_64/PKGBUILD
(from rev 227805, ntp/trunk/PKGBUILD)
  ntp/repos/extra-x86_64/install
(from rev 227805, ntp/trunk/install)
  ntp/repos/extra-x86_64/ntp.conf
(from rev 227805, ntp/trunk/ntp.conf)
  ntp/repos/extra-x86_64/ntpd.service
(from rev 227805, ntp/trunk/ntpd.service)
  ntp/repos/extra-x86_64/ntpdate.service
(from rev 227805, ntp/trunk/ntpdate.service)
Deleted:
  ntp/repos/extra-i686/PKGBUILD
  ntp/repos/extra-i686/install
  ntp/repos/extra-i686/ntp.conf
  ntp/repos/extra-i686/ntpd.service
  ntp/repos/extra-i686/ntpdate.service
  ntp/repos/extra-x86_64/PKGBUILD
  ntp/repos/extra-x86_64/install
  ntp/repos/extra-x86_64/ntp.conf
  ntp/repos/extra-x86_64/ntpd.service
  ntp/repos/extra-x86_64/ntpdate.service

--+
 /PKGBUILD|  106 +
 /install |   22 
 /ntp.conf|   48 ++
 /ntpd.service|   26 ++
 /ntpdate.service |   24 +
 extra-i686/PKGBUILD  |   52 
 extra-i686/install   |   11 
 extra-i686/ntp.conf  |   20 ---
 extra-i686/ntpd.service  |   13 -
 extra-i686/ntpdate.service   |   12 
 extra-x86_64/PKGBUILD|   52 
 extra-x86_64/install |   11 
 extra-x86_64/ntp.conf|   20 ---
 extra-x86_64/ntpd.service|   13 -
 extra-x86_64/ntpdate.service |   12 
 15 files changed, 226 insertions(+), 216 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-19 22:34:32 UTC (rev 227805)
+++ extra-i686/PKGBUILD 2014-12-19 22:35:40 UTC (rev 227806)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-
-pkgname=ntp
-_pkgname=ntp-dev
-_pkgver=4.2.7p465
-pkgver=${_pkgver/p/.p}
-pkgrel=2
-pkgdesc='Network Time Protocol reference implementation'
-url='http://www.ntp.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libcap' 'libedit')
-backup=('etc/ntp.conf')
-source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
-'ntp.conf'
-'ntpd.service'
-'ntpdate.service')
-sha1sums=('fa25baa9c215403c4f54ab005a65bc9eb744cdd3'
-  '805d064098340b80ad95d115a0c59bd9f7a721b4'
-  '0a872385e0142888ab48d273fec0669b30a8'
-  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
-
-options=('!emptydirs')
-install=install
-
-build() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --enable-linuxcaps \
-   --enable-ntp-signd \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 ../ntp.conf ${pkgdir}/etc/ntp.conf
-   install -Dm644 ../ntpd.service 
${pkgdir}/usr/lib/systemd/system/ntpd.service
-   install -Dm644 ../ntpdate.service 
${pkgdir}/usr/lib/systemd/system/ntpdate.service
-   install -Dm644 COPYRIGHT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-   install -d -o 87 ${pkgdir}/var/lib/ntp
-   echo  ${pkgdir}/var/lib/ntp/.placeholder
-}

Copied: ntp/repos/extra-i686/PKGBUILD (from rev 227805, ntp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-19 22:35:40 UTC (rev 227806)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp-dev
+_pkgver=4.2.7p486-RC
+__pkgver=${_pkgver/p/.p}
+pkgver=${__pkgver%-RC}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('b4d88b1a817550677ebccca56bdc2c2f8369eda7'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  '0a872385e0142888ab48d273fec0669b30a8'
+  

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

2014-12-19 Thread Jan Steffens
Date: Friday, December 19, 2014 @ 23:40:05
  Author: heftig
Revision: 227807

5.99.2

Modified:
  pulseaudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 22:35:40 UTC (rev 227806)
+++ PKGBUILD2014-12-19 22:40:05 UTC (rev 227807)
@@ -7,18 +7,18 @@
 pkgbase=pulseaudio
 pkgname=(pulseaudio libpulse)
 pkgdesc=A featureful, general-purpose sound server
-pkgver=5.0
+pkgver=5.99.2
 pkgrel=1
 arch=(i686 x86_64)
 url=http://www.freedesktop.org/wiki/Software/PulseAudio;
 license=(LGPL AGPL3)
-makedepends=(libasyncns libcap attr libxtst libsm libsamplerate libtool rtkit
+makedepends=(libasyncns libcap attr libxtst libsm libsndfile libtool rtkit
  speex tdb systemd dbus avahi bluez bluez-libs gconf intltool 
jack2-dbus sbc
  lirc-utils openssl xenstore fftw orc json-c gtk3 
webrtc-audio-processing
- check git)
+ check)
 options=(!emptydirs)
 
source=(http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.xz)
-sha256sums=('99c13a8b1249ddbd724f195579df79484e9af6418cecf6a15f003a7f36caf939')
+sha256sums=('877fbc19c5928ade11c948814d0d444673c39a8ec5571d331642f3327d2c86fe')
 
 prepare() {
   cd $pkgbase-$pkgver
@@ -35,6 +35,7 @@
 --with-database=tdb \
 --disable-tcpwrap \
 --disable-bluez4 \
+--disable-samplerate \
 --disable-rpath \
 --disable-default-build-tests
 
@@ -46,7 +47,7 @@
 
 package_pulseaudio() {
   depends=(libpulse=$pkgver-$pkgrel rtkit libltdl speex tdb fftw orc
-   libsamplerate webrtc-audio-processing sbc)
+   webrtc-audio-processing sbc)
   optdepends=('pulseaudio-alsa: ALSA configuration (recommended)'
   'avahi: zeroconf publishing and discovery'
   'bluez: Bluetooth'
@@ -75,9 +76,6 @@
 
   rm $pkgdir/etc/dbus-1/system.d/pulseaudio-system.conf
 
-  install -Dm644 shell-completion/pulseaudio-zsh-completion.zsh \
-$pkgdir/usr/share/zsh/site-functions/_pulseaudio
-
 ### Split libpulse
 
   mkdir -p 
$srcdir/libpulse/{etc/pulse,usr/{bin,lib/pulseaudio,share/man/man{1,5}}}


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

2014-12-19 Thread Jan Steffens
Date: Friday, December 19, 2014 @ 23:41:41
  Author: heftig
Revision: 227808

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

Added:
  pulseaudio/repos/testing-i686/
  pulseaudio/repos/testing-i686/PKGBUILD
(from rev 227807, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/testing-x86_64/
  pulseaudio/repos/testing-x86_64/PKGBUILD
(from rev 227807, pulseaudio/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |  116 ++
 testing-x86_64/PKGBUILD |  116 ++
 2 files changed, 232 insertions(+)

Copied: pulseaudio/repos/testing-i686/PKGBUILD (from rev 227807, 
pulseaudio/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-12-19 22:41:41 UTC (rev 227808)
@@ -0,0 +1,116 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Corrado Primier ba...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgbase=pulseaudio
+pkgname=(pulseaudio libpulse)
+pkgdesc=A featureful, general-purpose sound server
+pkgver=5.99.2
+pkgrel=1
+arch=(i686 x86_64)
+url=http://www.freedesktop.org/wiki/Software/PulseAudio;
+license=(LGPL AGPL3)
+makedepends=(libasyncns libcap attr libxtst libsm libsndfile libtool rtkit
+ speex tdb systemd dbus avahi bluez bluez-libs gconf intltool 
jack2-dbus sbc
+ lirc-utils openssl xenstore fftw orc json-c gtk3 
webrtc-audio-processing
+ check)
+options=(!emptydirs)
+source=(http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.xz)
+sha256sums=('877fbc19c5928ade11c948814d0d444673c39a8ec5571d331642f3327d2c86fe')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--with-udev-rules-dir=/usr/lib/udev/rules.d \
+--with-database=tdb \
+--disable-tcpwrap \
+--disable-bluez4 \
+--disable-samplerate \
+--disable-rpath \
+--disable-default-build-tests
+
+  # fight unused direct deps
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package_pulseaudio() {
+  depends=(libpulse=$pkgver-$pkgrel rtkit libltdl speex tdb fftw orc
+   webrtc-audio-processing sbc)
+  optdepends=('pulseaudio-alsa: ALSA configuration (recommended)'
+  'avahi: zeroconf publishing and discovery'
+  'bluez: Bluetooth'
+  'bluez-libs: Bluetooth'
+  'gconf: paprefs configuration'
+  'jack2-dbus: JACK support'
+  'lirc-utils: IR control'
+  'openssl: RAOP (AirPlay) output'
+  'python-pyqt4: Equalizer GUI (qpaeq)'
+  'xenstore: Xen paravirtual output')
+  backup=(etc/pulse/{daemon.conf,default.pa,system.pa})
+
+  cd $pkgbase-$pkgver
+  make -j1 DESTDIR=$pkgdir install \
+bashcompletiondir=/usr/share/bash-completion/completions
+
+  # Speed up pulseaudio shutdown so that it exits immediately with
+  # the last user session (module-systemd-login keeps it alive)
+  sed -e '/exit-idle-time/iexit-idle-time=0' \
+  -i $pkgdir/etc/pulse/daemon.conf
+
+  # Disable cork-request module, can result in e.g. media players unpausing
+  # when there's a Skype call incoming
+  sed -e 's|/usr/bin/pactl load-module module-x11-cork-request|#|' \
+  -i $pkgdir/usr/bin/start-pulseaudio-x11
+
+  rm $pkgdir/etc/dbus-1/system.d/pulseaudio-system.conf
+
+### Split libpulse
+
+  mkdir -p 
$srcdir/libpulse/{etc/pulse,usr/{bin,lib/pulseaudio,share/man/man{1,5}}}
+
+  mv {$pkgdir,$srcdir/libpulse}/etc/pulse/client.conf
+
+  mv $pkgdir/usr/bin/pa{cat,ctl,dsp,mon,play,rec,record} \
+ $srcdir/libpulse/usr/bin
+
+  mv $pkgdir/usr/lib/libpulse{,-simple,-mainloop-glib}.so* \
+ $srcdir/libpulse/usr/lib
+
+  mv $pkgdir/usr/lib/pulseaudio/libpulsedsp.so \
+ $pkgdir/usr/lib/pulseaudio/libpulsecommon-*.so \
+ $srcdir/libpulse/usr/lib/pulseaudio
+
+  mv {$pkgdir,$srcdir/libpulse}/usr/lib/cmake
+  mv {$pkgdir,$srcdir/libpulse}/usr/lib/pkgconfig
+
+  mv {$pkgdir,$srcdir/libpulse}/usr/include
+
+  mv $pkgdir/usr/share/man/man1/pa{cat,ctl,dsp,play}.1 \
+ $srcdir/libpulse/usr/share/man/man1
+
+  mv {$pkgdir,$srcdir/libpulse}/usr/share/man/man5/pulse-client.conf.5
+  mv {$pkgdir,$srcdir/libpulse}/usr/share/vala
+}
+
+package_libpulse() {
+  pkgdesc=$pkgdesc (client library)
+  depends=(dbus libasyncns libcap libxtst libsm libsndfile json-c systemd)
+  optdepends=('alsa-plugins: ALSA support'
+  'avahi: zeroconf support')
+  backup=(etc/pulse/client.conf)
+  license=(LGPL)
+
+  mv $srcdir/libpulse/* $pkgdir
+}

Copied: pulseaudio/repos/testing-x86_64/PKGBUILD (from rev 227807, 
pulseaudio/trunk/PKGBUILD)

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

2014-12-19 Thread Jan Steffens
Date: Friday, December 19, 2014 @ 23:43:55
  Author: heftig
Revision: 124138

5.99.2

Modified:
  lib32-libpulse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 22:15:58 UTC (rev 124137)
+++ PKGBUILD2014-12-19 22:43:55 UTC (rev 124138)
@@ -7,7 +7,7 @@
 _pkgbasename=libpulse
 pkgname=lib32-$_pkgbasename
 pkgdesc=A featureful, general-purpose sound server (32-bit client libraries)
-pkgver=5.0
+pkgver=5.99.2
 pkgrel=1
 arch=(x86_64)
 url=http://www.freedesktop.org/wiki/Software/PulseAudio;
@@ -22,10 +22,10 @@
 replaces=(lib32-pulseaudio)
 options=(!emptydirs !libtool)
 
source=(http://freedesktop.org/software/pulseaudio/releases/pulseaudio-$pkgver.tar.xz;)
-sha256sums=('99c13a8b1249ddbd724f195579df79484e9af6418cecf6a15f003a7f36caf939')
+sha256sums=('877fbc19c5928ade11c948814d0d444673c39a8ec5571d331642f3327d2c86fe')
 
 _libs=libpulse.la libpulse-simple.la libpulse-mainloop-glib.la
-_pkglibs=libpulsecommon-${pkgver}.la libpulsedsp.la
+_pkglibs=libpulsecommon-${pkgver%.*}.la libpulsedsp.la
 
 prepare() {
   cd pulseaudio-$pkgver
@@ -45,6 +45,7 @@
 --localstatedir=/var \
 --disable-tcpwrap \
 --disable-bluez4 \
+--disable-samplerate \
 --disable-rpath \
 --disable-default-build-tests
 


[arch-commits] Commit in lib32-libpulse/repos (2 files)

2014-12-19 Thread Jan Steffens
Date: Friday, December 19, 2014 @ 23:44:32
  Author: heftig
Revision: 124139

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libpulse/repos/multilib-testing-x86_64/
  lib32-libpulse/repos/multilib-testing-x86_64/PKGBUILD
(from rev 124138, lib32-libpulse/trunk/PKGBUILD)

--+
 PKGBUILD |   65 +
 1 file changed, 65 insertions(+)

Copied: lib32-libpulse/repos/multilib-testing-x86_64/PKGBUILD (from rev 124138, 
lib32-libpulse/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2014-12-19 22:44:32 UTC (rev 124139)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Corrado Primier ba...@aur.archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+_pkgbasename=libpulse
+pkgname=lib32-$_pkgbasename
+pkgdesc=A featureful, general-purpose sound server (32-bit client libraries)
+pkgver=5.99.2
+pkgrel=1
+arch=(x86_64)
+url=http://www.freedesktop.org/wiki/Software/PulseAudio;
+license=(LGPL)
+depends=(lib32-libdbus lib32-json-c lib32-systemd
+ lib32-libasyncns lib32-libcap lib32-libxtst lib32-libsm 
lib32-libsndfile
+ $_pkgbasename)
+makedepends=(gcc-multilib libtool-multilib intltool lib32-glib2 lib32-speex 
lib32-gtk2 git)
+optdepends=('lib32-alsa-plugins: ALSA support')
+provides=(lib32-pulseaudio=$pkgver)
+conflicts=(lib32-pulseaudio)
+replaces=(lib32-pulseaudio)
+options=(!emptydirs !libtool)
+source=(http://freedesktop.org/software/pulseaudio/releases/pulseaudio-$pkgver.tar.xz;)
+sha256sums=('877fbc19c5928ade11c948814d0d444673c39a8ec5571d331642f3327d2c86fe')
+
+_libs=libpulse.la libpulse-simple.la libpulse-mainloop-glib.la
+_pkglibs=libpulsecommon-${pkgver%.*}.la libpulsedsp.la
+
+prepare() {
+  cd pulseaudio-$pkgver
+}
+
+build() {
+  cd pulseaudio-$pkgver
+
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libdir=/usr/lib32 \
+--libexecdir=/usr/lib32 \
+--localstatedir=/var \
+--disable-tcpwrap \
+--disable-bluez4 \
+--disable-samplerate \
+--disable-rpath \
+--disable-default-build-tests
+
+  # fight unused direct deps
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make -C src $_libs $_pkglibs
+}
+
+package() {
+  cd pulseaudio-$pkgver
+  make -j1 -C src DESTDIR=$pkgdir \
+lib_LTLIBRARIES=$_libs install-libLTLIBRARIES
+  make -j1 -C src DESTDIR=$pkgdir \
+pkglib_LTLIBRARIES=$_pkglibs install-pkglibLTLIBRARIES
+  make -j1 DESTDIR=$pkgdir install-pkgconfigDATA
+}


[arch-commits] Commit in (ntl ntl/trunk ntl/trunk/PKGBUILD ntl/trunk/ntl-sage.patch)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 23:46:01
  Author: arojas
Revision: 124140

Splitting sage-mathematics

Added:
  ntl/
  ntl/trunk/
  ntl/trunk/PKGBUILD
  ntl/trunk/ntl-sage.patch

+
 PKGBUILD   |   38 ++
 ntl-sage.patch |   51 +++
 2 files changed, 89 insertions(+)

Added: ntl/trunk/PKGBUILD
===
--- ntl/trunk/PKGBUILD  (rev 0)
+++ ntl/trunk/PKGBUILD  2014-12-19 22:46:01 UTC (rev 124140)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Brad Conte brad AT bradconte.com
+
+pkgname=ntl
+pkgver=6.2.1
+pkgrel=1
+pkgdesc=A Library for doing Number Theory
+arch=('i686' 'x86_64')
+url=http://www.shoup.net/ntl/;
+license=('GPL')
+depends=('gf2x' 'gmp')
+makedepends=()
+options=('!libtool')
+source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
+md5sums=('00b7e1cab9bf9b0eae2ad9beab4b0fc9'
+ 'a95cae771ac6fc823c8c09cd05d40461')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i $srcdir/ntl-sage.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX=$pkgdir/usr install
+}
+


Property changes on: ntl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: ntl/trunk/ntl-sage.patch
===
--- ntl/trunk/ntl-sage.patch(rev 0)
+++ ntl/trunk/ntl-sage.patch2014-12-19 22:46:01 UTC (rev 124140)
@@ -0,0 +1,51 @@
+--- ./include/NTL/tools.h.orig 2014-08-26 11:51:43.0 -0600
 ./include/NTL/tools.h  2014-09-18 20:00:00.0 -0600
+@@ -310,6 +310,12 @@ long CharToIntVal(long c);
+ char IntValToChar(long a);
+ 
+ 
++/*
++  This function is not present in vanilla NTL.
++  See tools.c for documentation.
++ */
++void SetErrorCallbackFunction(void (*func)(const char *s, void *context),
++void *context);
+ 
+ void Error(const char *s);
+ 
+--- ./src/tools.c.orig 2014-08-26 11:51:42.0 -0600
 ./src/tools.c  2014-09-18 20:00:00.0 -0600
+@@ -17,9 +17,33 @@ NTL_START_IMPL
+ 
+ NTL_THREAD_LOCAL void (*ErrorCallback)() = 0;
+ 
++/*
++   The following code differs from vanilla NTL.
++
++   We add a SetErrorCallbackFunction(). This sets a global callback function
++_function_,  which gets called with parameter _context_ and an error
++message string whenever Error() gets called.
++
++   Note that if the custom error handler *returns*, then NTL will dump the
++   error message back to stderr and abort() as it habitually does.
++
++   -- David Harvey (2008-04-12)
++*/
++
++void (*ErrorCallbackFunction)(const char*, void*) = NULL;
++void *ErrorCallbackContext = NULL;
++
++void SetErrorCallbackFunction(void (*function)(const char*, void*), void 
*context)
++{
++   ErrorCallbackFunction = function;
++   ErrorCallbackContext = context;
++}
+ 
+ void Error(const char *s)
+ {
++   if (ErrorCallbackFunction != NULL)
++  ErrorCallbackFunction(s, ErrorCallbackContext);
++
+cerr  s  \n;
+_ntl_abort();
+ }
\ No newline at end of file


[arch-commits] Commit in ntl (7 files)

2014-12-19 Thread Antonio Rojas
Date: Friday, December 19, 2014 @ 23:46:48
  Author: arojas
Revision: 124141

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

Added:
  ntl/repos/
  ntl/repos/community-i686/
  ntl/repos/community-i686/PKGBUILD
(from rev 124140, ntl/trunk/PKGBUILD)
  ntl/repos/community-i686/ntl-sage.patch
(from rev 124140, ntl/trunk/ntl-sage.patch)
  ntl/repos/community-x86_64/
  ntl/repos/community-x86_64/PKGBUILD
(from rev 124140, ntl/trunk/PKGBUILD)
  ntl/repos/community-x86_64/ntl-sage.patch
(from rev 124140, ntl/trunk/ntl-sage.patch)

-+
 community-i686/PKGBUILD |   38 
 community-i686/ntl-sage.patch   |   51 ++
 community-x86_64/PKGBUILD   |   38 
 community-x86_64/ntl-sage.patch |   51 ++
 4 files changed, 178 insertions(+)

Copied: ntl/repos/community-i686/PKGBUILD (from rev 124140, ntl/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 22:46:48 UTC (rev 124141)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Brad Conte brad AT bradconte.com
+
+pkgname=ntl
+pkgver=6.2.1
+pkgrel=1
+pkgdesc=A Library for doing Number Theory
+arch=('i686' 'x86_64')
+url=http://www.shoup.net/ntl/;
+license=('GPL')
+depends=('gf2x' 'gmp')
+makedepends=()
+options=('!libtool')
+source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
+md5sums=('00b7e1cab9bf9b0eae2ad9beab4b0fc9'
+ 'a95cae771ac6fc823c8c09cd05d40461')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i $srcdir/ntl-sage.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on NTL_GF2X_LIB=on NTL_GMP_LIP=on
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver/src
+  make -k check
+}
+
+package() {
+  cd $pkgname-$pkgver/src
+  make PREFIX=$pkgdir/usr install
+}
+

Copied: ntl/repos/community-i686/ntl-sage.patch (from rev 124140, 
ntl/trunk/ntl-sage.patch)
===
--- repos/community-i686/ntl-sage.patch (rev 0)
+++ repos/community-i686/ntl-sage.patch 2014-12-19 22:46:48 UTC (rev 124141)
@@ -0,0 +1,51 @@
+--- ./include/NTL/tools.h.orig 2014-08-26 11:51:43.0 -0600
 ./include/NTL/tools.h  2014-09-18 20:00:00.0 -0600
+@@ -310,6 +310,12 @@ long CharToIntVal(long c);
+ char IntValToChar(long a);
+ 
+ 
++/*
++  This function is not present in vanilla NTL.
++  See tools.c for documentation.
++ */
++void SetErrorCallbackFunction(void (*func)(const char *s, void *context),
++void *context);
+ 
+ void Error(const char *s);
+ 
+--- ./src/tools.c.orig 2014-08-26 11:51:42.0 -0600
 ./src/tools.c  2014-09-18 20:00:00.0 -0600
+@@ -17,9 +17,33 @@ NTL_START_IMPL
+ 
+ NTL_THREAD_LOCAL void (*ErrorCallback)() = 0;
+ 
++/*
++   The following code differs from vanilla NTL.
++
++   We add a SetErrorCallbackFunction(). This sets a global callback function
++_function_,  which gets called with parameter _context_ and an error
++message string whenever Error() gets called.
++
++   Note that if the custom error handler *returns*, then NTL will dump the
++   error message back to stderr and abort() as it habitually does.
++
++   -- David Harvey (2008-04-12)
++*/
++
++void (*ErrorCallbackFunction)(const char*, void*) = NULL;
++void *ErrorCallbackContext = NULL;
++
++void SetErrorCallbackFunction(void (*function)(const char*, void*), void 
*context)
++{
++   ErrorCallbackFunction = function;
++   ErrorCallbackContext = context;
++}
+ 
+ void Error(const char *s)
+ {
++   if (ErrorCallbackFunction != NULL)
++  ErrorCallbackFunction(s, ErrorCallbackContext);
++
+cerr  s  \n;
+_ntl_abort();
+ }
\ No newline at end of file

Copied: ntl/repos/community-x86_64/PKGBUILD (from rev 124140, 
ntl/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 22:46:48 UTC (rev 124141)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Brad Conte brad AT bradconte.com
+
+pkgname=ntl
+pkgver=6.2.1
+pkgrel=1
+pkgdesc=A Library for doing Number Theory
+arch=('i686' 'x86_64')
+url=http://www.shoup.net/ntl/;
+license=('GPL')
+depends=('gf2x' 'gmp')
+makedepends=()
+options=('!libtool')
+source=(http://www.shoup.net/$pkgname/$pkgname-$pkgver.tar.gz; 
'ntl-sage.patch')
+md5sums=('00b7e1cab9bf9b0eae2ad9beab4b0fc9'
+ 'a95cae771ac6fc823c8c09cd05d40461')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i $srcdir/ntl-sage.patch
+}
+
+build() {
+  cd $pkgname-$pkgver/src
+  ./configure DEF_PREFIX=/usr SHARED=on 

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

2014-12-19 Thread Laurent Carlier
Date: Saturday, December 20, 2014 @ 00:03:50
  Author: lcarlier
Revision: 124142

upgpkg: gambas3 3.6.2-1

upstream update 3.6.2, poppler 0.29 rebuild

Modified:
  gambas3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 22:46:48 UTC (rev 124141)
+++ PKGBUILD2014-12-19 23:03:50 UTC (rev 124142)
@@ -15,7 +15,7 @@
  'gambas3-gb-openssl' 'gambas3-gb-report' 'gambas3-gb-sdl-sound' 
'gambas3-gb-sdl' 'gambas3-gb-settings' 'gambas3-gb-signal' 'gambas3-gb-v4l' 
'gambas3-gb-vb'
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml' 'gambas3-gb-web')
 pkgname=(${_components[@]} 'gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 
'gambas3-script' 'gambas3-examples')
-pkgver=3.6.1
+pkgver=3.6.2
 pkgrel=1
 pkgdesc=A free development environment based on a Basic interpreter.
 arch=('i686' 'x86_64')
@@ -31,7 +31,7 @@
 'gmime')
 options=('!emptydirs' 'libtool')
 source=(http://downloads.sourceforge.net/gambas/${pkgbase}-${pkgver}.tar.bz2;)
-md5sums=('7ab648ce607b0cf631a331060d11b942')
+md5sums=('2d7ec9c0004c4ad6e3dd081426767c2f')
 
 create_dirs() {
   install -dm755 ${pkgdir}/usr/lib/gambas3


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

2014-12-19 Thread Laurent Carlier
Date: Saturday, December 20, 2014 @ 00:04:01
  Author: lcarlier
Revision: 124143

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

Added:
  gambas3/repos/community-staging-i686/
  gambas3/repos/community-staging-i686/PKGBUILD
(from rev 124142, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-i686/gambas3-runtime.install
(from rev 124142, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-i686/gambas3-script.install
(from rev 124142, gambas3/trunk/gambas3-script.install)
  gambas3/repos/community-staging-x86_64/
  gambas3/repos/community-staging-x86_64/PKGBUILD
(from rev 124142, gambas3/trunk/PKGBUILD)
  gambas3/repos/community-staging-x86_64/gambas3-runtime.install
(from rev 124142, gambas3/trunk/gambas3-runtime.install)
  gambas3/repos/community-staging-x86_64/gambas3-script.install
(from rev 124142, gambas3/trunk/gambas3-script.install)

--+
 community-staging-i686/PKGBUILD  | 1028 +
 community-staging-i686/gambas3-runtime.install   |   10 
 community-staging-i686/gambas3-script.install|   15 
 community-staging-x86_64/PKGBUILD| 1028 +
 community-staging-x86_64/gambas3-runtime.install |   10 
 community-staging-x86_64/gambas3-script.install  |   15 
 6 files changed, 2106 insertions(+)

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


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

2014-12-19 Thread Antonio Rojas
Date: Saturday, December 20, 2014 @ 00:05:18
  Author: arojas
Revision: 124144

Splitting sage-mathematics

Added:
  flint/
  flint/trunk/
  flint/trunk/PKGBUILD

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

Added: flint/trunk/PKGBUILD
===
--- flint/trunk/PKGBUILD(rev 0)
+++ flint/trunk/PKGBUILD2014-12-19 23:05:18 UTC (rev 124144)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
+
+pkgname=flint
+pkgver=2.4.4
+pkgrel=3
+pkgdesc=A C library for doing number theory
+arch=('i686' 'x86_64')
+url=http://www.flintlib.org;
+license=('GPL')
+depends=('mpfr' 'ntl')
+source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('b527fe3a49fd02a0367227fe8ec9cbe4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


Property changes on: flint/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in flint (5 files)

2014-12-19 Thread Antonio Rojas
Date: Saturday, December 20, 2014 @ 00:06:41
  Author: arojas
Revision: 124145

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

Added:
  flint/repos/
  flint/repos/community-i686/
  flint/repos/community-i686/PKGBUILD
(from rev 124144, flint/trunk/PKGBUILD)
  flint/repos/community-x86_64/
  flint/repos/community-x86_64/PKGBUILD
(from rev 124144, flint/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   30 ++
 community-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: flint/repos/community-i686/PKGBUILD (from rev 124144, 
flint/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2014-12-19 23:06:41 UTC (rev 124145)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
+
+pkgname=flint
+pkgver=2.4.4
+pkgrel=3
+pkgdesc=A C library for doing number theory
+arch=('i686' 'x86_64')
+url=http://www.flintlib.org;
+license=('GPL')
+depends=('mpfr' 'ntl')
+source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('b527fe3a49fd02a0367227fe8ec9cbe4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: flint/repos/community-x86_64/PKGBUILD (from rev 124144, 
flint/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2014-12-19 23:06:41 UTC (rev 124145)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas aro...@archlinux.org
+# Contributor: Rémy Oudompheng oudom...@clipper.ens.fr
+# Contributor: Alessandro jakedust Andrioni jaked...@gmail.com
+
+pkgname=flint
+pkgver=2.4.4
+pkgrel=3
+pkgdesc=A C library for doing number theory
+arch=('i686' 'x86_64')
+url=http://www.flintlib.org;
+license=('GPL')
+depends=('mpfr' 'ntl')
+source=(http://www.flintlib.org/flint-$pkgver.tar.gz;)
+md5sums=('b527fe3a49fd02a0367227fe8ec9cbe4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i.orig 's,.*NTL/g_lip.h,// ,' interfaces/NTL-interface.cpp
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --with-gmp=/usr --with-mpfr=/usr --with-ntl=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2014-12-19 Thread Lukas Fleischer
Date: Saturday, December 20, 2014 @ 00:41:41
  Author: lfleischer
Revision: 124146

upgpkg: hdapsd 20141203-2

Fix FS#43166.

Modified:
  hdapsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 23:06:41 UTC (rev 124145)
+++ PKGBUILD2014-12-19 23:41:41 UTC (rev 124146)
@@ -4,7 +4,7 @@
 
 pkgname=hdapsd
 pkgver=20141203
-pkgrel=1
+pkgrel=2
 pkgdesc='HDAPS userspace hard drive protection daemon'
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/hdapsd'
@@ -18,7 +18,7 @@
 
   ./autogen.sh
   ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
---with-systemdsystemunitdir=/usr/lib/systemd/system
+--with-udevdir=/usr/lib/udev 
--with-systemdsystemunitdir=/usr/lib/systemd/system
   make ${MAKEFLAGS}
 }
 


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

2014-12-19 Thread Daniel Micay
Date: Saturday, December 20, 2014 @ 00:57:11
  Author: thestinger
Revision: 124147

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

Added:
  hdapsd/repos/community-i686/PKGBUILD
(from rev 124146, hdapsd/trunk/PKGBUILD)
  hdapsd/repos/community-i686/hdapsd.systemd
(from rev 124146, hdapsd/trunk/hdapsd.systemd)
  hdapsd/repos/community-x86_64/PKGBUILD
(from rev 124146, hdapsd/trunk/PKGBUILD)
  hdapsd/repos/community-x86_64/hdapsd.systemd
(from rev 124146, hdapsd/trunk/hdapsd.systemd)
Deleted:
  hdapsd/repos/community-i686/PKGBUILD
  hdapsd/repos/community-i686/hdapsd.systemd
  hdapsd/repos/community-x86_64/PKGBUILD
  hdapsd/repos/community-x86_64/hdapsd.systemd

-+
 /PKGBUILD   |   56 ++
 /hdapsd.systemd |   24 
 community-i686/PKGBUILD |   28 ---
 community-i686/hdapsd.systemd   |   12 
 community-x86_64/PKGBUILD   |   28 ---
 community-x86_64/hdapsd.systemd |   12 
 6 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-12-19 23:41:41 UTC (rev 124146)
+++ community-i686/PKGBUILD 2014-12-19 23:57:11 UTC (rev 124147)
@@ -1,28 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Emil Renner Berthing es...@mailme.dk
-# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
-
-pkgname=hdapsd
-pkgver=20141203
-pkgrel=1
-pkgdesc='HDAPS userspace hard drive protection daemon'
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/hdapsd'
-license=('GPL')
-depends=('glibc' 'bash')
-source=(https://github.com/evgeni/${pkgname}/archive/${pkgver}.tar.gz;)
-md5sums=('1620775e4a0988313dd75b0f1f636674')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./autogen.sh
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make ${MAKEFLAGS}
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir}/ install
-}

Copied: hdapsd/repos/community-i686/PKGBUILD (from rev 124146, 
hdapsd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-12-19 23:57:11 UTC (rev 124147)
@@ -0,0 +1,28 @@
+# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Emil Renner Berthing es...@mailme.dk
+# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
+
+pkgname=hdapsd
+pkgver=20141203
+pkgrel=2
+pkgdesc='HDAPS userspace hard drive protection daemon'
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/hdapsd'
+license=('GPL')
+depends=('glibc' 'bash')
+source=(https://github.com/evgeni/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('1620775e4a0988313dd75b0f1f636674')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \
+--with-udevdir=/usr/lib/udev 
--with-systemdsystemunitdir=/usr/lib/systemd/system
+  make ${MAKEFLAGS}
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir}/ install
+}

Deleted: community-i686/hdapsd.systemd
===
--- community-i686/hdapsd.systemd   2014-12-19 23:41:41 UTC (rev 124146)
+++ community-i686/hdapsd.systemd   2014-12-19 23:57:11 UTC (rev 124147)
@@ -1,12 +0,0 @@
-[Unit]
-Description=HDAPS userspace hard drive protection daemon
-After=syslog.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/hdapsd.pid
-ExecStart=/usr/bin/hdapsd -bp
-ExecReload=/bin/kill -HUP ${MAINPID}
-
-[Install]
-WantedBy=multi-user.target

Copied: hdapsd/repos/community-i686/hdapsd.systemd (from rev 124146, 
hdapsd/trunk/hdapsd.systemd)
===
--- community-i686/hdapsd.systemd   (rev 0)
+++ community-i686/hdapsd.systemd   2014-12-19 23:57:11 UTC (rev 124147)
@@ -0,0 +1,12 @@
+[Unit]
+Description=HDAPS userspace hard drive protection daemon
+After=syslog.target
+
+[Service]
+Type=forking
+PIDFile=/var/run/hdapsd.pid
+ExecStart=/usr/bin/hdapsd -bp
+ExecReload=/bin/kill -HUP ${MAINPID}
+
+[Install]
+WantedBy=multi-user.target

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-12-19 23:41:41 UTC (rev 124146)
+++ community-x86_64/PKGBUILD   2014-12-19 23:57:11 UTC (rev 124147)
@@ -1,28 +0,0 @@
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Emil Renner Berthing es...@mailme.dk
-# Contributor: Xiao-Long Chen chenxiaol...@cxl.epac.to
-
-pkgname=hdapsd
-pkgver=20141203
-pkgrel=1
-pkgdesc='HDAPS userspace hard drive protection daemon'

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

2014-12-19 Thread Daniel Micay
Date: Saturday, December 20, 2014 @ 01:00:11
  Author: thestinger
Revision: 124148

upgpkg: ttf-symbola 7.19-1

Modified:
  ttf-symbola/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 23:57:11 UTC (rev 124147)
+++ PKGBUILD2014-12-20 00:00:11 UTC (rev 124148)
@@ -4,7 +4,7 @@
 # Contributor: Jesse Jaara gmail.com: jesse.jaara
 
 pkgname=ttf-symbola
-pkgver=7.17
+pkgver=7.19
 pkgrel=1
 pkgdesc=Font for unicode symbols (part of Unicode Fonts for Ancient Scripts).
 arch=('any')
@@ -14,7 +14,7 @@
 makedepends=('unzip')
 install=$pkgname.install
 source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
-sha1sums=('b386a78a777d7da1e305b7663556dfdf51d8b75e'
+sha1sums=('9fdf849a2116b8c3425e4db98943279ee13b7ac5'
   'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
 
 package() {


[arch-commits] Commit in ttf-symbola/repos/community-any (6 files)

2014-12-19 Thread Daniel Micay
Date: Saturday, December 20, 2014 @ 01:00:33
  Author: thestinger
Revision: 124149

archrelease: copy trunk to community-any

Added:
  ttf-symbola/repos/community-any/LICENSE
(from rev 124148, ttf-symbola/trunk/LICENSE)
  ttf-symbola/repos/community-any/PKGBUILD
(from rev 124148, ttf-symbola/trunk/PKGBUILD)
  ttf-symbola/repos/community-any/ttf-symbola.install
(from rev 124148, ttf-symbola/trunk/ttf-symbola.install)
Deleted:
  ttf-symbola/repos/community-any/LICENSE
  ttf-symbola/repos/community-any/PKGBUILD
  ttf-symbola/repos/community-any/ttf-symbola.install

-+
 LICENSE |8 
 PKGBUILD|   46 +++---
 ttf-symbola.install |   18 +-
 3 files changed, 36 insertions(+), 36 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-12-20 00:00:11 UTC (rev 124148)
+++ LICENSE 2014-12-20 00:00:33 UTC (rev 124149)
@@ -1,4 +0,0 @@
-In lieu of a licence:
-Fonts in this site are offered free for any use; they may be opened, 
-edited, modified, regenerated, posted, packaged and redistributed.
-fonts designed by George Douros

Copied: ttf-symbola/repos/community-any/LICENSE (from rev 124148, 
ttf-symbola/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-12-20 00:00:33 UTC (rev 124149)
@@ -0,0 +1,4 @@
+In lieu of a licence:
+Fonts in this site are offered free for any use; they may be opened, 
+edited, modified, regenerated, posted, packaged and redistributed.
+fonts designed by George Douros

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-20 00:00:11 UTC (rev 124148)
+++ PKGBUILD2014-12-20 00:00:33 UTC (rev 124149)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Elena ``of Valhalla'' Grandi gmail.com: elena.valhalla
-# Contributor: Jesse Jaara gmail.com: jesse.jaara
-
-pkgname=ttf-symbola
-pkgver=7.17
-pkgrel=1
-pkgdesc=Font for unicode symbols (part of Unicode Fonts for Ancient Scripts).
-arch=('any')
-url=http://users.teilar.gr/~g1951d/;
-license=('custom')
-depends=('fontconfig' 'xorg-font-utils')
-makedepends=('unzip')
-install=$pkgname.install
-source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
-sha1sums=('b386a78a777d7da1e305b7663556dfdf51d8b75e'
-  'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
-
-package() {
-  install -Dm644 Symbola.ttf $pkgdir/usr/share/fonts/TTF/Symbola.ttf
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ttf-symbola/repos/community-any/PKGBUILD (from rev 124148, 
ttf-symbola/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-20 00:00:33 UTC (rev 124149)
@@ -0,0 +1,23 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Elena ``of Valhalla'' Grandi gmail.com: elena.valhalla
+# Contributor: Jesse Jaara gmail.com: jesse.jaara
+
+pkgname=ttf-symbola
+pkgver=7.19
+pkgrel=1
+pkgdesc=Font for unicode symbols (part of Unicode Fonts for Ancient Scripts).
+arch=('any')
+url=http://users.teilar.gr/~g1951d/;
+license=('custom')
+depends=('fontconfig' 'xorg-font-utils')
+makedepends=('unzip')
+install=$pkgname.install
+source=(http://users.teilar.gr/~g1951d/Symbola.zip LICENSE)
+sha1sums=('9fdf849a2116b8c3425e4db98943279ee13b7ac5'
+  'd5c6cf1db006cfee0e60897ce8bb54bd6611de75')
+
+package() {
+  install -Dm644 Symbola.ttf $pkgdir/usr/share/fonts/TTF/Symbola.ttf
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: ttf-symbola.install
===
--- ttf-symbola.install 2014-12-20 00:00:11 UTC (rev 124148)
+++ ttf-symbola.install 2014-12-20 00:00:33 UTC (rev 124149)
@@ -1,9 +0,0 @@
-post_install() {
-  fc-cache -fs
-  mkfontscale /usr/share/fonts/TTF
-  mkfontdir /usr/share/fonts/TTF
-}
-
-post_upgrade() {
-  post_install
-}

Copied: ttf-symbola/repos/community-any/ttf-symbola.install (from rev 124148, 
ttf-symbola/trunk/ttf-symbola.install)
===
--- ttf-symbola.install (rev 0)
+++ ttf-symbola.install 2014-12-20 00:00:33 UTC (rev 124149)
@@ -0,0 +1,9 @@
+post_install() {
+  fc-cache -fs
+  mkfontscale /usr/share/fonts/TTF
+  mkfontdir /usr/share/fonts/TTF
+}
+
+post_upgrade() {
+  post_install
+}


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

2014-12-19 Thread Sébastien Luttringer
Date: Saturday, December 20, 2014 @ 02:29:00
  Author: seblu
Revision: 124151

archrelease: copy trunk to community-any

Added:
  glances/repos/community-any/PKGBUILD
(from rev 124150, glances/trunk/PKGBUILD)
Deleted:
  glances/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-12-20 01:28:49 UTC (rev 124150)
+++ PKGBUILD2014-12-20 01:29:00 UTC (rev 124151)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer se...@archlinux.org
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Francois Boulogne fboulogne at april dot org
-
-pkgname=glances
-pkgver=2.2
-pkgrel=1
-pkgdesc='CLI curses-based monitoring tool'
-arch=('any')
-url='https://github.com/nicolargo/glances'
-license=('LGPL')
-depends=('python' 'python-psutil' 'python-setuptools')
-optdepends=('python-jinja: HTML export'
-'python-bottle: web server support'
-'hddtemp: HDD temperature monitoring support')
-source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
-md5sums=('c55ba9dac01509828353c0508dbe95d6')
-
-package() {
-  cd Glances-$pkgver
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-  # remove html doc
-  rm -r $pkgdir/usr/share/doc/$pkgname/{glances-doc.html,images}
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glances/repos/community-any/PKGBUILD (from rev 124150, 
glances/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-12-20 01:29:00 UTC (rev 124151)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Sébastien Luttringer se...@archlinux.org
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=glances
+pkgver=2.2
+pkgrel=2
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://github.com/nicolargo/glances'
+license=('LGPL')
+depends=('python' 'python-psutil' 'python-setuptools')
+optdepends=('python-bottle: web server support'
+'hddtemp: HDD temperature monitoring support')
+source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
+md5sums=('c55ba9dac01509828353c0508dbe95d6')
+
+package() {
+  cd Glances-$pkgver
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+  # remove html doc
+  rm -r $pkgdir/usr/share/doc/$pkgname/{glances-doc.html,images}
+}
+
+# vim:set ts=2 sw=2 et:


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

2014-12-19 Thread Sébastien Luttringer
Date: Saturday, December 20, 2014 @ 02:28:49
  Author: seblu
Revision: 124150

upgpkg: glances 2.2-2

Modified:
  glances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 00:00:33 UTC (rev 124149)
+++ PKGBUILD2014-12-20 01:28:49 UTC (rev 124150)
@@ -5,14 +5,13 @@
 
 pkgname=glances
 pkgver=2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
 url='https://github.com/nicolargo/glances'
 license=('LGPL')
 depends=('python' 'python-psutil' 'python-setuptools')
-optdepends=('python-jinja: HTML export'
-'python-bottle: web server support'
+optdepends=('python-bottle: web server support'
 'hddtemp: HDD temperature monitoring support')
 
source=(https://pypi.python.org/packages/source/G/Glances/Glances-$pkgver.tar.gz;)
 md5sums=('c55ba9dac01509828353c0508dbe95d6')


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

2014-12-19 Thread Gaetan Bisson
Date: Saturday, December 20, 2014 @ 03:14:17
  Author: bisson
Revision: 227809

upstream update

Modified:
  ntp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 22:41:41 UTC (rev 227808)
+++ PKGBUILD2014-12-20 02:14:17 UTC (rev 227809)
@@ -3,10 +3,9 @@
 # Contributor: kevin ke...@archlinux.org
 
 pkgname=ntp
-_pkgname=ntp-dev
-_pkgver=4.2.7p486-RC
-__pkgver=${_pkgver/p/.p}
-pkgver=${__pkgver%-RC}
+_pkgname=ntp #-dev
+_pkgver=4.2.8
+pkgver=${_pkgver/p/.p}
 pkgrel=1
 pkgdesc='Network Time Protocol reference implementation'
 url='http://www.ntp.org/'
@@ -14,11 +13,12 @@
 arch=('i686' 'x86_64')
 depends=('openssl' 'libcap' 'libedit')
 backup=('etc/ntp.conf')
-source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+#source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}-${_pkgver}.tar.gz;
 'ntp.conf'
 'ntpd.service'
 'ntpdate.service')
-sha1sums=('b4d88b1a817550677ebccca56bdc2c2f8369eda7'
+sha1sums=('6d1c017a8a0e97d5cf8bf4e5e38333973ffd22d5'
   'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
   '0a872385e0142888ab48d273fec0669b30a8'
   '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')


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

2014-12-19 Thread Gaetan Bisson
Date: Saturday, December 20, 2014 @ 03:15:41
  Author: bisson
Revision: 227810

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

Added:
  ntp/repos/extra-i686/PKGBUILD
(from rev 227809, ntp/trunk/PKGBUILD)
  ntp/repos/extra-i686/install
(from rev 227809, ntp/trunk/install)
  ntp/repos/extra-i686/ntp.conf
(from rev 227809, ntp/trunk/ntp.conf)
  ntp/repos/extra-i686/ntpd.service
(from rev 227809, ntp/trunk/ntpd.service)
  ntp/repos/extra-i686/ntpdate.service
(from rev 227809, ntp/trunk/ntpdate.service)
  ntp/repos/extra-x86_64/PKGBUILD
(from rev 227809, ntp/trunk/PKGBUILD)
  ntp/repos/extra-x86_64/install
(from rev 227809, ntp/trunk/install)
  ntp/repos/extra-x86_64/ntp.conf
(from rev 227809, ntp/trunk/ntp.conf)
  ntp/repos/extra-x86_64/ntpd.service
(from rev 227809, ntp/trunk/ntpd.service)
  ntp/repos/extra-x86_64/ntpdate.service
(from rev 227809, ntp/trunk/ntpdate.service)
Deleted:
  ntp/repos/extra-i686/PKGBUILD
  ntp/repos/extra-i686/install
  ntp/repos/extra-i686/ntp.conf
  ntp/repos/extra-i686/ntpd.service
  ntp/repos/extra-i686/ntpdate.service
  ntp/repos/extra-x86_64/PKGBUILD
  ntp/repos/extra-x86_64/install
  ntp/repos/extra-x86_64/ntp.conf
  ntp/repos/extra-x86_64/ntpd.service
  ntp/repos/extra-x86_64/ntpdate.service

--+
 /PKGBUILD|  106 +
 /install |   22 
 /ntp.conf|   48 ++
 /ntpd.service|   26 ++
 /ntpdate.service |   24 +
 extra-i686/PKGBUILD  |   53 
 extra-i686/install   |   11 
 extra-i686/ntp.conf  |   24 -
 extra-i686/ntpd.service  |   13 -
 extra-i686/ntpdate.service   |   12 
 extra-x86_64/PKGBUILD|   53 
 extra-x86_64/install |   11 
 extra-x86_64/ntp.conf|   24 -
 extra-x86_64/ntpd.service|   13 -
 extra-x86_64/ntpdate.service |   12 
 15 files changed, 226 insertions(+), 226 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-12-20 02:14:17 UTC (rev 227809)
+++ extra-i686/PKGBUILD 2014-12-20 02:15:41 UTC (rev 227810)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-# Contributor: kevin ke...@archlinux.org
-
-pkgname=ntp
-_pkgname=ntp-dev
-_pkgver=4.2.7p486-RC
-__pkgver=${_pkgver/p/.p}
-pkgver=${__pkgver%-RC}
-pkgrel=1
-pkgdesc='Network Time Protocol reference implementation'
-url='http://www.ntp.org/'
-license=('custom')
-arch=('i686' 'x86_64')
-depends=('openssl' 'libcap' 'libedit')
-backup=('etc/ntp.conf')
-source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
-'ntp.conf'
-'ntpd.service'
-'ntpdate.service')
-sha1sums=('b4d88b1a817550677ebccca56bdc2c2f8369eda7'
-  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
-  '0a872385e0142888ab48d273fec0669b30a8'
-  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
-
-options=('!emptydirs')
-install=install
-
-build() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --libexecdir=/usr/lib \
-   --enable-linuxcaps \
-   --enable-ntp-signd \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${_pkgname}-${_pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 ../ntp.conf ${pkgdir}/etc/ntp.conf
-   install -Dm644 ../ntpd.service 
${pkgdir}/usr/lib/systemd/system/ntpd.service
-   install -Dm644 ../ntpdate.service 
${pkgdir}/usr/lib/systemd/system/ntpdate.service
-   install -Dm644 COPYRIGHT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-   install -d -o 87 ${pkgdir}/var/lib/ntp
-   echo  ${pkgdir}/var/lib/ntp/.placeholder
-}

Copied: ntp/repos/extra-i686/PKGBUILD (from rev 227809, ntp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-12-20 02:15:41 UTC (rev 227810)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+#source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('6d1c017a8a0e97d5cf8bf4e5e38333973ffd22d5'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  

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

2014-12-19 Thread Felix Yan
Date: Saturday, December 20, 2014 @ 04:29:59
  Author: fyan
Revision: 227811

upgpkg: evas_generic_loaders 1.12.0-3

poppler 0.29.0 rebuild

Modified:
  evas_generic_loaders/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 02:15:41 UTC (rev 227810)
+++ PKGBUILD2014-12-20 03:29:59 UTC (rev 227811)
@@ -4,7 +4,7 @@
 
 pkgname=evas_generic_loaders
 pkgver=1.12.0
-pkgrel=2
+pkgrel=3
 pkgdesc=Additional generic loaders for Evas
 arch=('i686' 'x86_64')
 url=http://www.enlightenment.org;


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

2014-12-19 Thread Felix Yan
Date: Saturday, December 20, 2014 @ 04:30:25
  Author: fyan
Revision: 227812

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

Added:
  evas_generic_loaders/repos/staging-i686/
  evas_generic_loaders/repos/staging-i686/PKGBUILD
(from rev 227811, evas_generic_loaders/trunk/PKGBUILD)
  evas_generic_loaders/repos/staging-x86_64/
  evas_generic_loaders/repos/staging-x86_64/PKGBUILD
(from rev 227811, evas_generic_loaders/trunk/PKGBUILD)

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

Copied: evas_generic_loaders/repos/staging-i686/PKGBUILD (from rev 227811, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-20 03:30:25 UTC (rev 227812)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.12.0
+pkgrel=3
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')
+depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('08d8cd7788d1a72b89a2e52dd0f18ed1742267ce')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/evas \
+--enable-poppler \
+--enable-spectre \
+--enable-libraw \
+--enable-svg \
+--enable-gstreamer
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+

Copied: evas_generic_loaders/repos/staging-x86_64/PKGBUILD (from rev 227811, 
evas_generic_loaders/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-12-20 03:30:25 UTC (rev 227812)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Gustavo Sverzut Barbieri barbi...@gmail.com
+
+pkgname=evas_generic_loaders
+pkgver=1.12.0
+pkgrel=3
+pkgdesc=Additional generic loaders for Evas
+arch=('i686' 'x86_64')
+url=http://www.enlightenment.org;
+license=('GPL2')
+depends=('librsvg' 'poppler' 'libraw' 'libspectre' 'efl')
+options=('!emptydirs')
+source=(http://download.enlightenment.org/rel/libs/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('08d8cd7788d1a72b89a2e52dd0f18ed1742267ce')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  export CFLAGS=$CFLAGS -fvisibility=hidden
+
+  ./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/evas \
+--enable-poppler \
+--enable-spectre \
+--enable-libraw \
+--enable-svg \
+--enable-gstreamer
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+


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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 07:40:42
  Author: foutrelis
Revision: 227813

upgpkg: texlive-bin 2014.34260-4

poppler 0.29.0 rebuild.

Modified:
  texlive-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 03:30:25 UTC (rev 227812)
+++ PKGBUILD2014-12-20 06:40:42 UTC (rev 227813)
@@ -4,7 +4,7 @@
 
 pkgname=texlive-bin
 pkgver=2014.34260
-pkgrel=3
+pkgrel=4
 _biber_ver=1.9 # for biblatex 2.9 only.
 pkgdesc=TeX Live binaries
 license=('GPL')


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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 07:41:00
  Author: foutrelis
Revision: 227814

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

Added:
  texlive-bin/repos/staging-i686/
  texlive-bin/repos/staging-i686/PKGBUILD
(from rev 227813, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-i686/fix-fontforge-encoding.patch
(from rev 227813, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-i686/texlive.install
(from rev 227813, texlive-bin/trunk/texlive.install)
  texlive-bin/repos/staging-x86_64/
  texlive-bin/repos/staging-x86_64/PKGBUILD
(from rev 227813, texlive-bin/trunk/PKGBUILD)
  texlive-bin/repos/staging-x86_64/fix-fontforge-encoding.patch
(from rev 227813, texlive-bin/trunk/fix-fontforge-encoding.patch)
  texlive-bin/repos/staging-x86_64/texlive.install
(from rev 227813, texlive-bin/trunk/texlive.install)

-+
 staging-i686/PKGBUILD   |  329 ++
 staging-i686/fix-fontforge-encoding.patch   |   12 
 staging-i686/texlive.install|   49 +++
 staging-x86_64/PKGBUILD |  329 ++
 staging-x86_64/fix-fontforge-encoding.patch |   12 
 staging-x86_64/texlive.install  |   49 +++
 6 files changed, 780 insertions(+)

Copied: texlive-bin/repos/staging-i686/PKGBUILD (from rev 227813, 
texlive-bin/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-20 06:41:00 UTC (rev 227814)
@@ -0,0 +1,329 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: francois francois.archlinux.org
+
+pkgname=texlive-bin
+pkgver=2014.34260
+pkgrel=4
+_biber_ver=1.9 # for biblatex 2.9 only.
+pkgdesc=TeX Live binaries
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler'
+ 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2'
+ 'icu' 'harfbuzz' 'harfbuzz-icu')
+makedepends=('perl' 'clisp' 'ffcall')
+optdepends=('ed: for texconfig')
+provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam')
+conflicts=('pdfjam')
+options=('!strip')
+url='http://tug.org/texlive/'
+install=texlive.install
+source=('fix-fontforge-encoding.patch'
+
http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_64.tar.gz;
+
http://downloads.sourceforge.net/project/biblatex-biber/biblatex-biber/${_biber_ver}/binaries/Linux/biber-linux_x86_32.tar.gz;
+)
+noextract=(biber-linux_x86_64.tar.gz
+   biber-linux_x86_32.tar.gz)
+md5sums=('bfb9716aa00c86c08cd31e5b32edeb98'
+ 'b6fe9a6e6b3df0d69e804b87370039ef'
+ '137839688478710ded88909088dee970'
+ 'e1af258c7b7fa95d8299696aa3552eb3')
+
+prepare() {
+cd source
+true
+}
+
+build() {
+   cd $srcdir
+
+   if [ ${CARCH} = x86_64 ]; then
+ export CFLAGS=${CFLAGS} -fPIC
+ export CXXFLAGS=${CXXFLAGS} -fPIC
+ tar xf biber-linux_x86_64.tar.gz 
+   else
+ tar xf biber-linux_x86_32.tar.gz
+   fi
+
+   # this patch removes spurious error message with locale xx_YY.utf8
+   #patch -Np0 -i fix-fontforge-encoding.patch
+   # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251)
+   sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c
+   #
+   ### configure
+   cd source
+   ## prevent compiling Xdvi with libXp
+   sed -i~ 's|-lXp ||' texk/xdvik/configure
+   test ! -d Work  mkdir Work
+   cd Work
+   echo -- Initial configuration...
+   # we use temporary prefix to avoid messing the existing
+   # $pkgdir/usr/share/texmf tree
+   # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221)
+   ../configure --prefix=/usr -C \
+ --sysconfdir=/etc \
+ --datarootdir=/usr/share \
+ --datadir=/usr/share \
+ --mandir=/usr/share/man \
+ --disable-native-texlive-build \
+ --with-banner-add=/Arch Linux \
+ --disable-multiplatform \
+ --disable-dialog \
+ --disable-psutils \
+ --disable-t1utils \
+ --disable-bibtexu \
+ --disable-xz \
+ --enable-shared \
+ --disable-static \
+ --with-system-zlib \
+ --with-system-zziplib \
+ --with-system-pnglib \
+ --with-system-ncurses \
+ --with-system-t1lib \
+ --with-system-gd \
+ --with-system-poppler \
+ --with-system-xpdf \
+ --with-system-freetype2 \
+ --with-system-pixman \
+ --with-system-cairo \
+ --with-system-harfbuzz \
+ --with-system-graphite \
+ --with-system-icu \
+ --with-freetype2-libdir=/usr/lib \
+ --with-freetype2-include=/usr/include/freetype2 \
+ --with-xdvi-x-toolkit=xaw \
+ --disable-dump-share \
+ --disable-aleph \
+ 

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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:10:10
  Author: foutrelis
Revision: 227816

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

Added:
  inkscape/repos/staging-i686/
  inkscape/repos/staging-i686/PKGBUILD
(from rev 227815, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-i686/fix-build-with-poppler-0.29.0.patch
(from rev 227815, inkscape/trunk/fix-build-with-poppler-0.29.0.patch)
  inkscape/repos/staging-i686/ime-placement.patch
(from rev 227815, inkscape/trunk/ime-placement.patch)
  inkscape/repos/staging-i686/install
(from rev 227815, inkscape/trunk/install)
  inkscape/repos/staging-x86_64/
  inkscape/repos/staging-x86_64/PKGBUILD
(from rev 227815, inkscape/trunk/PKGBUILD)
  inkscape/repos/staging-x86_64/fix-build-with-poppler-0.29.0.patch
(from rev 227815, inkscape/trunk/fix-build-with-poppler-0.29.0.patch)
  inkscape/repos/staging-x86_64/ime-placement.patch
(from rev 227815, inkscape/trunk/ime-placement.patch)
  inkscape/repos/staging-x86_64/install
(from rev 227815, inkscape/trunk/install)

+
 staging-i686/PKGBUILD  |   61 +++
 staging-i686/fix-build-with-poppler-0.29.0.patch   |   98 +++
 staging-i686/ime-placement.patch   |   62 
 staging-i686/install   |   13 ++
 staging-x86_64/PKGBUILD|   61 +++
 staging-x86_64/fix-build-with-poppler-0.29.0.patch |   98 +++
 staging-x86_64/ime-placement.patch |   62 
 staging-x86_64/install |   13 ++
 8 files changed, 468 insertions(+)

Copied: inkscape/repos/staging-i686/PKGBUILD (from rev 227815, 
inkscape/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-12-20 07:10:10 UTC (rev 227816)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Tobias Kieslich tob...@justdreams.de
+# Contributor: tobias tob...@archlinux.org
+
+pkgname=inkscape
+pkgver=0.48.5
+pkgrel=4
+pkgdesc='Vector graphics editor using the SVG file format'
+url='http://inkscape.sourceforge.net/'
+license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
+makedepends=('boost' 'intltool')
+depends=('gc' 'gsl' 'gtkmm' 'gtkspell' 'imagemagick' 'libxslt' 'poppler-glib' 
'popt'
+ 'python2' 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('pstoedit: latex formulas'
+'texlive-core: latex formulas'
+'python2-numpy: some extensions'
+'python2-lxml: some extensions and filters'
+'uniconvertor: reading/writing to some proprietary formats')
+source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
+'fix-build-with-poppler-0.29.0.patch'
+'ime-placement.patch')
+sha1sums=('83ddb0c96069638f712a869039989bfd7d79c6a8'
+  '82ad02357a2405c11f29f2e516b1a7f55953e807'
+  'b12b948ca5ee7e02703a13aa8b8bccdf67947f12')
+
+install=install
+
+prepare() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   # https://bugs.launchpad.net/inkscape/+bug/1399811
+   patch -p0 -i ../fix-build-with-poppler-0.29.0.patch
+   autoreconf -vi
+
+   patch -p1 -i ../ime-placement.patch # FS#39898
+   sed -i 's|/usr/bin/python\|/usr/bin/python2|g' cxxtest/*.py
+   sed -i 's|/usr/bin/env python\|/usr/bin/env python2|g' 
share/*/{test/,}*.py
+   sed -i 's|python },|python2 },|g' 
src/extension/implementation/script.cpp
+   sed -i 's|python -c|python2 -c|g' configure share/extensions/uniconv*.py
+   sed -i 's|python|python2|g' src/main.cpp
+   sed -i '/extern unsigned GC_version;/c unsigned 
GC_version=GC_VERSION_MAJOR16+GC_VERSION_MINOR8+GC_VERSION_MICRO;' configure
+}
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure \
+   --prefix=/usr \
+   --with-python \
+   --with-perl \
+   --enable-lcms \
+   --enable-poppler-cairo \
+   --disable-dependency-tracking
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Copied: inkscape/repos/staging-i686/fix-build-with-poppler-0.29.0.patch (from 
rev 227815, inkscape/trunk/fix-build-with-poppler-0.29.0.patch)
===
--- staging-i686/fix-build-with-poppler-0.29.0.patch
(rev 0)
+++ staging-i686/fix-build-with-poppler-0.29.0.patch2014-12-20 07:10:10 UTC 
(rev 227816)
@@ -0,0 +1,98 @@
+=== modified file 'configure.ac'
+--- configure.ac   2014-06-20 21:38:59 +
 configure.ac   2014-12-10 20:32:33 +
+@@ -593,6 +593,11 @@
+   AC_DEFINE(POPPLER_EVEN_NEWER_COLOR_SPACE_API, 1, [Use even newer 

[arch-commits] Commit in inkscape/trunk (PKGBUILD fix-build-with-poppler-0.29.0.patch)

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:09:52
  Author: foutrelis
Revision: 227815

upgpkg: inkscape 0.48.5-4

poppler 0.29.0 rebuild.

Added:
  inkscape/trunk/fix-build-with-poppler-0.29.0.patch
Modified:
  inkscape/trunk/PKGBUILD

-+
 PKGBUILD|9 ++-
 fix-build-with-poppler-0.29.0.patch |   98 ++
 2 files changed, 106 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 06:41:00 UTC (rev 227814)
+++ PKGBUILD2014-12-20 07:09:52 UTC (rev 227815)
@@ -5,7 +5,7 @@
 
 pkgname=inkscape
 pkgver=0.48.5
-pkgrel=3
+pkgrel=4
 pkgdesc='Vector graphics editor using the SVG file format'
 url='http://inkscape.sourceforge.net/'
 license=('GPL' 'LGPL')
@@ -19,8 +19,10 @@
 'python2-lxml: some extensions and filters'
 'uniconvertor: reading/writing to some proprietary formats')
 
source=(http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
+'fix-build-with-poppler-0.29.0.patch'
 'ime-placement.patch')
 sha1sums=('83ddb0c96069638f712a869039989bfd7d79c6a8'
+  '82ad02357a2405c11f29f2e516b1a7f55953e807'
   'b12b948ca5ee7e02703a13aa8b8bccdf67947f12')
 
 install=install
@@ -27,6 +29,11 @@
 
 prepare() {
cd ${srcdir}/${pkgname}-${pkgver}
+
+   # https://bugs.launchpad.net/inkscape/+bug/1399811
+   patch -p0 -i ../fix-build-with-poppler-0.29.0.patch
+   autoreconf -vi
+
patch -p1 -i ../ime-placement.patch # FS#39898
sed -i 's|/usr/bin/python\|/usr/bin/python2|g' cxxtest/*.py
sed -i 's|/usr/bin/env python\|/usr/bin/env python2|g' 
share/*/{test/,}*.py

Added: fix-build-with-poppler-0.29.0.patch
===
--- fix-build-with-poppler-0.29.0.patch (rev 0)
+++ fix-build-with-poppler-0.29.0.patch 2014-12-20 07:09:52 UTC (rev 227815)
@@ -0,0 +1,98 @@
+=== modified file 'configure.ac'
+--- configure.ac   2014-06-20 21:38:59 +
 configure.ac   2014-12-10 20:32:33 +
+@@ -593,6 +593,11 @@
+   AC_DEFINE(POPPLER_EVEN_NEWER_COLOR_SPACE_API, 1, [Use even newer color 
space API from Poppler = 0.26.0])
+ fi
+ 
++PKG_CHECK_MODULES(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API, poppler = 0.29.0, 
popplernewernewcolorspaceapi=yes, popplernewernewcolorspaceapi=no)
++if test x$popplernewernewcolorspaceapi = xyes; then
++  AC_DEFINE(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API, 1, [Use even newer 
new color space API from Poppler = 0.29.0])
++fi
++
+ # Poppler's b604a008 commit changes this
+ AC_MSG_CHECKING([whether Poppler's GfxPatch no longer uses GfxColor])
+ popplergfxcolor=no
+=== modified file 'src/extension/internal/pdfinput/pdf-parser.cpp'
+--- src/extension/internal/pdfinput/pdf-parser.cpp 2014-06-03 15:44:09 
+
 src/extension/internal/pdfinput/pdf-parser.cpp 2014-12-10 20:32:30 
+
+@@ -860,7 +860,9 @@
+ blendingColorSpace = NULL;
+ isolated = knockout = gFalse;
+ if (!obj4.dictLookup(const_castchar*(CS), obj5)-isNull()) {
+-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
++#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
++  blendingColorSpace = GfxColorSpace::parse(NULL, obj5, NULL, NULL);
++#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+   blendingColorSpace = GfxColorSpace::parse(obj5, NULL, NULL);
+ #elif defined(POPPLER_NEW_COLOR_SPACE_API) || defined(POPPLER_NEW_ERRORAPI)
+   blendingColorSpace = GfxColorSpace::parse(obj5, NULL);
+@@ -1085,7 +1087,13 @@
+ 
+   state-setFillPattern(NULL);
+   res-lookupColorSpace(args[0].getName(), obj);
+-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
++#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
++  if (obj.isNull()) {
++colorSpace = GfxColorSpace::parse(NULL, args[0], NULL, NULL);
++  } else {
++colorSpace = GfxColorSpace::parse(NULL, obj, NULL, NULL);
++  }
++#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+   if (obj.isNull()) {
+ colorSpace = GfxColorSpace::parse(args[0], NULL, NULL);
+   } else {
+@@ -1126,7 +1134,13 @@
+ 
+   state-setStrokePattern(NULL);
+   res-lookupColorSpace(args[0].getName(), obj);
+-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
++#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
++  if (obj.isNull()) {
++colorSpace = GfxColorSpace::parse(NULL, args[0], NULL, NULL);
++  } else {
++colorSpace = GfxColorSpace::parse(NULL, obj, NULL, NULL);
++  }
++#elif defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+   if (obj.isNull()) {
+ colorSpace = GfxColorSpace::parse(args[0], NULL, NULL);
+   } else {
+@@ -2756,8 +2770,10 @@
+   }
+ }
+ if (!obj1.isNull()) {
+-#if defined(POPPLER_EVEN_NEWER_COLOR_SPACE_API)
+-colorSpace = GfxColorSpace::parse(obj1, NULL, NULL);
++#if defined(POPPLER_EVEN_NEWER_NEW_COLOR_SPACE_API)
++   

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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:20:14
  Author: foutrelis
Revision: 124153

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

Added:
  gdal/repos/community-staging-i686/
  gdal/repos/community-staging-i686/PKGBUILD
(from rev 124152, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-i686/gdal-1.5.1-python-install.patch
(from rev 124152, gdal/trunk/gdal-1.5.1-python-install.patch)
  gdal/repos/community-staging-i686/gdal.changelog
(from rev 124152, gdal/trunk/gdal.changelog)
  gdal/repos/community-staging-x86_64/
  gdal/repos/community-staging-x86_64/PKGBUILD
(from rev 124152, gdal/trunk/PKGBUILD)
  gdal/repos/community-staging-x86_64/gdal-1.5.1-python-install.patch
(from rev 124152, gdal/trunk/gdal-1.5.1-python-install.patch)
  gdal/repos/community-staging-x86_64/gdal.changelog
(from rev 124152, gdal/trunk/gdal.changelog)

--+
 community-staging-i686/PKGBUILD  |   74 +
 community-staging-i686/gdal-1.5.1-python-install.patch   |   10 +
 community-staging-i686/gdal.changelog|   38 ++
 community-staging-x86_64/PKGBUILD|   74 +
 community-staging-x86_64/gdal-1.5.1-python-install.patch |   10 +
 community-staging-x86_64/gdal.changelog  |   38 ++
 6 files changed, 244 insertions(+)

Copied: gdal/repos/community-staging-i686/PKGBUILD (from rev 124152, 
gdal/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-20 07:20:14 UTC (rev 124153)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=gdal
+pkgver=1.11.1
+pkgrel=4
+pkgdesc=A translator library for raster geospatial data formats
+arch=('i686' 'x86_64')
+url=http://www.gdal.org/;
+license=('custom')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 
'libspatialite' 'libtiff' 'netcdf' 'poppler' 'python2' 'python2-numpy' 
'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen')
+optdepends=('postgresql: postgresql database support'
+'mariadb: mariadb database support'
+'perl:  perl binding support')
+changelog=$pkgname.changelog
+source=(http://download.osgeo.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz
+gdal-1.5.1-python-install.patch)
+sha256sums=('f46b5944a8cabc8516673f231f466131cdfd2cdc6677dbee5d96ec7fc58a3340'
+'55a0a961b2d1caddf80f18b6763a96690b0b6443fbd5a0c89e29503ded3bcea6')
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -Np0 -i ${srcdir}/gdal-1.5.1-python-install.patch
+
+# python2 fixes
+  sed -i 's_python python1.5_python2 python python1.5_' configure
+  for file in swig/python/{,osgeo/,samples/,scripts/}*.py; do
+  sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+  done
+
+# Fix mandir
+  sed -i s|^mandir=.*|mandir='\${prefix}/share/man'| configure
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  export CFLAGS=$CFLAGS -fno-strict-aliasing
+
+# bug #23654
+  export LDFLAGS=$LDFLAGS -Wl,--as-needed 
+
+  ./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 \
+  --with-geotiff --with-mysql --with-python --with-curl \
+  --with-hdf5 --with-perl --with-geos --with-png --with-poppler 
--with-spatialite
+
+# workaround for bug #13646
+  sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
+  sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
+
+  make
+  make man
+}
+
+package () {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  make DESTDIR=${pkgdir} install-man
+
+# install license
+  install -D -m644 LICENSE.TXT 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+#FS15477 clean up junks
+  rm -f ${pkgdir}/usr/bin/*.dox
+  rm -f ${pkgdir}/usr/share/man/man1/_build_gdal_src_gdal-${pkgver}_apps_.1
+
+# Remove RPATH
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/OSR/OSR.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/OGR/OGR.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/GDAL/GDAL.so
+  chrpath --delete 
${pkgdir}/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/GDAL/Const/Const.so
+}

Copied: gdal/repos/community-staging-i686/gdal-1.5.1-python-install.patch (from 
rev 124152, gdal/trunk/gdal-1.5.1-python-install.patch)
===
--- community-staging-i686/gdal-1.5.1-python-install.patch  
(rev 0)
+++ community-staging-i686/gdal-1.5.1-python-install.patch  2014-12-20 
07:20:14 UTC 

[arch-commits] Commit in gdal/trunk (PKGBUILD gdal.changelog)

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:20:02
  Author: foutrelis
Revision: 124152

upgpkg: gdal 1.11.1-4

poppler 0.29.0 rebuild.

Modified:
  gdal/trunk/PKGBUILD
  gdal/trunk/gdal.changelog

+
 PKGBUILD   |2 +-
 gdal.changelog |3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 01:29:00 UTC (rev 124151)
+++ PKGBUILD2014-12-20 07:20:02 UTC (rev 124152)
@@ -5,7 +5,7 @@
 
 pkgname=gdal
 pkgver=1.11.1
-pkgrel=3
+pkgrel=4
 pkgdesc=A translator library for raster geospatial data formats
 arch=('i686' 'x86_64')
 url=http://www.gdal.org/;

Modified: gdal.changelog
===
--- gdal.changelog  2014-12-20 01:29:00 UTC (rev 124151)
+++ gdal.changelog  2014-12-20 07:20:02 UTC (rev 124152)
@@ -1,3 +1,6 @@
+2014-12-20 Evangelos Foutras evange...@foutrelis.com
+   * gdal 1.11.1-4 poppler 0.29.0 rebuild
+
 2014-11-25 Jaroslav Lichtblau dragonl...@aur.archlinux.org
* gdal 1.11.1-3 hdf5 1.8.14 rebuild
 


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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:21:18
  Author: foutrelis
Revision: 124154

upgpkg: pdf2djvu 0.7.17-5

poppler 0.29.0 rebuild.

Modified:
  pdf2djvu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-12-20 07:20:14 UTC (rev 124153)
+++ PKGBUILD2014-12-20 07:21:18 UTC (rev 124154)
@@ -4,7 +4,7 @@
 
 pkgname=pdf2djvu
 pkgver=0.7.17
-pkgrel=4
+pkgrel=5
 pkgdesc=Creates DjVu files from PDF files
 arch=('i686' 'x86_64')
 url=http://pdf2djvu.googlecode.com;


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

2014-12-19 Thread Evangelos Foutras
Date: Saturday, December 20, 2014 @ 08:21:25
  Author: foutrelis
Revision: 124155

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

Added:
  pdf2djvu/repos/community-staging-i686/
  pdf2djvu/repos/community-staging-i686/PKGBUILD
(from rev 124154, pdf2djvu/trunk/PKGBUILD)
  pdf2djvu/repos/community-staging-x86_64/
  pdf2djvu/repos/community-staging-x86_64/PKGBUILD
(from rev 124154, pdf2djvu/trunk/PKGBUILD)

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

Copied: pdf2djvu/repos/community-staging-i686/PKGBUILD (from rev 124154, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-12-20 07:21:25 UTC (rev 124155)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+pkgname=pdf2djvu
+pkgver=0.7.17
+pkgrel=5
+pkgdesc=Creates DjVu files from PDF files
+arch=('i686' 'x86_64')
+url=http://pdf2djvu.googlecode.com;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=(http://pdf2djvu.googlecode.com/files/${pkgname}_${pkgver}.tar.gz;)
+md5sums=('fedec591afb14b144808d1a4facab174')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}
+

Copied: pdf2djvu/repos/community-staging-x86_64/PKGBUILD (from rev 124154, 
pdf2djvu/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-12-20 07:21:25 UTC (rev 124155)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+# Maintainer: Jelle van der Waa je...@vdwaa.nl
+
+pkgname=pdf2djvu
+pkgver=0.7.17
+pkgrel=5
+pkgdesc=Creates DjVu files from PDF files
+arch=('i686' 'x86_64')
+url=http://pdf2djvu.googlecode.com;
+license=('GPL')
+depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs' 'graphicsmagick')
+makedepends=('pstreams' 'python2-nose' 'ttf-liberation')
+source=(http://pdf2djvu.googlecode.com/files/${pkgname}_${pkgver}.tar.gz;)
+md5sums=('fedec591afb14b144808d1a4facab174')
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+sed -i 's/nosetests/nosetests2/' tests/Makefile
+make test
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+
+make install DESTDIR=${pkgdir}
+install -Dm644 doc/${pkgname}.1 ${pkgdir}/usr/share/man/man1/${pkgname}.1
+}
+