Package Details: otpclient 3.6.0-1

Git Clone URL: https://aur.archlinux.org/otpclient.git (read-only, click to copy)
Package Base: otpclient
Description: A simple GTK+ v3 TOTP/HOTP client
Upstream URL: https://github.com/paolostivanin/OTPClient
Keywords: gtk3 hotp otp totp
Licenses: GPL3
Provides: otpclient
Submitter: KingofToasters
Maintainer: polslinux
Last Packager: polslinux
Votes: 28
Popularity: 0.68
First Submitted: 2018-01-26 07:26 (UTC)
Last Updated: 2024-03-14 09:41 (UTC)

Latest Comments

1 2 3 4 Next › Last »

q234rty commented on 2024-02-10 15:41 (UTC)

This currently does not build as the sha256sums haven't been updated when bumping the pkgver.

ronjouch commented on 2024-02-09 17:20 (UTC) (edited on 2024-02-09 17:21 (UTC) by ronjouch)

Heads up to users & maintainer that 3.4.0 builds fine with the current PKGBUILD, the only changes necessary are pkgver and sha256sums.

xiota commented on 2023-12-20 05:01 (UTC) (edited on 2023-12-20 05:02 (UTC) by xiota)

Based on readelf -d output:

  • protobuf should be dropped from depends
  • protobuf-clibprotobuf-c.so
  • Add libsecret-1.so to depends

brokencode commented on 2023-12-14 23:05 (UTC)

Nice! That was it

polslinux commented on 2023-12-14 19:00 (UTC)

That's happening because libcotp was updated to 3.0.0. You need to compile OTPClient after libcotp has been updated.

brokencode commented on 2023-12-14 14:25 (UTC)

I had the same issue with 3.2.1. No codes would work, had to downgrade to 3.2.0.

raul commented on 2023-12-05 13:04 (UTC)

no idea why but post upgrading to 3.2.1 no code would match, downgrading to 3.2.0 fixed it for me...

kido007 commented on 2022-12-11 08:31 (UTC) (edited on 2022-12-13 06:47 (UTC) by kido007)

CMake Error: The source directory "/home/user/yay/otpclient/src/OTPClient-3.0.0/build" does not appear to contain CMakeLists.txt. . EDIT: latest revision solved the issue. Thank you.

inky1003 commented on 2022-12-10 23:08 (UTC)

I removed the build folder lines and It seems to compile correctly.

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,12 +20,12 @@ build() {
   cd "$_pkgname-$pkgver"
-  mkdir build && cd build
   cmake \
-    -DCMAKE_INSTALL_PREFIX:PATH=/usr
+    -DCMAKE_INSTALL_PREFIX:PATH=/usr \
     -DSHARE_INSTALL_PREFIX:PATH=/usr/share
   make
 }

 package() {
-  cd "$_pkgname-$pkgver/build"
+  cd "$_pkgname-$pkgver"
   make DESTDIR="$pkgdir/" install
 }