Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pip: pip-7.0.3.ebuild ChangeLog
Date: Tue, 02 Jun 2015 08:47:40
Message-Id: 20150602084729.5331EA10@oystercatcher.gentoo.org
1 jlec 15/06/02 08:47:29
2
3 Modified: ChangeLog
4 Added: pip-7.0.3.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.66 dev-python/pip/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 2 Jun 2015 05:16:02 -0000 1.65
24 +++ ChangeLog 2 Jun 2015 08:47:29 -0000 1.66
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pip
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.65 2015/06/02 05:16:02 jmorgan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.66 2015/06/02 08:47:29 jlec Exp $
30 +
31 +*pip-7.0.3 (02 Jun 2015)
32 +
33 + 02 Jun 2015; Justin Lecher <jlec@g.o> +pip-7.0.3.ebuild:
34 + Version Bump
35
36 02 Jun 2015; Jack Morgan <jmorgan@g.o> pip-1.5.6.ebuild:
37 sparc stable wrt bug #540290
38
39
40
41 1.1 dev-python/pip/pip-7.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pip-7.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-7.0.3.ebuild,v 1.1 2015/06/02 08:47:29 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
55
56 inherit bash-completion-r1 distutils-r1
57
58 DESCRIPTION="Installs python packages -- replacement for easy_install"
59 HOMEPAGE="http://www.pip-installer.org/ http://pypi.python.org/pypi/pip/"
60 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
61
62 LICENSE="MIT"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
64 SLOT="0"
65
66 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
67 DEPEND="${RDEPEND}"
68
69 # required test data isn't bundled with the tarball
70 RESTRICT="test"
71
72 PATCHES=( "${FILESDIR}"/${PN}-6.0.2-disable-version-check.patch )
73
74 python_install_all() {
75 local DOCS=( AUTHORS.txt docs/*.rst )
76 distutils-r1_python_install_all
77
78 COMPLETION="${T}"/completion.tmp
79
80 ${EPYTHON} pip/__init__.py completion --bash > "${COMPLETION}" || die
81 newbashcomp "${COMPLETION}" ${PN}
82
83 ${EPYTHON} pip/__init__.py completion --zsh > "${COMPLETION}" || die
84 insinto /usr/share/zsh/site-functions
85 newins "${COMPLETION}" _pip
86 }