Package Details: vpn-slice-systemd-resolved-git v0.16.1.r25.g8836aa6-2

Git Clone URL: https://aur.archlinux.org/vpn-slice-systemd-resolved-git.git (read-only, click to copy)
Package Base: vpn-slice-systemd-resolved-git
Description: Python based vpnc-script replacement for easy and secure split-tunnel VPN setup with systemd-resolved support
Upstream URL: https://github.com/dlenski/vpn-slice
Licenses: GPL
Conflicts: vpn-slice, vpn-slice-git
Provides: vpn-slice
Submitter: gardar
Maintainer: gardar
Last Packager: gardar
Votes: 0
Popularity: 0.000000
First Submitted: 2024-06-03 16:00 (UTC)
Last Updated: 2024-06-03 19:20 (UTC)

Latest Comments

eduardssk commented on 2025-12-04 07:43 (UTC) (edited on 2025-12-04 07:46 (UTC) by eduardssk)

I've identified an issue with the vpn-slice-systemd-resolved-git package that prevents it from updating to the version specified in pkgver.

Issue: The PKGBUILD currently specifies: - pkgver: v0.16.1.r25.g8836aa6 - pkgrel: 2 - source: git+https://github.com/dlenski/vpn-slice#branch=Linux_split_DNS_PR118_rework

However, the Linux_split_DNS_PR118_rework branch only contains commits up to v0.16.1.r19.g847e787. The commit 8836aa6 referenced in pkgver exists only on the master branch.

Result: When building, the pkgver() function generates v0.16.1.r19.g847e787-1 instead of the expected v0.16.1.r25.g8836aa6-2, causing pacman to report the package as "up to date" without actually updating.

Suggested Fix: Change the source line to: source=('git+https://github.com/dlenski/vpn-slice#branch=master')

This will allow pkgver() to correctly generate the version matching your pkgver field (or newer, as master is now at v0.16.1.r28.gd1f419a).

Verification:

cd vpn-slice
git describe --long --tags Linux_split_DNS_PR118_rework
# Output: v0.16.1-19-g847e787

git describe --long --tags master
# Output: v0.16.1-28-gd1f419a