forked from Lainports/freebsd-ports
Changelog:
* Fix superuser check before adding job to CronJobHash
* Fix leap year scheduling problem
* Fix possible buffer underflow issue in cron parsing
* Fix compilation warnings
Taken from:
https://github.com/citusdata/pg_cron/blob/main/CHANGELOG.md
22 lines
424 B
Makefile
22 lines
424 B
Makefile
PORTNAME= pg_cron
|
|
PORTVERSION= 1.6.5
|
|
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>
|