summaryrefslogtreecommitdiff
path: root/semantic_version
diff options
context:
space:
mode:
authorTodd Miller <jmiller@stsci.edu>2018-10-08 11:29:58 -0400
committerTodd Miller <jmiller@stsci.edu>2018-10-08 11:29:58 -0400
commit829b9f0571af9ed22114b70071a1ae7317706e4c (patch)
treef44e9bc0352998d09c28934ee0760a5b01c632a1 /semantic_version
parentff7bb35c63ef298df2207dbfdc49e441cec0e2ae (diff)
parentd75fa7d104a59296efa95bafb7c17b46e7e18dd6 (diff)
downloadastroconda-contrib-829b9f0571af9ed22114b70071a1ae7317706e4c.tar.gz
Merge branch 'master' of https://github.com/astroconda/astroconda-contrib into update-crds-version
Diffstat (limited to 'semantic_version')
-rw-r--r--semantic_version/bld.bat1
-rw-r--r--semantic_version/build.sh1
-rw-r--r--semantic_version/meta.yaml32
3 files changed, 34 insertions, 0 deletions
diff --git a/semantic_version/bld.bat b/semantic_version/bld.bat
new file mode 100644
index 0000000..39b5e1f
--- /dev/null
+++ b/semantic_version/bld.bat
@@ -0,0 +1 @@
+%PYTHON% setup.py install
diff --git a/semantic_version/build.sh b/semantic_version/build.sh
new file mode 100644
index 0000000..5a5aeeb
--- /dev/null
+++ b/semantic_version/build.sh
@@ -0,0 +1 @@
+$PYTHON setup.py install
diff --git a/semantic_version/meta.yaml b/semantic_version/meta.yaml
new file mode 100644
index 0000000..633f047
--- /dev/null
+++ b/semantic_version/meta.yaml
@@ -0,0 +1,32 @@
+{% set name = 'semantic_version' %}
+{% set version = '2.6.0' %}
+{% set number = '0' %}
+
+about:
+ home: https://github.com/rbarrois/python-semanticversion
+ license: BSD
+ summary: A library implementing the 'Semver' scheme.
+
+package:
+ name: {{ name }}
+ version: {{ version }}
+
+build:
+ number: {{ number }}
+
+source:
+ fn: {{ name }}-{{ version }}.tar.gz
+ url: https://pypi.python.org/packages/72/83/f76958017f3094b072d8e3a72d25c3ed65f754cc607fdb6a7b33d84ab1d5/{{ name }}-{{ version }}.tar.gz
+ md5: 4388a5df93e4dbe7b48767b3694bb761
+
+requirements:
+ build:
+ - setuptools
+ - python {{ python }}
+
+ run:
+ - python
+
+test:
+ imports:
+ - semantic_version