Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

Commit 93f9fe2

Browse files
committed
pypi-setuptools: Autospec creation for update from version 69.1.0 to version 69.1.1
Anderson Bravalheri (6): Update bug report template Remove arbitrary equality operator from bug report template. Add comments about Python version to bug-report.yml Use setup.cfg to specify test dependency on packaging Cleanup withespace in Github issue template Bump version: 69.1.0 → 69.1.1 Avasam (2): Bump packaging in tests to 23.2 PR number to newsfragment James Hilliard (1): Append arbitrary args instead of prepending.
1 parent 468821e commit 93f9fe2

File tree

5 files changed

+13
-36
lines changed

5 files changed

+13
-36
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := pypi-setuptools
2-
URL = https://files.pythonhosted.org/packages/c9/3d/74c56f1c9efd7353807f8f5fa22adccdba99dc72f34311c30a69627a0fad/setuptools-69.1.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/c8/1f/e026746e5885a83e1af99002ae63650b7c577af5c424d4c27edcf729ab44/setuptools-69.1.1.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = pypi-setuptools
3-
url = https://files.pythonhosted.org/packages/c9/3d/74c56f1c9efd7353807f8f5fa22adccdba99dc72f34311c30a69627a0fad/setuptools-69.1.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/c8/1f/e026746e5885a83e1af99002ae63650b7c577af5c424d4c27edcf729ab44/setuptools-69.1.1.tar.gz
44
archives =
55
giturl = https://github.com/pypa/setuptools.git
66
domain =
@@ -62,7 +62,7 @@ skip_tests = true
6262
# add .so files to the lib package instead of dev
6363
so_to_lib = false
6464
# configure build for apx
65-
use_apx = true
65+
use_apx = false
6666
# configure build for avx2
6767
use_avx2 = true
6868
# configure build for avx512

pypi-setuptools.spec

Lines changed: 8 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
# autospec commit: da8b975
77
#
88
Name : pypi-setuptools
9-
Version : 69.1.0
10-
Release : 318
11-
URL : https://files.pythonhosted.org/packages/c9/3d/74c56f1c9efd7353807f8f5fa22adccdba99dc72f34311c30a69627a0fad/setuptools-69.1.0.tar.gz
12-
Source0 : https://files.pythonhosted.org/packages/c9/3d/74c56f1c9efd7353807f8f5fa22adccdba99dc72f34311c30a69627a0fad/setuptools-69.1.0.tar.gz
9+
Version : 69.1.1
10+
Release : 319
11+
URL : https://files.pythonhosted.org/packages/c8/1f/e026746e5885a83e1af99002ae63650b7c577af5c424d4c27edcf729ab44/setuptools-69.1.1.tar.gz
12+
Source0 : https://files.pythonhosted.org/packages/c8/1f/e026746e5885a83e1af99002ae63650b7c577af5c424d4c27edcf729ab44/setuptools-69.1.1.tar.gz
1313
Summary : Easily download, build, install, upgrade, and uninstall Python packages
1414
Group : Development/Tools
1515
License : MIT Python-2.0 ZPL-2.0
@@ -63,21 +63,18 @@ python3 components for the pypi-setuptools package.
6363

6464

6565
%prep
66-
%setup -q -n setuptools-69.1.0
67-
cd %{_builddir}/setuptools-69.1.0
66+
%setup -q -n setuptools-69.1.1
67+
cd %{_builddir}/setuptools-69.1.1
6868
pushd ..
69-
cp -a setuptools-69.1.0 buildavx2
70-
popd
71-
pushd ..
72-
cp -a setuptools-69.1.0 buildapx
69+
cp -a setuptools-69.1.1 buildavx2
7370
popd
7471

7572
%build
7673
export http_proxy=http://127.0.0.1:9/
7774
export https_proxy=http://127.0.0.1:9/
7875
export no_proxy=localhost,127.0.0.1,0.0.0.0
7976
export LANG=C.UTF-8
80-
export SOURCE_DATE_EPOCH=1707758089
77+
export SOURCE_DATE_EPOCH=1708705368
8178
export GCC_IGNORE_WERROR=1
8279
export AR=gcc-ar
8380
export RANLIB=gcc-ranlib
@@ -102,16 +99,6 @@ FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS -march=x86-64-v3 "
10299
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS -march=x86-64-v3 "
103100
python3 -m build --wheel --skip-dependency-check --no-isolation
104101

105-
popd
106-
pushd ../buildapx/
107-
CC=gcc-14
108-
CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS -march=x86-64-v3 -mapxf -mavx10.1 -Wl,-z,x86-64-v3 "
109-
CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS -march=x86-64-v3 -Wl,-z,x86-64-v3 "
110-
FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -march=x86-64-v3 -mapxf -mavx10.1 -Wl,-z,x86-64-v3 "
111-
FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS -march=x86-64-v3 -mapxf -mavx10.1 "
112-
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS -march=x86-64-v3 "
113-
python3 -m build --wheel --skip-dependency-check --no-isolation
114-
115102
popd
116103

117104
%install
@@ -145,15 +132,6 @@ FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS -march=x86-64-v3 "
145132
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS -march=x86-64-v3 "
146133
python3 -m installer --destdir=%{buildroot}-v3 dist/*.whl
147134
popd
148-
pushd ../buildapx/
149-
CC=gcc-14
150-
CFLAGS="$CLEAR_INTERMEDIATE_CFLAGS -march=x86-64-v3 -mapxf -mavx10.1 -Wl,-z,x86-64-v3 "
151-
CXXFLAGS="$CLEAR_INTERMEDIATE_CXXFLAGS -march=x86-64-v3 -Wl,-z,x86-64-v3 "
152-
FFLAGS="$CLEAR_INTERMEDIATE_FFLAGS -march=x86-64-v3 -mapxf -mavx10.1 -Wl,-z,x86-64-v3 "
153-
FCFLAGS="$CLEAR_INTERMEDIATE_FCFLAGS -march=x86-64-v3 -mapxf -mavx10.1 "
154-
LDFLAGS="$CLEAR_INTERMEDIATE_LDFLAGS -march=x86-64-v3 "
155-
python3 -m installer --destdir=%{buildroot}-va dist/*.whl
156-
popd
157135
## Remove excluded files
158136
rm -f %{buildroot}*/usr/lib/python3.12/site-packages/setuptools/cli-32.exe
159137
rm -f %{buildroot}*/usr/lib/python3.12/site-packages/setuptools/cli-64.exe
@@ -169,7 +147,6 @@ echo "#!/bin/sh" > %{buildroot}/usr/bin/easy_install_is_deprecated
169147
chmod 755 %{buildroot}/usr/bin/easy_install_is_deprecated
170148
## install_append end
171149
/usr/bin/elf-move.py avx2 %{buildroot}-v3 %{buildroot} %{buildroot}/usr/share/clear/filemap/filemap-%{name}
172-
/usr/bin/elf-move.py apx %{buildroot}-va %{buildroot} %{buildroot}/usr/share/clear/filemap/filemap-%{name}
173150

174151
%files
175152
%defattr(-,root,root,-)

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
318
1+
319

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
763e871f860edf9e3fe577bfebdf2fce906dd4e7/setuptools-69.1.0.tar.gz
1+
9a1c40450c45809f459fa9e1c936a47d2b36e585/setuptools-69.1.1.tar.gz

0 commit comments

Comments
 (0)