Package Details: pypy3-setuptools 1:68.0.0-1

Git Clone URL: https://aur.archlinux.org/pypy-setuptools.git (read-only, click to copy)
Package Base: pypy-setuptools
Description: Easily download, build, install, upgrade, and uninstall Python packages
Upstream URL: http://pypi.python.org/pypi/setuptools
Licenses: PSF
Provides: pypy3-distribute
Replaces: pypy3-distribute
Submitter: yan12125
Maintainer: Tenshi65535
Last Packager: Tenshi65535
Votes: 19
Popularity: 0.000013
First Submitted: 2015-08-13 07:49 (UTC)
Last Updated: 2023-07-10 03:36 (UTC)

Latest Comments

« First ‹ Previous 1 2

dundee commented on 2017-02-01 22:46 (UTC)

Fixed. Please note, that setuptools do not include their dependecies in vendor dir anymore. FIRST installation of setuptools is therefore little bit complicated, because there are cyclic dependencies. You need to do: 1. install setuptools manually via ensurepip: # sudo pypy -m ensurepip # sudo pypy3 -m ensurepip If you get error message "Ignoring ensurepip failure: pip 8.1.2 requires SSL/TLS", there is easy hack/fix: sudo curl -o /opt/pypy3/lib-python/3/ssl.py https://gist.githubusercontent.com/gumblex/b77e5d6fba8d01a41789beb6dc90adec/raw/2ff2cafd81e8a23b0249631f2be982009a072116/ssl.py see https://www.reddit.com/r/learnpython/comments/5rblst/cant_use_pip_with_pypy_on_arch_linux/ 2. install all setuptools dependencies (pypy-six, pypy-pyparsing, pypy-packaging, pypy-appdirs) You will have to edit the PKGBUILD and remove dependency on pypy-setuptools during this first install. 3. install pypy-setuptools with --force (because ensurepip installed files on same paths)

mueslo commented on 2017-02-01 19:16 (UTC)

Missing 'packaging' dependency ==> Beginne package_pypy-setuptools()... Traceback (most recent call last): File "setup.py", line 11, in <module> import setuptools File "/tmp/username/packerbuild-1002/pypy3-setuptools/pypy3-setuptools/src/setuptools-34.1.0/setuptools/__init__.py", line 12, in <module> import setuptools.version File "/tmp/username/packerbuild-1002/pypy3-setuptools/pypy3-setuptools/src/setuptools-34.1.0/setuptools/version.py", line 1, in <module> import pkg_resources File "/tmp/username/packerbuild-1002/pypy3-setuptools/pypy3-setuptools/src/setuptools-34.1.0/pkg_resources/__init__.py", line 70, in <module> import packaging.version ImportError: No module named packaging

mueslo commented on 2017-02-01 19:14 (UTC)

Missing 'six' dependency ==> Beginning package_pypy-setuptools()... Traceback (most recent call last): File "setup.py", line 11, in <module> import setuptools File "/tmp/username/packerbuild-1002/pypy3-setuptools/pypy3-setuptools/src/setuptools-34.1.0/setuptools/__init__.py", line 10, in <module> from six.moves import filter, map ImportError: No module named six

yan12125 commented on 2016-11-03 11:43 (UTC)

I don't use pypy anymore, and maintaining against such a fast pace project is indeed a burden for me. I'm going to drop it and feel free to adopt it. For interested, you can find PKGBUILD template at https://github.com/yan12125/aur/tree/master/disowned/pypy-setuptools

yan12125 commented on 2016-11-03 11:42 (UTC)

I don't use pypy anymore, and maintaining against such a fast pace project is indeed a burden for me. I'm going to drop it and feel free to adopt it. For interested, you can find PKGBUILD template at https://github.com/yan12125/aur/tree/master/disowned/pypy-setuptools

yan12125 commented on 2016-06-06 13:58 (UTC)

Since version 1:22.0.5-2 pypy3-setuptools and pypy-setuptools are two separated packages. Please tell me if there are any problem.

yan12125 commented on 2016-06-06 13:58 (UTC)

Since version 1:22.0.5-2 pypy3-setuptools and pypy-setuptools are two separated packages. Please tell me if there are any problem.

yan12125 commented on 2015-11-05 18:55 (UTC)

Since setuptools 18.5 python 3.2.x or below is deprecated. [1] However, the latest stable version of pypy3 is python 3.2.5-compatible. As a result, you'll receive the following warning when using pypy3-setuptools: (for example running pip-pypy3) /opt/pypy3/site-packages/pkg_resources/__init__.py:103: UserWarning: Support for Python 3.0-3.2 has been dropped. Future versions will fail here. warnings.warn(msg) Please complain at setuptools or pypy sites but not here as it's a upstream issue. [1] https://bitbucket.org/pypa/setuptools/commits/1cbe02d87fa9b23c3798ef45f3e80e6c75426452