From: Michał Górny Date: Sat, 14 Mar 2020 16:45:37 +0000 (+0100) Subject: python-utils-r1.eclass: Do not create 'python.pc' wrapper X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0789043be6039284f9cb88d089afb243428d5d1e;p=gentoo.git python-utils-r1.eclass: Do not create 'python.pc' wrapper Do not create 'python.pc', only 'python[23].pc'. This seems to match what other distributions are doing. Signed-off-by: Michał Górny --- diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 325964e0e0e8..28314d5135d0 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}.pc || die local EPYTHON PYTHON python_export "${impl}" EPYTHON PYTHON @@ -1021,8 +1021,7 @@ python_wrapper_setup() { # Python 2.7+. ln -s "${EPREFIX}"/usr/$(get_libdir)/pkgconfig/${EPYTHON/n/n-}.pc \ - "${workdir}"/pkgconfig/python.pc || die - ln -s python.pc "${workdir}"/pkgconfig/python${pyver}.pc || die + "${workdir}"/pkgconfig/python${pyver}.pc || die else nonsupp+=( 2to3 python-config "python${pyver}-config" ) fi