From 8c7b35f1547bf0f160f167a52a3ca1ed841b29ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Thu, 14 Jul 2022 21:51:54 +0700 Subject: [PATCH] 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 --- srcpkgs/python3-httplib2/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-httplib2/template b/srcpkgs/python3-httplib2/template index d0c39a47862..7e66bf376c6 100644 --- a/srcpkgs/python3-httplib2/template +++ b/srcpkgs/python3-httplib2/template @@ -1,7 +1,7 @@ # Template file for 'python3-httplib2' pkgname=python3-httplib2 version=0.18.1 -revision=3 +revision=4 create_wrksrc=yes build_wrksrc="httplib2-${version}" build_style=python3-module @@ -20,7 +20,7 @@ checksum="8af66c1c52c7ffe1aa5dc4bcd7c769885254b0756e6e69f953c7f0ab49a70ba3 post_install() { # use system ca certificates 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 }