Package Details: sway-git 1.9.r7273.a4e8533-1

Git Clone URL: https://aur.archlinux.org/sway-git.git (read-only, click to copy)
Package Base: sway-git
Description: Tiling Wayland compositor and replacement for the i3 window manager (git development version)
Upstream URL: https://github.com/swaywm/sway
Keywords: compositor development git i3 manager sway tiling wayland window wlroots wm
Licenses: MIT
Conflicts: sway
Provides: sway
Submitter: None
Maintainer: GreyXor
Last Packager: GreyXor
Votes: 146
Popularity: 1.44
First Submitted: 2015-08-16 14:05 (UTC)
Last Updated: 2024-01-24 20:08 (UTC)

Dependencies (31)

Required by (45)

Sources (3)

Latest Comments

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

rpi2 commented on 2021-11-05 10:27 (UTC)

since WLR_RENDERER=vulkan merged.

but still fail WLR_RENDERER=vulkan [wlr] [render/vulkan/vulkan.c:206] Could not create instance: ERROR_LAYER_NOT_PRESENT [wlr] [render/vulkan/renderer.c:15251] creating vulkan instance for renderer failed [wlr] [backend/drm/renderer.c:351] Failed to create renderer [wlr] [backend/backend.c:2301] Failed to create DRM backend

PopeRigby commented on 2021-07-18 17:58 (UTC)

@deatheye did you get this error?

==> ERROR: Could not resolve all dependencies.
error: failed to build 'sway-git-r6607.28cadf55-1':
error: packages failed to buid: swaybg-git-r95.a8f109a-1  wlroots-git-0.14.0.r28.ga38baec1-1  sway-git-r6607.28cadf55-1

Rucikir commented on 2021-03-30 09:45 (UTC)

@deathye Could you be more explicit? What isn't working?

lockeanarchist commented on 2021-03-29 21:59 (UTC)

not working after the last arch update

lmartinez-mirror commented on 2021-03-05 02:02 (UTC)

sway depends on xcb-util-renderutil and will not run without it. Please add it to depends()

Rucikir commented on 2021-01-26 10:33 (UTC) (edited on 2021-01-26 10:35 (UTC) by Rucikir)

@auruser123

Subprojects wlroots: NO Neither a subproject directory nor a wlroots.wrap file was found.

Which means sway-git will be built without wlroots, and nothing would work AFAICT.

Meson has multiple ways of detecting dependencies:

  • as a subproject;
  • using Meson integrated package manager (wlroots.wrap);
  • from the system (standard include, pkgconfig, CMake, …).

The complete log is:

Neither a subproject directory nor a wlroots.wrap file was found.
Subproject  wlroots is buildable: NO (disabling)
Run-time dependency wlroots found: YES 0.12.0

So you can see that wlroots is found when building sway. If not, sway would simply not build as it's a required dependency. That Dockerfile should reproduce your workflow, and it's working fine. If you can reproduce your problem, please send me a Dockerfile so that I can understand it if I'm missing something.

FROM archlinux/archlinux:base-devel
RUN pacman -Sy --noconfirm && pacman -S --noconfirm --needed git
RUN useradd -m user && passwd -d user && printf 'user ALL=(ALL) ALL\n' | tee -a /etc/sudoers
USER user
WORKDIR /home/user
RUN git clone https://aur.archlinux.org/wlroots-git.git
RUN cd wlroots-git && makepkg -si --noconfirm --needed
RUN git clone https://aur.archlinux.org/swaybg-git.git
RUN cd swaybg-git && makepkg -si --noconfirm --needed
RUN git clone https://aur.archlinux.org/sway-git.git
RUN cd sway-git && makepkg -si --noconfirm --needed

auruser123 commented on 2021-01-25 09:37 (UTC)

I just reproduced this again. I installed wlroots-git, and then installed sway-git. While building sway-git, I get:

Subprojects wlroots: NO Neither a subproject directory nor a wlroots.wrap file was found.

Which means sway-git will be built without wlroots, and nothing would work AFAICT.

Rucikir commented on 2021-01-20 17:04 (UTC)

@auruser123 are you sure? Could you provide the exact logs?
I cannot reproduce and build wlroots-git-0.12.0.r267.g306cf11d-1 and sway-git-r6581.62ec528c-1 just fine in a clean environment.

auruser123 commented on 2021-01-18 10:49 (UTC)

with the last wlroots-git , sway-git is built without wlroots, and fails to start citing a missing wayland interface

Rucikir commented on 2021-01-13 19:14 (UTC)

@cvelteren Are you sure? No problem building wlroots-git-0.12.0.r224.gdc61f471-1 and sway-git r6575.97adba05-1 for me. Maybe the problem has been fixed upstream.