mirror of
https://github.com/openRuyi-Project/openRuyi.git
synced 2026-05-13 18:33:44 +00:00
61 lines
1.7 KiB
RPMSpec
61 lines
1.7 KiB
RPMSpec
# SPDX-FileCopyrightText: (C) 2025 Institute of Software, Chinese Academy of Sciences (ISCAS)
|
|
# SPDX-FileCopyrightText: (C) 2025 openRuyi Project Contributors
|
|
# SPDX-FileContributor: Zheng Junjie <zhengjunjie@iscas.ac.cn>
|
|
# SPDX-FileContributor: misaka00251 <liuxin@iscas.ac.cn>
|
|
#
|
|
# SPDX-License-Identifier: MulanPSL-2.0
|
|
|
|
Name: python-PyYAML
|
|
Version: 6.0.2
|
|
Release: %autorelease
|
|
Summary: YAML parser and emitter for Python
|
|
License: MIT
|
|
URL: https://github.com/yaml/pyyaml
|
|
#!RemoteAsset
|
|
Source: https://github.com/yaml/pyyaml/archive/%{version}.tar.gz
|
|
|
|
BuildRequires: libyaml-devel
|
|
BuildRequires: pkgconfig(python3)
|
|
BuildRequires: python3dist(pytest)
|
|
BuildRequires: expat
|
|
|
|
%py_provides python3-yaml
|
|
# For lazy people - 251
|
|
%py_provides python3-pyyaml
|
|
|
|
%description
|
|
YAML is a data serialization format designed for human readability and
|
|
interaction with scripting languages. PyYAML is a YAML parser and
|
|
emitter for Python.
|
|
|
|
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
|
|
support, capable extension API, and sensible error messages. PyYAML
|
|
supports standard YAML tags and provides Python-specific tags that
|
|
allow to represent an arbitrary Python object.
|
|
|
|
PyYAML is applicable for a broad range of tasks from complex
|
|
configuration files to object serialization and persistence.
|
|
|
|
%prep
|
|
%autosetup -p1 -n pyyaml-%{version}
|
|
chmod a-x examples/yaml-highlight/yaml_hl.py
|
|
|
|
# remove pre-generated file
|
|
rm -rf ext/_yaml.c
|
|
|
|
%generate_buildrequires
|
|
%pyproject_buildrequires
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files yaml _yaml
|
|
|
|
%files -f %{pyproject_files}
|
|
%doc CHANGES README.md examples
|
|
|
|
%changelog
|
|
%{?autochangelog}
|