pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/postgresql-timescaledb



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Oct 27 12:12:09 UTC 2020

Modified Files:
        pkgsrc/databases/postgresql-timescaledb: Makefile

Log Message:
postgresql-timescaledb: switch to USE_CMAKE; limit supported PostgreSQL versions


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/postgresql-timescaledb/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/postgresql-timescaledb/Makefile
diff -u pkgsrc/databases/postgresql-timescaledb/Makefile:1.2 pkgsrc/databases/postgresql-timescaledb/Makefile:1.3
--- pkgsrc/databases/postgresql-timescaledb/Makefile:1.2        Sat Oct 10 11:20:10 2020
+++ pkgsrc/databases/postgresql-timescaledb/Makefile    Tue Oct 27 12:12:09 2020
@@ -1,38 +1,23 @@
-# $NetBSD: Makefile,v 1.2 2020/10/10 11:20:10 mef Exp $
+# $NetBSD: Makefile,v 1.3 2020/10/27 12:12:09 adam Exp $
 
-GITHUB_PROJECT=        timescaledb
 DISTNAME=      timescaledb-1.7.4
 PKGNAME=       postgresql${PGSQL_VERSION}-${DISTNAME}
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=timescale/}
+GITHUB_PROJECT=        timescaledb
 
 MAINTAINER=    otis%NetBSD.org@localhost
-HOMEPAGE=      https://github.com/timescale/timescaledb/
+HOMEPAGE=      https://github.com/timescale/timescaledb
 COMMENT=       The timescaledb extension for PostgreSQL
 LICENSE=       apache-2.0
 
 DEPENDS+=      postgresql${PGSQL_VERSION}-server>=0:../../databases/postgresql${PGSQL_VERSION}-server
 
-USE_TOOLS+=    cmake gmake bash
-
-CONFIGURE_ARGS+=       -DUSE_OPENSSL=0
-CONFIGURE_ARGS+=       -DREGRESS_CHECKS=OFF
-
-.include "../../mk/bsd.prefs.mk"
+USE_CMAKE=     yes
+CMAKE_ARGS+=   -DUSE_OPENSSL=OFF
+CMAKE_ARGS+=   -DREGRESS_CHECKS=OFF
 
-do-configure:
-       cd ${WRKSRC} && \
-          ${SETENV} ${CONFIGURE_ENV} ./bootstrap ${CONFIGURE_ARGS}
-
-do-build:
-       cd ${WRKSRC}/build && \
-          ${SETENV} ${MAKE_ENV} \
-          ${MAKE} DESTDIR=${DESTDIR} PREFIX=${PREFIX}
-
-do-install:
-       cd ${WRKSRC}/build && \
-          ${SETENV} ${INSTALL_ENV} \
-          ${MAKE} DESTDIR=${DESTDIR} PREFIX=${PREFIX} install
+PGSQL_VERSIONS_ACCEPTED=       12 11 10 96
 
 .include "../../mk/pgsql.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index