pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail/opendmarc
Module Name: pkgsrc
Committed By: jperkin
Date: Tue Apr 28 15:48:45 UTC 2026
Modified Files:
pkgsrc/mail/opendmarc: Makefile options.mk
Log Message:
opendmarc: Default to mariadb instead of mysql.
The pkgsrc default is mariadb so it makes sense to avoid conflicts. While
here fix pkglint. Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/mail/opendmarc/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/opendmarc/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mail/opendmarc/Makefile
diff -u pkgsrc/mail/opendmarc/Makefile:1.35 pkgsrc/mail/opendmarc/Makefile:1.36
--- pkgsrc/mail/opendmarc/Makefile:1.35 Sun Jan 18 17:00:44 2026
+++ pkgsrc/mail/opendmarc/Makefile Tue Apr 28 15:48:45 2026
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.35 2026/01/18 17:00:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.36 2026/04/28 15:48:45 jperkin Exp $
DISTNAME= rel-${PKGNAME_NOREV:C/\./-/g}
PKGNAME= opendmarc-1.4.2
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GITHUB:=trusteddomainproject/}
GITHUB_PROJECT= OpenDMARC
Index: pkgsrc/mail/opendmarc/options.mk
diff -u pkgsrc/mail/opendmarc/options.mk:1.1 pkgsrc/mail/opendmarc/options.mk:1.2
--- pkgsrc/mail/opendmarc/options.mk:1.1 Sun Jan 18 17:00:44 2026
+++ pkgsrc/mail/opendmarc/options.mk Tue Apr 28 15:48:45 2026
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.1 2026/01/18 17:00:44 ryoon Exp $
+# $NetBSD: options.mk,v 1.2 2026/04/28 15:48:45 jperkin Exp $
-PKG_OPTIONS_VAR= PKG_OPTIONS.opendmarc
+PKG_OPTIONS_VAR= PKG_OPTIONS.opendmarc
PKG_OPTIONS_REQUIRED_GROUPS= db
-PKG_OPTIONS_GROUP.db= mysql mariadb
-PKG_SUGGESTED_OPTIONS= mysql
+PKG_OPTIONS_GROUP.db= mysql mariadb
+PKG_SUGGESTED_OPTIONS= mariadb
.include "../../mk/bsd.options.mk"
@@ -11,9 +11,9 @@ PKG_SUGGESTED_OPTIONS= mysql
### Backend database support
###
.if !empty(PKG_OPTIONS:Mmysql)
-DEPENDS+= p5-DBD-mysql-[0-9]*:../../databases/p5-DBD-mysql
+DEPENDS+= p5-DBD-mysql-[0-9]*:../../databases/p5-DBD-mysql
CONFIGURE_ARGS+= --with-sql-backend=mysql
.elif !empty(PKG_OPTIONS:Mmariadb)
-DEPENDS+= p5-DBD-MariaDB-[0-9]*:../../databases/p5-DBD-MariaDB
+DEPENDS+= p5-DBD-MariaDB-[0-9]*:../../databases/p5-DBD-MariaDB
CONFIGURE_ARGS+= --with-sql-backend=MariaDB
.endif
Home |
Main Index |
Thread Index |
Old Index