chore: refine how we handle licenses for binaries#4412
Conversation
- [ ] Handle Linux packages - [ ] Handle Python wheels - [ ] Handle R packages - [ ] Check NPM package binaries - [ ] Check Java package binaries Closes apache#4411.
|
@eitsupi I took a look at one of the R packages and it seems it doesn't bundle any license at all, is that expected? (this can wait until after your trip of course) |
This is entirely intentional, and the R packages are configured to ignore the markdown files during the build process. R packages include a license declaration in their DESCRIPTION file, and it is prohibited to include a file containing the full LICENSE text. arrow-adbc/r/adbcpostgresql/DESCRIPTION Line 15 in 698f216 However, if we want to explicitly specify the dependencies included in the source code, we can place a file under the For example, this would be the case for the arrow package. |
Closes #4411.