1
0

Compare commits

...

4 Commits

Author SHA256 Message Date
Ana Guerrero
b696b2914d Accepting request 1225312 from devel:languages:python
- update to 0.17.1:
  * Update tests to work with newly released pyproject-metadata
    0.9.0.
  * Fix tests to work when not executed in a git work tree.
  * Refuse to build wheels targeting the limited API and free-
    threaded CPython: the free-threaded CPython build does not
    support the limited API yet.
  * Always use UTF-8 encoding for writing Meson native and cross
    files. Always use UTF-8 encoding for reading read Meson
    introspection data and pyproject.toml.
  * Do not include uncommitted changes when creating source
    distributions. Previously, uncommitted changes to files under
    version control were included, but not untracked files. There
    was no strong use case for this behavior and it was too
    surprising to keep it.
  * Make source distribution reproducible: use the modification
    time of pyproject.toml for the generated files in the source
    distribution archives.
  * Disable the abi3 wheel tag for PyPy when building wheels
    targeting the limited API: PyPy supports the limited API but
    not the stable ABI.
  * Raise ImportError when the package rebuild fails when
    importing an editable install.
  * Fix the wheel platform tag for GraalPy.
  * Add .gitignore and .hgignore files to build directory if it
    is empty.
  * Allow install_subdir() of missing directories.

OBS-URL: https://build.opensuse.org/request/show/1225312
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-meson-python?expand=0&rev=13
2024-11-21 14:13:13 +00:00
5663ae30f8 - update to 0.17.1:
* Update tests to work with newly released pyproject-metadata
    0.9.0.
  * Fix tests to work when not executed in a git work tree.
  * Refuse to build wheels targeting the limited API and free-
    threaded CPython: the free-threaded CPython build does not
    support the limited API yet.
  * Always use UTF-8 encoding for writing Meson native and cross
    files. Always use UTF-8 encoding for reading read Meson
    introspection data and pyproject.toml.
  * Do not include uncommitted changes when creating source
    distributions. Previously, uncommitted changes to files under
    version control were included, but not untracked files. There
    was no strong use case for this behavior and it was too
    surprising to keep it.
  * Make source distribution reproducible: use the modification
    time of pyproject.toml for the generated files in the source
    distribution archives.
  * Disable the abi3 wheel tag for PyPy when building wheels
    targeting the limited API: PyPy supports the limited API but
    not the stable ABI.
  * Raise ImportError when the package rebuild fails when
    importing an editable install.
  * Fix the wheel platform tag for GraalPy.
  * Add .gitignore and .hgignore files to build directory if it
    is empty.
  * Allow install_subdir() of missing directories.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-meson-python?expand=0&rev=26
2024-11-20 14:58:19 +00:00
Ana Guerrero
ae1f0722c4 Accepting request 1204841 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1204841
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-meson-python?expand=0&rev=12
2024-10-01 15:11:42 +00:00
839c5b9903 - Add mesonpy-reproducible.patch gh#openSUSE/python-rpm-macros#182
initiated by Bernhard Wiedemann @bmwiedemann

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-meson-python?expand=0&rev=24
2024-09-30 21:33:31 +00:00
5 changed files with 73 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9068c17e36c89d6c7ff709fffb2a8a9925e8cd0b02629728e5ceaf2ec505cb5f
size 82012

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:efb91f69f2e19eef7bc9a471ed2a4e730088cc6b39eacaf3e49fc4f930eb5f83
size 82687

View File

@ -0,0 +1,24 @@
Authors: code@bnavigator.de, bwiedemann@suse.com
Ref: https://github.com/openSUSE/python-rpm-macros/issues/182
Ref: https://github.com/mesonbuild/meson-python/issues/671
Reproducible builds require a deterministic build path.
Use the python-rpm-macros shuffled build directory.
Index: meson_python-0.16.0/mesonpy/__init__.py
===================================================================
--- meson_python-0.16.0.orig/mesonpy/__init__.py
+++ meson_python-0.16.0/mesonpy/__init__.py
@@ -943,7 +943,10 @@ def _project(config_settings: Optional[D
with contextlib.ExitStack() as ctx:
if build_dir is None:
- build_dir = ctx.enter_context(tempfile.TemporaryDirectory(prefix='.mesonpy-', dir=source_dir))
+ if(os.environ.get('SOURCE_DATE_EPOCH')):
+ build_dir = pathlib.Path(source_dir) / 'build'
+ else:
+ build_dir = ctx.enter_context(tempfile.TemporaryDirectory(prefix='.mesonpy-', dir=source_dir))
yield Project(source_dir, build_dir, meson_args, editable_verbose)

View File

@ -1,3 +1,40 @@
-------------------------------------------------------------------
Wed Nov 20 14:58:13 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.17.1:
* Update tests to work with newly released pyproject-metadata
0.9.0.
* Fix tests to work when not executed in a git work tree.
* Refuse to build wheels targeting the limited API and free-
threaded CPython: the free-threaded CPython build does not
support the limited API yet.
* Always use UTF-8 encoding for writing Meson native and cross
files. Always use UTF-8 encoding for reading read Meson
introspection data and pyproject.toml.
* Do not include uncommitted changes when creating source
distributions. Previously, uncommitted changes to files under
version control were included, but not untracked files. There
was no strong use case for this behavior and it was too
surprising to keep it.
* Make source distribution reproducible: use the modification
time of pyproject.toml for the generated files in the source
distribution archives.
* Disable the abi3 wheel tag for PyPy when building wheels
targeting the limited API: PyPy supports the limited API but
not the stable ABI.
* Raise ImportError when the package rebuild fails when
importing an editable install.
* Fix the wheel platform tag for GraalPy.
* Add .gitignore and .hgignore files to build directory if it
is empty.
* Allow install_subdir() of missing directories.
-------------------------------------------------------------------
Sun Sep 29 11:22:59 UTC 2024 - Ben Greiner <code@bnavigator.de>
- Add mesonpy-reproducible.patch gh#openSUSE/python-rpm-macros#182
initiated by Bernhard Wiedemann @bmwiedemann
-------------------------------------------------------------------
Mon Jul 22 04:20:32 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>

View File

@ -19,7 +19,7 @@
%{?sle15_python_module_pythons}
Name: python-meson-python
Version: 0.16.0
Version: 0.17.1
Release: 0
Summary: Meson Python build backend (PEP 517)
License: MIT
@ -27,7 +27,10 @@ URL: https://github.com/mesonbuild/meson-python
Source0: https://files.pythonhosted.org/packages/source/m/meson_python/meson_python-%{version}.tar.gz
# PATCH-FEATURE-OPENSUSE mesonpy-trim-deps.patch code@bnavigator.de
Patch11: mesonpy-trim-deps.patch
# PATCH-FEATURE-OPENSUSE mesonpy-reproducible.patch gh#openSUSE/python-rpm-macros#182
Patch12: mesonpy-reproducible.patch
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module packaging >= 0.19}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pyproject-metadata >= 0.7.1}
BuildRequires: %{python_module tomli >= 1.0.0 if %python-base < 3.11}
@ -35,6 +38,7 @@ BuildRequires: fdupes
BuildRequires: meson >= 1.2.3
BuildRequires: ninja
BuildRequires: python-rpm-macros
Requires: python-packaging >= 0.19
Requires: python-pyproject-metadata >= 0.7.1
BuildArch: noarch
%if 0%{python_version_nodots} >= 312
@ -76,7 +80,10 @@ modules implemented in languages such as C, C++, Cython, Fortran, Pythran, or Ru
%check
# test suite path issues
donttest="test_vendored_meson"
%pytest -k "not ($donttest)"
%{python_expand # clear test builds
find tests -name build -type d -prune -print -exec rm -r {} +
$python -m pytest -v -k "not ($donttest)"
}
%files %{python_files}
%license LICENSE