From b0b0add1e67d2726c93aa410d96e1c3da6ea1292 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 24 Apr 2018 18:03:35 +0200 Subject: [PATCH] Add sphinxcontrib-programoutput to the list of beat development deps --- conda/beat-devel/meta.yaml | 1 + conda/sphinxcontrib-programoutput/meta.yaml | 48 +++++++++++++++++++++ scripts/build.sh | 1 + 3 files changed, 50 insertions(+) create mode 100644 conda/sphinxcontrib-programoutput/meta.yaml diff --git a/conda/beat-devel/meta.yaml b/conda/beat-devel/meta.yaml index 190b101c..4f0b05c2 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 00000000..fe9a8702 --- /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 69a801f3..a723876a 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') -- GitLab