On Wed, Jun 07, 2006 at 10:59:31AM +0200, Aleksander Piotrowski wrote:
> Will Maier <[EMAIL PROTECTED]> wrote:
> > I'd agree, except the original (and canonical?) implementation of
> > Markdown is in Perl. There might be better ways to avoid collisions,
> > though.
[...]
> Anyway, please try this cleaned up version of your port:
>
> http://atlantilde.com/~alek/ports/markdown.tar.gz
>
> Does it still work for you?
Just wondering if there was still interest in this port. I've been
using it all summer in semi-production. Tested on i386/-current.
The version I have in use is slightly different than Alek's; see
attached patch which adds a regress test.
Thanks!
--
o--------------------------{ Will Maier }--------------------------o
| web:.......http://www.lfod.us/ | [EMAIL PROTECTED] |
*------------------[ BSD Unix: Live Free or Die ]------------------*
diff -urN ../textproc/py-markdown/Makefile ./Makefile
--- ../textproc/py-markdown/Makefile Wed Jun 7 03:55:15 2006
+++ ./Makefile Sat Sep 23 07:31:16 2006
@@ -21,8 +21,6 @@
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=python-markdown/}
EXTRACT_SUFX=
-NO_REGRESS= Yes
-
WRKDIST= ${WRKDIR}/${PKGNAME}
do-extract:
@@ -30,6 +28,9 @@
@sed -e "1s|!.*|!${MODPY_BIN}|" ${FULLDISTDIR}/${DISTNAME} \
> ${WRKDIST}/markdown.py
@cp ${FILESDIR}/setup.py ${WRKDIST}/.
+
+do-regress:
+ @cd ${WRKSRC} && python markdown.py -test
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/markdown.py ${PREFIX}/bin/markdown
diff -urN ../textproc/py-markdown/files/setup.py ./files/setup.py
--- ../textproc/py-markdown/files/setup.py Wed Jun 7 03:46:40 2006
+++ ./files/setup.py Sat Sep 23 07:33:04 2006
@@ -4,7 +4,7 @@
setup(
name = 'markdown',
- version = '1.3',
+ version = '1.5',
description = "Python implementation of Markdown.",
author = "Manfred Stienstra and Yuri takhteyev",
maintainer = "Yuri Takhteyev",