Closed mencian closed 3 days ago
recipes/libgff/meta.yaml (3)
`14-14`: **LGTM: Build number increment is appropriate.** The build number increment is correct for a package rebuild with dependency changes. --- `15-16`: **LGTM: Proper run_exports configuration.** The run_exports section is correctly configured with appropriate pin_subpackage settings, which will help maintain ABI compatibility. --- Line range hint `22-23`: **Verify removal of bzip2 dependency.** The removal of bzip2 from host requirements needs verification to ensure it doesn't affect the package functionality.✅ Verification successful
Let me analyze the file under review more carefully by checking its content and dependencies. --- Let me check the source code of libgff to verify if it has any bzip2 dependencies. --- **Removal of bzip2 dependency is safe** Based on the comprehensive analysis of the libgff source code, build system, and dependencies, there is no evidence of bzip2 usage: - The source code does not contain any references to bzip2 headers or functions - CMakeLists.txt does not list bzip2 as a dependency - The library's core functionality (GFF/GTF parsing) does not require bzip2 compression🏁 Scripts executed
The following scripts were executed for the analysis: Script: ```shell #!/bin/bash # Check if the source code actually uses bzip2 rg -l "bzlib\.h|BZ2_" # Check if CMakeLists.txt has any bzip2 related configurations rg -l "bzip2|BZip2|BZIP2" ``` Length of output: 7584 --- Script: ```shell #!/bin/bash # Check the content of the meta.yaml file cat recipes/libgff/meta.yaml # Check if there are any build scripts that might use bzip2 fd "build.sh|build.bat" recipes/libgff/ --exec cat {} # Check if there are any patches that might modify bzip2 usage fd ".patch" recipes/libgff/ --exec cat {} ``` Length of output: 1416 --- Script: ```shell #!/bin/bash # Clone and check the specific version's source code for bzip2 usage git clone https://github.com/COMBINE-lab/libgff.git /tmp/libgff cd /tmp/libgff git checkout v2.0.0 # Check for bzip2 related code or dependencies rg -l "bzlib\.h|BZ2_" . rg -l "bzip2|BZip2|BZIP2" . # Check CMake configuration for bzip2 cat CMakeLists.txt ``` Length of output: 3002
Describe your pull request here
Please read the guidelines for Bioconda recipes before opening a pull request (PR).
General instructions
@BiocondaBot please add label
command.@bioconda/core
in a comment.Instructions for avoiding API, ABI, and CLI breakage issues
Conda is able to record and lock (a.k.a. pin) dependency versions used at build time of other recipes. This way, one can avoid that expectations of a downstream recipe with regards to API, ABI, or CLI are violated by later changes in the recipe. If not already present in the meta.yaml, make sure to specify
run_exports
(see here for the rationale and comprehensive explanation). Add arun_exports
section like this:with
...
being one of:{{ pin_subpackage("myrecipe", max_pin="x") }}
{{ pin_subpackage("myrecipe", max_pin="x.x") }}
{{ pin_subpackage("myrecipe", max_pin="x.x") }}
(in such a case, please add a note that shortly mentions your evidence for that){{ pin_subpackage("myrecipe", max_pin="x.x.x") }}
(in such a case, please add a note that shortly mentions your evidence for that){{ pin_subpackage("myrecipe", max_pin=None) }}
while replacing
"myrecipe"
with eithername
if aname|lower
variable is defined in your recipe or with the lowercase name of the package in quotes.Bot commands for PR management
Please use the following BiocondaBot commands:
Everyone has access to the following BiocondaBot commands, which can be given in a comment:@BiocondaBot please update
@BiocondaBot please add label
please review & merge
label.@BiocondaBot please fetch artifacts
You can use this to test packages locally.
@BiocondaBot please merge
command is now depreciated. Please just squash and merge instead. Also, the bot watches for comments from non-members that include `@bioconda/