Package Details: wayland-git 1.24.91.r8.g25da99a-1

Git Clone URL: https://aur.archlinux.org/wayland-git.git (read-only, click to copy)
Package Base: wayland-git
Description: A computer display server protocol (git version)
Upstream URL: https://wayland.freedesktop.org/
Licenses: MIT
Conflicts: wayland
Provides: libwayland-client.so, libwayland-cursor.so, libwayland-egl.so, libwayland-server.so, wayland
Submitter: None
Maintainer: dbermond
Last Packager: dbermond
Votes: 71
Popularity: 0.000053
First Submitted: 2009-09-21 16:14 (UTC)
Last Updated: 2026-04-16 20:53 (UTC)

Required by (1383)

Sources (1)

Latest Comments

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

klusark commented on 2013-06-05 20:55 (UTC)

Sorry about taking so long on those comments. How does it look now?

Scimmia commented on 2013-06-04 15:46 (UTC)

lubosz, did you read *any* of the existing comments?

lubosz commented on 2013-06-04 15:42 (UTC)

you should add this: conflicts=("wayland") also the pkgver() does grep errors. you could add this: pkgver() { cd "wayland" git describe --always | sed 's|-|.|g' }

techlive commented on 2013-05-27 15:30 (UTC)

Should add 'conflicts=("wayland")' into the PKGBUILD.

colemickens commented on 2013-05-24 08:02 (UTC)

In cases like this where Scimmia has reported an issue, is it appropriate to "flag package out of date"? Sorry, I'm new to AUR, don't want to make a faux paux.

Scimmia commented on 2013-05-14 01:12 (UTC)

You missed a couple of spaces, in "grep -o "[[:digit:]]*"" and "git rev-list --count HEAD". It's always best to do a test build. Other than that, looks good. :) I'm probably going to have enlightenment17-git depending on this, they updated their wayland code for the 1.2.0 dev cycle.

klusark commented on 2013-05-13 19:55 (UTC)

@Scimmia, I've updated it with your changes. Does it look alright now? I put that you are a contributor in the PKGBUILD with just your AUR username, but I can put something else there if you'd like.

Scimmia commented on 2013-05-13 09:38 (UTC)

Or even better, something like this, since it would pull the correct working version number: pkgver() { cd "$srcdir/wayland" for i in major_version minor_version micro_version; do local _$i=$(grep -m 1 $i configure.ac | sed 's/m4//' | grep -o "[[:digit:]]*") done echo $_major_version.$_minor_version.$_micro_version.$(git rev-list --count HEAD).$(git rev-parse --short HEAD) }

Scimmia commented on 2013-05-13 09:17 (UTC)

How about adding a pkgver function? pkgver() { cd "$srcdir/wayland" git describe --always | awk -F - '{print $1 ".r" $2 "." $3}' } You can then set provides to "wayland=$pkgver" instead of hardcoding it to 1.0.0 You also need to copy the "COPYING" file, it's required by the MIT license.

gtmanfred commented on 2013-01-06 01:53 (UTC)

adwc.git needs to be updated to the new api before it can be compiled