diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-10-24 14:14:24 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-24 14:14:24 -0400 | 
| commit | bc27c200ae7514fbab7de10ad3a30980ef8ef83f (patch) | |
| tree | fc7105921053d229c2bb4a8fd46fb64c6f8db0b9 | |
| parent | 2ec54419b923f9ce6ec480f94df3fc6c20021a4f (diff) | |
| parent | f18080976164308cc9a37f9349ecc3b0fce72ff5 (diff) | |
| download | astroconda-contrib-bc27c200ae7514fbab7de10ad3a30980ef8ef83f.tar.gz | |
Merge pull request #267 from jhunkeler/secretstorage
Initial commit; secretstorage (#56)
| -rw-r--r-- | secretstorage/bld.bat | 2 | ||||
| -rw-r--r-- | secretstorage/build.sh | 3 | ||||
| -rw-r--r-- | secretstorage/meta.yaml | 38 | 
3 files changed, 43 insertions, 0 deletions
diff --git a/secretstorage/bld.bat b/secretstorage/bld.bat new file mode 100644 index 0000000..c40a9bb --- /dev/null +++ b/secretstorage/bld.bat @@ -0,0 +1,2 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 diff --git a/secretstorage/build.sh b/secretstorage/build.sh new file mode 100644 index 0000000..8e25a14 --- /dev/null +++ b/secretstorage/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +$PYTHON setup.py install diff --git a/secretstorage/meta.yaml b/secretstorage/meta.yaml new file mode 100644 index 0000000..afa3f50 --- /dev/null +++ b/secretstorage/meta.yaml @@ -0,0 +1,38 @@ +{% set name = 'secretstorage' %} +{% set version = '2.3.1' %} +{% set number = '0' %} + +about: +  home: https://github.com/mitya57/{{ name }} +  license: BSD License +  summary: 'Python bindings to FreeDesktop.org Secret Service API' +  license_family: BSD + +package: +  name: {{ name }} +  version: {{ version }} + +build: +  skip: true [not linux] +  number: {{ number }} + +source: +  git_tag: {{ version }} +  git_url: https://github.com/mitya57/{{ name }}.git + +requirements: +  build: +    - python +    - dbus-python +    - setuptools +    - cryptography + +  run: +    - python +    - dbus-python +    - cryptography + +test: +  imports: +    - secretstorage +  | 
