Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Commit

Permalink
zipp: Autospec creation for update from version 3.4.1 to version 3.5.0
Browse files Browse the repository at this point in the history
Brian Rutledge (1):
      Use shutil for rmtree

Jason R. Coombs (14):
      Require twine 3 with keyring unconditionally required.
      Add comments indicating why the exclusions are present
      Exclude mypy on Python 3.10 as workaround for python/typed_ast#156.
      Bump minimums on pytest-checkdocs and pytest-enabler as found on Setuptools.
      Also deny black on Python 3.10 as workaround for python/typed_ast#156.
      Add leading */ to coverage.run.omit. Workaround for pytest-dev/pytest-cov#456.
      Update readme to declare that it's the official backport.
      Remove automerge. Fixes jaraco/skeleton#49.
      Enable dependabot (#50)
      Replace md file with badge linking to documentation site. Fixes jaraco/skeleton#47.
      Test on Python 3.10
      Remove setup_requires, obviated by build-requires in pyproject.toml.
      Suppress deprecation warnings in flake8 and packaging.tags. Ref pypa/packaging#433.
      Update changelog.

Miguel Brito (1):
      bpo-44095: Add suffix, stem and suffixes to zipfile.Path (GH-26129)

Sviatoslav Sydorenko (1):
      Make sphinx fail on any warnings (#36)
  • Loading branch information
fenrus75 committed Jul 6, 2021
1 parent dc31513 commit 2f48617
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := zipp
URL = https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz
URL = https://files.pythonhosted.org/packages/3a/9f/1d4b62cbe8d222539a84089eeab603d8e45ee1f897803a0ae0860400d6e7/zipp-3.5.0.tar.gz
ARCHIVES =

include ../common/Makefile.common
3 changes: 0 additions & 3 deletions buildreq_cache

This file was deleted.

2 changes: 1 addition & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = zipp
url = https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz
url = https://files.pythonhosted.org/packages/3a/9f/1d4b62cbe8d222539a84089eeab603d8e45ee1f897803a0ae0860400d6e7/zipp-3.5.0.tar.gz
archives =
giturl = https://github.com/jaraco/zipp.git
domain =
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
28
29
2 changes: 1 addition & 1 deletion upstream
@@ -1 +1 @@
647e76fe210abeb8e7be3cb393a0fc5ae39ecc12/zipp-3.4.1.tar.gz
53234d6dbfc809d03f2b85db6dbb4e559ef200a1/zipp-3.5.0.tar.gz
2 changes: 1 addition & 1 deletion versions
@@ -1 +1 @@
3.4.1
3.5.0
18 changes: 8 additions & 10 deletions zipp.spec
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : zipp
Version : 3.4.1
Release : 28
URL : https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz
Source0 : https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz
Version : 3.5.0
Release : 29
URL : https://files.pythonhosted.org/packages/3a/9f/1d4b62cbe8d222539a84089eeab603d8e45ee1f897803a0ae0860400d6e7/zipp-3.5.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/3a/9f/1d4b62cbe8d222539a84089eeab603d8e45ee1f897803a0ae0860400d6e7/zipp-3.5.0.tar.gz
Summary : Backport of pathlib-compatible object wrapper for zip files
Group : Development/Tools
License : MIT
Expand All @@ -17,8 +17,6 @@ BuildRequires : buildreq-distutils3
BuildRequires : pluggy
BuildRequires : py-python
BuildRequires : pytest
BuildRequires : setuptools
BuildRequires : setuptools_scm-python
BuildRequires : tox
BuildRequires : virtualenv

Expand Down Expand Up @@ -56,15 +54,15 @@ python3 components for the zipp package.


%prep
%setup -q -n zipp-3.4.1
cd %{_builddir}/zipp-3.4.1
%setup -q -n zipp-3.5.0
cd %{_builddir}/zipp-3.5.0

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C.UTF-8
export SOURCE_DATE_EPOCH=1614924742
export SOURCE_DATE_EPOCH=1625591760
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand All @@ -80,7 +78,7 @@ python3 setup.py build
export MAKEFLAGS=%{?_smp_mflags}
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/zipp
cp %{_builddir}/zipp-3.4.1/LICENSE %{buildroot}/usr/share/package-licenses/zipp/8e6689d37f82d5617b7f7f7232c94024d41066d1
cp %{_builddir}/zipp-3.5.0/LICENSE %{buildroot}/usr/share/package-licenses/zipp/8e6689d37f82d5617b7f7f7232c94024d41066d1
python3 -tt setup.py build install --root=%{buildroot}
echo ----[ mark ]----
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
Expand Down

0 comments on commit 2f48617

Please sign in to comment.