Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Conner Clere (66af078a4b89d87f11923daa84faf3ae3524914f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Conner Clere <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Conner Clere (66af078a4b89d87f11923daa84faf3ae3524914f)
  • Date: Sat, 18 Feb 2023 06:38:30 +0000

GIT changes to master grimoire by Conner Clere <xenanthropy AT sourcemage.org>:

ChangeLog | 1
lumina/lumina-textedit/DEPENDS | 4 +++
lumina/lumina-textedit/DETAILS | 40
+++++++++++++++++++++++++++++++++++++++
lumina/lumina-textedit/HISTORY | 3 ++
lumina/lumina-textedit/PRE_BUILD | 14 +++++++++++++
5 files changed, 62 insertions(+)

New commits:
commit 66af078a4b89d87f11923daa84faf3ae3524914f
Author: Conner Clere <xenanthropy AT sourcemage.org>
Commit: Conner Clere <xenanthropy AT sourcemage.org>

lumina-textedit: new spell, text editor for lumina desktop

diff --git a/ChangeLog b/ChangeLog
index 20538fd..d579e9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
* lumina/lumina-photo: new spell, photo viewer for lumina desktop
* lumina/lumina-screenshot: new spell, screenshot utility for lumina
desktop
* lumina/lumina-sudo: new spell, GUI sudo utility for lumina desktop
+ * lumina/lumina-textedit: new spell, text editor for lumina desktop

2023-02-13 Vlad Glagolev <stealth AT sourcemage.org>
* fonts-x11/scientifica: new spell, tall, condensed, bitmap font for
geeks
diff --git a/lumina/lumina-textedit/DEPENDS b/lumina/lumina-textedit/DEPENDS
new file mode 100755
index 0000000..fd08ccf
--- /dev/null
+++ b/lumina/lumina-textedit/DEPENDS
@@ -0,0 +1,4 @@
+source "$GRIMOIRE/QT5_DEPENDS" &&
+depends qtmultimedia &&
+depends qtsvg &&
+depends lumina-core
diff --git a/lumina/lumina-textedit/DETAILS b/lumina/lumina-textedit/DETAILS
new file mode 100755
index 0000000..4399363
--- /dev/null
+++ b/lumina/lumina-textedit/DETAILS
@@ -0,0 +1,40 @@
+ SPELL=lumina-textedit
+ SPELLX=lumina
+ VERSION=1.6.2
+ SOURCE=$SPELLX-$VERSION.tar.gz
+
SOURCE_HASH=sha256:02cca45e655727360990db8a9e3935be54cc4fbb01b339d1cd406d280ecdf3ae
+
SOURCE_URL=https://github.com/${SPELLX}-desktop/${SPELLX}/archive/refs/tags/v${VERSION}.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELLX-$VERSION
+ WEB_SITE=https://lumina-desktop.org/
+ ENTERED=20230217
+ LICENSE[0]=BSD
+ KEYWORDS="lumina text editor"
+ SHORT="plaintext editor for the lumina desktop"
+cat << EOF
+This is a plaintext editor with a number of advanced features:
+
+Key Features:
+
+ * Multiple file support (one file per tab)
+ * Find/Replace support
+ * Flexible Interface
+ * Tabs can be moved to any edge of the window
+ * Line numbering support
+ * Line-wrap support
+ * Change text font/size independently from the file itself
+ * Colors used for highlighting support can be easily customized
+ * Syntax Highlighting Support
+ * Simple JSON file manifest for support rules
+ * Automatic document settings
+ * Monospaced fonts on/off
+ * Character limit per line
+ * Highlight excess whitespace on the end of lines
+ * Enable line-wrap by default on/off
+
+Syntax files:
+
+ * Syntax files are installed in PREFIX/share/lumina-desktop/syntax_rules
+ with a ".syntax" suffix.
+ * Additional files can be provided/installed by the user within the
+ "~/.config/lumina-desktop/syntax_rules" directory.
+EOF
diff --git a/lumina/lumina-textedit/HISTORY b/lumina/lumina-textedit/HISTORY
new file mode 100644
index 0000000..cf02b5b
--- /dev/null
+++ b/lumina/lumina-textedit/HISTORY
@@ -0,0 +1,3 @@
+2023-01-15 Conner Clere <xenanthropy AT sourcemage.org>
+ * DETAILS, DEPENDS, PRE_BUILD: version 1.6.2, new spell
+
diff --git a/lumina/lumina-textedit/PRE_BUILD
b/lumina/lumina-textedit/PRE_BUILD
new file mode 100755
index 0000000..ebf7d9f
--- /dev/null
+++ b/lumina/lumina-textedit/PRE_BUILD
@@ -0,0 +1,14 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY/src-qt5" &&
+
+# editing SUBDIRS so it doesn't build all 3 lumina components
+# (they recommend packaging each component separately)
+sed -i '7,13d' src-qt5.pro &&
+sed -i '6i SUBDIRS+= desktop-utils' src-qt5.pro &&
+
+cd desktop-utils &&
+
+# editing desktop-utils SUBDIRS so it only builds the current component
+sed -i '7,14d' desktop-utils.pro &&
+sed -i '6i SUBDIRS+= lumina-textedit' desktop-utils.pro
+



  • [SM-Commit] GIT changes to master grimoire by Conner Clere (66af078a4b89d87f11923daa84faf3ae3524914f), Conner Clere, 02/18/2023

Archive powered by MHonArc 2.6.24.

Top of Page