--- apache-openid-2.0.1.orig/debian/changelog +++ apache-openid-2.0.1/debian/changelog @@ -0,0 +1,18 @@ +apache-openid (2.0.1-0ubuntu3) precise; urgency=low + + * Rebuild to drop python2.6 dependencies. + + -- Matthias Klose Sat, 31 Dec 2011 02:00:31 +0000 + +apache-openid (2.0.1-0ubuntu2) natty; urgency=low + + * Convert to from python-central to dh_python2 and get rid of cdbs to + simplify the build and fix the FTBFS. (LP: #747236) + + -- Barry Warsaw Thu, 07 Apr 2011 16:16:28 -0400 + +apache-openid (2.0.1-0ubuntu1) lucid; urgency=low + + * Initial release for Ubuntu 10.04. (LP: #532637) + + -- Szilveszter Farkas (Canonical) Sun, 07 Mar 2010 15:24:00 +0100 --- apache-openid-2.0.1.orig/debian/rules +++ apache-openid-2.0.1/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --with python2 --- apache-openid-2.0.1.orig/debian/control +++ apache-openid-2.0.1/debian/control @@ -0,0 +1,23 @@ +Source: apache-openid +Section: python +Priority: extra +Build-Depends: + debhelper (>= 7), + python (>= 2.6.6-3~), + python-setuptools +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Canonical ISD Hackers +Standards-Version: 3.9.1 +X-Python-Version: >= 2.6 + +Package: python-apache-openid +Architecture: all +Conflicts: apache-openid +Replaces: apache-openid +Depends: ${misc:Depends}, + ${python:Depends}, + libapache2-mod-python, + python-openid +Description: OpenID consumer module for Apache + This is a library that you can use with Apache web server and mod_python + to enable OpenID access control to web resources. --- apache-openid-2.0.1.orig/debian/copyright +++ apache-openid-2.0.1/debian/copyright @@ -0,0 +1,111 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +Upstream-Name: Apache-OpenID +Upstream-Maintainer: Canonical ISD Hackers +Source: https://launchpad.net/apache-openid + +Files: apache_openid/* +Copyright: 2005, JanRain, Inc. + 2009, 2010, Canonical Ltd +License: GPL-3 + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. + +Files: debian/* +Copyright: 2009, 2010, Canonical Ltd +License: GPL-3 + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. + +Files: examples/* +Copyright: 2009, 2010, Canonical Ltd +License: GPL-3 + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. + +Files: setup.py +Copyright: Django Software Foundation and individual contributors. + 2009, 2010, Canonical Ltd +License: BSD and GPL-3 + 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. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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. + . + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the full text of the GNU General Public + License version 3 can be found in the file + `/usr/share/common-licenses/GPL-3'. --- apache-openid-2.0.1.orig/debian/pycompat +++ apache-openid-2.0.1/debian/pycompat @@ -0,0 +1 @@ +2 --- apache-openid-2.0.1.orig/debian/watch +++ apache-openid-2.0.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://launchpad.net/apache-openid/+download http://launchpad.net/apache-openid/2.x/\d[^/]+/\+download/apache-openid-(\d.*)\.tar\.gz \ No newline at end of file --- apache-openid-2.0.1.orig/debian/compat +++ apache-openid-2.0.1/debian/compat @@ -0,0 +1 @@ +7 --- apache-openid-2.0.1.orig/debian/docs +++ apache-openid-2.0.1/debian/docs @@ -0,0 +1,2 @@ +examples/ +README