Blame python-meson-python.changes

34c0bc
-------------------------------------------------------------------
5add09
Tue Apr 16 19:27:36 UTC 2024 - Ben Greiner <code@bnavigator.de>
5add09
5add09
- Update to 0.15.0
5add09
  * Enable compression for wheel files. The may result in several
5add09
    times smaller wheels.
5add09
  * Require Meson 1.2.3 or later on Python 3.12 or later. Meson
5add09
    1.2.3 does not require anymore ``distutils``, allowing to
5add09
    remove the dependency on ``setuptools`` on Python 3.12 or
5add09
    later.
5add09
  * Unconditionally require ``patchelf`` on Linux.  The
5add09
    ``patchelf`` package is added to the build dependencies if a
5add09
    suitable ``patchelf`` executable is not find on the ``$PATH``.
5add09
    This avoids cases where ``meson setup`` was run twice during
5add09
    the build process to determine whether ``patchelf`` is
5add09
    required.
5add09
  * Allow to configure the ``meson`` executable to use for the
5add09
    build process through the ``$MESON`` environment variable or
5add09
    the ``meson`` key under ``[tool.meson-python]`` in
5add09
    ``pyproject.toml``.
5add09
  * Fix wheel platform tag generation on FreeBSD.
5add09
  * Extend support to other UNIX-like systems and make the tests
5add09
    pass on FreeBSD.
5add09
  * Fix package name normalization in package metadata and improve
5add09
    package name validation.
5add09
  * Fix ``RPATH`` handling when the build ``RPATH`` points to
5add09
    subdirectories of the build directory.
5add09
  * Fix support for the Python limited C API when compiling for
5add09
    PyPy.
5add09
  * Rename the ``builddir`` config-setting to ``build-dir``. For
5add09
    backwards compatibility, the ``buildir`` config-setting remains
5add09
    supported as an alias.
5add09
- Drop no longer needed test patches and test wheels
5add09
  * no-build-isolation-in-test.patch
5add09
  * mesonpy-no-wheel-rebuild.patch
5add09
5add09
-------------------------------------------------------------------
94669e
Thu Sep 21 06:01:08 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
94669e
94669e
- Update to 0.14.0:
94669e
  * Do not run ``meson install`` to build a wheel.
94669e
  * Obey the ``--skip-subprojects`` when specified for the ``meson
94669e
    install`` command.
94669e
  * Implement support for the ``exclude_directories`` and
94669e
    ``exclude_files`` arguments to Meson ``install_subdir()`` function
94669e
    and similar installation functions. This requires Meson version
94669e
    1.1.0 or later.
94669e
  * Implement support for building wheels targeting the Python limited API.
94669e
  * When ``pyproject.toml`` does not contain a ``version`` field and
94669e
    ``version`` is not declared dynamic, raise an error instead of
94669e
    silently using the version declared in ``meson.build``.
94669e
  * Fix the mtime of source files in the sdist tarball.
94669e
  * Add ``objc`` and ``objcpp`` compilers to the cross file generated
94669e
    when the ``$ARCHFLAGS`` is set.
94669e
- Add patch no-build-isolation-in-test.patch, don't use an isolated
94669e
  environment.
94669e
94669e
-------------------------------------------------------------------
b5fe25
Thu Aug 17 12:57:55 UTC 2023 - Markéta Machová <mmachova@suse.com>
b5fe25
b5fe25
- Update to 0.13.2
b5fe25
  * Add support for editable installs.
b5fe25
  * Adjust the default build options passed to meson setup.
b5fe25
  * Make sure that the directory where the wheel or sdist build artifacts are
b5fe25
    created exists. Fixes building with PDM.
b5fe25
  * Fix the specification of the C++ compiler for cross-compilation with
b5fe25
    $ARCHFLAGS on macOS.
b5fe25
  * Pass the --reconfigure option to meson setup if and only if the specified
b5fe25
    build directory exists and is a valid Meson build directory.
b5fe25
  * Pass the --no-rebuild option to meson install.
b5fe25
  * Allow to select the files to be included in the wheel via Meson install
b5fe25
    tags passing the --tags option to meson install via pyproject.toml or
b5fe25
    config settings.
b5fe25
  * Do not use the meson compile indirection to build the project, except on
b5fe25
    Windows, where it is required to setup the Visual Studio environment.
b5fe25
  * Do not add ninja to the build dependencies if $NINJA is set but it does not
b5fe25
    point to a ninja executable with the required minimum version.
b5fe25
  * Verify at run time that Meson satisfies the minimum required version.
b5fe25
  * Place native and cross files in the build directory instead of in the source directory.
b5fe25
  * Drop the typing-extensions package dependency.
b5fe25
  * Add dependency on setuptools on Python 3.12 and later. This fixes build
b5fe25
    error due to Meson depending on the distutils standard library module
b5fe25
    removed in Python 3.12.
b5fe25
  * Bump the required pyproject-metadata version to 0.7.1.
b5fe25
  * Allows some more cross-compilation setups by not checking extension modules
b5fe25
    filename suffixes against the suffixes accepted by the current interpreter.
b5fe25
  * Raise an error when a file that would be installed by Meson cannot be
b5fe25
    mapped to a wheel location.
b5fe25
  * Raise an error when a package is split between platlib and purelib.
b5fe25
  * Do not generate a warning when pyproject.toml does not contain a project
b5fe25
    section and Python package metadata is derived from meson.build.
b5fe25
  * Improve reporting of pyproject.toml validation errors.
b5fe25
  * Fix validation of tool specific options in pyproject.toml. In particular,
b5fe25
    allows to specify an incomplete set of options in the
b5fe25
    tool.meson-python.args table.
b5fe25
  * Add the --quiet option when invoking meson install. The installation paths
b5fe25
    are a detail of the meson-python implementation and are generally not
b5fe25
    interesting for the user.
b5fe25
b5fe25
-------------------------------------------------------------------
bb5ce2
Sat Jun 10 17:53:58 UTC 2023 - ecsos <ecsos@opensuse.org>
bb5ce2
bb5ce2
- Add %{?sle15_python_module_pythons}
bb5ce2
bb5ce2
-------------------------------------------------------------------
fcf320
Sun Mar 26 19:49:50 UTC 2023 - Dirk Müller <dmueller@suse.com>
fcf320
fcf320
- update to 0.12.1:
fcf320
  * Fix regression where the ``MACOSX_DEPLOYMENT_TARGET``
fcf320
    environment variable was accidentally renamed to 
fcf320
    ``MACOS_DEPLOYMENT_TARGET``
fcf320
fcf320
-------------------------------------------------------------------
34c0bc
Fri Jan 13 14:35:33 UTC 2023 - Ben Greiner <code@bnavigator.de>
34c0bc
34c0bc
- Update to 0.12.0
34c0bc
  * Raise SystemExit on expected errors
34c0bc
  * Revise error messages for consistency
34c0bc
  * Support setuptools-style macOS cross compilation via ARCHFLAGS
34c0bc
  * Allow to overwrite macOS platform tag via _PYTHON_HOST_PLATFORM
34c0bc
  * Include (similar) allowed keys in error messages
34c0bc
- Refresh test wheels
34c0bc
8fdadd
------------------------------------------------------------------
8fdadd
Thu Nov 24 11:31:07 UTC 2022 - Ben Greiner <code@bnavigator.de>
8fdadd
8fdadd
- Update to 0.11.0
8fdadd
  * Project moved to the mesonbuild organization
8fdadd
  * Determine wheel tags by introspecting the Python interpreter
8fdadd
  * Allow users to pass options directly to Meson via the
8fdadd
    tools.meson-python.args.{dist,setup,compile,install}
8fdadd
    pyproject.toml keys, and the {dist,setup,compile,install}-args
8fdadd
    frontend config options
8fdadd
  * Use the system ninja dependency if possible
8fdadd
  * Include files generated by mesonadd_dist_script to sdists
8fdadd
  * Use tomllib on Python>=3.11
8fdadd
  * Drop wheel dependency in favor of in-house solution
8fdadd
  * Fix bug where the entry_points.txt file wasn't being generated
8fdadd
  * Fix bug where Cygwin Python extensions were not being noticed
8fdadd
- Drop meson-subdir-fix.patch fixed upstream
8fdadd
- Add mesonpy-no-wheel-rebuild.patch
8fdadd
d774d7
-------------------------------------------------------------------
46a8ca
Fri Oct 14 12:44:56 UTC 2022 - Daniel Garcia <daniel.garcia@suse.com>
46a8ca
46a8ca
- Update meson-subdir-fix.patch to fix the failure for python3.8 and python3.9
46a8ca
  because the meson package is only available for python3.10
46a8ca
46a8ca
-------------------------------------------------------------------
46a8ca
Fri Oct 14 08:49:00 UTC 2022 - Markéta Machová <mmachova@suse.com>
46a8ca
46a8ca
- Add meson-subdir-fix.patch to fix the failure with new meson
46a8ca
46a8ca
-------------------------------------------------------------------
78ee01
Tue Oct 11 09:01:00 UTC 2022 - Ben Greiner <code@bnavigator.de>
78ee01
78ee01
- Update to 0.10.0
78ee01
  * Ignore the macOS minor version on >=11, to match the behavior
78ee01
    with pypa/packaging
78ee01
  * More fixes on ABI tag detection
78ee01
  * Fix incorrect tag on 32-bit Python running on a x86_64 host
78ee01
  * Fix sdist permissions
78ee01
  * Fix incorrect PyPy tags
78ee01
  * Fix ``install_subdirs`` not being included in wheels
78ee01
  * Take ``MACOSX_DEPLOYMENT_TARGET`` into account for the platform
78ee01
    tag
78ee01
  * Don't set the rpath on binaries if unneeded
78ee01
- Drop patches
78ee01
  * mesonpy-force-flavor.patch
78ee01
  * mesonpy-no-rpath.patch
78ee01
78ee01
-------------------------------------------------------------------
d774d7
Tue Sep 13 01:16:30 UTC 2022 - Ben Greiner <code@bnavigator.de>
d774d7
d774d7
- add mesonpy-no-rpath.patch -- gh#FFY00/meson-python#125
d774d7
d774d7
-------------------------------------------------------------------
d774d7
Sat Sep 10 21:18:06 UTC 2022 - Ben Greiner <code@bnavigator.de>
d774d7
d774d7
- Initial specfile for v0.8.1
d774d7
- Used by new SciPy pyproject.toml
d774d7
- Force correct flavor by mesonpy-force-flavor.patch
d774d7
  * gh#FY00/meson-python#51, gh#FY00/meson-python#127
d774d7
- Use mesonpy-trim-deps.patch for single-flavor meson and ninja
d774d7
  commands