Skip to Content.
Sympa Menu

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

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 (e7dec7ee453c1747e35f9853faea3726f5100131)
  • Date: Fri, 8 Jan 2021 19:39:01 +0000

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

ChangeLog | 4 ++++
libs/univalue/DEPENDS | 2 ++
libs/univalue/DETAILS | 24 ++++++++++++++++++++++++
libs/univalue/HISTORY | 2 ++
libs/univalue/PRE_BUILD | 3 +++
5 files changed, 35 insertions(+)

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

univalue: new spell, C++ universal value object and JSON library

diff --git a/ChangeLog b/ChangeLog
index 04b7183..421bc80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2021-01-08 Ismael Luceno <ismael AT sourcemage.org>
+ * libs/univalue: new spell, C++ universal value object and JSON
+ library
+
2021-01-07 Ismael Luceno <ismael AT sourcemage.org>
* devel/ocaml-ppx-tools-versioned: new spell, Tools for authors
of ppx rewriters
diff --git a/libs/univalue/DEPENDS b/libs/univalue/DEPENDS
new file mode 100755
index 0000000..9e4b57a
--- /dev/null
+++ b/libs/univalue/DEPENDS
@@ -0,0 +1,2 @@
+depends autoconf &&
+depends automake
diff --git a/libs/univalue/DETAILS b/libs/univalue/DETAILS
new file mode 100755
index 0000000..27d87cd
--- /dev/null
+++ b/libs/univalue/DETAILS
@@ -0,0 +1,24 @@
+ SPELL=univalue
+ VERSION=1.1.1
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ WEB_SITE="https://github.com/jgarzik/univalue";
+ SOURCE_URL[0]="$WEB_SITE/archive/v$VERSION.tar.gz"
+
SOURCE_HASH=sha512:4eecc27ab25e0921f4fc7671101bda1e3ff5d932de05b9d66ada5ef50be80fa27ee6d062fd9ddb686151bae33457834556b0e7e6c5ea2439ed4b35cc5728abf4
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ LICENSE[0]="MIT"
+ ENTERED=20210108
+ KEYWORDS=""
+ SHORT="C++ universal value object and JSON library"
+cat << EOF
+A universal value class, with JSON encoding and decoding.
+
+UniValue is an abstract data type that may be a null, boolean, string,
+number, array container, or a key/value dictionary container, nested to an
+arbitrary depth.
+
+This class is aligned with the JSON standard, RFC 7159.
+
+UniValue is a reaction to json_spirit, seeking to minimize template and
+memory use, providing a straightforward RAII class compatible with link-time
+optimization and embedded uses.
+EOF
diff --git a/libs/univalue/HISTORY b/libs/univalue/HISTORY
new file mode 100644
index 0000000..3b27a94
--- /dev/null
+++ b/libs/univalue/HISTORY
@@ -0,0 +1,2 @@
+2021-01-08 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS, PRE_BUILD: spell created
diff --git a/libs/univalue/PRE_BUILD b/libs/univalue/PRE_BUILD
new file mode 100755
index 0000000..1b8efcf
--- /dev/null
+++ b/libs/univalue/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+autoreconf -fis



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (e7dec7ee453c1747e35f9853faea3726f5100131), Ismael Luceno, 01/08/2021

Archive powered by MHonArc 2.6.24.

Top of Page