From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com []) by mx.groups.io with SMTP id smtpd.web11.5377.1587598161246945471 for ; Wed, 22 Apr 2020 16:29:21 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: ashley.e.desimone@intel.com) IronPort-SDR: m/NfLPojJuZ6RSj8TjhhiZJt+7nkhSdeSVtFQbDdmMWD7qIJY0GkxnZWnEJIhM8E8BwDzw06Xo wE/ty0lgbi8g== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Apr 2020 16:29:20 -0700 IronPort-SDR: q6SYOqh48GxKoHxQnHomcKqApnBf+lcfDHlXkXTgzf70HFjnrdRnwhxiB25XxI3w/LV9QQEnO2 UIzOwj0YfSIA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,304,1583222400"; d="scan'208";a="259238868" Received: from aedesimo-desk.amr.corp.intel.com ([10.7.159.171]) by orsmga006.jf.intel.com with ESMTP; 22 Apr 2020 16:29:20 -0700 From: "Ashley E Desimone" To: devel@edk2.groups.io Cc: Nate DeSimone , Puja Pandya , Erik Bjorge , Bret Barkelew , Prince Agyeman Subject: [edk2-staging/EdkRepo] [PATCH V3 0/3] Add initial manifest repository support Date: Wed, 22 Apr 2020 16:29:12 -0700 Message-Id: <20200422232915.18640-1-ashley.e.desimone@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 V3 Addresses Prince's comments regarding typos in patch 2/3 V2 Replaces use of management with maitenance per feedback V2 Introduces patch 1/1 which removes a circular import between common_repo_functions.py and manifest_repos_maitenance.py by adding workspace_maiteneance.py. Adds initial support for manifest repository maitenance while retaining support for commands to use the existing edkrepo.cfg format and manifest repo support functions. Signed-off-by: Ashley E Desimone Cc: Nate DeSimone Cc: Puja Pandya Cc: Erik Bjorge Cc: Bret Barkelew Cc: Prince Agyeman Ashley E Desimone (3): EdkRepo: Initial commit of workspace_maitenance.py EdkRepo: Add edkrepo/common/workspace_maitenance/manifest_repos_maitenance EdkRepo: Update pull_latest_manifest_repo to use pull_single_manifest_repo edkrepo/common/common_repo_functions.py | 33 ++---------- edkrepo/common/humble.py | 8 --- .../humble/manifest_repos_maitenance_humble.py | 23 +++++++++ .../manifest_repos_maitenance.py | 59 ++++++++++++++++++++++ .../workspace_maitenance/workspace_maitenance.py | 30 +++++++++++ setup.py | 5 +- 6 files changed, 119 insertions(+), 39 deletions(-) create mode 100644 edkrepo/common/workspace_maitenance/humble/manifest_repos_maitenance_humble.py create mode 100644 edkrepo/common/workspace_maitenance/manifest_repos_maitenance.py create mode 100644 edkrepo/common/workspace_maitenance/workspace_maitenance.py -- 2.16.2.windows.1