-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tttrlib #51927
Add tttrlib #51927
Changes from all commits
20519ea
aaaf15a
828daf7
def59b2
a3e7d40
f5611f3
db042c3
78a75c8
2f0d38c
e23517a
9bf368a
9e53bd7
c239340
5441df0
2158694
e35d14b
6f8c593
4a0ae5f
ec34809
f000548
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,31 @@ | ||||||||||||||||||||||||||||||||||||||||||||
#!/bin/bash | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
mkdir b2 && cd b2 | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+1
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Improve build directory handling and error detection. The build directory creation needs better error handling and cleanup. #!/bin/bash
-
-mkdir b2 && cd b2
+set -euo pipefail
+
+BUILD_DIR="b2"
+trap 'rm -rf "${BUILD_DIR}"' EXIT
+rm -rf "${BUILD_DIR}"
+mkdir -p "${BUILD_DIR}" || exit 1
+cd "${BUILD_DIR}" || exit 1 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Shellcheck[warning] 3-3: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. (SC2164) |
||||||||||||||||||||||||||||||||||||||||||||
if [[ "${target_platform}" == osx-* ]]; then | ||||||||||||||||||||||||||||||||||||||||||||
# See https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk | ||||||||||||||||||||||||||||||||||||||||||||
CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY" | ||||||||||||||||||||||||||||||||||||||||||||
export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER" | ||||||||||||||||||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||||||||||||||||||
export CONFIG_ARGS="" | ||||||||||||||||||||||||||||||||||||||||||||
fi | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+5
to
+11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add validation for target_platform variable. The script assumes +if [[ -z "${target_platform:-}" ]]; then
+ echo "Error: target_platform is not set" >&2
+ exit 1
+fi
+
if [[ "${target_platform}" == osx-* ]]; then
# See https://conda-forge.org/docs/maintainer/knowledge_base.html#newer-c-features-with-old-sdk
CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY"
export CONFIG_ARGS="-DCMAKE_FIND_FRAMEWORK=NEVER -DCMAKE_FIND_APPBUNDLE=NEVER"
else
export CONFIG_ARGS=""
fi 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Shellcheck[warning] 5-5: target_platform is referenced but not assigned. (SC2154) |
||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
cmake -S .. -B . \ | ||||||||||||||||||||||||||||||||||||||||||||
-DCMAKE_CXX_COMPILER="${CXX}" \ | ||||||||||||||||||||||||||||||||||||||||||||
-DCMAKE_INSTALL_PREFIX="${PREFIX}" \ | ||||||||||||||||||||||||||||||||||||||||||||
-DBUILD_PYTHON_INTERFACE=ON \ | ||||||||||||||||||||||||||||||||||||||||||||
-DCMAKE_BUILD_TYPE=Release \ | ||||||||||||||||||||||||||||||||||||||||||||
-DBUILD_LIBRARY=ON \ | ||||||||||||||||||||||||||||||||||||||||||||
-DPYTHON_VERSION=$(python -c 'import platform; print(platform.python_version())') \ | ||||||||||||||||||||||||||||||||||||||||||||
-DPython_ROOT_DIR="${PREFIX}/bin" \ | ||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix Python root directory path. The Python root directory should point to - -DPython_ROOT_DIR="${PREFIX}/bin" \
+ -DPython_ROOT_DIR="${PREFIX}" \ 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
-G Ninja \ | ||||||||||||||||||||||||||||||||||||||||||||
"${CONFIG_ARGS}" | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
# On some platforms (notably aarch64 with Drone) builds can fail due to | ||||||||||||||||||||||||||||||||||||||||||||
# running out of memory. If this happens, try the build again; if it | ||||||||||||||||||||||||||||||||||||||||||||
# still fails, restrict to one core. | ||||||||||||||||||||||||||||||||||||||||||||
ninja install -k 0 || ninja install -k 0 || ninja install -j ${CPU_COUNT} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
# Copy programs to bin | ||||||||||||||||||||||||||||||||||||||||||||
chmod 0755 $SRC_DIR/bin/* | ||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add directory existence check before chmod. The script attempts to modify permissions without verifying the existence of the directory or files, which could mask errors. -chmod 0755 $SRC_DIR/bin/*
+if [[ -d "${SRC_DIR}/bin" ]] && compgen -G "${SRC_DIR}/bin/*" > /dev/null; then
+ chmod 0755 "${SRC_DIR}"/bin/*
+else
+ echo "Error: No files found in ${SRC_DIR}/bin" >&2
+ exit 1
+fi 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
cp -f $SRC_DIR/bin/* $PREFIX/bin | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+29
to
+31
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Improve security and robustness of binary installation. The current binary installation process needs better security measures and validation. -# Copy programs to bin
-chmod 0755 $SRC_DIR/bin/*
-cp -f $SRC_DIR/bin/* $PREFIX/bin
+# Install binaries with proper permissions
+BINDIR="${SRC_DIR}/bin"
+if [[ ! -d "${BINDIR}" ]]; then
+ echo "Error: Binary directory ${BINDIR} not found" >&2
+ exit 1
+fi
+
+# Ensure destination exists
+mkdir -p "${PREFIX}/bin"
+
+# Process each file individually with proper permission checks
+find "${BINDIR}" -type f -print0 | while IFS= read -r -d '' file; do
+ if [[ -x "${file}" ]]; then
+ install -v -m 755 "${file}" "${PREFIX}/bin/"
+ else
+ echo "Warning: Skipping non-executable file: ${file}" >&2
+ fi
+done 📝 Committable suggestion
Suggested change
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,70 @@ | ||||||||||||||||||||||||||||
{% set name = "tttrlib" %} | ||||||||||||||||||||||||||||
{% set version = "0.25.0" %} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
package: | ||||||||||||||||||||||||||||
name: {{ name }} | ||||||||||||||||||||||||||||
version: {{ version }} | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
source: | ||||||||||||||||||||||||||||
url: https://github.com/Fluorescence-Tools/tttrlib/archive/refs/tags/v{{ version }}.tar.gz | ||||||||||||||||||||||||||||
sha256: e15604ef063257cd87d3bdf266c1d5a448189508f51cdc4156a93cb2b46fe807 | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
build: | ||||||||||||||||||||||||||||
number: 0 | ||||||||||||||||||||||||||||
skip: True # [osx and py > 310] | ||||||||||||||||||||||||||||
run_exports: '{{ pin_subpackage("tttrlib", max_pin="x.x") }}' | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
requirements: | ||||||||||||||||||||||||||||
build: | ||||||||||||||||||||||||||||
- {{ compiler('c') }} | ||||||||||||||||||||||||||||
- {{ compiler('cxx') }} | ||||||||||||||||||||||||||||
- pkg-config | ||||||||||||||||||||||||||||
- cmake | ||||||||||||||||||||||||||||
- ninja | ||||||||||||||||||||||||||||
- make | ||||||||||||||||||||||||||||
host: | ||||||||||||||||||||||||||||
- swig <4.3.0 | ||||||||||||||||||||||||||||
- doxygen | ||||||||||||||||||||||||||||
- llvm-openmp # [osx] | ||||||||||||||||||||||||||||
- libgomp # [linux] | ||||||||||||||||||||||||||||
- boost-cpp | ||||||||||||||||||||||||||||
- hdf5 | ||||||||||||||||||||||||||||
- python | ||||||||||||||||||||||||||||
- pip | ||||||||||||||||||||||||||||
- numpy | ||||||||||||||||||||||||||||
run: | ||||||||||||||||||||||||||||
- python | ||||||||||||||||||||||||||||
- llvm-openmp # [osx] | ||||||||||||||||||||||||||||
- libgomp # [linux] | ||||||||||||||||||||||||||||
- boost-cpp | ||||||||||||||||||||||||||||
- tqdm | ||||||||||||||||||||||||||||
- click | ||||||||||||||||||||||||||||
- click-didyoumean | ||||||||||||||||||||||||||||
- numpy | ||||||||||||||||||||||||||||
- scikit-image | ||||||||||||||||||||||||||||
- matplotlib-base | ||||||||||||||||||||||||||||
- hdf5 | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
test: | ||||||||||||||||||||||||||||
imports: | ||||||||||||||||||||||||||||
- tttrlib | ||||||||||||||||||||||||||||
commands: | ||||||||||||||||||||||||||||
- tttrlib --help | ||||||||||||||||||||||||||||
Comment on lines
+48
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add click packages to test requirements. The test command uses the CLI ( test:
imports:
- tttrlib
+ requires:
+ - click
+ - click-didyoumean
commands:
- tttrlib --help 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
about: | ||||||||||||||||||||||||||||
home: https://github.com/fluorescence-tools/tttrlib | ||||||||||||||||||||||||||||
summary: 'A file format agnostic library for time-resolved imaging and spectroscopic data.' | ||||||||||||||||||||||||||||
description: | | ||||||||||||||||||||||||||||
tttrlib is a simple, fast, libray to read, write and process | ||||||||||||||||||||||||||||
time-resolved imaging and spectroscopic data. For speed, it | ||||||||||||||||||||||||||||
is written in C++ and wrapped for Python via SWIG. | ||||||||||||||||||||||||||||
license: BSD-3-Clause | ||||||||||||||||||||||||||||
license_family: BSD | ||||||||||||||||||||||||||||
license_file: LICENSE.txt | ||||||||||||||||||||||||||||
doc_url: https://tttrlib.readthedocs.io | ||||||||||||||||||||||||||||
dev_url: https://github.com/fluorescence-tools/tttrlib | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
extra: | ||||||||||||||||||||||||||||
recipe-maintainers: | ||||||||||||||||||||||||||||
- tpeulen | ||||||||||||||||||||||||||||
- khemmen |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Add shebang and improve directory handling robustness.
The script should handle potential failures in directory operations and be more explicit about the shell interpreter.
📝 Committable suggestion
🧰 Tools
🪛 Shellcheck
[error] 1-1: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
(SC2148)
[warning] 1-1: Use 'cd ... || exit' or 'cd ... || return' in case cd fails.
(SC2164)