Package Details: dmenu-wayland-git 4.2.1.r59.a380201-2

Git Clone URL: https://aur.archlinux.org/dmenu-wayland-git.git (read-only, click to copy)
Package Base: dmenu-wayland-git
Description: Wayland port of a generic menu for X
Upstream URL: https://github.com/nyyManni/dmenu-wayland
Licenses: MIT
Conflicts: dmenu-wayland
Provides: dmenu-wayland
Submitter: depau
Maintainer: jdev082
Last Packager: jdev082
Votes: 6
Popularity: 0.031418
First Submitted: 2019-04-19 20:43 (UTC)
Last Updated: 2023-07-16 21:40 (UTC)

Latest Comments

1 2 Next › Last »

jdev082 commented on 2023-07-16 21:54 (UTC)

I have created the package dmenu-wl-dmenu-dropin that provides dmenu and creates the symlinks.

jdev082 commented on 2023-07-16 21:40 (UTC)

I have removed the dmenu symlinks and will be creating a package that includes these symlinks later on.

intothegnu commented on 2022-12-28 14:58 (UTC)

This package shouldn't have the dmenu => dmenu-wl symlinks just to make it conflict with dmenu and give headaches to who wants to use X11 and Wayland on the same system.

Those symlinks should be in another package, dmenu-wl-dmenu-dropin, or something.

DustVoice commented on 2022-08-26 13:18 (UTC) (edited on 2022-08-26 13:20 (UTC) by DustVoice)

This package should NOT conflict with dmenu. It only provides symlinks for dmenu => dmenu-wl, etc. This is really bad, cause I have both X11 and Wayland installed and setup to work simultaneously. I want to use both dmenu and dmenu-wl and I see no reason why that shouldn't be possible, despite this PKGBUILD making them conflict!

I would love to receive some kind of response, as architector4 submitted the same request over 1 1/2 years ago.

architector4 commented on 2021-01-31 00:23 (UTC)

I feel like this package shouldn't provide dmenu (as it promises to not do in the comment on 20th line in the PKGBUILD). I mean, isn't there a reason the developer named the binary differently?

onny commented on 2019-11-07 11:30 (UTC)

This package requires wayland dependency otherwise I get this error by buildingi n chroot: meson.build:27:0: ERROR: Dependency "wayland-client" not found, tried pkgconfig

depau commented on 2019-05-23 19:28 (UTC)

@asppsa I added your patch. Thank you.

asppsa commented on 2019-05-20 07:32 (UTC)

Here's a patch for the pkgver issue:

diff --git a/PKGBUILD b/PKGBUILD
index 4a9ed4b..685a103 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -25,7 +25,7 @@ sha256sums=('SKIP')

 pkgver() {
   cd $srcdir/$_pkgname
-  base_ver=$(cat config.mk | grep VERSION | head -n1 | awk '{ print $3 }')
+  base_ver=$(sed -En "s/^.*version:.*(([[:digit:]]+\.?){3}).*$/\1/p" meson.build)
   git_ver=$(printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)")

   echo "$base_ver.$git_ver"

knaick commented on 2019-05-13 13:47 (UTC)

also there's a small error on the pkgver():

==> Starting pkgver()... cat: config.mk: No such file or directory

depau commented on 2019-05-13 07:21 (UTC)

Upstream switched to meson. Fixed.