Sync from SUSE:SLFO:Main python-strictyaml revision f93351a04811560419ab330e707fc47f

This commit is contained in:
2025-05-13 17:13:01 +02:00
commit bfe473fa28
4 changed files with 170 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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

70
python-strictyaml.changes Normal file
View File

@@ -0,0 +1,70 @@
-------------------------------------------------------------------
Tue Jan 2 22:44:16 UTC 2024 - Dirk Müller <dmueller@suse.com>
- require setuptools
-------------------------------------------------------------------
Fri Dec 8 15:59:25 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.7.3:
* REFACTOR : Fix pipeline.
* TOOLING : Improvements to pyenv multi-environment tester.
* FEATURE : Upgraded package to use pyproject.toml files
* REFACTOR : Fixed linter errors.
* TOOLING : Build wheel and sdist that both work.
-------------------------------------------------------------------
Fri Jun 9 06:38:00 UTC 2023 - ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
-------------------------------------------------------------------
Sat Oct 29 15:59:02 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 1.6.2
No relevant code changes.
see details changelog: https://hitchdev.com/strictyaml/changelog/#latest
-------------------------------------------------------------------
Wed Mar 9 10:02:18 UTC 2022 - Michael Ströder <michael@stroeder.com>
- update to 1.6.1
too many changes to be listed here
see detailed changelog: https://hitchdev.com/strictyaml/changelog/
-------------------------------------------------------------------
Tue Aug 3 08:39:38 UTC 2021 - Markéta Machová <mmachova@suse.com>
- update to 1.4.4
* Add support for NaN and infinity representations
* Optional keys in mappings and set value to None
* Support underscores in int and decimal
* NullNone - parse 'null' as None like YAML 1.2 does.
* Bundle last propertly working ruamel.yaml version in with strictyaml.
-------------------------------------------------------------------
Tue Mar 17 12:35:33 UTC 2020 - pgajdos@suse.com
- version update to 1.0.6
* BUGFIX : Fix accidental python 2 breakage.
* BUGFIX : Accidental misrecognition of boolean values as numbers - cause of #85.
* BUGFIX : Fix for #86 - handle changing multiline strings.
* BUGFIX: handle deprecated collections import in the parser (#82)
-------------------------------------------------------------------
Thu Oct 10 08:20:48 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 1.0.5:
* BUGFIX : Fixed python 2 bug introduced when fixing #72.
* FEATURE : Include tests / stories in package.
* BUG: issue #72. Now setitem uses schema.
-------------------------------------------------------------------
Fri Sep 13 14:51:23 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Expand %description.
-------------------------------------------------------------------
Tue Sep 10 12:06:10 PM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Initial spec for v1.0.3

74
python-strictyaml.spec Normal file
View File

@@ -0,0 +1,74 @@
#
# spec file for package python-strictyaml
#
# 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
# 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-strictyaml
Version: 1.7.3
Release: 0
Summary: Strict, typed YAML parser
License: MIT
URL: https://hitchdev.com/strictyaml
Source: https://files.pythonhosted.org/packages/source/s/strictyaml/strictyaml-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-python-dateutil >= 2.6.0
BuildArch: noarch
# SECTION test requirements
# BuildRequires: %{python_module pytest}
# BuildRequires: %{python_module python-dateutil >= 2.6.0}
# /SECTION
%python_subpackages
%description
StrictYAML is a type-safe YAML parser that parses and validates a
restricted subset of the YAML specification.
Priorities:
* No parsing of hard to read and insecure features of YAML like the
Norway problem.
* Strict validation of markup and straightforward type casting.
* Acting as a near-drop in replacement for pyyaml, ruamel.yaml or poyo.
* Comment preservation across a read-write cycle
* Speed is not a key concern
%prep
%setup -q -n strictyaml-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
#%%check
# Not feasible due to extensive number of test dependencies
# and they are not suited for rpmbuild
# https://github.com/hitchdev/hitchkey/issues/2
%files %{python_files}
%doc README.md
%license LICENSE.txt
%{python_sitelib}/strictyaml
%{python_sitelib}/strictyaml-%{version}.dist-info
%changelog

BIN
strictyaml-1.7.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.