Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Alexander Tsamutali (e72641454d2cb7d4c7e15b34d7bbf3b8bc0a3663)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Alexander Tsamutali <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Alexander Tsamutali (e72641454d2cb7d4c7e15b34d7bbf3b8bc0a3663)
  • Date: Sun, 2 Dec 2007 06:29:09 -0600

GIT changes to master grimoire by Alexander Tsamutali <astsmtl AT gmail.com>:

ChangeLog | 4 ++++
haskell/haskell-parsec/DEPENDS | 1 +
haskell/haskell-parsec/DETAILS | 15 +++++++++++++++
haskell/haskell-parsec/HISTORY | 3 +++
haskell/haskell-parsec/POST_REMOVE | 1 +
haskell/haskell-parsec/POST_RESURRECT | 1 +
haskell/haskell-parsec/PRE_RESURRECT | 1 +
haskell/haskell-stm/DEPENDS | 1 +
haskell/haskell-stm/DETAILS | 13 +++++++++++++
haskell/haskell-stm/HISTORY | 3 +++
haskell/haskell-stm/POST_REMOVE | 1 +
haskell/haskell-stm/POST_RESURRECT | 1 +
haskell/haskell-stm/PRE_RESURRECT | 1 +
wm-addons/xmobar/DEPENDS | 4 +++-
wm-addons/xmobar/DETAILS | 4 ++--
wm-addons/xmobar/HISTORY | 4 ++++
16 files changed, 55 insertions(+), 3 deletions(-)

New commits:
commit e72641454d2cb7d4c7e15b34d7bbf3b8bc0a3663
Author: Alexander Tsamutali <astsmtl AT gmail.com>
Commit: Alexander Tsamutali <astsmtl AT gmail.com>

wm-addons/xmobar: updated to 0.8

commit 26d085a5cbdb38410a900f8f52ede07243b2f0f1
Author: Alexander Tsamutali <astsmtl AT gmail.com>
Commit: Alexander Tsamutali <astsmtl AT gmail.com>

haskell/haskell-stm: new spell, software transactional memory

commit 0aa173ad374e318bac6d6800fa015e73775e3f07
Author: Alexander Tsamutali <astsmtl AT gmail.com>
Commit: Alexander Tsamutali <astsmtl AT gmail.com>

haskell/haskell-parsec: new spell, monadic parser combinators

diff --git a/ChangeLog b/ChangeLog
index 87ef4c9..8e21473 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-12-02 Alexander Tsamutali <astsmtl AT gmail.com>
+ * haskell/haskell-parsec: new spell, monadic parser combinators
+ * haskell/haskell-stm: new spell, software transactional memory
+
2007-12-01 Robin Cook <rcook AT wyrms.net>
* perl-cpan: added spell perl-gtk2-spell
* perl-cpan: added spell time-piece
diff --git a/haskell/haskell-parsec/DEPENDS b/haskell/haskell-parsec/DEPENDS
new file mode 100755
index 0000000..3ee8620
--- /dev/null
+++ b/haskell/haskell-parsec/DEPENDS
@@ -0,0 +1 @@
+depends ghc
diff --git a/haskell/haskell-parsec/DETAILS b/haskell/haskell-parsec/DETAILS
new file mode 100755
index 0000000..dd121e6
--- /dev/null
+++ b/haskell/haskell-parsec/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=haskell-parsec
+ VERSION=2.1.0.0
+ SOURCE="parsec-${VERSION}.tar.gz"
+
SOURCE_URL[0]=http://hackage.haskell.org/packages/archive/parsec/${VERSION}/${SOURCE}
+
SOURCE_HASH=sha512:35ca8202934d4530b4e371d272f744dbe5f3de72f1cc97522795ff5a7c4f0045addad5da9aa95c951a8adac26f022fe455dfcde164d66170367b6333705b20dc
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/parsec-${VERSION}"
+ WEB_SITE="http://www.cs.uu.nl/~daan/parsec.html";
+ LICENSE[0]=BSD3
+ ENTERED=20071202
+ SHORT="Monadic parser combinators"
+cat << EOF
+Parsec is designed from scratch as an industrial-strength parser library.
+It is simple, safe, well documented (on the package homepage), has extensive
+libraries and good error messages, and is also fast.
+EOF
diff --git a/haskell/haskell-parsec/HISTORY b/haskell/haskell-parsec/HISTORY
new file mode 100644
index 0000000..992cafd
--- /dev/null
+++ b/haskell/haskell-parsec/HISTORY
@@ -0,0 +1,3 @@
+2007-12-02 Alexander Tsamutali <astsmtl AT gmail.com>
+ * DEPENDS, DETAILS, HISTORY, POST_REMOVE, PRE_RESURRECT,
POST_RESURRECT:
+ spell created
diff --git a/haskell/haskell-parsec/POST_REMOVE
b/haskell/haskell-parsec/POST_REMOVE
new file mode 100755
index 0000000..cebb9b7
--- /dev/null
+++ b/haskell/haskell-parsec/POST_REMOVE
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_POST_REMOVE
diff --git a/haskell/haskell-parsec/POST_RESURRECT
b/haskell/haskell-parsec/POST_RESURRECT
new file mode 100755
index 0000000..18c6ef5
--- /dev/null
+++ b/haskell/haskell-parsec/POST_RESURRECT
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_POST_RESURRECT
diff --git a/haskell/haskell-parsec/PRE_RESURRECT
b/haskell/haskell-parsec/PRE_RESURRECT
new file mode 100755
index 0000000..a88ddcb
--- /dev/null
+++ b/haskell/haskell-parsec/PRE_RESURRECT
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_PRE_RESURRECT
diff --git a/haskell/haskell-stm/DEPENDS b/haskell/haskell-stm/DEPENDS
new file mode 100755
index 0000000..3ee8620
--- /dev/null
+++ b/haskell/haskell-stm/DEPENDS
@@ -0,0 +1 @@
+depends ghc
diff --git a/haskell/haskell-stm/DETAILS b/haskell/haskell-stm/DETAILS
new file mode 100755
index 0000000..2b87a42
--- /dev/null
+++ b/haskell/haskell-stm/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=haskell-stm
+ VERSION=2.1.1.0
+ SOURCE="stm-${VERSION}.tar.gz"
+
SOURCE_URL[0]=http://hackage.haskell.org/packages/archive/stm/${VERSION}/${SOURCE}
+
SOURCE_HASH=sha512:c5716ae08db49e3e647e6b782095364895f63ef3930c05966dd48fa30dd798b366f544f54e9d8c7156bc3525a2b3f9abc34e91102094ba207e274466eb76708f
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/stm-${VERSION}"
+
WEB_SITE="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/stm";
+ LICENSE[0]=BSD3
+ ENTERED=20071202
+ SHORT="Software Transactional Memory"
+cat << EOF
+A modular composable concurrency abstraction.
+EOF
diff --git a/haskell/haskell-stm/HISTORY b/haskell/haskell-stm/HISTORY
new file mode 100644
index 0000000..a407714
--- /dev/null
+++ b/haskell/haskell-stm/HISTORY
@@ -0,0 +1,3 @@
+2007-12-02 Alexander Tsamutali <astsmtl AT gmail.com>
+ * DEPENDS, DETAILS, HISTORY, POST_REMOVE, PRE_RESSURECT,
POST_RESURRECT:
+ spell created
diff --git a/haskell/haskell-stm/POST_REMOVE b/haskell/haskell-stm/POST_REMOVE
new file mode 100755
index 0000000..cebb9b7
--- /dev/null
+++ b/haskell/haskell-stm/POST_REMOVE
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_POST_REMOVE
diff --git a/haskell/haskell-stm/POST_RESURRECT
b/haskell/haskell-stm/POST_RESURRECT
new file mode 100755
index 0000000..18c6ef5
--- /dev/null
+++ b/haskell/haskell-stm/POST_RESURRECT
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_POST_RESURRECT
diff --git a/haskell/haskell-stm/PRE_RESURRECT
b/haskell/haskell-stm/PRE_RESURRECT
new file mode 100755
index 0000000..a88ddcb
--- /dev/null
+++ b/haskell/haskell-stm/PRE_RESURRECT
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/HASKELL_PRE_RESURRECT
diff --git a/wm-addons/xmobar/DEPENDS b/wm-addons/xmobar/DEPENDS
index a7064f0..faf52a1 100755
--- a/wm-addons/xmobar/DEPENDS
+++ b/wm-addons/xmobar/DEPENDS
@@ -1,3 +1,5 @@
depends ghc &&
depends haskell-x11 &&
-depends haskell-mtl
+depends haskell-mtl &&
+depends haskell-parsec &&
+depends haskell-stm
diff --git a/wm-addons/xmobar/DETAILS b/wm-addons/xmobar/DETAILS
index dab3d15..8abfdd6 100755
--- a/wm-addons/xmobar/DETAILS
+++ b/wm-addons/xmobar/DETAILS
@@ -1,8 +1,8 @@
SPELL=xmobar
- VERSION=0.7
+ VERSION=0.8
SOURCE="${SPELL}-${VERSION}.tar.gz"

SOURCE_URL[0]=http://hackage.haskell.org/packages/archive/${SPELL}/${VERSION}/${SOURCE}
-
SOURCE_HASH=sha512:52cc6331047d108f88891d3329afef2504290fc1cad88c8dfc27b0bcd2e673b12bd5f25405a7de0f0a477ca75474517b98be4e5bce77f825efb9e20411e92278
+
SOURCE_HASH=sha512:df2d3bc81b90e2a8ab9ff0bd24997e8ff53c93232589dc5306fc0bbbc7390e11cdbcb70182552c14ed2d46fb77da2537b40650ce62391f598b89233dc94cf096
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://gorgias.mine.nu/xmobar/";
LICENSE[0]=BSD3
diff --git a/wm-addons/xmobar/HISTORY b/wm-addons/xmobar/HISTORY
index 84732d0..306c76f 100644
--- a/wm-addons/xmobar/HISTORY
+++ b/wm-addons/xmobar/HISTORY
@@ -1,2 +1,6 @@
+2007-12-02 Alexander Tsamutali <astsmtl AT gmail.com>
+ * DETAILS: updated spell to 0.8
+ * DEPENDS: depends on haskell-parsec and haskell-stm
+
2007-08-12 Alexander Tsamutali <astsmtl AT gmail.com>
* DETAILS, DEPENDS, BUILD, INSTALL, HISTORY: created spell



  • [SM-Commit] GIT changes to master grimoire by Alexander Tsamutali (e72641454d2cb7d4c7e15b34d7bbf3b8bc0a3663), Alexander Tsamutali, 12/02/2007

Archive powered by MHonArc 2.6.24.

Top of Page