mirror of
https://git.freebsd.org/ports.git
synced 2025-05-08 03:40:46 -04:00
Replace PORTVERSION with DISTVERSION. Changelogs: PonyORM release 0.7.19 (2024-08-27) Bugfixes Add missed Python 3.12 classifier PonyORM release 0.7.18 (2024-08-26) Features Add Python 3.12 support Bugfixes Fix #704 JSON handling in SQLite >= 3.45 https://github.com/ponyorm/pony/releases/tag/v0.7.18 https://github.com/ponyorm/pony/releases/tag/v0.7.19 PR: 281287
26 lines
600 B
Makefile
26 lines
600 B
Makefile
PORTNAME= pony
|
|
DISTVERSION= 0.7.19
|
|
CATEGORIES= databases devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= meka@tilda.center
|
|
COMMENT= Pony ORM is easy to use and powerful object-relational mapper
|
|
WWW= https://ponyorm.org/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
TEST_ENV= PYTHONPATH=${WRKSRC}/src
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} setup.py test
|
|
|
|
.include <bsd.port.mk>
|