From 43829aeda615dac4eb59313f5f9e940517f2e8e3 Mon Sep 17 00:00:00 2001 From: conda-forge-admin Date: Fri, 20 Dec 2024 15:48:43 +0000 Subject: [PATCH] Removed recipes (facadedevice, wcurl) after converting into feedstocks. [ci skip] --- recipes/facadedevice/meta.yaml | 47 ---------------------------------- recipes/wcurl/bld.bat | 15 ----------- recipes/wcurl/build.sh | 4 --- recipes/wcurl/conda-forge.yml | 3 --- recipes/wcurl/meta.yaml | 44 ------------------------------- recipes/wcurl/wcurl.cmd | 7 ----- 6 files changed, 120 deletions(-) delete mode 100644 recipes/facadedevice/meta.yaml delete mode 100644 recipes/wcurl/bld.bat delete mode 100644 recipes/wcurl/build.sh delete mode 100644 recipes/wcurl/conda-forge.yml delete mode 100644 recipes/wcurl/meta.yaml delete mode 100644 recipes/wcurl/wcurl.cmd diff --git a/recipes/facadedevice/meta.yaml b/recipes/facadedevice/meta.yaml deleted file mode 100644 index 29bf88237f95d..0000000000000 --- a/recipes/facadedevice/meta.yaml +++ /dev/null @@ -1,47 +0,0 @@ -{% set name = "facadedevice" %} -{% set version = "1.0.6" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/facadedevice-{{ version }}.tar.gz - sha256: 0b8a4d11eb56d4eb4384026908259cb3f7e36e45b84430cc245b94946a05b36d - -build: - noarch: python - script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation - number: 0 - -requirements: - host: - - python {{ python_min }} - - pip - - setuptools - - setuptools-scm - run: - - python >={{ python_min }} - - pytango >=9.2.1 - - numpy >=1.8 - -test: - imports: - - facadedevice - commands: - - pip check - requires: - - pip - - python {{ python_min }} - -about: - home: https://gitlab.com/MaxIV/tango-facadedevice - summary: Provide a descriptive interface for reactive high-level Tango devices. - license: GPL-3.0-or-later - license_file: LICENSE.txt - doc_url: https://tango-facadedevice.readthedocs.io/ - dev_url: https://gitlab.com/MaxIV/tango-facadedevice - -extra: - recipe-maintainers: - - beenje diff --git a/recipes/wcurl/bld.bat b/recipes/wcurl/bld.bat deleted file mode 100644 index e617301cbb15c..0000000000000 --- a/recipes/wcurl/bld.bat +++ /dev/null @@ -1,15 +0,0 @@ -@echo off - -REM Copy wcurl and the trampoline script (wcurl.cmd) and check for success - -copy "%SRC_DIR%\wcurl" "%LIBRARY_BIN%\wcurl" >nul -if errorlevel 1 ( - echo ERROR: Failed to copy wcurl to %LIBRARY_BIN%. - exit /b 1 -) - -copy "%RECIPE_DIR%\wcurl.cmd" "%LIBRARY_BIN%\wcurl.cmd" >nul -if errorlevel 1 ( - echo ERROR: Failed to copy wcurl.cmd to %LIBRARY_BIN%. - exit /b 1 -) diff --git a/recipes/wcurl/build.sh b/recipes/wcurl/build.sh deleted file mode 100644 index f512f382cf1e8..0000000000000 --- a/recipes/wcurl/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -mkdir -p ${PREFIX}/bin -cp ${SRC_DIR}/wcurl ${PREFIX}/bin/wcurl diff --git a/recipes/wcurl/conda-forge.yml b/recipes/wcurl/conda-forge.yml deleted file mode 100644 index ec7538f58d4ce..0000000000000 --- a/recipes/wcurl/conda-forge.yml +++ /dev/null @@ -1,3 +0,0 @@ -noarch_platforms: - - linux_64 - - win_64 \ No newline at end of file diff --git a/recipes/wcurl/meta.yaml b/recipes/wcurl/meta.yaml deleted file mode 100644 index 71b8d395044f7..0000000000000 --- a/recipes/wcurl/meta.yaml +++ /dev/null @@ -1,44 +0,0 @@ -{% set name = "wcurl" %} -{% set version = "2024.12.08" %} - -package: - name: {{ name }} - version: {{ version }} - -source: - url: https://github.com/curl/{{ name }}/archive/v{{ version }}.tar.gz - sha256: 9c0615b2c5d6b21da79ff559e75452197330d18449085a18e05f4b623b144a94 - -build: - number: 0 - noarch: generic - -requirements: - run: - - curl >=7.83.0 - - __unix # [unix] - - __win # [win] - - m2-bash # [win] - -test: - commands: - - wcurl --help - - wcurl https://raw.githubusercontent.com/conda-forge/curl-feedstock/master/LICENSE.txt - - test -f LICENSE.txt # [unix] - - if not exist LICENSE.txt exit 1 # [win] - -about: - home: https://curl.se/wcurl - license: curl - license_family: MIT - license_file: LICENSE - summary: A simple wrapper around curl to easily download files - description: | - wcurl is a command line tool which lets you download URLs without having to - remember any parameters. - doc_url: https://curl.se/wcurl - dev_url: https://github.com/curl/wcurl - -extra: - recipe-maintainers: - - apcamargo diff --git a/recipes/wcurl/wcurl.cmd b/recipes/wcurl/wcurl.cmd deleted file mode 100644 index 1e47d156ccac0..0000000000000 --- a/recipes/wcurl/wcurl.cmd +++ /dev/null @@ -1,7 +0,0 @@ -@echo off - -REM Determine the path of the wcurl script -set "WCURL_PATH=%LIBRARY_BIN%\wcurl" - -REM Run the wcurl script with Bash -bash "%WCURL_PATH%" %*