From 75d992a995a539b39b108ebda24cae1d1fd490de63994ba2502d315fafb0be9a Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Thu, 23 Dec 2021 06:35:18 +0000 Subject: [PATCH] - Update to 0.12.5 * Fix docs for new and init commands in maturin --help gh#PyO3/maturin#734 * Fix undefined auditwheel policy panic gh#PyO3/maturin#740 * Fix upload::canonicalize_name() regex subst gh#PyO3/maturin#741 * Bump serde from 1.0.130 to 1.0.131 gh#PyO3/maturin#745 * Bump sha2 from 0.9.8 to 0.10.0 gh#PyO3/maturin#746 * Add Cargo.lock to sdist when --locked or --frozen specified gh#PyO3/maturin#749 * Implement auditwheel repair with patchelf gh#PyO3/maturin#742 * Support pyo3 abi3-py310 feature gh#PyO3/maturin#750 - Changes in 0.12.4: * Bump anyhow from 1.0.50 to 1.0.51 gh#PyO3/maturin#717 * init: new command similar to cargo init gh#PyO3/maturin#719 * Don't package non-path-dep crates in sdist for workspaces gh#PyO3/maturin#720 * Update keyring to 1.0.0 gh#PyO3/maturin#721 * Reorganize upload feature gh#PyO3/maturin#726 * Allow pip warnings in maturin develop command gh#PyO3/maturin#732 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-maturin?expand=0&rev=13 --- maturin-0.11.4.tar.gz | 3 -- maturin-0.12.5.tar.gz | 3 ++ python-maturin.changes | 87 ++++++++++++++++++++++++++++++++++++++++++ python-maturin.spec | 2 +- vendor.tar.xz | 4 +- 5 files changed, 93 insertions(+), 6 deletions(-) delete mode 100644 maturin-0.11.4.tar.gz create mode 100644 maturin-0.12.5.tar.gz diff --git a/maturin-0.11.4.tar.gz b/maturin-0.11.4.tar.gz deleted file mode 100644 index f298022..0000000 --- a/maturin-0.11.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b1cd9c35c911a11532c1182d35041cda0602f470cab8d76124ca049c8bba896a -size 468842 diff --git a/maturin-0.12.5.tar.gz b/maturin-0.12.5.tar.gz new file mode 100644 index 0000000..ea57c22 --- /dev/null +++ b/maturin-0.12.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5fce5b4c39db9e6557424b4ae3b885e3affd5cd97e6d6ab88a40e0aa2d1535 +size 138547 diff --git a/python-maturin.changes b/python-maturin.changes index cadeb1e..9f064a2 100644 --- a/python-maturin.changes +++ b/python-maturin.changes @@ -1,3 +1,90 @@ +------------------------------------------------------------------- +Thu Dec 23 06:19:18 UTC 2021 - Mia Herkt + +- Update to 0.12.5 + * Fix docs for new and init commands in maturin --help + gh#PyO3/maturin#734 + * Fix undefined auditwheel policy panic + gh#PyO3/maturin#740 + * Fix upload::canonicalize_name() regex subst + gh#PyO3/maturin#741 + * Bump serde from 1.0.130 to 1.0.131 + gh#PyO3/maturin#745 + * Bump sha2 from 0.9.8 to 0.10.0 + gh#PyO3/maturin#746 + * Add Cargo.lock to sdist when --locked or --frozen specified + gh#PyO3/maturin#749 + * Implement auditwheel repair with patchelf + gh#PyO3/maturin#742 + * Support pyo3 abi3-py310 feature + gh#PyO3/maturin#750 +- Changes in 0.12.4: + * Bump anyhow from 1.0.50 to 1.0.51 + gh#PyO3/maturin#717 + * init: new command similar to cargo init + gh#PyO3/maturin#719 + * Don't package non-path-dep crates in sdist for workspaces + gh#PyO3/maturin#720 + * Update keyring to 1.0.0 + gh#PyO3/maturin#721 + * Reorganize upload feature + gh#PyO3/maturin#726 + * Allow pip warnings in maturin develop command + gh#PyO3/maturin#732 + * Add a Python import hook + gh#PyO3/maturin#729 +- Changes in 0.12.3: + * Use platform tag from sysconfig.platform on non-portable Linux + gh#PyO3/maturin#709 + * Warn missing cffi package dependency + gh#PyO3/maturin#711 + * new: include function example for PyO3 bindings + gh#PyO3/maturin#713 +- Changes in 0.12.2: + * Add a maturin new command for bootstrapping new projects + gh#PyO3/maturin#705 + * Add docs for maturin new command + gh#PyO3/maturin#707 +- Changes in 0.12.1: + * Add support for cross compiling PyPy wheels + gh#PyO3/maturin#687 + * Add a runnable field to PythonInterpreter + gh#PyO3/maturin#691 +- Changes in 0.12.0: + * Add PEP 660 support + gh#PyO3/maturin#648 + * Refactor develop command to act identical to PEP 660 editable + wheels + gh#PyO3/maturin#653 + * Bump anyhow from 1.0.44 to 1.0.45 + gh#PyO3/maturin#664 + * Upgrade pyo3 to 0.15 in test crates + gh#PyO3/maturin#665 + * Fix typos discovered by codespell + gh#PyO3/maturin#666 + * Add mdbook based user guide + gh#PyO3/maturin#658 + * Allow building for non-abi3 pypy wheels when the abi3 feature + is enabled + gh#PyO3/maturin#678 + * Bump serde_json from 1.0.69 to 1.0.70 + gh#PyO3/maturin#683 + * Bump keyring from 0.10.1 to 0.10.4 + gh#PyO3/maturin#682 +- Changes in 0.11.5: + * Fix typo in Readme + gh#PyO3/maturin#638 + * Re-export __doc__ in __init__.py for pure Rust project + gh#PyO3/maturin#639 + * Fix musllinux auditwheel wrongly detects libc forbidden link + gh#PyO3/maturin#643 + * Fix Win32 Conda Python Interpreters by @formlogic-robert in + gh#PyO3/maturin#644 + * Upgrade python-pkginfo to 0.5.0 + gh#PyO3/maturin#645 + * Fix cross compilation for Python 3.10 + gh#PyO3/maturin#646 + ------------------------------------------------------------------- Fri Nov 5 03:04:16 UTC 2021 - William Brown diff --git a/python-maturin.spec b/python-maturin.spec index 998d326..b3fd76d 100644 --- a/python-maturin.spec +++ b/python-maturin.spec @@ -19,7 +19,7 @@ %define skip_python2 1 %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-maturin -Version: 0.11.4 +Version: 0.12.5 Release: 0 Summary: Rust/Python Interoperability License: Apache-2.0 OR MIT diff --git a/vendor.tar.xz b/vendor.tar.xz index e46cb6d..3da8ab9 100644 --- a/vendor.tar.xz +++ b/vendor.tar.xz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a42126e64e8a20e8f09604be30e28ab14d3556bf4ce7943a6220e716e31469f8 -size 16934792 +oid sha256:ae3bebc229b94417ecf9e2630772a369734997b902a81bbccaad46f3f793fa5e +size 17926376