Received: by mail.netbsd.org (Postfix, from userid 605) id 4302684D79; Thu, 30 Apr 2020 07:11:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BE3D784D58 for ; Thu, 30 Apr 2020 07:11:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 7TAaMNCyA6VW for ; Thu, 30 Apr 2020 07:11:16 +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 3064D84CE1 for ; Thu, 30 Apr 2020 07:11:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 25DA8FB27; Thu, 30 Apr 2020 07:11:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1588230676157130" MIME-Version: 1.0 Date: Thu, 30 Apr 2020 07:11:16 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/mail/roundcube-plugin-password To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20200430071116.25DA8FB27@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. --_----------=_1588230676157130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Apr 30 07:11:16 UTC 2020 Modified Files: pkgsrc/mail/roundcube-plugin-password: Makefile distinfo Log Message: mail/roundcube-plugin-password: update to 1.4.4 Update roundcube-plugin-password to 1.4.4. pkgsrc change: add dependecy to lang/tcl-expect. RELEASE 1.4.3 ------------- - Password: Make chpass-wrapper.py Python 3 compatible (#7135) To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/mail/roundcube-plugin-password/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/mail/roundcube-plugin-password/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1588230676157130 Content-Disposition: inline Content-Length: 2364 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/roundcube-plugin-password/Makefile diff -u pkgsrc/mail/roundcube-plugin-password/Makefile:1.8 pkgsrc/mail/roundcube-plugin-password/Makefile:1.9 --- pkgsrc/mail/roundcube-plugin-password/Makefile:1.8 Sun Apr 26 08:48:24 2020 +++ pkgsrc/mail/roundcube-plugin-password/Makefile Thu Apr 30 07:11:15 2020 @@ -1,17 +1,19 @@ -# $NetBSD: Makefile,v 1.8 2020/04/26 08:48:24 taca Exp $ +# $NetBSD: Makefile,v 1.9 2020/04/30 07:11:15 taca Exp $ PLUGIN= password -PKGREVISION= 1 MAINTAINER= taca@NetBSD.org COMMENT= Password change plugin for roundcube LICENSE= gnu-gpl-v3 +DEPENDS+= tcl-expect>=5.32.1:../../lang/tcl-expect + REPLACE_PERL+= plugins/password/helpers/change_ldap_pass.pl REPLACE_PYTHON+= plugins/password/helpers/chpass-wrapper.py DISTINFO_FILE= ${PKGDIR}/distinfo .include "../../mail/roundcube/plugins.mk" +.include "../../lang/perl5/module.mk" .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/mail/roundcube-plugin-password/distinfo diff -u pkgsrc/mail/roundcube-plugin-password/distinfo:1.16 pkgsrc/mail/roundcube-plugin-password/distinfo:1.17 --- pkgsrc/mail/roundcube-plugin-password/distinfo:1.16 Sun Apr 26 08:48:24 2020 +++ pkgsrc/mail/roundcube-plugin-password/distinfo Thu Apr 30 07:11:15 2020 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.16 2020/04/26 08:48:24 taca Exp $ +$NetBSD: distinfo,v 1.17 2020/04/30 07:11:15 taca Exp $ -SHA1 (roundcubemail-1.4.2-complete.tar.gz) = d53fcd7f1109a63364d5d4a43f879c6f47d34a89 -RMD160 (roundcubemail-1.4.2-complete.tar.gz) = f043c3e55156625a9f4a8f95aeab704502be9b9d -SHA512 (roundcubemail-1.4.2-complete.tar.gz) = 3f705bc38b44a0b7ea3241b0222f607b040ec01c8ea400b6b6222fbe346570c5f3450e5a188bab99ea171481453eb3f5b1e7457070ace1144558ec662a4273bb -Size (roundcubemail-1.4.2-complete.tar.gz) = 7006013 bytes +SHA1 (roundcubemail-1.4.4-complete.tar.gz) = 4e425263f5bec27d39c07bde524f421bda205c07 +RMD160 (roundcubemail-1.4.4-complete.tar.gz) = 43c3ea4da074337c4b8826420eab9a799fd46e1a +SHA512 (roundcubemail-1.4.4-complete.tar.gz) = ddea321b5266c547f67c010147e9aa1457bea4802bec37f9e9d87e691bdc8df27f5c90cff8770de2458822160b85f7359f62742072ae1d642a040b9d88651519 +Size (roundcubemail-1.4.4-complete.tar.gz) = 7029864 bytes SHA1 (patch-plugins_password_helpers_passwd-expect) = 15e427a3c90bf7c0437a023b3f099abb5a139165 --_----------=_1588230676157130--