diff options
author | nia <nia@pkgsrc.org> | 2020-11-23 13:43:52 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2020-11-23 13:43:52 +0000 |
commit | f63846741711a323aedf4fb24c5372d7066e5e14 (patch) | |
tree | 36277ab4d7072dee8801b04b984b1af271c61ffb /wm | |
parent | 50ea3e35a48775a82007b918c64b0321a08c4134 (diff) | |
download | pkgsrc-f63846741711a323aedf4fb24c5372d7066e5e14.tar.gz |
fvwm3: Update to 1.0.1
This release addresses the following:
New Features:
Add support for infostore in EnvIsSet Test case #240 (ThomasAdam)
Add variable/parameter which indicates the state of the FVWM3 logging #239 (NsCDE)
Support for setting default mouse cursor on all FvwmScript widgets #222 (NsCDE)
Add support for triangle indicator in/out sub options #221 (NsCDE)
Add WindowName option to FvwmButtons #219 (NsCDE)
Build problems:
compilation fails on openbsd-current due to safemalloc.h (va_list) #231
"version of go" misinterpreted by configure script? #202
Unable to build 1.0, bson.h not found [FreeBSD 12.1] #200
Bug-fixes:
_NET_WM_STATE was not updated for maximized windows #203
EwmhBaseStruts calculations don't use monitor's #241
DesktopConfiguration global inherits behaviour from per-monitor mode #236
FvwmEvent: missing monitor\_focus event #228
perllib: doesn't understand MX_MONITOR_* events #226
FvwmButtons subpanels not popped out on primary monitor when desk is > 0 #224
PositionPlacement Center: fix to use current screen #211
EwmhBaseStruts missing screen info from manpage #208
EwmhBaseStrut: fix calculations for per-monitor #242 (ThomasAdam)
Fix window locations in Global mode #237 (ThomasAdam)
Diffstat (limited to 'wm')
-rw-r--r-- | wm/fvwm3/Makefile | 5 | ||||
-rw-r--r-- | wm/fvwm3/distinfo | 11 | ||||
-rw-r--r-- | wm/fvwm3/patches/patch-libs_safemalloc.h | 13 |
3 files changed, 7 insertions, 22 deletions
diff --git a/wm/fvwm3/Makefile b/wm/fvwm3/Makefile index f68fdc7180b..8ccb55f9990 100644 --- a/wm/fvwm3/Makefile +++ b/wm/fvwm3/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2020/11/05 09:09:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.3 2020/11/23 13:43:52 nia Exp $ -DISTNAME= fvwm3-1.0.0 -PKGREVISION= 1 +DISTNAME= fvwm3-1.0.1 CATEGORIES= wm x11 MASTER_SITES= ${MASTER_SITE_GITHUB:=fvwmorg/} GITHUB_RELEASE= ${PKGVERSION_NOREV} diff --git a/wm/fvwm3/distinfo b/wm/fvwm3/distinfo index 05c7228eb4e..739909bc6f9 100644 --- a/wm/fvwm3/distinfo +++ b/wm/fvwm3/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.1 2020/09/29 12:22:35 nia Exp $ +$NetBSD: distinfo,v 1.2 2020/11/23 13:43:52 nia Exp $ -SHA1 (fvwm3-1.0.0.tar.gz) = 9de6c5fa5fa6abb2de479e4a1ecadd2afcc1e951 -RMD160 (fvwm3-1.0.0.tar.gz) = cbb0e4e937de294eb7b8bd4362b3eb96d3ed758d -SHA512 (fvwm3-1.0.0.tar.gz) = 240f59c2c73b24fecd8a9fe342da196b691c3c041cd112d85a04ddb6869b09477465018e4f3957789cf6f7fead44800bd88e66d9d366e988d8e547b33dfac967 -Size (fvwm3-1.0.0.tar.gz) = 3799948 bytes -SHA1 (patch-libs_safemalloc.h) = 505cb5a7fa4690cd1b9a12c7bac4ba0e244dc4e1 +SHA1 (fvwm3-1.0.1.tar.gz) = 1d3bc6a2c6485b3fb184abb94d37d3a297827941 +RMD160 (fvwm3-1.0.1.tar.gz) = c6d5bd7ed8666038f104a2469dd3a5b302e3e4ad +SHA512 (fvwm3-1.0.1.tar.gz) = e87e4863dbe409b2d2ae263ba0130f09a3089d21aa2ef95979b8522553a99496ad2a92d224101bfccf8f42620cb63e7b09f7f9ae23c0b02a10a5d0fa51f2c6ea +Size (fvwm3-1.0.1.tar.gz) = 3793285 bytes diff --git a/wm/fvwm3/patches/patch-libs_safemalloc.h b/wm/fvwm3/patches/patch-libs_safemalloc.h deleted file mode 100644 index 47ee5dbeaf3..00000000000 --- a/wm/fvwm3/patches/patch-libs_safemalloc.h +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-libs_safemalloc.h,v 1.1 2020/09/29 12:22:35 nia Exp $ - -Missing headers for size_t and va_list. - ---- libs/safemalloc.h.orig 2020-08-16 22:59:05.000000000 +0000 -+++ libs/safemalloc.h -@@ -1,3 +1,6 @@ -+#include <stdarg.h> -+#include <stddef.h> -+ - #ifndef _SAFEMALLOC_H - #define _SAFEMALLOC_H - void *fxmalloc(size_t); |