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

Commit

Permalink
setuptools: Autospec creation for update from version 49.1.0 to versi…
Browse files Browse the repository at this point in the history
…on 49.1.1

Hai Shi (2):
      bpo-40275: Use new test.support helper submodules in tests (GH-21151)
      bpo-40275: Use new test.support helper submodules in tests (GH-21317)

Jason R. Coombs (15):
      Amend changelog for 48.0 to include more detail about usage expectations. Ref #2230.
      Use lowercase 't' for consistency in branding.
      Rename logo assets to remove project name and 'logo', which are implied by the context.
      Render logo in the readme.
      Add banner to main docs page
      Remove stale description of packaging.
      Add test for spawn when exe is missing. Ref pypa/distutils#3.
      Replace OSError with DistutilsExecError. Fixes pypa/distutils#3 and pypa/setuptools#2228 and bpo-41207.
      Update changelog. Ref #2228.
      Bump version: 49.0.0 → 49.0.1
      Move assert outside the context so it actually has its effect.
      Remove py2_warn, no longer needed as a SyntaxError is encountered before the warning can be issueed.
      bpo-41207 In distutils.spawn, rewrite FileNotFound (GH-21359)
      Update changelog.
      Bump version: 49.1.0 → 49.1.1

Serhiy Storchaka (1):
      bpo-41043: Escape literal part of the path for glob(). (GH-20994)

Victor Stinner (1):
      bpo-41003: Fix test_copyreg when numpy is installed (GH-20935)

cajhne (1):
      Add logo resources
  • Loading branch information
fenrus75 authored and clrpackages committed Jul 14, 2020
1 parent 87b0e19 commit 218d3f8
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKG_NAME := setuptools
URL = https://files.pythonhosted.org/packages/8b/0f/5f135746c4d0c95fcc3c9a30ac942330bbdf092879ccaae7e3dcba6ea214/setuptools-49.1.0.zip
URL = https://files.pythonhosted.org/packages/7b/a2/dd3f48637e928459410c471fc4ef0a31c6f96e68dec25b21741170768ad6/setuptools-49.1.1.zip
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = setuptools
url = https://files.pythonhosted.org/packages/8b/0f/5f135746c4d0c95fcc3c9a30ac942330bbdf092879ccaae7e3dcba6ea214/setuptools-49.1.0.zip
url = https://files.pythonhosted.org/packages/7b/a2/dd3f48637e928459410c471fc4ef0a31c6f96e68dec25b21741170768ad6/setuptools-49.1.1.zip
archives =
giturl = https://github.com/pypa/setuptools.git
domain =
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
171
172
21 changes: 9 additions & 12 deletions setuptools.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : setuptools
Version : 49.1.0
Release : 171
URL : https://files.pythonhosted.org/packages/8b/0f/5f135746c4d0c95fcc3c9a30ac942330bbdf092879ccaae7e3dcba6ea214/setuptools-49.1.0.zip
Source0 : https://files.pythonhosted.org/packages/8b/0f/5f135746c4d0c95fcc3c9a30ac942330bbdf092879ccaae7e3dcba6ea214/setuptools-49.1.0.zip
Version : 49.1.1
Release : 172
URL : https://files.pythonhosted.org/packages/7b/a2/dd3f48637e928459410c471fc4ef0a31c6f96e68dec25b21741170768ad6/setuptools-49.1.1.zip
Source0 : https://files.pythonhosted.org/packages/7b/a2/dd3f48637e928459410c471fc4ef0a31c6f96e68dec25b21741170768ad6/setuptools-49.1.1.zip
Summary : Easily download, build, install, upgrade, and uninstall Python packages
Group : Development/Tools
License : MIT Python-2.0 ZPL-2.0
Expand All @@ -20,10 +20,7 @@ BuildRequires : certifi
BuildRequires : setuptools

%description
.. image:: https://img.shields.io/pypi/v/setuptools.svg
:target: `PyPI link`_
.. image:: https://img.shields.io/pypi/pyversions/setuptools.svg
:target: `PyPI link`_


%package bin
Summary: bin components for the setuptools package.
Expand Down Expand Up @@ -62,15 +59,15 @@ python3 components for the setuptools package.


%prep
%setup -q -n setuptools-49.1.0
cd %{_builddir}/setuptools-49.1.0
%setup -q -n setuptools-49.1.1
cd %{_builddir}/setuptools-49.1.1

%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=1594053363
export SOURCE_DATE_EPOCH=1594416405
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand All @@ -86,7 +83,7 @@ python3 setup.py build
export MAKEFLAGS=%{?_smp_mflags}
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/setuptools
cp %{_builddir}/setuptools-49.1.0/LICENSE %{buildroot}/usr/share/package-licenses/setuptools/a5234543d56e03c950c0080826b53a0cb97671af
cp %{_builddir}/setuptools-49.1.1/LICENSE %{buildroot}/usr/share/package-licenses/setuptools/a5234543d56e03c950c0080826b53a0cb97671af
python3 -tt setup.py build install --root=%{buildroot}
echo ----[ mark ]----
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
Expand Down
2 changes: 1 addition & 1 deletion upstream
Original file line number Diff line number Diff line change
@@ -1 +1 @@
83bd58e73c61112d3db1d6b6f4f29daf0bb32597/setuptools-49.1.0.zip
c9eecbcbe7ac9f13a72f812100f94e76dfb0237f/setuptools-49.1.1.zip
2 changes: 1 addition & 1 deletion versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
49.1.0
49.1.1

0 comments on commit 218d3f8

Please sign in to comment.