Received: by mail.netbsd.org (Postfix, from userid 605) id BCAC284D45; Fri, 7 Aug 2020 19:39:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 43D6A84D2E for ; Fri, 7 Aug 2020 19:39:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id lOJU64gjV8eI for ; Fri, 7 Aug 2020 19:39:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 73F3584CCD for ; Fri, 7 Aug 2020 19:39:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 67B08FB28; Fri, 7 Aug 2020 19:39:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1596829180147810" MIME-Version: 1.0 Date: Fri, 7 Aug 2020 19:39:40 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/databases To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20200807193940.67B08FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1596829180147810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Fri Aug 7 19:39:40 UTC 2020 Modified Files: pkgsrc/databases/postgresql10: Makefile.common pkgsrc/databases/postgresql11: Makefile.common pkgsrc/databases/postgresql12: Makefile.common pkgsrc/databases/postgresql95: Makefile.common pkgsrc/databases/postgresql96: Makefile.common Log Message: postgresql*: use PG_TEMPLATE=freebsd on dragonflybsd. From Aleksej Lebedev which specified it fixes postgresql12. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql10/Makefile.common cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql11/Makefile.common cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql12/Makefile.common cvs rdiff -u -r1.31 -r1.32 pkgsrc/databases/postgresql95/Makefile.common cvs rdiff -u -r1.25 -r1.26 pkgsrc/databases/postgresql96/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1596829180147810 Content-Disposition: inline Content-Length: 4341 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/postgresql10/Makefile.common diff -u pkgsrc/databases/postgresql10/Makefile.common:1.20 pkgsrc/databases/postgresql10/Makefile.common:1.21 --- pkgsrc/databases/postgresql10/Makefile.common:1.20 Fri May 15 09:45:00 2020 +++ pkgsrc/databases/postgresql10/Makefile.common Fri Aug 7 19:39:39 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.20 2020/05/15 09:45:00 adam Exp $ +# $NetBSD: Makefile.common,v 1.21 2020/08/07 19:39:39 maya Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -45,6 +45,7 @@ PKG_SYSCONFSUBDIR= postgresql PG_TEMPLATE.SunOS= solaris PG_TEMPLATE.IRIX= irix5 PG_TEMPLATE.MirBSD= openbsd +PG_TEMPLATE.DragonFly= freebsd .if !defined(PG_TEMPLATE.${OPSYS}) PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} .endif Index: pkgsrc/databases/postgresql11/Makefile.common diff -u pkgsrc/databases/postgresql11/Makefile.common:1.13 pkgsrc/databases/postgresql11/Makefile.common:1.14 --- pkgsrc/databases/postgresql11/Makefile.common:1.13 Fri May 15 09:45:00 2020 +++ pkgsrc/databases/postgresql11/Makefile.common Fri Aug 7 19:39:39 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2020/05/15 09:45:00 adam Exp $ +# $NetBSD: Makefile.common,v 1.14 2020/08/07 19:39:39 maya Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -45,6 +45,7 @@ PKG_SYSCONFSUBDIR= postgresql PG_TEMPLATE.SunOS= solaris PG_TEMPLATE.IRIX= irix5 PG_TEMPLATE.MirBSD= openbsd +PG_TEMPLATE.DragonFly= freebsd .if !defined(PG_TEMPLATE.${OPSYS}) PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} .endif Index: pkgsrc/databases/postgresql12/Makefile.common diff -u pkgsrc/databases/postgresql12/Makefile.common:1.6 pkgsrc/databases/postgresql12/Makefile.common:1.7 --- pkgsrc/databases/postgresql12/Makefile.common:1.6 Fri May 15 09:45:00 2020 +++ pkgsrc/databases/postgresql12/Makefile.common Fri Aug 7 19:39:39 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2020/05/15 09:45:00 adam Exp $ +# $NetBSD: Makefile.common,v 1.7 2020/08/07 19:39:39 maya Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -45,6 +45,7 @@ PKG_SYSCONFSUBDIR= postgresql PG_TEMPLATE.SunOS= solaris PG_TEMPLATE.IRIX= irix5 PG_TEMPLATE.MirBSD= openbsd +PG_TEMPLATE.DragonFly= freebsd .if !defined(PG_TEMPLATE.${OPSYS}) PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} .endif Index: pkgsrc/databases/postgresql95/Makefile.common diff -u pkgsrc/databases/postgresql95/Makefile.common:1.31 pkgsrc/databases/postgresql95/Makefile.common:1.32 --- pkgsrc/databases/postgresql95/Makefile.common:1.31 Fri May 15 09:45:01 2020 +++ pkgsrc/databases/postgresql95/Makefile.common Fri Aug 7 19:39:40 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.31 2020/05/15 09:45:01 adam Exp $ +# $NetBSD: Makefile.common,v 1.32 2020/08/07 19:39:40 maya Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -48,6 +48,7 @@ PKG_SYSCONFSUBDIR= postgresql PG_TEMPLATE.SunOS= solaris PG_TEMPLATE.IRIX= irix5 PG_TEMPLATE.MirBSD= openbsd +PG_TEMPLATE.DragonFly= freebsd .if !defined(PG_TEMPLATE.${OPSYS}) PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} .endif Index: pkgsrc/databases/postgresql96/Makefile.common diff -u pkgsrc/databases/postgresql96/Makefile.common:1.25 pkgsrc/databases/postgresql96/Makefile.common:1.26 --- pkgsrc/databases/postgresql96/Makefile.common:1.25 Fri May 15 09:45:01 2020 +++ pkgsrc/databases/postgresql96/Makefile.common Fri Aug 7 19:39:40 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.25 2020/05/15 09:45:01 adam Exp $ +# $NetBSD: Makefile.common,v 1.26 2020/08/07 19:39:40 maya Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -48,6 +48,7 @@ PKG_SYSCONFSUBDIR= postgresql PG_TEMPLATE.SunOS= solaris PG_TEMPLATE.IRIX= irix5 PG_TEMPLATE.MirBSD= openbsd +PG_TEMPLATE.DragonFly= freebsd .if !defined(PG_TEMPLATE.${OPSYS}) PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} .endif --_----------=_1596829180147810--