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 57.4.0 to versi…
Browse files Browse the repository at this point in the history
…on 58.0.0

Alan Fregtman (6):
      Implement "glob:" directive for declarative "data_files" option.
      Add changelog entry for PR #2712.
      Update globbing for [options.data_files] to be implicit, not requiring a custom directive.
      globbing for [options.data_files]: Remove special treatment for filenames with globby characters that exist literally.
      Satisfy some flake8 style checks for the previous commit.
      config.py: Fix line-too-long warning in _parse_list_glob()

Ian Wienand (1):
      build_meta: Clarify the reasons for project requirements in pyproject.toml

Jason R. Coombs (13):
      Trim back chaneglog.
      👹 Feed the hobgoblins (delint).
      Rely on setuptools 56 and drop the explicit mention of the license file in favor of simple discovery.
      Remove workaround for python/typed_ast#156.
      Use line continuations to indicate which exclusions are for which workarounds.
      Remove blacken docs as it cannot honor Python's default repr. Ref asotille/blacken-docs#62.
      Remove blacken docs as it cannot honor Python's default repr. Ref adamchainz/blacken-docs#62.
      Restore whitespace and single quotes after blacken-docs.
      Bump version: 57.4.0 → 57.5.0
      Fix broken Sphinx builds on Python 3.10. Fixes #2763. Ref sphinx-doc/sphinx#9562.
      👹 Feed the hobgoblins (delint).
      Prefer "command" to "function". Use direct imperative voice.
      Bump version: 57.5.0 → 58.0.0

Louis Maddox (1):
      Remove repeated information in same sentence

SeungMin Lee (1):
      Fix broken links in easy_install.py

Thomas Grainger (13):
      run pre-commit in ci
      blacken docs
      disable unused black pre-commit hook
      Delete pre-commit.yml
      add newsfragment
      remove magci trailing commas
      Delete .pre-commit-config.yaml
      readme: update to reflect the cpython distutils status (#48)
      remove 2to3
      add python_requires example
      add python_requires example
      remove lib2to3 usage
      add newsfragment
  • Loading branch information
phmccarty authored and clrpackages committed Sep 7, 2021
1 parent c5be9c5 commit 63d7aa4
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := setuptools
URL = https://files.pythonhosted.org/packages/db/e2/c0ced9ccffb61432305665c22842ea120c0f649eec47ecf2a45c596707c4/setuptools-57.4.0.tar.gz
URL = https://files.pythonhosted.org/packages/00/59/5a302942bd2e36194cc37a408989a87d6423e000859713dc3dd440c9dbae/setuptools-58.0.0.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = setuptools
url = https://files.pythonhosted.org/packages/db/e2/c0ced9ccffb61432305665c22842ea120c0f649eec47ecf2a45c596707c4/setuptools-57.4.0.tar.gz
url = https://files.pythonhosted.org/packages/00/59/5a302942bd2e36194cc37a408989a87d6423e000859713dc3dd440c9dbae/setuptools-58.0.0.tar.gz
archives =
giturl = https://github.com/pypa/setuptools.git
domain =
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
212
213
24 changes: 12 additions & 12 deletions setuptools.spec
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : setuptools
Version : 57.4.0
Release : 212
URL : https://files.pythonhosted.org/packages/db/e2/c0ced9ccffb61432305665c22842ea120c0f649eec47ecf2a45c596707c4/setuptools-57.4.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/db/e2/c0ced9ccffb61432305665c22842ea120c0f649eec47ecf2a45c596707c4/setuptools-57.4.0.tar.gz
Version : 58.0.0
Release : 213
URL : https://files.pythonhosted.org/packages/00/59/5a302942bd2e36194cc37a408989a87d6423e000859713dc3dd440c9dbae/setuptools-58.0.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/00/59/5a302942bd2e36194cc37a408989a87d6423e000859713dc3dd440c9dbae/setuptools-58.0.0.tar.gz
Summary : Easily download, build, install, upgrade, and uninstall Python packages
Group : Development/Tools
License : MIT Python-2.0 ZPL-2.0
Expand Down Expand Up @@ -60,31 +60,31 @@ python3 components for the setuptools package.


%prep
%setup -q -n setuptools-57.4.0
cd %{_builddir}/setuptools-57.4.0
%setup -q -n setuptools-58.0.0
cd %{_builddir}/setuptools-58.0.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=1626734125
export SOURCE_DATE_EPOCH=1630885725
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
export NM=gcc-nm
export CFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=4 "
export FCFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=4 "
export FFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=4 "
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=4 "
export CFLAGS="$CFLAGS -O3 -ffat-lto-objects -flto=auto "
export FCFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
export FFLAGS="$FFLAGS -O3 -ffat-lto-objects -flto=auto "
export CXXFLAGS="$CXXFLAGS -O3 -ffat-lto-objects -flto=auto "
export MAKEFLAGS=%{?_smp_mflags}
python3 setup.py build

%install
export MAKEFLAGS=%{?_smp_mflags}
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/setuptools
cp %{_builddir}/setuptools-57.4.0/LICENSE %{buildroot}/usr/share/package-licenses/setuptools/8e6689d37f82d5617b7f7f7232c94024d41066d1
cp %{_builddir}/setuptools-58.0.0/LICENSE %{buildroot}/usr/share/package-licenses/setuptools/8e6689d37f82d5617b7f7f7232c94024d41066d1
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
@@ -1 +1 @@
31c14da6f9ac813fa712532fbc1e64c1562a2833/setuptools-57.4.0.tar.gz
bae0c79c1251e3bac160067852c913fa17003fab/setuptools-58.0.0.tar.gz
2 changes: 1 addition & 1 deletion versions
@@ -1 +1 @@
57.4.0
58.0.0
5 changes: 2 additions & 3 deletions whatrequires
Expand Up @@ -5,6 +5,7 @@ Sphinx
acme
aiohttp-cors
apipkg
astroid
backports.entry_points_selectable
bazel
blockdiag
Expand All @@ -29,14 +30,11 @@ grpcio-tools
ipdb
ipython
jaraco.classes
jaraco.collections
jaraco.text
jarn.viewdoc
josepy
jsonpickle
jsonschema
jupyter-packaging
keyring
kiwisolver
lazy-object-proxy
librealsense
Expand All @@ -45,6 +43,7 @@ mercurial
mozjs78
opcodes
pip-legacy
platformdirs
protobuf
pyroma
pyside2-setup
Expand Down

0 comments on commit 63d7aa4

Please sign in to comment.