diff options
author | Tony Lambiris | 2021-04-14 00:03:35 -0400 |
---|---|---|
committer | Tony Lambiris | 2021-04-14 00:03:35 -0400 |
commit | bffadb3fbaf4095d4784f0a3c7c001cb249f6643 (patch) | |
tree | cad395e16b8a889d659474cd5b6329f9b324b42f | |
parent | 1c71879f18aaa0e464d0b62953edd5f68369f6ed (diff) | |
download | aur-bffadb3fbaf4095d4784f0a3c7c001cb249f6643.tar.gz |
Version bump
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | PKGBUILD | 15 |
3 files changed, 12 insertions, 13 deletions
@@ -1,13 +1,13 @@ pkgbase = gnome-shell-extension-mmod-panel-git pkgdesc = Create a customizable panel for Gnome 3 - pkgver = r40.40a58cd - pkgrel = 2 - url = https://github.com/RyanGipson/mmod-panel + pkgver = v0.1.4.r28.g40a58cd + pkgrel = 1 + url = https://github.com/RyanGipson/mmod-panel.git arch = any license = GPL3 makedepends = git depends = gnome-shell - source = git+https://github.com/RyanGipson/mmod-panel.git + source = gnome-shell-extension-mmod-panel-git::git+https://github.com/RyanGipson/mmod-panel.git sha256sums = SKIP pkgname = gnome-shell-extension-mmod-panel-git diff --git a/.gitignore b/.gitignore index be9152d07b05..3cbe9be48a4d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ src pkg mmod-panel -*pkg.tar.xz +*.pkg.tar.* tags @@ -1,26 +1,25 @@ # Maintainer: Tony Lambiris <tony@libpcap.net> pkgname=gnome-shell-extension-mmod-panel-git -_gitname=mmod-panel -pkgver=r40.40a58cd -pkgrel=2 +pkgver=v0.1.4.r28.g40a58cd +pkgrel=1 pkgdesc="Create a customizable panel for Gnome 3" arch=('any') -url="https://github.com/RyanGipson/mmod-panel" +url="https://github.com/RyanGipson/mmod-panel.git" license=('GPL3') depends=('gnome-shell') makedepends=('git') -source=('git+https://github.com/RyanGipson/mmod-panel.git') +source=("${pkgname}::git+${url}") sha256sums=('SKIP') pkgver() { - cd $_gitname + cd "${srcdir}/${pkgname}" - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } package() { - cd $_gitname + cd "${srcdir}/${pkgname}" _extid="mmod-panel@mmogp.com" _extpath="${pkgdir}/usr/share/gnome-shell/extensions/${_extid}" |