Package Details: go-chromecast-git 0.3.4.r2.ge939ca7-1

Git Clone URL: https://aur.archlinux.org/go-chromecast-git.git (read-only, click to copy)
Package Base: go-chromecast-git
Description: Implements a basic number of the google chromecast commands.
Upstream URL: https://github.com/vishen/go-chromecast
Licenses: Apache2.0
Submitter: Stephen304
Maintainer: Stephen304
Last Packager: Stephen304
Votes: 5
Popularity: 0.000987
First Submitted: 2020-08-10 04:57 (UTC)
Last Updated: 2026-01-19 22:39 (UTC)

Latest Comments

gwuensch commented on 2026-01-21 13:12 (UTC)

Note that VCS packages like this one shouldn't get mere version bumps. From the Wiki:

VCS packages are not considered out of date when the pkgver changes; do not flag them as the maintainer will merely unflag the package and ignore you. AUR maintainers should not commit mere pkgver bumps.

Stephen304 commented on 2026-01-19 22:41 (UTC)

@Arc thanks for the reminder! Version is bumped to latest now

Arc commented on 2026-01-19 22:05 (UTC)

This seems to be way out of date. The latest version on GitHub is v0.3.4, which was released on Apr 21, 2025 (https://github.com/vishen/go-chromecast/releases/tag/v0.3.4).

Stephen304 commented on 2023-11-01 14:19 (UTC)

@kIERO That might be just related to installing and using go - this package only contains the go-chromecast binary and license file but I also have a go folder in my home folder from setting up my go environment

kIERO commented on 2023-10-29 21:35 (UTC)

This package created a folder named "go" in my home directory. This isn't supposed to happen right?

baodrate commented on 2023-06-16 13:31 (UTC)

would you mind updating the pkgver function to comply with the pkgver guidelines for VCS packages? suggestion:

diff --git a/PKGBUILD b/PKGBUILD
index d7ff8ba..45ab934 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=go-chromecast-git
 _pkgname=go-chromecast
-pkgver=20211230
+pkgver=0.3.1.r0.g21976a4
 pkgrel=1
 pkgdesc='Implements a basic number of the google chromecast commands.'
 arch=('any')
@@ -14,7 +14,7 @@ sha256sums=('SKIP')

 pkgver() {
   cd "$srcdir/$_pkgname"
-  git log -1 --format="%cd" --date=short | sed 's|-||g'
+  git describe --long --abbrev=7 --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
 }

 build() {

hashworks commented on 2020-11-24 00:02 (UTC)

Please add git as a make dependency.