mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-08 16:13:50 +02:00
python3-httplib2: use system CA Certificates again
From the switch to openssl in commit d90dba0ae2
,
(New package: openssl-1.1.1j, 2019-01-12), we no longer ships
/etc/ssl/cert.pem, we have /etc/ssl/certs.pem instead.
This package still links to the old files.
Link them to the new files.
Fix: #38065
This commit is contained in:
parent
f854ad0d0a
commit
8c7b35f154
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'python3-httplib2'
|
# Template file for 'python3-httplib2'
|
||||||
pkgname=python3-httplib2
|
pkgname=python3-httplib2
|
||||||
version=0.18.1
|
version=0.18.1
|
||||||
revision=3
|
revision=4
|
||||||
create_wrksrc=yes
|
create_wrksrc=yes
|
||||||
build_wrksrc="httplib2-${version}"
|
build_wrksrc="httplib2-${version}"
|
||||||
build_style=python3-module
|
build_style=python3-module
|
||||||
|
@ -20,7 +20,7 @@ checksum="8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3
|
||||||
post_install() {
|
post_install() {
|
||||||
# use system ca certificates
|
# use system ca certificates
|
||||||
rm -rf ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt
|
rm -rf ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt
|
||||||
ln -sf /etc/ssl/cert.pem ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt
|
ln -sf /etc/ssl/certs.pem ${DESTDIR}/${py3_sitelib}/httplib2/cacerts.txt
|
||||||
|
|
||||||
vlicense ../LICENSE.txt
|
vlicense ../LICENSE.txt
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue