From: "Jayaprakash, N" <n.jayaprakash@intel.com>
To: "Kinney, Michael D" <michael.d.kinney@intel.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: Rebecca Cran <rebecca@nuviainc.com>
Subject: Re: [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix readme files in edk2-libc
Date: Wed, 3 Nov 2021 06:28:42 +0000 [thread overview]
Message-ID: <DM6PR11MB333731A6F23162E2D6D36E5FEE8C9@DM6PR11MB3337.namprd11.prod.outlook.com> (raw)
In-Reply-To: <CO1PR11MB4929DF160E471300DDCD41A5D28A9@CO1PR11MB4929.namprd11.prod.outlook.com>
Hi Mike,
Has this change been merged to master?
Regards,
JP
-----Original Message-----
From: Kinney, Michael D <michael.d.kinney@intel.com>
Sent: 02 November 2021 00:30
To: Jayaprakash, N <n.jayaprakash@intel.com>; devel@edk2.groups.io; Kinney, Michael D <michael.d.kinney@intel.com>
Cc: Rebecca Cran <rebecca@nuviainc.com>
Subject: RE: [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix readme files in edk2-libc
Series Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
> -----Original Message-----
> From: Jayaprakash, N <n.jayaprakash@intel.com>
> Sent: Monday, November 1, 2021 11:35 AM
> To: devel@edk2.groups.io
> Cc: Rebecca Cran <rebecca@nuviainc.com>; Kinney, Michael D
> <michael.d.kinney@intel.com>; Jayaprakash, N <n.jayaprakash@intel.com>
> Subject: [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix
> readme files in edk2-libc
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3589
>
> This commit is to update remaining references to py 2.7.10 in
> StdLib/Readme.txt and StdLibPrivateInternalFiles/ReadMe.txt
> documents to py3.6.8.
>
> Cc: Rebecca Cran <rebecca@nuviainc.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Signed-off-by: Jayaprakash N <n.jayaprakash@intel.com>
> ---
> StdLib/ReadMe.txt | 15 +++++++--------
> StdLibPrivateInternalFiles/ReadMe.txt | 14 ++++++--------
> 2 files changed, 13 insertions(+), 16 deletions(-)
>
> diff --git a/StdLib/ReadMe.txt b/StdLib/ReadMe.txt index
> 5199692..8e0305e 100644
> --- a/StdLib/ReadMe.txt
> +++ b/StdLib/ReadMe.txt
> @@ -158,14 +158,13 @@ There are some boiler-plate declarations and
> definitions that need to be included in your application's INF and
> DSC build files. These are described in the CONFIGURATION section, below.
>
> -A subset of the Python 2.7.2 distribution is included as part of
> AppPkg. If desired, -the full Python 2.7.2 distribution may be downloaded from python.org and used instead.
> -Delete or rename the existing Python-2.7.2 directory then extract the
> downloaded -Python-2.7.2.tgz file into the AppPkg\Applications\Python
> directory. This will produce a
> -Python-2.7.2 directory containing the full Python distribution.
> Python files that had to be -modified for EDK II are in the
> AppPkg\Applications\Python\PyMod-2.7.2 directory. These -files need
> to be copied into the corresponding directories within the extracted Python-2.7.2 -directory before Python can be built.
> +A full distribution of the Python 3.6.8 has been included as part of
> +AppPkg. But only a subset of the features have been enabled for UEFI
> +use case. Python files that had to be modified for EDK II are in the AppPkg\Applications\Python\Python-3.6.8\PyMod-3.6.8 directory.
> +These files need to be copied into the corresponding directories
> +within the Python-3.6.8 directory before Python can be built. This
> +can be achieved by running the srcprep.py available under AppPkg\Applications\Python\Python-3.6.8.
> +
>
>
> BUILDING
> diff --git a/StdLibPrivateInternalFiles/ReadMe.txt
> b/StdLibPrivateInternalFiles/ReadMe.txt
> index 424ee96..e21d2c8 100644
> --- a/StdLibPrivateInternalFiles/ReadMe.txt
> +++ b/StdLibPrivateInternalFiles/ReadMe.txt
> @@ -146,14 +146,12 @@ There are some boiler-plate declarations and
> definitions that need to be included in your application's INF and
> DSC build files. These are described in the CONFIGURATION section, below.
>
> -A subset of the Python 2.7.2 distribution is included as part of
> AppPkg. If desired, -the full Python 2.7.2 distribution may be downloaded from python.org and used instead.
> -Delete or rename the existing Python-2.7.2 directory then extract the
> downloaded -Python-2.7.2.tgz file into the AppPkg\Applications\Python
> directory. This will produce a
> -Python-2.7.2 directory containing the full Python distribution.
> Python files that had to be -modified for EDK II are in the
> AppPkg\Applications\Python\PyMod-2.7.2 directory. These -files need
> to be copied into the corresponding directories within the extracted Python-2.7.2 -directory before Python can be built.
> +A full distribution of the Python 3.6.8 has been included as part of
> +AppPkg. But only a subset of the features have been enabled for UEFI
> +use case. Python files that had to be modified for EDK II are in the AppPkg\Applications\Python\Python-3.6.8\PyMod-3.6.8 directory.
> +These files need to be copied into the corresponding directories
> +within the Python-3.6.8 directory before Python can be built. This
> +can be achieved by running the srcprep.py available under AppPkg\Applications\Python\Python-3.6.8.
>
>
> BUILDING
> --
> 2.32.0.windows.2
next prev parent reply other threads:[~2021-11-03 6:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-01 18:35 [edk2-libc Patch V4 0/6] AppPkg/Applications/Python: to remove Py2 support from edk2-libc Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 1/6] AppPkg/Applications/Python: To remove the py2.7.2 uefi port code Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 2/6] AppPkg/Applications/Python: to remove document references to py2.7.2 Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 3/6] AppPkg/Applications/Python: to remove py2.7.10 support from edk2-libc Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 4/6] AppPkg/Applications/Python: to remove py2.7.10 references " Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 5/6] AppPkg/Applications/Python: to update readme files in edk2-libc Jayaprakash, N
2021-11-01 18:35 ` [edk2-libc Patch V4 6/6] AppPkg/Applications/Python: to fix " Jayaprakash, N
2021-11-01 18:59 ` Michael D Kinney
2021-11-03 6:28 ` Jayaprakash, N [this message]
2021-12-12 21:41 ` [edk2-devel] " quic_rcran
2021-12-12 21:42 ` Rebecca Cran
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM6PR11MB333731A6F23162E2D6D36E5FEE8C9@DM6PR11MB3337.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox