summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-06-21 15:23:37 +0100
committerAsk Solem <ask@celeryproject.org>2012-06-21 15:23:37 +0100
commit5cedbd24a12284123ae90ef148e13284ed91d47e (patch)
tree157044429639af27eec046437cb5963cfaf4596c
parentdf458539b7b0a81c3f452405d3fc7f6612b47eda (diff)
downloadkombu-5cedbd24a12284123ae90ef148e13284ed91d47e.tar.gz
contrib directory now named 'extra'
-rw-r--r--MANIFEST.in2
-rw-r--r--docs/reference/kombu.utils.amq_manager.rst11
-rwxr-xr-xextra/doc2ghpages (renamed from contrib/doc2ghpages)0
-rwxr-xr-xextra/release/bump_version.py (renamed from contrib/release/bump_version.py)0
-rwxr-xr-xextra/release/doc4allmods (renamed from contrib/release/doc4allmods)0
-rwxr-xr-xextra/release/flakeplus.py (renamed from contrib/release/flakeplus.py)0
-rwxr-xr-xextra/release/jython-run-tests (renamed from contrib/release/jython-run-tests)0
-rwxr-xr-xextra/release/removepyc.sh (renamed from contrib/release/removepyc.sh)0
-rwxr-xr-xextra/release/verify-reference-index.sh (renamed from contrib/release/verify-reference-index.sh)0
l---------extra/requirements (renamed from contrib/requirements)0
-rw-r--r--pavement.py10
-rw-r--r--tox.ini14
12 files changed, 24 insertions, 13 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index c5b53960..35c0ac82 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -9,7 +9,7 @@ include README
include THANKS
include TODO
include setup.cfg
-recursive-include contrib *
+recursive-include extra *
recursive-include docs *
recursive-include kombu *.py
recursive-include requirements *.txt
diff --git a/docs/reference/kombu.utils.amq_manager.rst b/docs/reference/kombu.utils.amq_manager.rst
new file mode 100644
index 00000000..13e191eb
--- /dev/null
+++ b/docs/reference/kombu.utils.amq_manager.rst
@@ -0,0 +1,11 @@
+====================================================
+ Generic RabbitMQ manager - kombu.utils.amq_manager
+====================================================
+
+.. contents::
+ :local:
+.. currentmodule:: kombu.utils.amq_manager
+
+.. automodule:: kombu.utils.amq_manager
+ :members:
+ :undoc-members:
diff --git a/contrib/doc2ghpages b/extra/doc2ghpages
index 5ebc7aaa..5ebc7aaa 100755
--- a/contrib/doc2ghpages
+++ b/extra/doc2ghpages
diff --git a/contrib/release/bump_version.py b/extra/release/bump_version.py
index 02d8727c..02d8727c 100755
--- a/contrib/release/bump_version.py
+++ b/extra/release/bump_version.py
diff --git a/contrib/release/doc4allmods b/extra/release/doc4allmods
index 4651dcd4..4651dcd4 100755
--- a/contrib/release/doc4allmods
+++ b/extra/release/doc4allmods
diff --git a/contrib/release/flakeplus.py b/extra/release/flakeplus.py
index 6fe1f1fc..6fe1f1fc 100755
--- a/contrib/release/flakeplus.py
+++ b/extra/release/flakeplus.py
diff --git a/contrib/release/jython-run-tests b/extra/release/jython-run-tests
index cd4136c6..cd4136c6 100755
--- a/contrib/release/jython-run-tests
+++ b/extra/release/jython-run-tests
diff --git a/contrib/release/removepyc.sh b/extra/release/removepyc.sh
index 9aaf3658..9aaf3658 100755
--- a/contrib/release/removepyc.sh
+++ b/extra/release/removepyc.sh
diff --git a/contrib/release/verify-reference-index.sh b/extra/release/verify-reference-index.sh
index feaa0da9..feaa0da9 100755
--- a/contrib/release/verify-reference-index.sh
+++ b/extra/release/verify-reference-index.sh
diff --git a/contrib/requirements b/extra/requirements
index 41e330fa..41e330fa 120000
--- a/contrib/requirements
+++ b/extra/requirements
diff --git a/pavement.py b/pavement.py
index 22917080..a51cca73 100644
--- a/pavement.py
+++ b/pavement.py
@@ -63,12 +63,12 @@ def upload_docs(options):
@task
def autodoc(options):
- sh("contrib/release/doc4allmods kombu")
+ sh("extra/release/doc4allmods kombu")
@task
def verifyindex(options):
- sh("contrib/release/verify-reference-index.sh")
+ sh("extra/release/verify-reference-index.sh")
@task
@@ -80,7 +80,7 @@ def clean_readme(options):
@task
@needs("clean_readme")
def readme(options):
- sh("python contrib/release/sphinx-to-rst.py docs/templates/readme.txt \
+ sh("python extra/release/sphinx-to-rst.py docs/templates/readme.txt \
> README.rst")
sh("ln -sf README.rst README")
@@ -92,7 +92,7 @@ def readme(options):
def bump(options):
s = "-- '%s'" % (options.custom, ) \
if getattr(options, "custom", None) else ""
- sh("contrib/release/bump_version.py \
+ sh("extra/release/bump_version.py \
kombu/__init__.py README.rst %s" % (s, ))
@@ -135,7 +135,7 @@ def flake8(options):
])
def flakeplus(options):
noerror = getattr(options, "noerror", False)
- sh("python contrib/release/flakeplus.py kombu",
+ sh("python extra/release/flakeplus.py kombu",
ignore_error=noerror)
diff --git a/tox.ini b/tox.ini
index ef8d05f4..d7ea538d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,7 @@ recreate = True
basepython = python3.2
changedir = .tox
deps = -r{toxinidir}/requirements/default.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
{envbindir}/easy_install -U distribute
{envbindir}/pip install \
--download-cache={toxworkdir}/_download \
@@ -39,7 +39,7 @@ commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
basepython = python2.7
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
nosetests --with-xunit \
--xunit-file={toxinidir}/nosetests.xml \
--with-coverage3 --cover3-xml \
@@ -50,7 +50,7 @@ commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
basepython = python2.6
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
nosetests --with-xunit \
--xunit-file={toxinidir}/nosetests.xml \
--with-coverage3 --cover3-xml \
@@ -61,7 +61,7 @@ commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
basepython = python2.5
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
nosetests --with-xunit \
--xunit-file={toxinidir}/nosetests.xml \
--with-coverage3 --cover3-xml \
@@ -72,7 +72,7 @@ commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
basepython = pypy
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test-pypy.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
nosetests --with-xunit \
--xunit-file={toxinidir}/nosetests.xml \
--with-coverage3 --cover3-xml \
@@ -85,5 +85,5 @@ recreate = True
where = .tox
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test-jython.txt
-commands = {toxinidir}/contrib/release/removepyc.sh {toxinidir}
- {toxinidir}/contrib/release/jython-run-tests {toxinidir}
+commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
+ {toxinidir}/extra/release/jython-run-tests {toxinidir}