commit:     e4c81b8ad8b339a9dceff7500b4e461405297c66
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  8 01:32:18 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun  8 01:32:18 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c81b8a

dev-vcs/git: switch more USE=tk to meson

Bug: https://bugs.gentoo.org/957542
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-vcs/git/git-9999-r1.ebuild | 48 +++++++++++++++++++++++-------------------
 dev-vcs/git/git-9999-r2.ebuild | 46 ++++++++++++++++++++++------------------
 dev-vcs/git/git-9999-r3.ebuild | 46 ++++++++++++++++++++++------------------
 3 files changed, 76 insertions(+), 64 deletions(-)

diff --git a/dev-vcs/git/git-9999-r1.ebuild b/dev-vcs/git/git-9999-r1.ebuild
index 8ebc4d045026..13162bb7c1af 100644
--- a/dev-vcs/git/git-9999-r1.ebuild
+++ b/dev-vcs/git/git-9999-r1.ebuild
@@ -149,12 +149,11 @@ RESTRICT="!test? ( test )"
 
 PATCHES=(
        "${FILESDIR}"/${PN}-2.48.1-macos-no-fsmonitor.patch
-       
"${FILESDIR}"/${PN}-2.49.0-meson-use-test_environment-conditionally.patch
 
        # This patch isn't merged upstream but is kept in the ebuild by
        # demand from developers. It's opt-in (needs a config option)
        # and the documentation mentions that it is a Gentoo addition.
-       
"${FILESDIR}"/${PN}-2.49.0-diff-implement-config.diff.renames-copies-harder.patch
+       
"${FILESDIR}"/${PN}-2.50.0-diff-implement-config.diff.renames-copies-harder.patch
 )
 
 pkg_setup() {
@@ -269,12 +268,15 @@ src_configure() {
        meson_src_configure
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       emesonargs=()
-                       meson_src_configure
-               )
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               emesonargs=()
+                               meson_src_configure
+                       )
+               done
        fi
 }
 
@@ -313,13 +315,14 @@ src_compile() {
        fi
 
        if use tk ; then
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core"
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_compile
-               )
-
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_compile
+                       )
+               done
        fi
 
        if use doc ; then
@@ -459,13 +462,14 @@ src_install() {
        fi
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_install
-               )
-
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core" DESTDIR="${D}" install
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_install
+                       )
+               done
        fi
 
        perl_delete_localpod

diff --git a/dev-vcs/git/git-9999-r2.ebuild b/dev-vcs/git/git-9999-r2.ebuild
index ce36da3200a5..13162bb7c1af 100644
--- a/dev-vcs/git/git-9999-r2.ebuild
+++ b/dev-vcs/git/git-9999-r2.ebuild
@@ -268,12 +268,15 @@ src_configure() {
        meson_src_configure
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       emesonargs=()
-                       meson_src_configure
-               )
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               emesonargs=()
+                               meson_src_configure
+                       )
+               done
        fi
 }
 
@@ -312,14 +315,14 @@ src_compile() {
        fi
 
        if use tk ; then
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core"
-
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_compile
-               )
-
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_compile
+                       )
+               done
        fi
 
        if use doc ; then
@@ -459,13 +462,14 @@ src_install() {
        fi
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_install
-               )
-
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core" DESTDIR="${D}" install
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_install
+                       )
+               done
        fi
 
        perl_delete_localpod

diff --git a/dev-vcs/git/git-9999-r3.ebuild b/dev-vcs/git/git-9999-r3.ebuild
index ce36da3200a5..13162bb7c1af 100644
--- a/dev-vcs/git/git-9999-r3.ebuild
+++ b/dev-vcs/git/git-9999-r3.ebuild
@@ -268,12 +268,15 @@ src_configure() {
        meson_src_configure
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       emesonargs=()
-                       meson_src_configure
-               )
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               emesonargs=()
+                               meson_src_configure
+                       )
+               done
        fi
 }
 
@@ -312,14 +315,14 @@ src_compile() {
        fi
 
        if use tk ; then
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core"
-
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_compile
-               )
-
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_compile
+                       )
+               done
        fi
 
        if use doc ; then
@@ -459,13 +462,14 @@ src_install() {
        fi
 
        if use tk ; then
-               (
-                       EMESON_SOURCE="${S}"/gitk-git
-                       BUILD_DIR="${WORKDIR}"/gitk-git_build
-                       meson_src_install
-               )
-
-               git_emake -C git-gui 
gitexecdir="${EPREFIX}/usr/libexec/git-core" DESTDIR="${D}" install
+               local tkdir
+               for tkdir in git-gui gitk-git ; do
+                       (
+                               EMESON_SOURCE="${S}"/${tkdir}
+                               BUILD_DIR="${WORKDIR}"/${tkdir}_build
+                               meson_src_install
+                       )
+               done
        fi
 
        perl_delete_localpod

Reply via email to