You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2023/06/25 20:16:09 UTC

[arrow] branch main updated: GH-36287: [Ruby] Add support for installing arrow-c-glib conda package automatically (#36288)

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

kou 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 3b06a4c9f3 GH-36287: [Ruby] Add support for installing arrow-c-glib conda package automatically (#36288)
3b06a4c9f3 is described below

commit 3b06a4c9f3f8c646af09df7b4138eae50fa08a0d
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Mon Jun 26 05:16:01 2023 +0900

    GH-36287: [Ruby] Add support for installing arrow-c-glib conda package automatically (#36288)
    
    ### Rationale for this change
    
    We can use https://anaconda.org/conda-forge/arrow-c-glib on conda.
    
    ### What changes are included in this PR?
    
    Add package metadata for conda.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    Yes.
    * Closes: #36287
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 ruby/red-arrow/ext/arrow/extconf.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ruby/red-arrow/ext/arrow/extconf.rb b/ruby/red-arrow/ext/arrow/extconf.rb
index 0905da354d..7f05d4b3de 100644
--- a/ruby/red-arrow/ext/arrow/extconf.rb
+++ b/ruby/red-arrow/ext/arrow/extconf.rb
@@ -44,6 +44,7 @@ unless required_pkg_config_package([
                                      Arrow::Version::MINOR,
                                      Arrow::Version::MICRO,
                                    ],
+                                   conda: "libarrow",
                                    debian: "libarrow-dev",
                                    fedora: "libarrow-devel",
                                    homebrew: "apache-arrow",
@@ -58,6 +59,7 @@ unless required_pkg_config_package([
                                      Arrow::Version::MINOR,
                                      Arrow::Version::MICRO,
                                    ],
+                                   conda: "arrow-c-glib",
                                    debian: "libarrow-glib-dev",
                                    fedora: "libarrow-glib-devel",
                                    homebrew: "apache-arrow-glib",