From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBC76138331 for ; Tue, 9 Jan 2018 13:40:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13951E0917; Tue, 9 Jan 2018 13:40:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D78F0E0917 for ; Tue, 9 Jan 2018 13:40:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20AED335C42 for ; Tue, 9 Jan 2018 13:40:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A06E0198 for ; Tue, 9 Jan 2018 13:40:35 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1515505133.de3e6aa9c93b8e5a407ab640323378b492f38149.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ntlm-auth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ntlm-auth/Manifest dev-python/ntlm-auth/metadata.xml dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild X-VCS-Directories: dev-python/ntlm-auth/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: de3e6aa9c93b8e5a407ab640323378b492f38149 X-VCS-Branch: master Date: Tue, 9 Jan 2018 13:40:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 95fa48a1-9284-4b2e-a997-013c56e095d7 X-Archives-Hash: d2b2cab9f3a9f674baf182df4d021173 commit: de3e6aa9c93b8e5a407ab640323378b492f38149 Author: Bernard Cafarelli gentoo org> AuthorDate: Tue Jan 9 13:00:31 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Jan 9 13:38:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3e6aa9 dev-python/ntlm-auth: initial import Dependency for dev-python/requests-ntlm Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/ntlm-auth/Manifest | 1 + dev-python/ntlm-auth/metadata.xml | 15 +++++++++++++++ dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild | 21 +++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/ntlm-auth/Manifest b/dev-python/ntlm-auth/Manifest new file mode 100644 index 00000000000..ce7b7550b26 --- /dev/null +++ b/dev-python/ntlm-auth/Manifest @@ -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 index 00000000000..68bde49cc71 --- /dev/null +++ b/dev-python/ntlm-auth/metadata.xml @@ -0,0 +1,15 @@ + + + + + voyageur@gentoo.org + Bernard Cafarelli + + + python@gentoo.org + Python + + + ntlm-auth + + 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 index 00000000000..54b600d8ff1 --- /dev/null +++ b/dev-python/ntlm-auth/ntlm-auth-1.0.6.ebuild @@ -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}"