diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 16:36:56 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-10-17 16:36:56 -0400 | 
| commit | 3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8 (patch) | |
| tree | d599940979a256be5ccf00dd3a344bbc0443f0d1 /sphinx_rtd_theme | |
| parent | feb18f655ecf508a7f83a558eae8909f77163f0a (diff) | |
| download | astroconda-etc-3b51cabe9c2a9b763bbd8d7f5fe1f8e28a3eb5e8.tar.gz | |
Initial commit; OOB packages
Diffstat (limited to 'sphinx_rtd_theme')
| -rw-r--r-- | sphinx_rtd_theme/bld.bat | 8 | ||||
| -rw-r--r-- | sphinx_rtd_theme/build.sh | 9 | ||||
| -rw-r--r-- | sphinx_rtd_theme/meta.yaml | 62 | 
3 files changed, 79 insertions, 0 deletions
| diff --git a/sphinx_rtd_theme/bld.bat b/sphinx_rtd_theme/bld.bat new file mode 100644 index 0000000..9146a4b --- /dev/null +++ b/sphinx_rtd_theme/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/sphinx_rtd_theme/build.sh b/sphinx_rtd_theme/build.sh new file mode 100644 index 0000000..3f50b74 --- /dev/null +++ b/sphinx_rtd_theme/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/sphinx_rtd_theme/meta.yaml b/sphinx_rtd_theme/meta.yaml new file mode 100644 index 0000000..349a4b4 --- /dev/null +++ b/sphinx_rtd_theme/meta.yaml @@ -0,0 +1,62 @@ +package: +  name: sphinx_rtd_theme +  version: "0.1.10a0" + +source: +  fn: sphinx_rtd_theme-0.1.10a0.tar.gz +  url: https://pypi.python.org/packages/da/6b/1b75f13d8aa3333f19c6cdf1f0bc9f52ea739cae464fbee050307c121857/sphinx_rtd_theme-0.1.10a0.tar.gz +  md5: 83bd95cae55aa8b773a8cc3a41094282 +#  patches: +   # List any patch files here +   # - fix.patch + +# build: +  # noarch_python: True +  # preserve_egg_dir: True +  # entry_points: +    # Put any entry points (scripts to be generated automatically) here. The +    # syntax is module:function.  For example +    # +    # - sphinx_rtd_theme = sphinx_rtd_theme:main +    # +    # Would create an entry point called sphinx_rtd_theme that calls sphinx_rtd_theme.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 + +  run: +    - python + +test: +  # Python imports +  imports: +    - sphinx_rtd_theme + +  # 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: https://github.com/snide/sphinx_rtd_theme/ +  license: BSD License +  summary: 'ReadTheDocs.org theme for Sphinx, 2013 version.' +  license_family: BSD + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml | 
