Skip to content

Commit

Permalink
pypi-setuptools: Autospec creation for update from version 65.4.0 to …
Browse files Browse the repository at this point in the history
…version 65.4.1

Jason R. Coombs (33):
      Use path.Path for changing the cwd temporarily.
      Remove needless assert renderings. Any decent test runner will provide this detail.
      Remove reference to duplicate issue.
      Refactor _is_python_source_dir using pathlib.
      Use 'samefile' to check for same file, because they may not be the same path. Fixes #180.
      Split test into two tests.
      Use pathlib
      Remove special case for TestCore.write_setup.
      Replace TESTFN with temp_file fixture.
      Remove 'cleanup_testfn', unused.
      Remove distracting comments
      In test_sysconfig, prefer fixtures to TESTFN.
      Remove cleanup_testfn, no longer used.
      Replace TESTFN with fixture.
      Remove empty logic branch.
      Use path.Path for changing the cwd temporarily.
      Remove reliance on TESTFN in test_dist
      Remove TESTFN from py38compat, no longer needed.
      xfail srcdir_simple on Windows
      Remove reliance on os_helper in test_build_ext
      Remove reliance on change_cwd
      Add compatibility shim for subprocess on Python 3.7 on Windows
      Extract _save_cwd for saving the current working directory.
      Prefer a temp_cwd fixture to reduce indentation.
      Remove reliance on create_empty_file
      Add PyPy to the test matrix on Linux. Fixes jaraco/skeleton#63.
      When rendering docs, preserve the syntax for defaults. Fixes jaraco/path#197.
      Add test for PermissionError. Ref pypa/distutils#181.
      Use os.path.isfile for checking if path.is_file, suppresses exceptions. Fixes pypa/distutils#181.
      Update changelog
      Use pathlib to open the file
      Update changelog
      Bump version: 65.4.0 → 65.4.1

Julien Palard (1):
      expand: Give bytes to ast.parse to let it discover encoding cookie.

Matthias Koeppe (3):
      .github/workflows/ci-sage.yml: Use reusable workflow https://github.com/sagemath/sage/blob/develop/.github/workflows/docker.yml
      .github/workflows/ci-sage.yml: Run on pull_request when the yml file is modified
      .github/workflows/ci-sage.yml: Use reusable workflow from https://trac.sagemath.org/ticket/33288
  • Loading branch information
fenrus75 committed Sep 30, 2022
1 parent ac4a375 commit 93bc4ee
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := pypi-setuptools
URL = https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
URL = https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = pypi-setuptools
url = https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
url = https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
archives =
giturl = https://github.com/pypa/setuptools.git
domain =
Expand Down
16 changes: 8 additions & 8 deletions pypi-setuptools.spec
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : pypi-setuptools
Version : 65.4.0
Release : 275
URL : https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
Version : 65.4.1
Release : 276
URL : https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
Source0 : https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.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 @@ -57,18 +57,18 @@ python3 components for the pypi-setuptools package.


%prep
%setup -q -n setuptools-65.4.0
cd %{_builddir}/setuptools-65.4.0
%setup -q -n setuptools-65.4.1
cd %{_builddir}/setuptools-65.4.1
pushd ..
cp -a setuptools-65.4.0 buildavx2
cp -a setuptools-65.4.1 buildavx2
popd

%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=1664206680
export SOURCE_DATE_EPOCH=1664556657
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
275
276
2 changes: 1 addition & 1 deletion upstream
@@ -1 +1 @@
e5f9797d85db9bb2ce39b401c1b7aca38de616b5/setuptools-65.4.0.tar.gz
519a11f22479893dd7216c1332e4340e32c55eaa/setuptools-65.4.1.tar.gz
2 changes: 1 addition & 1 deletion versions
@@ -1 +1 @@
65.4.0
65.4.1

0 comments on commit 93bc4ee

Please sign in to comment.