Package Details: yubikey-neo-manager-git 1.4.0.r3.gcd0de3a-2

Git Clone URL: https://aur.archlinux.org/yubikey-neo-manager-git.git (read-only, click to copy)
Package Base: yubikey-neo-manager-git
Description: Cross platform personalization tool for the YubiKey NEO - git checkout
Upstream URL: https://github.com/Yubico/yubikey-neo-manager
Licenses: BSD
Conflicts: yubikey-neo-manager
Provides: yubikey-neo-manager
Submitter: eworm
Maintainer: eworm
Last Packager: eworm
Votes: 3
Popularity: 0.000000
First Submitted: 2014-03-27 09:56 (UTC)
Last Updated: 2016-09-09 14:34 (UTC)

Latest Comments

1 2 3 Next › Last »

eworm commented on 2017-08-26 21:11 (UTC)

This project is deprecated. Use yubikey-manager(-qt) instead.

nmiculinic commented on 2017-08-25 21:49 (UTC) (edited on 2017-08-25 21:49 (UTC) by nmiculinic)

```no results found for libykneomgr (dependency tree: yubikey-neo-manager-git libykneomgr)``` It errors and it's unable to install.

eworm commented on 2016-09-09 14:35 (UTC)

Ah, did not notice that... Thanks for the hint. Fixed.

kbabioch commented on 2016-09-09 14:32 (UTC)

Line 48 is copying into "/usr/share/icons/hicolor/128x128/", whereas line 53 is copying into "/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/". Note the additional "apps" subdirectory at the very end. Let's play a round of "spot the difference" to make it more clear: /usr/share/icons/hicolor/128x128/ /usr/share/icons/hicolor/64x64/apps/

eworm commented on 2016-09-08 08:32 (UTC)

The 128x128 icon is installed on line 48, others are installed on line 53. So what's wrong?

kbabioch commented on 2016-09-08 07:44 (UTC)

Shouldn't the 128x128 icons also be copied into the apps subdirectory? Take a look at line 48 vs 53.

kerberizer commented on 2015-10-18 19:27 (UTC)

I'd like to suggest the following changes to the PKGBUILD to make the application build and run correctly... diff --git a/PKGBUILD b/PKGBUILD index bb12fa6..33b23f9 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -28,13 +28,18 @@ pkgver() { package() { cd yubikey-neo-manager/ + git submodule init + git submodule update + python2 setup.py qt_resources python2 setup.py install --root="${pkgdir}/" --optimize=1 - install -D -m0644 resources/neoman-large.png "${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png" + sed -i '/^PySide$/d' "${pkgdir}/usr/lib/python2.7/site-packages/yubikey_neo_manager-"*"-py2.7.egg-info/requires.txt" + + install -D -m0644 resources/yubikey-neo-manager.png "${pkgdir}/usr/share/icons/hicolor/128x128/neoman.png" for SIZE in 16 24 32 48 64 96; do convert -scale ${SIZE} \ - resources/neoman-large.png \ + resources/yubikey-neo-manager.png \ ${srcdir}/neoman.png install -D -m0644 ${srcdir}/neoman.png "${pkgdir}/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/neoman.png" done

chx commented on 2015-04-25 03:07 (UTC)

You need pcsc-tools and you need to start pcscd (systemctl start pcscd) otherwise the card is not recognized in CCID mode.

altercation commented on 2014-10-24 18:35 (UTC)

See also this BBS posting I made about getting U2F working. Once you use neoman to set the correct mode (u2f) then you'll need to create the correct group, add your user to it and create the u2f udev rule. https://bbs.archlinux.org/viewtopic.php?pid=1469172#p1469172