Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (04f4f6f93b3e8cd8ae8e005640edb965526094cc)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (04f4f6f93b3e8cd8ae8e005640edb965526094cc)
  • Date: Sun, 17 Feb 2019 01:17:30 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

ChangeLog | 3 +++
wm-addons/wmutils/BUILD | 1 +
wm-addons/wmutils/DEPENDS | 6 ++++++
wm-addons/wmutils/DETAILS | 41 +++++++++++++++++++++++++++++++++++++++++
wm-addons/wmutils/HISTORY | 3 +++
wm-addons/wmutils/PREPARE | 2 ++
wm-addons/wmutils/PRE_BUILD | 7 +++++++
7 files changed, 63 insertions(+)

New commits:
commit 04f4f6f93b3e8cd8ae8e005640edb965526094cc
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

wm-addons/wmutils: new spell, a set of window manipulation tools

diff --git a/ChangeLog b/ChangeLog
index 5c6c17a..9c9aae0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2019-02-16 Pavel Vinogradov <public AT sourcemage.org>
+ * wm-addons/wmutils: new spell, a set of window manipulation tools
+
2019-02-03 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* python-pypi/s-tui: new spell, a terminal UI for monitoring your
computer
diff --git a/wm-addons/wmutils/BUILD b/wm-addons/wmutils/BUILD
new file mode 100755
index 0000000..6dfecc1
--- /dev/null
+++ b/wm-addons/wmutils/BUILD
@@ -0,0 +1 @@
+default_build_make
diff --git a/wm-addons/wmutils/DEPENDS b/wm-addons/wmutils/DEPENDS
new file mode 100755
index 0000000..6870108
--- /dev/null
+++ b/wm-addons/wmutils/DEPENDS
@@ -0,0 +1,6 @@
+if [[ "${WUTILS_BRANCH}" == "scm" ]]; then
+ depends git
+fi &&
+
+depends libxcb &&
+depends xcb-util
diff --git a/wm-addons/wmutils/DETAILS b/wm-addons/wmutils/DETAILS
new file mode 100755
index 0000000..a078418
--- /dev/null
+++ b/wm-addons/wmutils/DETAILS
@@ -0,0 +1,41 @@
+. "${GRIMOIRE}/FUNCTIONS"
+ SPELL="wmutils"
+if [[ "${WMUTILS_BRANCH}" == "scm" ]]; then
+ VERSION="$(get_scm_version)"
+ SOURCE="${SPELL}-scm.tar.xz"
+ SOURCE_URL[0]="git://github.com/${SPELL}/core:${SPELL}-scm"
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-scm"
+ SOURCE_IGNORE="volatile"
+ FORCE_DOWNLOAD="on"
+else
+ VERSION="1.4"
+
SOURCE_HASH="sha512:cdecde223e812494752d877e0e010c0cc7c1ef96e0f9aab7c517f2112f189943c84f958fb2ac4da7068ae2c5e463fe38ec783567ef980d8e63f5d299d746aee9"
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/core-${VERSION}"
+
SOURCE_URL[0]="https://github.com/${SPELL}/core/archive/v${VERSION}.tar.gz";
+fi
+ LICENSE[0]="ISC"
+ WEB_SITE="https://github.com/wmutils/core";
+ ENTERED="20190216"
+ SHORT="a set of window manipulation tools"
+cat << EOF
+wmutils' core is a set of tools for X windows manipulation. Each tool only
has
+one purpose, to make it as flexible and reliable as possible.
+
+Utilities:
+ * chwb - change window's border
+ * chwso - change window's stacking order
+ * ignw - ignore/unignore window
+ * killw - kill windows
+ * lsw - list windows
+ * mapw - map/unmap windows
+ * pfw - print focused window
+ * wattr - show window's attributes
+ * wmp - move the mouse pointer
+ * wmv - move a window
+ * wrs - resize a window
+ * wtf - focus a window
+ * wtp - teleport a window
+
+All these tools come with a manpage ! read them for further information.
+EOF
diff --git a/wm-addons/wmutils/HISTORY b/wm-addons/wmutils/HISTORY
new file mode 100644
index 0000000..60140d7
--- /dev/null
+++ b/wm-addons/wmutils/HISTORY
@@ -0,0 +1,3 @@
+2019-02-16 Pavel Vinogradov <public AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, PRE_BUILD, PREPARE: created spell
+
diff --git a/wm-addons/wmutils/PREPARE b/wm-addons/wmutils/PREPARE
new file mode 100755
index 0000000..e38d86f
--- /dev/null
+++ b/wm-addons/wmutils/PREPARE
@@ -0,0 +1,2 @@
+. "${GRIMOIRE}/FUNCTIONS" &&
+prepare_select_branch stable scm
diff --git a/wm-addons/wmutils/PRE_BUILD b/wm-addons/wmutils/PRE_BUILD
new file mode 100755
index 0000000..1629030
--- /dev/null
+++ b/wm-addons/wmutils/PRE_BUILD
@@ -0,0 +1,7 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+
+sed -e "/CFLAGS/s|$| ${CFLAGS}|" \
+ -e "/LDFLAGS/s|$| ${LDFLAGS}|" \
+ -e "/MANPREFIX/s|man|share/&|" \
+ -i config.mk



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (04f4f6f93b3e8cd8ae8e005640edb965526094cc), Pavel Vinogradov, 02/16/2019

Archive powered by MHonArc 2.6.24.

Top of Page