mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
PORTNAME= dbt-duckdb
|
|
DISTVERSION= 1.7.3
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= pat@patmaddox.com
|
|
COMMENT= DuckDB adapter plugin for dbt (data build tool)
|
|
WWW= https://github.com/jwills/dbt-duckdb
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbt-core>=1.7.0<2:databases/py-dbt-core@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}duckdb>=0.7.0:databases/py-duckdb@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
# py-dbt-duckdb attempts to install __init__.py and the generated bytecode into
|
|
# these directories which conflicts with those installed by py-dbt-core. We need to
|
|
# delete these files and their entries in the generated plist post-install.
|
|
COMMON_DIRS= dbt \
|
|
dbt/adapters \
|
|
dbt/include
|
|
|
|
post-stage:
|
|
.for dir in ${COMMON_DIRS:S|/|\/|g}
|
|
@${REINPLACE_CMD} -e '/.*\/${dir}\/__init__.py/d' \
|
|
-e '/.*\/${dir}\/__pycache__.*/d' \
|
|
${WRKDIR}/.PLIST.pymodtmp
|
|
.endfor
|
|
.for dir in ${COMMON_DIRS}
|
|
@(cd ${STAGEDIR}${PYTHON_SITELIBDIR}/${dir} && ${RM} -r __pycache__ __init__.py)
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|