From 7a2e383cb8c906645f622a31deff22fe2a831ae1 Mon Sep 17 00:00:00 2001 From: emscripten-forge-bot Date: Tue, 14 Jan 2025 12:06:44 +0000 Subject: [PATCH 1/5] Update peewee from 3.17.3 to 3.17.4 [emscripten-3.1.73] --- recipes/recipes_emscripten/peewee/recipe.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/recipes_emscripten/peewee/recipe.yaml b/recipes/recipes_emscripten/peewee/recipe.yaml index ab7f540eb..517484a33 100644 --- a/recipes/recipes_emscripten/peewee/recipe.yaml +++ b/recipes/recipes_emscripten/peewee/recipe.yaml @@ -1,6 +1,6 @@ context: name: peewee - version: 3.17.3 + version: 3.17.4 package: name: ${{ name }} @@ -9,7 +9,7 @@ package: source: url: https://pypi.io/packages/source/${{ name[0] }}/${{ name }}/${{ name }}-${{ version }}.tar.gz - sha256: ef15f90b628e41a584be8306cdc3243c51f73ce88b06154d9572f6d0284a0169 + sha256: 530c545739870699d1dd2a3a3c749951f94200315f27df2be5474c2e87ae9f94 build: number: 0 From 1311ac04275f717af92e2ccfa159e77d0b74b1e2 Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Tue, 14 Jan 2025 13:39:00 +0100 Subject: [PATCH 2/5] update cffi pin --- conda_build_config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_build_config.yaml b/conda_build_config.yaml index 2d3f62a67..782517b96 100644 --- a/conda_build_config.yaml +++ b/conda_build_config.yaml @@ -281,7 +281,7 @@ capnproto: ccr: - 1.3 cffi: - - 1.15.1 + - 1.17.1 cfitsio: - 4.0.0 cmake: From 01e8880a08d2e159e5e8195cfef6618309915a2c Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Tue, 14 Jan 2025 13:42:57 +0100 Subject: [PATCH 3/5] try with sqlite --- recipes/recipes_emscripten/peewee/recipe.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/recipes_emscripten/peewee/recipe.yaml b/recipes/recipes_emscripten/peewee/recipe.yaml index 517484a33..871a9e81b 100644 --- a/recipes/recipes_emscripten/peewee/recipe.yaml +++ b/recipes/recipes_emscripten/peewee/recipe.yaml @@ -22,6 +22,7 @@ requirements: host: - python >=3.7 - cffi + - sqlite run: - python >=3.7 - cffi From c3a581ebc21c0e21e737e20f31d61a77c23ed5fe Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Tue, 14 Jan 2025 13:49:05 +0100 Subject: [PATCH 4/5] Update build.sh --- recipes/recipes_emscripten/peewee/build.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/recipes/recipes_emscripten/peewee/build.sh b/recipes/recipes_emscripten/peewee/build.sh index daea06a1c..4c9d53f99 100644 --- a/recipes/recipes_emscripten/peewee/build.sh +++ b/recipes/recipes_emscripten/peewee/build.sh @@ -1,2 +1,11 @@ #!/bin/bash -${PYTHON} -m pip install . \ No newline at end of file + +LDFLAGS="$LDFLAGS $EM_FORGE_SIDE_MODULE_LDFLAGS" +CFLAGS="$CFLAGS $EM_FORGE_SIDE_MODULE_CFLAGS" +LDFLAGS="$LDFLAGS -L$PREFIX/lib" + +export LDFLAGS +export CFLAGS + + +${PYTHON} -m pip install . From 73f288818e094affadb3215971f94875b228cdef Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Tue, 14 Jan 2025 13:52:50 +0100 Subject: [PATCH 5/5] peewee in build? --- recipes/recipes_emscripten/peewee/recipe.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/recipes_emscripten/peewee/recipe.yaml b/recipes/recipes_emscripten/peewee/recipe.yaml index 871a9e81b..e18fa971c 100644 --- a/recipes/recipes_emscripten/peewee/recipe.yaml +++ b/recipes/recipes_emscripten/peewee/recipe.yaml @@ -19,6 +19,7 @@ requirements: - ${{ compiler("c") }} - cross-python_emscripten-wasm32 - pip + - peewee host: - python >=3.7 - cffi