From 5c5fc0ac07a183dbe847d8afabf0394be3c0eb52 Mon Sep 17 00:00:00 2001 From: Dan Blanchard Date: Tue, 19 Nov 2013 16:45:45 -0500 Subject: [PATCH] Add configparser --- configparser/bld.bat | 8 ++++++ configparser/build.sh | 9 +++++++ configparser/meta.yaml | 59 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 configparser/bld.bat create mode 100644 configparser/build.sh create mode 100644 configparser/meta.yaml diff --git a/configparser/bld.bat b/configparser/bld.bat new file mode 100644 index 000000000..87b1481d7 --- /dev/null +++ b/configparser/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/configparser/build.sh b/configparser/build.sh new file mode 100644 index 000000000..4d7fc032b --- /dev/null +++ b/configparser/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/configparser/meta.yaml b/configparser/meta.yaml new file mode 100644 index 000000000..7db8e189b --- /dev/null +++ b/configparser/meta.yaml @@ -0,0 +1,59 @@ +package: + name: configparser + version: 3.3.0r2 + +source: + fn: configparser-3.3.0r2.tar.gz + url: https://pypi.python.org/packages/source/c/configparser/configparser-3.3.0r2.tar.gz + md5: dda0e6a43e9d8767b36d10f1e6770f09 +# 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 + # + # - configparser = configparser:main + # + # Would create an entry point called configparser that calls configparser.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 + - distribute + + run: + - python + - distribute + +test: + # Python imports + imports: + - configparser + + # 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 additional test requirements here. For example + # - nose + +about: + home: http://docs.python.org/3/library/configparser.html + license: MIT License + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml