Skip to Content.
Sympa Menu

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

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 binary grimoire by Vlad Glagolev (7cfedc308b6432009d298fe0117be3dba599a8c8)
  • Date: Wed, 6 Mar 2024 06:57:43 +0000

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

ChangeLog | 4 ++++
bin-editors/micro-bin/BUILD | 1 +
bin-editors/micro-bin/DETAILS | 29 +++++++++++++++++++++++++++++
bin-editors/micro-bin/HISTORY | 2 ++
bin-editors/micro-bin/INSTALL | 10 ++++++++++
5 files changed, 46 insertions(+)

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

micro-bin: new spell, modern and intuitive terminal-based text editor

diff --git a/ChangeLog b/ChangeLog
index f7e9ab0..f588083 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * bin-editors/micro-bin: new spell, modern and intuitive
terminal-based
+ text editor
+
2024-01-07 Conner Clere <xenanthropy AT sourcemage.org>
* bin-http/floorp-bin: new spell, advanced and fast firefox derivative

diff --git a/bin-editors/micro-bin/BUILD b/bin-editors/micro-bin/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/bin-editors/micro-bin/BUILD
@@ -0,0 +1 @@
+true
diff --git a/bin-editors/micro-bin/DETAILS b/bin-editors/micro-bin/DETAILS
new file mode 100755
index 0000000..bd6d8a7
--- /dev/null
+++ b/bin-editors/micro-bin/DETAILS
@@ -0,0 +1,29 @@
+ SPELL=micro-bin
+ SPELLX=${SPELL/-bin/}
+ VERSION=2.0.13
+if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" || "${SMGL_COMPAT_ARCHS[1]}" ==
"em64t" ]]; then
+ ARCH=64
+
SOURCE_HASH=sha512:058cb67aebbc8bf0dccb7d1437dec1751bf59a3ec93d1cdccfc6bcd99049f90c5e0c25ecb6b515593d7e365775d3e4e47c05170d33be993273753f5130ab7fed
+else
+ ARCH=32
+
SOURCE_HASH=sha512:fbdb72fc28c0cb45f78d8bf1b4b1f6216f8b861aa87912fdde1c0973791576da9a1faaef5b0d7fbbce19c6c8ce5d41161f190ef37ad5cc42e5ca8e2df31bbd5c
+fi
+ SOURCE=${SPELLX}-${VERSION}-linux${ARCH}.tar.gz
+
SOURCE_URL[0]=https://github.com/zyedidia/${SPELLX}/releases/download/v${VERSION}/${SOURCE}
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
+ WEB_SITE=https://micro-editor.github.io/
+ LICENSE[0]=MIT
+ ENTERED=20240305
+ KEYWORDS=""
+ SHORT="modern and intuitive terminal-based text editor"
+cat << EOF
+Micro is a terminal-based text editor that aims to be easy to use and
intuitive,
+while also taking advantage of the full capabilities of modern terminals.
+
+It comes as one single, batteries-included, static binary with no
dependencies,
+and you can download and use it right now.
+
+As the name indicates, micro aims to be somewhat of a successor to the nano
+editor by being easy to install and use in a pinch, but micro also aims to be
+enjoyable to use full time.
+EOF
diff --git a/bin-editors/micro-bin/HISTORY b/bin-editors/micro-bin/HISTORY
new file mode 100644
index 0000000..e5201b8
--- /dev/null
+++ b/bin-editors/micro-bin/HISTORY
@@ -0,0 +1,2 @@
+2024-03-05 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, BUILD, INSTALL: created spell, version 2.0.13
diff --git a/bin-editors/micro-bin/INSTALL b/bin-editors/micro-bin/INSTALL
new file mode 100755
index 0000000..9e09b4c
--- /dev/null
+++ b/bin-editors/micro-bin/INSTALL
@@ -0,0 +1,10 @@
+install -vm 755 micro "${INSTALL_ROOT}/usr/bin/micro" &&
+
+install -vm 755 -d "${INSTALL_ROOT}/usr/share/man/man1" &&
+install -vm 644 micro.1 "${INSTALL_ROOT}/usr/share/man/man1/micro.1" &&
+
+install -vm 755 -d "${INSTALL_ROOT}/usr/share/applications" &&
+install -vm 644 micro.desktop "${INSTALL_ROOT}/usr/share/applications" &&
+
+install -vm 755 -d "${INSTALL_ROOT}/usr/share/icons/hicolor/scalable/apps" &&
+install -vm 644 micro.svg
"${INSTALL_ROOT}/usr/share/icons/hicolor/scalable/apps"


  • [[SM-Commit] ] GIT changes to master binary grimoire by Vlad Glagolev (7cfedc308b6432009d298fe0117be3dba599a8c8), Vlad Glagolev, 03/06/2024

Archive powered by MHonArc 2.6.24.

Top of Page