Skip to Content.
Sympa Menu

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

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 (b662429a2397a93f138b0c94bf13daea27b42c32)
  • Date: Thu, 9 Apr 2015 12:15:00 -0500

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

ChangeLog | 4 ++++
http/rawk/BUILD | 2 ++
http/rawk/DEPENDS | 1 +
http/rawk/DETAILS | 22 ++++++++++++++++++++++
http/rawk/HISTORY | 3 +++
http/rawk/PRE_BUILD | 6 ++++++
http/rawk/patches/config-typo.patch | 11 +++++++++++
7 files changed, 49 insertions(+)

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

rawk: new spell, rage against web frameworks - posix shell static site
generator

diff --git a/ChangeLog b/ChangeLog
index 7c5cf37..9773ab7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-09 Ismael Luceno <ismael AT sourcemage.org>
+ * http/rawk: new spell, rage against web frameworks - posix shell
+ static site generator
+
2015-04-08 Ismael Luceno <ismael AT sourcemage.org>
* python-pypi/httpie: new spell, a CLI, cURL-like tool for humans
* doc/smu: new spell, simple markup - markdown like syntax
diff --git a/http/rawk/BUILD b/http/rawk/BUILD
new file mode 100755
index 0000000..8089a6b
--- /dev/null
+++ b/http/rawk/BUILD
@@ -0,0 +1,2 @@
+PREFIX="$INSTALL_ROOT/usr" ./config.sh &&
+make
diff --git a/http/rawk/DEPENDS b/http/rawk/DEPENDS
new file mode 100755
index 0000000..3ecc342
--- /dev/null
+++ b/http/rawk/DEPENDS
@@ -0,0 +1 @@
+depends smu
diff --git a/http/rawk/DETAILS b/http/rawk/DETAILS
new file mode 100755
index 0000000..4ac7d1e
--- /dev/null
+++ b/http/rawk/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=rawk
+ VERSION=1.2.10
+ SOURCE="$SPELL-$VERSION.tar.gz"
+ SOURCE_URL[0]=https://github.com/kisom/$SPELL/archive/$VERSION.tar.gz
+
SOURCE_HASH=sha512:fb338ec002334dfb8cfa5920137cc446687e0ce25c0d6461784991ac908f085ab4410e1e1ec893b059e2908eb9dd40cc43785bd27dc59b4b34b49806f8a499e1
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="http://rawk.brokenlcd.net/";
+ LICENSE[0]="public-domain"
+ ENTERED=20150408
+ KEYWORDS=""
+ SHORT="rage against web frameworks - posix shell static site
generator"
+cat << EOF
+rawk is a markdown-based web framework using only unix commandline tools.
+
+design goals:
+ 1. simplicity: very customisable but works nearly straight out of the
+ box
+ 2. posix-compliant tools: uses only strict posix compliant syntax
+ for the unix command line tools it uses (i.e. sh and sed)
+ 3. no gui required
+ 4. lynx-friendly
+EOF
diff --git a/http/rawk/HISTORY b/http/rawk/HISTORY
new file mode 100644
index 0000000..7ad615a
--- /dev/null
+++ b/http/rawk/HISTORY
@@ -0,0 +1,3 @@
+2015-04-09 Ismael Luceno <ismael AT sourcemage.org>
+ * patches/config-typo.patch: Fixes a typo in config.sh
+ * BUILD, DEPENDS, DETAILS, PRE_BUILD: spell created
diff --git a/http/rawk/PRE_BUILD b/http/rawk/PRE_BUILD
new file mode 100755
index 0000000..f9d7f22
--- /dev/null
+++ b/http/rawk/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+if [ -d "$SPELL_DIRECTORY/patches" ]; then
+ find "$SPELL_DIRECTORY/patches" \( -name \*.patch -o -name \*.diff \) \
+ -exec patch -fp1 -i '{}' \;
+fi
diff --git a/http/rawk/patches/config-typo.patch
b/http/rawk/patches/config-typo.patch
new file mode 100644
index 0000000..ceb62a6
--- /dev/null
+++ b/http/rawk/patches/config-typo.patch
@@ -0,0 +1,11 @@
+--- rawk-1.2.10/config.sh.orig 2015-04-09 02:27:30.391987216 -0300
++++ rawk-1.2.10/config.sh 2015-04-09 02:27:52.970986272 -0300
+@@ -14,7 +14,7 @@
+ fi
+
+ if [ "${PREFIX}" = "/usr" ]; then
+- MANDIR="$(PREFIX)/share/man"
++ MANDIR="${PREFIX}/share/man"
+ elif [ "${PREFIX}" = "/usr/local" ]; then
+ if [ "${OPSYS}" = "Darwin" ]; then
+ MANDIR="${PREFIX}/share/man"



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b662429a2397a93f138b0c94bf13daea27b42c32), Ismael Luceno, 04/09/2015

Archive powered by MHonArc 2.6.24.

Top of Page