commit:     e1e92875f9a233e4264edd1c8560052512e4fa7d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 14 16:49:13 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 16 07:35:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e92875

python-utils-r1.eclass: Create python3-embed.pc wrapper

Closes: https://bugs.gentoo.org/712526
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/python-utils-r1.eclass | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 28314d5135d..f144cbbb127 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

Reply via email to