--- python-repoze.what-1.0.9.orig/debian/docs +++ python-repoze.what-1.0.9/debian/docs @@ -0,0 +1,2 @@ +README.txt +docs/build/html/ --- python-repoze.what-1.0.9.orig/debian/pycompat +++ python-repoze.what-1.0.9/debian/pycompat @@ -0,0 +1 @@ +2 --- python-repoze.what-1.0.9.orig/debian/control +++ python-repoze.what-1.0.9/debian/control @@ -0,0 +1,58 @@ +Source: python-repoze.what +Section: python +Priority: optional +Maintainer: Debian QA Group +Build-Depends: + debhelper (>= 7), + cdbs, + python, + python-support, + python-setuptools, + python-sphinx, + python-paste, + python-repoze.who, + python-repoze.who-plugins, + python-pastedeploy, + python-zope.interface, + python-nose, + python-coverage +Standards-Version: 3.8.4 +Homepage: http://www.repoze.org/ +Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-repoze.what/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-repoze.what/trunk/ + +Package: python-repoze.what +Architecture: all +Depends: + ${misc:Depends}, + ${python:Depends}, + python-repoze.who (>= 1.0), + python-repoze.who (<= 1.99), + python-repoze.who-plugins, + python-paste (>= 1.7), + python-zope.interface +Recommends: python-pkg-resources +Suggests: libjs-jquery +Description: authorization framework for Python WSGI applications + repoze.what is an authorization framework for WSGI applications, + based on repoze.who (which deals with authentication and + identification). + . + On the one hand, it enables an authorization system based on the + groups to which the authenticated or anonymous user belongs and the + permissions granted to such groups by loading these groups and + permissions into the request on the way in to the downstream WSGI + application. + . + And on the other hand, it enables you the programmer to manage groups + and permissions from the application itself or another program, under + a backend-independent API. For example, it would be easy to switch + from one back-end to another, and even use this framework to migrate + the data. + . + This is just the authorization pattern it supports out-of-the-box, + but it supports other authorization patterns with custom + predicates. It's highly extensible, so it's very unlikely that it + will get in the way and can be extended to check for many conditions + (e.g.: checking that the user comes from a given country, based on + her IP address). --- python-repoze.what-1.0.9.orig/debian/watch +++ python-repoze.what-1.0.9/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://pypi.python.org/packages/source/r/repoze.what/repoze.what-([0-9a-z.]*)\.tar\.gz --- python-repoze.what-1.0.9.orig/debian/changelog +++ python-repoze.what-1.0.9/debian/changelog @@ -0,0 +1,43 @@ +python-repoze.what (1.0.9-2) unstable; urgency=low + + * Orphan package. + + -- Stefano Zacchiroli Thu, 03 May 2012 10:44:58 +0200 + +python-repoze.what (1.0.9-1) unstable; urgency=low + + * New upstream release + * Add python-repoze.who (<= 1.99) to Depends + * Add libjs-jquery to Suggests and use its jquery.js instead of embedded one + * bump Standards-Version to 3.8.4 (no changes needed) + + -- Piotr Ożarowski Mon, 19 Apr 2010 23:15:43 +0200 + +python-repoze.what (1.0.8-3) unstable; urgency=low + + * first upload to unstable + * debian/control: add Piotr to Uploaders + + -- Stefano Zacchiroli Sun, 02 Aug 2009 13:45:54 +0200 + +python-repoze.what (1.0.8-2) experimental; urgency=low + + [ Piotr Ożarowski ] + * Add python-zopeinterface to Depends + * Add python-pkg-resources to Recommends + * Bump minimum required versions: + - python-paste to 1.7 + - python-repoze.who to 1.0 + + [ Stefano Zacchiroli ] + * use "python-zope.interface" instead of "python-zopeinterface" (new + package name, by the Zope team) + * bump Standards-Version to 3.8.2 (no changes needed) + + -- Stefano Zacchiroli Sun, 05 Jul 2009 16:10:33 +0200 + +python-repoze.what (1.0.8-1) experimental; urgency=low + + * First release (Closes: #531045) + + -- Stefano Zacchiroli Fri, 29 May 2009 22:56:24 +0200 --- python-repoze.what-1.0.9.orig/debian/copyright +++ python-repoze.what-1.0.9/debian/copyright @@ -0,0 +1,53 @@ +This package was debianized by Stefano Zacchiroli on +Fri, 29 May 2009 23:15:06 +0200. + +Author: Agendaless Consulting + +Files: * +Copyright: Copyright © 2007 Agendaless Consulting and Contributors +License: + A copyright notice accompanies this license document that identifies + the copyright holders. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions in source code must retain the accompanying + copyright notice, this list of conditions, and the following + disclaimer. + + 2. Redistributions in binary form must reproduce the accompanying + copyright notice, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + 3. Names of the copyright holders must not be used to endorse or + promote products derived from this software without prior + written permission from the copyright holders. + + 4. If any files are modified, you must cause the modified files to + carry prominent notices stating that you changed the files and + the date of any change. + + Disclaimer + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND + ANY EXPRESSED 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 + HOLDERS 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. + +Files: debian/* +Copyright: Copyright © 2009 Stefano Zacchiroli +License: GPL-3+ + On Debian systems the full text of the GNU General Public License can + be found in the `/usr/share/common-licenses/GPL-3' file. + --- python-repoze.what-1.0.9.orig/debian/doc-base +++ python-repoze.what-1.0.9/debian/doc-base @@ -0,0 +1,8 @@ +Document: pytyon-repoze.what +Title: Documentation for repoze.what +Abstract: Documentation for repoze.what: authorization framework for Python WSGI applications +Section: Programming/Python + +Format: HTML +Index: /usr/share/doc/python-repoze.what/html/index.html +Files: /usr/share/doc/python-repoze.what/html/* --- python-repoze.what-1.0.9.orig/debian/compat +++ python-repoze.what-1.0.9/debian/compat @@ -0,0 +1 @@ +7 --- python-repoze.what-1.0.9.orig/debian/rules +++ python-repoze.what-1.0.9/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f +DEB_PYTHON_SYSTEM = pysupport +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +PKG = python-repoze.what +DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed +DEB_COMPRESS_EXCLUDE += .js + +build/$(PKG):: + $(MAKE) -C docs/ html + dh_link /usr/share/javascript/jquery/jquery.js \ + /usr/share/doc/python-repoze.what/html/_static/jquery.js +cleanbuilddir/$(PKG):: + $(MAKE) -C docs/ clean --- python-repoze.what-1.0.9.orig/debian/source/format +++ python-repoze.what-1.0.9/debian/source/format @@ -0,0 +1 @@ +1.0