diff --git a/radioconda.yaml b/radioconda.yaml index d8aa714..57e9566 100644 --- a/radioconda.yaml +++ b/radioconda.yaml @@ -1,7 +1,6 @@ name: radioconda channels: - conda-forge - - ryanvolz # [win] platforms: - linux-64 - osx-64 @@ -24,7 +23,7 @@ dependencies: - python # restrict to python 3.8 on Windows for Windows 7 compatibility - python 3.8.* # [win] - - radioconda_console_shortcut # [win] + - miniforge_console_shortcut # [win] - rtl-sdr - scipy - soapysdr diff --git a/radioconda_console_shortcut/.gitattributes b/radioconda_console_shortcut/.gitattributes deleted file mode 100644 index 974953e..0000000 --- a/radioconda_console_shortcut/.gitattributes +++ /dev/null @@ -1,7 +0,0 @@ -* text=auto - -*.patch binary -*.diff binary -meta.yaml text eol=lf -build.sh text eol=lf -bld.bat text eol=crlf diff --git a/radioconda_console_shortcut/LICENSE.txt b/radioconda_console_shortcut/LICENSE.txt deleted file mode 100644 index 9aab681..0000000 --- a/radioconda_console_shortcut/LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -BSD 3-Clause License - -Copyright (c) 2012, Anaconda, Inc. -Copyright (c) 2015-2019, 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 the copyright holder 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/radioconda_console_shortcut/bld.bat b/radioconda_console_shortcut/bld.bat deleted file mode 100755 index bc587b9..0000000 --- a/radioconda_console_shortcut/bld.bat +++ /dev/null @@ -1,7 +0,0 @@ -set MENU_DIR="%PREFIX%\Menu" -if not exist %MENU_DIR% mkdir %MENU_DIR% - -:: icon is in public domain: https://github.com/paomedia/small-n-flat - -copy "%RECIPE_DIR%\console_shortcut.ico" %MENU_DIR% -copy "%RECIPE_DIR%\console_shortcut.json" %MENU_DIR% diff --git a/radioconda_console_shortcut/console_shortcut.ico b/radioconda_console_shortcut/console_shortcut.ico deleted file mode 100644 index cf824a4..0000000 Binary files a/radioconda_console_shortcut/console_shortcut.ico and /dev/null differ diff --git a/radioconda_console_shortcut/console_shortcut.json b/radioconda_console_shortcut/console_shortcut.json deleted file mode 100644 index c87c4f7..0000000 --- a/radioconda_console_shortcut/console_shortcut.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "menu_name": "radioconda", - "menu_items": - [ - { - "name": "Conda Prompt", - "system": "%windir%\\system32\\cmd.exe", - "scriptarguments": ["/K", "${ROOT_PREFIX}\\Scripts\\activate.bat", "${PREFIX}"], - "icon": "${MENU_DIR}/console_shortcut.ico" - } - ] -} diff --git a/radioconda_console_shortcut/meta.yaml b/radioconda_console_shortcut/meta.yaml deleted file mode 100644 index af3729f..0000000 --- a/radioconda_console_shortcut/meta.yaml +++ /dev/null @@ -1,25 +0,0 @@ -{% set version = "1.0" %} -{% set build = 0 %} - -package: - name: radioconda_console_shortcut - version: {{ version }} - -build: - number: {{ build }} - skip: True # [not win] - -test: - commands: - - if not exist %PREFIX%\\Menu\\console_shortcut.json exit 1 - - if not exist %PREFIX%\\Menu\\console_shortcut.ico exit - -about: - home: https://github.com/ryanvolz/radioconda - summary: Command prompt shortcut for Windows with base environment activated - license: BSD-3-Clause - license_file: LICENSE.txt - -extra: - recipe-maintainers: - - ryanvolz