Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (246cbbfefbe3250fe683e8af0791a6bc22eb1bc6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (246cbbfefbe3250fe683e8af0791a6bc22eb1bc6)
  • Date: Mon, 26 Feb 2018 12:56:47 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
windowmanagers/bspwm/DEPENDS | 3 ++-
windowmanagers/bspwm/DETAILS | 27 ++++++++++-----------------
windowmanagers/bspwm/HISTORY | 4 ++++
windowmanagers/bspwm/INSTALL | 2 +-
wm-addons/sxhkd/BUILD | 1 +
wm-addons/sxhkd/DEPENDS | 2 ++
wm-addons/sxhkd/DETAILS | 19 +++++++++++++++++++
wm-addons/sxhkd/HISTORY | 2 ++
wm-addons/sxhkd/INSTALL | 1 +
10 files changed, 45 insertions(+), 19 deletions(-)

New commits:
commit 246cbbfefbe3250fe683e8af0791a6bc22eb1bc6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

bspwm: => 0.9.3

commit 60a034c8d15cf09876a924e9a162d5cc3abba4b3
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

sxhkd: new spell, simple X hotkey daemon

diff --git a/ChangeLog b/ChangeLog
index 8a0199f..ca178c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2018-02-26 Vlad Glagolev <stealth AT sourcemage.org>
+ * wm-addons/sxhkd: new spell, simple X hotkey daemon
+
2018-02-25 Vlad Glagolev <stealth AT sourcemage.org>
* chat-irc/irssi-otr: new spell, off the record plugin for Irssi

diff --git a/windowmanagers/bspwm/DEPENDS b/windowmanagers/bspwm/DEPENDS
index d4e9923..dd26745 100755
--- a/windowmanagers/bspwm/DEPENDS
+++ b/windowmanagers/bspwm/DEPENDS
@@ -2,4 +2,5 @@ depends libxcb &&
depends xcb-util &&
depends xcb-util-keysyms &&
depends xcb-util-wm &&
-depends xcb-util-renderutil
+
+suggest_depends sxhkd "" "" "to translate keyboard and pointer events"
diff --git a/windowmanagers/bspwm/DETAILS b/windowmanagers/bspwm/DETAILS
index ad0ffc3..d41d396 100755
--- a/windowmanagers/bspwm/DETAILS
+++ b/windowmanagers/bspwm/DETAILS
@@ -1,24 +1,17 @@
SPELL=bspwm
- VERSION=0.9.1
- SOURCE="$SPELL-$VERSION.tar.gz"
-
SOURCE_URL[0]=https://github.com/baskerville/$SPELL/archive/$VERSION.tar.gz
-
SOURCE_HASH=sha512:0940e4e024326a903189e6f46fb713eec202f718a02cece56476e6cda147aec6f8c6d6d646879b297b56a385c3b1714069ad204cf5ec0a5d7a0faf40cc45f74b
-SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
- WEB_SITE="https://github.com/baskerville/bspwm";
- LICENSE[0]="BSD-2"
+ VERSION=0.9.3
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/baskerville/${SPELL}/archive/${VERSION}.tar.gz
+
SOURCE_HASH=sha512:015ed79af4b31c5fbd10bdf3d6945e3e2575ef3d1ab48dc7ddeb52e99cd6e121991a320515ad05b42b001b524c7ebe38b5d2b2aae0078c6601a36653718ab508
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=https://github.com/baskerville/bspwm
+ LICENSE[0]=BSD
ENTERED=20161017
- KEYWORDS=""
- SHORT="Tiling window manager based on binary space partitioning"
+ SHORT="tiling window manager based on binary space partitioning"
cat << EOF
-bspwm is a tiling window manager that represents windows as the leaves of
-a full binary tree.
+bspwm is a tiling window manager that represents windows as the leaves of a
+full binary tree.

It only responds to X events, and the messages it receives on a dedicated
socket.
-
-bspc is a program that writes messages on bspwm's socket.
-
-bspwm doesn't handle any keyboard or pointer inputs: a third party program
-(e.g. sxhkd) is needed in order to translate keyboard and pointer events
-to bspc invocations.
EOF
diff --git a/windowmanagers/bspwm/HISTORY b/windowmanagers/bspwm/HISTORY
index 7f00fb5..2f5d36a 100644
--- a/windowmanagers/bspwm/HISTORY
+++ b/windowmanagers/bspwm/HISTORY
@@ -1,2 +1,6 @@
+2018-02-26 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.9.3
+ * DEPENDS: removed xcb-util-renderutil, added sxhkd
+
2016-10-17 Ismael Luceno <ismael AT sourcemage.org>
* BUILD, DEPENDS, DETAILS, INSTALL: spell created
diff --git a/windowmanagers/bspwm/INSTALL b/windowmanagers/bspwm/INSTALL
index c965c91..e72b41d 100755
--- a/windowmanagers/bspwm/INSTALL
+++ b/windowmanagers/bspwm/INSTALL
@@ -1 +1 @@
-make install PREFIX="$INSTALL_ROOT"/usr
+make PREFIX="${INSTALL_ROOT}/usr" install
diff --git a/wm-addons/sxhkd/BUILD b/wm-addons/sxhkd/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/wm-addons/sxhkd/BUILD
@@ -0,0 +1 @@
+make
diff --git a/wm-addons/sxhkd/DEPENDS b/wm-addons/sxhkd/DEPENDS
new file mode 100755
index 0000000..456910a
--- /dev/null
+++ b/wm-addons/sxhkd/DEPENDS
@@ -0,0 +1,2 @@
+depends libxcb &&
+depends xcb-util-keysyms
diff --git a/wm-addons/sxhkd/DETAILS b/wm-addons/sxhkd/DETAILS
new file mode 100755
index 0000000..82fc46d
--- /dev/null
+++ b/wm-addons/sxhkd/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=sxhkd
+ VERSION=0.5.8
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/baskerville/${SPELL}/archive/${VERSION}.tar.gz
+
SOURCE_HASH=sha512:59b38a77e7fd4b23cb109a1365514f39d23ae5bd1b467355ad894d3a861627fd0fc5c5fb556176161c6580c719a4032cf516f60eb3023dc30bf09ae362e4e094
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=https://github.com/baskerville/sxhkd
+ LICENSE[0]=BSD
+ ENTERED=20180226
+ SHORT="simple X hotkey daemon"
+cat << EOF
+sxhkd is an X daemon that reacts to input events by executing commands.
+
+Its configuration file is a series of bindings that define the associations
+between the input events and the commands.
+
+The format of the configuration file supports a simple notation for mapping
+multiple shortcuts to multiple commands in parallel.
+EOF
diff --git a/wm-addons/sxhkd/HISTORY b/wm-addons/sxhkd/HISTORY
new file mode 100644
index 0000000..43e8695
--- /dev/null
+++ b/wm-addons/sxhkd/HISTORY
@@ -0,0 +1,2 @@
+2018-02-26 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS, DETAILS, BUILD, INSTALL: created spell, version 0.5.8
diff --git a/wm-addons/sxhkd/INSTALL b/wm-addons/sxhkd/INSTALL
new file mode 100755
index 0000000..e72b41d
--- /dev/null
+++ b/wm-addons/sxhkd/INSTALL
@@ -0,0 +1 @@
+make PREFIX="${INSTALL_ROOT}/usr" install



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (246cbbfefbe3250fe683e8af0791a6bc22eb1bc6), Vlad Glagolev, 02/26/2018

Archive powered by MHonArc 2.6.24.

Top of Page