Package Details: go-chromecast-git 0.3.1.r8.gc2af7da-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: 4
Popularity: 0.89
First Submitted: 2020-08-10 04:57 (UTC)
Last Updated: 2023-10-29 23:16 (UTC)

Latest Comments

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?

qubidt 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.