From 3e5683ad6aaca3887e20ede31213ab9a94739976 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Tue, 13 May 2014 13:00:13 -0600 Subject: [PATCH] Add sphinxjp.themecore --- sphinxjp.themecore/bld.bat | 8 +++++ sphinxjp.themecore/build.sh | 9 +++++ sphinxjp.themecore/meta.yaml | 66 ++++++++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 sphinxjp.themecore/bld.bat create mode 100644 sphinxjp.themecore/build.sh create mode 100644 sphinxjp.themecore/meta.yaml diff --git a/sphinxjp.themecore/bld.bat b/sphinxjp.themecore/bld.bat new file mode 100644 index 000000000..87b1481d7 --- /dev/null +++ b/sphinxjp.themecore/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/sphinxjp.themecore/build.sh b/sphinxjp.themecore/build.sh new file mode 100644 index 000000000..4d7fc032b --- /dev/null +++ b/sphinxjp.themecore/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/sphinxjp.themecore/meta.yaml b/sphinxjp.themecore/meta.yaml new file mode 100644 index 000000000..efd527932 --- /dev/null +++ b/sphinxjp.themecore/meta.yaml @@ -0,0 +1,66 @@ +package: + name: sphinxjp.themecore + version: !!str 0.2.0 + +source: + fn: sphinxjp.themecore-0.2.0.tar.gz + url: https://pypi.python.org/packages/source/s/sphinxjp.themecore/sphinxjp.themecore-0.2.0.tar.gz + md5: 20c4d0ca1b4447fcda6f1b1638006caa +# patches: + # List any patch files here + # - fix.patch + +build: + preserve_egg_dir: True + #entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - sphinxjp.themecore = sphinxjp.themecore:main + # + # Would create an entry point called sphinxjp.themecore that calls sphinxjp.themecore.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 + - setuptools + - docutils + - sphinx + + run: + - python + - setuptools + - docutils + - sphinx + +test: + # Python imports + imports: + - sphinxjp + - sphinxjp.themecore + + #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://bitbucket.org/shimizukawa/sphinxjp.themecore + license: MIT License + summary: 'A sphinx theme plugin support extension. #sphinxjp' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml