Package Details: sunshine 0.23.1-1

Git Clone URL: https://aur.archlinux.org/sunshine.git (read-only, click to copy)
Package Base: sunshine
Description: A self-hosted GameStream host for Moonlight.
Upstream URL: https://app.lizardbyte.dev
Keywords: gaming moonlight streaming
Licenses: GPL-3.0-only
Submitter: hadogenes
Maintainer: LizardByte (KuleRucket)
Last Packager: KuleRucket
Votes: 41
Popularity: 2.36
First Submitted: 2021-04-26 11:33 (UTC)
Last Updated: 2024-04-24 10:48 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

LizardByte commented on 2023-02-08 17:54 (UTC)

Please see here (https://discord.com/channels/804382334370578482/1020335711607599144/1072884852594057299) for an important message about testing a change to our AUR packaging. You can join our discord at https://app.lizardbyte.dev/discord ... We really need some people to test this out. If no one wants to test it then changes will get pushed anyway, but we'd like feedback before pushing updates here.

LizardByte commented on 2023-01-25 03:41 (UTC)

@patlefort This was unintentional and has been fixed. https://github.com/LizardByte/Sunshine/issues/678 ... You will now only see an update on release events.

patlefort commented on 2023-01-24 01:49 (UTC)

I just noticed that this package's source is being updated automatically while the version isn't changing. That shouldn't be the case, it's expected that a package named sunshine would provide only stable releases from upstream and maybe incorporate patches if they are important. If people want the absolute latest from git, you can create a sunshine-git package (https://wiki.archlinux.org/title/VCS_package_guidelines).

patlefort commented on 2023-01-24 00:33 (UTC)

The required capability could be added automatically with an install script (https://wiki.archlinux.org/title/PKGBUILD#install).

Alternatively, one can use a pacman hook:

Create a /usr/local/bin/setcap-sunshine.sh file:

#!/usr/bin/env sh
sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine))

Create /etc/pacman.d/hooks/sunshine.hook:

[Trigger]
Operation = Install
Operation = Upgrade
Type = Package
Target = sunshine

[Action]
Description = Add cap_sys_admin capability to sunshine.
When = PostTransaction
Depends = libcap
Exec = /usr/local/bin/setcap-sunshine.sh

shizzle commented on 2022-12-14 19:23 (UTC)

Upgrading from 0.15 to 0.16 needed a sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine)) to make it working again. Got Mismatch on expected Resolution compared to actual resolution: 0x0 vs 1920x1200 followed by sunshine.service: Main process exited, code=exited, status=4/NOPERMISSION in the logs before executing setcap.

nisegami commented on 2022-12-13 12:45 (UTC)

@alosarjos same here. I see a PR regarding preparing for 0.16 that got merged into the nightly branch, but nothing on master.

alosarjos commented on 2022-12-13 06:07 (UTC)

Am I missing something? I don't see any release/tag for 0.16

LizardByte commented on 2022-08-19 23:20 (UTC)

@facet try sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine)) ... this is in our docs, here: https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/usage.html#linux

facet commented on 2022-08-17 16:47 (UTC)

The comment and log suggest me run sudo setcap cap_sys_admin+p /usr/bin/sunshine, but I got Invalid file '/usr/bin/sunshine' for capability operation

katt commented on 2022-08-10 21:13 (UTC)

Small nitpick: pkgdesc shouldn't include the applications name: https://wiki.archlinux.org/title/PKGBUILD#pkgdesc