Package Details: pomo-git r182.ce6a267-1

Git Clone URL: https://aur.archlinux.org/pomo-git.git (read-only, click to copy)
Package Base: pomo-git
Description: Pomodoro Command Line Interface
Upstream URL: https://codeberg.org/kevinschoon/pomo
Licenses: MIT
Conflicts: pomo
Submitter: kevinschoon
Maintainer: kevinschoon
Last Packager: kevinschoon
Votes: 0
Popularity: 0.000000
First Submitted: 2021-07-29 01:24 (UTC)
Last Updated: 2025-09-14 09:23 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

Felixoid commented on 2026-02-04 12:42 (UTC) (edited on 2026-02-04 12:43 (UTC) by Felixoid)

Here's some improvement to get a proper version out of the git tags + commits

> git diff
diff --git a/PKGBUILD b/PKGBUILD
index 3ade50c..c1c6ab7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Kevin Schoon <kevinschoon@pm.me>
 _pkgname=pomo
 pkgname=${_pkgname}-git
-pkgver=r182.ce6a267
+pkgver=0.8.2.r1.gaf9b292
 pkgrel=1
 pkgdesc='Pomodoro Command Line Interface'
 url='https://codeberg.org/kevinschoon/pomo'
@@ -14,8 +14,9 @@ conflicts=('pomo')

 pkgver() {
     cd ${pkgname}
-    printf 'r%s.%s' "$(git rev-list --count HEAD)" \
-                       "$(git rev-parse --short HEAD)"
+    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
+    \   printf 'r%s.%s' "$(git rev-list --count HEAD)" \
+            "$(git rev-parse --short HEAD)"
 }

 build() {

r183.af9b292 became 0.8.2.r1.gaf9b292

Felixoid commented on 2025-09-12 12:32 (UTC) (edited on 2025-09-12 12:51 (UTC) by Felixoid)

If one wants to build the latest state, here's the change that needs to be added into PKGBUILD:

-source=("$pkgname::git+https://github.com/kevinschoon/pomo")
+source=("$pkgname::git+https://codeberg.org/kevinschoon/pomo")

The package will be fully updated then.