mirror of
				https://github.com/psycopg/psycopg2.git
				synced 2025-11-04 01:37:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Configure the libraries needed to build wheel packages on linux.
 | 
						|
# This script is designed to be used by cibuildwheel as CIBW_BEFORE_ALL_LINUX
 | 
						|
 | 
						|
set -euo pipefail
 | 
						|
set -x
 | 
						|
 | 
						|
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | 
						|
prjdir="$( cd "${dir}/../.." && pwd )"
 | 
						|
 | 
						|
source /etc/os-release
 | 
						|
 | 
						|
# Install PostgreSQL development files.
 | 
						|
case "$ID" in
 | 
						|
    alpine)
 | 
						|
        "${dir}/build_libpq.sh" > /dev/null
 | 
						|
        ;;
 | 
						|
 | 
						|
    debian)
 | 
						|
        # Note that the pgdg doesn't have an aarch64 repository so wheels are
 | 
						|
        # build with the libpq packaged with Debian 9, which is 9.6.
 | 
						|
        if [ "$AUDITWHEEL_ARCH" != 'aarch64' ]; then
 | 
						|
            echo "deb http://apt.postgresql.org/pub/repos/apt $VERSION_CODENAME-pgdg main" \
 | 
						|
                > /etc/apt/sources.list.d/pgdg.list
 | 
						|
            # TODO: On 2021-11-09 curl fails on 'ppc64le' with:
 | 
						|
            #   curl: (60) SSL certificate problem: certificate has expired
 | 
						|
            # Test again later if -k can be removed.
 | 
						|
            curl -skf https://www.postgresql.org/media/keys/ACCC4CF8.asc \
 | 
						|
                > /etc/apt/trusted.gpg.d/postgresql.asc
 | 
						|
        fi
 | 
						|
 | 
						|
        apt-get update
 | 
						|
        apt-get -y upgrade
 | 
						|
        apt-get -y install libpq-dev
 | 
						|
        ;;
 | 
						|
 | 
						|
    centos)
 | 
						|
        "${dir}/build_libpq.sh" > /dev/null
 | 
						|
        ;;
 | 
						|
 | 
						|
    *)
 | 
						|
        echo "$0: unexpected Linux distribution: '$ID'" >&2
 | 
						|
        exit 1
 | 
						|
        ;;
 | 
						|
esac
 | 
						|
 | 
						|
# Replace the package name
 | 
						|
if [[ "${PACKAGE_NAME:-}" ]]; then
 | 
						|
    sed -i "s/^setup(name=\"psycopg2\"/setup(name=\"${PACKAGE_NAME}\"/" \
 | 
						|
        "${prjdir}/setup.py"
 | 
						|
fi
 | 
						|
 |