commit:     ae0f5a2aebc3f74a56e9907a391ad336439372e1
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Tue Sep 14 11:19:40 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Sep 14 12:26:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae0f5a2a

net-mail/mu: remove unused patches

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/22296
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 net-mail/mu/files/mu-1.4.15-guile3-1.patch | 141 -----------------------------
 net-mail/mu/files/mu-1.4.15-guile3-2.patch |  17 ----
 2 files changed, 158 deletions(-)

diff --git a/net-mail/mu/files/mu-1.4.15-guile3-1.patch 
b/net-mail/mu/files/mu-1.4.15-guile3-1.patch
deleted file mode 100644
index 671a4685a27..00000000000
--- a/net-mail/mu/files/mu-1.4.15-guile3-1.patch
+++ /dev/null
@@ -1,141 +0,0 @@
-From 623cf787ad009c42b2adf3767be5f01fec56ff5a Mon Sep 17 00:00:00 2001
-From: Danny O'Brien <danny@codetherapy.space>
-Date: Mon, 7 Sep 2020 19:52:17 -0700
-Subject: [PATCH] guile: support version 3.0.
-
-Includes an update to the guile m4 package, and tweaks the build so that
-both 2.2 and 3.0 should work fine.
----
- configure.ac                  | 14 +++++++-------
- guile/Makefile.am             |  2 +-
- guile/mu/Makefile.am          |  4 +---
- m4/Makefile.am                |  2 +-
- m4/{guile-2.2.m4 => guile.m4} | 15 +++++++++------
- 5 files changed, 19 insertions(+), 18 deletions(-)
- rename m4/{guile-2.2.m4 => guile.m4} (97%)
-
-diff --git a/configure.ac b/configure.ac
-index eb5629696..cc43f43db 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -212,22 +212,22 @@ AM_CONDITIONAL(BUILD_GUI,[test "x$have_webkit" = "xyes" 
-a "x$have_gtk" = "xyes"
- 
###############################################################################
- 
- 
###############################################################################
--# build with guile2.2 when available and not disabled.
-+# build with guile 3.0/2.2 when available and not disabled.
- AC_ARG_ENABLE([guile], AS_HELP_STRING([--disable-guile],[Disable guile]))
- AS_IF([test "x$enable_guile" != "xno"],[
--  PKG_CHECK_MODULES(GUILE22, guile-2.2, [have_guile22=yes],[have_guile22=no])
--  # this is a bit hacky; GUILE_PKG
--  AS_IF([test "x$have_guile22" = "xyes"],[
--    GUILE_PKG([2.2])
-+  PKG_CHECK_MODULES(GUILE, [guile-3.0], [have_guile=yes],[
-+    PKG_CHECK_MODULES(GUILE, [guile-2.2], [have_guile=yes], [have_guile=no])])
-+  AS_IF([test "x$have_guile" = "xyes"],[
-+    GUILE_PKG([3.0 2.2])
-     GUILE_PROGS
-     GUILE_FLAGS
-     AC_DEFINE_UNQUOTED([GUILE_BINARY],"$GUILE",[guile binary])
-     AC_DEFINE(BUILD_GUILE,[1], [Do we support Guile?])
-     AC_SUBST(GUILE_SNARF, [guile-snarf])
--    guile_version=$($PKG_CONFIG guile-2.2 --modversion)
-+    guile_version=$($PKG_CONFIG guile-$GUILE_EFFECTIVE_VERSION --modversion)
-   ])
- ])
--AM_CONDITIONAL(BUILD_GUILE,[test "x$have_guile22" = "xyes"])
-+AM_CONDITIONAL(BUILD_GUILE,[test "x$have_guile" = "xyes"])
- 
###############################################################################
- 
- 
###############################################################################
-diff --git a/guile/Makefile.am b/guile/Makefile.am
-index ed613068b..5c06ccc95 100644
---- a/guile/Makefile.am
-+++ b/guile/Makefile.am
-@@ -69,7 +69,7 @@ SUFFIXES = .x .doc
- 
- # FIXME: GUILE_SITEDIR would be better, but that
- # breaks 'make distcheck'
--scmdir=${prefix}/share/guile/site/2.2/
-+scmdir=${prefix}/share/guile/site/${GUILE_EFFECTIVE_VERSION}
- scm_DATA=mu.scm
- 
- EXTRA_DIST=$(scm_DATA)
-diff --git a/guile/mu/Makefile.am b/guile/mu/Makefile.am
-index f531822cd..9339ad973 100644
---- a/guile/mu/Makefile.am
-+++ b/guile/mu/Makefile.am
-@@ -16,9 +16,7 @@
- 
- include $(top_srcdir)/gtest.mk
- 
--# FIXME: GUILE_SITEDIR would be better, but that
--# breaks 'make distcheck'
--scmdir=${prefix}/share/guile/site/2.2/mu/
-+scmdir=${prefix}/share/guile/site/${GUILE_EFFECTIVE_VERSION}/mu/
- 
- scm_DATA=             \
-       stats.scm       \
-diff --git a/m4/Makefile.am b/m4/Makefile.am
-index eeb8a05a4..27a49eebe 100644
---- a/m4/Makefile.am
-+++ b/m4/Makefile.am
-@@ -41,7 +41,7 @@ EXTRA_DIST=                          \
-       ax_lib_readline.m4              \
-       ax_require_defined.m4           \
-       ax_valgrind_check.m4            \
--      guile-2.2.m4                    \
-+      guile.m4                        \
-       lib-ld.m4                       \
-       lib-link.m4                     \
-       lib-prefix.m4
-diff --git a/m4/guile-2.2.m4 b/m4/guile.m4
-similarity index 97%
-rename from m4/guile-2.2.m4
-rename to m4/guile.m4
-index 89823e9c3..696897364 100644
---- a/m4/guile-2.2.m4
-+++ b/m4/guile.m4
-@@ -47,8 +47,8 @@
- # for an available version of Guile.
- #
- # By default, this macro will search for the latest stable version of
--# Guile (e.g. 2.2), falling back to the previous stable version
--# (e.g. 2.0) if it is available.  If no guile-@var{VERSION}.pc file is
-+# Guile (e.g. 3.0), falling back to the previous stable version
-+# (e.g. 2.2) if it is available.  If no guile-@var{VERSION}.pc file is
- # found, an error is signalled.  The found version is stored in
- # @var{GUILE_EFFECTIVE_VERSION}.
- #
-@@ -60,8 +60,11 @@
- # @code{AC_SUBST}.
- #
- AC_DEFUN([GUILE_PKG],
-- [PKG_PROG_PKG_CONFIG
--  _guile_versions_to_search="m4_default([$1], [2.2 2.0 1.8])"
-+ [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-+  if test "x$PKG_CONFIG" = x; then
-+    AC_MSG_ERROR([pkg-config is missing, please install it])
-+  fi
-+  _guile_versions_to_search="m4_default([$1], [3.0 2.2 2.0])"
-   if test -n "$GUILE_EFFECTIVE_VERSION"; then
-     _guile_tmp=""
-     for v in $_guile_versions_to_search; do
-@@ -221,7 +224,7 @@ AC_DEFUN([GUILE_SITE_DIR],
- # as well.
- #
- # By default, this macro will search for the latest stable version of
--# Guile (e.g. 2.2). x.y or x.y.z versions can be specified. If an older
-+# Guile (e.g. 3.0). x.y or x.y.z versions can be specified. If an older
- # version is found, the macro will signal an error.
- #
- # The effective version of the found @code{guile} is set to
-@@ -237,7 +240,7 @@ AC_DEFUN([GUILE_SITE_DIR],
- AC_DEFUN([GUILE_PROGS],
-  [_guile_required_version="m4_default([$1], [$GUILE_EFFECTIVE_VERSION])"
-   if test -z "$_guile_required_version"; then
--    _guile_required_version=2.2
-+    _guile_required_version=3.0
-   fi
- 
-   _guile_candidates=guile

diff --git a/net-mail/mu/files/mu-1.4.15-guile3-2.patch 
b/net-mail/mu/files/mu-1.4.15-guile3-2.patch
deleted file mode 100644
index 6aa47d25230..00000000000
--- a/net-mail/mu/files/mu-1.4.15-guile3-2.patch
+++ /dev/null
@@ -1,17 +0,0 @@
----
- lib/mu-script.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/mu-script.c b/lib/mu-script.c
-index 1175a60e3..92a63992e 100644
---- a/lib/mu-script.c
-+++ b/lib/mu-script.c
-@@ -318,7 +318,7 @@ mu_script_guile_run (MuScriptInfo *msi, const char *muhome,
-       g_return_val_if_fail (muhome, FALSE);
- 
-       argv = g_new0 (char*, 6);
--      argv[0] = g_strdup("guile2.2");
-+      argv[0] = g_strdup(GUILE_BINARY);
-       argv[1] = g_strdup("-l");
- 
-       if (access (mu_script_info_path (msi), R_OK) != 0) {

Reply via email to