From f854ad0d0a9a9268adb496ede5b2b7df6e2cccf9 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:55 +0700 Subject: [PATCH] python3-raven: 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. --- srcpkgs/python3-raven/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-raven/template b/srcpkgs/python3-raven/template index ea4b615479e..243b2c5aefb 100644 --- a/srcpkgs/python3-raven/template +++ b/srcpkgs/python3-raven/template @@ -1,7 +1,7 @@ # Template file for 'python3-raven' pkgname=python3-raven version=6.10.0 -revision=5 +revision=6 wrksrc="raven-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -17,6 +17,6 @@ conflicts="python-raven>=0" post_install() { # use system ca-certificates rm -f ${DESTDIR}/${py3_sitelib}/raven/data/cacert.pem - ln -sf /etc/ssl/cert.pem ${DESTDIR}/${py3_sitelib}/raven/data/cacert.pem + ln -sf /etc/ssl/certs.pem ${DESTDIR}/${py3_sitelib}/raven/data/cacert.pem vlicense LICENSE }