app-crypt/yubikey-manager: initial commit with version 0.3.1
authorGöktürk Yüksek <gokturk@gentoo.org>
Sun, 2 Apr 2017 05:44:19 +0000 (01:44 -0400)
committerGöktürk Yüksek <gokturk@gentoo.org>
Sun, 2 Apr 2017 05:48:31 +0000 (01:48 -0400)
Python library and command line tool for configuring a YubiKey

Package-Manager: Portage-2.3.3, Repoman-2.3.1

app-crypt/yubikey-manager/Manifest [new file with mode: 0644]
app-crypt/yubikey-manager/metadata.xml [new file with mode: 0644]
app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild [new file with mode: 0644]

diff --git a/app-crypt/yubikey-manager/Manifest b/app-crypt/yubikey-manager/Manifest
new file mode 100644 (file)
index 0000000..6ce6dac
--- /dev/null
@@ -0,0 +1 @@
+DIST yubikey-manager-0.3.1.tar.gz 50433 SHA256 cf60cbbfc12a331afe6e261e0294326ec18eeb43bba559049638308f1656306f SHA512 bc5871483d0fafdba93f20bfd270364485c286170f1c1a90af19d0874828f9a31febdc23e5519f4f7d90b988cfc88bde01cacaa3f2d1e00b3cd4dbacd619cda4 WHIRLPOOL 8e3915dada18731d5454dce6deb21fc4fd1ea97c07eb6a4494b23dc40bfdc364744eae7a7a608eb5cd9bbe2793a0c86e3e455f3a874997964303e08dd1dd19d0
diff --git a/app-crypt/yubikey-manager/metadata.xml b/app-crypt/yubikey-manager/metadata.xml
new file mode 100644 (file)
index 0000000..07ad13b
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>gokturk@gentoo.org</email>
+    <name>Göktürk Yüksek</name>
+  </maintainer>
+  <longdescription>
+    Yubikey Manager is a python library and command line tool for
+    configuring any YubiKey over all USB transports. It's a CLI
+    successor of <pkg>app-crypt/yubikey-neo-manager</pkg>.
+  </longdescription>
+</pkgmetadata>
diff --git a/app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild b/app-crypt/yubikey-manager/yubikey-manager-0.3.1.ebuild
new file mode 100644 (file)
index 0000000..0d39029
--- /dev/null
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+inherit distutils-r1
+
+DESCRIPTION="Python library and command line tool for configuring a YubiKey"
+HOMEPAGE="https://developers.yubico.com/yubikey-manager/"
+SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+       dev-python/six[${PYTHON_USEDEP}]
+       dev-python/pyscard[${PYTHON_USEDEP}]
+       dev-python/pyusb[${PYTHON_USEDEP}]
+       dev-python/click[${PYTHON_USEDEP}]
+       dev-python/cryptography[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
+"