Package Details: wl-clipboard-git 2.0.0-1

Git Clone URL: https://aur.archlinux.org/wl-clipboard-git.git (read-only, click to copy)
Package Base: wl-clipboard-git
Description: Command-line copy/paste utilities for Wayland
Upstream URL: https://github.com/bugaevc/wl-clipboard
Licenses: GPL
Conflicts: wl-clipboard
Provides: wl-clipboard
Submitter: adabru
Maintainer: None
Last Packager: adabru
Votes: 13
Popularity: 0.008707
First Submitted: 2018-11-07 08:50 (UTC)
Last Updated: 2019-10-05 02:10 (UTC)

Required by (207)

Sources (1)

Latest Comments

adabru commented on 2025-07-26 17:19 (UTC)

@yrif @nperry thanks for reporting and the patch! I can't reproduce the error. I tried yay and paru from an Arch WSL.

Can you still observe that behavior?

yrlf commented on 2023-06-01 10:36 (UTC)

@nperry: this patch fixed it for me

diff --git a/PKGBUILD b/PKGBUILD index efbc43c..8795668 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -16,7 +16,7 @@ md5sums=('SKIP')  pkgver() {         cd "$srcdir/${pkgname%-git}"         git describe --tags --abbrev=10 HEAD | -               sed 's/^v//; s/-/+/; s/-/./' +               sed 's/^v//; s/-/+/; s/-/./; s/-/+/'  }   build() { 

nperry commented on 2023-05-04 06:49 (UTC) (edited on 2023-05-04 06:49 (UTC) by nperry)

==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: 2.2.0+rc1.1-g61d5fa34b4 

adabru commented on 2019-10-05 02:21 (UTC)

Hi @Mel, thanks for commenting and reporting the issue! I bumped the version to 2.0.0 . Hopefully that will solve the issue.

Mel commented on 2019-10-04 18:16 (UTC) (edited on 2019-10-04 18:17 (UTC) by Mel)

wl-clipboard recently hit 2.0 version, could you please bump the git version because it falsely pops up as an upgrade option every time:

==> Using [loonix] repository   -> wl-clipboard-git: 2.0.0-1 -> 2.0.0_beta2+5.ga60a0a468c-2 ==> Retrieving package files From https://aur.archlinux.org/wl-clipboard-git  = [up to date]      master     -> origin/master ==> WARNING: skipping built package (use -f to overwrite) /var/cache/pacman/loonix/wl-clipboard-git-2.0.0-1-x86_64.pkg.tar 

1ace commented on 2019-09-22 17:14 (UTC) (edited on 2019-09-22 17:15 (UTC) by 1ace)

@adabru: thanks! I just updated the pkgver() function :)

adabru commented on 2019-09-22 12:35 (UTC)

Hi @lace, thanks for offering your help and contributing! I added you as co-maintainer so you can apply the change you propose.

1ace commented on 2019-09-19 10:44 (UTC) (edited on 2019-09-22 17:00 (UTC) by 1ace)

@adabru: could you update this package to be compatible with wl-clipboard with regards to its version numbers?

Adding the following to your PKGBUILD should be enough:

pkgver() {   cd wl-clipboard   git describe --tags --abbrev=10 HEAD | sed 's/^v//; s/-/+/; s/-/./' } 

I'm happy to be added as a co-maintainer if you want :)