pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/p5-Authen-SASL



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Sep 27 21:04:03 UTC 2022

Modified Files:
        pkgsrc/security/p5-Authen-SASL: Makefile
Added Files:
        pkgsrc/security/p5-Authen-SASL: options.mk

Log Message:
p5-Authen-SASL: stop using Module::Install::Bundled

Fixes PR 57028 by Nathan Ahlstrom.

Bump PKGREVISION.

Move options handling into options.mk while here.


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/security/p5-Authen-SASL/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/security/p5-Authen-SASL/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/security/p5-Authen-SASL/Makefile
diff -u pkgsrc/security/p5-Authen-SASL/Makefile:1.35 pkgsrc/security/p5-Authen-SASL/Makefile:1.36
--- pkgsrc/security/p5-Authen-SASL/Makefile:1.35        Tue Jun 28 11:35:39 2022
+++ pkgsrc/security/p5-Authen-SASL/Makefile     Tue Sep 27 21:04:03 2022
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.35 2022/06/28 11:35:39 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.36 2022/09/27 21:04:03 wiz Exp $
 
 DISTNAME=      Authen-SASL-2.16
 PKGNAME=       p5-${DISTNAME}
-PKGREVISION=   10
+PKGREVISION=   11
 CATEGORIES=    security perl5
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=Authen/}
 
@@ -12,19 +11,11 @@ HOMEPAGE=   https://metacpan.org/release/A
 COMMENT=       Perl module to handle SASL authentication
 LICENSE=       ${PERL5_LICENSE}
 
-PERL5_PACKLIST=                auto/Authen/SASL/.packlist
-PERL5_MODULE_TYPE=     Module::Install::Bundled
-
 DEPENDS+=      p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC
-#DEPENDS+=     {perl>=5.7.3,p5-Digest-MD5-[0-9]*}:../../security/p5-Digest-MD5
 
-PKG_OPTIONS_VAR=       PKG_OPTIONS.p5-Authen-SASL
-PKG_SUPPORTED_OPTIONS= gssapi
-PKG_SUGGESTED_OPTIONS= gssapi
-.include "../../mk/bsd.options.mk"
-.if !empty(PKG_OPTIONS:Mgssapi)
-DEPENDS+=      p5-GSSAPI-[0-9]*:../../security/p5-GSSAPI
-.endif
+PERL5_PACKLIST=                auto/Authen/SASL/.packlist
+
+.include "options.mk"
 
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"

Added files:

Index: pkgsrc/security/p5-Authen-SASL/options.mk
diff -u /dev/null pkgsrc/security/p5-Authen-SASL/options.mk:1.1
--- /dev/null   Tue Sep 27 21:04:03 2022
+++ pkgsrc/security/p5-Authen-SASL/options.mk   Tue Sep 27 21:04:03 2022
@@ -0,0 +1,11 @@
+# $NetBSD: options.mk,v 1.1 2022/09/27 21:04:03 wiz Exp $
+
+PKG_OPTIONS_VAR=       PKG_OPTIONS.p5-Authen-SASL
+PKG_SUPPORTED_OPTIONS= gssapi
+PKG_SUGGESTED_OPTIONS= gssapi
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mgssapi)
+DEPENDS+=      p5-GSSAPI-[0-9]*:../../security/p5-GSSAPI
+.endif



Home | Main Index | Thread Index | Old Index