Skip to Content.
Sympa Menu

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

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 (89476a16af2a3090e725d327747f079f955aa7d6)
  • Date: Mon, 27 Sep 2021 15:17:21 +0000

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

ChangeLog | 1 +
MESON_FUNCTIONS | 2 +-
http/libnsbmp/BUILD | 1 -
http/libnsbmp/DEPENDS | 1 +
http/libnsbmp/DETAILS | 16 ++++++----------
http/libnsbmp/HISTORY | 6 ++++++
http/libnsbmp/INSTALL | 1 -
http/libnsbmp/PREPARE | 3 ---
http/libparserutils/DEPENDS | 1 +
http/libparserutils/HISTORY | 1 +
http/libwapcaplet/DEPENDS | 1 +
http/libwapcaplet/HISTORY | 1 +
libs/libnslog/DEPENDS | 1 +
libs/libnslog/DETAILS | 17 +++++++++++++++++
libs/libnslog/HISTORY | 2 ++
15 files changed, 39 insertions(+), 16 deletions(-)

New commits:
commit 89476a16af2a3090e725d327747f079f955aa7d6
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libnslog: new spell, NetSurf Logging Library

commit 2688d70b9b0a13f8e888df19308d8bc7c7f8d4ed
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libparserutils: add dep on netsurf-buildsystem

commit 19bc2ee58c79c12648045a5954e8d764c737191a
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libwapcaplet: add dep on netsurf-buildsystem

commit 1f2f76d34b15cbd6e538682e37ca954ddccb70d0
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libnsbmp 0.1.6

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

MESON_FUNCTIONS: Enforce MAKE_NJOBS

diff --git a/ChangeLog b/ChangeLog
index 4e316da..ebddd44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
* devel/netsurf-buildsystem: new spell, Netsurf buildsystem
* NETSURF_FUNCTIONS: introduce to simplify netsurf spells
* http/libdom: new spell, implementation of the W3C DOM
+ * libs/libnslog: new spell, NetSurf Logging Library

2021-09-26 Florian Franzmann <bwlf AT bandrate.org>
* shell-term-fm/toybox: new spell, basic CLI utilities in a single
diff --git a/MESON_FUNCTIONS b/MESON_FUNCTIONS
index 7a34690..94c6184 100755
--- a/MESON_FUNCTIONS
+++ b/MESON_FUNCTIONS
@@ -12,7 +12,7 @@ meson_build () {
done
SCRIPT+=" . builddir/"
$SCRIPT &&
- ninja -C builddir/
+ ninja -j "$MAKE_NJOBS" -C builddir/
}

meson_install () {
diff --git a/http/libnsbmp/BUILD b/http/libnsbmp/BUILD
deleted file mode 100755
index 5dce820..0000000
--- a/http/libnsbmp/BUILD
+++ /dev/null
@@ -1 +0,0 @@
-make PREFIX=${INSTALL_ROOT}/usr COMPONENT_TYPE=lib-shared
diff --git a/http/libnsbmp/DEPENDS b/http/libnsbmp/DEPENDS
new file mode 100755
index 0000000..ee73b2b
--- /dev/null
+++ b/http/libnsbmp/DEPENDS
@@ -0,0 +1 @@
+depends netsurf-buildsystem
diff --git a/http/libnsbmp/DETAILS b/http/libnsbmp/DETAILS
index 0370028..9b6163f 100755
--- a/http/libnsbmp/DETAILS
+++ b/http/libnsbmp/DETAILS
@@ -1,14 +1,10 @@
+. "$GRIMOIRE"/NETSURF_FUNCTIONS
SPELL=libnsbmp
-if [[ $LIBNSBMP_AUTO == y ]]; then
- VERSION=$(date +%Y%d%m)
-else
- VERSION=scm
-fi
- SOURCE="${SPELL}-scm.tar.bz2"
- SOURCE_URL[0]=svn://svn.netsurf-browser.org/trunk/${SPELL}:${SPELL}-scm
- FORCE_DOWNLOAD=on
- SOURCE_IGNORE=volatile
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-scm"
+ VERSION=0.1.6
+ SOURCE="${SPELL}-$VERSION-src.tar.gz"
+ SOURCE_URL[0]="http://download.netsurf-browser.org/libs/releases/$SOURCE";
+
SOURCE_HASH=sha512:7e987a47d56216b2e2a795c1233c63599d474fdd9dd495f31bc9a902f92072078ae79e73323da457fd5059908a65f44bacc6c8742f92f0950af80196a4bb4732
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-$VERSION"
WEB_SITE="http://www.netsurf-browser.org/projects/libnsbmp/";
LICENSE[0]=MIT
ENTERED=20090429
diff --git a/http/libnsbmp/HISTORY b/http/libnsbmp/HISTORY
index 805a532..8fdcff9 100644
--- a/http/libnsbmp/HISTORY
+++ b/http/libnsbmp/HISTORY
@@ -1,3 +1,9 @@
+2021-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.1.6
+ added NETSURF_FUNCTIONS
+ * DEPENDS: added netsurf-buildsystem
+ * BUILD, INSTALL, PREPARE: removed, no longer needed
+
2009-04-29 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* BUILD, DETAILS: spell created

diff --git a/http/libnsbmp/INSTALL b/http/libnsbmp/INSTALL
deleted file mode 100755
index f25ca1e..0000000
--- a/http/libnsbmp/INSTALL
+++ /dev/null
@@ -1 +0,0 @@
-make PREFIX=${INSTALL_ROOT}/usr COMPONENT_TYPE=lib-shared install
diff --git a/http/libnsbmp/PREPARE b/http/libnsbmp/PREPARE
deleted file mode 100755
index 065c971..0000000
--- a/http/libnsbmp/PREPARE
+++ /dev/null
@@ -1,3 +0,0 @@
-config_query LIBNSBMP_AUTO \
- "Automaticaly update the spell on sorcery queue/system-update?" \
- "n"
diff --git a/http/libparserutils/DEPENDS b/http/libparserutils/DEPENDS
new file mode 100755
index 0000000..ee73b2b
--- /dev/null
+++ b/http/libparserutils/DEPENDS
@@ -0,0 +1 @@
+depends netsurf-buildsystem
diff --git a/http/libparserutils/HISTORY b/http/libparserutils/HISTORY
index 3d11cb5..db54a53 100644
--- a/http/libparserutils/HISTORY
+++ b/http/libparserutils/HISTORY
@@ -2,6 +2,7 @@
* DETAILS: updated spell to 0.2.4
added NETSURF_FUNCTIONS
* BUILD, INSTALL, PRE_BUILD, PREPARE: removed, no longer needed
+ * DEPENDS: added netsurf-buildsystem

2009-04-29 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* BUILD, DETAILS: spell created
diff --git a/http/libwapcaplet/DEPENDS b/http/libwapcaplet/DEPENDS
new file mode 100755
index 0000000..ee73b2b
--- /dev/null
+++ b/http/libwapcaplet/DEPENDS
@@ -0,0 +1 @@
+depends netsurf-buildsystem
diff --git a/http/libwapcaplet/HISTORY b/http/libwapcaplet/HISTORY
index b46a1a5..e339641 100644
--- a/http/libwapcaplet/HISTORY
+++ b/http/libwapcaplet/HISTORY
@@ -3,6 +3,7 @@
added NETSURF_FUNCTIONS
fixed WEB_SITE
* BUILD, INSTALL, PREPARE: removed, no longer needed
+ * DEPENDS: added netsurf-buildsystem

2009-04-29 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* BUILD, DETAILS: spell created
diff --git a/libs/libnslog/DEPENDS b/libs/libnslog/DEPENDS
new file mode 100755
index 0000000..ee73b2b
--- /dev/null
+++ b/libs/libnslog/DEPENDS
@@ -0,0 +1 @@
+depends netsurf-buildsystem
diff --git a/libs/libnslog/DETAILS b/libs/libnslog/DETAILS
new file mode 100755
index 0000000..cebbdfb
--- /dev/null
+++ b/libs/libnslog/DETAILS
@@ -0,0 +1,17 @@
+. "$GRIMOIRE"/NETSURF_FUNCTIONS
+ SPELL=libnslog
+ VERSION=0.1.3
+ SOURCE="${SPELL}-${VERSION}-src.tar.gz"
+ SOURCE_URL[0]=https://download.netsurf-browser.org/libs/releases/${SOURCE}
+
SOURCE_HASH=sha512:c9da4f8ebd99213bdc72db8868c1f8afa3acc581de318583d2a0bbfe2481820abc637dadb6bbba804ee57647a01c7fa1761f19a0786d7575d6982dd0ea6d0f5b
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-$VERSION"
+ WEB_SITE="http://www.netsurf-browser.org/";
+ LICENSE[0]="MIT"
+ ENTERED=20210927
+ KEYWORDS=""
+ SHORT="NetSurf Logging Library"
+cat << EOF
+Libnslog provides a category-based logging library which supports complex
+logging filters, multiple log levels, and provides context through to client
+applications.
+EOF
diff --git a/libs/libnslog/HISTORY b/libs/libnslog/HISTORY
new file mode 100644
index 0000000..da0a9ca
--- /dev/null
+++ b/libs/libnslog/HISTORY
@@ -0,0 +1,2 @@
+2021-09-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (89476a16af2a3090e725d327747f079f955aa7d6), Ismael Luceno, 09/27/2021

Archive powered by MHonArc 2.6.24.

Top of Page