1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

graphics/py-vulkan: Python binding for Vulkan API

vulkan is a Python extension which supports the Vulkan API. It
leverages power of Vulkan with simplicity of Python. It's a complete
Vulkan wrapper, it keeps the original Vulkan API and try to limit
differences induced by Python.

devel/py-cffi is also needed as a BUILD_DEPENDS (truckman)

PR:		289669
This commit is contained in:
Olivier Duchateau
2026-02-16 03:27:29 -08:00
committed by Don Lewis
parent 544c6491c3
commit 67adcfa54e
4 changed files with 31 additions and 0 deletions
+1
View File
@@ -1059,6 +1059,7 @@
SUBDIR += py-vecrec
SUBDIR += py-vispy
SUBDIR += py-visvis
SUBDIR += py-vulkan
SUBDIR += py-wand
SUBDIR += py-webcolors
SUBDIR += py-willow
+23
View File
@@ -0,0 +1,23 @@
PORTNAME= vulkan
DISTVERSION= 1.3.275.1
CATEGORIES= graphics python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= python@FreeBSD.org
COMMENT= Python binding for Vulkan API
WWW= https://github.com/realitix/vulkan
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
.include <bsd.port.mk>
+3
View File
@@ -0,0 +1,3 @@
TIMESTAMP = 1758099190
SHA256 (vulkan-1.3.275.1.tar.gz) = 5cf7961cb4a4e60d063eb815147c2289244575b75a4512089cc6e8a959b996d2
SIZE (vulkan-1.3.275.1.tar.gz) = 325786
+4
View File
@@ -0,0 +1,4 @@
Vulkan is a Python extension which supports the Vulkan API. It leverages
power of Vulkan with simplicity of Python. It's a complete Vulkan wrapper,
it keeps the original Vulkan API and try to limit differences induced by
Python.