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

Commit 3e6b455

Browse files
committed
jaraco.collections: Autospec creation for update from version 3.4.0 to version 3.5.0
Alan Fregtman (1): .editorconfig: Set max_line_length to 88 for Python files. Jason R. Coombs (10): Add intersphinx mappings for Python to prevent spurious nitpicky failures. Fixes jaraco/skeleton#51. Test on Python 3.10 (final). Rely on pytest 6 and drop workaround for pytest-dev/pytest#6178. Remove wheel from build requirements. It's implied for wheel builds. Ref pypa/setuptools#1498. Require Python 3.7 or later. Remove filtered warnings, addressed upstream. DictStack now supports .items and casting to a dict. Remove dependency on more_itertools. Add support for DictStack.__contains__. Update changelog.
1 parent 812b08d commit 3e6b455

6 files changed

+19
-19
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := jaraco.collections
2-
URL = https://files.pythonhosted.org/packages/d9/f8/da1c43345aa1ce0a98391497719cfc80d9664727431554a6aab5328481eb/jaraco.collections-3.4.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/d1/e4/d3aa8de33e2a88207e4ade5a19e2680981a5fe2f54f2bc889e99cd32d65e/jaraco.collections-3.5.0.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

jaraco.collections.spec

+14-14
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
# Generated by: autospec.py
44
#
55
Name : jaraco.collections
6-
Version : 3.4.0
7-
Release : 19
8-
URL : https://files.pythonhosted.org/packages/d9/f8/da1c43345aa1ce0a98391497719cfc80d9664727431554a6aab5328481eb/jaraco.collections-3.4.0.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/d9/f8/da1c43345aa1ce0a98391497719cfc80d9664727431554a6aab5328481eb/jaraco.collections-3.4.0.tar.gz
6+
Version : 3.5.0
7+
Release : 20
8+
URL : https://files.pythonhosted.org/packages/d1/e4/d3aa8de33e2a88207e4ade5a19e2680981a5fe2f54f2bc889e99cd32d65e/jaraco.collections-3.5.0.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/d1/e4/d3aa8de33e2a88207e4ade5a19e2680981a5fe2f54f2bc889e99cd32d65e/jaraco.collections-3.5.0.tar.gz
1010
Summary : Collection objects similar to those in stdlib by jaraco
1111
Group : Development/Tools
1212
License : MIT
1313
Requires: jaraco.collections-license = %{version}-%{release}
1414
Requires: jaraco.collections-python = %{version}-%{release}
1515
Requires: jaraco.collections-python3 = %{version}-%{release}
16-
Requires: jaraco.classes
17-
Requires: jaraco.text
1816
BuildRequires : buildreq-distutils3
19-
BuildRequires : jaraco.classes
20-
BuildRequires : jaraco.text
2117
BuildRequires : pluggy
2218
BuildRequires : py-python
19+
BuildRequires : pypi(jaraco.classes)
20+
BuildRequires : pypi(jaraco.text)
21+
BuildRequires : pypi(setuptools)
22+
BuildRequires : pypi(setuptools_scm)
2323
BuildRequires : pytest
2424
BuildRequires : tox
2525
BuildRequires : virtualenv
@@ -58,15 +58,15 @@ python3 components for the jaraco.collections package.
5858

5959

6060
%prep
61-
%setup -q -n jaraco.collections-3.4.0
62-
cd %{_builddir}/jaraco.collections-3.4.0
61+
%setup -q -n jaraco.collections-3.5.0
62+
cd %{_builddir}/jaraco.collections-3.5.0
6363

6464
%build
6565
export http_proxy=http://127.0.0.1:9/
6666
export https_proxy=http://127.0.0.1:9/
6767
export no_proxy=localhost,127.0.0.1,0.0.0.0
6868
export LANG=C.UTF-8
69-
export SOURCE_DATE_EPOCH=1635743359
69+
export SOURCE_DATE_EPOCH=1641234877
7070
export GCC_IGNORE_WERROR=1
7171
export AR=gcc-ar
7272
export RANLIB=gcc-ranlib
@@ -76,14 +76,14 @@ export FCFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
7676
export FFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
7777
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=auto "
7878
export MAKEFLAGS=%{?_smp_mflags}
79-
python3 setup.py build
79+
python3 -m build --wheel --skip-dependency-check --no-isolation
8080

8181
%install
8282
export MAKEFLAGS=%{?_smp_mflags}
8383
rm -rf %{buildroot}
8484
mkdir -p %{buildroot}/usr/share/package-licenses/jaraco.collections
85-
cp %{_builddir}/jaraco.collections-3.4.0/LICENSE %{buildroot}/usr/share/package-licenses/jaraco.collections/8e6689d37f82d5617b7f7f7232c94024d41066d1
86-
python3 -tt setup.py build install --root=%{buildroot}
85+
cp %{_builddir}/jaraco.collections-3.5.0/LICENSE %{buildroot}/usr/share/package-licenses/jaraco.collections/8e6689d37f82d5617b7f7f7232c94024d41066d1
86+
pip install --root=%{buildroot} --no-deps --ignore-installed dist/*.whl
8787
echo ----[ mark ]----
8888
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
8989
echo ----[ mark ]----

options.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = jaraco.collections
3-
url = https://files.pythonhosted.org/packages/d9/f8/da1c43345aa1ce0a98391497719cfc80d9664727431554a6aab5328481eb/jaraco.collections-3.4.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/d1/e4/d3aa8de33e2a88207e4ade5a19e2680981a5fe2f54f2bc889e99cd32d65e/jaraco.collections-3.5.0.tar.gz
44
archives =
55
giturl = https://github.com/jaraco/jaraco.collections
66
domain =

release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19
1+
20

upstream

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
07c013ef920372b664b980e372f75e37ebef01dd/jaraco.collections-3.4.0.tar.gz
1+
a35100daeaa12b42d4abf6ca95e2681194222c3c/jaraco.collections-3.5.0.tar.gz

versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0
1+
3.5.0

0 commit comments

Comments
 (0)