Skip to Content.
Sympa Menu

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

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 (ae67cd4a3a324c95ac9637723c795a26c7589ec4)
  • Date: Sun, 28 Jun 2015 05:46:46 +0000

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

ChangeLog | 9 +++++++++
haskell/haskell-blaze-builder/DETAILS | 4 ++--
haskell/haskell-blaze-builder/HISTORY | 3 +++
haskell/haskell-blaze-html/DEPENDS | 4 ++++
haskell/haskell-blaze-html/DETAILS | 16 ++++++++++++++++
haskell/haskell-blaze-html/HISTORY | 2 ++
haskell/haskell-blaze-markup/DEPENDS | 3 +++
haskell/haskell-blaze-markup/DETAILS | 16 ++++++++++++++++
haskell/haskell-blaze-markup/HISTORY | 2 ++
haskell/haskell-digest/DEPENDS | 2 ++
haskell/haskell-digest/DETAILS | 16 ++++++++++++++++
haskell/haskell-digest/HISTORY | 2 ++
haskell/haskell-http-date/DEPENDS | 2 ++
haskell/haskell-http-date/DETAILS | 14 ++++++++++++++
haskell/haskell-http-date/HISTORY | 2 ++
15 files changed, 95 insertions(+), 2 deletions(-)

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

haskell-http-date: new spell, HTTP Date parser/formatter

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

haskell-digest: new spell, cryptographic hashes for bytestrings

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

haskell-blaze-html: new spell, A blazingly fast HTML combinator library
for Haskell

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

haskell-blaze-markup: new spell, A blazingly fast markup combinator
library for Haskell

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

haskell-blaze-builder 0.4.0.1

diff --git a/ChangeLog b/ChangeLog
index 21f6852..8b4e2d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2015-06-27 Ismael Luceno <ismael AT sourcemage.org>
+ * haskell/haskell-blaze-markup: new spell, A blazingly fast markup
+ combinator library for Haskell
+ * haskell/haskell-blaze-html: new spell, A blazingly fast HTML
+ combinator library for Haskell
+ * haskell/haskell-digest: new spell, cryptographic hashes for
+ bytestrings
+ * haskell/haskell-http-date: new spell, HTTP Date parser/formatter
+
2015-06-21 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* devel/gnat_util: new spell, a library uniting a number of GNAT
sources that are used by different tools
diff --git a/haskell/haskell-blaze-builder/DETAILS
b/haskell/haskell-blaze-builder/DETAILS
index 9448fcd..8f4e316 100755
--- a/haskell/haskell-blaze-builder/DETAILS
+++ b/haskell/haskell-blaze-builder/DETAILS
@@ -1,8 +1,8 @@
SPELL=haskell-blaze-builder
- VERSION=0.3.3.2
+ VERSION=0.4.0.1
SOURCE="blaze-builder-${VERSION}.tar.gz"

SOURCE_URL[0]=http://hackage.haskell.org/packages/archive/blaze-builder/${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:6caecca5f1976938f0536e00cdf305a3c3d1abf1fa4a4bc9c89743857940fc46d0f3b274a49acd1e5c0d4453c2d2b2f6f0f3b1deed87a01f72a61e21bc83787f
+
SOURCE_HASH=sha512:876c12d75ede8876c834999a4a69794fbc1f56e888eea3a976cc85707456bb1439ac72bc41dea1c2400c6fe761d20a6b7b9eda61c10fc390fa5c5c0b22aa3ff0
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/blaze-builder-${VERSION}"
WEB_SITE="http://github.com/meiersi/blaze-builder";
LICENSE[0]=BSD3
diff --git a/haskell/haskell-blaze-builder/HISTORY
b/haskell/haskell-blaze-builder/HISTORY
index 0c40ce6..97758f3 100644
--- a/haskell/haskell-blaze-builder/HISTORY
+++ b/haskell/haskell-blaze-builder/HISTORY
@@ -1,3 +1,6 @@
+2015-06-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 0.4.0.1
+
2014-02-22 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: version 0.3.3.2

diff --git a/haskell/haskell-blaze-html/DEPENDS
b/haskell/haskell-blaze-html/DEPENDS
new file mode 100755
index 0000000..8dbb53e
--- /dev/null
+++ b/haskell/haskell-blaze-html/DEPENDS
@@ -0,0 +1,4 @@
+depends ghc &&
+depends haskell-blaze-builder &&
+depends haskell-blaze-markup &&
+depends haskell-text
diff --git a/haskell/haskell-blaze-html/DETAILS
b/haskell/haskell-blaze-html/DETAILS
new file mode 100755
index 0000000..80674fc
--- /dev/null
+++ b/haskell/haskell-blaze-html/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=haskell-blaze-html
+ VERSION=0.8.0.2
+ SOURCE="blaze-html-${VERSION}.tar.gz"
+
SOURCE_URL[0]=http://hackage.haskell.org/package/blaze-html-${VERSION}/${SOURCE}
+
SOURCE_HASH=sha512:a10b72dc3e27c64550c4efc0eb9844d79d49b154731e15139cf0aaae1e437c5d4f0b41b9797d1d1f52c6c25c982abf9904a93fd3c302505d520527d62a599376
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/blaze-html-${VERSION}"
+ WEB_SITE="http://jaspervdj.be/blaze";
+ LICENSE[0]="BSD3"
+ ENTERED=20150627
+ KEYWORDS=""
+ SHORT="A blazingly fast HTML combinator library for Haskell"
+cat << EOF
+A blazingly fast HTML combinator library for the Haskell programming
+language. The Text.Blaze module is a good starting point, as well as this
+tutorial: <http://jaspervdj.be/blaze/tutorial.html>.
+EOF
diff --git a/haskell/haskell-blaze-html/HISTORY
b/haskell/haskell-blaze-html/HISTORY
new file mode 100644
index 0000000..74f8b23
--- /dev/null
+++ b/haskell/haskell-blaze-html/HISTORY
@@ -0,0 +1,2 @@
+2015-06-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/haskell/haskell-blaze-markup/DEPENDS
b/haskell/haskell-blaze-markup/DEPENDS
new file mode 100755
index 0000000..2d7f3c9
--- /dev/null
+++ b/haskell/haskell-blaze-markup/DEPENDS
@@ -0,0 +1,3 @@
+depends ghc &&
+depends haskell-blaze-builder &&
+depends haskell-text
diff --git a/haskell/haskell-blaze-markup/DETAILS
b/haskell/haskell-blaze-markup/DETAILS
new file mode 100755
index 0000000..3b0eabe
--- /dev/null
+++ b/haskell/haskell-blaze-markup/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=haskell-blaze-markup
+ VERSION=0.7.0.2
+ SOURCE="blaze-markup-$VERSION.tar.gz"
+
SOURCE_URL[0]=http://hackage.haskell.org/package/blaze-markup-$VERSION/$SOURCE
+
SOURCE_HASH=sha512:dba4e67555029d7db019b484a9adbcc0bdb95887cacc7febfdae458fc5fae3b02914c1d4f99c208ef00e8665962aa68f36dbc74b13b6f1df7588f4d1b1ffa150
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/blaze-markup-$VERSION"
+ WEB_SITE="http://jaspervdj.be/blaze";
+ LICENSE[0]="BSD3"
+ ENTERED=20150627
+ KEYWORDS=""
+ SHORT="A blazingly fast markup combinator library for Haskell"
+cat << EOF
+Core modules of a blazingly fast markup combinator library for the Haskell
+programming language. The Text.Blaze module is a good starting point, as
+well as this tutorial: <http://jaspervdj.be/blaze/tutorial.html>.
+EOF
diff --git a/haskell/haskell-blaze-markup/HISTORY
b/haskell/haskell-blaze-markup/HISTORY
new file mode 100644
index 0000000..74f8b23
--- /dev/null
+++ b/haskell/haskell-blaze-markup/HISTORY
@@ -0,0 +1,2 @@
+2015-06-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/haskell/haskell-digest/DEPENDS b/haskell/haskell-digest/DEPENDS
new file mode 100755
index 0000000..951e992
--- /dev/null
+++ b/haskell/haskell-digest/DEPENDS
@@ -0,0 +1,2 @@
+depends ghc &&
+depends haskell-zlib
diff --git a/haskell/haskell-digest/DETAILS b/haskell/haskell-digest/DETAILS
new file mode 100755
index 0000000..d995195
--- /dev/null
+++ b/haskell/haskell-digest/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=haskell-digest
+ VERSION=0.0.1.2
+ SOURCE="digest-$VERSION.tar.gz"
+ SOURCE_URL[0]=http://hackage.haskell.org/package/digest-$VERSION/$SOURCE
+
SOURCE_HASH=sha512:f7961c098677c0e75561e3706446b073f60c6a8646aca6d139d6559952b2cba189221ac8af59f2dc6e4da65ee4a789f703e2ebbcf1e9c3df3f98167409bdf7c9
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/digest-$VERSION"
+ WEB_SITE=""
+ LICENSE[0]="BSD3"
+ ENTERED=20150626
+ KEYWORDS=""
+ SHORT="cryptographic hashes for bytestrings"
+cat << EOF
+This package provides efficient cryptographic hash implementations for
+strict and lazy bytestrings. For now, CRC32 and Adler32 are supported;
+they are implemented as FFI bindings to efficient code from zlib.
+EOF
diff --git a/haskell/haskell-digest/HISTORY b/haskell/haskell-digest/HISTORY
new file mode 100644
index 0000000..bed0eed
--- /dev/null
+++ b/haskell/haskell-digest/HISTORY
@@ -0,0 +1,2 @@
+2015-06-26 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created
diff --git a/haskell/haskell-http-date/DEPENDS
b/haskell/haskell-http-date/DEPENDS
new file mode 100755
index 0000000..445322a
--- /dev/null
+++ b/haskell/haskell-http-date/DEPENDS
@@ -0,0 +1,2 @@
+depends ghc &&
+depends haskell-attoparsec
diff --git a/haskell/haskell-http-date/DETAILS
b/haskell/haskell-http-date/DETAILS
new file mode 100755
index 0000000..0d60ab9
--- /dev/null
+++ b/haskell/haskell-http-date/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=haskell-http-date
+ VERSION=0.0.6.1
+ SOURCE="http-date-$VERSION.tar.gz"
+
SOURCE_URL[0]=http://hackage.haskell.org/package/http-date-$VERSION/$SOURCE
+
SOURCE_HASH=sha512:456d59bc9405578526ea458772ba8b01d1fe85607bc0e201efd6f0f080525205cbf8eba19dfd5f64ff520510a9a7ae3b7008fe43fee0e312b792476b965ba739
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/http-date-$VERSION"
+ WEB_SITE=""
+ LICENSE[0]="BSD3"
+ ENTERED=20150627
+ KEYWORDS=""
+ SHORT="HTTP Date parser/formatter"
+cat << EOF
+Fast parser and formatter for HTTP Date
+EOF
diff --git a/haskell/haskell-http-date/HISTORY
b/haskell/haskell-http-date/HISTORY
new file mode 100644
index 0000000..74f8b23
--- /dev/null
+++ b/haskell/haskell-http-date/HISTORY
@@ -0,0 +1,2 @@
+2015-06-27 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS, DETAILS: spell created



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (ae67cd4a3a324c95ac9637723c795a26c7589ec4), Ismael Luceno, 06/28/2015

Archive powered by MHonArc 2.6.24.

Top of Page