Skip to content

Commit

Permalink
contrib directory now named 'extra'
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jun 21, 2012
1 parent df45853 commit 5cedbd2
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 13 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions docs/reference/kombu.utils.amq_manager.rst
Original file line number Diff line number Diff line change
@@ -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:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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")

Expand All @@ -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, ))


Expand Down Expand Up @@ -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)


Expand Down
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand All @@ -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 \
Expand All @@ -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 \
Expand All @@ -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 \
Expand All @@ -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}

0 comments on commit 5cedbd2

Please sign in to comment.