Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pycapnp for openSUSE:Factory checked in at 2022-11-01 13:42:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pycapnp (Old) and /work/SRC/openSUSE:Factory/.python-pycapnp.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pycapnp" Tue Nov 1 13:42:12 2022 rev:3 rq:1032497 version:1.2.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pycapnp/python-pycapnp.changes 2022-10-08 01:25:30.610268900 +0200 +++ /work/SRC/openSUSE:Factory/.python-pycapnp.new.2275/python-pycapnp.changes 2022-11-01 13:42:22.671835320 +0100 @@ -1,0 +2,6 @@ +Fri Oct 28 20:02:46 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to v1.2.1 + * Fix packaging for Apple Silicon + +------------------------------------------------------------------- Old: ---- pycapnp-1.2.0.tar.gz New: ---- pycapnp-1.2.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pycapnp.spec ++++++ --- /var/tmp/diff_new_pack.tauIPT/_old 2022-11-01 13:42:23.719840895 +0100 +++ /var/tmp/diff_new_pack.tauIPT/_new 2022-11-01 13:42:23.723840916 +0100 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-pycapnp -Version: 1.2.0 +Version: 1.2.1 Release: 0 Summary: Cython wrapping of the C++ Cap'n Proto library License: BSD-2-Clause ++++++ pycapnp-1.2.0.tar.gz -> pycapnp-1.2.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycapnp-1.2.0/.github/workflows/packagingtest.yml new/pycapnp-1.2.1/.github/workflows/packagingtest.yml --- old/pycapnp-1.2.0/.github/workflows/packagingtest.yml 2022-08-29 10:13:39.000000000 +0200 +++ new/pycapnp-1.2.1/.github/workflows/packagingtest.yml 2022-09-12 08:08:45.000000000 +0200 @@ -40,6 +40,7 @@ python -m pip install --upgrade pip pip install -r requirements.txt - name: Build pycapnp and install + if: matrix.arch == 'x86_64' run: | python setup.py build pip install . @@ -62,13 +63,17 @@ ARCHFLAGS: "-arch arm64" # python wheel _PYTHON_HOST_PLATFORM: "macosx-11.0-arm64" # python wheel run: | - python setup.py bdist_wheel + env + rm -rf dist build build64 bundled + python setup.py bdist_wheel --force-bundled-libcapnp + ls -lh dist python setup.py sdist - uses: actions/upload-artifact@v1.0.0 with: name: package_dist path: dist - name: Test with pytest + if: matrix.arch == 'x86_64' run: | pip install pytest pytest diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycapnp-1.2.0/CHANGELOG.md new/pycapnp-1.2.1/CHANGELOG.md --- old/pycapnp-1.2.0/CHANGELOG.md 2022-08-29 10:13:39.000000000 +0200 +++ new/pycapnp-1.2.1/CHANGELOG.md 2022-09-12 08:08:45.000000000 +0200 @@ -1,3 +1,6 @@ +## v1.2.1 (2022-09-11) +- Fix packaging for Apple Silicon + ## v1.2.0 (2022-08-29) - Added support for Apple Silicon diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pycapnp-1.2.0/setup.py new/pycapnp-1.2.1/setup.py --- old/pycapnp-1.2.0/setup.py 2022-08-29 10:13:39.000000000 +0200 +++ new/pycapnp-1.2.1/setup.py 2022-09-12 08:08:45.000000000 +0200 @@ -22,7 +22,7 @@ MAJOR = 1 MINOR = 2 -MICRO = 0 +MICRO = 1 TAG = "" VERSION = "%d.%d.%d%s" % (MAJOR, MINOR, MICRO, TAG)