1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00

print/py-vharfbuzz: Add py-vharfbuzz 0.1.1

uharfbuzz is an awesome tool for shaping text in Python. But it wraps the
Harfbuzz C interface quite closely, so still requires you to perform a bunch of
boilerplate operations before you can get on with the shaping. vharfbuzz allows
you a slightly more high-level interface to the text shaping process.

WWW: https://github.com/simoncozens/vharfbuzz
This commit is contained in:
Po-Chuan Hsieh 2021-05-16 23:13:00 +08:00
parent c7864c5a12
commit 95b7a5b34a
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 32 additions and 0 deletions

View File

@ -196,6 +196,7 @@
SUBDIR += py-ttfautohint-py
SUBDIR += py-ufolib2
SUBDIR += py-uharfbuzz
SUBDIR += py-vharfbuzz
SUBDIR += py-weasyprint
SUBDIR += qpdf
SUBDIR += qpdfview

View File

@ -0,0 +1,22 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= vharfbuzz
PORTVERSION= 0.1.1
CATEGORIES= print python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= User-friendlier way to use Harfbuzz in Python
LICENSE= MIT
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fonttools>=0:print/py-fonttools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}uharfbuzz>=0:print/py-uharfbuzz@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1620928547
SHA256 (vharfbuzz-0.1.1.tar.gz) = 49eb93735f22d46ba2cf5e6a7ea074bd279f00ad9b625f4d4ffb450ecfe68153
SIZE (vharfbuzz-0.1.1.tar.gz) = 5078

View File

@ -0,0 +1,6 @@
uharfbuzz is an awesome tool for shaping text in Python. But it wraps the
Harfbuzz C interface quite closely, so still requires you to perform a bunch of
boilerplate operations before you can get on with the shaping. vharfbuzz allows
you a slightly more high-level interface to the text shaping process.
WWW: https://github.com/simoncozens/vharfbuzz