pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/wm/xfce4-wm Update xfwm4 to 4.13.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d995127f54b7
branches:  trunk
changeset: 314719:d995127f54b7
user:      bsiegert <bsiegert%pkgsrc.org@localhost>
date:      Mon Nov 05 18:58:49 2018 +0000

description:
Update xfwm4 to 4.13.1.

Release notes for 4.13.1
========================
[Please note that this is a development release.]

Adam Purkrt (3):
      Fix to erratic unmaximization by dragging
      Keep grip in proportion
      Typo in clientMoveTile

Andre Miranda (2):
      I18n: Update translation pt_BR (100%).
      Fix memory leaks in tabwin

Andrey Alekseenkov (1):
      Fix logic error in bottom struts validation

B?a?ej Szczygie? (1):
      compositor: remove old vblank code

David Siroky (1):
      Raise window while cycling

Marcel Partap (1):
      Do not prevent ALT+Mouse resizing for borderless maximized
windows.

Olivier Fourdan (38):
      Post release tag bump.
      netwm: avoid spurious warning on restart
      placement: Use primary monitor as default
      Revert "Add PointerMotionHintMask"
      Use ximerama indices for _NET_WM_FULLSCREEN_MONITORS
      Fix typo in flag name
      Flush display to catch possible errors
      compositor: update presentproto requirement
      compositor: Remove vblank option
      compositor: Remove present env var
      screen: Fix broken monitor index
      compositor: Disable XPresent on error
      compositor: check XPresent before GLX
      Fix maximized size increment regression
      main: Only allow for the x11 gdk backend
      compositor: add command line option for vblank
      compositor: fix clipping region with zooming
      client: Make sure to redraw when removing maximized
      screen: Use computed screen size instead of xlib
      main: keep xfwm4_error_quark private
      display: Fix warning in trace message
      stacking: Raise ancestor on activate if different from window
      pixmap: Avoid warning without icon
      stacking: Raise on activate w/out click-to-focus
      Build: Fix warnings with newer gtk+
      trace: rework traces
      build: Fix warnings and errors
      display: Add convenient display functions
      Use convenient display functions
      compositor: avoid damage errors
      compositor: Do not repaint if region is empty
      compositor: Print the GL renderer used
      compositor: Skip ARGB10 GLX configs
      netwm: Fix adding maximized state
      client: Check when GTK_FRAME_EXTENTS has changed
      client: Check GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED
      compositor: Add support for NET_WM_BYPASS_COMPOSITOR
      Release 4.13.1!

P. Pronk (1):
      client: Maximize on expected output

Stephane Gourichon (1):
      Fix build out of tree

Unit 193 (1):
      Fix a spelling mistake.

Viktor Odintsev (32):
      Prepare to GTK3
      Port most of GUI stuff to GTK3
      Implement RangeDebouncer
      Implement a new DND separator
      Replace inline pixbuf with gresource
      Handle gtk_screen_width/height deprecation
      Handle gtk_button_set_alignment deprecation
      Introduce xfwm-common static library
      Load default icon from icon theme
      Handle GDK display/screen/monitor deprecations
      Remove deprecated gdk_screen_make_display_name
      Replace gdk_error_trap_pop with gdk_error_trap_pop_ignored
      icons: replace gdk_pixbuf_get_from_drawable with gdk_pixbuf_get_from_surface
      Remove usage of deprecated macroses and private fields
      icons: use cairo-xlib-xrender to draw window's preview
      Remove black_gc and white_gc
      Implement GTK2-like style calculator
      Implement cairo drawing
      tabwin: complete GTK3 port, add CSS support
      poswin: remove deprecations
      Fix remaining deprecations
      compositor: fix possible infinite loop
      events: replace client_event with event filter
      Fix compilation with --disable-compositor
      menu: remove deprecations
      client: remove X error traps
      tabwin: fix initial sizing
      Add xfconf 4.13 support
      main: add support for multiple screens with GDK 3
      Fix some build warnings
      device: Implement XI2 event handling
      Replace XEvent with XfwmEvent + add xfwm_device_* grabs usage

diffstat:

 wm/xfce4-wm/Makefile |  14 ++++++++------
 wm/xfce4-wm/PLIST    |   5 ++++-
 wm/xfce4-wm/distinfo |  10 +++++-----
 3 files changed, 17 insertions(+), 12 deletions(-)

diffs (81 lines):

diff -r b6d92f299b44 -r d995127f54b7 wm/xfce4-wm/Makefile
--- a/wm/xfce4-wm/Makefile      Mon Nov 05 18:22:24 2018 +0000
+++ b/wm/xfce4-wm/Makefile      Mon Nov 05 18:58:49 2018 +0000
@@ -1,20 +1,22 @@
-# $NetBSD: Makefile,v 1.63 2018/08/22 09:47:22 wiz Exp $
+# $NetBSD: Makefile,v 1.64 2018/11/05 18:58:49 bsiegert Exp $
 
-PKGREVISION= 4
 .include "../../meta-pkgs/xfce4/Makefile.common"
 
-VERSION=       4.13.0
+VERSION=       4.13.1
 DISTNAME=      xfwm4-${VERSION}
 PKGNAME=       xfce4-wm-${VERSION}
 CATEGORIES=    wm
 MASTER_SITES+= http://archive.xfce.org/src/xfce/xfwm4/${VERSION:R}/
 
 HOMEPAGE=      http://docs.xfce.org/xfce/xfwm4/start
-COMMENT=       Xfce window manager
+COMMENT=       XFCE window manager
 
-.include "../../devel/libwnck/buildlink3.mk"
+.include "../../devel/libwnck3/buildlink3.mk"
 .include "../../sysutils/desktop-file-utils/desktopdb.mk"
-.include "../../x11/gtk2/buildlink3.mk"
+.include "../../x11/gtk3/buildlink3.mk"
+.include "../../x11/libXdamage/buildlink3.mk"
+.include "../../x11/libXfixes/buildlink3.mk"
+.include "../../x11/libXpresent/buildlink3.mk"
 .include "../../x11/libxfce4ui/buildlink3.mk"
 .include "../../graphics/hicolor-icon-theme/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r b6d92f299b44 -r d995127f54b7 wm/xfce4-wm/PLIST
--- a/wm/xfce4-wm/PLIST Mon Nov 05 18:22:24 2018 +0000
+++ b/wm/xfce4-wm/PLIST Mon Nov 05 18:58:49 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.20 2015/04/21 08:56:42 jperkin Exp $
+@comment $NetBSD: PLIST,v 1.21 2018/11/05 18:58:49 bsiegert Exp $
 bin/xfwm4
 bin/xfwm4-settings
 bin/xfwm4-tweaks-settings
@@ -18,6 +18,7 @@
 share/icons/hicolor/22x22/actions/xfce-wm-unstick.png
 share/icons/hicolor/48x48/apps/wmtweaks.png
 share/icons/hicolor/48x48/apps/xfce4-workspaces.png
+share/icons/hicolor/48x48/apps/xfwm4-default.png
 share/icons/hicolor/48x48/apps/xfwm4.png
 share/icons/hicolor/scalable/actions/xfce-wm-close.svg
 share/icons/hicolor/scalable/actions/xfce-wm-maximize.svg
@@ -30,6 +31,7 @@
 share/icons/hicolor/scalable/actions/xfce-wm-unstick.svg
 share/icons/hicolor/scalable/apps/wmtweaks.svg
 share/icons/hicolor/scalable/apps/xfce4-workspaces.svg
+share/icons/hicolor/scalable/apps/xfwm4-default.svg
 share/icons/hicolor/scalable/apps/xfwm4.svg
 share/locale/am/LC_MESSAGES/xfwm4.mo
 share/locale/ar/LC_MESSAGES/xfwm4.mo
@@ -43,6 +45,7 @@
 share/locale/de/LC_MESSAGES/xfwm4.mo
 share/locale/el/LC_MESSAGES/xfwm4.mo
 share/locale/en_AU/LC_MESSAGES/xfwm4.mo
+share/locale/en_CA/LC_MESSAGES/xfwm4.mo
 share/locale/en_GB/LC_MESSAGES/xfwm4.mo
 share/locale/eo/LC_MESSAGES/xfwm4.mo
 share/locale/es/LC_MESSAGES/xfwm4.mo
diff -r b6d92f299b44 -r d995127f54b7 wm/xfce4-wm/distinfo
--- a/wm/xfce4-wm/distinfo      Mon Nov 05 18:22:24 2018 +0000
+++ b/wm/xfce4-wm/distinfo      Mon Nov 05 18:58:49 2018 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.24 2017/06/18 22:56:55 youri Exp $
+$NetBSD: distinfo,v 1.25 2018/11/05 18:58:49 bsiegert Exp $
 
-SHA1 (xfwm4-4.13.0.tar.bz2) = 2a009e0e24c92e37d7fa16c76a4ed55cb4ade9cc
-RMD160 (xfwm4-4.13.0.tar.bz2) = 6793acf360ea06e601c90e3317938b01b372b3c2
-SHA512 (xfwm4-4.13.0.tar.bz2) = 01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
-Size (xfwm4-4.13.0.tar.bz2) = 1229878 bytes
+SHA1 (xfwm4-4.13.1.tar.bz2) = 74e367d8b1e37872c3a7c5d0b5a1e0b1195a6228
+RMD160 (xfwm4-4.13.1.tar.bz2) = ca6a598107a1a0bb8ab2e9837a43c25955295754
+SHA512 (xfwm4-4.13.1.tar.bz2) = 2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320
+Size (xfwm4-4.13.1.tar.bz2) = 1224120 bytes
 SHA1 (patch-defaults_defaults) = 116409b6ee52344984bf6547c9f6cf06d6d66b92



Home | Main Index | Thread Index | Old Index