This is an automated email from the ASF dual-hosted git repository.

brycemecum pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 1b456eaef5 GH-46947: [R][Packaging] Add src/arrow/flight/sql/odbc to 
source excludes (#46948)
1b456eaef5 is described below

commit 1b456eaef55b127df70accebb05104f64c1eb00a
Author: Bryce Mecum <[email protected]>
AuthorDate: Mon Jun 30 18:18:45 2025 -0700

    GH-46947: [R][Packaging] Add src/arrow/flight/sql/odbc to source excludes 
(#46948)
    
    ### Rationale for this change
    
    We bundle the C++ source with the R package tarball so users can build from 
source as a fallback option. CRAN checks the submitted tarball for long 
filenames to support Windows and files recently added under 
cpp/src/arrow/flight/sql/odbc cause us to get NOTEs about this. We don't need 
to include these files so we can exclude them.
    
    ### What changes are included in this PR?
    
    Updated exclusions list.
    
    ### Are these changes tested?
    
    Yes, by CI. See crossbow runs below.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #46947
    
    Authored-by: Bryce Mecum <[email protected]>
    Signed-off-by: Bryce Mecum <[email protected]>
---
 r/bootstrap.R | 1 +
 1 file changed, 1 insertion(+)

diff --git a/r/bootstrap.R b/r/bootstrap.R
index a0c90b03e2..8c864c32b8 100644
--- a/r/bootstrap.R
+++ b/r/bootstrap.R
@@ -60,6 +60,7 @@ if (dir.exists("../cpp")) {
       "^src/gandiva",
       "^src/jni",
       "^src/skyhook",
+      "^src/arrow/flight/sql/odbc",
       "_test\\.cc"
     )
   )

Reply via email to