From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6BBE13835A for ; Thu, 11 Jun 2020 08:01:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAFBBE09AD; Thu, 11 Jun 2020 08:01:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D260EE09B0 for ; Thu, 11 Jun 2020 08:01:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E407034EB5D for ; Thu, 11 Jun 2020 08:01:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8508729A for ; Thu, 11 Jun 2020 08:01:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591862505.11615a048d63e1cded26ea5ad4a034a7d28e0d36.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pip/pip-19.3.1-r2.ebuild dev-python/pip/pip-20.0.2.ebuild dev-python/pip/pip-20.1.ebuild X-VCS-Directories: dev-python/pip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 11615a048d63e1cded26ea5ad4a034a7d28e0d36 X-VCS-Branch: master Date: Thu, 11 Jun 2020 08:01:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: faa3f774-7340-45d1-935d-7abd62f0a8d1 X-Archives-Hash: 75f553962d70d6459e8231c48763f187 commit: 11615a048d63e1cded26ea5ad4a034a7d28e0d36 Author: Michał Górny gentoo org> AuthorDate: Thu Jun 11 07:22:07 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 11 08:01:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11615a04 dev-python/pip: Backport endianness patch to older versions Thanks to Dakon for preparing and testing this. Signed-off-by: Michał Górny gentoo.org> dev-python/pip/pip-19.3.1-r2.ebuild | 1 + dev-python/pip/pip-20.0.2.ebuild | 1 + dev-python/pip/pip-20.1.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/dev-python/pip/pip-19.3.1-r2.ebuild b/dev-python/pip/pip-19.3.1-r2.ebuild index 7a211e7afe0..17ca2852b9e 100644 --- a/dev-python/pip/pip-19.3.1-r2.ebuild +++ b/dev-python/pip/pip-19.3.1-r2.ebuild @@ -54,6 +54,7 @@ python_prepare_all() { # these are from upstream git "${FILESDIR}/pip-19.3.1-network-tests.patch" + "${FILESDIR}/${PN}-20.1.1-test-endian.patch" ) if ! use vanilla; then PATCHES+=( "${FILESDIR}/pip-19.3.1-r2-disable-system-install.patch" ) diff --git a/dev-python/pip/pip-20.0.2.ebuild b/dev-python/pip/pip-20.0.2.ebuild index 4fa44879fcf..fa155d4b02d 100644 --- a/dev-python/pip/pip-20.0.2.ebuild +++ b/dev-python/pip/pip-20.0.2.ebuild @@ -54,6 +54,7 @@ DEPEND=" python_prepare_all() { local PATCHES=( "${FILESDIR}/${PN}-19.3-disable-version-check.patch" + "${FILESDIR}/${PN}-20.1.1-test-endian.patch" ) if ! use vanilla; then PATCHES+=( "${FILESDIR}/pip-20.0.2-disable-system-install.patch" ) diff --git a/dev-python/pip/pip-20.1.ebuild b/dev-python/pip/pip-20.1.ebuild index 99ae4f7dca1..9da532f79f0 100644 --- a/dev-python/pip/pip-20.1.ebuild +++ b/dev-python/pip/pip-20.1.ebuild @@ -56,6 +56,7 @@ DEPEND=" python_prepare_all() { local PATCHES=( "${FILESDIR}/${PN}-19.3-disable-version-check.patch" + "${FILESDIR}/${PN}-20.1.1-test-endian.patch" ) if ! use vanilla; then PATCHES+=( "${FILESDIR}/pip-20.0.2-disable-system-install.patch" )