Package Details: websockify 0.11.0-2

Git Clone URL: https://aur.archlinux.org/websockify.git (read-only, click to copy)
Package Base: websockify
Description: WebSockets support for any application/server
Upstream URL: https://github.com/novnc/websockify
Licenses: LGPL3
Submitter: moscar
Maintainer: seiuneko
Last Packager: seiuneko
Votes: 8
Popularity: 0.009801
First Submitted: 2013-03-31 00:23 (UTC)
Last Updated: 2023-10-18 13:42 (UTC)

Latest Comments

1 2 Next › Last »

seiuneko commented on 2023-10-18 13:43 (UTC)

@leuko updated.

leuko commented on 2023-10-18 10:49 (UTC)

rebind.so is not bundled in this package which is for example used by jupyter-remote-server-proxy. Can you please bundle rebind.so @seiuneko ?

Modifications to include rebind.so:

 build() {
...
       python setup.py build
+       make
 }

package() {
...
+       install -Dm644 rebind.so "$pkgdir"/usr/lib/websockify/rebind.so
 }

sergeimipt commented on 2023-08-03 12:13 (UTC)

for those having the error when running noVNC: "No package metadata was found for websockify" I fixed it with the following command:

yay -S --rebuild --noconfirm websockify

it rebuilds websockify. Python upgrade from 3.10 to 3.11 caused this at me.

jcaesar commented on 2021-05-16 11:24 (UTC)

fromstring was deprecated since python 3.2 and removed in 3.9. The problem can be fixed by backporting this patch: https://github.com/novnc/websockify/commit/33710b397230e239a202c650ceaa8148a1a45c01

kolcon commented on 2021-03-16 12:35 (UTC)

websockify[15338]: handler exception: 'array.array' object has no attribute 'fromstring'

seiuneko commented on 2020-05-17 05:34 (UTC)

@elafon Thanks, updated.

elafon commented on 2020-05-05 15:47 (UTC)

Hi,

The package needs to add python-setuptools as a required install and make dependency. Otherwise, the package building and installation will end with errors.

I suggest this patch to fix this issue:

diff --git a/PKGBUILD b/PKGBUILD
index 7300593..a9b1fc9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,13 +3,13 @@

 pkgname=websockify
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="WebSockets support for any application/server"
 license=('LGPL3')
 arch=('any')
 url="http://github.com/novnc/websockify"
-makedepends=(python)
-depends=(python)
+makedepends=('python' 'python-setuptools')
+depends=('python' 'python-setuptools')
 optdepends=('python-numpy: for better HyBi protocol performance')
 source=("$pkgname-$pkgver.tar.gz::https://github.com/novnc/$pkgname/archive/v${pkgver}.tar.gz")
 sha512sums=('d2251f653a40dc6dca0e5541845565d968c60be96a20a9b70b0305c4b7578f7fe205d4b98a94bb77d7c9383a396833af90fe92a6ade7e1a6f2d9bf8513d372c8')

Cheers.

chr0mag commented on 2018-08-17 17:41 (UTC)

Moving to python3 has broken wokd (and presumably other packages) that rely on a python2 version of websockify. I suppose the solution is to build packages for both python versions.

rpodgorny commented on 2018-07-23 22:10 (UTC)

adopted, updated. thank you very much!

moscar commented on 2018-07-21 23:45 (UTC)

I have not used this package in a very long time and I have no desire to maintain it at this point. I'm disowning it so someone else can pick it up.