diff --git a/recipes/pytdigest/meta.yaml b/recipes/pytdigest/meta.yaml deleted file mode 100644 index 8399949c325fc..0000000000000 --- a/recipes/pytdigest/meta.yaml +++ /dev/null @@ -1,46 +0,0 @@ -{% set name = "pytdigest" %} -{% set version = "0.1.4" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pytdigest-{{ version }}.tar.gz - sha256: 573dfee19bb0f26fc1f43d8a571b513f9d8f09ff1add98ce99826357e0070f0d - -build: - skip: true # [py>=400] - script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation - number: 0 - -requirements: - build: - - {{ compiler('c') }} - - {{ stdlib('c') }} - host: - - python - - pip - - setuptools - run: - - python - - numpy >=1.19.0 - - pandas >=1.1.0 - -test: - imports: - - pytdigest - commands: - - pip check - requires: - - pip - -about: - home: https://github.com/protivinsky/pytdigest - summary: Python package for *fast* TDigest calculation. - license: Apache-2.0 - license_file: LICENSE - -extra: - recipe-maintainers: - - apmorton diff --git a/recipes/rsc-2fa/bld.bat b/recipes/rsc-2fa/bld.bat deleted file mode 100755 index 8cb07003c67b8..0000000000000 --- a/recipes/rsc-2fa/bld.bat +++ /dev/null @@ -1,9 +0,0 @@ -go mod vendor || goto :error -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\2fa.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/rsc-2fa/build.sh b/recipes/rsc-2fa/build.sh deleted file mode 100755 index 894dde513a646..0000000000000 --- a/recipes/rsc-2fa/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go mod vendor -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/2fa -ldflags="-s -w" -go-licenses save . --save_path=license-files diff --git a/recipes/rsc-2fa/meta.yaml b/recipes/rsc-2fa/meta.yaml deleted file mode 100755 index 19d95afe0ebfd..0000000000000 --- a/recipes/rsc-2fa/meta.yaml +++ /dev/null @@ -1,37 +0,0 @@ -{% set name = "rsc-2fa" %} -{% set version = "1.2.0" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/rsc/2fa/archive/v{{ version }}.tar.gz - sha256: d8db6b9a714c9146a4b82fd65b54f9bdda3e58380bce393f45e1ef49e4e9bee5 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - requires: - - m2-grep # [win] - commands: - - 2fa --help 2>&1 | grep -q "2fa -list" - -about: - home: https://github.com/rsc/rsc-2fa - license: BSD-3-Clause - license_file: - - LICENSE - - license-files/ - summary: Two-factor authentication on the command-line - dev_url: https://github.com/rsc/rsc-2fa - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/sift/bld.bat b/recipes/sift/bld.bat deleted file mode 100755 index 984e8f306890f..0000000000000 --- a/recipes/sift/bld.bat +++ /dev/null @@ -1,11 +0,0 @@ -go mod init github.com/svent/sift || goto :error -go mod tidy -e || goto :error -go mod vendor -e || goto :error -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files --ignore=github.com/svent/sift || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/sift/build.sh b/recipes/sift/build.sh deleted file mode 100755 index 61a06ae77d965..0000000000000 --- a/recipes/sift/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go mod init github.com/svent/sift -go mod tidy -e -go mod vendor -e -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files --ignore=github.com/svent/sift diff --git a/recipes/sift/meta.yaml b/recipes/sift/meta.yaml deleted file mode 100755 index 7d9eced1ffb7a..0000000000000 --- a/recipes/sift/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "sift" %} -{% set version = "0.9.0" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/svent/sift/archive/v{{ version }}.tar.gz - sha256: bbbd5c472c36b78896cd7ae673749d3943621a6d5523d47973ed2fc6800ae4c8 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - sift --help - -about: - home: https://github.com/svent/sift - license: GPL-3.0-only - license_file: - - LICENSE - - license-files/ - summary: Fast and powerful open source alternative to grep - dev_url: https://github.com/svent/sift - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/snyk-ls/bld.bat b/recipes/snyk-ls/bld.bat deleted file mode 100755 index 0a6bb16a59e3c..0000000000000 --- a/recipes/snyk-ls/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/snyk-ls/build.sh b/recipes/snyk-ls/build.sh deleted file mode 100755 index 4f5499d6ddcd2..0000000000000 --- a/recipes/snyk-ls/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files diff --git a/recipes/snyk-ls/meta.yaml b/recipes/snyk-ls/meta.yaml deleted file mode 100755 index 5e2d00aac6037..0000000000000 --- a/recipes/snyk-ls/meta.yaml +++ /dev/null @@ -1,37 +0,0 @@ -{% set name = "snyk-ls" %} -{% set version = "20240830.154625" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/snyk/snyk-ls/archive/v{{ version }}.tar.gz - sha256: 5caa5ba8009b691e013d461af876845d0c554de67751ec97b39b82ac120f8b44 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - requires: - - m2-grep # [win] - commands: - - snyk-ls --help 2>&1 | grep -q "Usage of snyk-ls" - -about: - home: https://github.com/snyk/snyk-ls - license: MIT - license_file: - - LICENSE - - license-files/ - summary: Language Server used by IDEs as Snyk Backend for Frontends - dev_url: https://github.com/snyk/snyk-ls - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/solt/bld.bat b/recipes/solt/bld.bat deleted file mode 100755 index 0a6bb16a59e3c..0000000000000 --- a/recipes/solt/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/solt/build.sh b/recipes/solt/build.sh deleted file mode 100755 index 4f5499d6ddcd2..0000000000000 --- a/recipes/solt/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files diff --git a/recipes/solt/meta.yaml b/recipes/solt/meta.yaml deleted file mode 100755 index da4be68c0f356..0000000000000 --- a/recipes/solt/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "solt" %} -{% set version = "1.2.2" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/aegoroff/solt/archive/v{{ version }}.tar.gz - sha256: 1dc785d1b1ee279c522e1297bf93257ba34fb90c168077351decec01afd4f132 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - solt --help - -about: - home: https://github.com/aegoroff/solt - license: MIT - license_file: - - LICENSE.txt - - license-files/ - summary: Small console app written in Go that allows you to easily analyze sources and Microsoft Visual Studio solutions and projects. - dev_url: https://github.com/aegoroff/solt - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/sttr/bld.bat b/recipes/sttr/bld.bat deleted file mode 100755 index 14b0553e76c92..0000000000000 --- a/recipes/sttr/bld.bat +++ /dev/null @@ -1,13 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files ^ - --ignore github.com/mattn/go-localereader ^ - --ignore gitlab.com/abhimanyusharma003/go-ordered-json || goto :error - -:: Manually copy licenses that go-licenses could not download -xcopy /s %RECIPE_DIR%\license-files\* %SRC_DIR%\license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/sttr/build.sh b/recipes/sttr/build.sh deleted file mode 100755 index bb351c501d922..0000000000000 --- a/recipes/sttr/build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files \ - --ignore github.com/mattn/go-localereader \ - --ignore gitlab.com/abhimanyusharma003/go-ordered-json - -# Manually copy licenses that go-licenses could not download -cp -r ${RECIPE_DIR}/license-files/* ${SRC_DIR}/license-files diff --git a/recipes/sttr/license-files/github.com/mattn/go-localereader/LICENSE b/recipes/sttr/license-files/github.com/mattn/go-localereader/LICENSE deleted file mode 100644 index a6523a00c2e02..0000000000000 --- a/recipes/sttr/license-files/github.com/mattn/go-localereader/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2022 Yasuhiro Matsumoto - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/recipes/sttr/meta.yaml b/recipes/sttr/meta.yaml deleted file mode 100755 index 280c9d26245fc..0000000000000 --- a/recipes/sttr/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "sttr" %} -{% set version = "0.2.18" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/abhimanyu003/sttr/archive/v{{ version }}.tar.gz - sha256: 89a031b02e976b4119c294723d121e31c1916b482dd367ffa6819bcab9b4c8f9 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - sttr --help - -about: - home: https://github.com/abhimanyu003/sttr - license: MIT - license_file: - - LICENSE - - license-files/ - summary: cross-platform, cli app to perform various operations on string - dev_url: https://github.com/abhimanyu003/sttr - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/templ/bld.bat b/recipes/templ/bld.bat deleted file mode 100755 index 4311dc08d9d61..0000000000000 --- a/recipes/templ/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" .\cmd\templ || goto :error -go-licenses save .\cmd\templ --save_path=license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/templ/build.sh b/recipes/templ/build.sh deleted file mode 100755 index 5457ee68437e5..0000000000000 --- a/recipes/templ/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" ./cmd/templ -go-licenses save ./cmd/templ --save_path=license-files diff --git a/recipes/templ/meta.yaml b/recipes/templ/meta.yaml deleted file mode 100755 index eded4933ba624..0000000000000 --- a/recipes/templ/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "templ" %} -{% set version = "0.2.771" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/a-h/templ/archive/v{{ version }}.tar.gz - sha256: 4d9b352e69198ddbc0ad7abb2bde2abff7a35f4ad8723c46ac7b36af6f0a8628 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - templ --help - -about: - home: https://github.com/a-h/templ - license: MIT - license_file: - - LICENSE - - license-files/ - summary: A golang formatter that fixes long lines - dev_url: https://github.com/a-h/templ - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/thrift-ls/bld.bat b/recipes/thrift-ls/bld.bat deleted file mode 100755 index 0a6bb16a59e3c..0000000000000 --- a/recipes/thrift-ls/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/thrift-ls/build.sh b/recipes/thrift-ls/build.sh deleted file mode 100755 index 4f5499d6ddcd2..0000000000000 --- a/recipes/thrift-ls/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files diff --git a/recipes/thrift-ls/meta.yaml b/recipes/thrift-ls/meta.yaml deleted file mode 100755 index 94149ad214d3e..0000000000000 --- a/recipes/thrift-ls/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "thrift-ls" %} -{% set version = "0.2.0" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/joyme123/thrift-ls/archive/v{{ version }}.tar.gz - sha256: 7906902c140860f79851a0b8cb92afbc3b14ee2a3726d5fbad3e8333bea1219b - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - thrift-ls --help - -about: - home: https://github.com/joyme123/thrift-ls - license: Apache-2.0 - license_file: - - LICENSE - - license-files/ - summary: Thrift Language Server - dev_url: https://github.com/joyme123/thrift-ls - -extra: - recipe-maintainers: - - danielnachun diff --git a/recipes/ticker/bld.bat b/recipes/ticker/bld.bat deleted file mode 100755 index 776736e4f35ee..0000000000000 --- a/recipes/ticker/bld.bat +++ /dev/null @@ -1,8 +0,0 @@ -go build -buildmode=pie -trimpath -o=%LIBRARY_PREFIX%\bin\%PKG_NAME%.exe -ldflags="-s" || goto :error -go-licenses save . --save_path=license-files --ignore=github.com/achannarasappa/ticker || goto :error - -goto :EOF - -:error -echo Failed with error #%errorlevel%. -exit 1 diff --git a/recipes/ticker/build.sh b/recipes/ticker/build.sh deleted file mode 100755 index a7c992b33fccb..0000000000000 --- a/recipes/ticker/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -set -o xtrace -o nounset -o pipefail -o errexit - -go build -buildmode=pie -trimpath -o=${PREFIX}/bin/${PKG_NAME} -ldflags="-s -w" -go-licenses save . --save_path=license-files --ignore=github.com/achannarasappa/ticker diff --git a/recipes/ticker/meta.yaml b/recipes/ticker/meta.yaml deleted file mode 100755 index c63beb9c92e12..0000000000000 --- a/recipes/ticker/meta.yaml +++ /dev/null @@ -1,35 +0,0 @@ -{% set name = "ticker" %} -{% set version = "4.5.14" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/achannarasappa/ticker/archive/v{{ version }}.tar.gz - sha256: d95e286a2ecda18154e24b1b8a05b6e3bff9cc48d2a127217ba7ec7379e4c163 - -build: - number: 0 - -requirements: - build: - - {{ compiler('go-nocgo') }} - - go-licenses - -test: - commands: - - ticker --help - -about: - home: https://github.com/achannarasappa/ticker - license: MIT - license_file: - - LICENSE - - license-files/ - summary: Terminal stock ticker with live updates and position tracking - dev_url: https://github.com/achannarasappa/ticker - -extra: - recipe-maintainers: - - danielnachun