summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGokturk Yuksek <gokturk@binghamton.edu>2015-12-27 04:03:00 -0500
committerGokturk Yuksek <gokturk@binghamton.edu>2015-12-27 04:23:42 -0500
commit9ec3df126b29064c9283862565030c4002e98949 (patch)
tree55016c9cf6e4f4f28625350c6592d8252dd09a24 /app-crypt/yubikey-neo-manager/files
parentapp-crypt/yubikey-neo-manager: update <bug-to> and github <remote-id> metadata (diff)
downloadgentoo-9ec3df126b29064c9283862565030c4002e98949.tar.gz
gentoo-9ec3df126b29064c9283862565030c4002e98949.tar.bz2
gentoo-9ec3df126b29064c9283862565030c4002e98949.zip
app-crypt/yubikey-neo-manager: bump to version 1.4.0
Main changes are: - Remove dependency on nose. See upstream commit a5aa5b0. - docutils isn't utilized by the ebuild, drop the dependency. - Rename resource locations for the manpage and icons - Patch setup.py to not depend on PySide Package-Manager: portage-2.2.24
Diffstat (limited to 'app-crypt/yubikey-neo-manager/files')
-rw-r--r--app-crypt/yubikey-neo-manager/files/yubikey-neo-manager-fix-pyside-requirement.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/app-crypt/yubikey-neo-manager/files/yubikey-neo-manager-fix-pyside-requirement.patch b/app-crypt/yubikey-neo-manager/files/yubikey-neo-manager-fix-pyside-requirement.patch
new file mode 100644
index 000000000000..d11a3a1cc6d9
--- /dev/null
+++ b/app-crypt/yubikey-neo-manager/files/yubikey-neo-manager-fix-pyside-requirement.patch
@@ -0,0 +1,17 @@
+Description: Remove PySide requirement, since python-pyside does not register itself correctly
+Author: Dain Nilsson <dain@yubico.com>
+Forwarded: no
+--- a/setup.py
++++ b/setup.py
+@@ -44,8 +44,9 @@
+ entry_points={
+ 'gui_scripts': ['neoman=neoman.__main__:main']
+ },
+- install_requires=['PySide', 'pycrypto'],
+- yc_requires=['ctypes', 'qt'],
++ install_requires=['pycrypto'],
++ yc_requires=['ctypes'],
++ packages=['neoman', 'neoman.model', 'neoman.view', 'neoman.yubicommon', 'neoman.yubicommon.setup', 'neoman.yubicommon.ctypes', 'neoman.yubicommon.qt'],
+ cmdclass={'executable': executable, 'qt_resources': qt_resources('neoman')},
+ classifiers=[
+ 'License :: OSI Approved :: BSD License',