From e6cd44d9970928228274c7c6ee58ba46441857f1 Mon Sep 17 00:00:00 2001 From: conda-forge-admin Date: Thu, 10 Oct 2024 11:07:53 +0000 Subject: [PATCH] Removed recipes (odl, rocksdict) after converting into feedstocks. [ci skip] --- recipes/odl/meta.yaml | 54 ------------------------------------- recipes/rocksdict/meta.yaml | 50 ---------------------------------- 2 files changed, 104 deletions(-) delete mode 100644 recipes/odl/meta.yaml delete mode 100644 recipes/rocksdict/meta.yaml diff --git a/recipes/odl/meta.yaml b/recipes/odl/meta.yaml deleted file mode 100644 index 82ba4556cd44b..0000000000000 --- a/recipes/odl/meta.yaml +++ /dev/null @@ -1,54 +0,0 @@ -{% set name = "odl" %} -{% set version = "0.8.0" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/odlgroup/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz - sha256: dec092ce1f152707d821146046d4d1441672ad6c22d28dd46e1f77d79c210a38 - -build: - noarch: python - number: 0 - script: {{ PYTHON }} -m pip install . -vv - -requirements: - host: - - python >=3.7 - - pip - - setuptools >=65.6 - - run: - - python >=3.7 - - future >=0.16 - - numpy >=1.19, <1.27 - - scipy >=1.1 - - packaging >=17.0 - - matplotlib-base >=3.4 - -test: - requires: - - pytest >=5.4 - imports: - - odl - commands: - - python -c "import odl; odl.test()" - -about: - home: https://github.com/odlgroup/odl - license: MPL-2.0 - license_file: LICENSE - summary: "Operator Discretization Library - a versatile Python framework for rapid prototyping in Inverse Problems and related fields" - doc_url: https://odlgroup.github.io/odl/ - dev_url: https://github.com/odlgroup/odl - -extra: - recipe-maintainers: - # Ozan Öktem - - ozanoktem - # Justus Sagemüller - - leftaroundabout - # Emilien Valat - - Emvlt diff --git a/recipes/rocksdict/meta.yaml b/recipes/rocksdict/meta.yaml deleted file mode 100644 index f5e74b09ed9b2..0000000000000 --- a/recipes/rocksdict/meta.yaml +++ /dev/null @@ -1,50 +0,0 @@ -{% set name = "rocksdict" %} -{% set version = "0.3.23" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://github.com/Congyuwang/RocksDict/archive/v{{ version }}.tar.gz - sha256: 79441cd6668b337649027df4612382d1f28fd8cf5d41edc11e99cc8f3f5eb9cb - -build: - skip: True # [py<37] - script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation - number: 0 - script_env: - - LIBCLANG_PATH=$BUILD_PREFIX/lib # [not win] - -requirements: - build: - - {{ stdlib('c') }} - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - {{ compiler('rust') }} - - clangdev - host: - - python - - maturin >=1.0,<2.0 - - pip - run: - - python - -test: - imports: - - rocksdict - commands: - - pip check - requires: - - pip - -about: - home: https://github.com/Congyuwang/RocksDict - doc_url: https://congyuwang.github.io/RocksDict/rocksdict.html - summary: Python fast on-disk dictionary; RocksDB & SpeeDB Python binding - license: MIT - license_file: LICENSE - -extra: - recipe-maintainers: - - thewchan