forked from pool/python-atomicwrites
Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| e74e2d1ba6 | |||
| e8515a218b | |||
| 9d74127bce | |||
| 87b104c4c7 | |||
| 89248937f1 | |||
| f4cbf1ead1 | |||
| 0b2ea4754d | |||
| e28d1ad31f | |||
| d35bc382a2 |
@@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 20 09:46:50 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Fix -doc package generation, we are adding the -doc to the suffix,
|
||||
no need to have a subpackage here, multibuild does the trick.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 25 10:40:31 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Build for modern python in SLE15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 05:35:08 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-atomicwrites
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -24,6 +24,8 @@
|
||||
%define psuffix %{nil}
|
||||
%bcond_with doc
|
||||
%endif
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-atomicwrites%{psuffix}
|
||||
Version: 1.4.1
|
||||
Release: 0
|
||||
@@ -41,10 +43,9 @@ BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
%if %{with doc}
|
||||
BuildRequires: %{modern_python}-Sphinx
|
||||
BuildRequires: %{python_module atomicwrites}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: python3-Sphinx
|
||||
Provides: %{python_module atomicwrites-doc = %{version}}
|
||||
%endif
|
||||
%python_subpackages
|
||||
|
||||
@@ -61,24 +62,6 @@ Features that distinguish it from other similar libraries:
|
||||
%autosetup -p1 -n atomicwrites-%{version}
|
||||
rm -rf atomicwrites.egg-info
|
||||
|
||||
%if %{with doc}
|
||||
%package -n %{name}-doc
|
||||
Summary: Atomic file writes for Python (documentation)
|
||||
Group: Documentation/HTML
|
||||
|
||||
%description -n %{name}-doc
|
||||
Atomic file writes for python3.
|
||||
Features that distinguish it from other similar libraries:
|
||||
|
||||
- Race-free assertion that the target file doesn't yet exist. This can be
|
||||
controlled with the 'overwrite' parameter.
|
||||
|
||||
- High-level API that wraps a very flexible class-based API.
|
||||
|
||||
This package contains the documentation for both python2 and python3 versions
|
||||
of python-atomicwrites
|
||||
%endif
|
||||
|
||||
%build
|
||||
%if %{without doc}
|
||||
%pyproject_wheel
|
||||
@@ -100,20 +83,14 @@ popd
|
||||
%pytest
|
||||
%endif
|
||||
|
||||
%if %{without doc}
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%if %{without doc}
|
||||
%{python_sitelib}/atomicwrites
|
||||
%{python_sitelib}/atomicwrites-%{version}.dist-info
|
||||
|
||||
%else
|
||||
|
||||
%files -n %{name}-doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%doc docs/_build/html
|
||||
%endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user