debian/0000755000000000000000000000000012127365551007175 5ustar debian/source/0000755000000000000000000000000012022363633010466 5ustar debian/source/format0000644000000000000000000000001411410673272011677 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000015712022362575010255 0ustar #!/usr/bin/make -f %: dh $@ --with python2 override_dh_installchangelogs: dh_installchangelogs CHANGES.rst debian/compat0000644000000000000000000000000211114251045010356 0ustar 5 debian/control0000644000000000000000000000151512127363157010602 0ustar Source: trac-authopenid Section: python Priority: optional Maintainer: Jeremy Lainé Uploaders: Daniel Kahn Gillmor Build-Depends: debhelper (>= 9), python (>= 2.6.6-3~), python-setuptools Standards-Version: 3.9.3 Homepage: http://github.com/dairiki/authopenid-plugin Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/trac-authopenid/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/deb-maint/trac-authopenid/trunk/ Package: trac-authopenid Architecture: all Depends: ${misc:Depends}, ${python:Depends}, trac (>= 0.11), python-openid Description: OpenID authentication plugin for Trac This plugin makes it possible to login to Trac using the OpenID decentralized identity system. This allows users to sign in using existing accounts instead of having to create a new password. debian/patches/0000755000000000000000000000000012127363512010617 5ustar debian/patches/series0000644000000000000000000000003112127356613012032 0ustar handle-no-fullname.patch debian/patches/handle-no-fullname.patch0000644000000000000000000000160512127363051015306 0ustar --- a/authopenid/authopenid.py 2012-06-25 17:06:18.000000000 -0400 +++ b/authopenid/authopenid.py 2013-04-04 16:04:57.542661061 -0400 @@ -584,6 +584,7 @@ remote_user = new_user if allowed: + authname = None cookie = hex_entropy() cookie_lifetime = self.trac_auth_cookie_lifetime @@ -604,9 +605,11 @@ authname = req.session['name'] if self.combined_username: authname = '%s <%s>' % (authname, remote_user) + else: + authname = remote_user # Possibly lower-case the authname. - if self.lowercase_authname: + if authname and self.lowercase_authname: authname = authname.lower() # Make authname unique in case of collisions debian/changelog0000644000000000000000000000355712127364542011060 0ustar trac-authopenid (0.4.1-2) unstable; urgency=low * Avoid crash when OpenID provider does not give a full name (Closes: #704707) -- Daniel Kahn Gillmor Thu, 04 Apr 2013 16:44:50 -0400 trac-authopenid (0.4.1-1) unstable; urgency=low * New upstream release. * Convert packaging to use debhelper 9 and dh_python2. * Update Standards-Version to 3.9.3 (no changes). * Update Homepage to http://github.com/dairiki/authopenid-plugin. * Update debian/watch to point to PyPI. * Expand the long package description. -- Jeremy Lainé Fri, 07 Sep 2012 14:23:02 +0200 trac-authopenid (0.3.1-1) unstable; urgency=low * New upstream release. * Update Standards-Version to 3.9.1 (no changes). -- Jeremy Lainé Mon, 03 Jan 2011 06:39:36 +0100 trac-authopenid (0.2.4-1) unstable; urgency=low * New upstream release. * Fix typo in extended description (Closes: #570194). * Change Build-Depends from python-all-dev to python. * Switch to dpkg-source 3.0 (quilt) format. * Update Standards-Version to 3.8.4. * Reflect new project homepage: - debian/watch : fix URL - debian/control : change Homepage tag - debian/copyright : mention new project homepage -- Jeremy Lainé Thu, 24 Jun 2010 17:53:59 +0200 trac-authopenid (0.1.9-1) unstable; urgency=low * New upstream release. * Add watch files (Closes: #524229). -- Jeremy Lainé Mon, 20 Apr 2009 07:43:46 +0200 trac-authopenid (0.1.7-1) unstable; urgency=low * New upstream release. * Fix lintian warning by adding ${misc:Depends}. -- Jeremy Lainé Mon, 05 Jan 2009 08:01:52 +0100 trac-authopenid (0.1.6-1) unstable; urgency=low * Initial upload to Debian (Closes: #507261). -- Jeremy Lainé Sat, 29 Nov 2008 15:57:47 +0100 debian/watch0000644000000000000000000000013712022362063010214 0ustar version=3 http://pypi.python.org/packages/source/T/TracAuthOpenId/TracAuthOpenId-(.+)\.tar\.gz debian/pycompat0000644000000000000000000000000211114251045010727 0ustar 2 debian/copyright0000644000000000000000000000346511410677367011145 0ustar This package was debianized by Jeremy Lainé on Thu, 29 Nov 2008 14:40:21 +0100. It was downloaded from http://bitbucket.org/Dalius/authopenid-plugin/ Upstream Author: Dalius Dobravolskas Copyright: Copyright (C) 2007 Dalius Dobravolskas All rights reserved. This software is licensed using the same licence as Trac: http://trac.edgewall.org/wiki/TracLicense. Trac is licensed under a modified BSD license, which follows: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.