Sync from SUSE:ALP:Source:Standard:1.0 python-pyproject-metadata revision 981bfc2facdd8354096384e5c09cdecb
This commit is contained in:
commit
5f8a1902c1
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
python-pyproject-metadata-0.7.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
python-pyproject-metadata-0.7.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
28
python-pyproject-metadata.changes
Normal file
28
python-pyproject-metadata.changes
Normal file
@ -0,0 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 17 12:49:35 UTC 2023 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- update to 0.7.1
|
||||
* Use UTF-8 when opening files
|
||||
* Use tomllib on Python >= 3.11
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 21 12:31:11 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- add sle15_python_module_pythons (jsc#PED-68)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 13 22:43:52 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Make calling of %{sle15modernpython} optional.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 2 10:18:48 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Skip a test failing due to new error strings in packaging 22
|
||||
gh#FFY00/python-pyproject-metadata#41
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 10 21:25:27 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Initial specfile for v 0.6.1
|
||||
- Required by meson-python
|
73
python-pyproject-metadata.spec
Normal file
73
python-pyproject-metadata.spec
Normal file
@ -0,0 +1,73 @@
|
||||
#
|
||||
# spec file for package python-pyproject-metadata
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyproject-metadata
|
||||
Version: 0.7.1
|
||||
Release: 0
|
||||
Summary: PEP 621 metadata parsing
|
||||
License: MIT
|
||||
URL: https://github.com/FFY00/python-pyproject-metadata
|
||||
Source: https://github.com/FFY00/python-pyproject-metadata/archive/refs/tags/%{version}.tar.gz#/python-pyproject-metadata-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module packaging >= 19}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools >= 42}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-packaging >= 19
|
||||
BuildArch: noarch
|
||||
# SECTION test
|
||||
BuildRequires: %{python_module pytest}
|
||||
%if 0%{python_version_nodots} < 311
|
||||
BuildRequires: %{python_module tomli >= 1.0.0}
|
||||
%endif
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Dataclass for PEP 621 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`).
|
||||
|
||||
%prep
|
||||
%setup -q -n python-pyproject-metadata-%{version}
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
%pytest
|
||||
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%{python_sitelib}/pyproject_metadata
|
||||
%{python_sitelib}/pyproject_metadata-%{version}*-info
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user