Package Details: parcimonie-sh-git 78.529e2fa-1

Git Clone URL: https://aur.archlinux.org/parcimonie-sh-git.git (read-only, click to copy)
Package Base: parcimonie-sh-git
Description: Bash reimplementation of parcimonie
Upstream URL: https://github.com/EtiennePerot/parcimonie.sh
Licenses: custom:WTFPL
Submitter: EtiennePerot
Maintainer: freswa (EtiennePerot)
Last Packager: EtiennePerot
Votes: 21
Popularity: 0.000228
First Submitted: 2013-07-10 04:53 (UTC)
Last Updated: 2023-02-26 07:09 (UTC)

Latest Comments

1 2 3 4 Next › Last »

Beneter commented on 2022-08-19 17:01 (UTC) (edited on 2022-08-19 17:04 (UTC) by Beneter)

The installation works as intended. You need to import the PGP-key first. You can do this easily via "curl https://perot.me/pgp-minimal.asc | gpg --import". See https://wiki.archlinux.org/title/Makepkg#Signature_checking for reference.

JanSurft commented on 2020-10-15 06:46 (UTC)

Installation fails with error: Unknown public key 4D061903EEDA047E

cmonty14 commented on 2020-08-12 19:51 (UTC)

Installation fails with error: Unknown public key 4D061903EEDA047E

pigmonkey commented on 2020-01-19 01:04 (UTC)

Building this currently fails because the certificate for https://perot.me (where the PGP key is downloaded from) has expired.

nirnakinho commented on 2019-05-04 16:50 (UTC)

It seems Etienne Perot updated his key but now the checksum for his keyfile does not match anymore...

Regards,

Living commented on 2019-03-24 14:25 (UTC)

check() fails because the commit is signed with an expired key. I sent an email to the author to update his key under <https://perot.me/pgp-minimal.asc>. In order to avoid failed builds in the future, I recommend to accept correct commit signatures with an expired key: In PKGBUILD in line 31 change [GU] to [GUY].

respiranto commented on 2018-03-25 13:55 (UTC)

In line 19 it should be $srcdir instead of $startdir, if I am not mistaken.

EtiennePerot commented on 2017-08-09 02:46 (UTC)

Whoops. Fixed.

nirnakinho commented on 2017-08-08 20:07 (UTC)

Oops, for some reason the message window cut the diff I tried to submit, but I think you know what I mean. Regards,

nirnakinho commented on 2017-08-08 20:06 (UTC)

The pkgver() step of the PKGBUILD fails for me. Using $srcdir instead of $startdir fixes the issue for me. diff --git a/PKGBUILD b/PKGBUILD index 4f77639..9f54200 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -10,13 +10,13 @@ url='https://github.com/EtiennePerot/parcimonie.sh' license=('custom:WTFPL') depends=('bash' 'torsocks' 'tor' 'gnupg') makedepends=('git') -source=('https://github.com/EtiennePerot/parcimonie.sh' +source=('git+https://github.com/EtiennePerot/parcimonie.sh.git' 'pgp-key::https://perot.me/pgp-minimal.asc') sha512sums=('SKIP' 'c5aaa5de31174ee0d1d8937aa5ec17fab3784688f65d7046210b37f9c3a55eee97c1c5dc7ee43c34f961fb043e59cdfd1788ea7dbca1a0e94b3fa996952bc286') pkgver() { - cd "$startdir/parcimonie.sh" + cd "$srcdir/parcimonie.sh" echo "$(git rev-list --count HEAD).$(git rev-parse --short HEAD)" } Regards,