forked from Lainports/freebsd-ports
Changelog:
* Added support for iterative index scans
* Added casts for arrays to sparsevec
* Improved cost estimation for better index selection when filtering
* Improved performance of HNSW index scans
* Improved performance of HNSW inserts and on-disk index builds
* Dropped support for Postgres 12
Taken from:
https://github.com/pgvector/pgvector/blob/master/CHANGELOG.md
27 lines
502 B
Makefile
27 lines
502 B
Makefile
PORTNAME= pgvector
|
|
PORTVERSION= 0.8.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= PostgreSQL extension for vector similarity search
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
NOT_FOR_ARCHS= i386
|
|
|
|
USES= gmake pgsql:12+
|
|
WANT_PGSQL= server
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pgvector
|
|
GH_PROJECT= pgvector
|
|
|
|
MAKE_ARGS= OPTFLAGS=""
|
|
MAKE_ENV= USE_PGXS=1
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/vector.so
|
|
|
|
.include <bsd.port.mk>
|