17
0

2 Commits

5 changed files with 145 additions and 43 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d98fa1bfd995a6c839bc63aa0fa53786ee04bb3b9cf59a6ae04ae88a52e7ab7
size 395553

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5ba547fe1097bd6cda74c9d58f51f7dc787dc0766aca24eda6cfcca2ed85a31
size 263221

View File

@@ -1,4 +1,20 @@
-------------------------------------------------------------------
Wed Oct 23 02:26:13 UTC 2024 - Richard Lyu <rlyu@suse.com>
- Update version to 0.21.9
- Fix PCD parsing for PCDs containing single quotes
- Add documentation on publishing a release
- Dependency updates:
- coverage 7.5.3 -> 7.6.0
- ruff 0.4.7 -> 0.5.4
- setuptools 70.0.0 -> 71.1.0
- pytest 8.2.1 -> 8.3.1
- mkdocs-material 9.5.25 -> 9.5.29
- mkdocstrings-python 1.10.3 -> 1.10.5
- twine 5.1.0 -> 5.1.1
-------------------------------------------------------------------
Wed Jan 27 02:26:13 UTC 2021 - Gary Ching-Pang Lin <glin@suse.com>
- Initial import version: 0.10.13

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-edk2toollib
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,22 +15,25 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define skip_python2 1
%define skip_python2 1
%{?sle15_python_module_pythons}
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-edk2toollib
Version: 0.10.13
Version: 0.21.9
Release: 0
Summary: Tianocore Edk2 PyTool Library
Summary: Tianocore Edk2 PyTool Library
License: BSD-2-Clause-Patent
URL: https://github.com/tianocore/edk2-pytool-library
Source: https://files.pythonhosted.org/packages/source/e/edk2-pytool-library/edk2-pytool-library-%{version}.tar.gz
Source1: https://github.com/tianocore/edk2-pytool-library/raw/v%{version}/readme.md
Source2: https://github.com/tianocore/edk2-pytool-library/raw/v%{version}/license.txt
Source: edk2-pytool-library-%{version}.tar.gz
Source1: readme.md
Source2: license.txt
Group: Development/Tools/Other
BuildRequires: fdupes
BuildRequires: %{python_module pip}
BuildRequires: %{python_module py >= 1.4}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
@@ -42,19 +45,19 @@ This is a Tianocore maintained project consisting of a python library supporting
%prep
%setup -q -n edk2-pytool-library-%{version}
%autopatch -p1
cp %{SOURCE1} readme.md
cp %{SOURCE1} readme.md
cp %{SOURCE2} license.txt
%build
export CFLAGS="%{optflags} -fno-strict-aliasing"
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%post
%postun
%files %{python_files}

137
readme.md
View File

@@ -1,46 +1,84 @@
# Tianocore Edk2 PyTool Library (edk2toollib)
This is a Tianocore maintained project consisting of a python library supporting UEFI firmware development. This package's intent is to provide an easy way to organize and share python code to facilitate reuse across environments, tools, and scripts. Inclusion of this package and dependency management is best managed using Pip/Pypi.
[![pypi]][_pypi]
[![codecov]][_codecov]
[![ci]][_ci]
[![docs]][_docs]
This is a Tianocore maintained project consisting of a python library supporting
UEFI firmware development. This package's intent is to provide an easy way to
organize and share python code to facilitate reuse across environments, tools,
and scripts. Inclusion of this package and dependency management is best
managed using Pip/Pypi.
This is a supplemental package and is not required to be used for edk2 builds.
## Current Status
| Host Type | Toolchain | Branch | Build Status | Test Status | Code Coverage |
| :-------- | :-------- | :---- | :----- | :---- | :--- |
| Linux Ubuntu 1804 | Python 3.8.x | master | [![Build Status](https://dev.azure.com/tianocore/edk2-pytools-library/_apis/build/status/edk2-pytool-library%20-%20PR%20Gate%20-%20Linux)](https://dev.azure.com/tianocore/edk2-pytools-library/_build/latest?definitionId=1) | ![Azure DevOps tests](https://img.shields.io/azure-devops/tests/tianocore/edk2-pytools-library/1.svg) | ![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/tianocore/edk2-pytools-library/1.svg) |
| Windows Server 2019 | Python 3.8.x | master | [![Build Status](https://dev.azure.com/tianocore/edk2-pytools-library/_apis/build/status/Edk2-PyTool-Library%20PR%20build%20-%20Win%20-%20VS2019)](https://dev.azure.com/tianocore/edk2-pytools-library/_build/latest?definitionId=2) | ![Azure DevOps tests](https://img.shields.io/azure-devops/tests/tianocore/edk2-pytools-library/2.svg)| ![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/tianocore/edk2-pytools-library/2.svg) |
[![codecov]][_codecov]
[![ci]][_ci]
The code coverage and CI badges represent unit test status and the code coverage
of those unit tests. We require 100% unit test success (Hence the pass / fail)
and that code coverage percentage does not lower.
Supported Versions
| Host Type | Toolchain | Status
| :--------------- | :---------- | :--------------------
| [Windows-Latest] | Python 3.10 | [![ci]][_ci]
| [Windows-Latest] | Python 3.11 | [![ci]][_ci]
| [Windows-Latest] | Python 3.12 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.10 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.11 | [![ci]][_ci]
| [Ubuntu-Latest] | Python 3.12 | [![ci]][_ci]
| [MacOS-Latest] | Python 3.10 | [![coming_soon]][_ci]
| [MacOS-Latest] | Python 3.11 | [![coming_soon]][_ci]
| [MacOS-Latest] | Python 3.12 | [![coming_soon]][_ci]
### Current Release
[![PyPI](https://img.shields.io/pypi/v/edk2_pytool_library.svg)](https://pypi.org/project/edk2-pytool-library/)
[![pypi]][_pypi]
All release information is now tracked with Github
[tags](https://github.com/tianocore/edk2-pytool-library/tags),
[releases](https://github.com/tianocore/edk2-pytool-library/releases) and
[milestones](https://github.com/tianocore/edk2-pytool-library/milestones).
[releases](https://github.com/tianocore/edk2-pytool-library/releases) and
[milestones](https://github.com/tianocore/edk2-pytool-library/milestones).
## Content
The package contains classes and modules that can be used as the building blocks of tools that are relevant to UEFI firmware developers. These modules should attempt to provide generic support and avoid tightly coupling with specific use cases. It is expected these modules do not provide direct interaction with the user (through command line interfaces) but instead are intended to be wrapped in other scripts/tools which contains the specific usage and interface.
The package contains classes and modules that can be used as the building blocks
of tools that are relevant to UEFI firmware developers. These modules should
attempt to provide generic support and avoid tightly coupling with specific use
cases. It is expected these modules do not provide direct interaction with the
user (through command line interfaces) but instead are intended to be wrapped in
other scripts/tools which contains the specific usage and interface.
Examples:
* File parsers for edk2 specific file types. These parse the file and provide an object for interacting with the content.
* File parsers for edk2 specific file types. These parse the file and provide
an object for interacting with the content.
* UEFI specific services for encoding/decoding binary structures.
* UEFI defined values and interfaces for usage in python
* Python wrappers for other system cli tools ( signtool, catalog file generation, inf file generation, etc)
* Python utilities to provide consistent logging, command invocation, path resolution, etc
* Python wrappers for other system cli tools ( signtool, catalog file
generation, inf file generation, etc)
* Python utilities to provide consistent logging, command invocation, path
resolution, etc
## License
All content in this repository is licensed under [BSD-2-Clause Plus Patent License](license.txt).
All content in this repository is licensed under [BSD-2-Clause Plus Patent
License](license.txt).
[![PyPI - License](https://img.shields.io/pypi/l/edk2_pytool_library.svg)](https://pypi.org/project/edk2-pytool-library/)
[![PyPI -
License](https://img.shields.io/pypi/l/edk2_pytool_library.svg)](https://pypi.org/project/edk2-pytool-library/)
## Usage
NOTE: It is strongly recommended that you use python virtual environments. Virtual environments avoid changing the global python workspace and causing conflicting dependencies. Virtual environments are lightweight and easy to use. [Learn more](https://docs.python.org/3/library/venv.html)
NOTE: It is strongly recommended that you use python virtual environments.
Virtual environments avoid changing the global python workspace and causing
conflicting dependencies. Virtual environments are lightweight and easy to use.
[Learn more](https://docs.python.org/3/library/venv.html)
* To install run `pip install --upgrade edk2-pytool-library`
* To use in your python code
@@ -51,34 +89,79 @@ NOTE: It is strongly recommended that you use python virtual environments. Virt
## History
This library and functionality was ported from Project Mu.
For history and documentation prior to this see the original Project Mu project
https://github.com/microsoft/mu_pip_python_library
This library and functionality was ported from Project Mu. For history and
documentation prior to this see the original Project Mu project
<https://github.com/microsoft/mu_pip_python_library>
## Contribution Process
This project welcomes all types of contributions.
For issues, bugs, and questions it is best to open a [github issue](https://github.com/tianocore/edk2-pytool-library/issues).
This project welcomes all types of contributions. For issues, bugs, and
questions it is best to open a [github
issue](https://github.com/tianocore/edk2-pytool-library/issues).
### Code Contributions
For code contributions this project leverages github pull requests. See github tutorials, help, and documentation for complete descriptions.
For best success please follow the below process.
For code contributions this project leverages github pull requests. See github
tutorials, help, and documentation for complete descriptions. For best success
please follow the below process.
1. Contributor opens an issue describing problem or new desired functionality
2. Contributor forks repository in github
3. Contributor creates branch for work in their fork
4. Contributor makes code changes, writes relevant unit tests, authors documentation and release notes as necessary.
4. Contributor makes code changes, writes relevant unit tests, authors
documentation and release notes as necessary.
5. Contributor runs tests locally
6. Contributor submits PR to master branch of tianocore/edk2-pytool-library
1. PR reviewers will provide feedback on change. If any modifications are required, contributor will make changes and push updates.
1. PR reviewers will provide feedback on change. If any modifications are
required, contributor will make changes and push updates.
2. PR automation will run and validate tests pass
3. If all comments resolved, maintainers approved, and tests pass the PR will be squash merged and closed by the maintainers.
3. If all comments resolved, maintainers approved, and tests pass the PR
will be squash merged and closed by the maintainers.
## Maintainers
See the [github team](https://github.com/orgs/tianocore/teams/edk-ii-tool-maintainers) for more details.
See the [github
team](https://github.com/orgs/tianocore/teams/edk-ii-tool-maintainers) for more
details.
## Documentation
See the github repo __docs__ folder
[![docs]][_docs]
### Users and Consumers
Documentation for the most recent release of edk2-pytool-library is hosted on
[tianocore.org/edk2-pytool-library](https://www.tianocore.org/edk2-pytool-library/).
Raw documentation is located in the ```docs/``` folder and is split into two
separate categories. The first is located at ```docs/user/``` and is
documentation and API references for those that are using this package in their
own project. Users can generate a local copy of the documentation by executing the
following command from the root of the project:
```cmd
pip install --upgrade -e .[docs]
mkdocs serve
```
### Contributors
Contributor documentation is located at [docs/contributor/](https://github.com/tianocore/edk2-pytool-library/tree/master/docs/contributor)
and contains instructions for:
* Setting up a development and testing environment
* How edk2pytools is versioned and published
* How to publish a release
* Contributing to the edk2-pytool-extensions repository
[codecov]: https://codecov.io/gh/tianocore/edk2-pytool-library/branch/master/graph/badge.svg
[_codecov]: https://codecov.io/gh/tianocore/edk2-pytool-extensions/
[pypi]: https://img.shields.io/pypi/v/edk2_pytool_library.svg
[_pypi]: https://pypi.org/project/edk2-pytool-library/
[ci]: https://github.com/tianocore/edk2-pytool-library/actions/workflows/run-ci.yml/badge.svg?branch=master
[_ci]: https://github.com/tianocore/edk2-pytool-library/actions/workflows/run-ci.yml
[Windows-Latest]: https://github.com/actions/runner-images
[Ubuntu-Latest]: https://github.com/actions/runner-images
[MacOS-Latest]: https://github.com/actions/runner-images
[docs]: https://img.shields.io/website?label=docs&url=https%3A%2F%2Fwww.tianocore.org%2Fedk2-pytool-library%2F
[_docs]: https://www.tianocore.org/edk2-pytool-library/
[coming_soon]: https://img.shields.io/badge/CI-coming_soon-blue