Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Sep 2015 07:05:43 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r395746 - in head/www: . py-django-markwhat
Message-ID:  <201509010705.t8175hkQ051686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: koobs
Date: Tue Sep  1 07:05:42 2015
New Revision: 395746
URL: https://svnweb.freebsd.org/changeset/ports/395746

Log:
  [NEW] www/py-django-markwhat: Template filters that implement common markup languages
  
  A collection of template filters that implement common markup languages.
  
  provides template filters that implement the following markup
  languages:
  
  * ``textile`` -- implements `Textile`_ -- requires `PyTextile`_
  * ``markdown`` -- implements `Markdown`_ -- requires `Python-markdown`_
  * ``commonmark`` -- implements `CommonMark`_ -- requires `CommonMark-py`_
  * ``reStructuredText`` -- implements `reST (reStructuredText)`_
  -- requires `docutils`_
  
  In each case, the filter expects formatted markup as a string and
  returns a string representing the marked-up text. For example, the
  ``textile`` filter converts text that is marked-up in Textile format
  to HTML.
  
  WWW: https://pypi.python.org/pypi/django-markwhat

Added:
  head/www/py-django-markwhat/
  head/www/py-django-markwhat/Makefile   (contents, props changed)
  head/www/py-django-markwhat/distinfo   (contents, props changed)
  head/www/py-django-markwhat/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Sep  1 05:47:40 2015	(r395745)
+++ head/www/Makefile	Tue Sep  1 07:05:42 2015	(r395746)
@@ -1533,6 +1533,7 @@
     SUBDIR += py-django-keyedcache
     SUBDIR += py-django-ldapdb
     SUBDIR += py-django-livesettings
+    SUBDIR += py-django-markwhat
     SUBDIR += py-django-mezzanine
     SUBDIR += py-django-mezzanine-filebrowser
     SUBDIR += py-django-mezzanine-grappelli

Added: head/www/py-django-markwhat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-markwhat/Makefile	Tue Sep  1 07:05:42 2015	(r395746)
@@ -0,0 +1,19 @@
+# Created by: Kubilay Kocak <koobs@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	django-markwhat
+PORTVERSION=	1.4
+CATEGORIES=	www python textproc
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	koobs@FreeBSD.org
+COMMENT=	Template filters that implement common markup languages
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/www/py-django-markwhat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-markwhat/distinfo	Tue Sep  1 07:05:42 2015	(r395746)
@@ -0,0 +1,2 @@
+SHA256 (django-markwhat-1.4.tar.gz) = d2cfcb1919d96bfbbb1cb9745b4b1e4ef84e9a63e2cac1bd368bafe6d3e889e2
+SIZE (django-markwhat-1.4.tar.gz) = 7222

Added: head/www/py-django-markwhat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-markwhat/pkg-descr	Tue Sep  1 07:05:42 2015	(r395746)
@@ -0,0 +1,17 @@
+A collection of template filters that implement common markup languages.
+
+provides template filters that implement the following markup
+languages:
+
+* ``textile`` -- implements `Textile`_ -- requires `PyTextile`_
+* ``markdown`` -- implements `Markdown`_ -- requires `Python-markdown`_
+* ``commonmark`` -- implements `CommonMark`_ -- requires `CommonMark-py`_
+* ``reStructuredText`` -- implements `reST (reStructuredText)`_
+-- requires `docutils`_
+
+In each case, the filter expects formatted markup as a string and
+returns a string representing the marked-up text. For example, the
+``textile`` filter converts text that is marked-up in Textile format
+to HTML.
+
+WWW: https://pypi.python.org/pypi/django-markwhat



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509010705.t8175hkQ051686>