@eduardolucioac Theoretically you shouldn't come here with manjaro problems.
Search Criteria
Package Details: python2 2.7.18-12
Package Actions
Git Clone URL: | https://aur.archlinux.org/python2.git (read-only, click to copy) |
---|---|
Package Base: | python2 |
Description: | A high-level scripting language |
Upstream URL: | https://www.python.org/ |
Licenses: | PSF-2.0 |
Conflicts: | python |
Submitter: | jelly |
Maintainer: | micwoj92 |
Last Packager: | micwoj92 |
Votes: | 74 |
Popularity: | 0.32 |
First Submitted: | 2022-09-23 10:01 (UTC) |
Last Updated: | 2025-04-30 23:56 (UTC) |
Dependencies (18)
- bzip2 (bzip2-gitAUR)
- expat (expat-gitAUR)
- gdbm (gdbm-gitAUR)
- libffi (libffi-gitAUR)
- libnsl (libnsl-gitAUR)
- libxcrypt (libxcrypt-gitAUR)
- openssl-1.1
- sqlite (sqlite-fossilAUR)
- zlib (zlib-ng-compat-gitAUR, zlib-gitAUR, zlib-ng-compat)
- bluez-libs (bluez-gitAUR) (make)
- tk (tk-fossilAUR) (make)
- file (file-gitAUR) (check)
- gdb (gdb-gitAUR, gdb-debug-gitAUR) (check)
- xorg-server-xvfb (xorg-server-xvfb-gitAUR) (check)
- xterm (xterm-alacritty-symlinkAUR, kitty-xterm-symlinksAUR, xterm-gitAUR, xterm-alacritty-smooth-cursor-symlinkAUR) (check)
- python2-pipAUR (optional)
- python2-setuptoolsAUR (optional)
- tk (tk-fossilAUR) (optional) – for IDLE
Required by (923)
- appleseed-git
- archivemail
- archutil
- arduino-git (optional)
- armory
- arpreply-git
- axoloti-runtime-git
- balena-cli (make)
- balena-cli (optional)
- balena-cli-bin (optional)
- bapctools-git (optional)
- bash-it-git (optional)
- basilisk (make)
- bcash-git (make)
- bcoin-git (make)
- bdelta-git (make)
- bdflib-git
- beaker-browser (make)
- beast-git (make)
- bittornado
- Show 903 more...
Sources (4)
Latest Comments
« First ‹ Previous 1 .. 6 7 8 9 10 11 12 13 14 15 16 .. 20 Next › Last »
micwoj92 commented on 2022-11-08 07:20 (UTC)
eduardolucioac commented on 2022-11-08 04:05 (UTC) (edited on 2022-11-08 12:30 (UTC) by eduardolucioac)
Theoretically the error...
-> Could not find all required packages:
openssl-1.1 (Wanted by: python2)
... should not occur if the "openssl" package (openssl-1.1.1.q-1) is present, as we are talking about a different "revision" (MAJOR.MINOR.REVISION, versioning).
So the solution for me was to modify the dependencies in the "PKGBUILD" file by replacing "openssl-1.1" with "openssl"...
BEFORE
depends=('bzip2' 'expat' 'gdbm' 'libffi' 'libnsl' 'libxcrypt' 'openssl-1.1' 'sqlite' 'zlib')
AFTER
depends=('bzip2' 'expat' 'gdbm' 'libffi' 'libnsl' 'libxcrypt' 'openssl' 'sqlite' 'zlib')
BEFORE
CPPFLAGS+=" -I/usr/include/openssl-1.1"
LDFLAGS+=" -L/usr/lib/openssl-1.1"
AFTER
CPPFLAGS+=" -I/usr/include/openssl"
LDFLAGS+=" -L/usr/lib/openssl"
I also noticed the occurrence of failure in the test "test_urllibnet"...
1 test failed:
test_urllibnet
So I removed this test by modifying the "PKGBUILD" file once again...
BEFORE
xvfb-run "${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_idle test_tk test_ttk_guionly test_ctypes test_ssl test_ftplib test_imaplib test_urllib2_localnet test_codecmaps_jp
AFTER
xvfb-run "${srcdir}/Python-${pkgver}/python" -m test.regrtest -v -uall -x test_idle test_tk test_ttk_guionly test_ctypes test_ssl test_ftplib test_imaplib test_urllib2_localnet test_codecmaps_jp test_urllibnet
Done! Thanks! ☺️
micwoj92 commented on 2022-11-07 12:27 (UTC)
It also fails for python 3.10 (and probably any other version), installing not 100% compatible replacement of such crucial packages is your own responsibility. https://github.com/python/cpython/issues/98567
juxuanu commented on 2022-11-07 10:58 (UTC)
One can have zlib-ng installed and the zlib test will fail, by the way.
tompear commented on 2022-11-07 08:48 (UTC)
Required package name is 'openssl-1.1', not 'openssl' and this one you have installed on Manjaro. In Arch you can choose between 'openssl', 'openssl-1.0' and 'openssl-1.1' but on Manjaro there are only 'openssl' and 'openssl-1.0'.
BTW, this is AUR, Arch Users Repository, if package from there fits to your Manjaro installation you have lucky. Bad luck this time.
micwoj92 commented on 2022-11-07 08:47 (UTC)
For the last time, don't come here with manjaro problems, not my issue that the packages are just held back there.
mosgerila commented on 2022-11-07 08:28 (UTC) (edited on 2022-11-07 08:49 (UTC) by mosgerila)
Manjaro KDE. Cannot upgrade to this latest version 2.7.18-8. "could not satisfy dependencies: - unable to satisfy dependency 'openssl-1.1' required by python2" but openssl 1.1.1.q-1 is installed
maderios commented on 2022-11-06 20:18 (UTC)
@cmsigler It builds fine for me but i don't use any Aur helper, i just do 'makepkg -sicC' in directory
cmsigler commented on 2022-11-06 13:09 (UTC)
Hi all,
I also ran into problems. The solution for me was to "sanitize the build environment" :)
If you are using, for example, yay as your AUR helper:
$ mv -i ~/.cache/yay/python2/ ~/.cache/yay/python2.old
$ yay -S python2
I am running Arch, not a derivative. HTH!
Clemmitt Sigler
RubenKelevra commented on 2022-11-02 14:01 (UTC)
You should note in the description field that it won't receive any security updates.
Pinned Comments