python3-m2r: initial commit, version 0.2.1

This commit is contained in:
Tim Biermann 2021-06-14 19:51:51 +00:00
parent a0f0506bdc
commit 827dfce81f
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 38 additions and 0 deletions

17
python3-m2r/.footprint Normal file
View File

@ -0,0 +1,17 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/m2r
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__/m2r.cpython-39.pyc
drwxr-xr-x root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/entry_points.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/not-zip-safe
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r-0.2.1-py3.9.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/m2r.py

4
python3-m2r/.signature Normal file
View File

@ -0,0 +1,4 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zmL3HiugqwysToC7Te6e9oX45tpxyJKIDiI+zkf5LKJZlQBJuKZHRQObYJFtDrlypxseFeHJzrV+8+3o6zCiwg=
SHA256 (Pkgfile) = 3641b9e074bd3626217a1832ffe748ef6373cbe504b1e2eae4f2463f1422471f
SHA256 (.footprint) = 2ba04926fc8a846d8a6081c610b82e66824eb42f88de5d43b786f5e5eb668945

17
python3-m2r/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Markdown to reStructuredText converter
# URL: https://github.com/miyakogi/m2r
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-docutils python3-mistune
name=python3-m2r
version=0.2.1
release=1
source=(https://github.com/miyakogi/m2r/archive/v$version/$name-$version.tar.gz)
build() {
cd m2r-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build
}