Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pip: pip-7.1.0.ebuild ChangeLog
Date: Thu, 02 Jul 2015 05:03:38
Message-Id: 20150702050331.D074773A@oystercatcher.gentoo.org
1 patrick 15/07/02 05:03:31
2
3 Modified: ChangeLog
4 Added: pip-7.1.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.67 dev-python/pip/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 2 Jun 2015 08:47:29 -0000 1.66
24 +++ ChangeLog 2 Jul 2015 05:03:31 -0000 1.67
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.66 2015/06/02 08:47:29 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.67 2015/07/02 05:03:31 patrick Exp $
30 +
31 +*pip-7.1.0 (02 Jul 2015)
32 +
33 + 02 Jul 2015; Patrick Lauer <patrick@g.o> +pip-7.1.0.ebuild:
34 + Bump
35
36 *pip-7.0.3 (02 Jun 2015)
37
38
39
40
41 1.1 dev-python/pip/pip-7.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-7.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pip-7.1.0.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.1.0.ebuild,v 1.1 2015/07/02 05:03:31 patrick 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 }