Changes:
Postgres 18 support
Stop logging notices and repeating log messages
Fixes a possible crash for unavailable cron jobs
Fix build issue FreeBSD 14.3
Fix type mismatch in dsm_attach() argument by using DatumGetUInt32()
Fix compile errors on newer versions of GCC
Taken from:
https://github.com/citusdata/pg_cron/releases/tag/v1.6.6
https://github.com/citusdata/pg_cron/releases/tag/v1.6.7
23 lines
424 B
Makefile
23 lines
424 B
Makefile
PORTNAME= pg_cron
|
|
PORTVERSION= 1.6.7
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= tz@FreeBSD.org
|
|
COMMENT= Cron-based job scheduler for PostgreSQL that runs inside the database
|
|
WWW= https://github.com/citusdata/pg_cron
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
USES= gmake pgsql:10+
|
|
|
|
WANT_PGSQL= server
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= citusdata
|
|
|
|
INSTALL_TARGET= install-strip
|
|
MAKE_ARGS= INSTALL="${INSTALL} -c"
|
|
|
|
.include <bsd.port.mk>
|