dev-python/ntlm-auth: initial import
authorBernard Cafarelli <voyageur@gentoo.org>
Tue, 9 Jan 2018 13:00:31 +0000 (14:00 +0100)
committerBernard Cafarelli <voyageur@gentoo.org>
Tue, 9 Jan 2018 13:38:53 +0000 (14:38 +0100)
Dependency for dev-python/requests-ntlm

Package-Manager: Portage-2.3.19, Repoman-2.3.6

dev-python/ntlm-auth/Manifest [new file with mode: 0644]
dev-python/ntlm-auth/metadata.xml [new file with mode: 0644]
dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild [new file with mode: 0644]

diff --git a/dev-python/ntlm-auth/Manifest b/dev-python/ntlm-auth/Manifest
new file mode 100644 (file)
index 0000000..ce7b755
--- /dev/null
@@ -0,0 +1 @@
+DIST ntlm-auth-1.0.6.tar.gz 48282 BLAKE2B 988634d78d6c30a92791baaf4dff865fe2bba8318ce1bcd9739c267d11fb29ae90e7b0348b05b4ef3754cf20675aa690973cca03fa35c195ae0c73c6ac6120e8 SHA512 e6abafd52affebfe0f60ed1fd77543dbfe675a82774bffc44d2e034226806ce6781adc5ca8ac29c35c6fe75440f94a1763e01b0987669cb44a6fe01e102a1489
diff --git a/dev-python/ntlm-auth/metadata.xml b/dev-python/ntlm-auth/metadata.xml
new file mode 100644 (file)
index 0000000..68bde49
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>voyageur@gentoo.org</email>
+               <name>Bernard Cafarelli</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>python@gentoo.org</email>
+               <name>Python</name>
+       </maintainer>
+       <upstream>
+               <remote-id type="pypi">ntlm-auth</remote-id>
+       </upstream>
+</pkgmetadata>
diff --git a/dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild b/dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild
new file mode 100644 (file)
index 0000000..54b600d
--- /dev/null
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Calculates NTLM Authentication codes"
+HOMEPAGE="https://github.com/jborean93/ntlm-auth"
+SRC_URI="https://github.com/jborean93/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="LGPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/six[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep 'dev-python/ordereddict[${PYTHON_USEDEP}]' python2_7)"
+DEPEND="${RDEPEND}"