git: df1bac20ade7 - main - x11-wm/i3: update to 4.20.1

From: Baptiste Daroussin <bapt_at_FreeBSD.org>
Date: Wed, 03 Nov 2021 13:00:25 UTC
The branch main has been updated by bapt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=df1bac20ade753e7eb8f9eef83b0727467c675f1

commit df1bac20ade753e7eb8f9eef83b0727467c675f1
Author:     Baptiste Daroussin <bapt@FreeBSD.org>
AuthorDate: 2021-11-03 12:56:47 +0000
Commit:     Baptiste Daroussin <bapt@FreeBSD.org>
CommitDate: 2021-11-03 12:57:14 +0000

    x11-wm/i3: update to 4.20.1
    
    Note that all our patches have been merged
---
 x11-wm/i3/Makefile                         |  2 +-
 x11-wm/i3/distinfo                         |  6 +++---
 x11-wm/i3/files/patch-include_libi3.h      | 10 ----------
 x11-wm/i3/files/patch-src_config__parser.c | 11 -----------
 4 files changed, 4 insertions(+), 25 deletions(-)

diff --git a/x11-wm/i3/Makefile b/x11-wm/i3/Makefile
index 3cb8bba2b4fe..08de1fe2f340 100644
--- a/x11-wm/i3/Makefile
+++ b/x11-wm/i3/Makefile
@@ -1,7 +1,7 @@
 # Created by: Dennis Herrmann <dhn@FreeBSD.org>
 
 PORTNAME=	i3
-DISTVERSION=	4.20
+DISTVERSION=	4.20.1
 CATEGORIES=	x11-wm
 MASTER_SITES=	https://i3wm.org/downloads/ \
 		http://i3wm.org/downloads/
diff --git a/x11-wm/i3/distinfo b/x11-wm/i3/distinfo
index de3d4440c6bc..307d9eddeb5d 100644
--- a/x11-wm/i3/distinfo
+++ b/x11-wm/i3/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1635845011
-SHA256 (i3-4.20.tar.xz) = 8cf4f174f6cf554f38563380681abe25868e9955883791e0986ecd89c53ac322
-SIZE (i3-4.20.tar.xz) = 1286300
+TIMESTAMP = 1635944168
+SHA256 (i3-4.20.1.tar.xz) = 23e1ecaf208c1d162a0c8c66c4590b301a424ee5c011227eabb96e36fd6bfce6
+SIZE (i3-4.20.1.tar.xz) = 1284984
diff --git a/x11-wm/i3/files/patch-include_libi3.h b/x11-wm/i3/files/patch-include_libi3.h
deleted file mode 100644
index 660691cc77ab..000000000000
--- a/x11-wm/i3/files/patch-include_libi3.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- include/libi3.h.orig	2021-10-19 06:37:59 UTC
-+++ include/libi3.h
-@@ -15,6 +15,7 @@
- #include <stdbool.h>
- #include <stdarg.h>
- #include <stdio.h>
-+#include <sys/stat.h>
- #include <xcb/xcb.h>
- #include <xcb/xproto.h>
- #include <xcb/xcb_keysyms.h>
diff --git a/x11-wm/i3/files/patch-src_config__parser.c b/x11-wm/i3/files/patch-src_config__parser.c
deleted file mode 100644
index 599675c1b0ed..000000000000
--- a/x11-wm/i3/files/patch-src_config__parser.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/config_parser.c.orig	2021-10-19 06:37:59 UTC
-+++ src/config_parser.c
-@@ -864,7 +864,7 @@ parse_file_result_t parse_file(struct parser_ctx *ctx,
-     FILE *fstr;
-     char buffer[4096], key[512], value[4096], *continuation = NULL;
- 
--    char *old_dir = get_current_dir_name();
-+    char *old_dir = getwd(NULL);
-     char *dir = NULL;
-     /* dirname(3) might modify the buffer, so make a copy: */
-     char *dirbuf = sstrdup(f);