Package Details: lobster-git r203.f9294ff-1

Git Clone URL: https://aur.archlinux.org/lobster-git.git (read-only, click to copy)
Package Base: lobster-git
Description: Shell script to watch Movies/Webseries/Shows from the terminal.
Upstream URL: https://github.com/justchokingaround/lobster.git
Licenses: GPL2
Conflicts: lobster
Provides: lobster
Submitter: chomsky
Maintainer: chomsky (LemonPie)
Last Packager: LemonPie
Votes: 3
Popularity: 0.004722
First Submitted: 2023-05-25 14:06 (UTC)
Last Updated: 2024-03-03 08:07 (UTC)

Required by (0)

Sources (1)

Latest Comments

LemonPie commented on 2024-03-03 08:27 (UTC)

pkg version scheme is changed. I recommend reinstalling the package.

LemonPie commented on 2023-07-07 16:14 (UTC) (edited on 2023-07-13 00:19 (UTC) by LemonPie)

the package version does not meet standard, my bad. it should has no v in version number

  • fix method 1: if you want to version your changes like v4.0.6 and keep aur versioning like 4.0.6.r3.gac5022f you need to change pkgver() to somthing like:
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'

this removes the v at the beginning of version number. (this expression is compatible with fix method 2)

  • fix method 2: if you do not want to change pkgver() you need to state a diffrent type of comment in you tag annotate
git tag -a "4.0.6" -m "bump version to v4.0.6"

with this you change versioning scheme. i see with commit 967831e in your github repo, you used this method of tagging ,but with 9eabf8e you moved to new tagging scheme.

chomsky commented on 2023-06-24 18:28 (UTC) (edited on 2023-06-24 18:29 (UTC) by chomsky)

that's actually a good point, thank you for the suggestion! i just pushed the changes

edit: yes i am the original dev

LemonPie commented on 2023-06-24 18:17 (UTC) (edited on 2023-06-24 18:23 (UTC) by LemonPie)

do you possibly want to use git describe --tags in pkgver, so you get a more readable pkgver something like

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

the you can easily control aur version in your dev env, like:

git tag -a "v4.0.3" -m "bump version to v4.0.3"

I am assuming you are the original dev?