-
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
Rebuild bam-readcount recipe #52212
Rebuild bam-readcount recipe #52212
Changes from 2 commits
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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -6,11 +6,11 @@ package: | |||||||
version: {{ version }} | ||||||||
|
||||||||
source: | ||||||||
url: https://github.com/genome/{{ name }}/archive/v{{ version }}.tar.gz | ||||||||
sha256: 8ebf84d9efee0f2d3b43f0452dbf16b27337c960e25128f6a7173119e62588b8 | ||||||||
git_url: https://github.com/genome/bam-readcount.git | ||||||||
git_rev: v{{ version }} | ||||||||
Comment on lines
+9
to
+10
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. Consider using tarball URL instead of git source for better reproducibility Using VCS URLs in conda recipes can lead to reproducibility issues. It's recommended to use a tarball URL with a sha256 hash instead. Apply this diff to improve build reproducibility: - git_url: https://github.com/genome/bam-readcount.git
- git_rev: v{{ version }}
+ url: https://github.com/genome/bam-readcount/archive/v{{ version }}.tar.gz
+ sha256: # Add the appropriate sha256 hash here
|
||||||||
|
||||||||
build: | ||||||||
number: 2 | ||||||||
number: 3 | ||||||||
run_exports: | ||||||||
- {{ pin_subpackage('bam-readcount', max_pin="x") }} | ||||||||
|
||||||||
|
@@ -20,11 +20,14 @@ requirements: | |||||||
- cmake | ||||||||
- {{ compiler('cxx') }} | ||||||||
- {{ compiler('c') }} | ||||||||
- autoconf | ||||||||
- automake | ||||||||
- libtool | ||||||||
- clangdev | ||||||||
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. 💡 Codebase verification Remove unnecessary build dependencies The build.sh script shows that the package uses CMake for building, and there's no usage of autoconf, automake, libtool, or any clang-specific features. The build system:
The following dependencies should be removed as they are not used:
🔗 Analysis chainVerify the necessity of new build dependencies Please confirm that these new build dependencies are actually used in the build process. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check if the new build dependencies are used in build.sh
# Look for autoconf/automake usage
echo "Checking for autoconf/automake usage:"
rg -l 'auto(conf|make|reconf|header)' recipes/bam-readcount/build.sh
# Look for libtool usage
echo "Checking for libtool usage:"
rg -l 'libtool' recipes/bam-readcount/build.sh
# Look for clang-specific usage
echo "Checking for clang usage:"
rg -l 'clang(\+\+)?|llvm' recipes/bam-readcount/build.sh
Length of output: 387 Script: #!/bin/bash
# Let's first check the content of build.sh to understand the build process
echo "Content of build.sh:"
cat recipes/bam-readcount/build.sh
# Also check if there's a configure script or CMake files
echo -e "\nChecking for configure/CMake files:"
fd -t f "configure|CMakeLists.txt|autogen.sh" recipes/bam-readcount/
Length of output: 1323 |
||||||||
host: | ||||||||
- zlib | ||||||||
- pthread-stubs | ||||||||
- wget | ||||||||
- clangdev | ||||||||
run: | ||||||||
- python | ||||||||
|
||||||||
|
@@ -39,11 +42,15 @@ about: | |||||||
license_file: LICENSE | ||||||||
summary: "bam-readcount generates metrics at single nucleotide positions." | ||||||||
dev_url: "https://github.com/genome/bam-readcount" | ||||||||
doc_url: "https://github.com/genome/bam-readcount/blob/master/README.md" | ||||||||
doc_url: "https://github.com/genome/bam-readcount/blob/v{{ version }}/README.md" | ||||||||
|
||||||||
extra: | ||||||||
additional-platforms: | ||||||||
- linux-aarch64 | ||||||||
- osx-arm64 | ||||||||
identifiers: | ||||||||
- doi:10.21105/joss.03722 | ||||||||
- biotools:bam-readcount | ||||||||
skip-lints: | ||||||||
- uses_vcs_url | ||||||||
- missing_hash | ||||||||
Comment on lines
+54
to
+56
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 Remove skip-lints by fixing the source configuration These lint skips are only necessary because of the git source usage. They can be removed by switching back to a tarball URL with sha256 hash as suggested earlier. - skip-lints:
- - uses_vcs_url
- - missing_hash 📝 Committable suggestion
Suggested change
|
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.
Version mismatch in Boost tarball renaming needs attention
The script downloads Boost 1.86.0 but renames it to include "1.55" in the target filename. This version mismatch in the filename could lead to confusion and maintenance issues.
Consider:
📝 Committable suggestion