diff options
author | wiz <wiz> | 2013-09-30 09:35:55 +0000 |
---|---|---|
committer | wiz <wiz> | 2013-09-30 09:35:55 +0000 |
commit | 709b3aca058429f84dd7bf386aaae967b0f575a4 (patch) | |
tree | 3f5ae735dd984218bcb7f866d186cccc0766cd55 /net/calypso | |
parent | 7238fe1b8372111ef8132dc3bb7c583ea35b7e1c (diff) | |
download | pkgsrc-709b3aca058429f84dd7bf386aaae967b0f575a4.tar.gz |
Update to 1.2:
chrysn and Joe Nahmias have done a bunch of work on Calypso, and I even
managed to fix a couple of bugs. I've merged their stuff in and pushed
out a version 1.2 release this afternoon, along with an updated debian
package. A this point, all reported Debian bugs are closed (surely that
can't last through more than one release).
The only piece unmerged was the ForkingMixin stuff as that means that
each connection has to re-read the entire database at startup as there's
no persistent in-memory state. I'd love to figure out how to use the
ThreadingMixin instead, providing the same multi-session support along
with caching.
Diffstat (limited to 'net/calypso')
-rw-r--r-- | net/calypso/Makefile | 13 | ||||
-rw-r--r-- | net/calypso/PLIST | 13 | ||||
-rw-r--r-- | net/calypso/distinfo | 9 | ||||
-rw-r--r-- | net/calypso/patches/patch-calypso_____init____.py | 15 |
4 files changed, 37 insertions, 13 deletions
diff --git a/net/calypso/Makefile b/net/calypso/Makefile index e0cd602b62b..e240cf62779 100644 --- a/net/calypso/Makefile +++ b/net/calypso/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2013/09/09 14:07:59 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2013/09/30 09:35:55 wiz Exp $ -DISTNAME= calypso-1.0 -PKGREVISION= 2 +DISTNAME= calypso-1.2 CATEGORIES= net time MASTER_SITES= http://keithp.com/calypso/ @@ -13,10 +12,8 @@ LICENSE= gnu-gpl-v3 DEPENDS+= ${PYPKGPREFIX}-vobject>=0.8.1c:../../textproc/py-vobject DEPENDS+= git-base-[0-9]*:../../devel/git-base -#WRKSRC= ${WRKDIR}/calypso - -PYDISTUTILSPKG= yes -PYTHON_VERSIONS_INCLUDE_3X= yes +EGG_NAME= ${DISTNAME:S/c/C/} +WRKSRC= ${WRKDIR} INSTALLATION_DIRS= share/examples/calypso @@ -26,5 +23,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/config ${DESTDIR}${PREFIX}/share/examples/calypso/ .include "../../lang/python/application.mk" -.include "../../lang/python/extension.mk" +.include "../../lang/python/distutils.mk" .include "../../mk/bsd.pkg.mk" diff --git a/net/calypso/PLIST b/net/calypso/PLIST index 4be758347a1..c7c9a1d318e 100644 --- a/net/calypso/PLIST +++ b/net/calypso/PLIST @@ -1,5 +1,10 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2012/01/08 15:11:37 wiz Exp $ +@comment $NetBSD: PLIST,v 1.2 2013/09/30 09:35:55 wiz Exp $ bin/calypso +${PYSITELIB}/${EGG_FILE}/PKG-INFO +${PYSITELIB}/${EGG_FILE}/SOURCES.txt +${PYSITELIB}/${EGG_FILE}/dependency_links.txt +${PYSITELIB}/${EGG_FILE}/requires.txt +${PYSITELIB}/${EGG_FILE}/top_level.txt ${PYSITELIB}/calypso/__init__.py ${PYSITELIB}/calypso/__init__.pyc ${PYSITELIB}/calypso/__init__.pyo @@ -12,9 +17,15 @@ ${PYSITELIB}/calypso/acl/fake.pyo ${PYSITELIB}/calypso/acl/htpasswd.py ${PYSITELIB}/calypso/acl/htpasswd.pyc ${PYSITELIB}/calypso/acl/htpasswd.pyo +${PYSITELIB}/calypso/acl/pam.py +${PYSITELIB}/calypso/acl/pam.pyc +${PYSITELIB}/calypso/acl/pam.pyo ${PYSITELIB}/calypso/config.py ${PYSITELIB}/calypso/config.pyc ${PYSITELIB}/calypso/config.pyo +${PYSITELIB}/calypso/paths.py +${PYSITELIB}/calypso/paths.pyc +${PYSITELIB}/calypso/paths.pyo ${PYSITELIB}/calypso/webdav.py ${PYSITELIB}/calypso/webdav.pyc ${PYSITELIB}/calypso/webdav.pyo diff --git a/net/calypso/distinfo b/net/calypso/distinfo index a6c6994497c..8bc788bc39a 100644 --- a/net/calypso/distinfo +++ b/net/calypso/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2012/01/08 15:11:37 wiz Exp $ +$NetBSD: distinfo,v 1.2 2013/09/30 09:35:55 wiz Exp $ -SHA1 (calypso-1.0.tar.gz) = 12ec37f3ba38510b895b1fa4a4e614707749ca90 -RMD160 (calypso-1.0.tar.gz) = 64caca6ceafc47cfc7a5a9315bf5e8fac7faebd5 -Size (calypso-1.0.tar.gz) = 25144 bytes +SHA1 (calypso-1.2.tar.gz) = ffde9a55f7f08a3ef8fd5907734f82882899a86c +RMD160 (calypso-1.2.tar.gz) = a7417b8c41c8ada91af7168f9c54b9dabb3a6893 +Size (calypso-1.2.tar.gz) = 31875 bytes +SHA1 (patch-calypso_____init____.py) = 9d5ea62eb3481c52457ab69a4af9c4e72dc9c1f1 diff --git a/net/calypso/patches/patch-calypso_____init____.py b/net/calypso/patches/patch-calypso_____init____.py new file mode 100644 index 00000000000..207b7eaef31 --- /dev/null +++ b/net/calypso/patches/patch-calypso_____init____.py @@ -0,0 +1,15 @@ +$NetBSD: patch-calypso_____init____.py,v 1.1 2013/09/30 09:35:55 wiz Exp $ + +Fix version number. Accepted upstream. + +--- calypso/__init__.py.orig 2013-09-20 17:59:23.000000000 +0000 ++++ calypso/__init__.py +@@ -61,7 +61,7 @@ formatter = logging.Formatter("%(message + ch.setFormatter (formatter) + log.addHandler(ch) + +-VERSION = "1.1" ++VERSION = "1.2" + + def _check(request, function): + """Check if user has sufficient rights for performing ``request``.""" |