[gentoo-commits] repo/gentoo:master commit in: x11-wm/wmfs/files/

2021-01-25 Thread Aaron Bauman
commit: 568796a044655b86753265de8a6216cadefad93c
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Jan 25 09:24:54 2021 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jan 25 15:01:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568796a0

x11-wm/wmfs: remove unused patches

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19208
Signed-off-by: Aaron Bauman  gentoo.org>

 x11-wm/wmfs/files/wmfs-201003-desktop.patch |  9 -
 x11-wm/wmfs/files/wmfs-201003-pthread.patch | 12 
 2 files changed, 21 deletions(-)

diff --git a/x11-wm/wmfs/files/wmfs-201003-desktop.patch 
b/x11-wm/wmfs/files/wmfs-201003-desktop.patch
deleted file mode 100644
index 91edac6d88b..000
--- a/x11-wm/wmfs/files/wmfs-201003-desktop.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 a/wmfs.desktop
-+++ b/wmfs.desktop
-@@ -1,5 +1,4 @@
--[Desktop Entry] 
--Encoding=UTF-8
-+[Desktop Entry]
- Name=wmfs
- Comment=Window manager from scratch
- TryExec=wmfs

diff --git a/x11-wm/wmfs/files/wmfs-201003-pthread.patch 
b/x11-wm/wmfs/files/wmfs-201003-pthread.patch
deleted file mode 100644
index cbbf6343bdf..000
--- a/x11-wm/wmfs/files/wmfs-201003-pthread.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -94,7 +92,8 @@
- set(LIBRARIES_TO_LINK
-   ${FREETYPE_LIBRARIES}
-   ${X11_LIBRARIES}
--  Xft)
-+  Xft
-+  pthread)
- 
- # Includes
- include(FindDoxygen)



[gentoo-commits] repo/gentoo:master commit in: x11-wm/wmfs/files/

2020-06-23 Thread Jeroen Roovers
commit: 0b2b3498ba93f257a8889f82abf89a0fb554a5ca
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 24 05:32:47 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 24 05:46:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2b3498

x11-wm/wmfs: Drop obsolete patch

Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Jeroen Roovers  gentoo.org>

 x11-wm/wmfs/files/wmfs--strncat.patch | 20 
 1 file changed, 20 deletions(-)

diff --git a/x11-wm/wmfs/files/wmfs--strncat.patch 
b/x11-wm/wmfs/files/wmfs--strncat.patch
deleted file mode 100644
index e55cd00121b..000
--- a/x11-wm/wmfs/files/wmfs--strncat.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 a/src/launcher.c
-+++ b/src/launcher.c
-@@ -366,7 +366,7 @@
-if(pos && (end = complete(, tmpbuf)))
-{
- strncpy(buf, tmpbuf, sizeof(buf));
--strncat(buf, end, sizeof(buf));
-+strncat(buf, end, sizeof(buf) - 1);
- found = true;
-}
- 
-@@ -387,7 +387,7 @@
- 
-   default:
-lastwastab = false;
--   strncat(buf, tmp, sizeof(tmp));
-+   strncat(buf, tmp, sizeof(buf) - 1);
-++pos;
-break;
-   }