Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.17 2014/05/09 07:36:57 wiz Exp $
# $NetBSD: Makefile,v 1.19 2016/03/20 22:10:13 wiz Exp $
DISTNAME= pgnotify-0.1
PKGNAME= ${PYPKGPREFIX}-pgnotify-0.1
PKGREVISION= 2
PKGREVISION= 3
CATEGORIES= databases python
MASTER_SITES= http://sandbox.rulemaker.net/ngps/Dist/
EXTRACT_SUFX= .zip
@@ -17,9 +17,5 @@ MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}
MAKE_ENV+= BINDIR=${PREFIX}/bin
USE_TOOLS+= gmake
PYDISTUTILSPKG= yes
PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # py-postgresql
.include "../../lang/python/extension.mk"
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -1,4 +1,5 @@
@comment $NetBSD: PLIST,v 1.2 2006/01/03 18:58:58 darcy Exp $
@comment $NetBSD: PLIST,v 1.3 2016/03/20 22:10:13 wiz Exp $
${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/pgnotify.py
${PYSITELIB}/pgnotify.pyc
${PYSITELIB}/pgnotify.pyo

View File

@@ -1,5 +1,7 @@
$NetBSD: distinfo,v 1.2 2005/02/23 16:33:09 agc Exp $
$NetBSD: distinfo,v 1.4 2016/03/25 21:15:07 joerg Exp $
SHA1 (pgnotify-0.1.zip) = 6545a994077427b481c7fc9c511dc74f6106ae39
RMD160 (pgnotify-0.1.zip) = a48a7536a6edf330bdb1eb6b83be119ce4327e56
SHA512 (pgnotify-0.1.zip) = d1b27c89290476111a1751019b3c99af72a8904e4c56d363f0bff7ac334c8773b397ca3dd264eb26402489c8a3189181b8ad7966a312a7b4a918c87588f196e5
Size (pgnotify-0.1.zip) = 6148 bytes
SHA1 (patch-pgnotify.py) = 9b05f0685186833bad513bfd2cf0376133c9ae52

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-pgnotify.py,v 1.1 2016/03/25 21:15:07 joerg Exp $
--- pgnotify.py.orig 2016-03-25 09:35:27.000000000 +0000
+++ pgnotify.py
@@ -99,9 +99,9 @@ class pgnotify:
else:
self.pgconn.query('unlisten "%s"' % self.event)
self.pgconn.query('unlisten "%s"' % self.stop)
- raise pgnotifyError, \
+ raise pgnotifyError(
'listening for ("%s", "%s") but notified of "%s"' \
- % (self.event, self.stop, event)
+ % (self.event, self.stop, event))