mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
Fix import zlib for older versions of python (#5605)
This commit is contained in:
parent
0910eeea8c
commit
4f69ad4ed4
1 changed files with 4 additions and 8 deletions
|
@ -34,7 +34,6 @@ interprets:
|
||||||
args: python
|
args: python
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
# recommended (but none are actually required)
|
|
||||||
zlib.net: 1
|
zlib.net: 1
|
||||||
sourceware.org/bzip2: 1
|
sourceware.org/bzip2: 1
|
||||||
openssl.org: ^1.1
|
openssl.org: ^1.1
|
||||||
|
@ -229,6 +228,7 @@ build:
|
||||||
- bin/pydoc{{version.marketing}}
|
- bin/pydoc{{version.marketing}}
|
||||||
- bin/python{{version.marketing}}-config
|
- bin/python{{version.marketing}}-config
|
||||||
|
|
||||||
|
LDFLAGS: -L{{ deps.zlib.net.prefix }}/lib
|
||||||
OPENSSL_INCLUDES: ${{ deps.openssl.org.prefix }}/include
|
OPENSSL_INCLUDES: ${{ deps.openssl.org.prefix }}/include
|
||||||
OPENSSL_LDFLAGS: -L{{ deps.openssl.org.prefix }}/lib
|
OPENSSL_LDFLAGS: -L{{ deps.openssl.org.prefix }}/lib
|
||||||
PYTHON2PATCHES:
|
PYTHON2PATCHES:
|
||||||
|
@ -259,13 +259,9 @@ test:
|
||||||
if: ^3.8
|
if: ^3.8
|
||||||
|
|
||||||
# Check if some other modules import. Then the linked libs are working.
|
# Check if some other modules import. Then the linked libs are working.
|
||||||
- run: |
|
- python -v -c "import _ctypes"
|
||||||
python -v -c "import _ctypes"
|
# - python -c "import _decimal" #FIXME
|
||||||
# python -c "import _decimal" #FIXME
|
- python -c "import zlib"
|
||||||
python -c "import zlib"
|
|
||||||
# FIXME: v2, <=3.6.4
|
|
||||||
if: ^3.6.4
|
|
||||||
|
|
||||||
- python -c "import pyexpat"
|
- python -c "import pyexpat"
|
||||||
|
|
||||||
# Verify that the selected DBM interface works
|
# Verify that the selected DBM interface works
|
||||||
|
|
Loading…
Reference in a new issue