diff --git a/recipes/rsasecure_login/LICENSE.txt b/recipes/rsasecure_login/LICENSE.txt new file mode 100644 index 0000000000000..05fd93ee122e1 --- /dev/null +++ b/recipes/rsasecure_login/LICENSE.txt @@ -0,0 +1,27 @@ +Copyright (c) 2015-2021, conda-forge +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of staged-recipes nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/recipes/rsasecure_login/meta.yaml b/recipes/rsasecure_login/meta.yaml new file mode 100644 index 0000000000000..678cdd4149ec9 --- /dev/null +++ b/recipes/rsasecure_login/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "rsasecure_login" %} +{% set version = "1.0" %} +{% set sha256 = "48a1e4011ef624481644560546c8ccdb8d210b44386b3a8824ced6404dece652" %} + +package: + name: {{ name }} + version: {{ version }} + +source: + url: https://github.com/milljm/{{ name }}/archive/v{{ version }}.tar.gz + sha256: {{ sha256 }} + +build: + number: 0 + noarch: python + script: {{ PYTHON }} -m pip install . --no-deps -vv --upgrade-strategy only-if-needed --use-feature=in-tree-build + entry_points: + - rsasecure_login = rsasecure_login.__main__:main + +requirements: + host: + - python >=3.6 + - requests + - conda + - pip + run: + - python >=3.6 + - requests + - conda + +test: + imports: + - rsasecure_login + commands: + - rsasecure_login --help + +about: + home: https://github.com/milljm/rsasecure_login + license: BSD-3-Clause OR MIT + license_file: LICENSE.txt + summary: Install Conda packages protected by an RSASecurID location + doc_url: https://github.com/milljm/rsasecure_login + dev_url: https://github.com/milljm/rsasecure_login + +extra: + recipe-maintainers: + - milljm