Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/
Date: Mon, 23 Nov 2015 10:06:09
Message-Id: 1448273131.015c1f58eed5da83e9b4602b91fb34f898c8a3a6.jlec@gentoo
1 commit: 015c1f58eed5da83e9b4602b91fb34f898c8a3a6
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 23 09:54:42 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 23 10:05:31 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015c1f58
7
8 dev-python/pip: Drop vulnerable versions for CVE-2014-8991 and CVE-2013-5123
9
10 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=529954
11 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=501752
12
13 Package-Manager: portage-2.2.25
14 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
15
16 dev-python/pip/Manifest | 2 --
17 dev-python/pip/pip-1.5.6.ebuild | 38 --------------------------------------
18 dev-python/pip/pip-7.1.0.ebuild | 40 ----------------------------------------
19 3 files changed, 80 deletions(-)
20
21 diff --git a/dev-python/pip/Manifest b/dev-python/pip/Manifest
22 index 58ff084..0a63ead 100644
23 --- a/dev-python/pip/Manifest
24 +++ b/dev-python/pip/Manifest
25 @@ -1,3 +1 @@
26 -DIST pip-1.5.6.tar.gz 938120 SHA256 b1a4ae66baf21b7eb05a5e4f37c50c2706fa28ea1f8780ce8efe14dcd9f1726c SHA512 cecd1da900e95bf3e6164e6d0c8c989e8ce17ef892beb9581a567857fe69dd3490b45d366cbb8e3bc84cebcf62ecf34420bcc1fae3fd8cf448927438ae257b68 WHIRLPOOL d6b77000ec465f8ba15db9dd4ce23c491937d5c7ee8fa148cf1cc88d59e972ad0a4a86adeca0d6b5227e97e83c16ae6d14b76976b605db572c08ac7019a02e6d
27 -DIST pip-7.1.0.tar.gz 1049267 SHA256 d5275ba3221182a5dd1b6bcfbfc5ec277fb399dd23226d6fa018048f7e0f10f2 SHA512 abda274dfe5f81e121bef9b3bf7a64218f72786037c17b0d99f36c954b09d6b5200a8b78f43de4739c813628a49cbb9d300e869766958e4ed177cf9caad8d511 WHIRLPOOL 35b2953c00a2ff4838f5f550016292b125f06d10f90736b96efc2240dadeebbba8be3d1b860efbe9989bffd51f5a6c5fa43234615b513cdc1aa900df8eb25f2a
28 DIST pip-7.1.2.tar.gz 1049170 SHA256 ca047986f0528cfa975a14fb9f7f106271d4e0c3fe1ddced6c1db2e7ae57a477 SHA512 78082afe6b559bf87f91ae9b6d304cfbfce00206e09be42fdae9d449a55cd8d968df6873e834191d0b0e6baae29e72eb3eee42386ff7c5dc9c29b6c28b754449 WHIRLPOOL 953fdc9104f3ac34c9104ec93948f58c4b0e193f18da60d3247d801c283c574490f8b91146e4278888c0b920090f537095c1a1693ca352d062dd98473390fdc9
29
30 diff --git a/dev-python/pip/pip-1.5.6.ebuild b/dev-python/pip/pip-1.5.6.ebuild
31 deleted file mode 100644
32 index d0560d9..0000000
33 --- a/dev-python/pip/pip-1.5.6.ebuild
34 +++ /dev/null
35 @@ -1,38 +0,0 @@
36 -# Copyright 1999-2015 Gentoo Foundation
37 -# Distributed under the terms of the GNU General Public License v2
38 -# $Id$
39 -
40 -EAPI=5
41 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
42 -PYTHON_REQ_USE="threads(+)"
43 -
44 -inherit bash-completion-r1 distutils-r1
45 -
46 -DESCRIPTION="Installs python packages -- replacement for easy_install"
47 -HOMEPAGE="http://www.pip-installer.org/ https://pypi.python.org/pypi/pip/"
48 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
49 -
50 -LICENSE="MIT"
51 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
52 -SLOT="0"
53 -IUSE=""
54 -
55 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
56 -DEPEND="${RDEPEND}"
57 -
58 -# required test data isn't bundled with the tarball
59 -RESTRICT="test"
60 -
61 -python_install_all() {
62 - local DOCS=( AUTHORS.txt docs/*.rst )
63 - distutils-r1_python_install_all
64 -
65 - COMPLETION="${T}"/completion.tmp
66 -
67 - ${EPYTHON} pip/runner.py completion --bash > "${COMPLETION}" || die
68 - newbashcomp "${COMPLETION}" ${PN}
69 -
70 - ${EPYTHON} pip/runner.py completion --zsh > "${COMPLETION}" || die
71 - insinto /usr/share/zsh/site-functions
72 - newins "${COMPLETION}" _pip
73 -}
74
75 diff --git a/dev-python/pip/pip-7.1.0.ebuild b/dev-python/pip/pip-7.1.0.ebuild
76 deleted file mode 100644
77 index 3af6fa0..0000000
78 --- a/dev-python/pip/pip-7.1.0.ebuild
79 +++ /dev/null
80 @@ -1,40 +0,0 @@
81 -# Copyright 1999-2015 Gentoo Foundation
82 -# Distributed under the terms of the GNU General Public License v2
83 -# $Id$
84 -
85 -EAPI=5
86 -
87 -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
88 -PYTHON_REQ_USE="threads(+)"
89 -
90 -inherit bash-completion-r1 distutils-r1
91 -
92 -DESCRIPTION="Installs python packages -- replacement for easy_install"
93 -HOMEPAGE="http://www.pip-installer.org/ https://pypi.python.org/pypi/pip/"
94 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
95 -
96 -LICENSE="MIT"
97 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
98 -SLOT="0"
99 -
100 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
101 -DEPEND="${RDEPEND}"
102 -
103 -# required test data isn't bundled with the tarball
104 -RESTRICT="test"
105 -
106 -PATCHES=( "${FILESDIR}"/${PN}-6.0.2-disable-version-check.patch )
107 -
108 -python_install_all() {
109 - local DOCS=( AUTHORS.txt docs/*.rst )
110 - distutils-r1_python_install_all
111 -
112 - COMPLETION="${T}"/completion.tmp
113 -
114 - ${EPYTHON} pip/__init__.py completion --bash > "${COMPLETION}" || die
115 - newbashcomp "${COMPLETION}" ${PN}
116 -
117 - ${EPYTHON} pip/__init__.py completion --zsh > "${COMPLETION}" || die
118 - insinto /usr/share/zsh/site-functions
119 - newins "${COMPLETION}" _pip
120 -}