Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (4943c94642f33ae0b9e4fceab02f9d8590c15f53)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (4943c94642f33ae0b9e4fceab02f9d8590c15f53)
  • Date: Wed, 23 Nov 2022 19:53:46 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 4 ++++
ruby-raa/asciidoctor/DEPENDS | 2 +-
ruby-raa/asciidoctor/DETAILS | 4 ++--
ruby-raa/asciidoctor/HISTORY | 4 ++++
shell-term-fm/tty-copy/BUILD | 1 +
shell-term-fm/tty-copy/DEPENDS | 1 +
shell-term-fm/tty-copy/DETAILS | 16 ++++++++++++++++
shell-term-fm/tty-copy/HISTORY | 2 ++
shell-term-fm/tty-copy/INSTALL | 1 +
9 files changed, 32 insertions(+), 3 deletions(-)

New commits:
commit 4943c94642f33ae0b9e4fceab02f9d8590c15f53
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

tty-copy: new spell, System clipboard terminal utility using ANSI OSC52

commit 716dc04e5be6a75a917a7e580c2880a141f0d46e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

asciidoctor 2.0.18

diff --git a/ChangeLog b/ChangeLog
index 4a104f9..666f848 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2022-11-23 Ismael Luceno <ismael AT sourcemage.org>
+ * shell-term-fm/tty-copy: new spell, System clipboard terminal
+ utility using ANSI OSC52
+
2022-11-20 Ismael Luceno <ismael AT sourcemage.org>
* archive/bkcrack: new spell, Crack legacy zip encryption

diff --git a/ruby-raa/asciidoctor/DEPENDS b/ruby-raa/asciidoctor/DEPENDS
index 17744a8..257635e 100755
--- a/ruby-raa/asciidoctor/DEPENDS
+++ b/ruby-raa/asciidoctor/DEPENDS
@@ -1 +1 @@
-depends ruby-2.6
+depends RUBY
diff --git a/ruby-raa/asciidoctor/DETAILS b/ruby-raa/asciidoctor/DETAILS
index 65f1960..b815c4a 100755
--- a/ruby-raa/asciidoctor/DETAILS
+++ b/ruby-raa/asciidoctor/DETAILS
@@ -1,8 +1,8 @@
SPELL=asciidoctor
- VERSION=2.0.16
+ VERSION=2.0.18
SOURCE="$SPELL-$VERSION.tar.gz"

SOURCE_URL[0]=https://github.com/${SPELL}/${SPELL}/archive/v${VERSION}.tar.gz
-
SOURCE_HASH=sha512:95003640632cc99f1edd2447156135267ad78f24983418817f19256fab6e313b8faab9f676317e7cc610728abb8b047f2d2f481f4700009a2d6bdd3b9efcc463
+
SOURCE_HASH=sha512:b47b377520046d95101fc9bcd3defdf7219714ebadc0d069cb108d39a349fcf1abd1e61178e1515f75bb69e9e3d0f8cb2de67de5a0f8aa75fdd139d693c0e437
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="https://asciidoctor.org/";
LICENSE[0]=MIT
diff --git a/ruby-raa/asciidoctor/HISTORY b/ruby-raa/asciidoctor/HISTORY
index a05682f..b65fd2e 100644
--- a/ruby-raa/asciidoctor/HISTORY
+++ b/ruby-raa/asciidoctor/HISTORY
@@ -1,3 +1,7 @@
+2022-11-23 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: switch dependency to RUBY
+ * DETAILS: updated spell to 2.0.18
+
2021-10-02 Florian Franzmann <bwlf AT bandrate.org>
* DEPENDS: depend on RUBY instead of ruby-2.6

diff --git a/shell-term-fm/tty-copy/BUILD b/shell-term-fm/tty-copy/BUILD
new file mode 100755
index 0000000..6dfecc1
--- /dev/null
+++ b/shell-term-fm/tty-copy/BUILD
@@ -0,0 +1 @@
+default_build_make
diff --git a/shell-term-fm/tty-copy/DEPENDS b/shell-term-fm/tty-copy/DEPENDS
new file mode 100755
index 0000000..9b633a4
--- /dev/null
+++ b/shell-term-fm/tty-copy/DEPENDS
@@ -0,0 +1 @@
+depends asciidoctor
diff --git a/shell-term-fm/tty-copy/DETAILS b/shell-term-fm/tty-copy/DETAILS
new file mode 100755
index 0000000..b4ceb72
--- /dev/null
+++ b/shell-term-fm/tty-copy/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=tty-copy
+ VERSION=0.2.2
+ SOURCE="$SPELL-$VERSION.tar.gz"
+
SOURCE_URL[0]=https://github.com/jirutka/$SPELL/archive/refs/tags/v$VERSION.tar.gz
+
SOURCE_HASH=sha512:8bc1a482fbb380a559cbef2d0b2b3754299449cc16209877624d4b9c6f8f93197b9d9111035fcb7ffdbc45d263c49dfaa4efb42e11e9de08129aa323dedb12a1
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="https://github.com/jirutka/tty-copy";
+ LICENSE[0]="MIT"
+ ENTERED=20221123
+ KEYWORDS=""
+ SHORT="System clipboard terminal utility using ANSI OSC52"
+cat << EOF
+A utility for copying content to the system clipboard from anywhere via a TTY
+and terminal using the ANSI OSC52 sequence. It works in any terminal session,
+whether local, remote (e.g. SSH), or even nested therein!
+EOF
diff --git a/shell-term-fm/tty-copy/HISTORY b/shell-term-fm/tty-copy/HISTORY
new file mode 100644
index 0000000..b850436
--- /dev/null
+++ b/shell-term-fm/tty-copy/HISTORY
@@ -0,0 +1,2 @@
+2022-11-23 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, INSTALL: spell created
diff --git a/shell-term-fm/tty-copy/INSTALL b/shell-term-fm/tty-copy/INSTALL
new file mode 100755
index 0000000..5dc5075
--- /dev/null
+++ b/shell-term-fm/tty-copy/INSTALL
@@ -0,0 +1 @@
+make install prefix="$INSTALL_ROOT"/usr



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (4943c94642f33ae0b9e4fceab02f9d8590c15f53), Ismael Luceno, 11/23/2022

Archive powered by MHonArc 2.6.24.

Top of Page