Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Ubuntu 22.04 and Debian Unstable, install fails with "KeyError: 'headers'" #3234

Open
hswong3i opened this issue Apr 1, 2022 · 2 comments
Labels
bug Needs Triage Issues that need to be evaluated for severity and status.

Comments

@hswong3i
Copy link

hswong3i commented Apr 1, 2022

setuptools version

61.3.0

Python version

3.10.3+

OS

Ubuntu 22.04 Beta and Debian Unstable

Additional environment information

Running DEB packaging with dh-python.

Description

Since 60.0.0+, running debuild -uc -us require additional https://github.com/pypa/distutils/blob/debian-patch/_distutils_system_mod.py introduce by pypa/distutils#68.

For my OBS packaging for setuptools 61.3.0 (https://build.opensuse.org/package/show/home:alvistack/pypa-setuptools-61.3.0 and alvistack@d0d8d95) this logic working perfectly for:

  • Ubuntu 18.04, 20.04, 21.10, or
  • Debian 10, 11, Testing

But failed for:

  • Ubuntu 22.04 Beta (Python 3.10.3), or
  • Debian Unstable (Python 3.10.4)

Similar as #2956, again if modify the build script as below, build now OK:

 override_dh_auto_install:
-       dh_auto_install --destdir=debian/tmp
+       SETUPTOOLS_USE_DISTUTILS=stdlib dh_auto_install --destdir=debian/tmp

Expected behavior

It works for Ubuntu 21.10:

sudo podman run -ti --rm ubuntu:21.10 bash

apt update
apt full-upgrade -y
apt install -y curl wget git vim bash-completion
apt install -y python3 python3-dev dh-python build-essential debhelper devscripts fdupes
git clone https://github.com/alvistack/pypa-setuptools.git
cd pypa-setuptools/
git checkout alvistack/v61.3.0
git clean -xdf
tar zcvf ../python-setuptools_61.3.0.orig.tar.gz --exclude=.git .
debuild -uc -us

Also works for Debian Testing:

sudo podman run -ti --rm debian:testing bash

apt update
apt full-upgrade -y
apt install -y curl wget git vim bash-completion
apt install -y python3 python3-dev dh-python build-essential debhelper devscripts fdupes
git clone https://github.com/alvistack/pypa-setuptools.git
cd pypa-setuptools/
git checkout alvistack/v61.3.0
git clean -xdf
tar zcvf ../python-setuptools_61.3.0.orig.tar.gz --exclude=.git .
debuild -uc -us

How to Reproduce

Failed for Ubuntu 22.04:

sudo podman run -ti --rm ubuntu:22.04 bash

apt update
apt full-upgrade -y
apt install -y curl wget git vim bash-completion
apt install -y python3 python3-dev dh-python build-essential debhelper devscripts fdupes
git clone https://github.com/alvistack/pypa-setuptools.git
cd pypa-setuptools/
git checkout alvistack/v61.3.0
git clean -xdf
tar zcvf ../python-setuptools_61.3.0.orig.tar.gz --exclude=.git .
debuild -uc -us

Also failed for Debian Unstable:

sudo podman run -ti --rm debian:sid bash

apt update
apt full-upgrade -y
apt install -y curl wget git vim bash-completion
apt install -y python3 python3-dev dh-python build-essential debhelper devscripts fdupes
git clone https://github.com/alvistack/pypa-setuptools.git
cd pypa-setuptools/
git checkout alvistack/v61.3.0
git clean -xdf
tar zcvf ../python-setuptools_61.3.0.orig.tar.gz --exclude=.git .
debuild -uc -us

Output

   debian/rules override_dh_auto_install
make[1]: Entering directory '/pypa-setuptools'
dh_auto_install --destdir=debian/tmp
I: pybuild base:237: /usr/bin/python3 setup.py install --root /pypa-setuptools/debian/tmp 
running install
/pypa-setuptools/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
Traceback (most recent call last):
  File "/pypa-setuptools/setup.py", line 87, in <module>
    dist = setuptools.setup(**setup_params)
  File "/pypa-setuptools/setuptools/__init__.py", line 87, in setup
    return distutils.core.setup(**attrs)
  File "/pypa-setuptools/setuptools/_distutils/core.py", line 148, in setup
    return run_commands(dist)
  File "/pypa-setuptools/setuptools/_distutils/core.py", line 163, in run_commands
    dist.run_commands()
  File "/pypa-setuptools/setuptools/_distutils/dist.py", line 967, in run_commands
    self.run_command(cmd)
  File "/pypa-setuptools/setuptools/dist.py", line 1214, in run_command
    super().run_command(command)
  File "/pypa-setuptools/setuptools/_distutils/dist.py", line 985, in run_command
    cmd_obj.ensure_finalized()
  File "/pypa-setuptools/setuptools/_distutils/cmd.py", line 107, in ensure_finalized
    self.finalize_options()
  File "/pypa-setuptools/setup.py", line 66, in finalize_options
    install.finalize_options(self)
  File "/pypa-setuptools/setuptools/command/install.py", line 45, in finalize_options
    orig.install.finalize_options(self)
  File "/pypa-setuptools/setuptools/_distutils/command/install.py", line 380, in finalize_options
    self.finalize_unix()
  File "/pypa-setuptools/_distutils_system_mod.py", line 42, in finalize_unix
    self.select_scheme("deb_system")
  File "/pypa-setuptools/setuptools/_distutils/command/install.py", line 586, in select_scheme
    _select_scheme(self, name)
  File "/pypa-setuptools/setuptools/_distutils/command/install.py", line 123, in _select_scheme
    scheme = _inject_headers(name, _load_scheme(_resolve_scheme(name)))
  File "/pypa-setuptools/setuptools/_distutils/command/install.py", line 161, in _inject_headers
    scheme.setdefault('headers', fallback['headers'])
KeyError: 'headers'
E: pybuild pybuild:367: install: plugin distutils failed with: exit code=1: /usr/bin/python3 setup.py install --root /pypa-setuptools/debian/tmp 
dh_auto_install: error: pybuild --install -i python{version} -p 3.10 --dest-dir /pypa-setuptools/debian/tmp returned exit code 13
make[1]: *** [debian/rules:6: override_dh_auto_install] Error 25
make[1]: Leaving directory '/pypa-setuptools'
make: *** [debian/rules:17: binary] Error 2
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
debuild: fatal error at line 1182:
dpkg-buildpackage -us -uc -ui failed
@hswong3i hswong3i added bug Needs Triage Issues that need to be evaluated for severity and status. labels Apr 1, 2022
@hswong3i
Copy link
Author

hswong3i commented Apr 1, 2022

@jaraco could that due to https://github.com/pypa/distutils/blob/debian-patch/_distutils_system_mod.py not Python 3.10 compatible?

@hswong3i
Copy link
Author

hswong3i commented Apr 1, 2022

A quick dirty workaround from https://sources.debian.org/src/python3.10/3.10.4-1/debian/patches/distutils-install-layout.diff/#L76-L98 temporary fix the issue for Ubuntu 22.04 and Debian Unstable:

diff --git a/setuptools/_distutils/command/install.py b/setuptools/_distutils/command/install.py
index a38cddcd..fd9a0943 100644
--- a/setuptools/_distutils/command/install.py
+++ b/setuptools/_distutils/command/install.py
@@ -64,6 +64,44 @@ INSTALL_SCHEMES = {
         'scripts': '{base}/Scripts',
         'data': '{base}',
     },
+    'unix_local': {
+        'stdlib': '{installed_base}/{platlibdir}/python{py_version_short}',
+        'platstdlib': '{platbase}/{platlibdir}/python{py_version_short}',
+        'purelib': '{base}/local/lib/python{py_version_short}/dist-packages',
+        'platlib':
+            '{platbase}/local/{platlibdir}/python{py_version_short}/dist-packages',
+        'include': '{installed_base}/include/python{py_version_short}{abiflags}',
+        'headers': '{base}/local/include/python{py_version_short}{abiflags}',
+        'platinclude':
+            '{installed_platbase}/include/python{py_version_short}{abiflags}',
+        'scripts': '{base}/local/bin',
+        'data': '{base}/local',
+        },
+    'deb_system': {
+        'stdlib': '{installed_base}/{platlibdir}/python{py_version_short}',
+        'platstdlib': '{platbase}/{platlibdir}/python{py_version_short}',
+        'purelib': '{base}/lib/python3/dist-packages',
+        'platlib': '{platbase}/{platlibdir}/python3/dist-packages',
+        'include': '{installed_base}/include/python{py_version_short}{abiflags}',
+        'headers': '{installed_base}/include/python{py_version_short}{abiflags}',
+        'platinclude':
+            '{installed_platbase}/include/python{py_version_short}{abiflags}',
+        'scripts': '{base}/bin',
+        'data': '{base}',
+        },
+    'posix_local': {
+        'stdlib': '{installed_base}/lib/python{py_version_short}',
+        'platstdlib': '{platbase}/lib/python{py_version_short}',
+        'purelib': '{base}/local/lib/python{py_version_short}/dist-packages',
+        'platlib': '{platbase}/local/lib/python{py_version_short}/dist-packages',
+        'include':
+            '{installed_base}/include/python{py_version_short}{abiflags}',
+        'headers': '{base}/local/include/python{py_version_short}{abiflags}',
+        'platinclude':
+            '{installed_platbase}/include/python{py_version_short}{abiflags}',
+        'scripts': '{base}/local/bin',
+        'data': '{base}/local',
+        },
 }
 
 # user site schemes

hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 12, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_64.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_64.0.0-1.spec
    mv ../python-setuptools*64.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-64.0.0/
    rm -rf ../python*-setuptools_64.0.0*.* ../python*-pkg-resources_64.0.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 12, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_64.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_64.0.0-1.spec
    mv ../python-setuptools*64.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-64.0.0/
    rm -rf ../python*-setuptools_64.0.0*.* ../python*-pkg-resources_64.0.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 12, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_64.0.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_64.0.1-1.spec
    mv ../python-setuptools*64.0.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-64.0.1/
    rm -rf ../python*-setuptools_64.0.1*.* ../python*-pkg-resources_64.0.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 13, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_64.0.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_64.0.2-1.spec
    mv ../python-setuptools*64.0.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-64.0.2/
    rm -rf ../python*-setuptools_64.0.2*.* ../python*-pkg-resources_64.0.2*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 13, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_64.0.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_64.0.3-1.spec
    mv ../python-setuptools*64.0.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-64.0.3/
    rm -rf ../python*-setuptools_64.0.3*.* ../python*-pkg-resources_64.0.3*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 14, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.0.0-1.spec
    mv ../python-setuptools*65.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.0.0/
    rm -rf ../python*-setuptools_65.0.0*.* ../python*-pkg-resources_65.0.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 14, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.0.0-1.spec
    mv ../python-setuptools*65.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.0.0/
    rm -rf ../python*-setuptools_65.0.0*.* ../python*-pkg-resources_65.0.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 16, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.0.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.0.1-1.spec
    mv ../python-setuptools*65.0.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.0.1/
    rm -rf ../python*-setuptools_65.0.1*.* ../python*-pkg-resources_65.0.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 16, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.0.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.0.1-1.spec
    mv ../python-setuptools*65.0.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.0.1/
    rm -rf ../python*-setuptools_65.0.1*.* ../python*-pkg-resources_65.0.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 17, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.0.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.0.2-1.spec
    mv ../python-setuptools*65.0.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.0.2/
    rm -rf ../python*-setuptools_65.0.2*.* ../python*-pkg-resources_65.0.2*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 19, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.1.0-1.spec
    mv ../python-setuptools*65.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.1.0/
    rm -rf ../python*-setuptools_65.1.0*.* ../python*-pkg-resources_65.1.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 19, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.1.0-1.spec
    mv ../python-setuptools*65.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.1.0/
    rm -rf ../python*-setuptools_65.1.0*.* ../python*-pkg-resources_65.1.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 21, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.1.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.1.1-1.spec
    mv ../python-setuptools*65.1.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.1.1/
    rm -rf ../python*-setuptools_65.1.1*.* ../python*-pkg-resources_65.1.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 21, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.1.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.1.1-1.spec
    mv ../python-setuptools*65.1.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.1.1/
    rm -rf ../python*-setuptools_65.1.1*.* ../python*-pkg-resources_65.1.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 22, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.2.0-1.spec
    mv ../python-setuptools*65.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.2.0/
    rm -rf ../python*-setuptools_65.2.0*.* ../python*-pkg-resources_65.2.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 22, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.2.0-1.spec
    mv ../python-setuptools*65.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.2.0/
    rm -rf ../python*-setuptools_65.2.0*.* ../python*-pkg-resources_65.2.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 24, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.3.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.3.0-1.spec
    mv ../python-setuptools*65.3.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.3.0/
    rm -rf ../python*-setuptools_65.3.0*.* ../python*-pkg-resources_65.3.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 24, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.3.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.3.0-1.spec
    mv ../python-setuptools*65.3.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.3.0/
    rm -rf ../python*-setuptools_65.3.0*.* ../python*-pkg-resources_65.3.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 25, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.4.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.4.0-1.spec
    mv ../python-setuptools*65.4.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.4.0/
    rm -rf ../python*-setuptools_65.4.0*.* ../python*-pkg-resources_65.4.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 25, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.4.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.4.0-1.spec
    mv ../python-setuptools*65.4.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.4.0/
    rm -rf ../python*-setuptools_65.4.0*.* ../python*-pkg-resources_65.4.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 30, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.4.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.4.1-1.spec
    mv ../python-setuptools*65.4.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.4.1/
    rm -rf ../python*-setuptools_65.4.1*.* ../python*-pkg-resources_65.4.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 14, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.5.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.5.0-1.spec
    mv ../python-setuptools*65.5.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.5.0/
    rm -rf ../python*-setuptools_65.5.0*.* ../python*-pkg-resources_65.5.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 17, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.4.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.4.0-1.spec
    mv ../python-setuptools*65.4.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.4.0/
    rm -rf ../python*-setuptools_65.4.0*.* ../python*-pkg-resources_65.4.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 17, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.4.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.4.1-1.spec
    mv ../python-setuptools*65.4.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.4.1/
    rm -rf ../python*-setuptools_65.4.1*.* ../python*-pkg-resources_65.4.1*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 17, 2022
    git clean -xdf
    tar zcvf ../python-setuptools_65.5.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_65.5.0-1.spec
    mv ../python-setuptools*65.5.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-65.5.0/
    rm -rf ../python*-setuptools_65.5.0*.* ../python*-pkg-resources_65.5.0*.*

See pypa#3234 (comment)

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/dbus-dbus-python that referenced this issue Nov 3, 2022
    git clean -xdf
    tar zcvf ../python-dbus_1.3.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-dbus.spec ../python-dbus_1.3.2-1.spec
    mv ../python*-dbus*1.3.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/dbus-dbus-python-1.3.2/
    rm -rf ../python*-dbus*1.3.2*.*

See pypa/setuptools#3234

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 10, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_72.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_72.1.0-1.spec
    cp ../python-setuptools*72.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-72.1.0/
    rm -rf ../python*-setuptools*72.1.0*.* ../python*-pkg-resources_72.1.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 14, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_72.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_72.1.0-1.spec
    cp ../python-setuptools*72.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-72.1.0/
    rm -rf ../python*-setuptools*72.1.0*.* ../python*-pkg-resources_72.1.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 17, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_72.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_72.2.0-1.spec
    cp ../python-setuptools*72.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-72.2.0/
    rm -rf ../python*-setuptools*72.2.0*.* ../python*-pkg-resources_72.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 17, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_72.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_72.2.0-1.spec
    cp ../python-setuptools*72.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-72.2.0/
    rm -rf ../python*-setuptools*72.2.0*.* ../python*-pkg-resources_72.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 20, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.0-1.spec
    cp ../python-setuptools*73.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.0/
    rm -rf ../python*-setuptools*73.0.0*.* ../python*-pkg-resources_73.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 20, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.0-1.spec
    cp ../python-setuptools*73.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.0/
    rm -rf ../python*-setuptools*73.0.0*.* ../python*-pkg-resources_73.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 20, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.0-1.spec
    cp ../python-setuptools*73.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.0/
    rm -rf ../python*-setuptools*73.0.0*.* ../python*-pkg-resources_73.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 20, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.0-1.spec
    cp ../python-setuptools*73.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.0/
    rm -rf ../python*-setuptools*73.0.0*.* ../python*-pkg-resources_73.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 21, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.0-1.spec
    cp ../python-setuptools*73.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.0/
    rm -rf ../python*-setuptools*73.0.0*.* ../python*-pkg-resources_73.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 21, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.1-1.spec
    cp ../python-setuptools*73.0.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.1/
    rm -rf ../python*-setuptools*73.0.1*.* ../python*-pkg-resources_73.0.1*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 21, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_73.0.1.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_73.0.1-1.spec
    cp ../python-setuptools*73.0.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-73.0.1/
    rm -rf ../python*-setuptools*73.0.1*.* ../python*-pkg-resources_73.0.1*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 28, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.0.0-1.spec
    cp ../python-setuptools*74.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.0.0/
    rm -rf ../python*-setuptools*74.0.0*.* ../python*-pkg-resources_74.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Aug 28, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.0.0-1.spec
    cp ../python-setuptools*74.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.0.0/
    rm -rf ../python*-setuptools*74.0.0*.* ../python*-pkg-resources_74.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 4, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.2-1.spec
    cp ../python-setuptools*74.1.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.2/
    rm -rf ../python*-setuptools*74.1.2*.* ../python*-pkg-resources_74.1.2*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 4, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.2-1.spec
    cp ../python-setuptools*74.1.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.2/
    rm -rf ../python*-setuptools*74.1.2*.* ../python*-pkg-resources_74.1.2*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 6, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.2-1.spec
    cp ../python-setuptools*74.1.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.2/
    rm -rf ../python*-setuptools*74.1.2*.* ../python*-pkg-resources_74.1.2*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 6, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.2.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.2-1.spec
    cp ../python-setuptools*74.1.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.2/
    rm -rf ../python*-setuptools*74.1.2*.* ../python*-pkg-resources_74.1.2*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 15, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.0.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.0.0-1.spec
    cp ../python-setuptools*75.0.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.0.0/
    rm -rf ../python*-setuptools*75.0.0*.* ../python*-pkg-resources_75.0.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 15, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 15, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 17, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.1.0-1.spec
    cp ../python-setuptools*75.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.1.0/
    rm -rf ../python*-setuptools*75.1.0*.* ../python*-pkg-resources_75.1.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Sep 17, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.1.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.1.0-1.spec
    cp ../python-setuptools*75.1.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.1.0/
    rm -rf ../python*-setuptools*75.1.0*.* ../python*-pkg-resources_75.1.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 16, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.2.0-1.spec
    cp ../python-setuptools*75.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.2.0/
    rm -rf ../python*-setuptools*75.2.0*.* ../python*-pkg-resources_75.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 16, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.2.0-1.spec
    cp ../python-setuptools*75.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.2.0/
    rm -rf ../python*-setuptools*75.2.0*.* ../python*-pkg-resources_75.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 18, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 19, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.2.0-1.spec
    cp ../python-setuptools*75.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.2.0/
    rm -rf ../python*-setuptools*75.2.0*.* ../python*-pkg-resources_75.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 22, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 25, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 25, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_74.1.3.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_74.1.3-1.spec
    cp ../python-setuptools*74.1.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-74.1.3/
    rm -rf ../python*-setuptools*74.1.3*.* ../python*-pkg-resources_74.1.3*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
hswong3i added a commit to alvistack/pypa-setuptools that referenced this issue Oct 26, 2024
    git clean -xdf
    tar zcvf ../python-setuptools_75.2.0.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-setuptools.spec ../python-setuptools_75.2.0-1.spec
    cp ../python-setuptools*75.2.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-setuptools-75.2.0/
    rm -rf ../python*-setuptools*75.2.0*.* ../python*-pkg-resources_75.2.0*.*

See pypa#3234 (comment)
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/distutils-install-layout.diff
See https://salsa.debian.org/cpython-team/python3/-/blob/python3.10/debian/patches/sysconfig-debian-schemes.diff

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Needs Triage Issues that need to be evaluated for severity and status.
Projects
None yet
Development

No branches or pull requests

1 participant