From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web11.5073.1584587815655692502 for ; Wed, 18 Mar 2020 20:16:55 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: nathaniel.l.desimone@intel.com) IronPort-SDR: wWsROU90D2IsjZEZyf0qSTooiieoDGsXmylE4qXhrVht0V5XG5Faq4sVwpAJYukBQ7Rgs5qNzc mFgEvhFcgtkg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Mar 2020 20:16:55 -0700 IronPort-SDR: iCnC+o4J24PsHay/5wFiCV0GkH5giTT0rN097CAaENgC2v+rQFwnBGltEzqaGOgF19TpBUYlwz j7jH1rDMfdbg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,570,1574150400"; d="scan'208";a="238797164" Received: from nldesimo-desk1.amr.corp.intel.com ([10.7.159.63]) by orsmga008.jf.intel.com with ESMTP; 18 Mar 2020 20:16:54 -0700 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Ashley DeSimone , Puja Pandya , Erik Bjorge , Bret Barkelew Subject: [edk2-staging/EdkRepo] [PATCH 0/4] Update 3rd party dependencies Date: Wed, 18 Mar 2020 20:16:32 -0700 Message-Id: <20200319031636.2269-1-nathaniel.l.desimone@intel.com> X-Mailer: git-send-email 2.24.0.windows.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch set updates the 3rd party dependencies used by EdkRepo to the latest versions available upstream at time of writing. This patch set also updates the installer to handle the poor situation that the GitPython upstream maintainers have created with their own dependencies after the removal of support for Python 2.x. Cc: Ashley DeSimone Cc: Puja Pandya Cc: Erik Bjorge Cc: Bret Barkelew Signed-off-by: Nate DeSimone Nate DeSimone (4): EdkRepo: Installer should remove obsolete dependencies EdkRepo: Remove old 3rd party dependencies EdkRepo: Add new 3rd party dependencies EdkRepo: Update 3rd party packages in installer config .../EdkRepoInstaller/InstallWorker.cs | 30 ++++++++- edkrepo_installer/EdkRepoInstallerConfig.xml | 10 +-- .../GitPython-2.1.11-py2.py3-none-any.whl | Bin 448094 -> 0 bytes .../Vendor/GitPython-3.1.0-py3-none-any.whl | Bin 0 -> 450716 bytes ...hl => colorama-0.4.3-py2.py3-none-any.whl} | Bin 15471 -> 15931 bytes .../Vendor/gitdb-4.0.2-py3-none-any.whl | Bin 0 -> 63571 bytes .../Vendor/gitdb2-2.0.5-py2.py3-none-any.whl | Bin 62555 -> 0 bytes .../Vendor/smmap-3.0.1-py2.py3-none-any.whl | Bin 0 -> 25412 bytes .../Vendor/smmap2-2.0.5-py2.py3-none-any.whl | Bin 24242 -> 0 bytes edkrepo_installer/linux-scripts/install.py | 58 ++++++++++++------ 10 files changed, 71 insertions(+), 27 deletions(-) delete mode 100644 edkrepo_installer/Vendor/GitPython-2.1.11-py2.py3-none-any.whl create mode 100644 edkrepo_installer/Vendor/GitPython-3.1.0-py3-none-any.whl rename edkrepo_installer/Vendor/{colorama-0.4.1-py2.py3-none-any.whl => colorama-0.4.3-py2.py3-none-any.whl} (50%) create mode 100644 edkrepo_installer/Vendor/gitdb-4.0.2-py3-none-any.whl delete mode 100644 edkrepo_installer/Vendor/gitdb2-2.0.5-py2.py3-none-any.whl create mode 100644 edkrepo_installer/Vendor/smmap-3.0.1-py2.py3-none-any.whl delete mode 100644 edkrepo_installer/Vendor/smmap2-2.0.5-py2.py3-none-any.whl -- 2.24.0.windows.2