mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-29 17:41:05 +02:00
Upgraded the certifi, chardet, requests Portage packages
Upgraded dev-python/requests to version 0.11.1 on amd64 Upgraded dev-python/chardet to version 2.0.1 on amd64 Upgraded dev-python/certifi to version 0.0.8 on amd64 BUG=chromium-os:29730 TEST=trybot Change-Id: I0dbd13d80710d37c7393e020e0dc8c6af106f33d Reviewed-on: https://gerrit.chromium.org/gerrit/21275 Tested-by: Chris Masone <cmasone@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org> Commit-Ready: Chris Masone <cmasone@chromium.org>
This commit is contained in:
parent
117d296db0
commit
77aa61b056
1
sdk_container/src/third_party/portage-stable/dev-python/certifi/Manifest
vendored
Normal file
1
sdk_container/src/third_party/portage-stable/dev-python/certifi/Manifest
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST certifi-0.0.8.tar.gz 118129 RMD160 c4f67773b79b12d7b6cb747d4e93a5dde9d3dcd7 SHA1 57e14e28e30283f8b881b09b1402fec79e3fe692 SHA256 46ecf5f7526a08cc1f8bc8232adf0cffce046f46ceff95539daec42ebc4849ef
|
29
sdk_container/src/third_party/portage-stable/dev-python/certifi/certifi-0.0.8.ebuild
vendored
Normal file
29
sdk_container/src/third_party/portage-stable/dev-python/certifi/certifi-0.0.8.ebuild
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Copyright 1999-2012 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/certifi/certifi-0.0.8.ebuild,v 1.2 2012/03/31 19:39:32 floppym Exp $
|
||||||
|
|
||||||
|
EAPI="4"
|
||||||
|
SUPPORT_PYTHON_ABIS="1"
|
||||||
|
|
||||||
|
inherit distutils
|
||||||
|
|
||||||
|
DESCRIPTION="SSL root certificate bundle"
|
||||||
|
HOMEPAGE="http://python-requests.org/"
|
||||||
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="ISC"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~x86"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
RDEPEND="app-misc/ca-certificates"
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
distutils_src_install
|
||||||
|
installing() {
|
||||||
|
# Overwrite bundled certificates with a symlink.
|
||||||
|
dosym "${EPREFIX}/etc/ssl/certs/ca-certificates.crt" \
|
||||||
|
"$(python_get_sitedir -b)/certifi/cacert.pem"
|
||||||
|
}
|
||||||
|
python_execute_function -q installing
|
||||||
|
}
|
2
sdk_container/src/third_party/portage-stable/dev-python/chardet/Manifest
vendored
Normal file
2
sdk_container/src/third_party/portage-stable/dev-python/chardet/Manifest
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
DIST python2-chardet-2.0.1.tgz 177793 RMD160 054d940a152344f170758e928a484ac0f98df78f SHA1 d3240c8b7d04bd15d21feda76158223fa7f5f2bc SHA256 56fa0c37189b0a5f082d064dec59d69a044aaa3eeb7acb9b3081e2ba306deaa4
|
||||||
|
DIST python3-chardet-2.0.1.tgz 178439 RMD160 dee2260eef7d4e0e5bf16a0c7f0fda5de6ba9a62 SHA1 91881e8ebb000f8955883ea751e4b5eaf2ba2a7c SHA256 2b9a1e6a4e719ae3a3e19ccfe0b88cf2c74f3083c36ecac7451a64428a60a1af
|
36
sdk_container/src/third_party/portage-stable/dev-python/chardet/chardet-2.0.1.ebuild
vendored
Normal file
36
sdk_container/src/third_party/portage-stable/dev-python/chardet/chardet-2.0.1.ebuild
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
# Copyright 1999-2010 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/chardet/chardet-2.0.1.ebuild,v 1.9 2010/05/11 21:04:07 ranger Exp $
|
||||||
|
|
||||||
|
EAPI="2"
|
||||||
|
SUPPORT_PYTHON_ABIS="1"
|
||||||
|
DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1"
|
||||||
|
|
||||||
|
inherit distutils
|
||||||
|
|
||||||
|
DESCRIPTION="Character encoding auto-detection in Python."
|
||||||
|
HOMEPAGE="http://chardet.feedparser.org/ http://code.google.com/p/chardet/"
|
||||||
|
SRC_URI="http://chardet.feedparser.org/download/python2-${P}.tgz
|
||||||
|
http://chardet.feedparser.org/download/python3-${P}.tgz"
|
||||||
|
LICENSE="LGPL-2.1"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
DEPEND=""
|
||||||
|
RDEPEND=""
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
default
|
||||||
|
cp -pr "python3-${P}" "${P}"
|
||||||
|
|
||||||
|
unpacking() {
|
||||||
|
cp -pr "python${PYTHON_ABI:0:1}-${P}" "${S}-${PYTHON_ABI}"
|
||||||
|
}
|
||||||
|
python_execute_function -q unpacking
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
distutils_src_install
|
||||||
|
dohtml -r "${S}/docs/"*
|
||||||
|
}
|
1
sdk_container/src/third_party/portage-stable/dev-python/requests/Manifest
vendored
Normal file
1
sdk_container/src/third_party/portage-stable/dev-python/requests/Manifest
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST requests-0.11.1.tar.gz 63100 RMD160 fc86737d867fdf8fc048fdd7deb2019a875034af SHA1 556aa9334671ecea149ecda9bde5e22c3719266b SHA256 fd4260541d0e559c78e2b3072bd79f36e0f8ef935bcbbadaa8c98cd8b5a62897
|
23
sdk_container/src/third_party/portage-stable/dev-python/requests/requests-0.11.1.ebuild
vendored
Normal file
23
sdk_container/src/third_party/portage-stable/dev-python/requests/requests-0.11.1.ebuild
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Copyright 1999-2012 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/requests/requests-0.11.1.ebuild,v 1.1 2012/03/31 15:58:43 floppym Exp $
|
||||||
|
|
||||||
|
EAPI="4"
|
||||||
|
PYTHON_DEPEND="*:2.6"
|
||||||
|
SUPPORT_PYTHON_ABIS="1"
|
||||||
|
RESTRICT_PYTHON_ABIS="2.4 2.5"
|
||||||
|
|
||||||
|
inherit distutils
|
||||||
|
|
||||||
|
DESCRIPTION="HTTP library for human beings"
|
||||||
|
HOMEPAGE="http://python-requests.org/ http://pypi.python.org/pypi/requests"
|
||||||
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="ISC"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 ~x86"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
DEPEND="dev-python/setuptools"
|
||||||
|
RDEPEND=">=dev-python/certifi-0.0.7
|
||||||
|
>=dev-python/chardet-1.0.0"
|
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/certifi-0.0.8
vendored
Normal file
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/certifi-0.0.8
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
DEFINED_PHASES=compile install postinst postrm prepare setup
|
||||||
|
DEPEND=>=app-admin/eselect-python-20091230 dev-lang/python
|
||||||
|
DESCRIPTION=SSL root certificate bundle
|
||||||
|
EAPI=4
|
||||||
|
HOMEPAGE=http://python-requests.org/
|
||||||
|
KEYWORDS=amd64 ~x86
|
||||||
|
LICENSE=ISC
|
||||||
|
RDEPEND=app-misc/ca-certificates >=app-admin/eselect-python-20091230 dev-lang/python
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=mirror://pypi/c/certifi/certifi-0.0.8.tar.gz
|
||||||
|
_eclasses_=distutils b4c334e216d998c4ce4b750cb091e42e multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 6bbd984910e27780e5d0ea543d83ef84 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68
|
||||||
|
_md5_=cee25811fbcd67466606c4812e7e18c5
|
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/chardet-2.0.1
vendored
Normal file
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/chardet-2.0.1
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
DEFINED_PHASES=compile install postinst postrm prepare unpack
|
||||||
|
DEPEND=>=app-admin/eselect-python-20091230 dev-lang/python
|
||||||
|
DESCRIPTION=Character encoding auto-detection in Python.
|
||||||
|
EAPI=2
|
||||||
|
HOMEPAGE=http://chardet.feedparser.org/ http://code.google.com/p/chardet/
|
||||||
|
KEYWORDS=amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos
|
||||||
|
LICENSE=LGPL-2.1
|
||||||
|
RDEPEND=>=app-admin/eselect-python-20091230 dev-lang/python
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz http://chardet.feedparser.org/download/python3-chardet-2.0.1.tgz
|
||||||
|
_eclasses_=distutils b4c334e216d998c4ce4b750cb091e42e multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 6bbd984910e27780e5d0ea543d83ef84 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68
|
||||||
|
_md5_=b534c592f5513943b7245130f26fb33d
|
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/requests-0.11.1
vendored
Normal file
12
sdk_container/src/third_party/portage-stable/metadata/md5-cache/dev-python/requests-0.11.1
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
DEFINED_PHASES=compile install postinst postrm prepare setup
|
||||||
|
DEPEND=dev-python/setuptools >=app-admin/eselect-python-20091230 || ( =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* )
|
||||||
|
DESCRIPTION=HTTP library for human beings
|
||||||
|
EAPI=4
|
||||||
|
HOMEPAGE=http://python-requests.org/ http://pypi.python.org/pypi/requests
|
||||||
|
KEYWORDS=amd64 ~x86
|
||||||
|
LICENSE=ISC
|
||||||
|
RDEPEND=>=dev-python/certifi-0.0.7 >=dev-python/chardet-1.0.0 >=app-admin/eselect-python-20091230 || ( =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* )
|
||||||
|
SLOT=0
|
||||||
|
SRC_URI=mirror://pypi/r/requests/requests-0.11.1.tar.gz
|
||||||
|
_eclasses_=distutils b4c334e216d998c4ce4b750cb091e42e multilib 5f4ad6cf85e365e8f0c6050ddd21659e python 6bbd984910e27780e5d0ea543d83ef84 toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68
|
||||||
|
_md5_=064738971c31f3e49e089e6e6c533d9b
|
Loading…
x
Reference in New Issue
Block a user