diff options
author | fcambus <fcambus@pkgsrc.org> | 2019-10-31 10:30:22 +0000 |
---|---|---|
committer | fcambus <fcambus@pkgsrc.org> | 2019-10-31 10:30:22 +0000 |
commit | d1dfacfa0eb5c331def388f900d9e7c1a78493f2 (patch) | |
tree | bbf8766718b5be6d52103c08647c6a21c0b1a0b4 /wm | |
parent | f1568f9bda2079577884ca8a1844a571b32f218b (diff) | |
download | pkgsrc-d1dfacfa0eb5c331def388f900d9e7c1a78493f2.tar.gz |
coma: update to 1.1.
ChangeLog:
- add configurable frame height
- fix merge/split with new frame-height
- add configurable frame-border
- fixes for border + splits
- change client swap semantics to move
- Allow execution of commands via C-e
- allow binding of keysyms to commands
- add frame-set-directory
- simplify frame_client_move
- Add C-colon
- always update window titles
- add untag command and placeholders for autocomplete
- Let coma take the pwd from the shell if present
- insert new clients after the current one
- Add ability to execute commands on a remote host
- make default font bold and let font be configurable
- use bsd/string.h for strl* family on broken platforms
Diffstat (limited to 'wm')
-rw-r--r-- | wm/coma/Makefile | 11 | ||||
-rw-r--r-- | wm/coma/PLIST | 4 | ||||
-rw-r--r-- | wm/coma/distinfo | 12 | ||||
-rw-r--r-- | wm/coma/patches/patch-Makefile | 8 |
4 files changed, 23 insertions, 12 deletions
diff --git a/wm/coma/Makefile b/wm/coma/Makefile index 05e0cac5716..4fdcdd8d281 100644 --- a/wm/coma/Makefile +++ b/wm/coma/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2019/09/23 14:57:12 fcambus Exp $ +# $NetBSD: Makefile,v 1.5 2019/10/31 10:30:22 fcambus Exp $ -DISTNAME= coma-1.0 +DISTNAME= coma-1.1 CATEGORIES= wm MASTER_SITES= https://coma.one/releases/ @@ -9,6 +9,13 @@ HOMEPAGE= https://coma.one/releases/ COMMENT= Keyboard driven tiling window manager LICENSE= isc +# Use sh instead of hardcoded zsh +SUBST_CLASSES+= shell +SUBST_STAGE.shell= pre-configure +SUBST_MESSAGE.shell= Use sh instead of hardcoded zsh +SUBST_FILES.shell= scripts/* +SUBST_SED.shell+= -e 's,zsh,sh,' + USE_LANGUAGES= c99 USE_TOOLS+= pkg-config diff --git a/wm/coma/PLIST b/wm/coma/PLIST index c7b4cf20154..074a137087f 100644 --- a/wm/coma/PLIST +++ b/wm/coma/PLIST @@ -1,3 +1,5 @@ -@comment $NetBSD: PLIST,v 1.1 2019/08/16 14:07:27 fcambus Exp $ +@comment $NetBSD: PLIST,v 1.2 2019/10/31 10:30:22 fcambus Exp $ bin/coma +bin/coma-cmd +bin/coma-remote man/man1/coma.1 diff --git a/wm/coma/distinfo b/wm/coma/distinfo index 620bed1c234..7f05ab3fa78 100644 --- a/wm/coma/distinfo +++ b/wm/coma/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2019/08/28 07:11:23 fcambus Exp $ +$NetBSD: distinfo,v 1.4 2019/10/31 10:30:22 fcambus Exp $ -SHA1 (coma-1.0.tar.gz) = e830786675e4f8542337363f8835e195e8f58593 -RMD160 (coma-1.0.tar.gz) = 672f1202d92b0ba324f97d28c5c0185d59c1f106 -SHA512 (coma-1.0.tar.gz) = 3df8fd17d269b3888fd931b5126f8e63c9aac63451be14fa8a20be09e945056cd7a45b062a6810a9bba0146fbd4b81791e8c0d9bbad1c18f26d1d3b222251e52 -Size (coma-1.0.tar.gz) = 13487 bytes -SHA1 (patch-Makefile) = eb554076a3573a63a42169507da2920ea60ee20a +SHA1 (coma-1.1.tar.gz) = ac0f63d5d50fbb257e336a2cc91295c9c35d65c5 +RMD160 (coma-1.1.tar.gz) = 25d60d4af81314fa1b5a5eea0ac5d92a1df95c00 +SHA512 (coma-1.1.tar.gz) = eb0e75a95d3ba0987851860eba19f432236de1949ae0eecd5d8141153b29179c128faa212a0a79e09123ad8b5f8b1c53de01ad08746f2605e182784605c73bd5 +Size (coma-1.1.tar.gz) = 16467 bytes +SHA1 (patch-Makefile) = d8ac0caf8a5ec56b5bd734e7e1ae37c00aa49fc5 diff --git a/wm/coma/patches/patch-Makefile b/wm/coma/patches/patch-Makefile index f57ab9ad83a..c3eb6962fc3 100644 --- a/wm/coma/patches/patch-Makefile +++ b/wm/coma/patches/patch-Makefile @@ -1,8 +1,8 @@ -$NetBSD: patch-Makefile,v 1.3 2019/08/28 07:11:23 fcambus Exp $ +$NetBSD: patch-Makefile,v 1.4 2019/10/31 10:30:22 fcambus Exp $ Adapt install target for pkgsrc. ---- Makefile.orig 2019-01-17 20:01:53.000000000 +0000 +--- Makefile.orig 2019-08-21 12:39:43.000000000 +0000 +++ Makefile @@ -2,6 +2,7 @@ @@ -12,15 +12,17 @@ Adapt install target for pkgsrc. PREFIX?=/usr/local INSTALL_DIR=$(PREFIX)/bin MAN_DIR=$(PREFIX)/share/man -@@ -27,8 +28,10 @@ LDFLAGS+=`pkg-config --libs x11 xft` +@@ -27,9 +28,11 @@ LDFLAGS+=`pkg-config --libs x11 xft` all: $(COMA) install: $(COMA) - install -m 555 $(COMA) $(INSTALL_DIR)/$(COMA) +- install -m 555 scripts/coma-* $(INSTALL_DIR) - install -m 644 coma.1 $(MAN_DIR)/man1/coma.1 + mkdir -p $(DESTDIR)$(INSTALL_DIR) + mkdir -p $(DESTDIR)$(MAN_DIR)/man1 + install -m 555 $(COMA) $(DESTDIR)$(INSTALL_DIR)/$(COMA) ++ install -m 555 scripts/coma-* $(DESTDIR)$(INSTALL_DIR) + install -m 644 coma.1 $(DESTDIR)$(MAN_DIR)/man1/coma.1 $(COMA): $(OBJS) |