diff --git a/conda/beat-devel/meta.yaml b/conda/beat-devel/meta.yaml index 190b101c86e8f46925d15e726ea145ce854d5dd8..4f0b05c264d20a2cd877b1e151dbec6e59293c59 100644 --- a/conda/beat-devel/meta.yaml +++ b/conda/beat-devel/meta.yaml @@ -22,6 +22,7 @@ requirements: - termcolor 1.1.0 - colorlog 3.1.4 - oset 0.1.3 + - sphinxcontrib-programoutput 0.11 run: - python run_constrained: diff --git a/conda/sphinxcontrib-programoutput/meta.yaml b/conda/sphinxcontrib-programoutput/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..fe9a870297985e38f59b7134e55ec94c70e76d17 --- /dev/null +++ b/conda/sphinxcontrib-programoutput/meta.yaml @@ -0,0 +1,48 @@ +{% set name = "sphinxcontrib-programoutput" %} +{% set version = "0.11" %} +{% set sha256 = "cbec3ee1c3abd09e105115ab69cb5ade8ca1be9811565a844f973e93e0314837" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: {{ sha256 }} + +build: + number: 0 + noarch: python + script: python setup.py install --single-version-externally-managed --record record.txt + +requirements: + build: + - python + - setuptools + - sphinx + + run: + - python + - sphinx + +test: + imports: + - sphinxcontrib.programoutput + +about: + home: https://bitbucket.org/birkenfeld/sphinx-contrib + license: BSD 2-clause + license_family: BSD + license_file: LICENSE + summary: 'Sphinx extension to include program output' + + description: | + A Sphinx extension to literally insert the output of arbitrary commands + into documents, helping you to keep your command examples up to date. + doc_url: https://sphinxcontrib-programoutput.readthedocs.org/ + dev_url: https://bitbucket.org/birkenfeld/sphinx-contrib + +extra: + recipe-maintainers: + - holgern diff --git a/scripts/build.sh b/scripts/build.sh index 69a801f3183aadbc38da492a82da234b9577f29b..a723876ac3425431bcc8b6031866badd818f0333 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -39,6 +39,7 @@ PACKAGES+=('conda/websocket-client') PACKAGES+=('conda/docker-py') PACKAGES+=('conda/colorlog') PACKAGES+=('conda/oset') +PACKAGES+=('conda/sphinxcontrib-programoutput') PACKAGES+=('conda/bob-devel') PACKAGES+=('conda/beat-devel')