Package Details: 1pass-hg r58.1390348facc7-1

Git Clone URL: https://aur.archlinux.org/1pass-hg.git (read-only, click to copy)
Package Base: 1pass-hg
Description: 1Password-compatible password management tool for Linux
Upstream URL: https://www.icculus.org/1pass/
Licenses: zlib
Submitter: arcanis
Maintainer: arcanis
Last Packager: arcanis
Votes: 5
Popularity: 0.000000
First Submitted: 2015-07-27 21:44 (UTC)
Last Updated: 2017-11-22 15:35 (UTC)

Latest Comments

crequill commented on 2017-10-10 13:07 (UTC) (edited on 2017-10-10 13:08 (UTC) by crequill)

Hi, I've got the following errors: no secure fields, don't know how to handle this item Lua panic: 1pass.lua:352: attempt to concatenate field 'expiry_mm' (a nil value) and Lua panic: 1pass.lua:352: attempt to concatenate field 'expiry_yy' (a nil value) So I update 1pass-lua.patch with: --- 1pass/1pass.lua.ori 2017-10-10 14:38:58.484876440 +0200 +++ 1pass/1pass.lua 2017-10-10 14:40:07.084969763 +0200 @@ -349,7 +349,7 @@ local function build_secret_menuitem_creditcard(menu, info, secure) -- !!! FIXME: there's more data than this in a generic dictionary. - local expiredate = secure.expiry_yy .. "/" .. string.sub("00" .. secure.expiry_mm, -2) + local expiredate = (secure.expiry_yy or "") .. "/" .. string.sub("00" .. (secure.expiry_mm or ""), -2) build_secret_menuitem(menu, "Type", secure.type) build_secret_menuitem(menu, "CC number", secure.ccnum, true) build_secret_menuitem(menu, "CVV", secure.cvv, true)

Evey_Hammond commented on 2016-10-20 16:32 (UTC)

I am experiencing the same problem: Was working for a while, but now when I enter the proper key combo it just crashes with the following output: $ 1pass Now waiting for the magic key combo (probably Alt-Meta-\) ... ^\Caught signal 3, terminating.

arcanis commented on 2016-04-08 14:45 (UTC)

hmm, could not reproduce it, works fine with latest stable kf5 at least

frenchie4111 commented on 2016-04-06 05:54 (UTC)

Was working for a while, but now when I enter the proper key combo it just crashes with the following output: $ 1pass Now waiting for the magic key combo (probably Alt-Meta-\) ... ^\Caught signal 3, terminating.

bluhue commented on 2016-03-23 23:40 (UTC)

I'm using pacaur :) Correct, it built and installed successfully :D

arcanis commented on 2016-03-22 11:59 (UTC)

Hmm, I've regenerated .SRCINFO and nothing changed. Probably your error has been caused by your helper since pkgver was changed during build. Which helper do you use? // Meanwhile I've updated pkgver to more correct one and regenerated .SRCINFO, so it should not be an issue to build it now.

bluhue commented on 2016-03-22 10:39 (UTC)

:: 1pass-hg package(s) failed to install. Check .SRCINFO for mismatching data with PKGBUILD.

arcanis commented on 2015-10-16 15:42 (UTC)

fixed, sorry

Knovour commented on 2015-10-16 15:37 (UTC)

`os.getenv("HOME") .. "1Password/1Password.agilekeychain/data/default"` in patch file will become `$HOME1Password/...`