Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 5A3DD7AABC for ; Sat, 2 Jul 2016 09:36:22 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id ED96285E75; Sat, 2 Jul 2016 09:36:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7D40A85E6F for ; Sat, 2 Jul 2016 09:36:21 +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 LC_Muasp29xI for ; Sat, 2 Jul 2016 09:36:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DFD4284CFC for ; Sat, 2 Jul 2016 09:36:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DAEEEFBB5; Sat, 2 Jul 2016 09:36:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1467452180297060" MIME-Version: 1.0 Date: Sat, 2 Jul 2016 09:36:20 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/misc/khard To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20160702093620.DAEEEFBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1467452180297060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 2 09:36:20 UTC 2016 Modified Files: pkgsrc/misc/khard: Makefile Log Message: Add missing py-yaml dependency. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/misc/khard/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1467452180297060 Content-Disposition: inline Content-Length: 860 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/khard/Makefile diff -u pkgsrc/misc/khard/Makefile:1.5 pkgsrc/misc/khard/Makefile:1.6 --- pkgsrc/misc/khard/Makefile:1.5 Mon Jun 6 12:28:37 2016 +++ pkgsrc/misc/khard/Makefile Sat Jul 2 09:36:20 2016 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2016/06/06 12:28:37 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2016/07/02 09:36:20 wiz Exp $ DISTNAME= khard-0.9.0 +PKGREVISION= 1 CATEGORIES= misc net MASTER_SITES= ${MASTER_SITE_PYPI:=k/khard/} @@ -12,6 +13,7 @@ LICENSE= gnu-gpl-v3 DEPENDS+= ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj DEPENDS+= ${PYPKGPREFIX}-vobject-[0-9]*:../../textproc/py-vobject DEPENDS+= ${PYPKGPREFIX}-argparse-[0-9]*:../../devel/py-argparse +DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml PYTHON_VERSIONS_INCOMPATIBLE= 33 34 35 # not yet ported as of 0.4.1 --_----------=_1467452180297060--