summaryrefslogtreecommitdiff
path: root/wm
diff options
context:
space:
mode:
authorgutteridge <gutteridge@pkgsrc.org>2022-10-24 16:48:19 +0000
committergutteridge <gutteridge@pkgsrc.org>2022-10-24 16:48:19 +0000
commitcb987c9f7ca8a365e084b2ed78a35b123fedf742 (patch)
tree56b30ff1a3ab82af25e59d00ef23f04ff648b519 /wm
parent6871cb84d226287f60a05c45d388909c4bd2bd68 (diff)
downloadpkgsrc-cb987c9f7ca8a365e084b2ed78a35b123fedf742.tar.gz
enlightenment16: update to 1.0.26
e16 v1.0.26 - 2022-10-24 ------------------------ - 1.0.26 - Update po - autofoo: Rework git tag/release stuff - autofoo: Fix incorrect handling of no-container option - Handle quoting in StrlistDecodeEscaped() - eesh: Improve argument passing - Portuguese translation update (Hugo Carvalho) - Fix some clang-analyzer complaints - autofoo: Drop pkg_revision some more - edge: Prevent pointer click and motion events propagating to root - edge: Refactor window creation - edge: Cosmetics - events: Discard all but last reparent event in queue for window - events: Trivial cleanup - menus: Fix potential crash - autofoo: Drop pkg_revision - French translation update (Philippe J. Guillaumie)
Diffstat (limited to 'wm')
-rw-r--r--wm/enlightenment16/Makefile5
-rw-r--r--wm/enlightenment16/distinfo9
-rw-r--r--wm/enlightenment16/patches/patch-src_menus.c27
3 files changed, 6 insertions, 35 deletions
diff --git a/wm/enlightenment16/Makefile b/wm/enlightenment16/Makefile
index a042128693b..db6b5c236c4 100644
--- a/wm/enlightenment16/Makefile
+++ b/wm/enlightenment16/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2022/09/11 12:52:09 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2022/10/24 16:48:19 gutteridge Exp $
-DISTNAME= e16-1.0.25
+DISTNAME= e16-1.0.26
PKGNAME= ${DISTNAME:S/e/enlightenment/}
-PKGREVISION= 4
CATEGORIES= wm x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=enlightenment/}
diff --git a/wm/enlightenment16/distinfo b/wm/enlightenment16/distinfo
index aa14c4b92ec..8d6c196cab2 100644
--- a/wm/enlightenment16/distinfo
+++ b/wm/enlightenment16/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.9 2022/07/14 00:53:02 gutteridge Exp $
+$NetBSD: distinfo,v 1.10 2022/10/24 16:48:19 gutteridge Exp $
-BLAKE2s (e16-1.0.25.tar.gz) = 992c5e56d045f797fa2010b6bd8ffc2da7390809fc0530f7b06063405de6aca8
-SHA512 (e16-1.0.25.tar.gz) = 6c69c2e345350115281c822805a072644cf3ce6c16e5c963146924ed94af235c51c5fd846ebba9ad97a6da2c397eafc54d3ffbcd460bb14c903ef3a4bf0621b1
-Size (e16-1.0.25.tar.gz) = 2395514 bytes
+BLAKE2s (e16-1.0.26.tar.gz) = a6bb822d20004fbed92e04243d5dad64063a4908f46e5b5f9c9c505281908b22
+SHA512 (e16-1.0.26.tar.gz) = 4a14fd7df5621bc291b053b9da4a1d384b058e8099d6c4856f8ec334559ee8b9346e13f1609909402932dead6ffd9cc3d3f9a36401a38bebe9ec3d4335015926
+Size (e16-1.0.26.tar.gz) = 2407581 bytes
SHA1 (patch-ac) = a5a2f2b0377212178480cc94e6975dd4ff364ced
-SHA1 (patch-src_menus.c) = 8ae49e4fcd0733e0e9afea41a1038f5c52167cc6
diff --git a/wm/enlightenment16/patches/patch-src_menus.c b/wm/enlightenment16/patches/patch-src_menus.c
deleted file mode 100644
index 8ac55e3f84e..00000000000
--- a/wm/enlightenment16/patches/patch-src_menus.c
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-src_menus.c,v 1.1 2022/07/14 00:53:02 gutteridge Exp $
-
-Fix potential crash if a currently displayed menu is re-requested.
-Upstream commit:
-http://git.enlightenment.org/e16/e16/commit/6369dfa7ddac282310fce83505212d8c9cf8f0e8
-
---- src/menus.c.orig 2022-06-13 06:00:07.000000000 +0000
-+++ src/menus.c
-@@ -1150,13 +1150,16 @@ MenusShowNamed(const char *name, const c
- if (name2)
- name = name2;
-
-+ m = MenuFind(name, param);
-+ if (m && m->shown)
-+ return; /* Quit if already shown */
-+
- /* Hide any menus currently up */
- if (MenusActive())
- MenusHide();
-
-- m = MenuFind(name, param);
- if (!m)
-- return;
-+ return; /* Quit if menu not found */
-
- if (!m->ewin) /* Don't show if already shown */
- MenuShow(m, 0);