Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

py-commonmark: new port #8657

Merged
merged 1 commit into from
Oct 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions python/py-commonmark/Portfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

PortSystem 1.0
PortGroup python 1.0

name py-commonmark
version 0.9.1
platforms darwin
license BSD
supported_archs noarch

maintainers {@harens gmail.com:harensdeveloper} \
openmaintainer

description Python CommonMark parser
long_description commonmark.py is a pure Python port of jgm's commonmark.js, \
a Markdown parser and renderer for the CommonMark specification, \
using only native modules

homepage https://commonmarkpy.readthedocs.io/en/latest/

checksums rmd160 87a980080d252986c782720cbb3e834ca4ede9da \
sha256 452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60 \
size 95764

python.versions 38

if {${name} ne ${subport}} {

depends_build-append \
port:py${python.version}-setuptools

livecheck.type none

notes-append "The CLI tool can be used by running cmark-${python.branch}"
}