Received: by mail.netbsd.org (Postfix, from userid 605) id 6712184E2F; Tue, 19 Feb 2019 16:25:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E34A384E22 for ; Tue, 19 Feb 2019 16:25:47 +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 fqSZaYA-zYye for ; Tue, 19 Feb 2019 16:25:47 +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 4449B84C81 for ; Tue, 19 Feb 2019 16:25:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3ECA2FB16; Tue, 19 Feb 2019 16:25:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550593547275090" MIME-Version: 1.0 Date: Tue, 19 Feb 2019 16:25:47 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/net/py-bonjour To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20190219162547.3ECA2FB16@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. --_----------=_1550593547275090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Tue Feb 19 16:25:47 UTC 2019 Modified Files: pkgsrc/net/py-bonjour: Makefile Log Message: py-bonjour does not support Python 3.x ATM - not even v3.4. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/net/py-bonjour/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550593547275090 Content-Disposition: inline Content-Length: 936 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-bonjour/Makefile diff -u pkgsrc/net/py-bonjour/Makefile:1.3 pkgsrc/net/py-bonjour/Makefile:1.4 --- pkgsrc/net/py-bonjour/Makefile:1.3 Thu Dec 27 15:59:10 2018 +++ pkgsrc/net/py-bonjour/Makefile Tue Feb 19 16:25:47 2019 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2018/12/27 15:59:10 joerg Exp $ +# $NetBSD: Makefile,v 1.4 2019/02/19 16:25:47 hauke Exp $ PKGNAME= ${PYPKGPREFIX}-bonjour-${PKGVER} DISTNAME= bonjour-py-${PKGVER} PKGVER= 0.3 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= http://www.mcs.anl.gov/fl/research/accessgrid/bonjour-py/ @@ -18,7 +18,7 @@ EGFILES= browse.py query.py register.py DOCDIR= share/py-bonjour DOCFILES= COPYING.txt README -PYTHON_VERSIONS_INCOMPATIBLE= 35 36 37 # Uses old exception syntax in 0.3 +PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 37 # Uses old exception syntax in 0.3 .for ee in ${EGFILES} REPLACE_PYTHON+= examples/${ee} --_----------=_1550593547275090--