pkgsrc-Changes archive

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

CVS commit: pkgsrc/wm/herbstluftwm



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun May 17 14:56:42 UTC 2020

Modified Files:
        pkgsrc/wm/herbstluftwm: Makefile PLIST distinfo
        pkgsrc/wm/herbstluftwm/patches: patch-CMakeLists.txt
Removed Files:
        pkgsrc/wm/herbstluftwm/patches: patch-src_decoration.cpp
            patch-src_utils.cpp

Log Message:
herbstluftwm: Update to 0.8.2

Release 0.8.2 on 2020-05-04
---------------------------

  * Selection of empty frames by the mouse (by click or by hover if
    focus_follows_mouse is enabled)
  * The commands 'close_and_remove' / 'close_or_remove' act like 'close' for
    floating clients
  * The decoration window allows focusing, moving, and resizing the client
    via the mouse (as known from standard floating window managers)
  * Improved herbstclient tab completion for the fish shell
  * Bug fixes:
    - Fix a crash in the error handler when a invalid monitor name is
      passed. (Affects list_padding move_monitor rename_monitor lock_tag
      unlock_tag)
    - Fix the type of WM_STATE
    - The client attributes sizehints_tiling and sizehints_floating are now
      writable
    - Fix EWMH urgency change for clients without WM hints set
    - Fix the exit code of the 'focus' command

Release 0.8.1 on 2020-04-21
---------------------------

  * the frame index 'e' refers to the first empty frame (e.g. 'rule index=e' places
    new windows in empty frames, if possible)
  * new setting 'hide_covered_windows' to improve the appearance when used with
    a compositor.
  * resize floating windows with the same command ('resize') as in tiling mode
    and thus the same keybindings as in tiling mode. Therefore, the
    'fractiondelta' parameter to the 'resize' command is now optional.
  * keybind now checks that the bound command exists.
  * cycle_all (Alt-Tab) now also traverses floating clients
  * new setting 'auto_detect_panels' controlling the panel detection algorithm.
  * improved herbstclient tab completion for the fish shell
  * Bug fixes:
    - Handle the regular expression "" correctly, since the grammar of extended
      regular expressions does not allow "".
    - Error handling for the lack of xrandr
    - Fixes to make it compile on other systems and architecture

Release 0.8.0 on 2020-04-09
---------------------------

  * single window floating (every client has an attribute 'floating' which can
    be set at run time and via the rule consequence 'floating=on')
  * monitor detection via xrandr
  * detection of external panels
  * new command: apply_rules
  * new command: export (convenience wrapper around setenv)
  * new client attribute: keys_inactive (negation of keymask)
  * new command: drag (initiates moving/resizing a window by mouse)
  * if tags have been configured through EWMH before herbstluftwm starts (from
    a previous running window manager), then herbstluftwm re-uses these tags
    (start with --no-tag-import to disable this)
  * The build system is now cmake. See the INSTALL file if you need to
    compile herbstluftwm yourself.
  * the 'remove' command now tries to preserve the focus and the client
    arrangement. Intuitively speaking, 'remove' is undoing a frame split.
  * Many boolean style settings were formerly of type int. Now, these are
    boolean settings.
  * The 'toggle' command only works for boolean settings. For the former
    behavior for int-typed settings, use 'cycle_value'.
  * Writing '%%' in the 'sprintf' format string now gives a literate '%', just
    as printf. Formerly it stayed '%%'.
  * The 'keybind' command now accepts all valid key symbols, even if they are
    not present on the current keyboard layout at the time of setup.
  * the rules are also applied to those clients that change their WM_CLASS
    after being shown already.
  * 'detect_monitors' has an additional '--list-all' parameter
  * do not change the focus (for focus_follows_mouse=1) when an unmanaged
    dialog (e.g. a rofi menu or a notification) closes.
  * list_rules now prints regex-based rule conditions with '~' instead of '='
  * new attributes on every monitor for pad_up pad_down pad_left pad_right
  * new flag --exit-on-xerror (to be used in automated testing only)
  * Formerly, double dots in object paths were allowed (similar to double
    slashes in file paths in unix). Right now, they are only allowed at the end
    (which is necessary for the tab-completion of attr):
    - +monitors+ is valid
    - +monitors.+ is valid
    - +monitors..+ is valid
    - +monitors.by-name.+ is valid
    - +monitors..by-name.+ is *invalid*


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/wm/herbstluftwm/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/wm/herbstluftwm/PLIST
cvs rdiff -u -r1.2 -r1.3 pkgsrc/wm/herbstluftwm/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt
cvs rdiff -u -r1.1 -r0 \
    pkgsrc/wm/herbstluftwm/patches/patch-src_decoration.cpp \
    pkgsrc/wm/herbstluftwm/patches/patch-src_utils.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/wm/herbstluftwm/Makefile
diff -u pkgsrc/wm/herbstluftwm/Makefile:1.3 pkgsrc/wm/herbstluftwm/Makefile:1.4
--- pkgsrc/wm/herbstluftwm/Makefile:1.3 Sun Mar  8 16:51:32 2020
+++ pkgsrc/wm/herbstluftwm/Makefile     Sun May 17 14:56:42 2020
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2020/03/08 16:51:32 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2020/05/17 14:56:42 nia Exp $
 
-DISTNAME=      herbstluftwm-0.7.2
-PKGREVISION=   1
+DISTNAME=      herbstluftwm-0.8.2
 CATEGORIES=    wm
 MASTER_SITES=  https://herbstluftwm.org/tarballs/
 
@@ -29,5 +28,6 @@ pre-configure:
 .include "../../devel/glib2/buildlink3.mk"
 .include "../../x11/libXext/buildlink3.mk"
 .include "../../x11/libXinerama/buildlink3.mk"
+.include "../../x11/libXrandr/buildlink3.mk"
 .include "../../x11/libX11/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/wm/herbstluftwm/PLIST
diff -u pkgsrc/wm/herbstluftwm/PLIST:1.1 pkgsrc/wm/herbstluftwm/PLIST:1.2
--- pkgsrc/wm/herbstluftwm/PLIST:1.1    Wed Jan  1 15:24:02 2020
+++ pkgsrc/wm/herbstluftwm/PLIST        Sun May 17 14:56:42 2020
@@ -1,12 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2020/01/01 15:24:02 nia Exp $
-bin/dmenu_run_hlwm
+@comment $NetBSD: PLIST,v 1.2 2020/05/17 14:56:42 nia Exp $
 bin/herbstclient
 bin/herbstluftwm
 man/man1/herbstclient.1
 man/man1/herbstluftwm.1
 man/man7/herbstluftwm-tutorial.7
+share/bash-completion/completions/herbstclient
 share/doc/herbstluftwm/BUGS
-share/doc/herbstluftwm/INSTALL
 share/doc/herbstluftwm/LICENSE
 share/doc/herbstluftwm/NEWS
 share/doc/herbstluftwm/examples/README
@@ -14,18 +13,23 @@ share/doc/herbstluftwm/examples/dmenu.sh
 share/doc/herbstluftwm/examples/dumpbeautify.sh
 share/doc/herbstluftwm/examples/exec_on_tag.sh
 share/doc/herbstluftwm/examples/execwith.sh
+share/doc/herbstluftwm/examples/float-maximize.sh
 share/doc/herbstluftwm/examples/floatmon.sh
 share/doc/herbstluftwm/examples/herbstcommander.sh
 share/doc/herbstluftwm/examples/keychain.sh
 share/doc/herbstluftwm/examples/lasttag.sh
 share/doc/herbstluftwm/examples/layout.sh
 share/doc/herbstluftwm/examples/loadstate.sh
+share/doc/herbstluftwm/examples/maximize.sh
 share/doc/herbstluftwm/examples/q3terminal.sh
 share/doc/herbstluftwm/examples/savestate.sh
 share/doc/herbstluftwm/examples/scratchpad.sh
+share/doc/herbstluftwm/examples/toggledualhead.sh
+share/doc/herbstluftwm/examples/windowmenu.sh
 share/doc/herbstluftwm/examples/wselect.sh
 share/doc/herbstluftwm/herbstclient.html
 share/doc/herbstluftwm/herbstluftwm-tutorial.html
 share/doc/herbstluftwm/herbstluftwm.html
+share/fish/vendor_completions.d/herbstclient.fish
 share/xsessions/herbstluftwm.desktop
-share/zsh/functions/Completion/X/_herbstclient
+share/zsh/site-functions/_herbstclient

Index: pkgsrc/wm/herbstluftwm/distinfo
diff -u pkgsrc/wm/herbstluftwm/distinfo:1.2 pkgsrc/wm/herbstluftwm/distinfo:1.3
--- pkgsrc/wm/herbstluftwm/distinfo:1.2 Thu May 14 18:57:58 2020
+++ pkgsrc/wm/herbstluftwm/distinfo     Sun May 17 14:56:42 2020
@@ -1,9 +1,7 @@
-$NetBSD: distinfo,v 1.2 2020/05/14 18:57:58 joerg Exp $
+$NetBSD: distinfo,v 1.3 2020/05/17 14:56:42 nia Exp $
 
-SHA1 (herbstluftwm-0.7.2.tar.gz) = b07b623fc675ae578a282ded84f38dfa6cd9436e
-RMD160 (herbstluftwm-0.7.2.tar.gz) = 1a61cafad3af500d51aa7cd39fb5413055e33178
-SHA512 (herbstluftwm-0.7.2.tar.gz) = abb49bbc3de9a0ef619ce7063c1cea0d0d25ab2195c53dc0d33e061ad24060da4bbe9b99b9b9126028cdf68b462d4fcc8d1534431e4892d571ff897a68d2113c
-Size (herbstluftwm-0.7.2.tar.gz) = 245506 bytes
-SHA1 (patch-CMakeLists.txt) = 0e5090670bba37bf8c264af1e02dd33e5b2146b8
-SHA1 (patch-src_decoration.cpp) = 106e4084a21034e2ea6b27b69b817344f5cc948f
-SHA1 (patch-src_utils.cpp) = 7a0b56169de193a8622fae70985a4766698c9f98
+SHA1 (herbstluftwm-0.8.2.tar.gz) = 36da9b2b8051638601e465063af48bad8f25f78f
+RMD160 (herbstluftwm-0.8.2.tar.gz) = 6e684a625447ef121e88250ec44231d909ce1e0b
+SHA512 (herbstluftwm-0.8.2.tar.gz) = 1a2bf3861ce23e33bb09afed285f7d85450307b46d00a666d02eaf9c454d53904e4d54ca8b0245da5ef095667a0adf9cdfc3aff170089c99df6b7f01e9038d5f
+Size (herbstluftwm-0.8.2.tar.gz) = 377790 bytes
+SHA1 (patch-CMakeLists.txt) = d373394ad059eb455e2e5abc1feea0e21f1b53e6

Index: pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt
diff -u pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt:1.1 pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt:1.2
--- pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt:1.1     Wed Jan  1 15:24:02 2020
+++ pkgsrc/wm/herbstluftwm/patches/patch-CMakeLists.txt Sun May 17 14:56:42 2020
@@ -1,28 +1,15 @@
-$NetBSD: patch-CMakeLists.txt,v 1.1 2020/01/01 15:24:02 nia Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.2 2020/05/17 14:56:42 nia Exp $
 
-Do not clobber CFLAGS and set the correct MANDIR.
+Set the correct MANDIR.
 
---- CMakeLists.txt.orig        2019-05-09 09:04:33.000000000 +0000
+--- CMakeLists.txt.orig        2020-05-04 17:24:08.000000000 +0000
 +++ CMakeLists.txt
-@@ -34,12 +34,6 @@ set(SYSCONFDIR "${DESTDIR}/etc")
- set(CONFIGDIR "${SYSCONFDIR}/xdg/herbstluftwm")
- 
- 
--if(CMAKE_COMPILER_IS_GNUCC)
--    set(CMAKE_C_FLAGS "-pedantic -Wall")
--    set(CMAKE_CXX_FLAGS "-pedantic -Wall -Wno-sign-compare -Wno-narrowing -Wno-deprecated-register")
--endif()
--
--
- # ----------------------------------------------------------------------------
- # Find Libraries
- 
-@@ -187,7 +181,7 @@ target_link_libraries(herbstclient ${LIB
- 
- set(BINDIR ${DESTDIR}${CMAKE_INSTALL_PREFIX}/bin)
- set(DATADIR ${DESTDIR}${CMAKE_INSTALL_PREFIX}/share)
+@@ -26,7 +26,7 @@ set(CMAKE_INSTALL_SYSCONF_PREFIX "/etc" 
+ set(CONFIGDIR "${CMAKE_INSTALL_SYSCONF_PREFIX}/xdg/herbstluftwm")
+ set(BINDIR bin)
+ set(DATADIR share)
 -set(MANDIR ${DATADIR}/man)
 +set(MANDIR ${DESTDIR}${CMAKE_INSTALL_MANDIR})
  set(DOCDIR ${DATADIR}/doc/herbstluftwm)
- set(EXAMPLESDIR ${DOCDIR}/examples)
- set(LICENSEDIR ${DOCDIR})
+ set(LICENSEDIR ${DOCDIR}
+     CACHE PATH "Install path for license file")



Home | Main Index | Thread Index | Old Index