From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFs4Q-0006HN-Qv for guix-patches@gnu.org; Tue, 30 May 2017 21:05:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFs4M-0003qq-NQ for guix-patches@gnu.org; Tue, 30 May 2017 21:05:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43293) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dFs4M-0003qm-Ja for guix-patches@gnu.org; Tue, 30 May 2017 21:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dFs4M-0008BL-5w for guix-patches@gnu.org; Tue, 30 May 2017 21:05:02 -0400 Subject: bug#27156: smu Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFs3m-0006GH-KZ for guix-patches@gnu.org; Tue, 30 May 2017 21:04:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFs3i-0003kc-HX for guix-patches@gnu.org; Tue, 30 May 2017 21:04:26 -0400 Received: from aibo.runbox.com ([91.220.196.211]:56566) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dFs3i-0003is-8w for guix-patches@gnu.org; Tue, 30 May 2017 21:04:22 -0400 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1dFs3e-0007i4-QK for guix-patches@gnu.org; Wed, 31 May 2017 03:04:18 +0200 Received: from h-4-230-97.a328.priv.bahnhof.se ([155.4.230.97] helo=localhost) by mailfront10.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1dFs3M-0003qW-Gq for guix-patches@gnu.org; Wed, 31 May 2017 03:04:00 +0200 Date: Wed, 31 May 2017 01:03:38 +0000 From: ng0 Message-ID: <20170531010338.rqqybm6a2iuhzb3k@abyayala> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="6biwhbfdz7rpb6bu" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27156@debbugs.gnu.org --6biwhbfdz7rpb6bu Content-Type: multipart/mixed; boundary="qgumua64wctjzxyd" Content-Disposition: inline --qgumua64wctjzxyd Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable This adds smu (simple markup). I've been using this in production for a while. Does it belong in markdown.scm? Technicaly it is not markdown, but it's the closest I could find when I moved it from my package repo to the guix repo. --=20 ng0 OpenPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588 --qgumua64wctjzxyd Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-smu.patch" Content-Transfer-Encoding: quoted-printable =46rom fe4b59d8525250e6e59334225bd5fa0432d1e7e3 Mon Sep 17 00:00:00 2001 =46rom: ng0 Date: Tue, 30 May 2017 13:56:26 +0000 Subject: [PATCH] gnu: Add smu. * gnu/packages/markdown.scm (smu): New variable. --- gnu/packages/markdown.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/markdown.scm b/gnu/packages/markdown.scm index 4a020198e..3cfd211b5 100644 --- a/gnu/packages/markdown.scm +++ b/gnu/packages/markdown.scm @@ -2,6 +2,7 @@ ;;; Copyright =C2=A9 2015 Mathieu Lirzin ;;; Copyright =C2=A9 2015 David Thompson ;;; Copyright =C2=A9 2016 Efraim Flashner +;;; Copyright =C2=A9 2017 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -130,3 +131,39 @@ for parsing and rendering CommonMark.") ;; licensed. The CommonMark specification is Creative Commons CC-BY-SA= 4.0 ;; licensed. See 'COPYING' in the source distribution for more informa= tion. (license (list bsd-2 expat cc-by-sa4.0)))) + +(define-public smu + (package + (name "smu") + (version "1.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/Gottox/smu/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0iazl45rkz8ngsb5hpykl76w0ngvdvqqhym1qz5wykgmrzk293rp")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" + (assoc-ref %outputs "out"))) + #:tests? #f ;No tests included + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (home-page "https://github.com/Gottox/smu") + (synopsis "Simple markup") + (description + "Smu is a very simple and minimal markup language. It is +designed for using in wiki-like environments. Smu makes it very +easy to write your documents on the fly and convert them into HTML. +Smu is capable to parse very large documents. As long as you avoid an huge +amount of indents it scales just great. + +Smu was started as a rewrite of Markdown but became something more +lightweight and consistent. The biggest difference between Markdown +and smu is that smu doesn't support reference style links.") + (license x11))) --=20 2.13.0 --qgumua64wctjzxyd-- --6biwhbfdz7rpb6bu Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEqIyK3RKYKNfqwC5S4i+bv+40hYgFAlkuFmoACgkQ4i+bv+40 hYjeRQ//VKdMa4UxTH6NfbdZxcu8me09UEdTPgCewtgv0N0HN5oOe1OR00uRlL/q 6WjOKN12sd1Tk18cq4Rj0hlPghleNC74Gk7JCF6pHOtwXqwX3B0GPkXlWJ+uJBIw OyTuXT6fEiJ+BffxKb9zOqDBQOofjV+wswK93rtSpyki4WbEYVsOMeSBb60B0cDO j95lYbb8zteEOBV/Ij7LgtFjAijIKUg6xuTUPTsOL1tc7zgTWGuQpjzdDc2OqZi3 Z8GCJSYjh2u3mEWN/xKcH+BYVYJkDFtcKbzMnXSxWF3u2hrP1onyfTtpldaC2uc3 YWmrAv+uTDAWAhx2XhkKjBBBfvtKKNFF1kkkJ5mLAW2WMqZKtcuTOs2OTkBGG8jm Ffd/QPCm+vwPeTCvhx+608+ctuaEKc200B4M6o6hft3ONu/xSg2hJY386MwuOwHT BF5vZJd2cH6Y+UIiplpYSxcKqQlSDfDHhMZ0Jt3IQsSaKL32BMOgl2ZxasHj7cxC AV09UG7vejbozhWyC6VvyYQ5np5IEhO2rrgUjHs9+Nk8ajfa4+B0l0xkORBMwV7S tjezrTsc/uM3+dSLs7Q/AhuO9kvcGsi8yikHdAnFKONxhmZ7ML0zTyFSt5jLBCKb 2QCm0XR9k6ARYLvw6f831CGas0ppOPeMGdk/yNCmOALZFMVWUeQ= =EkaY -----END PGP SIGNATURE----- --6biwhbfdz7rpb6bu--