Package Details: python-asysocks 0.2.9-1

Git Clone URL: https://aur.archlinux.org/python-asysocks.git (read-only, click to copy)
Package Base: python-asysocks
Description: Socks5/Socks4 client and server python library
Upstream URL: https://pypi.org/project/asysocks
Keywords: library proxy python socks4 socks5
Licenses: MIT
Submitter: GI_Jack
Maintainer: GI_Jack
Last Packager: GI_Jack
Votes: 2
Popularity: 0.000569
First Submitted: 2020-06-27 14:37 (UTC)
Last Updated: 2023-09-28 18:52 (UTC)

Latest Comments

dreieck commented on 2023-05-07 15:16 (UTC) (edited on 2023-05-07 15:17 (UTC) by dreieck)

I think you should switch to using python -m build and python -m installer instead of invoking setup.py directly:

running install
/usr/lib/python3.11/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!

        ********************************************************************************
        Please avoid running ``setup.py`` directly.
        Instead, use pypa/build, pypa/installer, pypa/build or
        other standards-based tools.

        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
        ********************************************************************************

!!

e.g. (just the idea, not tested with your package):

[...]
makedepends=(
  'python-build'
  'python-installer'
  'python-wheel'
  'python-setuptools'
  [...]
)
[...]
build() {
  [...]
  python -m build --wheel --no-isolation
  # maybe build documentation, ...
  [...]
}

package() {
  [...]
  python -m installer --destdir="$pkgdir" --compile-bytecode=2 dist/*.whl
  [...]
  # Maybe install documentation, license, ...
  [...]
}

Regards!