forked from pool/python-py-build-cmake
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| ec3948e12b | |||
| a7d634bdd5 | |||
| f331d75aa5 | |||
| c17b1b07c5 | |||
| 9426d652e6 | |||
| efb9b7cd3c | |||
| 79a2999044 | |||
| 1e741f31fa |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e707875b2914d904301b6f19500d841e4e60e7986b41335a5c9ce59d15b1b5c
|
||||
size 1424371
|
||||
3
py-build-cmake-0.4.3-gh.tar.gz
Normal file
3
py-build-cmake-0.4.3-gh.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd6a737853aeb663464597b8be8f37571209b453b300c4dbe594649e148f5e96
|
||||
size 1706845
|
||||
@@ -1,3 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 14 02:42:50 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Loosen {Build,}Requires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 28 16:44:56 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.4.3:
|
||||
* Experimental free-threading support
|
||||
* Python 3.14 support
|
||||
* Set `MYPYPATH` for stubgen
|
||||
* Add `PY_BUILD_CMAKE_VERBOSE_ENV` option
|
||||
* Use `CMAKE_GENERATOR` environment variable as default value
|
||||
for `cmake.generator`
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 26 11:30:35 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.4.2
|
||||
* Improved documentation: https://tttapa.github.io/py-build-cmake/
|
||||
* Perform environment variable substitution before generating build hooks
|
||||
* Fix verbose output on Python 3.7
|
||||
- Use Python 3.11 on SLE-15 by default
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 11 09:32:04 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
|
||||
|
||||
- Update to 0.4.1:
|
||||
* Produce a warning when MACOSX_DEPLOYMENT_TARGET is set in the
|
||||
py-build-cmake config (#43)
|
||||
* Support appending and prepending to environment variables
|
||||
- Update to 0.4.0:
|
||||
* MACOSX_DEPLOYMENT_TARGET support:
|
||||
Its value is now used to determine the Wheel platform tag on macOS,
|
||||
and the target version is passed on to CMake.
|
||||
* Improved documentation.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 25 19:11:00 UTC 2023 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-py-build-cmake
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,29 +16,34 @@
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-py-build-cmake
|
||||
Version: 0.1.8
|
||||
Version: 0.4.3
|
||||
Release: 0
|
||||
Summary: Modern, PEP 517 compliant build backend for creating Python packages with
|
||||
License: MIT
|
||||
URL: https://github.com/tttapa/py-build-cmake
|
||||
Source: https://github.com/tttapa/py-build-cmake/archive/refs/tags/%{version}.tar.gz#/py-build-cmake-%{version}-gh.tar.gz
|
||||
BuildRequires: %{python_module click >= 8.1.3 with %python-click < 8.2}
|
||||
BuildRequires: %{python_module distlib >= 0.3.5 with %python-distlib < 0.4}
|
||||
BuildRequires: %{python_module flit-core >= 3.7 with %python-flit-core < 4}
|
||||
BuildRequires: %{python_module click >= 8.1.3}
|
||||
BuildRequires: %{python_module distlib >= 0.3.5}
|
||||
BuildRequires: %{python_module flit-core >= 3.7}
|
||||
BuildRequires: %{python_module lark}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pyproject-metadata}
|
||||
BuildRequires: %{python_module pytest}
|
||||
BuildRequires: %{python_module tomli if %python-base < 3.11}
|
||||
BuildRequires: cmake
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: (python-click >= 8.1.3 with python-click < 8.2)
|
||||
Requires: (python-distlib >= 0.3.5 with python-distlib < 0.4)
|
||||
Requires: (python-flit-core >= 3.7 with python-flit-core < 4)
|
||||
Requires: cmake
|
||||
Requires: python-click >= 8.1.3
|
||||
Requires: python-distlib >= 0.3.5
|
||||
Requires: python-packaging >= 23.2
|
||||
%if 0%{?python_version_nodots} < 311
|
||||
Requires: (python-tomli >= 1.2.3 with python-tomli < 3)
|
||||
Requires: python-tomli >= 1.2.3
|
||||
%endif
|
||||
Requires: python-lark
|
||||
Requires: python-pyproject-metadata
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
BuildArch: noarch
|
||||
|
||||
Reference in New Issue
Block a user