Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r committed Oct 29, 2024
1 parent dac9d3d commit 24a9395
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 16 deletions.
13 changes: 9 additions & 4 deletions packages/themes/materials/gtk/graphite-gtk-theme/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
pkgname=graphite-gtk-theme
_pkgname=Graphite-gtk-theme
pkgver=2024.04.28.r2.g3b09e9b
pkgver=2024.07.15.r15.g9a004f9
pkgrel=1
pkgdesc="Graphite Dark theme."
pkgdesc='Graphite Dark theme.'
arch=('any')
license=("GPL3")
license=('GPL3')
makedepends=('git' 'gnome-shell' 'sassc')
source=("git+https://github.com/vinceliuice/$_pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd $_pkgname

git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

package() {
Expand Down
13 changes: 9 additions & 4 deletions packages/themes/materials/gtk/gruvbox-gtk-theme/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
pkgname=gruvbox-gtk-theme
_pkgname=Gruvbox-GTK-Theme
pkgver=62.1a0f6672
pkgver=75.eed3858
pkgrel=1
pkgdesc="A GTK theme based on the Gruvbox colour palette."
pkgdesc='A GTK theme based on the Gruvbox colour palette.'
arch=('any')
license=("GPL3")
license=('GPL3')
makedepends=('git')
source=("git+https://github.com/Fausto-Korpsvart/$_pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd $_pkgname

echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

package() {
Expand Down
13 changes: 9 additions & 4 deletions packages/themes/materials/gtk/matrix-gtk-theme/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
pkgname=matrix-gtk-theme
_pkgname=Matrix-GTK-Theme
pkgver=9.f453093d
pkgver=12.15a799b
pkgrel=1
pkgdesc="A GTK theme based on the Matrix colour palette."
pkgdesc='A GTK theme based on the Matrix colour palette.'
arch=('any')
license=("GPL3")
license=('GPL3')
makedepends=('git')
source=("git+https://github.com/D3vil0p3r/$_pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd $_pkgname

echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

package() {
Expand Down
13 changes: 9 additions & 4 deletions packages/themes/materials/gtk/nightfox-gtk-theme/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
pkgname=nightfox-gtk-theme
_pkgname=Nightfox-GTK-Theme
pkgver=27.ef4e6e1f
pkgver=32.14decf0
pkgrel=1
pkgdesc="A GTK theme based on the Nightfox colour palette."
pkgdesc='A GTK theme based on the Nightfox colour palette.'
arch=('any')
license=("AGPL3")
license=('AGPL3')
makedepends=('git')
source=("git+https://github.com/Fausto-Korpsvart/$_pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd $_pkgname

echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
( set -o pipefail
git describe --long --tags --abbrev=7 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "%s.%s" "$(git rev-list --count HEAD)" \
"$(git rev-parse --short=7 HEAD)"
)
}

package() {
Expand Down

0 comments on commit 24a9395

Please sign in to comment.