Skip to content

Commit

Permalink
Merge pull request #6855 from jjhelmus/twine_deps
Browse files Browse the repository at this point in the history
New twine dependencies: cmarkgfm and readme_renderer
  • Loading branch information
SylvainCorlay authored Feb 15, 2019
2 parents 804a1bd + cbb0a19 commit 1cdd942
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
43 changes: 43 additions & 0 deletions recipes/cmarkgfm/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{% set name = "cmarkgfm" %}
{% set version = "0.4.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f20900f16377f2109783ae9348d34bc80530808439591c3d3df73d5c7ef1a00c

build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv"

requirements:
build:
- {{ compiler('c') }} # [not (win and py27)]
host:
- cffi >=1.0.0
- pip
- python
- m2w64-toolchain # [win and py27]
- libpython # [win and py27]
run:
- cffi >=1.0.0
- python
- m2w64-gcc-libs # [win and py27]

test:
imports:
- cmarkgfm

about:
home: https://github.com/jonparrott/cmarkgfm
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: Minimal bindings to GitHub's fork of cmark

extra:
recipe-maintainers:
- jjhelmus
45 changes: 45 additions & 0 deletions recipes/readme_renderer/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "readme_renderer" %}
{% set version = "22.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 237ca8705ffea849870de41101dba41543561da05c0ae45b2f1c547efa9843d2

build:
number: 0
noarch: python
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vvv "

requirements:
host:
- python
- pip
run:
- bleach >=2.1.0
- cmarkgfm >=0.2.0
- docutils >=0.13.1
- future
- pygments
- python
- setuptools
- six

test:
imports:
- readme_renderer
- readme_renderer.integration

about:
home: https://github.com/pypa/readme_renderer
license: Apache Software
license_family: APACHE
license_file: LICENSE
summary: readme_renderer is a library for rendering "readme" descriptions for Warehouse

extra:
recipe-maintainers:
- jjhelmus

0 comments on commit 1cdd942

Please sign in to comment.