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

2014-04-05 Thread Anatol Pomozov
Date: Sunday, April 6, 2014 @ 02:41:13
  Author: anatolik
Revision: 209847

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

Added:
  valgrind/repos/testing-i686/
  valgrind/repos/testing-i686/PKGBUILD
(from rev 209846, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch
(from rev 209846, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
  valgrind/repos/testing-x86_64/
  valgrind/repos/testing-x86_64/PKGBUILD
(from rev 209846, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-x86_64/valgrind-3.9.0-glibc-2.19.patch
(from rev 209846, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)

+
 testing-i686/PKGBUILD  |   35 +
 testing-i686/valgrind-3.9.0-glibc-2.19.patch   |   37 +++
 testing-x86_64/PKGBUILD|   35 +
 testing-x86_64/valgrind-3.9.0-glibc-2.19.patch |   37 +++
 4 files changed, 144 insertions(+)

Copied: valgrind/repos/testing-i686/PKGBUILD (from rev 209846, 
valgrind/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-06 00:41:13 UTC (rev 209847)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Allan McRae 
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=4
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc>=2.19' 'glibc<2.20' 'perl')
+makedepends=('gdb' 'openmpi')
+optdepends=('openmpi: MPI support')
+options=('staticlibs' '!emptydirs')
+source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
+valgrind-3.9.0-glibc-2.19.patch)
+sha1sums=('9415e28933de9d6687f993c4bb797e6bd49583f1'
+  '4653e994d2660490c51a97cc70e45a506e80bfab')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/valgrind-3.9.0-glibc-2.19.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch (from rev 
209846, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
===
--- testing-i686/valgrind-3.9.0-glibc-2.19.patch
(rev 0)
+++ testing-i686/valgrind-3.9.0-glibc-2.19.patch2014-04-06 00:41:13 UTC 
(rev 209847)
@@ -0,0 +1,37 @@
+diff -Naur valgrind-3.9.0-orig/configure valgrind-3.9.0/configure
+--- valgrind-3.9.0-orig/configure  2013-11-01 09:33:32.0 +1000
 valgrind-3.9.0/configure   2014-02-08 09:28:06.063248544 +1000
+@@ -6689,6 +6689,16 @@
+   DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+   DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+   ;;
++ 2.19)
++  { $as_echo "$as_me:${as_lineno-$LINENO}: result: 2.19 family" >&5
++$as_echo "2.19 family" >&6; }
++
++$as_echo "#define GLIBC_2_19 1" >>confdefs.h
++
++  DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++  DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++  DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++  ;;
+  darwin)
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: Darwin" >&5
+ $as_echo "Darwin" >&6; }
+diff -Naur valgrind-3.9.0-orig/configure.ac valgrind-3.9.0/configure.ac
+--- valgrind-3.9.0-orig/configure.ac   2013-11-01 09:28:16.0 +1000
 valgrind-3.9.0/configure.ac2014-02-08 09:27:38.870385366 +1000
+@@ -918,6 +918,13 @@
+   DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+   DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+   ;;
++ 2.19)
++  AC_MSG_RESULT(2.19 family)
++  AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x])
++  DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++  DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++  DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++  ;;
+  darwin)
+   AC_MSG_RESULT(Darwin)
+   AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

Copied: valgrind/repos/testing-x86_64/PKGBUILD (from rev 209846, 
valgrind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-06 00:41:13 UTC (rev 209847)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Dan McGee 
+# Maintainer: Allan McRae 
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=4
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc>=2.19' 'glibc<2.20' 'perl')
+makedepends=('gdb' 'openmpi')
+optdepends=('openmpi: MPI support'

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

2014-04-05 Thread Anatol Pomozov
Date: Sunday, April 6, 2014 @ 02:40:33
  Author: anatolik
Revision: 209846

upgpkg: valgrind 3.9.0-4

Move openmpi to optdepends to break the cyclic dependency

Modified:
  valgrind/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-06 00:22:38 UTC (rev 209845)
+++ PKGBUILD2014-04-06 00:40:33 UTC (rev 209846)
@@ -4,13 +4,14 @@
 
 pkgname=valgrind
 pkgver=3.9.0
-pkgrel=3
+pkgrel=4
 pkgdesc='A tool to help find memory-management problems in programs'
 arch=(i686 x86_64)
 license=(GPL)
 url='http://valgrind.org/'
-depends=('glibc>=2.19' 'glibc<2.20' 'perl' 'openmpi')
-makedepends=('gdb')
+depends=('glibc>=2.19' 'glibc<2.20' 'perl')
+makedepends=('gdb' 'openmpi')
+optdepends=('openmpi: MPI support')
 options=('staticlibs' '!emptydirs')
 source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
 valgrind-3.9.0-glibc-2.19.patch)



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

2014-04-05 Thread Anatol Pomozov
Date: Sunday, April 6, 2014 @ 00:02:16
  Author: anatolik
Revision: 108867

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

Added:
  ninja/repos/community-i686/
  ninja/repos/community-i686/PKGBUILD
(from rev 108866, ninja/trunk/PKGBUILD)
  ninja/repos/community-x86_64/
  ninja/repos/community-x86_64/PKGBUILD
(from rev 108866, ninja/trunk/PKGBUILD)

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

Copied: ninja/repos/community-i686/PKGBUILD (from rev 108866, 
ninja/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 22:02:16 UTC (rev 108867)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Filip Brcic 
+# Contributor: Mika Fischer 
+# Contributor: Gergely Imreh 
+
+pkgname=ninja
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Small build system with a focus on speed'
+arch=(i686 x86_64)
+url='http://martine.github.io/ninja/'
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(asciidoc python2 re2c python2 emacs-nox)
+checkdepends=(gtest)
+source=(https://github.com/martine/ninja/archive/v$pkgver.zip)
+sha1sums=('5de3dcd1564056f4f350d99f950f581214893a05')
+
+build() {
+  cd ninja-$pkgver
+
+  python2 ./bootstrap.py
+  emacs -Q --batch -f batch-byte-compile misc/ninja-mode.el
+  asciidoc doc/manual.asciidoc
+}
+
+check() {
+  cd ninja-$pkgver
+
+  python2 ./configure.py --with-gtest=/usr/src/gtest
+  ./ninja ninja_test
+  ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
+}
+
+package() {
+  cd ninja-$pkgver
+
+  install -m755 -D ninja "$pkgdir/usr/bin/ninja"
+  install -m644 -D doc/manual.asciidoc 
"$pkgdir/usr/share/doc/ninja/manual.asciidoc"
+  install -m644 -D doc/manual.html "$pkgdir/usr/share/doc/ninja/manual.html"
+
+  install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
+  install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
+
+  install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
+  install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"
+}

Copied: ninja/repos/community-x86_64/PKGBUILD (from rev 108866, 
ninja/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 22:02:16 UTC (rev 108867)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Filip Brcic 
+# Contributor: Mika Fischer 
+# Contributor: Gergely Imreh 
+
+pkgname=ninja
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Small build system with a focus on speed'
+arch=(i686 x86_64)
+url='http://martine.github.io/ninja/'
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(asciidoc python2 re2c python2 emacs-nox)
+checkdepends=(gtest)
+source=(https://github.com/martine/ninja/archive/v$pkgver.zip)
+sha1sums=('5de3dcd1564056f4f350d99f950f581214893a05')
+
+build() {
+  cd ninja-$pkgver
+
+  python2 ./bootstrap.py
+  emacs -Q --batch -f batch-byte-compile misc/ninja-mode.el
+  asciidoc doc/manual.asciidoc
+}
+
+check() {
+  cd ninja-$pkgver
+
+  python2 ./configure.py --with-gtest=/usr/src/gtest
+  ./ninja ninja_test
+  ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
+}
+
+package() {
+  cd ninja-$pkgver
+
+  install -m755 -D ninja "$pkgdir/usr/bin/ninja"
+  install -m644 -D doc/manual.asciidoc 
"$pkgdir/usr/share/doc/ninja/manual.asciidoc"
+  install -m644 -D doc/manual.html "$pkgdir/usr/share/doc/ninja/manual.html"
+
+  install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
+  install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
+
+  install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
+  install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"
+}



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

2014-04-05 Thread Anatol Pomozov
Date: Saturday, April 5, 2014 @ 23:59:43
  Author: anatolik
Revision: 108866

ninja: add build tool

Added:
  ninja/
  ninja/repos/
  ninja/trunk/
  ninja/trunk/PKGBUILD

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

Added: ninja/trunk/PKGBUILD
===
--- ninja/trunk/PKGBUILD(rev 0)
+++ ninja/trunk/PKGBUILD2014-04-05 21:59:43 UTC (rev 108866)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Filip Brcic 
+# Contributor: Mika Fischer 
+# Contributor: Gergely Imreh 
+
+pkgname=ninja
+pkgver=1.4.0
+pkgrel=1
+pkgdesc='Small build system with a focus on speed'
+arch=(i686 x86_64)
+url='http://martine.github.io/ninja/'
+license=(Apache)
+depends=(gcc-libs)
+makedepends=(asciidoc python2 re2c python2 emacs-nox)
+checkdepends=(gtest)
+source=(https://github.com/martine/ninja/archive/v$pkgver.zip)
+sha1sums=('5de3dcd1564056f4f350d99f950f581214893a05')
+
+build() {
+  cd ninja-$pkgver
+
+  python2 ./bootstrap.py
+  emacs -Q --batch -f batch-byte-compile misc/ninja-mode.el
+  asciidoc doc/manual.asciidoc
+}
+
+check() {
+  cd ninja-$pkgver
+
+  python2 ./configure.py --with-gtest=/usr/src/gtest
+  ./ninja ninja_test
+  ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
+}
+
+package() {
+  cd ninja-$pkgver
+
+  install -m755 -D ninja "$pkgdir/usr/bin/ninja"
+  install -m644 -D doc/manual.asciidoc 
"$pkgdir/usr/share/doc/ninja/manual.asciidoc"
+  install -m644 -D doc/manual.html "$pkgdir/usr/share/doc/ninja/manual.html"
+
+  install -m644 -D misc/ninja-mode.el 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.el"
+  install -m644 -D misc/ninja-mode.elc 
"$pkgdir/usr/share/emacs/site-lisp/ninja-mode.elc"
+
+  install -m644 -D misc/bash-completion 
"$pkgdir/usr/share/bash-completion/completions/ninja"
+  install -m644 -D misc/zsh-completion 
"$pkgdir/usr/share/zsh/site-functions/_ninja"
+}


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


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

2014-04-05 Thread Anatol Pomozov
Date: Saturday, April 5, 2014 @ 22:04:28
  Author: anatolik
Revision: 209844

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

Added:
  sg3_utils/repos/testing-i686/
  sg3_utils/repos/testing-i686/PKGBUILD
(from rev 209843, sg3_utils/trunk/PKGBUILD)
  sg3_utils/repos/testing-x86_64/
  sg3_utils/repos/testing-x86_64/PKGBUILD
(from rev 209843, sg3_utils/trunk/PKGBUILD)

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

Copied: sg3_utils/repos/testing-i686/PKGBUILD (from rev 209843, 
sg3_utils/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-05 20:04:28 UTC (rev 209844)
@@ -0,0 +1,26 @@
+#$Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=sg3_utils
+pkgver=1.38
+pkgrel=1
+pkgdesc="Generic SCSI utilities"
+arch=(i686 x86_64)
+url="http://sg.danny.cz/sg/sg3_utils.html";
+license=('GPL' 'custom:BSD')
+depends=('glibc')
+source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tar.xz)
+md5sums=('ee60a79cd4eb4fa8cebb83c0e9c3707c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: sg3_utils/repos/testing-x86_64/PKGBUILD (from rev 209843, 
sg3_utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-04-05 20:04:28 UTC (rev 209844)
@@ -0,0 +1,26 @@
+#$Id$
+# Maintainer: Daniel Isenmann 
+
+pkgname=sg3_utils
+pkgver=1.38
+pkgrel=1
+pkgdesc="Generic SCSI utilities"
+arch=(i686 x86_64)
+url="http://sg.danny.cz/sg/sg3_utils.html";
+license=('GPL' 'custom:BSD')
+depends=('glibc')
+source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tar.xz)
+md5sums=('ee60a79cd4eb4fa8cebb83c0e9c3707c')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2014-04-05 Thread Anatol Pomozov
Date: Saturday, April 5, 2014 @ 22:00:10
  Author: anatolik
Revision: 209843

upgpkg: sg3_utils 1.38-1

Modified:
  sg3_utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 18:40:31 UTC (rev 209842)
+++ PKGBUILD2014-04-05 20:00:10 UTC (rev 209843)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Isenmann 
 
 pkgname=sg3_utils
-pkgver=1.37
+pkgver=1.38
 pkgrel=1
 pkgdesc="Generic SCSI utilities"
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 license=('GPL' 'custom:BSD')
 depends=('glibc')
 source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tar.xz)
-md5sums=('ade022cf1ece91e94865e2c68d369c79')
+md5sums=('ee60a79cd4eb4fa8cebb83c0e9c3707c')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"



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

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 20:40:31
  Author: eric
Revision: 209842

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-05 18:37:59 UTC (rev 209841)
+++ extra-i686/PKGBUILD 2014-04-05 18:40:31 UTC (rev 209842)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault 
-# Contributor: Sylvain HENRY 
-# Contributor: Hervé YVIQUEL 
-
-pkgname=hwloc
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical 
architectures"
-arch=('i686' 'x86_64')
-url="http://www.open-mpi.org/projects/hwloc/";
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-options=('!docs')
-source=(http://www.open-mpi.org/software/hwloc/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe465bc02da7b4a96b362ea73bdc0b8e4cf80040')
-
-build() {
-   cd ${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd ${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${pkgname}-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-   install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-i686/PKGBUILD (from rev 209841, hwloc/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-05 18:40:31 UTC (rev 209842)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+# Contributor: Hervé YVIQUEL 
+
+pkgname=hwloc
+pkgver=1.9
+pkgrel=1
+pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical 
architectures"
+arch=('i686' 'x86_64')
+url="http://www.open-mpi.org/projects/hwloc/";
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+options=('!docs')
+source=(http://www.open-mpi.org/software/hwloc/v${pkgver}/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('99646446502e0f9952170bf1082be63361d99b6d')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd ${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="${pkgdir}" install
+
+   install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-05 18:37:59 UTC (rev 209841)
+++ extra-x86_64/PKGBUILD   2014-04-05 18:40:31 UTC (rev 209842)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer : Stéphane Gaudreault 
-# Contributor: Sylvain HENRY 
-# Contributor: Hervé YVIQUEL 
-
-pkgname=hwloc
-pkgver=1.8.1
-pkgrel=1
-pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical 
architectures"
-arch=('i686' 'x86_64')
-url="http://www.open-mpi.org/projects/hwloc/";
-license=('BSD')
-depends=('sh' 'pciutils' 'cairo' 'libxml2')
-options=('!docs')
-source=(http://www.open-mpi.org/software/hwloc/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe465bc02da7b4a96b362ea73bdc0b8e4cf80040')
-
-build() {
-   cd ${pkgname}-${pkgver}
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd ${pkgname}-${pkgver}
-   make check
-}
-
-package() {
-   cd ${pkgname}-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-   install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: hwloc/repos/extra-x86_64/PKGBUILD (from rev 209841, 
hwloc/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-05 18:40:31 UTC (rev 209842)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer : Stéphane Gaudreault 
+# Contributor: Sylvain HENRY 
+# Contributor: Hervé YVIQUEL 
+
+pkgname=hwloc
+pkgver=1.9
+pkgrel=1
+pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical 
architectures"
+arch=('i686' 'x86_64')
+url="http://www.open-mpi.org/projects/hwloc/";
+license=('BSD')
+depends=('sh' 'pciutils' 'cairo' 'libxml2')
+options=('!docs')
+source=(http://www.open-mpi.org/software/hwloc/v${pkgver}/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('99646446502e0f9952170bf1082be63361d99b6d')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd ${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${

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

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 20:37:59
  Author: eric
Revision: 209841

upgpkg: hwloc 1.9-1

Upstream update

Modified:
  hwloc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 17:56:16 UTC (rev 209840)
+++ PKGBUILD2014-04-05 18:37:59 UTC (rev 209841)
@@ -4,7 +4,7 @@
 # Contributor: Hervé YVIQUEL 
 
 pkgname=hwloc
-pkgver=1.8.1
+pkgver=1.9
 pkgrel=1
 pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical 
architectures"
 arch=('i686' 'x86_64')
@@ -12,8 +12,8 @@
 license=('BSD')
 depends=('sh' 'pciutils' 'cairo' 'libxml2')
 options=('!docs')
-source=(http://www.open-mpi.org/software/hwloc/v${pkgver%.*}/downloads/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('fe465bc02da7b4a96b362ea73bdc0b8e4cf80040')
+source=(http://www.open-mpi.org/software/hwloc/v${pkgver}/downloads/${pkgname}-${pkgver}.tar.bz2)
+sha1sums=('99646446502e0f9952170bf1082be63361d99b6d')
 
 build() {
cd ${pkgname}-${pkgver}



[arch-commits] Commit in perl-dbd-sqlite/repos (4 files)

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 19:56:16
  Author: eric
Revision: 209840

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

Added:
  perl-dbd-sqlite/repos/extra-i686/PKGBUILD
(from rev 209839, perl-dbd-sqlite/trunk/PKGBUILD)
  perl-dbd-sqlite/repos/extra-x86_64/PKGBUILD
(from rev 209839, perl-dbd-sqlite/trunk/PKGBUILD)
Deleted:
  perl-dbd-sqlite/repos/extra-i686/PKGBUILD
  perl-dbd-sqlite/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-04-05 17:53:52 UTC (rev 209839)
+++ extra-i686/PKGBUILD 2014-04-05 17:56:16 UTC (rev 209840)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-dbd-sqlite
-pkgver=1.40
-pkgrel=1
-pkgdesc="Self-contained RDBMS in a DBI driver"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/DBD-SQLite";
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi' 'sqlite')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
-md5sums=('b9876882186499583428b14cf5c0e29c')
-
-build() {
-  cd DBD-SQLite-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd DBD-SQLite-${pkgver}
-  make test
-}
-
-package() {
-  cd DBD-SQLite-${pkgver}
-  make install DESTDIR="${pkgdir}"
-}

Copied: perl-dbd-sqlite/repos/extra-i686/PKGBUILD (from rev 209839, 
perl-dbd-sqlite/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-04-05 17:56:16 UTC (rev 209840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-dbd-sqlite
+pkgver=1.42
+pkgrel=1
+pkgdesc="Self-contained RDBMS in a DBI driver"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/DBD-SQLite";
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi' 'sqlite')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
+md5sums=('86cfaf477cb9ddc39508f74f4268fc79')
+
+build() {
+  cd DBD-SQLite-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd DBD-SQLite-${pkgver}
+  make test
+}
+
+package() {
+  cd DBD-SQLite-${pkgver}
+  make install DESTDIR="${pkgdir}"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-04-05 17:53:52 UTC (rev 209839)
+++ extra-x86_64/PKGBUILD   2014-04-05 17:56:16 UTC (rev 209840)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:
-
-pkgname=perl-dbd-sqlite
-pkgver=1.40
-pkgrel=1
-pkgdesc="Self-contained RDBMS in a DBI driver"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/DBD-SQLite";
-license=('GPL' 'PerlArtistic')
-depends=('perl-dbi' 'sqlite')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
-md5sums=('b9876882186499583428b14cf5c0e29c')
-
-build() {
-  cd DBD-SQLite-${pkgver}
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd DBD-SQLite-${pkgver}
-  make test
-}
-
-package() {
-  cd DBD-SQLite-${pkgver}
-  make install DESTDIR="${pkgdir}"
-}

Copied: perl-dbd-sqlite/repos/extra-x86_64/PKGBUILD (from rev 209839, 
perl-dbd-sqlite/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-04-05 17:56:16 UTC (rev 209840)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer:
+
+pkgname=perl-dbd-sqlite
+pkgver=1.42
+pkgrel=1
+pkgdesc="Self-contained RDBMS in a DBI driver"
+arch=('i686' 'x86_64')
+url="http://search.cpan.org/dist/DBD-SQLite";
+license=('GPL' 'PerlArtistic')
+depends=('perl-dbi' 'sqlite')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
+md5sums=('86cfaf477cb9ddc39508f74f4268fc79')
+
+build() {
+  cd DBD-SQLite-${pkgver}
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd DBD-SQLite-${pkgver}
+  make test
+}
+
+package() {
+  cd DBD-SQLite-${pkgver}
+  make install DESTDIR="${pkgdir}"
+}



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

2014-04-05 Thread Dave Reisner
Date: Saturday, April 5, 2014 @ 19:53:46
  Author: dreisner
Revision: 209838

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

Added:
  systemd/repos/testing-i686/
  systemd/repos/testing-i686/PKGBUILD
(from rev 209837, systemd/trunk/PKGBUILD)
  systemd/repos/testing-i686/initcpio-hook-udev
(from rev 209837, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-i686/initcpio-install-systemd
(from rev 209837, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-i686/initcpio-install-udev
(from rev 209837, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-i686/systemd.install
(from rev 209837, systemd/trunk/systemd.install)
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 209837, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 209837, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 209837, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 209837, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/systemd.install
(from rev 209837, systemd/trunk/systemd.install)

-+
 testing-i686/PKGBUILD   |  150 
 testing-i686/initcpio-hook-udev |   22 
 testing-i686/initcpio-install-systemd   |  160 ++
 testing-i686/initcpio-install-udev  |   29 +
 testing-i686/systemd.install|  144 +++
 testing-x86_64/PKGBUILD |  150 
 testing-x86_64/initcpio-hook-udev   |   22 
 testing-x86_64/initcpio-install-systemd |  160 ++
 testing-x86_64/initcpio-install-udev|   29 +
 testing-x86_64/systemd.install  |  144 +++
 10 files changed, 1010 insertions(+)

Copied: systemd/repos/testing-i686/PKGBUILD (from rev 209837, 
systemd/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-05 17:53:46 UTC (rev 209838)
@@ -0,0 +1,150 @@
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgbase=systemd
+pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
+pkgver=212
+pkgrel=2
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/systemd";
+makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gobject-introspection' 'gperf'
+ 'gtk-doc' 'intltool' 'kmod' 'libcap' 'libgcrypt'  'libmicrohttpd' 
'libxslt'
+ 'util-linux' 'linux-api-headers' 'pam' 'python' 'python-lxml' 
'quota-tools' 'xz')
+options=('strip' 'debug')
+source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz";
+'initcpio-hook-udev'
+'initcpio-install-systemd'
+'initcpio-install-udev')
+md5sums=('257a75fff826ff91cb1ce567091cf270'
+ '29245f7a240bfba66e2b1783b63b6b40'
+ '66cca7318e13eaf37c5b7db2efa69846'
+ 'bde43090d4ac0ef048e3eaee8202a407')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+  --libexecdir=/usr/lib \
+  --localstatedir=/var \
+  --sysconfdir=/etc \
+  --enable-introspection \
+  --enable-gtk-doc \
+  --enable-compat-libs \
+  --disable-audit \
+  --disable-ima \
+  --disable-kdbus \
+  --with-sysvinit-path= \
+  --with-sysvrcnd-path= \
+  --with-firmware-path="/usr/lib/firmware/updates:/usr/lib/firmware"
+
+  make
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check || :
+}
+
+package_systemd() {
+  pkgdesc="system and service manager"
+  license=('GPL2' 'LGPL2.1' 'MIT')
+  depends=('acl' 'bash' 'dbus' 'glib2' 'kbd' 'kmod' 'hwids' 'libcap' 
'libgcrypt'
+   'libsystemd' 'pam' 'libseccomp' 'util-linux' 'xz')
+  provides=('nss-myhostname' "systemd-tools=$pkgver" "udev=$pkgver")
+  replaces=('nss-myhostname' 'systemd-tools' 'udev')
+  conflicts=('nss-myhostname' 'systemd-tools' 'udev')
+  optdepends=('python: systemd library bindings'
+  'cryptsetup: required for encrypted block devices'
+  'libmicrohttpd: remote journald capabilities'
+  'quota-tools: kernel-level quota management'
+  'systemd-sysvcompat: symlink package to provide sysvinit 
binaries')
+  backup=(etc/dbus-1/system.d/org.freedesktop.systemd1.conf
+  etc/dbus-1/system.d/org.freedesktop.hostname1.conf
+  etc/dbus-1/system.d/org.freedesktop.login1.conf
+  etc/dbus-1/system.d/org.freedesktop.locale1.conf
+  etc/dbus-1/system.d/org.freedesktop.machine1.conf
+  etc/dbus-1/system.d/org.freedesktop.timedate1.conf
+  etc/pam.d/systemd-user
+  etc/systemd/bootchart.conf
+  etc/systemd/journald.conf
+  etc/systemd/logind.conf
+  etc/systemd/system.co

[arch-commits] Commit in perl-dbd-sqlite/trunk (PKGBUILD)

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 19:53:52
  Author: eric
Revision: 209839

upgpkg: perl-dbd-sqlite 1.42-1

Upstream update

Modified:
  perl-dbd-sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 17:53:46 UTC (rev 209838)
+++ PKGBUILD2014-04-05 17:53:52 UTC (rev 209839)
@@ -2,7 +2,7 @@
 # Maintainer:
 
 pkgname=perl-dbd-sqlite
-pkgver=1.40
+pkgver=1.42
 pkgrel=1
 pkgdesc="Self-contained RDBMS in a DBI driver"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 depends=('perl-dbi' 'sqlite')
 options=('!emptydirs')
 
source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
-md5sums=('b9876882186499583428b14cf5c0e29c')
+md5sums=('86cfaf477cb9ddc39508f74f4268fc79')
 
 build() {
   cd DBD-SQLite-${pkgver}



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

2014-04-05 Thread Dave Reisner
Date: Saturday, April 5, 2014 @ 19:53:07
  Author: dreisner
Revision: 209837

upgpkg: systemd 212-2

- add gpt generator to initramfs
- fix runtime dep on util-linux

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 17:16:44 UTC (rev 209836)
+++ PKGBUILD2014-04-05 17:53:07 UTC (rev 209837)
@@ -4,7 +4,7 @@
 pkgbase=systemd
 pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
 pkgver=212
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url="http://www.freedesktop.org/wiki/Software/systemd";
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gobject-introspection' 'gperf'
@@ -17,7 +17,7 @@
 'initcpio-install-udev')
 md5sums=('257a75fff826ff91cb1ce567091cf270'
  '29245f7a240bfba66e2b1783b63b6b40'
- '5e04f468a13ae2b9d6a9dfc77c49a7d1'
+ '66cca7318e13eaf37c5b7db2efa69846'
  'bde43090d4ac0ef048e3eaee8202a407')
 
 build() {



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

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 19:08:21
  Author: eric
Revision: 108865

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 108864, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-05 17:06:24 UTC (rev 108864)
+++ PKGBUILD2014-04-05 17:08:21 UTC (rev 108865)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=youtube-dl
-pkgver=2014.04.01.3
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/";
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
-
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('7b44d554e80799f5872f768cb58f9a5b08307d1b'
-  'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
-"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 108864, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-05 17:08:21 UTC (rev 108865)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=youtube-dl
+pkgver=2014.04.04.7
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/";
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
+
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
+sha1sums=('5f1b62eb5760fe98c0430033db83bb090f5ee9ad'
+  'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+"${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2014-04-05 Thread Eric Bélanger
Date: Saturday, April 5, 2014 @ 19:06:24
  Author: eric
Revision: 108864

upgpkg: youtube-dl 2014.04.04.7-1

Upstream update

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 16:08:43 UTC (rev 108863)
+++ PKGBUILD2014-04-05 17:06:24 UTC (rev 108864)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=youtube-dl
-pkgver=2014.04.01.3
+pkgver=2014.04.04.7
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -12,7 +12,7 @@
 optdepends=('ffmpeg: for video post-processing')
 source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz
 
http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz.sig)
-sha1sums=('7b44d554e80799f5872f768cb58f9a5b08307d1b'
+sha1sums=('5f1b62eb5760fe98c0430033db83bb090f5ee9ad'
   'SKIP')
 
 prepare() {



[arch-commits] Commit in pacman-mirrorlist/repos/core-any (4 files)

2014-04-05 Thread Dan McGee
Date: Saturday, April 5, 2014 @ 18:23:43
  Author: dan
Revision: 209835

archrelease: copy trunk to core-any

Added:
  pacman-mirrorlist/repos/core-any/PKGBUILD
(from rev 209834, pacman-mirrorlist/trunk/PKGBUILD)
  pacman-mirrorlist/repos/core-any/mirrorlist
(from rev 209834, pacman-mirrorlist/trunk/mirrorlist)
Deleted:
  pacman-mirrorlist/repos/core-any/PKGBUILD
  pacman-mirrorlist/repos/core-any/mirrorlist

+
 PKGBUILD   |   62 +++---
 mirrorlist |  559 +--
 2 files changed, 308 insertions(+), 313 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-04-05 16:23:28 UTC (rev 209834)
+++ PKGBUILD2014-04-05 16:23:43 UTC (rev 209835)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Dan McGee 
-
-pkgname=pacman-mirrorlist
-pkgver=20140107
-pkgrel=1
-pkgdesc="Arch Linux mirror list for use by pacman"
-arch=('any')
-url="http://www.archlinux.org/mirrorlist/";
-license=('GPL')
-backup=(etc/pacman.d/mirrorlist)
-source=(mirrorlist)
-
-# NOTE on building this package:
-# * Go to the trunk/ directory
-# * Run bash -c ". PKGBUILD; updatelist"
-# * Update the checksums, update pkgver
-# * Build the package
-
-updatelist() {
-  rm -f mirrorlist
-  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/http/
-}
-
-package() {
-  mkdir -p $pkgdir/etc/pacman.d
-  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
-}
-
-md5sums=('cf97e2db253052a110e16c8427755ac4')
-sha256sums=('438e1ddee0b88d0b5adbe07fb264ee474adfe170e7537b0aea735c420b2bf6f2')

Copied: pacman-mirrorlist/repos/core-any/PKGBUILD (from rev 209834, 
pacman-mirrorlist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-04-05 16:23:43 UTC (rev 209835)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Dan McGee 
+
+pkgname=pacman-mirrorlist
+pkgver=20140405
+pkgrel=1
+pkgdesc="Arch Linux mirror list for use by pacman"
+arch=('any')
+url="http://www.archlinux.org/mirrorlist/";
+license=('GPL')
+backup=(etc/pacman.d/mirrorlist)
+source=(mirrorlist)
+
+# NOTE on building this package:
+# * Go to the trunk/ directory
+# * Run bash -c ". PKGBUILD; updatelist"
+# * Update the checksums, update pkgver
+# * Build the package
+
+updatelist() {
+  rm -f mirrorlist
+  wget -O mirrorlist https://www.archlinux.org/mirrorlist/all/http/
+}
+
+package() {
+  mkdir -p $pkgdir/etc/pacman.d
+  install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
+}
+
+md5sums=('e838c91ab98a5c76f09abe8ade4cc431')
+sha256sums=('33bc5e22994f5cf7e307e7f7b94da38a7f1a030337759612d410f1e14574c65e')

Deleted: mirrorlist
===
--- mirrorlist  2014-04-05 16:23:28 UTC (rev 209834)
+++ mirrorlist  2014-04-05 16:23:43 UTC (rev 209835)
@@ -1,282 +0,0 @@
-##
-## Arch Linux repository mirrorlist
-## Generated on 2014-01-08
-##
-
-## Australia
-#Server = http://mirror.aarnet.edu.au/pub/archlinux/$repo/os/$arch
-#Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.optus.net/archlinux/$repo/os/$arch
-#Server = http://mirror.rackcentral.com.au/archlinux/$repo/os/$arch
-#Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
-#Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.uber.com.au/$repo/os/$arch
-
-## Austria
-#Server = http://mirror1.htu.tugraz.at/archlinux/$repo/os/$arch
-
-## Bangladesh
-#Server = http://mirrors.ispros.com.bd/archlinux/$repo/os/$arch
-
-## Belarus
-#Server = http://ftp.byfly.by/pub/archlinux/$repo/os/$arch
-#Server = http://mirror.datacenter.by/pub/archlinux/$repo/os/$arch
-
-## Belgium
-#Server = http://archlinux.cu.be/$repo/os/$arch
-#Server = http://archlinux.mirror.kangaroot.net/$repo/os/$arch
-
-## Brazil
-#Server = http://archlinux.c3sl.ufpr.br/$repo/os/$arch
-#Server = http://www.las.ic.unicamp.br/pub/archlinux/$repo/os/$arch
-#Server = http://pet.inf.ufsc.br/mirrors/archlinux/$repo/os/$arch
-
-## Bulgaria
-#Server = http://archlinux.igor.onlinedirect.bg/$repo/os/$arch
-
-## Canada
-#Server = http://archlinux.dropswitch.net/archlinux/$repo/os/$arch
-#Server = http://mirror.clibre.uqam.ca/archlinux/$repo/os/$arch
-#Server = http://mirror.csclub.uwaterloo.ca/archlinux/$repo/os/$arch
-#Server = http://mirror.its.dal.ca/archlinux/$repo/os/$arch
-#Server = http://archlinux.mirror.rafal.ca/$repo/os/$arch
-#Server = http://archlinux.mirror.vexxhost.com/$repo/os/$arch
-
-## Chile
-#Server = http://mirror.archlinux.cl/$repo/os/$arch
-
-## China
-#Server = http://mirrors.163.com/archlinux/$repo/os/$arch
-#Server = http://mirror.bjtu.edu.cn/archlinux/$repo/os/$arch
-#Server = http://mirrors.hus

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

2014-04-05 Thread Dan McGee
Date: Saturday, April 5, 2014 @ 18:23:28
  Author: dan
Revision: 209834

upgpkg: pacman-mirrorlist 20140405-1

Modified:
  pacman-mirrorlist/trunk/PKGBUILD
  pacman-mirrorlist/trunk/mirrorlist

+
 PKGBUILD   |6 +++---
 mirrorlist |   19 +++
 2 files changed, 10 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 14:24:34 UTC (rev 209833)
+++ PKGBUILD2014-04-05 16:23:28 UTC (rev 209834)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee 
 
 pkgname=pacman-mirrorlist
-pkgver=20140107
+pkgver=20140405
 pkgrel=1
 pkgdesc="Arch Linux mirror list for use by pacman"
 arch=('any')
@@ -27,5 +27,5 @@
   install -m644 $srcdir/mirrorlist $pkgdir/etc/pacman.d/
 }
 
-md5sums=('cf97e2db253052a110e16c8427755ac4')
-sha256sums=('438e1ddee0b88d0b5adbe07fb264ee474adfe170e7537b0aea735c420b2bf6f2')
+md5sums=('e838c91ab98a5c76f09abe8ade4cc431')
+sha256sums=('33bc5e22994f5cf7e307e7f7b94da38a7f1a030337759612d410f1e14574c65e')

Modified: mirrorlist
===
--- mirrorlist  2014-04-05 14:24:34 UTC (rev 209833)
+++ mirrorlist  2014-04-05 16:23:28 UTC (rev 209834)
@@ -1,6 +1,6 @@
 ##
 ## Arch Linux repository mirrorlist
-## Generated on 2014-01-08
+## Generated on 2014-04-05
 ##
 
 ## Australia
@@ -8,7 +8,6 @@
 #Server = http://ftp.iinet.net.au/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.internode.on.net/pub/archlinux/$repo/os/$arch
 #Server = http://mirror.optus.net/archlinux/$repo/os/$arch
-#Server = http://mirror.rackcentral.com.au/archlinux/$repo/os/$arch
 #Server = http://syd.mirror.rackspace.com/archlinux/$repo/os/$arch
 #Server = http://ftp.swin.edu.au/archlinux/$repo/os/$arch
 #Server = http://archlinux.mirror.uber.com.au/$repo/os/$arch
@@ -76,8 +75,8 @@
 #Server = http://mirror.archlinux.ikoula.com/archlinux/$repo/os/$arch
 #Server = http://archlinux.vi-di.fr/$repo/os/$arch
 #Server = http://mirror.bpiotrowski.pl/archlinux/$repo/os/$arch
-#Server = 
http://distrib-coffee.ipsl.jussieu.fr/pub/linux/archlinux/$repo/os/$arch
 #Server = http://mir.archlinux.fr/$repo/os/$arch
+#Server = http://arch.nimukaito.net/$repo/os/$arch
 #Server = http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch
 #Server = http://archlinux.polymorf.fr/$repo/os/$arch
 #Server = http://mirror.solusipse.net/archlinux/$repo/os/$arch
@@ -84,7 +83,6 @@
 #Server = http://arch.tamcore.eu/$repo/os/$arch
 
 ## Germany
-#Server = http://mirror.1favre.de/$repo/os/$arch
 #Server = http://archlinux.limun.org/$repo/os/$arch
 #Server = http://artfiles.org/archlinux.org/$repo/os/$arch
 #Server = http://mirror.fluxent.de/archlinux/$repo/os/$arch
@@ -101,7 +99,6 @@
 #Server = http://linux.rz.rub.de/archlinux/$repo/os/$arch
 #Server = http://mirror.selfnet.de/archlinux/$repo/os/$arch
 #Server = http://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/$repo/os/$arch
-#Server = http://truefunny.com/m/archlinux/$repo/os/$arch
 #Server = http://ftp.tu-chemnitz.de/pub/linux/archlinux/$repo/os/$arch
 #Server = http://ftp.tuxdroid.org/archlinux/$repo/os/$arch
 #Server = http://ftp.uni-bayreuth.de/linux/archlinux/$repo/os/$arch
@@ -129,7 +126,7 @@
 ## Indonesia
 #Server = http://suro.ubaya.ac.id/archlinux/$repo/os/$arch
 
-## Iran, Islamic Republic of
+## Iran (the Islamic Republic of)
 #Server = http://mirror.yazd.ac.ir/arch/$repo/os/$arch
 
 ## Ireland
@@ -149,17 +146,14 @@
 ## Kazakhstan
 #Server = http://mirror.neolabs.kz/archlinux/$repo/os/$arch
 
-## Korea, Republic of
+## Korea (the Republic of)
 #Server = http://ftp.kaist.ac.kr/ArchLinux/$repo/os/$arch
 #Server = http://mirror.premi.st/archlinux/$repo/os/$arch
 
-## Latvia
-#Server = http://archlinux.goodsoft.lv/$repo/os/$arch
-
 ## Luxembourg
 #Server = http://archlinux.mirror.root.lu/$repo/os/$arch
 
-## Macedonia, The Former Yugoslav Republic of
+## Macedonia (the former Yugoslav Republic of)
 #Server = http://arch.linux.net.mk/archlinux/$repo/os/$arch
 
 ## Netherlands
@@ -201,6 +195,7 @@
 #Server = http://mirror.pmf.kg.ac.rs/archlinux/$repo/os/$arch
 
 ## Singapore
+#Server = http://download.nus.edu.sg/mirror/arch/$repo/os/$arch
 #Server = http://mirror.nus.edu.sg/archlinux/$repo/os/$arch
 
 ## Slovakia
@@ -226,7 +221,7 @@
 ## Switzerland
 #Server = http://archlinux.puzzle.ch/$repo/os/$arch
 
-## Taiwan, Province of China
+## Taiwan (Province of China)
 #Server = http://archlinux.cs.nctu.edu.tw/$repo/os/$arch
 #Server = http://ftp.tku.edu.tw/Linux/ArchLinux/$repo/os/$arch
 



[arch-commits] Commit in libvdpau-va-gl/trunk (PKGBUILD)

2014-04-05 Thread Bartłomiej Piotrowski
Date: Saturday, April 5, 2014 @ 18:08:32
  Author: bpiotrowski
Revision: 108862

upgpkg: libvdpau-va-gl 0.3.4-1

new upstream release

Modified:
  libvdpau-va-gl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 13:39:12 UTC (rev 108861)
+++ PKGBUILD2014-04-05 16:08:32 UTC (rev 108862)
@@ -3,7 +3,7 @@
 # Contributor: Behem0th 
 
 pkgname=libvdpau-va-gl
-pkgver=0.3.3
+pkgver=0.3.4
 pkgrel=1
 pkgdesc='VDPAU driver with OpenGL/VAAPI backend'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('libvdpau' 'libva' 'libgl' 'ffmpeg' 'glu')
 makedepends=('cmake')
 source=($url/archive/v$pkgver.tar.gz)
-md5sums=('bb999d94c3e8116ef05a431a7e775c00')
+md5sums=('09ceb2f75eafccc9b002d35ede0de6a5')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in libvdpau-va-gl/repos (4 files)

2014-04-05 Thread Bartłomiej Piotrowski
Date: Saturday, April 5, 2014 @ 18:08:43
  Author: bpiotrowski
Revision: 108863

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

Added:
  libvdpau-va-gl/repos/community-i686/PKGBUILD
(from rev 108862, libvdpau-va-gl/trunk/PKGBUILD)
  libvdpau-va-gl/repos/community-x86_64/PKGBUILD
(from rev 108862, libvdpau-va-gl/trunk/PKGBUILD)
Deleted:
  libvdpau-va-gl/repos/community-i686/PKGBUILD
  libvdpau-va-gl/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 16:08:32 UTC (rev 108862)
+++ community-i686/PKGBUILD 2014-04-05 16:08:43 UTC (rev 108863)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Behem0th 
-
-pkgname=libvdpau-va-gl
-pkgver=0.3.3
-pkgrel=1
-pkgdesc='VDPAU driver with OpenGL/VAAPI backend'
-arch=('i686' 'x86_64')
-url='https://github.com/i-rinat/libvdpau-va-gl'
-license=('LGPL3')
-depends=('libvdpau' 'libva' 'libgl' 'ffmpeg' 'glu')
-makedepends=('cmake')
-source=($url/archive/v$pkgver.tar.gz)
-md5sums=('bb999d94c3e8116ef05a431a7e775c00')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: libvdpau-va-gl/repos/community-i686/PKGBUILD (from rev 108862, 
libvdpau-va-gl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 16:08:43 UTC (rev 108863)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Behem0th 
+
+pkgname=libvdpau-va-gl
+pkgver=0.3.4
+pkgrel=1
+pkgdesc='VDPAU driver with OpenGL/VAAPI backend'
+arch=('i686' 'x86_64')
+url='https://github.com/i-rinat/libvdpau-va-gl'
+license=('LGPL3')
+depends=('libvdpau' 'libva' 'libgl' 'ffmpeg' 'glu')
+makedepends=('cmake')
+source=($url/archive/v$pkgver.tar.gz)
+md5sums=('09ceb2f75eafccc9b002d35ede0de6a5')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-05 16:08:32 UTC (rev 108862)
+++ community-x86_64/PKGBUILD   2014-04-05 16:08:43 UTC (rev 108863)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Behem0th 
-
-pkgname=libvdpau-va-gl
-pkgver=0.3.3
-pkgrel=1
-pkgdesc='VDPAU driver with OpenGL/VAAPI backend'
-arch=('i686' 'x86_64')
-url='https://github.com/i-rinat/libvdpau-va-gl'
-license=('LGPL3')
-depends=('libvdpau' 'libva' 'libgl' 'ffmpeg' 'glu')
-makedepends=('cmake')
-source=($url/archive/v$pkgver.tar.gz)
-md5sums=('bb999d94c3e8116ef05a431a7e775c00')
-
-build() {
-  cd $pkgname-$pkgver
-  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: libvdpau-va-gl/repos/community-x86_64/PKGBUILD (from rev 108862, 
libvdpau-va-gl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 16:08:43 UTC (rev 108863)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Behem0th 
+
+pkgname=libvdpau-va-gl
+pkgver=0.3.4
+pkgrel=1
+pkgdesc='VDPAU driver with OpenGL/VAAPI backend'
+arch=('i686' 'x86_64')
+url='https://github.com/i-rinat/libvdpau-va-gl'
+license=('LGPL3')
+depends=('libvdpau' 'libva' 'libgl' 'ffmpeg' 'glu')
+makedepends=('cmake')
+source=($url/archive/v$pkgver.tar.gz)
+md5sums=('09ceb2f75eafccc9b002d35ede0de6a5')
+
+build() {
+  cd $pkgname-$pkgver
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in chromium/repos (14 files)

2014-04-05 Thread Evangelos Foutras
Date: Saturday, April 5, 2014 @ 16:24:34
  Author: foutrelis
Revision: 209833

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

Added:
  chromium/repos/staging-i686/
  chromium/repos/staging-i686/PKGBUILD
(from rev 209832, chromium/trunk/PKGBUILD)
  chromium/repos/staging-i686/chromium-gn-r0.patch
(from rev 209832, chromium/trunk/chromium-gn-r0.patch)
  chromium/repos/staging-i686/chromium.default
(from rev 209832, chromium/trunk/chromium.default)
  chromium/repos/staging-i686/chromium.desktop
(from rev 209832, chromium/trunk/chromium.desktop)
  chromium/repos/staging-i686/chromium.install
(from rev 209832, chromium/trunk/chromium.install)
  chromium/repos/staging-i686/chromium.sh
(from rev 209832, chromium/trunk/chromium.sh)
  chromium/repos/staging-x86_64/
  chromium/repos/staging-x86_64/PKGBUILD
(from rev 209832, chromium/trunk/PKGBUILD)
  chromium/repos/staging-x86_64/chromium-gn-r0.patch
(from rev 209832, chromium/trunk/chromium-gn-r0.patch)
  chromium/repos/staging-x86_64/chromium.default
(from rev 209832, chromium/trunk/chromium.default)
  chromium/repos/staging-x86_64/chromium.desktop
(from rev 209832, chromium/trunk/chromium.desktop)
  chromium/repos/staging-x86_64/chromium.install
(from rev 209832, chromium/trunk/chromium.install)
  chromium/repos/staging-x86_64/chromium.sh
(from rev 209832, chromium/trunk/chromium.sh)

-+
 staging-i686/PKGBUILD   |  182 ++
 staging-i686/chromium-gn-r0.patch   |   12 ++
 staging-i686/chromium.default   |4 
 staging-i686/chromium.desktop   |  113 +
 staging-i686/chromium.install   |   12 ++
 staging-i686/chromium.sh|   16 ++
 staging-x86_64/PKGBUILD |  182 ++
 staging-x86_64/chromium-gn-r0.patch |   12 ++
 staging-x86_64/chromium.default |4 
 staging-x86_64/chromium.desktop |  113 +
 staging-x86_64/chromium.install |   12 ++
 staging-x86_64/chromium.sh  |   16 ++
 12 files changed, 678 insertions(+)

Copied: chromium/repos/staging-i686/PKGBUILD (from rev 209832, 
chromium/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-05 14:24:34 UTC (rev 209833)
@@ -0,0 +1,182 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Pierre Schmitz 
+# Contributor: Jan "heftig" Steffens 
+# Contributor: Daniel J Griffiths 
+
+pkgname=chromium
+pkgver=33.0.1750.152
+_toolchains_rev=12526
+pkgrel=2
+pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
+arch=('i686' 'x86_64')
+url="http://www.chromium.org/";
+license=('BSD')
+depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss' 'icu'
+ 'libgcrypt' 'ttf-font' 'systemd' 'dbus' 'flac' 'opus' 'snappy'
+ 'speech-dispatcher' 'pciutils' 'libpulse' 'harfbuzz' 'harfbuzz-icu'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
+ 'elfutils' 'subversion')
+[[ $CARCH = x86_64 ]] && makedepends+=('lib32-gcc-libs' 'lib32-zlib')
+optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
+'gnome-keyring: for storing passwords in GNOME keyring'
+'libgnome-keyring: for storing passwords in GNOME keyring'
+'kdeutils-kwallet: for storing passwords in KWallet')
+backup=('etc/chromium/default')
+options=('!strip')
+install=chromium.install
+source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
+
naclsdk_nacl_linux_x86-$_toolchains_rev.tgz::https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain/$_toolchains_rev/naclsdk_linux_x86.tgz
+
naclsdk_pnacl_linux_x86-$_toolchains_rev.tgz::https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain/$_toolchains_rev/naclsdk_pnacl_linux_x86.tgz
+
naclsdk_pnacl_translator-$_toolchains_rev.tgz::https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain/$_toolchains_rev/naclsdk_pnacl_translator.tgz
+
naclsdk_pnacl_translator-$_toolchains_rev.tgz.sha1hash::https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain/$_toolchains_rev/naclsdk_pnacl_translator.tgz.sha1hash
+chromium.desktop
+chromium.default
+chromium-gn-r0.patch
+chromium.sh)
+noextract=(naclsdk_nacl_linux_x86-$_toolchains_rev.tgz
+   naclsdk_pnacl_linux_x86-$_toolchains_rev.tgz
+   naclsdk_pnacl_translator-$_toolchains_rev.tgz)
+sha256sums=('9fd462840bee3ae205b0548e8a483f7589beecdb7c6309d4d65425cbf710cc2f'
+'4bc956815bd45a82ed7c3b623d0ffb55fcc6c6af55828a0bf1560733def68e8d'
+'3ae77302adf775f2d513e7d9cb730cbe3e42d515002

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

2014-04-05 Thread Maxime Gauduin
Date: Saturday, April 5, 2014 @ 15:39:12
  Author: alucryd
Revision: 108861

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

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

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 78 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 13:39:02 UTC (rev 108860)
+++ community-i686/PKGBUILD 2014-04-05 13:39:12 UTC (rev 108861)
@@ -1,32 +0,0 @@
-# $Id$$
-# Maintainer: Maxime Gauduin 
-
-pkgname=ffms2
-pkgver=2.19
-pkgrel=2
-pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy 
frame accurate access'
-arch=('i686' 'x86_64')
-url='https://github.com/FFMS/ffms2'
-license=('GPL')
-depends=('ffmpeg')
-provides=('vapoursynth-plugin-ffms2')
-source=("https://github.com/FFMS/ffms2/archive/${pkgver}.tar.gz";)
-sha256sums=('6f1379514f03a14092fdfc9941960a9b86f5b78d86f9e000eeddf3bf50d42811')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/lib/vapoursynth
-  ln -s ../libffms2.so "${pkgdir}"/usr/lib/vapoursynth/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffms2/repos/community-i686/PKGBUILD (from rev 108860, 
ffms2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 13:39:12 UTC (rev 108861)
@@ -0,0 +1,39 @@
+# $Id$$
+# Maintainer: Maxime Gauduin 
+
+pkgname=ffms2
+pkgver=2.19.r81.047b479
+pkgrel=1
+pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy 
frame accurate access'
+arch=('i686' 'x86_64')
+url='https://github.com/FFMS/ffms2'
+license=('GPL')
+depends=('ffmpeg')
+makedepends=('git')
+provides=('vapoursynth-plugin-ffms2')
+source=("git+https://github.com/FFMS/ffms2.git";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+
+  printf "%s" "$(git describe --tags | sed 's/-/.r/; s/-g/./')"
+}
+
+build() {
+  cd ${pkgname}
+
+  ./autogen.sh --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
+  make
+}
+
+package() {
+  cd ${pkgname}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 "${pkgdir}"/usr/lib/vapoursynth
+  ln -s ../libffms2.so "${pkgdir}"/usr/lib/vapoursynth/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-05 13:39:02 UTC (rev 108860)
+++ community-x86_64/PKGBUILD   2014-04-05 13:39:12 UTC (rev 108861)
@@ -1,32 +0,0 @@
-# $Id$$
-# Maintainer: Maxime Gauduin 
-
-pkgname=ffms2
-pkgver=2.19
-pkgrel=2
-pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy 
frame accurate access'
-arch=('i686' 'x86_64')
-url='https://github.com/FFMS/ffms2'
-license=('GPL')
-depends=('ffmpeg')
-provides=('vapoursynth-plugin-ffms2')
-source=("https://github.com/FFMS/ffms2/archive/${pkgver}.tar.gz";)
-sha256sums=('6f1379514f03a14092fdfc9941960a9b86f5b78d86f9e000eeddf3bf50d42811')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/lib/vapoursynth
-  ln -s ../libffms2.so "${pkgdir}"/usr/lib/vapoursynth/
-}
-
-# vim: ts=2 sw=2 et:

Copied: ffms2/repos/community-x86_64/PKGBUILD (from rev 108860, 
ffms2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 13:39:12 UTC (rev 108861)
@@ -0,0 +1,39 @@
+# $Id$$
+# Maintainer: Maxime Gauduin 
+
+pkgname=ffms2
+pkgver=2.19.r81.047b479
+pkgrel=1
+pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy 
frame accurate access'
+arch=('i686' 'x86_64')
+url='https://github.com/FFMS/ffms2'
+license=('GPL')
+depends=('ffmpeg')
+makedepends=('git')
+provides=('vapoursynth-plugin-ffms2')
+source=("git+https://github.com/FFMS/ffms2.git";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ${pkgname}
+
+  printf "%s" "$(git describe --tags | sed 's/-/.r/; s/-g/./')"
+}
+
+build() {
+  cd ${pkgname}
+
+  ./autogen.sh --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
+  make
+}
+
+package() {
+  cd ${pkgname}
+
+  make DESTDIR="${pk

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

2014-04-05 Thread Maxime Gauduin
Date: Saturday, April 5, 2014 @ 15:39:02
  Author: alucryd
Revision: 108860

FS#39735: ffms2 2.19.r81.047b479-1

Modified:
  ffms2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 12:42:40 UTC (rev 108859)
+++ PKGBUILD2014-04-05 13:39:02 UTC (rev 108860)
@@ -2,26 +2,33 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=ffms2
-pkgver=2.19
-pkgrel=2
+pkgver=2.19.r81.047b479
+pkgrel=1
 pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy 
frame accurate access'
 arch=('i686' 'x86_64')
 url='https://github.com/FFMS/ffms2'
 license=('GPL')
 depends=('ffmpeg')
+makedepends=('git')
 provides=('vapoursynth-plugin-ffms2')
-source=("https://github.com/FFMS/ffms2/archive/${pkgver}.tar.gz";)
-sha256sums=('6f1379514f03a14092fdfc9941960a9b86f5b78d86f9e000eeddf3bf50d42811')
+source=("git+https://github.com/FFMS/ffms2.git";)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd ${pkgname}
+
+  printf "%s" "$(git describe --tags | sed 's/-/.r/; s/-g/./')"
+}
+
 build() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}
 
-  ./configure --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
+  ./autogen.sh --prefix='/usr' --enable-shared --disable-static 
--enable-avresample
   make
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}
 
   make DESTDIR="${pkgdir}" install
 



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

2014-04-05 Thread Andrea Scarpino
Date: Saturday, April 5, 2014 @ 15:13:14
  Author: andrea
Revision: 209832

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

Added:
  calligra/repos/staging-i686/
  calligra/repos/staging-i686/PKGBUILD
(from rev 209831, calligra/trunk/PKGBUILD)
  calligra/repos/staging-i686/calligra-braindump.install
(from rev 209831, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-i686/calligra-extras.install
(from rev 209831, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-i686/calligra-filters.install
(from rev 209831, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-i686/calligra-flow.install
(from rev 209831, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-i686/calligra-karbon.install
(from rev 209831, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-i686/calligra-kexi.install
(from rev 209831, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-i686/calligra-krita.install
(from rev 209831, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-i686/calligra-plan.install
(from rev 209831, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-i686/calligra-plugins.install
(from rev 209831, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-i686/calligra-sheets.install
(from rev 209831, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-i686/calligra-stage.install
(from rev 209831, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-i686/calligra-words.install
(from rev 209831, calligra/trunk/calligra-words.install)
  calligra/repos/staging-i686/calligra.install
(from rev 209831, calligra/trunk/calligra.install)
  calligra/repos/staging-x86_64/
  calligra/repos/staging-x86_64/PKGBUILD
(from rev 209831, calligra/trunk/PKGBUILD)
  calligra/repos/staging-x86_64/calligra-braindump.install
(from rev 209831, calligra/trunk/calligra-braindump.install)
  calligra/repos/staging-x86_64/calligra-extras.install
(from rev 209831, calligra/trunk/calligra-extras.install)
  calligra/repos/staging-x86_64/calligra-filters.install
(from rev 209831, calligra/trunk/calligra-filters.install)
  calligra/repos/staging-x86_64/calligra-flow.install
(from rev 209831, calligra/trunk/calligra-flow.install)
  calligra/repos/staging-x86_64/calligra-karbon.install
(from rev 209831, calligra/trunk/calligra-karbon.install)
  calligra/repos/staging-x86_64/calligra-kexi.install
(from rev 209831, calligra/trunk/calligra-kexi.install)
  calligra/repos/staging-x86_64/calligra-krita.install
(from rev 209831, calligra/trunk/calligra-krita.install)
  calligra/repos/staging-x86_64/calligra-plan.install
(from rev 209831, calligra/trunk/calligra-plan.install)
  calligra/repos/staging-x86_64/calligra-plugins.install
(from rev 209831, calligra/trunk/calligra-plugins.install)
  calligra/repos/staging-x86_64/calligra-sheets.install
(from rev 209831, calligra/trunk/calligra-sheets.install)
  calligra/repos/staging-x86_64/calligra-stage.install
(from rev 209831, calligra/trunk/calligra-stage.install)
  calligra/repos/staging-x86_64/calligra-words.install
(from rev 209831, calligra/trunk/calligra-words.install)
  calligra/repos/staging-x86_64/calligra.install
(from rev 209831, calligra/trunk/calligra.install)

---+
 staging-i686/PKGBUILD |  253 
 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/PKGBUILD   |  253 
 staging-x86_64/calligra-braindump.install |   12 +
 staging-x86_64/calligra-extras.install|   11 +
 staging-x86_64/calligra-filters.install   |   12 +
 staging-x86_64/calligra-flow.install  |   12 +
 staging-x86_64/calligra-karbon.install|   12 +
 staging-x86_64/calligra-kexi.install  |   12 +
 staging-x86_64/calligra-krita.install |   13 +
 staging-x86_64/calligra-plan.install  |   12 +
 staging-x86_64/calligra-plugins.install   |   11 +
 staging-x86_64/calligra-sheets.install|   12 +
 staging-x86_64/calligra-stage.install |   12 +
 staging-x86_64/calligra-words.install |   12 +
 staging-x86_64/calligra.install   |   11 +
 28 files changed, 814 insertions(+)

Copied: calligra/repos/st

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

2014-04-05 Thread Andrea Scarpino
Date: Saturday, April 5, 2014 @ 15:12:45
  Author: andrea
Revision: 209831

upgpkg: calligra 2.8.1-2

icu rebuild

Modified:
  calligra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 13:08:47 UTC (rev 209830)
+++ PKGBUILD2014-04-05 13:12:45 UTC (rev 209831)
@@ -19,7 +19,7 @@
  'calligra-stage'
  'calligra-words')
 pkgver=2.8.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://www.calligra-suite.org/'
 license=('FDL1.2' 'GPL2' 'LGPL')



[arch-commits] Commit in xf86-video-intel/repos (12 files)

2014-04-05 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 15:08:47
  Author: lcarlier
Revision: 209830

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

Added:
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 209829, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/sna-avoid-discarding-damage.patch
(from rev 209829, xf86-video-intel/trunk/sna-avoid-discarding-damage.patch)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 209829, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 209829, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/sna-avoid-discarding-damage.patch
(from rev 209829, xf86-video-intel/trunk/sna-avoid-discarding-damage.patch)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 209829, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/testing-i686/PKGBUILD
  xf86-video-intel/repos/testing-i686/sna-avoid-discarding-damage.patch
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
  xf86-video-intel/repos/testing-x86_64/sna-avoid-discarding-damage.patch
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install

--+
 /PKGBUILD|  114 +++
 /sna-avoid-discarding-damage.patch   |  206 +
 /xf86-video-intel.install|   44 
 testing-i686/PKGBUILD|   57 -
 testing-i686/sna-avoid-discarding-damage.patch   |  103 --
 testing-i686/xf86-video-intel.install|   22 --
 testing-x86_64/PKGBUILD  |   57 -
 testing-x86_64/sna-avoid-discarding-damage.patch |  103 --
 testing-x86_64/xf86-video-intel.install  |   22 --
 9 files changed, 364 insertions(+), 364 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2014-04-05 13:08:34 UTC (rev 209829)
+++ testing-i686/PKGBUILD   2014-04-05 13:08:47 UTC (rev 209830)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-# Maintainer: Jan de Groot 
-
-pkgname=xf86-video-intel
-pkgver=2.99.911
-pkgrel=1
-arch=(i686 x86_64)
-url="http://xorg.freedesktop.org/";
-license=('custom')
-install=$pkgname.install
-pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9' 'glamor-egl')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15' 'libx11' 
'libxrender'
- # additional deps for intel-virtual-output
-'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
-optdepends=('libxrandr: for intel-virtual-output'
-'libxinerama: for intel-virtual-output'
-'libxcursor: for intel-virtual-output'
-'libxtst: for intel-virtual-output')
-replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
-conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 
'X-ABI-VIDEODRV_VERSION>=16'
-   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
-sna-avoid-discarding-damage.patch)
-sha256sums=('4e7a68491bcc4d49912c5ec3ee688badce3f929ce1b7618ede9d8001827270d6'
-'122637d66a70d40b098b0bb732000c8227ea1dd155af0c71f605f87934822dcb')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # Fix FS#39747 (merged upstream)
-  patch -Np1 -i ../sna-avoid-discarding-damage.patch
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---libexecdir=/usr/lib \
---enable-glamor
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 209829, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-05 13:08:47 UTC (rev 209830)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.911
+pkgrel=2
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9' 'glamor-egl')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-outp

[arch-commits] Commit in xf86-video-intel/trunk (PKGBUILD)

2014-04-05 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 15:08:34
  Author: lcarlier
Revision: 209829

upgpkg: xf86-video-intel 2.99.911-2

Fix corruption in firefox with SNA (FS#39747)

Modified:
  xf86-video-intel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 13:04:19 UTC (rev 209828)
+++ PKGBUILD2014-04-05 13:08:34 UTC (rev 209829)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.99.911
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url="http://xorg.freedesktop.org/";
 license=('custom')



[arch-commits] Commit in xf86-video-intel/repos (8 files)

2014-04-05 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 15:04:19
  Author: lcarlier
Revision: 209828

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

Added:
  xf86-video-intel/repos/testing-i686/
  xf86-video-intel/repos/testing-i686/PKGBUILD
(from rev 209827, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-i686/sna-avoid-discarding-damage.patch
(from rev 209827, xf86-video-intel/trunk/sna-avoid-discarding-damage.patch)
  xf86-video-intel/repos/testing-i686/xf86-video-intel.install
(from rev 209827, xf86-video-intel/trunk/xf86-video-intel.install)
  xf86-video-intel/repos/testing-x86_64/
  xf86-video-intel/repos/testing-x86_64/PKGBUILD
(from rev 209827, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/testing-x86_64/sna-avoid-discarding-damage.patch
(from rev 209827, xf86-video-intel/trunk/sna-avoid-discarding-damage.patch)
  xf86-video-intel/repos/testing-x86_64/xf86-video-intel.install
(from rev 209827, xf86-video-intel/trunk/xf86-video-intel.install)

--+
 testing-i686/PKGBUILD|   57 +++
 testing-i686/sna-avoid-discarding-damage.patch   |  103 +
 testing-i686/xf86-video-intel.install|   22 
 testing-x86_64/PKGBUILD  |   57 +++
 testing-x86_64/sna-avoid-discarding-damage.patch |  103 +
 testing-x86_64/xf86-video-intel.install  |   22 
 6 files changed, 364 insertions(+)

Copied: xf86-video-intel/repos/testing-i686/PKGBUILD (from rev 209827, 
xf86-video-intel/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-04-05 13:04:19 UTC (rev 209828)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Maintainer: Jan de Groot 
+
+pkgname=xf86-video-intel
+pkgver=2.99.911
+pkgrel=1
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/";
+license=('custom')
+install=$pkgname.install
+pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
+depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9' 'glamor-egl')
+makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15' 'libx11' 
'libxrender'
+ # additional deps for intel-virtual-output
+'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
+optdepends=('libxrandr: for intel-virtual-output'
+'libxinerama: for intel-virtual-output'
+'libxcursor: for intel-virtual-output'
+'libxtst: for intel-virtual-output')
+replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
+conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 
'X-ABI-VIDEODRV_VERSION>=16'
+   'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+sna-avoid-discarding-damage.patch)
+sha256sums=('4e7a68491bcc4d49912c5ec3ee688badce3f929ce1b7618ede9d8001827270d6'
+'122637d66a70d40b098b0bb732000c8227ea1dd155af0c71f605f87934822dcb')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # Fix FS#39747 (merged upstream)
+  patch -Np1 -i ../sna-avoid-discarding-damage.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--libexecdir=/usr/lib \
+--enable-glamor
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}

Copied: xf86-video-intel/repos/testing-i686/sna-avoid-discarding-damage.patch 
(from rev 209827, xf86-video-intel/trunk/sna-avoid-discarding-damage.patch)
===
--- testing-i686/sna-avoid-discarding-damage.patch  
(rev 0)
+++ testing-i686/sna-avoid-discarding-damage.patch  2014-04-05 13:04:19 UTC 
(rev 209828)
@@ -0,0 +1,103 @@
+From 3310ee89c1f1a663de5f5b12b8125809a213996f Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Sat, 05 Apr 2014 11:18:31 +
+Subject: sna: Avoid discarding damage when applying WHOLE hint to pixmap 
migration
+
+Once again, we must be careful when promoting from a region to whole
+pixmap migration that we do not discard required damage.
+
+Fixes regression from
+commit 27ac9f574f65cbd535751c925e9b2e2d7c8a6b3a [2.99.911]
+Author: Chris Wilson 
+Date:   Thu Feb 27 08:33:52 2014 +
+
+sna: Avoid promoting region-to-whole migration and discarding damage
+
+Reported-by: ged...@gmail.com
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77063
+Signed-off-by: Chris Wilson 
+---
+diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
+index 0116d54..71ba34d 100644
+--- a/src/sna/sna_accel.

[arch-commits] Commit in xf86-video-intel/trunk (2 files)

2014-04-05 Thread Laurent Carlier
Date: Saturday, April 5, 2014 @ 15:04:07
  Author: lcarlier
Revision: 209827

upgpkg: xf86-video-intel 2.99.911-1

Fix corruption in firefox with SNA (FS#39747)

Added:
  xf86-video-intel/trunk/sna-avoid-discarding-damage.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD

---+
 PKGBUILD  |   12 +++-
 sna-avoid-discarding-damage.patch |  103 
 2 files changed, 113 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 11:12:23 UTC (rev 209826)
+++ PKGBUILD2014-04-05 13:04:07 UTC (rev 209827)
@@ -23,9 +23,17 @@
 conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 
'X-ABI-VIDEODRV_VERSION>=16'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('4e7a68491bcc4d49912c5ec3ee688badce3f929ce1b7618ede9d8001827270d6')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+sna-avoid-discarding-damage.patch)
+sha256sums=('4e7a68491bcc4d49912c5ec3ee688badce3f929ce1b7618ede9d8001827270d6'
+'122637d66a70d40b098b0bb732000c8227ea1dd155af0c71f605f87934822dcb')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  # Fix FS#39747 (merged upstream)
+  patch -Np1 -i ../sna-avoid-discarding-damage.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \

Added: sna-avoid-discarding-damage.patch
===
--- sna-avoid-discarding-damage.patch   (rev 0)
+++ sna-avoid-discarding-damage.patch   2014-04-05 13:04:07 UTC (rev 209827)
@@ -0,0 +1,103 @@
+From 3310ee89c1f1a663de5f5b12b8125809a213996f Mon Sep 17 00:00:00 2001
+From: Chris Wilson 
+Date: Sat, 05 Apr 2014 11:18:31 +
+Subject: sna: Avoid discarding damage when applying WHOLE hint to pixmap 
migration
+
+Once again, we must be careful when promoting from a region to whole
+pixmap migration that we do not discard required damage.
+
+Fixes regression from
+commit 27ac9f574f65cbd535751c925e9b2e2d7c8a6b3a [2.99.911]
+Author: Chris Wilson 
+Date:   Thu Feb 27 08:33:52 2014 +
+
+sna: Avoid promoting region-to-whole migration and discarding damage
+
+Reported-by: ged...@gmail.com
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77063
+Signed-off-by: Chris Wilson 
+---
+diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c
+index 0116d54..71ba34d 100644
+--- a/src/sna/sna_accel.c
 b/src/sna/sna_accel.c
+@@ -2500,7 +2500,10 @@ sna_drawable_move_region_to_cpu(DrawablePtr drawable,
+   flags |= MOVE_INPLACE_HINT;
+   }
+ 
+-  if (flags & MOVE_WHOLE_HINT && priv->gpu_damage == NULL)
++  if ((flags & (MOVE_WHOLE_HINT | MOVE_READ)) == (MOVE_WHOLE_HINT | 
MOVE_READ))
++  return _sna_pixmap_move_to_cpu(pixmap, flags);
++
++  if (flags & MOVE_WHOLE_HINT && priv->gpu_damage == NULL && 
priv->cpu_damage == NULL)
+   return _sna_pixmap_move_to_cpu(pixmap, flags);
+ 
+   if (priv->gpu_damage == NULL &&
+@@ -2527,22 +2530,18 @@ sna_drawable_move_region_to_cpu(DrawablePtr drawable,
+   return _sna_pixmap_move_to_cpu(pixmap, flags);
+   }
+ 
+-  if ((flags & MOVE_READ) == 0 &&
+-  priv->gpu_damage &&
+-  region_subsumes_damage(region, priv->gpu_damage)) {
+-  DBG(("%s: region [(%d, %d), (%d, %d)] subsumes damage [(%d,%d), 
(%d, %d)]\n",
++  if (flags & MOVE_WHOLE_HINT) {
++  DBG(("%s: region (%d, %d), (%d, %d) marked with WHOLE hint, 
pixmap %dx%d\n",
+  __FUNCTION__,
+  region->extents.x1,
+  region->extents.y1,
+  region->extents.x2,
+  region->extents.y2,
+- priv->gpu_damage->extents.x1,
+- priv->gpu_damage->extents.y1,
+- priv->gpu_damage->extents.x2,
+- priv->gpu_damage->extents.y2));
++ pixmap->drawable.width,
++ pixmap->drawable.height));
+   if (dx | dy)
+   RegionTranslate(region, -dx, -dy);
+-  return _sna_pixmap_move_to_cpu(pixmap, flags);
++  return _sna_pixmap_move_to_cpu(pixmap, flags | MOVE_READ);
+   }
+ 
+   if (priv->move_to_gpu && !priv->move_to_gpu(sna, priv, MOVE_READ)) {
+@@ -4471,17 +4470,19 @@ try_upload_tiled_x(PixmapPtr pixmap, RegionRec *region,
+   if (wedged(sna))
+   return false;
+ 
+-  DBG(("%s: bo? %d, can map? %d\n", __FUNCTION__,
+-   priv->gpu_bo != NULL,
+-   priv->gpu_bo ? kgem_bo_can_map__cpu(&sna->kgem, priv->gpu_bo, 
true) : 0));
+-
+   replaces = region->data == NULL &&
+   w >= pixmap->drawable.wi

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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:42:40
  Author: speps
Revision: 108859

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

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

--+
 community-i686/PKGBUILD  |   41 +
 community-i686/drumkv1.install   |   13 +++
 community-x86_64/PKGBUILD|   41 +
 community-x86_64/drumkv1.install |   13 +++
 4 files changed, 108 insertions(+)

Copied: drumkv1/repos/community-i686/PKGBUILD (from rev 108858, 
drumkv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 12:42:40 UTC (rev 108859)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=drumkv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('d2be11a7c06d62ad789bc4bf7884e1eb')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: drumkv1/repos/community-i686/drumkv1.install (from rev 108858, 
drumkv1/trunk/drumkv1.install)
===
--- community-i686/drumkv1.install  (rev 0)
+++ community-i686/drumkv1.install  2014-04-05 12:42:40 UTC (rev 108859)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: drumkv1/repos/community-x86_64/PKGBUILD (from rev 108858, 
drumkv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 12:42:40 UTC (rev 108859)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=drumkv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('d2be11a7c06d62ad789bc4bf7884e1eb')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: drumkv1/repos/community-x86_64/drumkv1.install (from rev 108858, 
drumkv1/trunk/drumkv1.install)
===
--- community-x86_64/drumkv1.install(rev 0)
+++ community-x86_64/drumkv1.install2014-04-05 12:42:40 UTC (rev 108859)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:42:21
  Author: speps
Revision: 108858

upgpkg: drumkv1 0.4.0-1

Modified:
  drumkv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 12:42:07 UTC (rev 108857)
+++ PKGBUILD2014-04-05 12:42:21 UTC (rev 108858)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: speps 
 
 pkgname=drumkv1



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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:42:07
  Author: speps
Revision: 108857

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

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

--+
 community-i686/PKGBUILD  |   41 +
 community-i686/synthv1.install   |   13 +++
 community-x86_64/PKGBUILD|   41 +
 community-x86_64/synthv1.install |   13 +++
 4 files changed, 108 insertions(+)

Copied: synthv1/repos/community-i686/PKGBUILD (from rev 108856, 
synthv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 12:42:07 UTC (rev 108857)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=synthv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f32510e1f5065f574970b13035d9ff57')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: synthv1/repos/community-i686/synthv1.install (from rev 108856, 
synthv1/trunk/synthv1.install)
===
--- community-i686/synthv1.install  (rev 0)
+++ community-i686/synthv1.install  2014-04-05 12:42:07 UTC (rev 108857)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: synthv1/repos/community-x86_64/PKGBUILD (from rev 108856, 
synthv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 12:42:07 UTC (rev 108857)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=synthv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f32510e1f5065f574970b13035d9ff57')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: synthv1/repos/community-x86_64/synthv1.install (from rev 108856, 
synthv1/trunk/synthv1.install)
===
--- community-x86_64/synthv1.install(rev 0)
+++ community-x86_64/synthv1.install2014-04-05 12:42:07 UTC (rev 108857)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:41:17
  Author: speps
Revision: 108854

upgpkg: samplv1 0.4.0-1

Modified:
  samplv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 12:40:39 UTC (rev 108853)
+++ PKGBUILD2014-04-05 12:41:17 UTC (rev 108854)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: speps 
 
 pkgname=samplv1



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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:41:51
  Author: speps
Revision: 108856

upgpkg: synthv1 0.4.0-1

Modified:
  synthv1/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 12:41:40 UTC (rev 108855)
+++ PKGBUILD2014-04-05 12:41:51 UTC (rev 108856)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: speps 
 
 pkgname=synthv1



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

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:41:40
  Author: speps
Revision: 108855

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

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

--+
 community-i686/PKGBUILD  |   41 +
 community-i686/samplv1.install   |   13 +++
 community-x86_64/PKGBUILD|   41 +
 community-x86_64/samplv1.install |   13 +++
 4 files changed, 108 insertions(+)

Copied: samplv1/repos/community-i686/PKGBUILD (from rev 108854, 
samplv1/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 12:41:40 UTC (rev 108855)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=samplv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Polyphonic sampler synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('dbd306fa2aeb1ac005a7467028b9c779')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: samplv1/repos/community-i686/samplv1.install (from rev 108854, 
samplv1/trunk/samplv1.install)
===
--- community-i686/samplv1.install  (rev 0)
+++ community-i686/samplv1.install  2014-04-05 12:41:40 UTC (rev 108855)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: samplv1/repos/community-x86_64/PKGBUILD (from rev 108854, 
samplv1/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-04-05 12:41:40 UTC (rev 108855)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: speps 
+
+pkgname=samplv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Polyphonic sampler synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('dbd306fa2aeb1ac005a7467028b9c779')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: samplv1/repos/community-x86_64/samplv1.install (from rev 108854, 
samplv1/trunk/samplv1.install)
===
--- community-x86_64/samplv1.install(rev 0)
+++ community-x86_64/samplv1.install2014-04-05 12:41:40 UTC (rev 108855)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in (15 files)

2014-04-05 Thread speps
Date: Saturday, April 5, 2014 @ 14:40:39
  Author: speps
Revision: 108853

addpkg: Vee One Suite 0.4.0

Added:
  drumkv1/
  drumkv1/repos/
  drumkv1/trunk/
  drumkv1/trunk/PKGBUILD
  drumkv1/trunk/drumkv1.install
  samplv1/
  samplv1/repos/
  samplv1/trunk/
  samplv1/trunk/PKGBUILD
  samplv1/trunk/samplv1.install
  synthv1/
  synthv1/repos/
  synthv1/trunk/
  synthv1/trunk/PKGBUILD
  synthv1/trunk/synthv1.install

---+
 drumkv1/trunk/PKGBUILD|   40 
 drumkv1/trunk/drumkv1.install |   13 +
 samplv1/trunk/PKGBUILD|   40 
 samplv1/trunk/samplv1.install |   13 +
 synthv1/trunk/PKGBUILD|   40 
 synthv1/trunk/synthv1.install |   13 +
 6 files changed, 159 insertions(+)

Added: drumkv1/trunk/PKGBUILD
===
--- drumkv1/trunk/PKGBUILD  (rev 0)
+++ drumkv1/trunk/PKGBUILD  2014-04-05 12:40:39 UTC (rev 108853)
@@ -0,0 +1,40 @@
+# Maintainer: speps 
+
+pkgname=drumkv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school drum-kit sampler"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('d2be11a7c06d62ad789bc4bf7884e1eb')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Added: drumkv1/trunk/drumkv1.install
===
--- drumkv1/trunk/drumkv1.install   (rev 0)
+++ drumkv1/trunk/drumkv1.install   2014-04-05 12:40:39 UTC (rev 108853)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Added: samplv1/trunk/PKGBUILD
===
--- samplv1/trunk/PKGBUILD  (rev 0)
+++ samplv1/trunk/PKGBUILD  2014-04-05 12:40:39 UTC (rev 108853)
@@ -0,0 +1,40 @@
+# Maintainer: speps 
+
+pkgname=samplv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Polyphonic sampler synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('dbd306fa2aeb1ac005a7467028b9c779')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # x86_64 lib path fix
+  sed -i "s/lib64/lib/" src/src_lv2{,ui}.pro
+
+  # i686 -reduce-relocations
+  if [[ $CARCH = i686 ]]; then
+export CXXFLAGS+=" -fPIE"
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver 
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver 
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Added: samplv1/trunk/samplv1.install
===
--- samplv1/trunk/samplv1.install   (rev 0)
+++ samplv1/trunk/samplv1.install   2014-04-05 12:40:39 UTC (rev 108853)
@@ -0,0 +1,13 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor 2> /dev/null
+  update-mime-database usr/share/mime
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Added: synthv1/trunk/PKGBUILD
===
--- synthv1/trunk/PKGBUILD  (rev 0)
+++ synthv1/trunk/PKGBUILD  2014-04-05 12:40:39 UTC (rev 108853)
@@ -0,0 +1,40 @@
+# Maintainer: speps 
+
+pkgname=synthv1
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="An old-school all-digital 4-oscillator subtractive polyphonic 
synthesizer with stereo fx"
+arch=(i686 x86_64)
+url="http://$pkgname.sourceforge.net/$pkgname-index.html";
+license=('GPL')
+groups=('lv2-plugins')
+depends=('jack' 'liblo' 'lv2' 'qt5-base'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info')
+install="$pkgname.install"
+source=("http://download.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz";)
+md5sums=('f32510e1f5065f574970b13035d9ff57')
+
+prepare() {
+  cd

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

2014-04-05 Thread Maxime Gauduin
Date: Saturday, April 5, 2014 @ 14:09:16
  Author: alucryd
Revision: 108852

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

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

+
 /PKGBUILD  |   74 +++
 /geary.install |   34 +
 community-i686/PKGBUILD|   31 
 community-i686/geary.install   |   17 
 community-x86_64/PKGBUILD  |   31 
 community-x86_64/geary.install |   17 
 6 files changed, 108 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-05 12:09:05 UTC (rev 108851)
+++ community-i686/PKGBUILD 2014-04-05 12:09:16 UTC (rev 108852)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor : sebikul 
-# Contributor : Massimiliano Torromeo 
-
-pkgname=geary
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='A lightweight email client for the GNOME desktop'
-arch=('i686' 'x86_64')
-url='http://www.yorba.org/projects/geary/'
-license=('GPL3')
-depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'libsecret' 'webkitgtk')
-makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
-install="${pkgname}.install"
-source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('44ad1dc2c81c50006c751f8e72aa817f07002188da4c29e158060524a1962715')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/PKGBUILD (from rev 108851, 
geary/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-05 12:09:16 UTC (rev 108852)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor : sebikul 
+# Contributor : Massimiliano Torromeo 
+
+pkgname=geary
+pkgver=0.6.0
+pkgrel=2
+pkgdesc='A lightweight email client for the GNOME desktop'
+arch=('i686' 'x86_64')
+url='http://www.yorba.org/projects/geary/'
+license=('GPL3')
+depends=('gnome-keyring' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
+makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
+install="${pkgname}.install"
+source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('44ad1dc2c81c50006c751f8e72aa817f07002188da4c29e158060524a1962715')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='FALSE'
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}/build
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/geary.install
===
--- community-i686/geary.install2014-04-05 12:09:05 UTC (rev 108851)
+++ community-i686/geary.install2014-04-05 12:09:16 UTC (rev 108852)
@@ -1,17 +0,0 @@
-post_install() {
-  glib-compile-schemas usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -ftq usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade()
-{
-  post_install
-}
-
-post_remove()
-{
-  post_install
-}
-
-# vim: ts=2 sw=2 et:

Copied: geary/repos/community-i686/geary.install (from rev 108851, 
geary/trunk/geary.install)
===
--- community-i686/geary.install(rev 0)
+++ community-i686/geary.install2014-04-05 12:09:16 UTC (rev 108852)
@@ -0,0 +1,17 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -ftq usr/share/icons/hicolor
+  update-desktop-database -q
+}
+
+post_upgrade()
+{
+  post_install
+}
+
+post_remove()
+{
+  post_install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-04-05 12:09:05 UTC (rev 108851)
+++ community-x86_64/PKGBUILD   2014-04-05 12:09:16 UTC (rev 108852)
@@ -1,31 +0,0 @@
-# $Id$
-

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

2014-04-05 Thread Maxime Gauduin
Date: Saturday, April 5, 2014 @ 14:09:05
  Author: alucryd
Revision: 108851

upgpkg: geary 0.6.0-2

Modified:
  geary/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 08:08:32 UTC (rev 108850)
+++ PKGBUILD2014-04-05 12:09:05 UTC (rev 108851)
@@ -5,12 +5,12 @@
 
 pkgname=geary
 pkgver=0.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A lightweight email client for the GNOME desktop'
 arch=('i686' 'x86_64')
 url='http://www.yorba.org/projects/geary/'
 license=('GPL3')
-depends=('desktop-file-utils' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'libsecret' 'webkitgtk')
+depends=('gnome-keyring' 'gmime' 'libcanberra' 'libgee' 'libnotify' 
'webkitgtk')
 makedepends=('cmake' 'gnome-doc-utils' 'gobject-introspection' 'intltool' 
'vala')
 install="${pkgname}.install"
 
source=("https://download.gnome.org/sources/${pkgname}/${pkgver%.?}/${pkgname}-${pkgver}.tar.xz";)
@@ -18,13 +18,19 @@
 
 build() {
   cd ${pkgname}-${pkgver}
-  ./configure \
---prefix=/usr
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build && cd build
+
+  cmake .. -DCMAKE_BUILD_TYPE='Release' -DCMAKE_INSTALL_PREFIX='/usr' 
-D{DESKTOP_UPDATE,GSETTINGS_COMPILE{,_IN_PLACE},ICON_UPDATE}='FALSE'
   make
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}/build
+
   make DESTDIR="${pkgdir}" install
 }
 



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

2014-04-05 Thread Evangelos Foutras
Date: Saturday, April 5, 2014 @ 13:12:23
  Author: foutrelis
Revision: 209826

upgpkg: chromium 33.0.1750.152-2

- ICU 53.1 rebuild.
- Add optdepends on gnome-keyring and kdeutils-kwallet (FS#39125).

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 11:08:28 UTC (rev 209825)
+++ PKGBUILD2014-04-05 11:12:23 UTC (rev 209826)
@@ -7,7 +7,7 @@
 pkgname=chromium
 pkgver=33.0.1750.152
 _toolchains_rev=12526
-pkgrel=1
+pkgrel=2
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
 arch=('i686' 'x86_64')
 url="http://www.chromium.org/";
@@ -19,7 +19,10 @@
 makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
  'elfutils' 'subversion')
 [[ $CARCH = x86_64 ]] && makedepends+=('lib32-gcc-libs' 'lib32-zlib')
-optdepends=('kdebase-kdialog: needed for file dialogs in KDE')
+optdepends=('kdebase-kdialog: needed for file dialogs in KDE'
+'gnome-keyring: for storing passwords in GNOME keyring'
+'libgnome-keyring: for storing passwords in GNOME keyring'
+'kdeutils-kwallet: for storing passwords in KWallet')
 backup=('etc/chromium/default')
 options=('!strip')
 install=chromium.install



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

2014-04-05 Thread Evangelos Foutras
Date: Saturday, April 5, 2014 @ 13:08:28
  Author: foutrelis
Revision: 209825

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

Added:
  harfbuzz/repos/staging-i686/
  harfbuzz/repos/staging-i686/PKGBUILD
(from rev 209824, harfbuzz/trunk/PKGBUILD)
  harfbuzz/repos/staging-x86_64/
  harfbuzz/repos/staging-x86_64/PKGBUILD
(from rev 209824, harfbuzz/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   46 ++
 staging-x86_64/PKGBUILD |   46 ++
 2 files changed, 92 insertions(+)

Copied: harfbuzz/repos/staging-i686/PKGBUILD (from rev 209824, 
harfbuzz/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-05 11:08:28 UTC (rev 209825)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=0.9.26
+pkgrel=2
+pkgdesc="OpenType text shaping engine"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz";
+license=(MIT)
+makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection)
+source=(http://www.freedesktop.org/software/harfbuzz/release/${pkgbase}-${pkgver}.tar.bz2)
+sha256sums=('5ded7dc3d15fb5c9230d7a224b9256b67b35fde30193b4c3a4c3f6b13110e257')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr \
+--with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
+--with-gobject
+  make
+}
+
+package_harfbuzz() {
+  depends=(glib2 freetype2 graphite)
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu(){
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}

Copied: harfbuzz/repos/staging-x86_64/PKGBUILD (from rev 209824, 
harfbuzz/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-04-05 11:08:28 UTC (rev 209825)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgbase=(harfbuzz)
+pkgname=(harfbuzz harfbuzz-icu)
+pkgver=0.9.26
+pkgrel=2
+pkgdesc="OpenType text shaping engine"
+arch=(i686 x86_64)
+url="http://www.freedesktop.org/wiki/Software/HarfBuzz";
+license=(MIT)
+makedepends=(glib2 freetype2 graphite cairo icu gobject-introspection)
+source=(http://www.freedesktop.org/software/harfbuzz/release/${pkgbase}-${pkgver}.tar.bz2)
+sha256sums=('5ded7dc3d15fb5c9230d7a224b9256b67b35fde30193b4c3a4c3f6b13110e257')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr \
+--with-glib --with-freetype --with-cairo --with-icu --with-graphite2 \
+--with-gobject
+  make
+}
+
+package_harfbuzz() {
+  depends=(glib2 freetype2 graphite)
+  optdepends=('cairo: hb-view program')
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/harfbuzz/COPYING"
+
+# Split harfbuzz-icu
+  mkdir -p ../hb-icu/usr/{include/harfbuzz,lib/pkgconfig}; cd ../hb-icu
+  mv "$pkgdir"/usr/lib/libharfbuzz-icu* ./usr/lib
+  mv "$pkgdir"/usr/lib/pkgconfig/harfbuzz-icu.pc ./usr/lib/pkgconfig
+  mv "$pkgdir"/usr/include/harfbuzz/hb-icu.h ./usr/include/harfbuzz
+}
+
+package_harfbuzz-icu(){
+  pkgdesc="$pkgdesc (ICU integration)"
+  depends=(harfbuzz icu)
+
+  mv hb-icu/* "$pkgdir"
+
+  install -Dm644 $pkgbase-$pkgver/COPYING 
"$pkgdir/usr/share/licenses/harfbuzz-icu/COPYING"
+}



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

2014-04-05 Thread Evangelos Foutras
Date: Saturday, April 5, 2014 @ 13:08:08
  Author: foutrelis
Revision: 209824

upgpkg: harfbuzz 0.9.26-2

ICU 53.1 rebuild.

Modified:
  harfbuzz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 09:01:28 UTC (rev 209823)
+++ PKGBUILD2014-04-05 11:08:08 UTC (rev 209824)
@@ -4,7 +4,7 @@
 pkgbase=(harfbuzz)
 pkgname=(harfbuzz harfbuzz-icu)
 pkgver=0.9.26
-pkgrel=1
+pkgrel=2
 pkgdesc="OpenType text shaping engine"
 arch=(i686 x86_64)
 url="http://www.freedesktop.org/wiki/Software/HarfBuzz";



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

2014-04-05 Thread Andreas Radke
Date: Saturday, April 5, 2014 @ 10:53:34
  Author: andyrtr
Revision: 209822

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

Added:
  raptor/repos/staging-i686/
  raptor/repos/staging-i686/PKGBUILD
(from rev 209821, raptor/trunk/PKGBUILD)
  raptor/repos/staging-x86_64/
  raptor/repos/staging-x86_64/PKGBUILD
(from rev 209821, raptor/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   35 +++
 staging-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: raptor/repos/staging-i686/PKGBUILD (from rev 209821, 
raptor/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-04-05 08:53:34 UTC (rev 209822)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andreas Radke 
+# Contributor: eric 
+# Contributor: Damir Perisa 
+
+pkgname=raptor
+pkgver=2.0.13
+pkgrel=2
+pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
+arch=('i686' 'x86_64')
+url="http://librdf.org/raptor";
+depends=('curl' 'libxslt' 'icu')
+license=('LGPL')
+source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz";)
+
+build() {
+  cd "${srcdir}"/raptor2-${pkgver}
+
+  ./configure --prefix=/usr \
+--disable-static \
+--with-yajl=no \
+--with-icu-config=/usr/bin/icu-config
+  make
+}
+
+#check() {
+#  make -C "raptor2-$pkgver" check // currently does not work
+#}
+
+package() {
+  cd "${srcdir}"/raptor2-${pkgver}
+  make prefix="${pkgdir}"/usr install
+}
+md5sums=('f380566229d6264590315b0a5341b689')

Copied: raptor/repos/staging-x86_64/PKGBUILD (from rev 209821, 
raptor/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-04-05 08:53:34 UTC (rev 209822)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Tom Gundersen 
+# Contributor: Andreas Radke 
+# Contributor: eric 
+# Contributor: Damir Perisa 
+
+pkgname=raptor
+pkgver=2.0.13
+pkgrel=2
+pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
+arch=('i686' 'x86_64')
+url="http://librdf.org/raptor";
+depends=('curl' 'libxslt' 'icu')
+license=('LGPL')
+source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz";)
+
+build() {
+  cd "${srcdir}"/raptor2-${pkgver}
+
+  ./configure --prefix=/usr \
+--disable-static \
+--with-yajl=no \
+--with-icu-config=/usr/bin/icu-config
+  make
+}
+
+#check() {
+#  make -C "raptor2-$pkgver" check // currently does not work
+#}
+
+package() {
+  cd "${srcdir}"/raptor2-${pkgver}
+  make prefix="${pkgdir}"/usr install
+}
+md5sums=('f380566229d6264590315b0a5341b689')



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

2014-04-05 Thread Andreas Radke
Date: Saturday, April 5, 2014 @ 10:53:18
  Author: andyrtr
Revision: 209821

upgpkg: raptor 2.0.13-2

icu 53.1 rebuild

Modified:
  raptor/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-04-05 04:58:15 UTC (rev 209820)
+++ PKGBUILD2014-04-05 08:53:18 UTC (rev 209821)
@@ -6,7 +6,7 @@
 
 pkgname=raptor
 pkgver=2.0.13
-pkgrel=1
+pkgrel=2
 pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
 arch=('i686' 'x86_64')
 url="http://librdf.org/raptor";