Compare commits
No commits in common. "c9-beta" and "c10s" have entirely different histories.
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/pyproject-metadata-0.9.1.tar.gz
|
/python-pyproject-metadata-*.tar.gz
|
||||||
|
/pyproject-metadata-*.tar.gz
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
f74ebeced11345550fcdc27aee20aedce30962a7 SOURCES/pyproject-metadata-0.9.1.tar.gz
|
|
||||||
10
README.md
Normal file
10
README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# python-pyproject-metadata
|
||||||
|
|
||||||
|
[This package](https://github.com/FFY00/python-pyproject-metadata) contains a
|
||||||
|
dataclass for [PEP 621](https://peps.python.org/pep-0621/) metadata with
|
||||||
|
support for core metadata generation.
|
||||||
|
|
||||||
|
This project does not implement the parsing of `pyproject.toml` containing
|
||||||
|
PEP 621 metadata. Instead, given a Python data structure representing
|
||||||
|
PEP 621 metadata (already parsed), it will validate this input and
|
||||||
|
generate a PEP 643-compliant metadata file (e.g. PKG-INFO).
|
||||||
13
plan.fmf
Normal file
13
plan.fmf
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
|
||||||
|
discover:
|
||||||
|
how: shell
|
||||||
|
dist-git-source: true
|
||||||
|
tests:
|
||||||
|
- name: unittest
|
||||||
|
test: |
|
||||||
|
cd $(dirname $TMT_SOURCE_DIR/pyproject-metadata-*/tests) &&
|
||||||
|
pytest-3.14 -v tests/
|
||||||
|
require:
|
||||||
|
- python3.14-pytest
|
||||||
@ -1,13 +1,3 @@
|
|||||||
## START: Set by rpmautospec
|
|
||||||
## (rpmautospec version 0.6.5)
|
|
||||||
## RPMAUTOSPEC: autorelease, autochangelog
|
|
||||||
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
||||||
release_number = 3;
|
|
||||||
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
||||||
print(release_number + base_release_number - 1);
|
|
||||||
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
||||||
## END: Set by rpmautospec
|
|
||||||
|
|
||||||
%global python3_pkgversion 3.14
|
%global python3_pkgversion 3.14
|
||||||
|
|
||||||
# Building the documentation requires the furo Sphinx theme. But building furo
|
# Building the documentation requires the furo Sphinx theme. But building furo
|
||||||
@ -83,13 +73,4 @@ rm -rf html/{.buildinfo,.doctrees}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
## START: Generated by rpmautospec
|
%autochangelog
|
||||||
* Fri Nov 28 2025 Lukáš Zachar <lzachar@redhat.com> - 0.9.1-3
|
|
||||||
- Add gating
|
|
||||||
|
|
||||||
* Fri Nov 28 2025 Tomáš Hrnčiar <thrnciar@redhat.com> - 0.9.1-2
|
|
||||||
- Convert from Fedora for the Python 3.14 stack in RHEL
|
|
||||||
|
|
||||||
* Fri Nov 28 2025 Tomáš Hrnčiar <thrnciar@redhat.com> - 0.9.1-1
|
|
||||||
- RHEL: Rename SPEC to python3.14-pyproject-metadata.spec
|
|
||||||
## END: Generated by rpmautospec
|
|
||||||
Loading…
Reference in New Issue
Block a user