From 5fca2fc1ac7b520752735f1ba31614c64bcfe7c6 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Mon, 22 Jul 2013 16:38:19 -0500 Subject: [PATCH] Add amqp --- amqp/bld.bat | 8 +++++++ amqp/build.sh | 9 ++++++++ amqp/meta.yaml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 amqp/bld.bat create mode 100644 amqp/build.sh create mode 100644 amqp/meta.yaml diff --git a/amqp/bld.bat b/amqp/bld.bat new file mode 100644 index 000000000..87b1481d7 --- /dev/null +++ b/amqp/bld.bat @@ -0,0 +1,8 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 + +:: Add more build steps here, if they are necessary. + +:: See +:: http://docs.continuum.io/conda/build.html +:: for a list of environment variables that are set during the build process. diff --git a/amqp/build.sh b/amqp/build.sh new file mode 100644 index 000000000..4d7fc032b --- /dev/null +++ b/amqp/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +$PYTHON setup.py install + +# Add more build steps here, if they are necessary. + +# See +# http://docs.continuum.io/conda/build.html +# for a list of environment variables that are set during the build process. diff --git a/amqp/meta.yaml b/amqp/meta.yaml new file mode 100644 index 000000000..63e1e0421 --- /dev/null +++ b/amqp/meta.yaml @@ -0,0 +1,59 @@ +package: + name: amqp + version: 1.0.12 + +source: + fn: amqp-1.0.12.tar.gz + url: https://pypi.python.org/packages/source/a/amqp/amqp-1.0.12.tar.gz + md5: 1017ab105af25a6b5b2253adcb7cc5a6 +# patches: + # List any patch files here + # - fix.patch + +# build: + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - amqp:main + # + # Would call amqp.main() + + # If this is a new build for the same version, increment the build + # number. If you do not include this key, it defaults to 0. + # number: 1 + +requirements: + build: + - python + # If setuptools is required to run setup.py, add distribute to the build + # requirements. + # + - distribute + + run: + - python + +test: + # Python imports + imports: + - amqp + + # commands: + # You can put test commands to be run here. Use this to test that the + # entry points work. + + # You can also put a file called run_test.py in the recipe that will be run + # at test time. + + # requires: + # Put any test requirements here. For example + # - nose + +about: + home: http://github.com/celery/py-amqp + license: BSD License or GNU Library or Lesser General Public License (LGPL) + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml