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

2017-02-10 Thread Jelle van der Waa
Date: Friday, February 10, 2017 @ 21:39:30
  Author: jelle
Revision: 211797

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

Added:
  mumble/repos/community-testing-i686/
  mumble/repos/community-testing-i686/PKGBUILD
(from rev 211796, mumble/repos/community-staging-i686/PKGBUILD)
  mumble/repos/community-testing-x86_64/
  mumble/repos/community-testing-x86_64/PKGBUILD
(from rev 211796, mumble/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  mumble/repos/community-staging-i686/
  mumble/repos/community-staging-x86_64/

---+
 community-testing-i686/PKGBUILD   |   57 
 community-testing-x86_64/PKGBUILD |   57 
 2 files changed, 114 insertions(+)

Copied: mumble/repos/community-testing-i686/PKGBUILD (from rev 211796, 
mumble/repos/community-staging-i686/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-02-10 21:39:30 UTC (rev 211797)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.19
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa')
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+sha512sums=('f9194a899149b500a94afcf7cc5b9691c7ce8669f07fca2c66adbb3916ddb863bf703d04fb8387133fb75f3c8edb52974d1acf3febfafa1f73da19946de4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher"
+  make release
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # bin stuff
+  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
+  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
+
+  # lib stuff
+  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
+  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
+  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
+  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
+
+  # other stuff
+  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
+  install -m755 -d $pkgdir/usr/share/man/man1
+  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
+  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
+  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-testing-x86_64/PKGBUILD (from rev 211796, 
mumble/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-02-10 21:39:30 UTC (rev 211797)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.19
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa')
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+sha512sums=('f9194a899149b500a94afcf7cc5b9691c7ce8669f07fca2c66adbb3916ddb863bf703d04fb8387133fb75f3c8edb52974d1acf3febfafa1f73da19946de4')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 

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

2016-05-20 Thread Antonio Rojas
Date: Friday, May 20, 2016 @ 21:39:01
  Author: arojas
Revision: 175963

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

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

-+
 /PKGBUILD   |  122 ++
 community-i686/PKGBUILD |   62 ---
 community-i686/mumble.install   |   11 ---
 community-x86_64/PKGBUILD   |   62 ---
 community-x86_64/mumble.install |   11 ---
 5 files changed, 122 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-05-20 19:38:26 UTC (rev 175962)
+++ community-i686/PKGBUILD 2016-05-20 19:39:01 UTC (rev 175963)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Lauri Niskanen 
-# Contributor: sebastian.sal...@gmx.de
-# Contributor: Doc Angelo
-
-# If you want support for your G15 Keyboard, please add 'g15daemon'
-# to the depends and delete "no-g15" in the configure line below
-
-pkgname=mumble
-pkgver=1.2.16
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc="A voice chat application similar to TeamSpeak"
-license=('BSD')
-depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
-makedepends=('boost' 'mesa')
-install=mumble.install
-url="http://mumble.sourceforge.net/;
-source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
-md5sums=('58e7574af80e36e0b943df0e6a44d6ce')
-
-prepare() {
-  cd $srcdir/$pkgname-$pkgver
-}
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # Building mumble
-  qmake-qt4 main.pro \
-CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
-no-embed-qt-translations no-update packaged" \
-DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
-INCLUDEPATH+="/usr/include/speech-dispatcher"
-  make release
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  # bin stuff
-  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
-  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
-
-  # lib stuff
-  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
-  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
-  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
-  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
-  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
-  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
-  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
-
-  # other stuff
-  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
-  install -m755 -d $pkgdir/usr/share/man/man1
-  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
-  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
-  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-i686/PKGBUILD (from rev 175962, 
mumble/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-05-20 19:39:01 UTC (rev 175963)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.16
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa')
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+md5sums=('58e7574af80e36e0b943df0e6a44d6ce')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+

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

2016-03-04 Thread Bartłomiej Piotrowski
Date: Friday, March 4, 2016 @ 22:13:28
  Author: bpiotrowski
Revision: 164846

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

Added:
  mumble/repos/community-staging-i686/
  mumble/repos/community-staging-i686/PKGBUILD
(from rev 164845, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-i686/mumble.install
(from rev 164845, mumble/trunk/mumble.install)
  mumble/repos/community-staging-x86_64/
  mumble/repos/community-staging-x86_64/PKGBUILD
(from rev 164845, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-x86_64/mumble.install
(from rev 164845, mumble/trunk/mumble.install)

-+
 community-staging-i686/PKGBUILD |   62 ++
 community-staging-i686/mumble.install   |   11 +
 community-staging-x86_64/PKGBUILD   |   62 ++
 community-staging-x86_64/mumble.install |   11 +
 4 files changed, 146 insertions(+)

Copied: mumble/repos/community-staging-i686/PKGBUILD (from rev 164845, 
mumble/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-04 21:13:28 UTC (rev 164846)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.14
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa')
+install=mumble.install
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz)
+md5sums=('129262444c4ab8e469014d3c163549a0')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher"
+  make release
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # bin stuff
+  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
+  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
+
+  # lib stuff
+  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
+  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
+  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
+  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
+
+  # other stuff
+  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
+  install -m755 -d $pkgdir/usr/share/man/man1
+  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
+  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
+  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-staging-i686/mumble.install (from rev 164845, 
mumble/trunk/mumble.install)
===
--- community-staging-i686/mumble.install   (rev 0)
+++ community-staging-i686/mumble.install   2016-03-04 21:13:28 UTC (rev 
164846)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 164845, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-04 21:13:28 UTC (rev 164846)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.14
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar 

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

2015-12-06 Thread Felix Yan
Date: Monday, December 7, 2015 @ 03:33:46
  Author: fyan
Revision: 149530

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

Added:
  mumble/repos/community-staging-i686/
  mumble/repos/community-staging-i686/PKGBUILD
(from rev 149529, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-i686/mumble.install
(from rev 149529, mumble/trunk/mumble.install)
  mumble/repos/community-staging-x86_64/
  mumble/repos/community-staging-x86_64/PKGBUILD
(from rev 149529, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-x86_64/mumble.install
(from rev 149529, mumble/trunk/mumble.install)

-+
 community-staging-i686/PKGBUILD |   64 ++
 community-staging-i686/mumble.install   |   11 +
 community-staging-x86_64/PKGBUILD   |   64 ++
 community-staging-x86_64/mumble.install |   11 +
 4 files changed, 150 insertions(+)

Copied: mumble/repos/community-staging-i686/PKGBUILD (from rev 149529, 
mumble/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 02:33:46 UTC (rev 149530)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.11
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc="A voice chat application similar to TeamSpeak"
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa')
+install=mumble.install
+url="http://mumble.sourceforge.net/;
+source=(https://github.com/mumble-voip/mumble/releases/download/${pkgver}/mumble-${pkgver}.tar.gz{,.sig})
+md5sums=('bd1f15c6c8c8950e1d02452689759d38'
+ 'SKIP')
+validpgpkeys=(710E91FDF4284F2E69E0DEBDD7446C0F751B4695)
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-xevie 
no-server \
+no-embed-qt-translations no-update packaged" \
+DEFINES+="PLUGIN_PATH=/usr/lib/mumble" \
+INCLUDEPATH+="/usr/include/speech-dispatcher"
+  make release
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # bin stuff
+  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
+  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
+
+  # lib stuff
+  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
+  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
+  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
+  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
+
+  # other stuff
+  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
+  install -m755 -d $pkgdir/usr/share/man/man1
+  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
+  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
+  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-staging-i686/mumble.install (from rev 149529, 
mumble/trunk/mumble.install)
===
--- community-staging-i686/mumble.install   (rev 0)
+++ community-staging-i686/mumble.install   2015-12-07 02:33:46 UTC (rev 
149530)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 149529, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 02:33:46 UTC (rev 149530)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Lauri Niskanen 
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete "no-g15" in the configure line below
+
+pkgname=mumble
+pkgver=1.2.11

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

2014-10-03 Thread Sven-Hendrik Haase
Date: Saturday, October 4, 2014 @ 00:24:50
  Author: svenstaro
Revision: 120121

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

Added:
  mumble/repos/community-staging-i686/
  mumble/repos/community-staging-i686/PKGBUILD
(from rev 120120, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-i686/mumble.install
(from rev 120120, mumble/trunk/mumble.install)
  mumble/repos/community-staging-x86_64/
  mumble/repos/community-staging-x86_64/PKGBUILD
(from rev 120120, mumble/trunk/PKGBUILD)
  mumble/repos/community-staging-x86_64/mumble.install
(from rev 120120, mumble/trunk/mumble.install)

-+
 community-staging-i686/PKGBUILD |   66 ++
 community-staging-i686/mumble.install   |   11 +
 community-staging-x86_64/PKGBUILD   |   66 ++
 community-staging-x86_64/mumble.install |   11 +
 4 files changed, 154 insertions(+)

Copied: mumble/repos/community-staging-i686/PKGBUILD (from rev 120120, 
mumble/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-10-03 22:24:50 UTC (rev 120121)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Lauri Niskanen a...@ape3000.com
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to the depends and delete no-g15 in the configure line below
+
+pkgname=mumble
+pkgver=1.2.8
+pkgrel=3
+arch=('i686' 'x86_64')
+pkgdesc=A voice chat application similar to TeamSpeak
+license=('BSD')
+depends=('qt4' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 
'libpulse' 'opus' 'xdg-utils')
+makedepends=('boost' 'mesa')
+#optdepends=('portaudio: for portaudio back-end' 'g15daemon: G15 Keyboard 
support')
+install=mumble.install
+url=http://mumble.sourceforge.net/;
+source=(http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz;
+gcc49.patch::https://github.com/mumble-voip/mumble/commit/349436284b5f1baa61836c98ff0d518392140c5d.patch;)
+md5sums=('1a3ef91489ff674dfc010377d7721a28'
+ 'fc9dfbd6a58a963b3c0ba2c44c61987a')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  patch -Np1  $srcdir/gcc49.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Building mumble
+  qmake-qt4 main.pro \
+CONFIG+=bundled-celt no-bundled-opus no-bundled-speex no-speechd no-g15 
no-xevie no-server \
+no-embed-qt-translations no-update packaged \
+DEFINES+=PLUGIN_PATH=/usr/lib/mumble
+  make release
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # bin stuff
+  install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
+  install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
+
+  # lib stuff
+  install -m755 -D ./release/libmumble.so.$pkgver 
$pkgdir/usr/lib/mumble/libmumble.so.$pkgver
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
+  ln -s libmumble.so.$pkgver $pkgdir/usr/lib/mumble/libmumble.so.1.2
+  install -m755 -D ./release/plugins/liblink.so 
$pkgdir/usr/lib/mumble/liblink.so
+  install -m755 -D ./release/plugins/libmanual.so 
$pkgdir/usr/lib/mumble/libmanual.so
+  install -m755 -D ./release/libcelt* $pkgdir/usr/lib/mumble/
+
+  # other stuff
+  install -m644 -D ./scripts/mumble.desktop 
$pkgdir/usr/share/applications/mumble.desktop
+  install -m755 -d $pkgdir/usr/share/man/man1
+  install -m644 -D ./man/mum* $pkgdir/usr/share/man/man1/
+  install -m644 -D ./icons/mumble.svg 
$pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
+  install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+# vim: sw=2:ts=2 et:

Copied: mumble/repos/community-staging-i686/mumble.install (from rev 120120, 
mumble/trunk/mumble.install)
===
--- community-staging-i686/mumble.install   (rev 0)
+++ community-staging-i686/mumble.install   2014-10-03 22:24:50 UTC (rev 
120121)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: mumble/repos/community-staging-x86_64/PKGBUILD (from rev 120120, 
mumble/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-10-03 22:24:50 UTC (rev 120121)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Lauri Niskanen a...@ape3000.com
+# Contributor: sebastian.sal...@gmx.de
+# Contributor: Doc Angelo
+
+# If you want support for your G15 Keyboard, please add 'g15daemon'
+# to