1
0
forked from ports/contrib

python3-mistune: initial commit, version 0.8.4

This commit is contained in:
Tim Biermann 2021-06-14 19:51:52 +00:00
parent e4f558a60b
commit eebdd43fdf
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.9/
drwxr-xr-x root/root usr/lib/python3.9/site-packages/
drwxr-xr-x root/root usr/lib/python3.9/site-packages/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/__pycache__/mistune.cpython-39.pyc
drwxr-xr-x root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/not-zip-safe
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune-0.8.4-py3.9.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/mistune.py

View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32gy0fFNee9f9kwLtJ3lXvKPxDBt50WPkvoal9EIEaBij/7GaHU4ovE0WXpk1S23m9dmtvwaB5CpFjm/IUR2ZwI=
SHA256 (Pkgfile) = 8642d1bc687f3ad4305e7ba94f0bcbdf5eb04a6cc68a15509cb6b87d61b651ad
SHA256 (.footprint) = d312d039071689637f4402dd7ab510944ea1666e6f22939b37f55babffbe495a

17
python3-mistune/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: A fast yet powerful Python Markdown parser with renderers and plugins
# URL: https://github.com/lepture/mistune
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-mistune
version=0.8.4
release=1
source=(https://github.com/lepture/mistune/archive/v$version/$name-$version.tar.gz)
build() {
cd mistune-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}