[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Tuesday, November 24, 2020 @ 19:53:43 Author: spupykin Revision: 761011 upgpkg: tigervnc 1.11.0-6 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-11-24 19:53:22 UTC (rev 761010) +++ PKGBUILD2020-11-24 19:53:43 UTC (rev 761011) @@ -3,8 +3,8 @@ pkgname=tigervnc pkgver=1.11.0 -pkgrel=5 -_xorgver=1.20.8 +pkgrel=6 +_xorgver=1.20.9 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -28,7 +28,7 @@ more-xsessions.patch remove-selinux.patch) sha256sums=('3648eca472a92a4e8fe55b27cd397b1bf16bad0b24a3a1988661f44553f5e2c3' -'d17b646bee4ba0fb7850c1cc55b18e3e8513ed5c02bdf38da7e107f84e2d0146' +'e219f2e0dfe455467939149d7cd2ee53b79b512cc1d2094ae4f5c9ed9ccd3571' 'c9276f6ea277cf9654fb2cc3bc9dadbb2e596b5cf8ca867ee906c0080cf7f810' 'cb57dece026b29d7019a3e1e42fd2fb201d37fc60a70c885d2a50acffb808c06' '71efc3bedd5be49089f4ca93517fb7fb6fadf002319cd9c8b3ac032ff3cadab0')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD Xsession more-xsessions.patch)
Date: Saturday, September 19, 2020 @ 16:45:41 Author: spupykin Revision: 710886 upgpkg: tigervnc 1.11.0-5 Added: tigervnc/trunk/Xsession Modified: tigervnc/trunk/PKGBUILD tigervnc/trunk/more-xsessions.patch --+ PKGBUILD | 11 +--- Xsession | 66 + more-xsessions.patch |5 ++- 3 files changed, 76 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-09-19 16:45:35 UTC (rev 710885) +++ PKGBUILD2020-09-19 16:45:41 UTC (rev 710886) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.11.0 -pkgrel=4 +pkgrel=5 _xorgver=1.20.8 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') @@ -24,11 +24,13 @@ etc/tigervnc/vncserver.users) source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 + Xsession more-xsessions.patch remove-selinux.patch) sha256sums=('3648eca472a92a4e8fe55b27cd397b1bf16bad0b24a3a1988661f44553f5e2c3' 'd17b646bee4ba0fb7850c1cc55b18e3e8513ed5c02bdf38da7e107f84e2d0146' -'5606c12553b9891e295bacede6c58f726527ec3eb916efa0c436bb156067ff41' +'c9276f6ea277cf9654fb2cc3bc9dadbb2e596b5cf8ca867ee906c0080cf7f810' +'cb57dece026b29d7019a3e1e42fd2fb201d37fc60a70c885d2a50acffb808c06' '71efc3bedd5be49089f4ca93517fb7fb6fadf002319cd9c8b3ac032ff3cadab0') prepare() { @@ -69,6 +71,7 @@ install -Dm0644 java/VncViewer.jar "${pkgdir}"/usr/share/vnc/classes/VncViewer.jar cd unix/xserver/hw/vnc make DESTDIR="$pkgdir" install - install -Dm0644 "$srcdir"/${pkgname}-${pkgver}/unix/vncserver/vncserver@.service \ -"$pkgdir"/usr/lib/systemd/user/vncserver@.service + install -Dm0755 "$srcdir"/Xsession "$pkgdir"/etc/X11/tigervnc/Xsession +# install -Dm0644 "$srcdir"/${pkgname}-${pkgver}/unix/vncserver/vncserver@.service \ +#"$pkgdir"/usr/lib/systemd/user/vncserver@.service } Added: Xsession === --- Xsession(rev 0) +++ Xsession2020-09-19 16:45:41 UTC (rev 710886) @@ -0,0 +1,66 @@ +#!/bin/sh +# +# Wrapper to run around X sessions. +# Based on lightdm +# + +echo "Running X session wrapper" + +# Load profile +for file in "/etc/profile" "$HOME/.profile" "/etc/xprofile" "$HOME/.xprofile"; do +if [ -f "$file" ]; then +echo "Loading profile from $file"; +. "$file" +fi +done + +# Load resources +for file in "/etc/X11/Xresources" "$HOME/.Xresources"; do +if [ -f "$file" ]; then +echo "Loading resource: $file" +xrdb -merge "$file" +fi +done + +# Load keymaps +for file in "/etc/X11/Xkbmap" "$HOME/.Xkbmap"; do +if [ -f "$file" ]; then +echo "Loading keymap: $file" +setxkbmap `cat "$file"` +XKB_IN_USE=yes +fi +done + +# Load xmodmap if not using XKB +if [ -z "$XKB_IN_USE" ]; then +for file in "/etc/X11/Xmodmap" "$HOME/.Xmodmap"; do +if [ -f "$file" ]; then + echo "Loading modmap: $file" + xmodmap "$file" +fi +done +fi + +unset XKB_IN_USE + +# Run all system xinitrc shell scripts +xinitdir="/etc/X11/xinit/xinitrc.d" +if [ -d "$xinitdir" ]; then +for script in $xinitdir/*; do +echo "Loading xinit script $script" +if [ -x "$script" -a ! -d "$script" ]; then +. "$script" +fi +done +fi + +# Run user xsession shell script +script="$HOME/.xsession" +if [ -x "$script" -a ! -d "$script" ]; then +echo "Loading xsession script $script" +. "$script" +fi + +echo "X session wrapper complete, running session $@" + +exec $@ Modified: more-xsessions.patch === --- more-xsessions.patch2020-09-19 16:45:35 UTC (rev 710885) +++ more-xsessions.patch2020-09-19 16:45:41 UTC (rev 710886) @@ -1,7 +1,7 @@ diff -wbBur tigervnc-1.11.0/unix/vncserver/vncserver.in tigervnc-1.11.0.my/unix/vncserver/vncserver.in --- tigervnc-1.11.0/unix/vncserver/vncserver.in2020-09-08 15:16:08.0 +0300 +++ tigervnc-1.11.0.my/unix/vncserver/vncserver.in 2020-09-11 15:39:59.980775388 +0300 -@@ -438,7 +438,12 @@ +@@ -438,7 +438,13 @@ die "$prog: couldn't find \"$cmd\" on your PATH.\n"; } @@ -11,7 +11,8 @@ +"/usr/share/sddm/scripts/Xsession", +"/etc/gdm/Xsession", +"/etc/lightdm/Xsession", -+"/etc/lxdm/Xsession") { ++"/etc/lxdm/Xsession", ++"/etc/X11/tigervnc/Xsession") { if (-x "$cmd") { $Xsession = $cmd; last;
[arch-commits] Commit in tigervnc/trunk (PKGBUILD more-xsessions.patch)
Date: Friday, September 11, 2020 @ 12:56:15 Author: spupykin Revision: 702792 upgpkg: tigervnc 1.11.0-3 Added: tigervnc/trunk/more-xsessions.patch Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 10 +++--- more-xsessions.patch | 17 + 2 files changed, 24 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-09-11 12:55:25 UTC (rev 702791) +++ PKGBUILD2020-09-11 12:56:15 UTC (rev 702792) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.11.0 -pkgrel=2 +pkgrel=3 _xorgver=1.20.8 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') @@ -20,14 +20,18 @@ source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service - vncviewer.desktop) + vncviewer.desktop + more-xsessions.patch) sha256sums=('3648eca472a92a4e8fe55b27cd397b1bf16bad0b24a3a1988661f44553f5e2c3' 'd17b646bee4ba0fb7850c1cc55b18e3e8513ed5c02bdf38da7e107f84e2d0146' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' -'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7') +'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7' +'5606c12553b9891e295bacede6c58f726527ec3eb916efa0c436bb156067ff41') prepare() { cd "$srcdir"/${pkgname}-${pkgver} + patch -p1 -i "$srcdir"/more-xsessions.patch + cd unix/xserver cp -r "$srcdir"/xorg-server-${_xorgver}/* . patch -Np1 -i ../xserver120.patch Added: more-xsessions.patch === --- more-xsessions.patch(rev 0) +++ more-xsessions.patch2020-09-11 12:56:15 UTC (rev 702792) @@ -0,0 +1,17 @@ +diff -wbBur tigervnc-1.11.0/unix/vncserver/vncserver.in tigervnc-1.11.0.my/unix/vncserver/vncserver.in +--- tigervnc-1.11.0/unix/vncserver/vncserver.in2020-09-08 15:16:08.0 +0300 tigervnc-1.11.0.my/unix/vncserver/vncserver.in 2020-09-11 15:39:59.980775388 +0300 +@@ -438,7 +438,12 @@ + die "$prog: couldn't find \"$cmd\" on your PATH.\n"; + } + +-foreach $cmd ("/etc/X11/xinit/Xsession", "/etc/X11/Xsession") { ++foreach $cmd ("/etc/X11/xinit/Xsession", "/etc/X11/Xsession", ++"/etc/X11/xdm/Xsession", ++"/usr/share/sddm/scripts/Xsession", ++"/etc/gdm/Xsession", ++"/etc/lightdm/Xsession", ++"/etc/lxdm/Xsession") { + if (-x "$cmd") { + $Xsession = $cmd; + last;
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, September 10, 2020 @ 07:07:05 Author: spupykin Revision: 701684 upgpkg: tigervnc 1.11.0-2 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-09-10 06:08:50 UTC (rev 701683) +++ PKGBUILD2020-09-10 07:07:05 UTC (rev 701684) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.11.0 -pkgrel=1 +pkgrel=2 _xorgver=1.20.8 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') @@ -38,6 +38,8 @@ cmake -G "Unix Makefiles" \ -DCMAKE_INSTALL_PREFIX=/usr \ +-DCMAKE_INSTALL_SBINDIR=/usr/bin \ +-DCMAKE_INSTALL_LIBEXECDIR=/usr/bin \ -DBUILD_JAVA=TRUE make
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Wednesday, September 9, 2020 @ 23:12:28 Author: spupykin Revision: 701680 upgpkg: tigervnc 1.11.0-1 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2020-09-09 23:12:17 UTC (rev 701679) +++ PKGBUILD2020-09-09 23:12:28 UTC (rev 701680) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.10.1 -pkgrel=2 -_xorgver=1.20.6 +pkgver=1.11.0 +pkgrel=1 +_xorgver=1.20.8 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -21,8 +21,8 @@ ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service vncviewer.desktop) -sha256sums=('19fcc80d7d35dd58115262e53cac87d8903180261d94c2a6b0c19224f50b58c4' -'6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1' +sha256sums=('3648eca472a92a4e8fe55b27cd397b1bf16bad0b24a3a1988661f44553f5e2c3' +'d17b646bee4ba0fb7850c1cc55b18e3e8513ed5c02bdf38da7e107f84e2d0146' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7') @@ -59,7 +59,7 @@ install -Dm0644 java/VncViewer.jar "${pkgdir}"/usr/share/vnc/classes/VncViewer.jar cd unix/xserver/hw/vnc make DESTDIR="$pkgdir" install - install -Dm0644 "$srcdir"/${pkgname}-${pkgver}/contrib/systemd/user/vncserver@.service \ + install -Dm0644 "$srcdir"/${pkgname}-${pkgver}/unix/vncserver/vncserver@.service \ "$pkgdir"/usr/lib/systemd/user/vncserver@.service install -Dm0644 "$srcdir"/vncserver.service "$pkgdir"/usr/lib/systemd/system/vncserver.service install -Dm0644 "$srcdir"/vncviewer.desktop "$pkgdir"/usr/share/applications/vncviewer.desktop
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Tuesday, May 5, 2020 @ 05:25:07 Author: foutrelis Revision: 624804 nettle 3.6 rebuild Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2020-05-05 05:24:34 UTC (rev 624803) +++ PKGBUILD2020-05-05 05:25:07 UTC (rev 624804) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.10.1 -pkgrel=1 +pkgrel=2 _xorgver=1.20.6 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Friday, December 27, 2019 @ 09:19:49 Author: spupykin Revision: 542967 upgpkg: tigervnc 1.10.1-1 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-12-27 06:35:48 UTC (rev 542966) +++ PKGBUILD2019-12-27 09:19:49 UTC (rev 542967) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.9.0 -pkgrel=3 -_xorgver=1.20.5 +pkgver=1.10.1 +pkgrel=1 +_xorgver=1.20.6 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -12,10 +12,8 @@ depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' 'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2' 'libdrm') -makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' -'compositeproto' 'damageproto' 'randrproto' 'resourceproto' -'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' -'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto' +makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' +'xtrans' 'xorgproto' 'mesa' 'imagemagick' 'java-environment=8') optdepends=('mesa: for OpenGL functionality in Xvnc') conflicts=('tightvnc') @@ -23,8 +21,8 @@ ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service vncviewer.desktop) -sha256sums=('f15ced8500ec56356c3bf271f52e58ed83729118361c7103eab64a618441f740' -'a81d8243f37e75a03d4f8c55f96d0bc25802be6ec45c3bfa5cb614c6d01bac9d' +sha256sums=('19fcc80d7d35dd58115262e53cac87d8903180261d94c2a6b0c19224f50b58c4' +'6316146304e6e8a36d5904987ae2917b5d5b195dc9fc63d67f7aca137e5a51d1' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7') @@ -58,6 +56,7 @@ package() { cd "$srcdir"/${pkgname}-${pkgver} make DESTDIR="$pkgdir" install + install -Dm0644 java/VncViewer.jar "${pkgdir}"/usr/share/vnc/classes/VncViewer.jar cd unix/xserver/hw/vnc make DESTDIR="$pkgdir" install install -Dm0644 "$srcdir"/${pkgname}-${pkgver}/contrib/systemd/user/vncserver@.service \
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Sunday, June 30, 2019 @ 10:08:45 Author: felixonmars Revision: 486232 poppler 0.78 / nettle 3.5 rebuild Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2019-06-30 10:06:35 UTC (rev 486231) +++ PKGBUILD2019-06-30 10:08:45 UTC (rev 486232) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.9.0 -pkgrel=2 +pkgrel=3 _xorgver=1.20.5 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, June 6, 2019 @ 11:27:24 Author: spupykin Revision: 477445 upgpkg: tigervnc 1.9.0-2 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2019-06-06 11:26:13 UTC (rev 477444) +++ PKGBUILD2019-06-06 11:27:24 UTC (rev 477445) @@ -3,8 +3,8 @@ pkgname=tigervnc pkgver=1.9.0 -pkgrel=1 -_xorgver=1.20.0 +pkgrel=2 +_xorgver=1.20.5 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -24,7 +24,7 @@ vncserver.service vncviewer.desktop) sha256sums=('f15ced8500ec56356c3bf271f52e58ed83729118361c7103eab64a618441f740' -'9d967d185f05709274ee0c4f861a4672463986e550ca05725ce27974f550d3e6' +'a81d8243f37e75a03d4f8c55f96d0bc25802be6ec45c3bfa5cb614c6d01bac9d' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Friday, July 20, 2018 @ 11:36:20 Author: spupykin Revision: 362596 upgpkg: tigervnc 1.9.0-1 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 16 1 file changed, 8 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-07-20 11:36:13 UTC (rev 362595) +++ PKGBUILD2018-07-20 11:36:20 UTC (rev 362596) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.8.0 -pkgrel=4 -_xorgver=1.19.6 +pkgver=1.9.0 +pkgrel=1 +_xorgver=1.20.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -11,7 +11,7 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2') +'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2' 'libdrm') makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' @@ -23,8 +23,8 @@ ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service vncviewer.desktop) -sha256sums=('9951dab0e10f8de03996ec94bec0d938da9f36d48dca8c954e8bbc95c16338f8' -'a732502f1db000cf36a376cd0c010ffdbf32ecdd7f1fa08ba7f5bdf9601cc197' +sha256sums=('f15ced8500ec56356c3bf271f52e58ed83729118361c7103eab64a618441f740' +'9d967d185f05709274ee0c4f861a4672463986e550ca05725ce27974f550d3e6' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7') @@ -32,7 +32,7 @@ cd "$srcdir"/${pkgname}-${pkgver} cd unix/xserver cp -r "$srcdir"/xorg-server-${_xorgver}/* . - patch -Np1 -i ../xserver119.patch + patch -Np1 -i ../xserver120.patch } build() { @@ -45,7 +45,7 @@ cd unix/xserver autoreconf -fiv - ./configure --prefix=/usr \ + CFLAGS="$CFLAGS -I/usr/include/libdrm" ./configure --prefix=/usr \ --disable-static --without-dtrace \ --disable-xorg --disable-xnest --disable-xvfb --disable-dmx \ --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, January 25, 2018 @ 09:42:36 Author: spupykin Revision: 286760 upgpkg: tigervnc 1.8.0-4 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2018-01-25 09:42:15 UTC (rev 286759) +++ PKGBUILD2018-01-25 09:42:36 UTC (rev 286760) @@ -3,8 +3,8 @@ pkgname=tigervnc pkgver=1.8.0 -pkgrel=3 -_xorgver=1.19.5 +pkgrel=4 +_xorgver=1.19.6 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('x86_64') url="http://www.tigervnc.org"; @@ -24,7 +24,7 @@ vncserver.service vncviewer.desktop) sha256sums=('9951dab0e10f8de03996ec94bec0d938da9f36d48dca8c954e8bbc95c16338f8' -'18fffa8eb93d06d2800d06321fc0df4d357684d8d714315a66d8dfa7df251447' +'a732502f1db000cf36a376cd0c010ffdbf32ecdd7f1fa08ba7f5bdf9601cc197' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Wednesday, November 8, 2017 @ 11:39:08 Author: spupykin Revision: 265724 upgpkg: tigervnc 1.8.0-3 Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-11-08 11:38:58 UTC (rev 265723) +++ PKGBUILD2017-11-08 11:39:08 UTC (rev 265724) @@ -3,13 +3,13 @@ pkgname=tigervnc pkgver=1.8.0 -pkgrel=2 -_xorgver=1.19.3 +pkgrel=3 +_xorgver=1.19.5 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; license=('GPL') -depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' +depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' 'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2') makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' @@ -24,7 +24,7 @@ vncserver.service vncviewer.desktop) sha256sums=('9951dab0e10f8de03996ec94bec0d938da9f36d48dca8c954e8bbc95c16338f8' -'677a8166e03474719238dfe396ce673c4234735464d6dadf2959b600d20e5a98' +'18fffa8eb93d06d2800d06321fc0df4d357684d8d714315a66d8dfa7df251447' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' '2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Tuesday, May 23, 2017 @ 17:25:02 Author: spupykin Revision: 229774 upgpkg: tigervnc 1.8.0-2: FS#54162 - [tigervnc] Please add -DBUILD_JAVA=TRUE Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-05-23 17:24:56 UTC (rev 229773) +++ PKGBUILD2017-05-23 17:25:02 UTC (rev 229774) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.8.0 -pkgrel=1 +pkgrel=2 _xorgver=1.19.3 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' 'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto' -'mesa' 'imagemagick') +'mesa' 'imagemagick' 'java-environment=8') optdepends=('mesa: for OpenGL functionality in Xvnc') conflicts=('tightvnc') source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz @@ -38,7 +38,9 @@ build() { cd "$srcdir"/${pkgname}-${pkgver} - cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr + cmake -G "Unix Makefiles" \ +-DCMAKE_INSTALL_PREFIX=/usr \ +-DBUILD_JAVA=TRUE make cd unix/xserver @@ -49,7 +51,7 @@ --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \ --disable-config-hal --disable-config-udev --with-pic \ --disable-unit-tests --disable-devel-docs --disable-selective-werror \ - --disable-dri --enable-dri2 --enable-dri3 --enable-glx --enable-glx-tls + --disable-dri --enable-dri2 --enable-dri3 --enable-glx make }
[arch-commits] Commit in tigervnc/trunk (PKGBUILD gethomedir.patch xorg118.patch)
Date: Tuesday, May 16, 2017 @ 17:53:32 Author: spupykin Revision: 228284 upgpkg: tigervnc 1.8.0-1 Modified: tigervnc/trunk/PKGBUILD Deleted: tigervnc/trunk/gethomedir.patch tigervnc/trunk/xorg118.patch --+ PKGBUILD | 25 - gethomedir.patch | 20 xorg118.patch| 27 --- 3 files changed, 8 insertions(+), 64 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-05-16 17:06:24 UTC (rev 228283) +++ PKGBUILD2017-05-16 17:53:32 UTC (rev 228284) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.7.1 +pkgver=1.8.0 pkgrel=1 -_xorgver=1.18.4 +_xorgver=1.19.3 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -11,7 +11,7 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgl' 'libgcrypt' 'perl' 'libxdamage') +'libgl' 'libgcrypt' 'perl' 'libxdamage' 'libxfont2') makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' @@ -22,26 +22,17 @@ source=($pkgname-$pkgver.tar.gz::https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service - vncviewer.desktop - gethomedir.patch - xorg118.patch) -sha256sums=('3c021ec0bee4611020c0bcbab995b0ef2f6f1a46127a52b368827f3275527ccc' -'278459b2c31d61a15655d95a72fb79930c480a6bb8cf9226e48a07df8b1d31c8' + vncviewer.desktop) +sha256sums=('9951dab0e10f8de03996ec94bec0d938da9f36d48dca8c954e8bbc95c16338f8' +'677a8166e03474719238dfe396ce673c4234735464d6dadf2959b600d20e5a98' '80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' -'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7' -'589441f368159d18be931856c30bb1874d54392d80d58a39e3826f00cb0c110e' -'7764c6a6b3052042aefe571c9dce24b1b30359fc92853821eb78e9d14dd185db') +'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7') prepare() { cd "$srcdir"/${pkgname}-${pkgver} - -# patch -Np1 -i "$srcdir"/xorg118.patch - patch -Np1 -i "$srcdir"/gethomedir.patch - sed -i 's/iconic/nowin/' unix/vncserver - cd unix/xserver cp -r "$srcdir"/xorg-server-${_xorgver}/* . - patch -Np1 -i ../xserver117.patch + patch -Np1 -i ../xserver119.patch } build() { Deleted: gethomedir.patch === --- gethomedir.patch2017-05-16 17:06:24 UTC (rev 228283) +++ gethomedir.patch2017-05-16 17:53:32 UTC (rev 228284) @@ -1,20 +0,0 @@ -diff -ur tigervnc-1.2.0.orig/unix/xserver/hw/vnc/Makefile.am tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am tigervnc-1.2.0.orig/unix/xserver/hw/vnc/Makefile.am2011-10-31 09:14:40.0 +0100 -+++ tigervnc-1.2.0/unix/xserver/hw/vnc/Makefile.am 2012-09-06 19:44:04.431123087 +0200 -@@ -5,6 +5,7 @@ - RDR_LIB=$(LIB_DIR)/rdr/librdr.la - NETWORK_LIB=$(LIB_DIR)/network/libnetwork.la - XREGION_LIB=$(LIB_DIR)/Xregion/libXregion.la -+OS_LIB=$(LIB_DIR)/os/libos.la - COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB) - - noinst_LTLIBRARIES = libvnccommon.la -@@ -55,7 +56,7 @@ - - libvnc_la_LDFLAGS = -module -avoid-version - --libvnc_la_LIBADD = libvnccommon.la $(COMMON_LIBS) -+libvnc_la_LIBADD = libvnccommon.la $(COMMON_LIBS) $(OS_LIB) - - EXTRA_DIST = Xvnc.man - Deleted: xorg118.patch === --- xorg118.patch 2017-05-16 17:06:24 UTC (rev 228283) +++ xorg118.patch 2017-05-16 17:53:32 UTC (rev 228284) @@ -1,27 +0,0 @@ -diff -wbBur tigervnc-1.5.0/unix/xserver/hw/vnc/Input.c tigervnc-1.5.0.q/unix/xserver/hw/vnc/Input.c tigervnc-1.5.0/unix/xserver/hw/vnc/Input.c 2015-07-11 16:00:36.0 +0300 -+++ tigervnc-1.5.0.q/unix/xserver/hw/vnc/Input.c 2015-11-25 19:04:24.278747038 +0300 -@@ -300,6 +300,8 @@ - #if XORG < 111 - n = GetKeyboardEvents(eventq, dev, action, kc); - enqueueEvents(dev, n); -+#elif XORG > 117 -+ QueueKeyboardEvents(dev, action, kc); - #else - QueueKeyboardEvents(dev, action, kc, NULL); - #endif -diff -wbBur tigervnc-1.5.0/unix/xserver/hw/vnc/xorg-version.h tigervnc-1.5.0.q/unix/xserver/hw/vnc/xorg-version.h tigervnc-1.5.0/unix/xserver/hw/vnc/xorg-version.h 2015-07-11 16:00:36.0 +0300 -+++ tigervnc-1.5.0.q/unix/xserver/hw/vnc/xorg-version.h2015-11-25 19:02:47.688751421 +0300 -@@ -48,8 +48,10 @@ - #define XORG 116 - #el
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, January 23, 2017 @ 12:59:24 Author: spupykin Revision: 208529 upgpkg: tigervnc 1.7.1-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2017-01-23 12:56:38 UTC (rev 208528) +++ PKGBUILD2017-01-23 12:59:24 UTC (rev 208529) @@ -2,7 +2,7 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.7.0 +pkgver=1.7.1 pkgrel=1 _xorgver=1.18.4 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." @@ -25,12 +25,12 @@ vncviewer.desktop gethomedir.patch xorg118.patch) -md5sums=('0930edf4f339283d856ce7027db40308' - 'd4842dfe3bd9a9d062f2fa1df9104a46' - 'a8a20685c23a50f86a13c33ce96a7ba7' - 'b200d83c60e80c6f9693ea19a2d9f5b0' - '22f1523a0eca56ad79cfabd0db6e2cf6' - '2fd32181679077eb7f7ca06cf25f443f') +sha256sums=('3c021ec0bee4611020c0bcbab995b0ef2f6f1a46127a52b368827f3275527ccc' +'278459b2c31d61a15655d95a72fb79930c480a6bb8cf9226e48a07df8b1d31c8' +'80f8fc7598d05e645ae73bc3371bbdededf07136a9f024ce6ebbfe469335b16e' +'2ada7da1a926d78f11d2dd8ec376ac5877d2ce2bbb57a99526c13d8fcae6ddd7' +'589441f368159d18be931856c30bb1874d54392d80d58a39e3826f00cb0c110e' +'7764c6a6b3052042aefe571c9dce24b1b30359fc92853821eb78e9d14dd185db') prepare() { cd "$srcdir"/${pkgname}-${pkgver}
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, September 8, 2016 @ 16:39:01 Author: spupykin Revision: 189014 upgpkg: tigervnc 1.7.0-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2016-09-08 16:38:54 UTC (rev 189013) +++ PKGBUILD2016-09-08 16:39:01 UTC (rev 189014) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.6.0 +pkgver=1.7.0 pkgrel=1 -_xorgver=1.18.0 +_xorgver=1.18.4 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -25,9 +25,9 @@ vncviewer.desktop gethomedir.patch xorg118.patch) -md5sums=('78b736445781d86c48e942465a391ccc' - '3c1c1057d3ad27380d8dd87ffcc182cd' - '1aad8f06504b3e29a24ccfbaab617973' +md5sums=('0930edf4f339283d856ce7027db40308' + 'd4842dfe3bd9a9d062f2fa1df9104a46' + 'a8a20685c23a50f86a13c33ce96a7ba7' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' '2fd32181679077eb7f7ca06cf25f443f') @@ -35,7 +35,7 @@ prepare() { cd ${srcdir}/${pkgname}-${pkgver} - patch -Np1 -i ${srcdir}/xorg118.patch +# patch -Np1 -i ${srcdir}/xorg118.patch patch -Np1 -i ${srcdir}/gethomedir.patch sed -i 's/iconic/nowin/' unix/vncserver
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Friday, December 25, 2015 @ 13:43:19 Author: spupykin Revision: 154521 upgpkg: tigervnc 1.6.0-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-12-25 10:27:35 UTC (rev 154520) +++ PKGBUILD2015-12-25 12:43:19 UTC (rev 154521) @@ -2,8 +2,8 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.5.0 -pkgrel=3 +pkgver=1.6.0 +pkgrel=1 _xorgver=1.18.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -25,7 +25,7 @@ vncviewer.desktop gethomedir.patch xorg118.patch) -md5sums=('b11cc4c4d5249b9b8e355ee6f47ec4fe' +md5sums=('78b736445781d86c48e942465a391ccc' '3c1c1057d3ad27380d8dd87ffcc182cd' '1aad8f06504b3e29a24ccfbaab617973' 'b200d83c60e80c6f9693ea19a2d9f5b0' @@ -67,6 +67,8 @@ make DESTDIR=${pkgdir} install cd unix/xserver/hw/vnc make DESTDIR=${pkgdir} install + install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/contrib/systemd/user/vncserver@.service \ +$pkgdir/usr/lib/systemd/user/vncserver@.service install -Dm0644 $srcdir/vncserver.service $pkgdir/usr/lib/systemd/system/vncserver.service install -Dm0644 $srcdir/vncviewer.desktop $pkgdir/usr/share/applications/vncviewer.desktop }
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, December 7, 2015 @ 09:06:39 Author: bpiotrowski Revision: 149744 C++11 ABI rebuild Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2015-12-07 08:04:46 UTC (rev 149743) +++ PKGBUILD2015-12-07 08:06:39 UTC (rev 149744) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.5.0 -pkgrel=2 +pkgrel=3 _xorgver=1.18.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, July 13, 2015 @ 12:30:58 Author: spupykin Revision: 136773 upgpkg: tigervnc 1.5.0-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-07-13 10:06:28 UTC (rev 136772) +++ PKGBUILD2015-07-13 10:30:58 UTC (rev 136773) @@ -2,8 +2,8 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.4.3 -pkgrel=5 +pkgver=1.5.0 +pkgrel=1 _xorgver=1.17.2 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -27,7 +27,7 @@ getmaster.patch 0001-Raise-GnuTLS-requirements-to-3.x.patch xorg117.patch) -md5sums=('2177ee42fa1a3902b6feeaa7747f1c2a' +md5sums=('b11cc4c4d5249b9b8e355ee6f47ec4fe' '397e405566651150490ff493e463f1ad' '1aad8f06504b3e29a24ccfbaab617973' 'b200d83c60e80c6f9693ea19a2d9f5b0' @@ -40,14 +40,14 @@ cd ${srcdir}/${pkgname}-${pkgver} patch -Np1 -i ${srcdir}/gethomedir.patch - patch -Np1 -i ${srcdir}/getmaster.patch - patch -Np1 -i ${srcdir}/0001-Raise-GnuTLS-requirements-to-3.x.patch - patch -Np1 -i ${srcdir}/xorg117.patch +# patch -Np1 -i ${srcdir}/getmaster.patch +# patch -Np1 -i ${srcdir}/0001-Raise-GnuTLS-requirements-to-3.x.patch +# patch -Np1 -i ${srcdir}/xorg117.patch sed -i 's/iconic/nowin/' unix/vncserver cd unix/xserver cp -r ${srcdir}/xorg-server-${_xorgver}/* . - patch -Np1 -i ../xserver116.patch + patch -Np1 -i ../xserver117.patch } build() {
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, June 29, 2015 @ 12:44:24 Author: spupykin Revision: 136112 upgpkg: tigervnc 1.4.3-5 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-06-29 10:44:20 UTC (rev 136111) +++ PKGBUILD2015-06-29 10:44:24 UTC (rev 136112) @@ -3,8 +3,8 @@ pkgname=tigervnc pkgver=1.4.3 -pkgrel=4 -_xorgver=1.17.1 +pkgrel=5 +_xorgver=1.17.2 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -28,7 +28,7 @@ 0001-Raise-GnuTLS-requirements-to-3.x.patch xorg117.patch) md5sums=('2177ee42fa1a3902b6feeaa7747f1c2a' - '5986510d59e394a50126a8e2833e79d3' + '397e405566651150490ff493e463f1ad' '1aad8f06504b3e29a24ccfbaab617973' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' @@ -59,7 +59,7 @@ cd unix/xserver autoreconf -fiv ./configure --prefix=/usr \ - --disable-static --disable-xinerama --without-dtrace \ + --disable-static --without-dtrace \ --disable-xorg --disable-xnest --disable-xvfb --disable-dmx \ --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \ --disable-config-hal --disable-config-udev --with-pic \
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Friday, March 6, 2015 @ 11:58:42 Author: spupykin Revision: 128804 upgpkg: tigervnc 1.4.3-3 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-03-06 10:58:39 UTC (rev 128803) +++ PKGBUILD2015-03-06 10:58:42 UTC (rev 128804) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.4.3 -pkgrel=2 +pkgrel=3 _xorgver=1.17.1 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgl' 'libgcrypt' 'perl' ) +'libgl' 'libgcrypt' 'perl' 'libxdamage') makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto'
[arch-commits] Commit in tigervnc/trunk (PKGBUILD vncserver.service)
Date: Monday, March 2, 2015 @ 17:33:40 Author: spupykin Revision: 128555 upgpkg: tigervnc 1.4.3-2 upd Modified: tigervnc/trunk/PKGBUILD tigervnc/trunk/vncserver.service ---+ PKGBUILD |4 ++-- vncserver.service |4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-03-02 16:33:33 UTC (rev 128554) +++ PKGBUILD2015-03-02 16:33:40 UTC (rev 128555) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.4.3 -pkgrel=1 +pkgrel=2 _xorgver=1.17.1 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -28,7 +28,7 @@ xorg117.patch) md5sums=('2177ee42fa1a3902b6feeaa7747f1c2a' '5986510d59e394a50126a8e2833e79d3' - '87678d73cc7c3fcd12797da43a0d061e' + 'a8a20685c23a50f86a13c33ce96a7ba7' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' 'e056a2502dfe0cb3b02e08cab689482f' Modified: vncserver.service === --- vncserver.service 2015-03-02 16:33:33 UTC (rev 128554) +++ vncserver.service 2015-03-02 16:33:40 UTC (rev 128555) @@ -18,11 +18,11 @@ After=syslog.target network.target [Service] -Type=forking +Type=simple User= ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i >/dev/null 2>&1 || true' -ExecStart=/usr/bin/vncserver %i +ExecStart=/usr/bin/vncserver -fg %i ExecStop=/usr/bin/vncserver -kill %i [Install]
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, March 2, 2015 @ 12:00:49 Author: spupykin Revision: 128527 upgpkg: tigervnc 1.4.3-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-03-02 11:00:45 UTC (rev 128526) +++ PKGBUILD2015-03-02 11:00:49 UTC (rev 128527) @@ -2,7 +2,7 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.4.2 +pkgver=1.4.3 pkgrel=1 _xorgver=1.17.1 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." @@ -26,7 +26,7 @@ gethomedir.patch getmaster.patch xorg117.patch) -md5sums=('93b935487d0ec33341f079bc402df6b1' +md5sums=('2177ee42fa1a3902b6feeaa7747f1c2a' '5986510d59e394a50126a8e2833e79d3' '87678d73cc7c3fcd12797da43a0d061e' 'b200d83c60e80c6f9693ea19a2d9f5b0'
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Friday, January 23, 2015 @ 12:43:18 Author: spupykin Revision: 126450 upgpkg: tigervnc 1.4.1-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2015-01-23 11:43:15 UTC (rev 126449) +++ PKGBUILD2015-01-23 11:43:18 UTC (rev 126450) @@ -2,7 +2,7 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.4.0 +pkgver=1.4.1 pkgrel=1 _xorgver=1.16.2.901 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." @@ -26,7 +26,7 @@ gethomedir.patch getmaster.patch compile_fix.patch) -md5sums=('fd0288ad4b7bff8648fcb59fba177e0d' +md5sums=('b7ca7852d0477d74e932724c5197b0d6' '82cbcf6755787962e943d8e23495358d' '87678d73cc7c3fcd12797da43a0d061e' 'b200d83c60e80c6f9693ea19a2d9f5b0' @@ -39,7 +39,7 @@ patch -Np1 -i ${srcdir}/gethomedir.patch patch -Np1 -i ${srcdir}/getmaster.patch - patch -Np1 -i ${srcdir}/compile_fix.patch +# patch -Np1 -i ${srcdir}/compile_fix.patch sed -i 's/iconic/nowin/' unix/vncserver cd unix/xserver
[arch-commits] Commit in tigervnc/trunk (PKGBUILD compile_fix.patch)
Date: Monday, December 15, 2014 @ 18:39:36 Author: spupykin Revision: 123915 upgpkg: tigervnc 1.4.0-1 upd Added: tigervnc/trunk/compile_fix.patch Modified: tigervnc/trunk/PKGBUILD ---+ PKGBUILD | 20 +++- compile_fix.patch | 13 + 2 files changed, 24 insertions(+), 9 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-12-15 17:17:07 UTC (rev 123914) +++ PKGBUILD2014-12-15 17:39:36 UTC (rev 123915) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.3.90 +pkgver=1.4.0 pkgrel=1 -_xorgver=1.16.2 +_xorgver=1.16.2.901 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -11,14 +11,13 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgcrypt' 'perl' ) +'libgl' 'libgcrypt' 'perl' ) makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' 'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto' 'mesa' 'imagemagick') -optdepends=('mesa-dri: for OpenGL functionality in Xvnc' - 'libgl: for OpenGL functionality in Xvnc') +optdepends=('mesa: for OpenGL functionality in Xvnc') conflicts=('tightvnc') source=(https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 @@ -25,13 +24,15 @@ vncserver.service vncviewer.desktop gethomedir.patch - getmaster.patch) -md5sums=('d1aa5653d3b4e8a04b33e01f11d4fde0' - '89620960b13515db8d0a8dbb92a1378a' + getmaster.patch + compile_fix.patch) +md5sums=('fd0288ad4b7bff8648fcb59fba177e0d' + '82cbcf6755787962e943d8e23495358d' '87678d73cc7c3fcd12797da43a0d061e' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' - 'e056a2502dfe0cb3b02e08cab689482f') + 'e056a2502dfe0cb3b02e08cab689482f' + '557f978305b46b880dacd07461ad8db9') prepare() { cd ${srcdir}/${pkgname}-${pkgver} @@ -38,6 +39,7 @@ patch -Np1 -i ${srcdir}/gethomedir.patch patch -Np1 -i ${srcdir}/getmaster.patch + patch -Np1 -i ${srcdir}/compile_fix.patch sed -i 's/iconic/nowin/' unix/vncserver cd unix/xserver Added: compile_fix.patch === --- compile_fix.patch (rev 0) +++ compile_fix.patch 2014-12-15 17:39:36 UTC (rev 123915) @@ -0,0 +1,13 @@ +diff -ur tigervnc-1.4.0.orig/unix/xserver/hw/vnc/Makefile.am tigervnc-1.4.0/unix/xserver/hw/vnc/Makefile.am +--- tigervnc-1.4.0.orig/unix/xserver/hw/vnc/Makefile.am2014-12-10 11:18:40.0 +0100 tigervnc-1.4.0/unix/xserver/hw/vnc/Makefile.am 2014-12-14 23:17:54.569210661 +0100 +@@ -7,6 +7,9 @@ + XREGION_LIB=$(LIB_DIR)/Xregion/libXregion.la + COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB) + ++# Hack to get the C headers to work when included from C++ code ++AM_CXXFLAGS = -fpermissive ++ + noinst_LTLIBRARIES = libvnccommon.la + + HDRS = RegionHelper.h vncExtInit.h vncHooks.h XserverDesktop.h xorg-version.h \
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, November 24, 2014 @ 18:25:43 Author: spupykin Revision: 123071 upgpkg: tigervnc 1.3.90-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 29 + 1 file changed, 13 insertions(+), 16 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-11-24 17:25:26 UTC (rev 123070) +++ PKGBUILD2014-11-24 17:25:43 UTC (rev 123071) @@ -2,9 +2,9 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.3.1 -pkgrel=6 -_xorgver=1.16.0 +pkgver=1.3.90 +pkgrel=1 +_xorgver=1.16.2 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -11,29 +11,27 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgl' 'libgcrypt' 'perl' ) +'libgcrypt' 'perl' ) makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' 'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto' -'imagemagick' 'mesa') +'mesa' 'imagemagick') +optdepends=('mesa-dri: for OpenGL functionality in Xvnc' + 'libgl: for OpenGL functionality in Xvnc') conflicts=('tightvnc') -source=(http://downloads.sourceforge.net/project/tigervnc/tigervnc/$pkgver/tigervnc-$pkgver.tar.gz +source=(https://github.com/TigerVNC/tigervnc/archive/v${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service vncviewer.desktop gethomedir.patch - getmaster.patch - xorg116.patch - xserver116.patch) -md5sums=('e80b16aa74f1d8e89f284a6aef99955d' - '8a9ff6ee9907360f09b5bdabb8089502' + getmaster.patch) +md5sums=('d1aa5653d3b4e8a04b33e01f11d4fde0' + '89620960b13515db8d0a8dbb92a1378a' '87678d73cc7c3fcd12797da43a0d061e' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' - 'e056a2502dfe0cb3b02e08cab689482f' - 'e212f9d268a62af0349183a495bc55a5' - '948218a19eac135484267d9990502bf6') + 'e056a2502dfe0cb3b02e08cab689482f') prepare() { cd ${srcdir}/${pkgname}-${pkgver} @@ -40,12 +38,11 @@ patch -Np1 -i ${srcdir}/gethomedir.patch patch -Np1 -i ${srcdir}/getmaster.patch - patch -Np1 -i ${srcdir}/xorg116.patch sed -i 's/iconic/nowin/' unix/vncserver cd unix/xserver cp -r ${srcdir}/xorg-server-${_xorgver}/* . - patch -Np1 -i ${srcdir}/xserver116.patch + patch -Np1 -i ../xserver116.patch } build() {
[arch-commits] Commit in tigervnc/trunk (PKGBUILD vncserver.service)
Date: Tuesday, November 11, 2014 @ 17:10:40 Author: spupykin Revision: 122375 tigervnc: kill running server on start Modified: tigervnc/trunk/PKGBUILD tigervnc/trunk/vncserver.service ---+ PKGBUILD |2 +- vncserver.service |1 + 2 files changed, 2 insertions(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2014-11-11 15:54:09 UTC (rev 122374) +++ PKGBUILD2014-11-11 16:10:40 UTC (rev 122375) @@ -28,7 +28,7 @@ xserver116.patch) md5sums=('e80b16aa74f1d8e89f284a6aef99955d' '8a9ff6ee9907360f09b5bdabb8089502' - '0903d5a0dfa38e0b04964505b644585c' + '87678d73cc7c3fcd12797da43a0d061e' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' 'e056a2502dfe0cb3b02e08cab689482f' Modified: vncserver.service === --- vncserver.service 2014-11-11 15:54:09 UTC (rev 122374) +++ vncserver.service 2014-11-11 16:10:40 UTC (rev 122375) @@ -21,6 +21,7 @@ Type=forking User= +ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i >/dev/null 2>&1 || true' ExecStart=/usr/bin/vncserver %i ExecStop=/usr/bin/vncserver -kill %i
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, September 29, 2014 @ 12:57:10 Author: spupykin Revision: 119769 upgpkg: tigervnc 1.3.1-6 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-09-29 10:40:31 UTC (rev 119768) +++ PKGBUILD2014-09-29 10:57:10 UTC (rev 119769) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.3.1 -pkgrel=5 +pkgrel=6 _xorgver=1.16.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -11,12 +11,12 @@ license=('GPL') depends=('fltk' 'pam' 'gnutls' 'libjpeg-turbo' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' 'xkeyboard-config' 'xorg-xkbcomp' -'libgl' 'mesa' 'libgcrypt' 'perl' ) +'libgl' 'libgcrypt' 'perl' ) makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' 'xtrans' 'glproto' 'dri2proto' 'dri3proto' 'presentproto' -'imagemagick') +'imagemagick' 'mesa') conflicts=('tightvnc') source=(http://downloads.sourceforge.net/project/tigervnc/tigervnc/$pkgver/tigervnc-$pkgver.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2
[arch-commits] Commit in tigervnc/trunk (PKGBUILD xserver116.patch)
Date: Tuesday, August 5, 2014 @ 12:10:14 Author: spupykin Revision: 116892 upgpkg: tigervnc 1.3.1-5 upd Modified: tigervnc/trunk/PKGBUILD tigervnc/trunk/xserver116.patch --+ PKGBUILD |6 +++--- xserver116.patch | 30 ++ 2 files changed, 29 insertions(+), 7 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-08-05 10:10:11 UTC (rev 116891) +++ PKGBUILD2014-08-05 10:10:14 UTC (rev 116892) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.3.1 -pkgrel=4 +pkgrel=5 _xorgver=1.16.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -33,7 +33,7 @@ '22f1523a0eca56ad79cfabd0db6e2cf6' 'e056a2502dfe0cb3b02e08cab689482f' 'e212f9d268a62af0349183a495bc55a5' - '8b735b553efedd34cdeafc600be50a2a') + '948218a19eac135484267d9990502bf6') prepare() { cd ${srcdir}/${pkgname}-${pkgver} @@ -62,7 +62,7 @@ --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \ --disable-config-hal --disable-config-udev --with-pic \ --disable-unit-tests --disable-devel-docs --disable-selective-werror \ - --disable-dri --enable-dri2 --disable-dri3 --enable-glx --enable-glx-tls + --disable-dri --enable-dri2 --enable-dri3 --enable-glx --enable-glx-tls make } Modified: xserver116.patch === --- xserver116.patch2014-08-05 10:10:11 UTC (rev 116891) +++ xserver116.patch2014-08-05 10:10:14 UTC (rev 116892) @@ -1,6 +1,6 @@ diff -ur xorg-server-1.16.0.orig/configure.ac xorg-server-1.16.0/configure.ac --- xorg-server-1.16.0.orig/configure.ac 2014-07-17 09:00:51.0 +0200 -+++ xorg-server-1.16.0/configure.ac2014-07-19 00:46:53.492489158 +0200 xorg-server-1.16.0/configure.ac2014-08-04 20:43:26.856687998 +0200 @@ -74,6 +74,7 @@ AC_CONFIG_HEADERS(include/version-config.h) @@ -47,7 +47,7 @@ hw/xwin/Makefile diff -ur xorg-server-1.16.0.orig/hw/Makefile.am xorg-server-1.16.0/hw/Makefile.am --- xorg-server-1.16.0.orig/hw/Makefile.am 2014-04-16 22:24:00.0 +0200 -+++ xorg-server-1.16.0/hw/Makefile.am 2014-07-19 00:46:53.492489158 +0200 xorg-server-1.16.0/hw/Makefile.am 2014-08-04 20:43:26.856687998 +0200 @@ -38,7 +38,8 @@ $(DMX_SUBDIRS) \ $(KDRIVE_SUBDIRS) \ @@ -60,7 +60,7 @@ diff -ur xorg-server-1.16.0.orig/mi/miinitext.c xorg-server-1.16.0/mi/miinitext.c --- xorg-server-1.16.0.orig/mi/miinitext.c 2014-04-16 22:24:00.0 +0200 -+++ xorg-server-1.16.0/mi/miinitext.c 2014-07-19 00:46:53.492489158 +0200 xorg-server-1.16.0/mi/miinitext.c 2014-08-04 20:43:26.856687998 +0200 @@ -111,6 +111,10 @@ #include "micmap.h" #include "globals.h" @@ -84,7 +84,7 @@ #ifdef MITSHM diff -ur xorg-server-1.16.0.orig/os/WaitFor.c xorg-server-1.16.0/os/WaitFor.c --- xorg-server-1.16.0.orig/os/WaitFor.c 2014-02-05 04:08:57.0 +0100 -+++ xorg-server-1.16.0/os/WaitFor.c2014-07-19 00:46:53.493489158 +0200 xorg-server-1.16.0/os/WaitFor.c2014-08-04 20:44:26.350690385 +0200 @@ -125,6 +125,9 @@ static void CheckAllTimers(void); static OsTimerPtr timers = NULL; @@ -113,3 +113,25 @@ BlockHandler((void *) &wt, (void *) &LastSelectMask); if (NewOutputPending) FlushAllOutput(); +@@ -223,10 +230,20 @@ + i = Select(MaxClients, &LastSelectMask, &clientsWritable, NULL, wt); + } + else { +-i = Select(MaxClients, &LastSelectMask, NULL, NULL, wt); ++if (AnyClientsWriteBlocked) ++XFD_ORSET(&socketsWritable, &ClientsWriteBlocked, &socketsWritable); ++ ++if (XFD_ANYSET(&socketsWritable)) { ++i = Select (MaxClients, &LastSelectMask, &socketsWritable, NULL, wt); ++if (AnyClientsWriteBlocked) ++XFD_ANDSET(&clientsWritable, &socketsWritable, &ClientsWriteBlocked); ++} else { ++i = Select (MaxClients, &LastSelectMask, NULL, NULL, wt); ++} + } + selecterr = GetErrno(); + WakeupHandler(i, (void *) &LastSelectMask); ++vncWriteWakeupHandler(i, &socketsWritable); + if (i <= 0) { /* An error or timeout occurred */ + if (dispatchException) + return 0;
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, August 4, 2014 @ 17:04:28 Author: spupykin Revision: 116859 upgpkg: tigervnc 1.3.1-4 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-08-04 14:57:36 UTC (rev 116858) +++ PKGBUILD2014-08-04 15:04:28 UTC (rev 116859) @@ -3,7 +3,7 @@ pkgname=tigervnc pkgver=1.3.1 -pkgrel=3 +pkgrel=4 _xorgver=1.16.0 pkgdesc="Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -62,7 +62,7 @@ --disable-xwin --disable-xephyr --disable-kdrive --disable-xwayland \ --disable-config-hal --disable-config-udev --with-pic \ --disable-unit-tests --disable-devel-docs --disable-selective-werror \ - --disable-dri --enable-dri2 --enable-dri3 --enable-glx --enable-glx-tls + --disable-dri --enable-dri2 --disable-dri3 --enable-glx --enable-glx-tls make }
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, July 24, 2014 @ 15:26:37 Author: spupykin Revision: 116307 upgpkg: tigervnc 1.3.1-2 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-07-24 12:02:36 UTC (rev 116306) +++ PKGBUILD2014-07-24 13:26:37 UTC (rev 116307) @@ -4,8 +4,8 @@ pkgname=tigervnc pkgver=1.3.1 -pkgrel=1 -_xorgver=1.15.0 +pkgrel=2 +_xorgver=1.15.2 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -26,7 +26,7 @@ getmaster.patch xorg115.patch) md5sums=('e80b16aa74f1d8e89f284a6aef99955d' - 'c2ace3697b32414094cf8c597c39d7d9' + '69229fe5cdf3f20f74665d57b7601d26' '0903d5a0dfa38e0b04964505b644585c' 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6'
[arch-commits] Commit in tigervnc/trunk (PKGBUILD vncviewer.desktop)
Date: Friday, March 21, 2014 @ 22:07:18 Author: bgyorgy Revision: 108053 Various fixes for the .desktop file Modified: tigervnc/trunk/PKGBUILD tigervnc/trunk/vncviewer.desktop ---+ PKGBUILD |2 +- vncviewer.desktop |9 - 2 files changed, 5 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-03-21 20:04:05 UTC (rev 108052) +++ PKGBUILD2014-03-21 21:07:18 UTC (rev 108053) @@ -28,7 +28,7 @@ md5sums=('e80b16aa74f1d8e89f284a6aef99955d' 'c2ace3697b32414094cf8c597c39d7d9' '0903d5a0dfa38e0b04964505b644585c' - '71cac0fb9701b0a041430f0fddfe00c8' + 'b200d83c60e80c6f9693ea19a2d9f5b0' '22f1523a0eca56ad79cfabd0db6e2cf6' 'e056a2502dfe0cb3b02e08cab689482f' 'd7765cb11be43b557ee77dfa486fdb68') Modified: vncviewer.desktop === --- vncviewer.desktop 2014-03-21 20:04:05 UTC (rev 108052) +++ vncviewer.desktop 2014-03-21 21:07:18 UTC (rev 108053) @@ -1,10 +1,9 @@ [Desktop Entry] -Encoding=UTF-8 Type=Application -Name=TigerVNC viewer -Comment=TigerVNC viewer +Name=TigerVNC Viewer +Comment=VNC client Exec=/usr/bin/vncviewer -Icon=tigervnc.png +Icon=tigervnc Terminal=false StartupNotify=false -Categories=Application; Network; +Categories=Network;RemoteAccess;
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Thursday, March 20, 2014 @ 10:16:08 Author: spupykin Revision: 107840 upgpkg: tigervnc 1.3.1-1 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |8 1 file changed, 4 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-03-20 09:16:04 UTC (rev 107839) +++ PKGBUILD2014-03-20 09:16:08 UTC (rev 107840) @@ -3,8 +3,8 @@ # Maintainer: Uroš Vampl pkgname=tigervnc -pkgver=1.3.0 -pkgrel=4 +pkgver=1.3.1 +pkgrel=1 _xorgver=1.15.0 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' 'xtrans' 'mesa' 'glproto' 'dri2proto' 'imagemagick') conflicts=('tightvnc') -source=(http://downloads.sourceforge.net/project/tigervnc/tigervnc/$pkgver/tigervnc-$pkgver.tar.bz2 +source=(http://downloads.sourceforge.net/project/tigervnc/tigervnc/$pkgver/tigervnc-$pkgver.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service vncviewer.desktop @@ -25,7 +25,7 @@ gethomedir.patch getmaster.patch xorg115.patch) -md5sums=('a5158228e64d14496821a39bf3851f1b' +md5sums=('e80b16aa74f1d8e89f284a6aef99955d' 'c2ace3697b32414094cf8c597c39d7d9' '0903d5a0dfa38e0b04964505b644585c' '71cac0fb9701b0a041430f0fddfe00c8'
[arch-commits] Commit in tigervnc/trunk (PKGBUILD xorg115.patch)
Date: Wednesday, January 15, 2014 @ 10:51:26 Author: spupykin Revision: 104075 upgpkg: tigervnc 1.3.0-4 upd Added: tigervnc/trunk/xorg115.patch Modified: tigervnc/trunk/PKGBUILD ---+ PKGBUILD | 14 +- xorg115.patch | 15 +++ 2 files changed, 24 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2014-01-15 09:49:32 UTC (rev 104074) +++ PKGBUILD2014-01-15 09:51:26 UTC (rev 104075) @@ -4,8 +4,8 @@ pkgname=tigervnc pkgver=1.3.0 -pkgrel=3 -_xorgver=1.14.2 +pkgrel=4 +_xorgver=1.15.0 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -23,13 +23,15 @@ vncserver.service vncviewer.desktop gethomedir.patch - getmaster.patch) + getmaster.patch + xorg115.patch) md5sums=('a5158228e64d14496821a39bf3851f1b' - '5d36a6483e8e301875131e8302c67727' + 'c2ace3697b32414094cf8c597c39d7d9' '0903d5a0dfa38e0b04964505b644585c' '71cac0fb9701b0a041430f0fddfe00c8' '22f1523a0eca56ad79cfabd0db6e2cf6' - 'e056a2502dfe0cb3b02e08cab689482f') + 'e056a2502dfe0cb3b02e08cab689482f' + 'd7765cb11be43b557ee77dfa486fdb68') prepare() { cd ${srcdir}/${pkgname}-${pkgver} @@ -37,6 +39,7 @@ patch -Np1 -i ${srcdir}/gethomedir.patch patch -Np1 -i ${srcdir}/getmaster.patch + patch -Np1 -i ${srcdir}/xorg115.patch } build() { @@ -49,6 +52,7 @@ patch -Np1 -i ../xserver114.patch autoreconf -fiv ./configure --prefix=/usr \ + --disable-wayland --disable-present --disable-dri3 \ --disable-static --disable-xinerama --without-dtrace \ --disable-xorg --disable-xnest --disable-xvfb --disable-dmx \ --disable-xwin --disable-xephyr --disable-kdrive --with-pic \ Added: xorg115.patch === --- xorg115.patch (rev 0) +++ xorg115.patch 2014-01-15 09:51:26 UTC (rev 104075) @@ -0,0 +1,15 @@ +diff -up tigervnc-1.3.0/unix/xserver/hw/vnc/xorg-version.h.jx tigervnc-1.3.0/unix/xserver/hw/vnc/xorg-version.h +--- tigervnc-1.3.0/unix/xserver/hw/vnc/xorg-version.h.jx 2013-07-01 08:41:24.0 -0400 tigervnc-1.3.0/unix/xserver/hw/vnc/xorg-version.h 2013-11-07 11:39:49.749992669 -0500 +@@ -44,8 +44,10 @@ + #define XORG 113 + #elif XORG_VERSION_CURRENT < ((1 * 1000) + (14 * 10) + (99 * 1000)) + #define XORG 114 ++#elif XORG_VERSION_CURRENT < ((1 * 1000) + (15 * 10) + (99 * 1000)) ++#define XORG 115 + #else +-#error "X.Org newer than 1.14 is not supported" ++#error "X.Org newer than 1.15 is not supported" + #endif + + #endif
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Tuesday, September 24, 2013 @ 12:30:45 Author: spupykin Revision: 97560 upgpkg: tigervnc 1.3.0-3 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-09-24 10:30:40 UTC (rev 97559) +++ PKGBUILD2013-09-24 10:30:45 UTC (rev 97560) @@ -4,7 +4,7 @@ pkgname=tigervnc pkgver=1.3.0 -pkgrel=2 +pkgrel=3 _xorgver=1.14.2 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64')
[arch-commits] Commit in tigervnc/trunk (PKGBUILD)
Date: Monday, June 24, 2013 @ 11:55:38 Author: spupykin Revision: 93092 upgpkg: tigervnc 1.2.0-13 upd Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-06-24 09:55:33 UTC (rev 93091) +++ PKGBUILD2013-06-24 09:55:38 UTC (rev 93092) @@ -4,7 +4,7 @@ pkgname=tigervnc pkgver=1.2.0 -pkgrel=12 +pkgrel=13 _xorgver=1.14.0 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('GPL') depends=('pam' 'gnutls' 'libjpeg-turbo' 'libxft' 'libxinerama' 'libxcursor' 'libxtst' 'libxfont' 'pixman' 'xorg-xauth' 'xorg-xsetroot' -'xkeyboard-config' 'libgl' 'libgcrypt' 'perl') +'xkeyboard-config' 'libgl' 'libgcrypt' 'perl' 'xorg-xkbcomp') makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto'
[arch-commits] Commit in tigervnc/trunk (PKGBUILD xorg114.patch xserver114.patch)
Date: Wednesday, March 20, 2013 @ 16:09:07 Author: spupykin Revision: 86601 upgpkg: tigervnc 1.2.0-12 upd Added: tigervnc/trunk/xorg114.patch tigervnc/trunk/xserver114.patch Modified: tigervnc/trunk/PKGBUILD --+ PKGBUILD | 13 +--- xorg114.patch| 28 + xserver114.patch | 84 + 3 files changed, 121 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-20 14:37:11 UTC (rev 86600) +++ PKGBUILD2013-03-20 15:09:07 UTC (rev 86601) @@ -4,8 +4,8 @@ pkgname=tigervnc pkgver=1.2.0 -pkgrel=11 -_xorgver=1.13.2 +pkgrel=12 +_xorgver=1.14.0 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -26,19 +26,23 @@ xorg111.patch xorg112.patch xorg113.patch + xorg114.patch xserver113.patch + xserver114.patch glx.patch gnutls.patch gethomedir.patch cmakelists.patch) md5sums=('3a5755b4ed600a81c3a17976c6f8420d' - '553fd7902e1156115f15cc1656f46a6f' + '86110278b784e279381b7f6f2295c508' '0903d5a0dfa38e0b04964505b644585c' '15c0405f920c3dac250692e8922578d1' 'b680b55f7f9f569cd26ac0b330012a8b' 'f73e055153889ae7b5aac8e697f7a841' 'ef4078ba31a583dc3134e9090fbd30d0' + '72518a7a1e7d3721ebe7404dcd8b3d01' 'fabbe561d4ac845317ffdbf1bb2eeb02' + '928faf837ba5b1b34283f9f018df2f5e' '4b86c015c78a0360205fdcf511ea1c39' '1a5fe8867ab3e49e20aafc70c415494f' 'fa059baabe72308bf82622bca73cb3e0' @@ -54,6 +58,7 @@ patch -Np1 -i ${srcdir}/xorg111.patch patch -Np1 -i ${srcdir}/xorg112.patch patch -Np1 -i ${srcdir}/xorg113.patch + patch -Np1 -i ${srcdir}/xorg114.patch patch -Np1 -i ${srcdir}/glx.patch cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr -DUSE_INCLUDED_FLTK=yes @@ -61,7 +66,7 @@ make -C media cd unix/xserver - patch -Np3 -i ${srcdir}/xserver113.patch + patch -Np1 -i ${srcdir}/xserver114.patch autoreconf -fiv ./configure --prefix=/usr \ --disable-static --disable-xinerama --without-dtrace \ Added: xorg114.patch === --- xorg114.patch (rev 0) +++ xorg114.patch 2013-03-20 15:09:07 UTC (rev 86601) @@ -0,0 +1,28 @@ +diff -ur tigervnc-1.2.0.orig/unix/xserver/hw/vnc/xorg-version.h tigervnc-1.2.0/unix/xserver/hw/vnc/xorg-version.h +--- tigervnc-1.2.0.orig/unix/xserver/hw/vnc/xorg-version.h 2013-03-19 16:22:42.240358422 +0100 tigervnc-1.2.0/unix/xserver/hw/vnc/xorg-version.h 2013-03-19 16:23:33.846355724 +0100 +@@ -42,8 +42,10 @@ + #define XORG 112 + #elif XORG_VERSION_CURRENT < ((1 * 1000) + (13 * 10) + (99 * 1000)) + #define XORG 113 ++#elif XORG_VERSION_CURRENT < ((1 * 1000) + (14 * 10) + (99 * 1000)) ++#define XORG 114 + #else +-#error "X.Org newer than 1.13 is not supported" ++#error "X.Org newer than 1.14 is not supported" + #endif + + #endif +diff -ur tigervnc-1.2.0.orig/unix/xserver/hw/vnc/xvnc.cc tigervnc-1.2.0/unix/xserver/hw/vnc/xvnc.cc +--- tigervnc-1.2.0.orig/unix/xserver/hw/vnc/xvnc.cc2013-03-19 16:22:51.327357948 +0100 tigervnc-1.2.0/unix/xserver/hw/vnc/xvnc.cc 2013-03-19 16:23:33.847355727 +0100 +@@ -54,7 +54,9 @@ + #include "servermd.h" + #include "fb.h" + #include "mi.h" ++#if XORG < 114 + #include "mibstore.h" ++#endif + #include "colormapst.h" + #include "gcstruct.h" + #include "input.h" Added: xserver114.patch === --- xserver114.patch(rev 0) +++ xserver114.patch2013-03-20 15:09:07 UTC (rev 86601) @@ -0,0 +1,84 @@ +diff -up xorg-server-20130109/configure.ac.vnc xorg-server-20130109/configure.ac +--- xorg-server-20130109/configure.ac.vnc 2013-01-24 13:01:31.013267503 +0100 xorg-server-20130109/configure.ac 2013-01-24 13:08:43.283941751 +0100 +@@ -72,6 +72,7 @@ dnl forcing an entire recompile.x + AC_CONFIG_HEADERS(include/version-config.h) + + AM_PROG_AS ++AC_PROG_CXX + AC_PROG_LN_S + AC_LIBTOOL_WIN32_DLL + AC_DISABLE_STATIC +@@ -1573,6 +1574,10 @@ if test "x$XVFB" = xyes; then + AC_SUBST([XVFB_SYS_LIBS]) + fi + ++dnl Xvnc DDX ++AC_SUBST([XVNC_CPPFLAGS], ["-DHAVE_DIX_CONFIG_H $XSERVER_CFLAGS"]) ++AC_SUBST([XVNC_LIBS], ["$FB_LIB $FIXES_LIB $XEXT_LIB $CONFIG_LIB $DBE_LIB $RECORD_LIB $GLX_LIBS $RANDR_LIB $RENDER_LIB $DAMAGE_LIB $MIEXT_SYNC_LIB $MIEXT_DAMAGE_LIB $MIEXT_SHADOW_LIB $XI_LIB $XKB_LIB $XKB_STUB_LIB $COMPOSITE_LIB $MAIN_LIB"]) ++AC_SUBST([XVNC_SYS_LIBS], ["$GLX_SYS_LIBS"]) + + dnl Xnest DDX + +@@ -1608,6 +1613,8 @@ if test "x$XORG" = xauto; then + fi + AC_MSG_RESULT([$XORG]) + ++AC_DEFINE_UNQUOTED(XORG_VERSION_CURRENT, [$VENDOR_RELEASE], [Current
[arch-commits] Commit in tigervnc/trunk (PKGBUILD vncviewer.desktop)
Date: Wednesday, February 13, 2013 @ 11:41:41 Author: spupykin Revision: 84182 upgpkg: tigervnc 1.2.0-11 upd Added: tigervnc/trunk/vncviewer.desktop Modified: tigervnc/trunk/PKGBUILD ---+ PKGBUILD | 14 ++ vncviewer.desktop | 10 ++ 2 files changed, 20 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-02-13 10:41:21 UTC (rev 84181) +++ PKGBUILD2013-02-13 10:41:41 UTC (rev 84182) @@ -4,8 +4,8 @@ pkgname=tigervnc pkgver=1.2.0 -pkgrel=10 -_xorgver=1.13.1 +pkgrel=11 +_xorgver=1.13.2 pkgdesc="suite of VNC servers and clients. VNC 4 branch of TightVNC." arch=('i686' 'x86_64') url="http://www.tigervnc.org"; @@ -16,12 +16,13 @@ makedepends=('cmake' 'nasm' 'xorg-font-util' 'xorg-util-macros' 'bigreqsproto' 'compositeproto' 'damageproto' 'randrproto' 'resourceproto' 'scrnsaverproto' 'videoproto' 'xcmiscproto' 'xf86vidmodeproto' -'xtrans' 'mesa' 'glproto' 'dri2proto') +'xtrans' 'mesa' 'glproto' 'dri2proto' 'imagemagick' 'librsvg') options=(!libtool) conflicts=('tightvnc') source=(http://downloads.sourceforge.net/tigervnc/${pkgname}-${pkgver}.tar.gz ftp://ftp.freedesktop.org/pub/xorg/individual/xserver/xorg-server-${_xorgver}.tar.bz2 vncserver.service + vncviewer.desktop xorg111.patch xorg112.patch xorg113.patch @@ -31,8 +32,9 @@ gethomedir.patch cmakelists.patch) md5sums=('3a5755b4ed600a81c3a17976c6f8420d' - 'a13d8876e3e804189392119638a07a1f' + '553fd7902e1156115f15cc1656f46a6f' '0903d5a0dfa38e0b04964505b644585c' + '15c0405f920c3dac250692e8922578d1' 'b680b55f7f9f569cd26ac0b330012a8b' 'f73e055153889ae7b5aac8e697f7a841' 'ef4078ba31a583dc3134e9090fbd30d0' @@ -56,6 +58,7 @@ cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr -DUSE_INCLUDED_FLTK=yes make + make -C media cd unix/xserver patch -Np3 -i ${srcdir}/xserver113.patch @@ -77,4 +80,7 @@ make DESTDIR=${pkgdir} install sed -i 's/iconic/nowin/' ${pkgdir}/usr/bin/vncserver install -Dm0644 $srcdir/vncserver.service $pkgdir/usr/lib/systemd/system/vncserver.service + install -dm0755 $pkgdir/usr/share/icons + install -m0644 ${srcdir}/${pkgname}-${pkgver}/media/icons/* $pkgdir/usr/share/icons/ + install -Dm0644 $srcdir/vncviewer.desktop $pkgdir/usr/share/applications/vncviewer.desktop } Added: vncviewer.desktop === --- vncviewer.desktop (rev 0) +++ vncviewer.desktop 2013-02-13 10:41:41 UTC (rev 84182) @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Name=TigerVNC viewer +Comment=TigerVNC viewer +Exec=/usr/bin/vncviewer +Icon=tigervnc_32.png +Terminal=false +StartupNotify=false +Categories=Application; Network;