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

Gaetan Bisson bisson at nymeria.archlinux.org
Mon Dec 23 05:41:09 UTC 2013


    Date: Monday, December 23, 2013 @ 06:41:09
  Author: bisson
Revision: 202637

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

Added:
  x11vnc/repos/extra-i686/PKGBUILD
    (from rev 202636, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/extra-i686/service
    (from rev 202636, x11vnc/trunk/service)
  x11vnc/repos/extra-x86_64/PKGBUILD
    (from rev 202636, x11vnc/trunk/PKGBUILD)
  x11vnc/repos/extra-x86_64/service
    (from rev 202636, x11vnc/trunk/service)
Deleted:
  x11vnc/repos/extra-i686/PKGBUILD
  x11vnc/repos/extra-i686/service
  x11vnc/repos/extra-x86_64/PKGBUILD
  x11vnc/repos/extra-x86_64/service

-----------------------+
 /PKGBUILD             |   62 ++++++++++++++++++++++++++++++++++++++++++++++++
 /service              |   14 ++++++++++
 extra-i686/PKGBUILD   |   30 -----------------------
 extra-i686/service    |    7 -----
 extra-x86_64/PKGBUILD |   30 -----------------------
 extra-x86_64/service  |    7 -----
 6 files changed, 76 insertions(+), 74 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2013-12-23 05:40:35 UTC (rev 202636)
+++ extra-i686/PKGBUILD	2013-12-23 05:41:09 UTC (rev 202637)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=x11vnc
-pkgver=0.9.13
-pkgrel=4
-pkgdesc='VNC server for real X displays'
-url='http://www.karlrunge.com/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-optdepends=('tk: for GUI support')
-depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
-source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
-        'service')
-sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
-          '53e1ed7f84518a699a29607a03bee2321f9f9624')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	./configure --prefix=/usr --mandir=/usr/share/man
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-	install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
-	rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
-}

Copied: x11vnc/repos/extra-i686/PKGBUILD (from rev 202636, x11vnc/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2013-12-23 05:41:09 UTC (rev 202637)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=5
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support'
+            'net-tools: for -auth guess')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+        'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+          '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure --prefix=/usr --mandir=/usr/share/man
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+	install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+	rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Deleted: extra-i686/service
===================================================================
--- extra-i686/service	2013-12-23 05:40:35 UTC (rev 202636)
+++ extra-i686/service	2013-12-23 05:41:09 UTC (rev 202637)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/extra-i686/service (from rev 202636, x11vnc/trunk/service)
===================================================================
--- extra-i686/service	                        (rev 0)
+++ extra-i686/service	2013-12-23 05:41:09 UTC (rev 202637)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2013-12-23 05:40:35 UTC (rev 202636)
+++ extra-x86_64/PKGBUILD	2013-12-23 05:41:09 UTC (rev 202637)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson <bisson at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=x11vnc
-pkgver=0.9.13
-pkgrel=4
-pkgdesc='VNC server for real X displays'
-url='http://www.karlrunge.com/x11vnc/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-optdepends=('tk: for GUI support')
-depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
-source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
-        'service')
-sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
-          '53e1ed7f84518a699a29607a03bee2321f9f9624')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	./configure --prefix=/usr --mandir=/usr/share/man
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}" install
-	install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
-	rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
-}

Copied: x11vnc/repos/extra-x86_64/PKGBUILD (from rev 202636, x11vnc/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2013-12-23 05:41:09 UTC (rev 202637)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=x11vnc
+pkgver=0.9.13
+pkgrel=5
+pkgdesc='VNC server for real X displays'
+url='http://www.karlrunge.com/x11vnc/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+optdepends=('tk: for GUI support'
+            'net-tools: for -auth guess')
+depends=('openssl' 'libjpeg' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi')
+source=("http://downloads.sourceforge.net/project/libvncserver/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+        'service')
+sha1sums=('f011d81488ac94dc8dce2d88739c23bd85a976fa'
+          '53e1ed7f84518a699a29607a03bee2321f9f9624')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure --prefix=/usr --mandir=/usr/share/man
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}" install
+	install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/x11vnc.service"
+	rm -fr "${pkgdir}"/usr/include/rfb # provided by libvncserver
+}

Deleted: extra-x86_64/service
===================================================================
--- extra-x86_64/service	2013-12-23 05:40:35 UTC (rev 202636)
+++ extra-x86_64/service	2013-12-23 05:41:09 UTC (rev 202637)
@@ -1,7 +0,0 @@
-[Unit]
-Description=VNC Server for X11
-Requires=graphical.target
-After=graphical.target
-
-[Service]
-ExecStart=/usr/bin/x11vnc

Copied: x11vnc/repos/extra-x86_64/service (from rev 202636, x11vnc/trunk/service)
===================================================================
--- extra-x86_64/service	                        (rev 0)
+++ extra-x86_64/service	2013-12-23 05:41:09 UTC (rev 202637)
@@ -0,0 +1,7 @@
+[Unit]
+Description=VNC Server for X11
+Requires=graphical.target
+After=graphical.target
+
+[Service]
+ExecStart=/usr/bin/x11vnc




More information about the arch-commits mailing list