Package Details: gnome-shell-extension-mediaplayer-git 4.0-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-mediaplayer-git.git (read-only, click to copy)
Package Base: gnome-shell-extension-mediaplayer-git
Description: A mediaplayer indicator for the Gnome Shell
Upstream URL: https://github.com/JasonLG1979/gnome-shell-extensions-mediaplayer
Licenses: GPL2
Conflicts: gnome-shell-extension-mediaplayer
Provides: gnome-shell-extension-mediaplayer
Submitter: alucryd
Maintainer: XZS
Last Packager: XZS
Votes: 119
Popularity: 0.000000
First Submitted: 2011-05-27 08:35 (UTC)
Last Updated: 2018-11-15 11:02 (UTC)

Latest Comments

1 2 3 4 5 6 .. 14 Next › Last »

topongo commented on 2022-06-16 20:24 (UTC) (edited on 2022-06-16 20:25 (UTC) by topongo)

If you're getting the error mentioned by xrayfur below, just comment or delete the last two lines of the pkgver() function:

pkgver() {
  cd ${_gitname:-$pkgname}
  git describe --long --tags 2>/dev/null | sed 's/[^[:digit:]]*\(.\+\)-\([[:digit:]]\+\)-g\([[:xdigit:]]\{7\}\)/\1.r\2.g\3/;t;q1'
  [ ${PIPESTATUS[0]} -ne 0 ] && \
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

into

pkgver() {
  cd ${_gitname:-$pkgname}
  git describe --long --tags 2>/dev/null | sed 's/[^[:digit:]]*\(.\+\)-\([[:digit:]]\+\)-g\([[:xdigit:]]\{7\}\)/\1.r\2.g\3/;t;q1'
}

xrayfur commented on 2021-06-17 18:02 (UTC)

==> Starting prepare()...
Deleted tag '3,4' (was 367f651)
==> Starting pkgver()...
==> ERROR: A failure occurred in pkgver().
    Aborting...
error making: gnome-shell-extension-mediaplayer-git

XZS commented on 2018-11-15 11:04 (UTC)

With the recent update, the extension is compatible to the current shell version again. However, the author recommends to check out his leaner extension mpris-indicator-button, which has less features but is more actively maintained. I also packaged it here: https://aur.archlinux.org/packages/gnome-shell-extension-mpris-indicator-button-git/

stachuuu commented on 2018-10-17 08:36 (UTC) (edited on 2018-10-17 08:37 (UTC) by stachuuu)

If You can't build this package just remove this part from PKGBUILD

pkgver() { cd ${_gitname:-$pkgname} git describe --long --tags 2>/dev/null | sed 's/[^[:digit:]]*(.+)-([[:digit:]]+)-g([[:xdigit:]]{7})/\1.r\2.g\3/;t;q1' [ ${PIPESTATUS[0]} -ne 0 ] && \ printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" }

Lines 28-33

and try to run makepkg and then pacman -U to install it.

KarlFiabeschi commented on 2018-07-06 15:16 (UTC)

can you please update the package?

dude commented on 2018-03-28 19:32 (UTC)

Can you update this to allow Gnome 3.28? I've been running it without issues, but the PKGBUILD requires gnome-shell<3.27

XZS commented on 2017-09-28 16:49 (UTC)

The PKGBUILD was ported to the new build pipeline. Many thanks for all who provided instructions and patches here and on GitHub. With the fix, a bunch of new versions come rolling towards you.

m3thodic commented on 2017-09-17 05:18 (UTC)

@XZS please use my linked PKGBUILD to update this package, thanks.

m3thodic commented on 2017-09-15 15:53 (UTC)

Updated PKGFILE: https://gist.github.com/tonylambiris/8190103bf3fc9d3174d728f6745ad821

NoMore201 commented on 2017-08-24 15:55 (UTC)

For those of you who don't have time to help fix PKGBUILD with new build system, you can revert to release 2.8 (the last release before the introduction of meson). source+=("${_gitname:=${pkgname%-git}}::${_giturl:-git+$url}#commit=b85e69d")