View | Details | Raw Unified | Return to bug 256925 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 4389-4394 Link Here
4389
    SUBDIR += py-cwcwidth
4389
    SUBDIR += py-cwcwidth
4390
    SUBDIR += py-cxx
4390
    SUBDIR += py-cxx
4391
    SUBDIR += py-cycler
4391
    SUBDIR += py-cycler
4392
    SUBDIR += py-cymbal
4392
    SUBDIR += py-cymem
4393
    SUBDIR += py-cymem
4393
    SUBDIR += py-cysignals
4394
    SUBDIR += py-cysignals
4394
    SUBDIR += py-cytoolz
4395
    SUBDIR += py-cytoolz
(-)b/devel/py-cymbal/Makefile (+22 lines)
Added Link Here
1
PORTNAME=	cymbal
2
DISTVERSION=	1.0.0
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	ports@nicandneal.net
8
COMMENT=	Easily add functionality missing from libclang Python bindings
9
10
LICENSE=	MIT
11
12
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}unittest2>0:devel/py-unittest2@${PY_FLAVOR}
13
14
USES=		python
15
USE_PYTHON=	autoplist distutils
16
17
TEST_TARGET=	test
18
19
do-test:
20
	cd ${WRKSRC} && ${PYTHON_CMD} -m unittest2 discover
21
22
.include <bsd.port.mk>
(-)b/devel/py-cymbal/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1626094156
2
SHA256 (cymbal-1.0.0.tar.gz) = 1c79a00190bc8646505392b904e6e76410e98018f96f247ff7d363365241e2e0
3
SIZE (cymbal-1.0.0.tar.gz) = 4145
(-)b/devel/py-cymbal/pkg-descr (-1 / +10 lines)
Added Link Here
0
- 
1
Cymbal makes it easy to add functionality missing from libclang Python
2
bindings
3
4
The Clang libclang python bindings use ctypes to invoke functions
5
present in libclang dynamic library. In some cases, only a subset of
6
the C functions are available, because the platform or version
7
specific Python bindings omit functions. Cymbal simplfies the process
8
of dynamically adding those methods to Types and Cursors.
9
10
WWW: https://github.com/CadQuery/cymbal

Return to bug 256925