[arch-commits] Commit in teamspeak3/repos (20 files)
Sven-Hendrik Haase
svenstaro at archlinux.org
Sun Jan 22 12:49:08 UTC 2017
Date: Sunday, January 22, 2017 @ 12:49:08
Author: svenstaro
Revision: 208373
archrelease: copy trunk to community-i686, community-x86_64
Added:
teamspeak3/repos/community-i686/PERMISSION.eml
(from rev 208372, teamspeak3/trunk/PERMISSION.eml)
teamspeak3/repos/community-i686/PKGBUILD
(from rev 208372, teamspeak3/trunk/PKGBUILD)
teamspeak3/repos/community-i686/teamspeak3.desktop
(from rev 208372, teamspeak3/trunk/teamspeak3.desktop)
teamspeak3/repos/community-i686/teamspeak3.launcher
(from rev 208372, teamspeak3/trunk/teamspeak3.launcher)
teamspeak3/repos/community-i686/teamspeak3.png
(from rev 208372, teamspeak3/trunk/teamspeak3.png)
teamspeak3/repos/community-x86_64/PERMISSION.eml
(from rev 208372, teamspeak3/trunk/PERMISSION.eml)
teamspeak3/repos/community-x86_64/PKGBUILD
(from rev 208372, teamspeak3/trunk/PKGBUILD)
teamspeak3/repos/community-x86_64/teamspeak3.desktop
(from rev 208372, teamspeak3/trunk/teamspeak3.desktop)
teamspeak3/repos/community-x86_64/teamspeak3.launcher
(from rev 208372, teamspeak3/trunk/teamspeak3.launcher)
teamspeak3/repos/community-x86_64/teamspeak3.png
(from rev 208372, teamspeak3/trunk/teamspeak3.png)
Deleted:
teamspeak3/repos/community-i686/PERMISSION.eml
teamspeak3/repos/community-i686/PKGBUILD
teamspeak3/repos/community-i686/teamspeak3.desktop
teamspeak3/repos/community-i686/teamspeak3.launcher
teamspeak3/repos/community-i686/teamspeak3.png
teamspeak3/repos/community-x86_64/PERMISSION.eml
teamspeak3/repos/community-x86_64/PKGBUILD
teamspeak3/repos/community-x86_64/teamspeak3.desktop
teamspeak3/repos/community-x86_64/teamspeak3.launcher
teamspeak3/repos/community-x86_64/teamspeak3.png
--------------------------------------+
/PKGBUILD | 132 +++++++++++++++++++++++++++++++++
/teamspeak3.desktop | 24 ++++++
/teamspeak3.launcher | 12 +++
community-i686/PKGBUILD | 66 ----------------
community-i686/teamspeak3.desktop | 12 ---
community-i686/teamspeak3.launcher | 6 -
community-x86_64/PKGBUILD | 66 ----------------
community-x86_64/teamspeak3.desktop | 12 ---
community-x86_64/teamspeak3.launcher | 6 -
9 files changed, 168 insertions(+), 168 deletions(-)
Deleted: community-i686/PERMISSION.eml
===================================================================
(Binary files differ)
Copied: teamspeak3/repos/community-i686/PERMISSION.eml (from rev 208372, teamspeak3/trunk/PERMISSION.eml)
===================================================================
(Binary files differ)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-i686/PKGBUILD 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,66 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Slash <demodevil5[at]yahoo[dot]com>
-# Contributor: J.W. Birdsong <jwbirdsongATmailDOTcom>
-
-pkgname=teamspeak3
-pkgver=3.1.0.1
-pkgrel=1
-pkgdesc="TeamSpeak is software for quality voice communication via the Internet"
-url="http://www.teamspeak.com/"
-license=('custom')
-depends=('qt5-base' 'libxkbcommon-x11')
-optdepends=('libpulse')
-arch=('i686' 'x86_64')
-source=("http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_x86-${pkgver}.run"
- "http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_amd64-${pkgver}.run"
- 'teamspeak3.desktop'
- 'teamspeak3.png'
- 'teamspeak3.launcher')
-md5sums=('42ae4ab6d6f5737e4e12ba518aed3d05'
- '67f4b5ace5519205d3981e42532a7157'
- '3f281f28d1570b46dc57cb727fd74a33'
- '1d193af5808f4ca718c800da3f127ca9'
- '170fcbb1b468ce4f3dba7ee3fb2a1c6d')
-
-[[ "$CARCH" == "i686" ]] && _TSARCH='x86'
-[[ "$CARCH" == "x86_64" ]] && _TSARCH='amd64'
-
-prepare() {
- mkdir archive && cd archive
- sh ../TeamSpeak3-Client-linux_${_TSARCH}-${pkgver}.run --tar -xf 2>/dev/null
-
- # Delete bundled Qt libs to use system-wide ones
- rm libQt5*
-
- # Fix FS#34190
- sed -i "/export QTDIR.*/d" ts3client_runscript.sh
- sed -i "/export QT_PLUGIN_PATH*/d" ts3client_runscript.sh
-
- # Fix FS#34189
- rm qt.conf
-
- # Fix permissions
- find -type d | xargs chmod 755
- find -type f | xargs chmod 644
- find -name *.so | xargs chmod 755
- chmod +x ts3client*
-}
-
-package() {
- install -d ${pkgdir}/{usr/bin/,opt/teamspeak3}
-
- cp -r archive/* ${pkgdir}/opt/teamspeak3/
-
- # Install Desktop File
- install -D -m644 $srcdir/teamspeak3.desktop ${pkgdir}/usr/share/applications/teamspeak3.desktop
-
- # Install Icon File
- install -D -m644 $srcdir/teamspeak3.png ${pkgdir}/usr/share/pixmaps/teamspeak3.png
-
- # Install Custom License
- #install -D -m644 ${pkgdir}/opt/teamspeak3/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
- # Install Client Launcher
- install -D -m755 $srcdir/teamspeak3.launcher ${pkgdir}/usr/bin/teamspeak3
-}
-# vim:set ts=2 sw=2 et:
Copied: teamspeak3/repos/community-i686/PKGBUILD (from rev 208372, teamspeak3/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,66 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Slash <demodevil5[at]yahoo[dot]com>
+# Contributor: J.W. Birdsong <jwbirdsongATmailDOTcom>
+
+pkgname=teamspeak3
+pkgver=3.1.0.1
+pkgrel=2
+pkgdesc="TeamSpeak is software for quality voice communication via the Internet"
+url="http://www.teamspeak.com/"
+license=('custom')
+depends=('qt5-base' 'libxkbcommon-x11' 'qt5-webengine')
+optdepends=('libpulse')
+arch=('i686' 'x86_64')
+source=("http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_x86-${pkgver}.run"
+ "http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_amd64-${pkgver}.run"
+ 'teamspeak3.desktop'
+ 'teamspeak3.png'
+ 'teamspeak3.launcher')
+sha512sums=('dca12ecdeac7bc95403db603b68e41de3a303e9672747343d113649163942308fbfe40d2f46a934628fc4801d305b5f75281e2d7f55ba4a54c7409b9bad7f4df'
+ 'e63348c795c05128714bf8a04ddac52e87c392e177b349560a4b91b92b0659dab60142d555617aacdc794bb9fbe727f3e2477892f588e2bc59b361f1d387b8fc'
+ '4cac0b7446dc3e728b232fdd6c6d75be1d2a5530635eab5918a4e7dd6a4a3fc21d6a75055da919b56e5cf849f4c5ba26ece56759a45bc4850eba3eb73853759d'
+ 'af18ed36a3c8de90b60a7205ebf91a35d4b517f22f97d541c82debdb12697882469d9771fdf3fb8b081aeb74a01237f3afd4732daccf4b374dc6d39e7df5d444'
+ '2365bf65500a7455551ca656d27d8fed54dd7151e61e369296e4fa2b5451ee3dd0c4adc67ec1d0f221de0ed7e6efa18c303b63bf2d858060671491bee51c899d')
+
+[[ "$CARCH" == "i686" ]] && _TSARCH='x86'
+[[ "$CARCH" == "x86_64" ]] && _TSARCH='amd64'
+
+prepare() {
+ mkdir archive && cd archive
+ sh ../TeamSpeak3-Client-linux_${_TSARCH}-${pkgver}.run --tar -xf 2>/dev/null
+
+ # Delete bundled Qt libs to use system-wide ones
+ rm libQt5*
+
+ # Fix FS#34190
+ sed -i "/export QTDIR.*/d" ts3client_runscript.sh
+ sed -i "/export QT_PLUGIN_PATH*/d" ts3client_runscript.sh
+
+ # Fix FS#34189
+ rm qt.conf
+
+ # Fix permissions
+ find -type d | xargs chmod 755
+ find -type f | xargs chmod 644
+ find -name *.so | xargs chmod 755
+ chmod +x ts3client*
+}
+
+package() {
+ install -d ${pkgdir}/{usr/bin/,opt/teamspeak3}
+
+ cp -r archive/* ${pkgdir}/opt/teamspeak3/
+
+ # Install Desktop File
+ install -D -m644 $srcdir/teamspeak3.desktop ${pkgdir}/usr/share/applications/teamspeak3.desktop
+
+ # Install Icon File
+ install -D -m644 $srcdir/teamspeak3.png ${pkgdir}/usr/share/pixmaps/teamspeak3.png
+
+ # Install Custom License
+ #install -D -m644 ${pkgdir}/opt/teamspeak3/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+ # Install Client Launcher
+ install -D -m755 $srcdir/teamspeak3.launcher ${pkgdir}/usr/bin/teamspeak3
+}
+# vim:set ts=2 sw=2 et:
Deleted: community-i686/teamspeak3.desktop
===================================================================
--- community-i686/teamspeak3.desktop 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-i686/teamspeak3.desktop 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,12 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=TeamSpeak 3
-GenericName=TeamSpeak
-Comment=TeamSpeak is software for quality voice communication via the Internet
-Exec=teamspeak3
-Icon=teamspeak3.xpm
-StartupNotify=true
-Terminal=false
-Type=Application
-Categories=Network;Application
-StartupWMClass=TeamSpeak 3
Copied: teamspeak3/repos/community-i686/teamspeak3.desktop (from rev 208372, teamspeak3/trunk/teamspeak3.desktop)
===================================================================
--- community-i686/teamspeak3.desktop (rev 0)
+++ community-i686/teamspeak3.desktop 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=TeamSpeak 3
+GenericName=TeamSpeak
+Comment=TeamSpeak is software for quality voice communication via the Internet
+Exec=teamspeak3
+Icon=teamspeak3.xpm
+StartupNotify=true
+Terminal=false
+Type=Application
+Categories=Network;Application
+StartupWMClass=TeamSpeak 3
Deleted: community-i686/teamspeak3.launcher
===================================================================
--- community-i686/teamspeak3.launcher 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-i686/teamspeak3.launcher 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-cd "/opt/teamspeak3"
-./ts3client_runscript.sh $@
-exit $?
-
Copied: teamspeak3/repos/community-i686/teamspeak3.launcher (from rev 208372, teamspeak3/trunk/teamspeak3.launcher)
===================================================================
--- community-i686/teamspeak3.launcher (rev 0)
+++ community-i686/teamspeak3.launcher 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+cd "/opt/teamspeak3"
+./ts3client_runscript.sh $@
+exit $?
+
Deleted: community-i686/teamspeak3.png
===================================================================
(Binary files differ)
Copied: teamspeak3/repos/community-i686/teamspeak3.png (from rev 208372, teamspeak3/trunk/teamspeak3.png)
===================================================================
(Binary files differ)
Deleted: community-x86_64/PERMISSION.eml
===================================================================
(Binary files differ)
Copied: teamspeak3/repos/community-x86_64/PERMISSION.eml (from rev 208372, teamspeak3/trunk/PERMISSION.eml)
===================================================================
(Binary files differ)
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-x86_64/PKGBUILD 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,66 +0,0 @@
-# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
-# Contributor: Slash <demodevil5[at]yahoo[dot]com>
-# Contributor: J.W. Birdsong <jwbirdsongATmailDOTcom>
-
-pkgname=teamspeak3
-pkgver=3.1.0.1
-pkgrel=1
-pkgdesc="TeamSpeak is software for quality voice communication via the Internet"
-url="http://www.teamspeak.com/"
-license=('custom')
-depends=('qt5-base' 'libxkbcommon-x11')
-optdepends=('libpulse')
-arch=('i686' 'x86_64')
-source=("http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_x86-${pkgver}.run"
- "http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_amd64-${pkgver}.run"
- 'teamspeak3.desktop'
- 'teamspeak3.png'
- 'teamspeak3.launcher')
-md5sums=('42ae4ab6d6f5737e4e12ba518aed3d05'
- '67f4b5ace5519205d3981e42532a7157'
- '3f281f28d1570b46dc57cb727fd74a33'
- '1d193af5808f4ca718c800da3f127ca9'
- '170fcbb1b468ce4f3dba7ee3fb2a1c6d')
-
-[[ "$CARCH" == "i686" ]] && _TSARCH='x86'
-[[ "$CARCH" == "x86_64" ]] && _TSARCH='amd64'
-
-prepare() {
- mkdir archive && cd archive
- sh ../TeamSpeak3-Client-linux_${_TSARCH}-${pkgver}.run --tar -xf 2>/dev/null
-
- # Delete bundled Qt libs to use system-wide ones
- rm libQt5*
-
- # Fix FS#34190
- sed -i "/export QTDIR.*/d" ts3client_runscript.sh
- sed -i "/export QT_PLUGIN_PATH*/d" ts3client_runscript.sh
-
- # Fix FS#34189
- rm qt.conf
-
- # Fix permissions
- find -type d | xargs chmod 755
- find -type f | xargs chmod 644
- find -name *.so | xargs chmod 755
- chmod +x ts3client*
-}
-
-package() {
- install -d ${pkgdir}/{usr/bin/,opt/teamspeak3}
-
- cp -r archive/* ${pkgdir}/opt/teamspeak3/
-
- # Install Desktop File
- install -D -m644 $srcdir/teamspeak3.desktop ${pkgdir}/usr/share/applications/teamspeak3.desktop
-
- # Install Icon File
- install -D -m644 $srcdir/teamspeak3.png ${pkgdir}/usr/share/pixmaps/teamspeak3.png
-
- # Install Custom License
- #install -D -m644 ${pkgdir}/opt/teamspeak3/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
- # Install Client Launcher
- install -D -m755 $srcdir/teamspeak3.launcher ${pkgdir}/usr/bin/teamspeak3
-}
-# vim:set ts=2 sw=2 et:
Copied: teamspeak3/repos/community-x86_64/PKGBUILD (from rev 208372, teamspeak3/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,66 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Slash <demodevil5[at]yahoo[dot]com>
+# Contributor: J.W. Birdsong <jwbirdsongATmailDOTcom>
+
+pkgname=teamspeak3
+pkgver=3.1.0.1
+pkgrel=2
+pkgdesc="TeamSpeak is software for quality voice communication via the Internet"
+url="http://www.teamspeak.com/"
+license=('custom')
+depends=('qt5-base' 'libxkbcommon-x11' 'qt5-webengine')
+optdepends=('libpulse')
+arch=('i686' 'x86_64')
+source=("http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_x86-${pkgver}.run"
+ "http://teamspeak.gameserver.gamed.de/ts3/releases/${pkgver}/TeamSpeak3-Client-linux_amd64-${pkgver}.run"
+ 'teamspeak3.desktop'
+ 'teamspeak3.png'
+ 'teamspeak3.launcher')
+sha512sums=('dca12ecdeac7bc95403db603b68e41de3a303e9672747343d113649163942308fbfe40d2f46a934628fc4801d305b5f75281e2d7f55ba4a54c7409b9bad7f4df'
+ 'e63348c795c05128714bf8a04ddac52e87c392e177b349560a4b91b92b0659dab60142d555617aacdc794bb9fbe727f3e2477892f588e2bc59b361f1d387b8fc'
+ '4cac0b7446dc3e728b232fdd6c6d75be1d2a5530635eab5918a4e7dd6a4a3fc21d6a75055da919b56e5cf849f4c5ba26ece56759a45bc4850eba3eb73853759d'
+ 'af18ed36a3c8de90b60a7205ebf91a35d4b517f22f97d541c82debdb12697882469d9771fdf3fb8b081aeb74a01237f3afd4732daccf4b374dc6d39e7df5d444'
+ '2365bf65500a7455551ca656d27d8fed54dd7151e61e369296e4fa2b5451ee3dd0c4adc67ec1d0f221de0ed7e6efa18c303b63bf2d858060671491bee51c899d')
+
+[[ "$CARCH" == "i686" ]] && _TSARCH='x86'
+[[ "$CARCH" == "x86_64" ]] && _TSARCH='amd64'
+
+prepare() {
+ mkdir archive && cd archive
+ sh ../TeamSpeak3-Client-linux_${_TSARCH}-${pkgver}.run --tar -xf 2>/dev/null
+
+ # Delete bundled Qt libs to use system-wide ones
+ rm libQt5*
+
+ # Fix FS#34190
+ sed -i "/export QTDIR.*/d" ts3client_runscript.sh
+ sed -i "/export QT_PLUGIN_PATH*/d" ts3client_runscript.sh
+
+ # Fix FS#34189
+ rm qt.conf
+
+ # Fix permissions
+ find -type d | xargs chmod 755
+ find -type f | xargs chmod 644
+ find -name *.so | xargs chmod 755
+ chmod +x ts3client*
+}
+
+package() {
+ install -d ${pkgdir}/{usr/bin/,opt/teamspeak3}
+
+ cp -r archive/* ${pkgdir}/opt/teamspeak3/
+
+ # Install Desktop File
+ install -D -m644 $srcdir/teamspeak3.desktop ${pkgdir}/usr/share/applications/teamspeak3.desktop
+
+ # Install Icon File
+ install -D -m644 $srcdir/teamspeak3.png ${pkgdir}/usr/share/pixmaps/teamspeak3.png
+
+ # Install Custom License
+ #install -D -m644 ${pkgdir}/opt/teamspeak3/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+ # Install Client Launcher
+ install -D -m755 $srcdir/teamspeak3.launcher ${pkgdir}/usr/bin/teamspeak3
+}
+# vim:set ts=2 sw=2 et:
Deleted: community-x86_64/teamspeak3.desktop
===================================================================
--- community-x86_64/teamspeak3.desktop 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-x86_64/teamspeak3.desktop 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,12 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=TeamSpeak 3
-GenericName=TeamSpeak
-Comment=TeamSpeak is software for quality voice communication via the Internet
-Exec=teamspeak3
-Icon=teamspeak3.xpm
-StartupNotify=true
-Terminal=false
-Type=Application
-Categories=Network;Application
-StartupWMClass=TeamSpeak 3
Copied: teamspeak3/repos/community-x86_64/teamspeak3.desktop (from rev 208372, teamspeak3/trunk/teamspeak3.desktop)
===================================================================
--- community-x86_64/teamspeak3.desktop (rev 0)
+++ community-x86_64/teamspeak3.desktop 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=TeamSpeak 3
+GenericName=TeamSpeak
+Comment=TeamSpeak is software for quality voice communication via the Internet
+Exec=teamspeak3
+Icon=teamspeak3.xpm
+StartupNotify=true
+Terminal=false
+Type=Application
+Categories=Network;Application
+StartupWMClass=TeamSpeak 3
Deleted: community-x86_64/teamspeak3.launcher
===================================================================
--- community-x86_64/teamspeak3.launcher 2017-01-22 12:48:46 UTC (rev 208372)
+++ community-x86_64/teamspeak3.launcher 2017-01-22 12:49:08 UTC (rev 208373)
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-cd "/opt/teamspeak3"
-./ts3client_runscript.sh $@
-exit $?
-
Copied: teamspeak3/repos/community-x86_64/teamspeak3.launcher (from rev 208372, teamspeak3/trunk/teamspeak3.launcher)
===================================================================
--- community-x86_64/teamspeak3.launcher (rev 0)
+++ community-x86_64/teamspeak3.launcher 2017-01-22 12:49:08 UTC (rev 208373)
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+cd "/opt/teamspeak3"
+./ts3client_runscript.sh $@
+exit $?
+
Deleted: community-x86_64/teamspeak3.png
===================================================================
(Binary files differ)
Copied: teamspeak3/repos/community-x86_64/teamspeak3.png (from rev 208372, teamspeak3/trunk/teamspeak3.png)
===================================================================
(Binary files differ)
More information about the arch-commits
mailing list