From: Michał Górny Date: Sat, 14 Mar 2020 16:49:13 +0000 (+0100) Subject: python-utils-r1.eclass: Create python3-embed.pc wrapper X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e1e92875f9a233e4264edd1c8560052512e4fa7d;p=gentoo.git python-utils-r1.eclass: Create python3-embed.pc wrapper Closes: https://bugs.gentoo.org/712526 Signed-off-by: Michał Górny --- diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 28314d5135d0..f144cbbb1279 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -978,7 +978,7 @@ python_wrapper_setup() { # Clean up, in case we were supposed to do a cheap update. rm -f "${workdir}"/bin/python{,2,3}{,-config} || die rm -f "${workdir}"/bin/2to3 || die - rm -f "${workdir}"/pkgconfig/python{2,3}.pc || die + rm -f "${workdir}"/pkgconfig/python{2,3}{,-embed}.pc || die local EPYTHON PYTHON python_export "${impl}" EPYTHON PYTHON @@ -1022,6 +1022,12 @@ python_wrapper_setup() { # Python 2.7+. ln -s "${EPREFIX}"/usr/$(get_libdir)/pkgconfig/${EPYTHON/n/n-}.pc \ "${workdir}"/pkgconfig/python${pyver}.pc || die + + # Python 3.8+. + if [[ ${EPYTHON} != python[23].[67] ]]; then + ln -s "${EPREFIX}"/usr/$(get_libdir)/pkgconfig/${EPYTHON/n/n-}-embed.pc \ + "${workdir}"/pkgconfig/python${pyver}-embed.pc || die + fi else nonsupp+=( 2to3 python-config "python${pyver}-config" ) fi