Package Details: totp-cli 1.3.0-1

Git Clone URL: https://aur.archlinux.org/totp-cli.git (read-only, click to copy)
Package Base: totp-cli
Description: Cli application to generate OTP tokens for two-factor authentication.
Upstream URL: https://github.com/WhyNotHugo/totp-cli
Keywords: 2fa otp security totp
Licenses: MIT
Submitter: whynothugo
Maintainer: whynothugo
Last Packager: whynothugo
Votes: 14
Popularity: 0.000100
First Submitted: 2014-10-25 09:47 (UTC)
Last Updated: 2020-05-03 13:31 (UTC)

Latest Comments

« First ‹ Previous 1 2

whynothugo commented on 2018-05-13 22:08 (UTC)

@Muflone The PKGBUILD was really out of date (and the packaged version didn't support -a).

Updated.

Muflone commented on 2018-05-13 21:27 (UTC)

actually unusable the pass dependency is missing after installing pass I was unable to use it totp -a github replies me pass returned an error: b'Error: 2fa/-a/code is not in the password store.\n'

Docbroke commented on 2017-02-28 02:46 (UTC)

this source doesn't exist. https://pypi.io/packages/source/t/totp/totp-1.1.0.tar.gz

visage commented on 2016-03-13 15:25 (UTC)

v1.1.0-1 needs ruby-cmdparse as a dependency, but this is not currently available in the AUR.

whynothugo commented on 2015-01-03 14:01 (UTC)

@jamesan: It still ends up putting it into /usr/bin, but I've fixed it anyway out of tidyness.

jamesan commented on 2015-01-03 08:58 (UTC)

In Arch Linux, all executables are supposed to be installed to /usr/bin. The other bin locations (i.e. /bin, /sbin, /usr/sbin) are all actually just soft links to /usr/bin. All executables should then be installed into /usr/bin, not these other locations. In this case, it causes an unrecoverable error when installing this package even though the package gets built without a hitch. This can be fixed in the PKGBUILD package() function by replacing: make DESTDIR="$pkgdir/" install with: make DESTDIR="$pkgdir/" PREFIX=usr install