Skip to content

Commit 3762b19

Browse files
committed
pypi-zipp: Autospec creation for update from version 3.10.0 to version 3.11.0
Jason R. Coombs (16): GHA pretty env (#67) Add 3.12 to compatibility list. Pin mypy to '<0.990' due to realpython/pytest-mypy#141 Remove the hyperlink for the Python versions badge. The PyPI badge is a better anchor for the hyperlink. Apply explicit_package_bases for mypy and unpin the version. Ref python/mypy#14057. Add Python 3.12 to matrix. Only test 3.8-3.10 on Linux. Disable flake8 on Python 3.12. Workaround for tholo/pytest-flake8#87. Remove unused import. Re-implement glob directly, adding compatibility for older Pythons and avoids platform-specific concerns. Add docstring to __eq__, covering NotImplemented types. Add test capturing empty glob pattern. Use PurePosixPath for relative paths within a zip file. Fixes failing test on Windows. Added test for relative paths with subdirectories. Remove constraint that the result of relative_to is a pathlib object. Instead, assert that its string value resolves to the expected value. Reimplement relative_to using posixpath primitives. Move inline comment to docstring and expand org. Update changelog. Julian Berman (1): Teach zipp.Path some additional pathlib.Path methods. Zach Burnett (1): rename `.readthedocs.yml` to `.readthedocs.yaml` (RTD docs indicate that `.readthedocs.yml` will be deprecated) (#68)
1 parent 783db41 commit 3762b19

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := pypi-zipp
2-
URL = https://files.pythonhosted.org/packages/8d/d7/1bd1e0a5bc95a27a6f5c4ee8066ddfc5b69a9ec8d39ab11a41a804ec8f0d/zipp-3.10.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = pypi-zipp
3-
url = https://files.pythonhosted.org/packages/8d/d7/1bd1e0a5bc95a27a6f5c4ee8066ddfc5b69a9ec8d39ab11a41a804ec8f0d/zipp-3.10.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz
44
archives =
55
giturl = https://github.com/jaraco/zipp/
66
domain =
@@ -35,6 +35,8 @@ insecure_build = false
3535
keepstatic = false
3636
# do not require autostart subpackage
3737
no_autostart = false
38+
# do not use the replacement pattern for file matching
39+
no_glob = false
3840
# do not generate debuginfo for this package
3941
nodebug = false
4042
# disable stripping binaries

pypi-zipp.spec

+11-13
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : pypi-zipp
6-
Version : 3.10.0
7-
Release : 54
8-
URL : https://files.pythonhosted.org/packages/8d/d7/1bd1e0a5bc95a27a6f5c4ee8066ddfc5b69a9ec8d39ab11a41a804ec8f0d/zipp-3.10.0.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/8d/d7/1bd1e0a5bc95a27a6f5c4ee8066ddfc5b69a9ec8d39ab11a41a804ec8f0d/zipp-3.10.0.tar.gz
6+
Version : 3.11.0
7+
Release : 55
8+
URL : https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/8e/b3/8b16a007184714f71157b1a71bbe632c5d66dd43bc8152b3c799b13881e1/zipp-3.11.0.tar.gz
1010
Summary : Backport of pathlib-compatible object wrapper for zip files
1111
Group : Development/Tools
1212
License : MIT
@@ -24,9 +24,7 @@ BuildRequires : pypi-virtualenv
2424

2525
%description
2626
.. image:: https://img.shields.io/pypi/v/zipp.svg
27-
:target: `PyPI link`_
28-
.. image:: https://img.shields.io/pypi/pyversions/zipp.svg
29-
:target: `PyPI link`_
27+
:target: https://pypi.org/project/zipp
3028

3129
%package license
3230
Summary: license components for the pypi-zipp package.
@@ -56,18 +54,18 @@ python3 components for the pypi-zipp package.
5654

5755

5856
%prep
59-
%setup -q -n zipp-3.10.0
60-
cd %{_builddir}/zipp-3.10.0
57+
%setup -q -n zipp-3.11.0
58+
cd %{_builddir}/zipp-3.11.0
6159
pushd ..
62-
cp -a zipp-3.10.0 buildavx2
60+
cp -a zipp-3.11.0 buildavx2
6361
popd
6462

6563
%build
6664
export http_proxy=http://127.0.0.1:9/
6765
export https_proxy=http://127.0.0.1:9/
6866
export no_proxy=localhost,127.0.0.1,0.0.0.0
6967
export LANG=C.UTF-8
70-
export SOURCE_DATE_EPOCH=1666631561
68+
export SOURCE_DATE_EPOCH=1669552879
7169
export GCC_IGNORE_WERROR=1
7270
export AR=gcc-ar
7371
export RANLIB=gcc-ranlib
@@ -79,8 +77,8 @@ export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=auto "
7977
export MAKEFLAGS=%{?_smp_mflags}
8078
python3 -m build --wheel --skip-dependency-check --no-isolation
8179
pushd ../buildavx2/
82-
export CFLAGS="$CFLAGS -m64 -march=x86-64-v3 -Wl,-z,x86-64-v3 -msse2avx"
83-
export CXXFLAGS="$CXXFLAGS -m64 -march=x86-64-v3 -Wl,-z,x86-64-v3 -msse2avx "
80+
export CFLAGS="$CFLAGS -m64 -march=x86-64-v3 -Wl,-z,x86-64-v3 "
81+
export CXXFLAGS="$CXXFLAGS -m64 -march=x86-64-v3 -Wl,-z,x86-64-v3 "
8482
export FFLAGS="$FFLAGS -m64 -march=x86-64-v3 -Wl,-z,x86-64-v3 "
8583
export FCFLAGS="$FCFLAGS -m64 -march=x86-64-v3 "
8684
export LDFLAGS="$LDFLAGS -m64 -march=x86-64-v3 "

release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
54
1+
55

upstream

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
017268ef95e7da55ca11e695b63cda797d7a64be/zipp-3.10.0.tar.gz
1+
3f6c57b68f3b9165586ea7cce96fc2540b0078ec/zipp-3.11.0.tar.gz

versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.0
1+
3.11.0

0 commit comments

Comments
 (0)