Skip to Content.
Sympa Menu

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

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 (d82292b4a29b7290b34244dc1590a85cdee47e1b)
  • Date: Fri, 22 Jul 2022 05:39:23 +0000

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

ChangeLog | 5 +++++
utils/passh/BUILD | 1 +
utils/passh/DETAILS | 15 +++++++++++++++
utils/passh/HISTORY | 2 ++
utils/passh/INSTALL | 1 +
utils/sexpect/BUILD | 1 +
utils/sexpect/DEPENDS | 1 +
utils/sexpect/DETAILS | 20 ++++++++++++++++++++
utils/sexpect/HISTORY | 2 ++
9 files changed, 48 insertions(+)

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

passh: new spell, interactive keyboard password authentication for SSH

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

sexpect: new spell, Expect for shells

diff --git a/ChangeLog b/ChangeLog
index 798f4fa..4a7b322 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-07-21 Vlad Glagolev <stealth AT sourcemage.org>
+ * utils/sexpect: new spell, Expect for shells
+ * utils/passh: new spell, interactive keyboard password authentication
+ for SSH
+
2022-07-19 Ismael Luceno <ismael AT sourcemage.org>
* xorg-driver/xf86-input-keyboard: spell deprecated [dropped support
for
Linux in version 2.0.0]
diff --git a/utils/passh/BUILD b/utils/passh/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/utils/passh/BUILD
@@ -0,0 +1 @@
+make
diff --git a/utils/passh/DETAILS b/utils/passh/DETAILS
new file mode 100755
index 0000000..6844be0
--- /dev/null
+++ b/utils/passh/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=passh
+ VERSION=1.0.1
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/clarkwang/${SPELL}/archive/v${VERSION}.tar.gz
+
SOURCE_HASH=sha512:30123c50e3bd4fbfb7049dfce0f182b2e50e0f3c2fe2071878d4e97f73b80588df2497940a55975ff8ee4a9f17a4552af3b07d3b84a892d53a6261ae5cb81812
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ DOC_DIRS=""
+ WEB_SITE=https://github.com/clarkwang/passh
+ LICENSE[0]=GPL
+ ENTERED=20220721
+ SHORT="interactive keyboard password authentication for SSH"
+cat << EOF
+passh is a better implementation of interactive keyboard password
+authentication for SSH.
+EOF
diff --git a/utils/passh/HISTORY b/utils/passh/HISTORY
new file mode 100644
index 0000000..5c4bc9a
--- /dev/null
+++ b/utils/passh/HISTORY
@@ -0,0 +1,2 @@
+2022-07-21 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, BUILD, INSTALL: created spell, version 1.0.1
diff --git a/utils/passh/INSTALL b/utils/passh/INSTALL
new file mode 100755
index 0000000..7894feb
--- /dev/null
+++ b/utils/passh/INSTALL
@@ -0,0 +1 @@
+install -vm 755 passh "${INSTALL_ROOT}/usr/bin/passh"
diff --git a/utils/sexpect/BUILD b/utils/sexpect/BUILD
new file mode 100755
index 0000000..e013b8d
--- /dev/null
+++ b/utils/sexpect/BUILD
@@ -0,0 +1 @@
+cmake_build
diff --git a/utils/sexpect/DEPENDS b/utils/sexpect/DEPENDS
new file mode 100755
index 0000000..60dd614
--- /dev/null
+++ b/utils/sexpect/DEPENDS
@@ -0,0 +1 @@
+depends cmake
diff --git a/utils/sexpect/DETAILS b/utils/sexpect/DETAILS
new file mode 100755
index 0000000..134d706
--- /dev/null
+++ b/utils/sexpect/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=sexpect
+ VERSION=2.3.11
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/clarkwang/${SPELL}/archive/v${VERSION}.tar.gz
+
SOURCE_HASH=sha512:321bd879139c90262e299ee59e9577cdabe93286999e19e182d8b994e5c1ebf0c4df40c0c19b6175a7d2c9a9d63a7cf79ba52a3dfee1699aaa657b0388683ae7
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ DOC_DIRS=""
+ WEB_SITE=https://github.com/clarkwang/sexpect
+ LICENSE[0]=GPL
+ ENTERED=20220721
+ SHORT="Expect for shells"
+cat << EOF
+sexpect is another implementation of Expect which is specifically designed
for
+Shell scripts (sh, bash, ksh, zsh, ...).
+
+sexpect is designed in the client/server model. sexpect spawn PROGRAM
+[option].. starts the server (running as a daemon) and runs the specified
+PROGRAM in background. Other sexpect sub-commands (send, expect, wait, ...)
+communicate to the server as client commands.
+EOF
diff --git a/utils/sexpect/HISTORY b/utils/sexpect/HISTORY
new file mode 100644
index 0000000..3f4b4e2
--- /dev/null
+++ b/utils/sexpect/HISTORY
@@ -0,0 +1,2 @@
+2022-07-21 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, BUILD: created spell, version 2.3.11



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (d82292b4a29b7290b34244dc1590a85cdee47e1b), Vlad Glagolev, 07/22/2022

Archive powered by MHonArc 2.6.24.

Top of Page