commit:     702db76345b0e33dd7cf50b8994b3850b1aa8b4e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 08:36:52 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 08:36:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=702db763

dev-python/paramiko: Fix broken whitespacing in version declaration of deps

* Add live version

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=575664

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 .../files/paramiko-1.16.0-install_requires.patch       | 18 ++++++++++++++++++
 dev-python/paramiko/paramiko-1.16.0.ebuild             |  6 +++++-
 .../{paramiko-1.16.0.ebuild => paramiko-9999.ebuild}   | 13 +++++++------
 3 files changed, 30 insertions(+), 7 deletions(-)

diff --git a/dev-python/paramiko/files/paramiko-1.16.0-install_requires.patch 
b/dev-python/paramiko/files/paramiko-1.16.0-install_requires.patch
new file mode 100644
index 0000000..fde5e11
--- /dev/null
+++ b/dev-python/paramiko/files/paramiko-1.16.0-install_requires.patch
@@ -0,0 +1,18 @@
+ setup.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 629c28f..e987dc6 100644
+--- a/setup.py
++++ b/setup.py
+@@ -41,8 +41,8 @@ try:
+     from setuptools import setup
+     kw = {
+         'install_requires': [
+-            'pycrypto >= 2.1, != 2.4',
+-            'ecdsa >= 0.11',
++            'pycrypto >=2.1,!=2.4',
++            'ecdsa >=0.11',
+         ],
+     }
+ except ImportError:

diff --git a/dev-python/paramiko/paramiko-1.16.0.ebuild 
b/dev-python/paramiko/paramiko-1.16.0.ebuild
index fa68870..218aaba 100644
--- a/dev-python/paramiko/paramiko-1.16.0.ebuild
+++ b/dev-python/paramiko/paramiko-1.16.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -28,6 +28,10 @@ DEPEND="${RDEPEND}
 # Required for testsuite
 DISTUTILS_IN_SOURCE_BUILD=1
 
+PATCHES=(
+       "${FILESDIR}"/${P}-install_requires.patch
+)
+
 python_test() {
        "${PYTHON}" test.py --verbose || die "Tests fail with ${EPYTHON}"
 }

diff --git a/dev-python/paramiko/paramiko-1.16.0.ebuild 
b/dev-python/paramiko/paramiko-9999.ebuild
similarity index 68%
copy from dev-python/paramiko/paramiko-1.16.0.ebuild
copy to dev-python/paramiko/paramiko-9999.ebuild
index fa68870..0048727 100644
--- a/dev-python/paramiko/paramiko-1.16.0.ebuild
+++ b/dev-python/paramiko/paramiko-9999.ebuild
@@ -1,21 +1,22 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
 PYTHON_REQ_USE="threads(+)"
 
-inherit distutils-r1
+inherit distutils-r1 git-r3
 
 DESCRIPTION="SSH2 protocol library"
 HOMEPAGE="http://www.paramiko.org/ https://github.com/paramiko/paramiko/ 
https://pypi.python.org/pypi/paramiko/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/paramiko/paramiko.git";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris"
+KEYWORDS=""
 IUSE="doc examples"
 
 RDEPEND="
@@ -34,7 +35,7 @@ python_test() {
 
 python_install_all() {
        use doc && local HTML_DOCS=( docs/. )
-       use examples && local EXAMPLES=( demos/. )
+       use examples && dodoc -r demos
 
        distutils-r1_python_install_all
 }

Reply via email to