pkgsrc-Changes archive

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

CVS commit: pkgsrc/wm/coma



Module Name:    pkgsrc
Committed By:   fcambus
Date:           Thu Oct 31 10:30:22 UTC 2019

Modified Files:
        pkgsrc/wm/coma: Makefile PLIST distinfo
        pkgsrc/wm/coma/patches: patch-Makefile

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/wm/coma/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/wm/coma/PLIST
cvs rdiff -u -r1.3 -r1.4 pkgsrc/wm/coma/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/wm/coma/patches/patch-Makefile

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

Modified files:

Index: pkgsrc/wm/coma/Makefile
diff -u pkgsrc/wm/coma/Makefile:1.4 pkgsrc/wm/coma/Makefile:1.5
--- pkgsrc/wm/coma/Makefile:1.4 Mon Sep 23 14:57:12 2019
+++ pkgsrc/wm/coma/Makefile     Thu Oct 31 10:30:22 2019
@@ -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
 

Index: pkgsrc/wm/coma/PLIST
diff -u pkgsrc/wm/coma/PLIST:1.1 pkgsrc/wm/coma/PLIST:1.2
--- pkgsrc/wm/coma/PLIST:1.1    Fri Aug 16 14:07:27 2019
+++ pkgsrc/wm/coma/PLIST        Thu Oct 31 10:30:22 2019
@@ -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

Index: pkgsrc/wm/coma/distinfo
diff -u pkgsrc/wm/coma/distinfo:1.3 pkgsrc/wm/coma/distinfo:1.4
--- pkgsrc/wm/coma/distinfo:1.3 Wed Aug 28 07:11:23 2019
+++ pkgsrc/wm/coma/distinfo     Thu Oct 31 10:30:22 2019
@@ -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

Index: pkgsrc/wm/coma/patches/patch-Makefile
diff -u pkgsrc/wm/coma/patches/patch-Makefile:1.3 pkgsrc/wm/coma/patches/patch-Makefile:1.4
--- pkgsrc/wm/coma/patches/patch-Makefile:1.3   Wed Aug 28 07:11:23 2019
+++ pkgsrc/wm/coma/patches/patch-Makefile       Thu Oct 31 10:30:22 2019
@@ -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)



Home | Main Index | Thread Index | Old Index