diff options
author | Todd Miller <jmiller@stsci.edu> | 2018-06-22 09:10:14 -0400 |
---|---|---|
committer | Todd Miller <jmiller@stsci.edu> | 2018-06-22 09:10:14 -0400 |
commit | ff7bb35c63ef298df2207dbfdc49e441cec0e2ae (patch) | |
tree | 7cb17a5919c32a5aae5f627a77a0db239d6d19af /pyopengl | |
parent | e3ccb95b25b6a978e8e2da7783cc53ec6b2d698a (diff) | |
parent | f6dbc50fd6569c11c4b0286f4d30a08a56b8463e (diff) | |
download | astroconda-contrib-ff7bb35c63ef298df2207dbfdc49e441cec0e2ae.tar.gz |
Merge branch 'master' of https://github.com/astroconda/astroconda-contrib into update-crds-version to resolve version conflicts.
Diffstat (limited to 'pyopengl')
-rw-r--r-- | pyopengl/bld.bat | 2 | ||||
-rw-r--r-- | pyopengl/build.sh | 1 | ||||
-rw-r--r-- | pyopengl/meta.yaml | 37 |
3 files changed, 40 insertions, 0 deletions
diff --git a/pyopengl/bld.bat b/pyopengl/bld.bat new file mode 100644 index 0000000..85a7bc3 --- /dev/null +++ b/pyopengl/bld.bat @@ -0,0 +1,2 @@ +%PYTHON% setup.py install +if errorlevel 1 exit 1 diff --git a/pyopengl/build.sh b/pyopengl/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/pyopengl/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/pyopengl/meta.yaml b/pyopengl/meta.yaml new file mode 100644 index 0000000..b7b47d3 --- /dev/null +++ b/pyopengl/meta.yaml @@ -0,0 +1,37 @@ +{% set badname = "PyOpenGL" %} +{% set name = badname|lower %} +{% set version = "3.1.1a1" %} +{% set number = '0' %} +{% set file_ext = "tar.gz" %} +{% set hash_type = "sha256" %} +{% set hash_value = "c96d909b359abe3271b746bacf7e6ba52935141e2406a8f90231e4e44dfa4075" %} + +about: + home: http://pyopengl.sourceforge.net + license: BSD License + summary: Standard OpenGL bindings for Python + +package: + name: '{{ name }}' + version: '{{ version }}' + +source: + fn: '{{ badname }}-{{ version }}.{{ file_ext }}' + url: https://pypi.io/packages/source/{{ badname[0] }}/{{ badname }}/{{ badname }}-{{ version }}.{{ file_ext }} + '{{ hash_type }}': '{{ hash_value }}' + +build: + number: {{ number }} + +requirements: + build: + - python {{ python }} + - setuptools + + run: + - python + +test: + imports: + - OpenGL + - OpenGL.GL |