Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pip: pip-1.5.5.ebuild ChangeLog
Date: Sat, 03 May 2014 07:51:58
Message-Id: 20140503075154.A0BCE2004C@flycatcher.gentoo.org
1 radhermit 14/05/03 07:51:54
2
3 Modified: ChangeLog
4 Added: pip-1.5.5.ebuild
5 Log:
6 Version bump, add python3_4 support.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.33 dev-python/pip/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 25 Apr 2014 14:20:02 -0000 1.32
24 +++ ChangeLog 3 May 2014 07:51:54 -0000 1.33
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pip
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.32 2014/04/25 14:20:02 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pip/ChangeLog,v 1.33 2014/05/03 07:51:54 radhermit Exp $
30 +
31 +*pip-1.5.5 (03 May 2014)
32 +
33 + 03 May 2014; Tim Harder <radhermit@g.o> +pip-1.5.5.ebuild:
34 + Version bump, add python3_4 support.
35
36 25 Apr 2014; Jeroen Roovers <jer@g.o> pip-1.5.4-r1.ebuild:
37 Marked ~hppa (bug #508282).
38
39
40
41 1.1 dev-python/pip/pip-1.5.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pip-1.5.5.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pip/pip-1.5.5.ebuild,v 1.1 2014/05/03 07:51:54 radhermit Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy )
54
55 inherit bash-completion-r1 distutils-r1
56
57 DESCRIPTION="Installs python packages -- replacement for easy_install"
58 HOMEPAGE="http://www.pip-installer.org/ http://pypi.python.org/pypi/pip/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="MIT"
62 KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
63 SLOT="0"
64 IUSE="zsh-completion"
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 python_install_all() {
73 local DOCS=( AUTHORS.txt docs/*.rst )
74 distutils-r1_python_install_all
75
76 COMPLETION="${T}"/completion.tmp
77
78 ${EPYTHON} pip/runner.py completion --bash > "${COMPLETION}" || die
79 newbashcomp "${COMPLETION}" ${PN}
80
81 if use zsh-completion ; then
82 ${EPYTHON} pip/runner.py completion --zsh > "${COMPLETION}" || die
83 insinto /usr/share/zsh/site-functions
84 newins "${COMPLETION}" _pip
85 fi
86 }