Package Details: pantalaimon-git 0.10.5.28.g21fb28d-1

Git Clone URL: https://aur.archlinux.org/pantalaimon-git.git (read-only, click to copy)
Package Base: pantalaimon-git
Description: Pantalaimon is an end-to-end encryption aware Matrix reverse proxy daemon.
Upstream URL: https://github.com/matrix-org/pantalaimon
Licenses: Apache
Conflicts: pantalaimon
Provides: pantalaimon
Submitter: fauxmight
Maintainer: fauxmight
Last Packager: fauxmight
Votes: 1
Popularity: 0.000004
First Submitted: 2022-02-03 04:17 (UTC)
Last Updated: 2024-12-23 23:49 (UTC)

Latest Comments

fauxmight commented on 2024-12-23 23:51 (UTC) (edited on 2024-12-24 01:53 (UTC) by fauxmight)

@jkhsjdhjs You're right about both. Big sloppiness on my part is now corrected. Thank you, and my apologies for missing this when you posted it.

@piater Looks reasonable. Implemented. Thank you!

NOTICE: I am no longer daily driving Arch. While I don't have any complaint with maintaining this, if someone wishes to adopt it, let me know and I will willingly turn over the reigns.

piater commented on 2024-12-23 10:23 (UTC)

Raw commit IDs are not useful as pkgver as they do not reflect the commit sequence order. Following the guidelines I'd recommend the following to build the latest commit:

pkgver() {
    cd "${_pkgname}"
    git describe --long --abbrev=7 | sed 's/-/.r/;s/-/./'
}

Works for me.

jkhsjdhjs commented on 2023-09-17 10:32 (UTC) (edited on 2023-09-17 10:34 (UTC) by jkhsjdhjs)

The pkgver() function name has a typo and is currently named pkgber() with a b, which causes the function not to get called at all.

EDIT: Also the build() function currently does nothing at all, so it might as well be removed.

fauxmight commented on 2022-11-28 04:16 (UTC)

@piater Thank you.

piater commented on 2022-11-27 09:13 (UTC)

The PKGBUILD is missing makedepends=('git' 'python-setuptools').

fauxmight commented on 2022-03-26 11:02 (UTC)

@e-v : Good call. Acknowledged.

e-v commented on 2022-03-26 10:39 (UTC)

In order to prevent the following error from occurring:

fatal: remote error: 
  The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.

source should read:

source=("${_pkgname}::git+https://github.com/matrix-org/pantalaimon"

Thanks!