From b3a116065ae5d784f711bfb8cdfa5a0495202504d5c10143c22c9a05a80c79a9 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Date: Mon, 3 Mar 2025 08:46:43 +0000 Subject: [PATCH] - Add %{?sle15_python_module_pythons} OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sdjson?expand=0&rev=5 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + _multibuild | 3 ++ python-sdjson.changes | 15 ++++++++ python-sdjson.spec | 84 +++++++++++++++++++++++++++++++++++++++++++ sdjson-0.5.0.tar.gz | 3 ++ 6 files changed, 129 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _multibuild create mode 100644 python-sdjson.changes create mode 100644 python-sdjson.spec create mode 100644 sdjson-0.5.0.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..fcc7b97 --- /dev/null +++ b/_multibuild @@ -0,0 +1,3 @@ + + test + diff --git a/python-sdjson.changes b/python-sdjson.changes new file mode 100644 index 0000000..b55c571 --- /dev/null +++ b/python-sdjson.changes @@ -0,0 +1,15 @@ +------------------------------------------------------------------- +Thu Feb 27 11:59:28 UTC 2025 - ecsos + +- Add %{?sle15_python_module_pythons} + +------------------------------------------------------------------- +Fri Oct 25 05:20:57 UTC 2024 - Matej Cepl + +- Skip failing test test_unexpected_data + (gh#domdfcoding/singledispatch-json#55). + +------------------------------------------------------------------- +Fri Jul 26 07:14:39 UTC 2024 - Steve Kowalik + +- Initial release of 0.5.0 diff --git a/python-sdjson.spec b/python-sdjson.spec new file mode 100644 index 0000000..f083e3a --- /dev/null +++ b/python-sdjson.spec @@ -0,0 +1,84 @@ +# +# spec file for package python-sdjson +# +# 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/ +# + + +%global flavor @BUILD_FLAVOR@%{nil} +%if "%{flavor}" == "test" +%define psuffix -test +%bcond_without test +%else +%define psuffix %{nil} +%bcond_with test +%endif +%{?sle15_python_module_pythons} +Name: python-sdjson%{psuffix} +Version: 0.5.0 +Release: 0 +Summary: Custom JSON Encoder utilising functools.singledispatch +License: MIT +URL: https://github.com/domdfcoding/singledispatch-json +Source: https://github.com/domdfcoding/singledispatch-json/archive/refs/tags/v%{version}.tar.gz#/sdjson-%{version}.tar.gz +BuildRequires: %{python_module pip} +BuildRequires: %{python_module whey} +BuildRequires: python-rpm-macros +# SECTION test requirements +%if %{with test} +BuildRequires: %{python_module coincidence} +BuildRequires: %{python_module pytest-timeout} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module pytz} +BuildRequires: %{python_module sdjson = %{version}} +%endif +# /SECTION +BuildRequires: fdupes +Requires: python-domdf-python-tools >= 2.5.2 +Requires: python-typing-extensions >= 3.7.4.3 +BuildArch: noarch +%python_subpackages + +%description +Custom JSON Encoder for Python utilising functools.singledispatch to support +custom encoders for both Python's built-in classes and user-created classes, +without as much legwork. + +%prep +%autosetup -p1 -n singledispatch-json-%{version} + +%build +%pyproject_wheel + +%install +%if !%{with test} +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} +%endif + +%check +%if %{with test} +# skip because of gh#domdfcoding/singledispatch-json#55 +%pytest -k 'not test_unexpected_data' +%endif + +%if !%{with test} +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitelib}/sdjson +%{python_sitelib}/sdjson-%{version}.dist-info +%endif + +%changelog diff --git a/sdjson-0.5.0.tar.gz b/sdjson-0.5.0.tar.gz new file mode 100644 index 0000000..1962b48 --- /dev/null +++ b/sdjson-0.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b46f9ea7549083539cc8e504252a397fc3a88b12abab51a007d4823cb9cd083 +size 128056