--- python-carrot-0.10.3.orig/debian/control +++ python-carrot-0.10.3/debian/control @@ -0,0 +1,27 @@ +Source: python-carrot +Section: python +Priority: optional +Maintainer: David Watson +Uploaders: David Watson +Build-Depends: debhelper (>= 7.0.50), python-support, python-setuptools +Build-Depends-Indep: python-django, python-sphinx, libjs-jquery +Standards-Version: 3.8.4 +Homepage: http://pypi.python.org/pypi/carrot + +Package: python-carrot +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-anyjson +Recommends: python-amqplib, python-stompy +Description: An AMQP messaging queue framework + AMQP is the Advanced Message Queuing Protocol, an open standard protocol + for message orientation, queuing, routing, reliability and security. + . + The aim of carrot is to make messaging in Python as easy as possible by + providing a high-level interface for producing and consuming messages. + At the same time it is a goal to re-use what is already available as much + as possible. + . + carrot has pluggable messaging back-ends, so it is possible to support + several messaging systems. Currently, there is support for AMQP (py-amqplib) + and STOMP (python-stomp). There is also a in-memory backend for testing + purposes that uses the Python queue module. --- python-carrot-0.10.3.orig/debian/pyversions +++ python-carrot-0.10.3/debian/pyversions @@ -0,0 +1 @@ +2.5- --- python-carrot-0.10.3.orig/debian/changelog +++ python-carrot-0.10.3/debian/changelog @@ -0,0 +1,24 @@ +python-carrot (0.10.3-1) unstable; urgency=low + + * New upstream release + + -- David Watson Thu, 18 Mar 2010 21:48:44 +0000 + +python-carrot (0.10.1-1) unstable; urgency=low + + * New upstream release + * Add build-dependency on python-django. (Closes: #560583) + + -- David Watson Fri, 22 Jan 2010 15:14:28 +0000 + +python-carrot (0.6.0-2) unstable; urgency=low + + * Depend on python 2.5 or greater. + + -- David Watson Fri, 06 Nov 2009 13:27:47 +0000 + +python-carrot (0.6.0-1) unstable; urgency=low + + * Initial release (Closes: #551982) + + -- David Watson Wed, 21 Oct 2009 15:44:26 +0100 --- python-carrot-0.10.3.orig/debian/watch +++ python-carrot-0.10.3/debian/watch @@ -0,0 +1,5 @@ +version=3 + +# Current version from Python cheeseshop. +http://pypi.python.org/packages/source/c/carrot/carrot-(.+).tar.gz + --- python-carrot-0.10.3.orig/debian/python-carrot.docs +++ python-carrot-0.10.3/debian/python-carrot.docs @@ -0,0 +1,4 @@ +docs.debian/.build/html +FAQ +README +TODO --- python-carrot-0.10.3.orig/debian/copyright +++ python-carrot-0.10.3/debian/copyright @@ -0,0 +1,52 @@ +This work was packaged for Debian by: + + David Watson on Wed, 21 Oct 2009 15:44:26 +0100 + +It was downloaded from http://pypi.python.org/pypi/carrot + +Upstream Authors: + + Ask Solem + Travis Cline + Rune Halvorsen + Sean Creeley + Jason Cater + Ian Struble + Patrick Schneider + +Copyright: + + Copyright (C) 2009 Ask Solem + +License: + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * 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. + + Neither the name of Ask Solem 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. + +The Debian packaging is: + + Copyright (C) 2009 David Watson + +and is licensed under the BSD License ( as above ). --- python-carrot-0.10.3.orig/debian/rules +++ python-carrot-0.10.3/debian/rules @@ -0,0 +1,35 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_clean: + rm -rf docs.debian + dh_auto_clean + +override_dh_auto_build: + dh_auto_build + + # Make the documentation. + cp -r docs docs.debian + make -C docs.debian html + rm -rf docs.debian/_build/html/_sources/ + +override_dh_installdocs: + dh_installdocs + # Remove embedded copy of libjs-jquery + cd debian/python-carrot/usr/share/doc/python-carrot/html/_static \ + && rm jquery.js \ + && ln -s ../../../../javascript/jquery/jquery.js . + +override_dh_compress: + dh_compress -X .js --- python-carrot-0.10.3.orig/debian/python-carrot.doc-base +++ python-carrot-0.10.3/debian/python-carrot.doc-base @@ -0,0 +1,8 @@ +Document: python-carrot +Title: Python Carrot Documentation +Author: Ask Solem +Section: Programming/Python + +Format: HTML +Index: /usr/share/doc/python-carrot/html/index.html +Files: /usr/share/doc/python-carrot/html/*.html --- python-carrot-0.10.3.orig/debian/compat +++ python-carrot-0.10.3/debian/compat @@ -0,0 +1 @@ +7