You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/08/28 16:44:03 UTC

[arrow] branch master updated: ARROW-3130: [Go] add initial support for Go modules

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

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


The following commit(s) were added to refs/heads/master by this push:
     new ef21ec9  ARROW-3130: [Go] add initial support for Go modules
ef21ec9 is described below

commit ef21ec9d4e57b61f9ab5144db3846e54e8c940ef
Author: Sebastien Binet <bi...@cern.ch>
AuthorDate: Tue Aug 28 12:42:46 2018 -0400

    ARROW-3130: [Go] add initial support for Go modules
    
    This CL was created by running:
    
    $> GO111MODULE=on go mod init
    $> GO111MODULE=on go mod tidy
    
    Author: Sebastien Binet <bi...@cern.ch>
    
    Closes #2486 from sbinet/go-mod-support and squashes the following commits:
    
    b69846df <Sebastien Binet> ARROW-3130:  add initial support for Go modules
---
 dev/release/rat_exclude_files.txt |  1 +
 go/arrow/go.mod                   | 23 +++++++++++++++++++++++
 go/arrow/go.sum                   |  6 ++++++
 3 files changed, 30 insertions(+)

diff --git a/dev/release/rat_exclude_files.txt b/dev/release/rat_exclude_files.txt
index d280294..6e450e5 100644
--- a/dev/release/rat_exclude_files.txt
+++ b/dev/release/rat_exclude_files.txt
@@ -75,6 +75,7 @@ dev/tasks/linux-packages/debian/patches/series
 dev/tasks/linux-packages/debian/rules
 dev/tasks/linux-packages/debian/source/format
 dev/tasks/linux-packages/debian/watch
+go/arrow/go.sum
 go/arrow/Gopkg.lock
 go/arrow/internal/cpu/*
 go/arrow/type_string.go
diff --git a/go/arrow/go.mod b/go/arrow/go.mod
new file mode 100644
index 0000000..6d4c592
--- /dev/null
+++ b/go/arrow/go.mod
@@ -0,0 +1,23 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+module github.com/apache/arrow/go/arrow
+
+require (
+	github.com/davecgh/go-spew v1.1.0 // indirect
+	github.com/pmezard/go-difflib v1.0.0 // indirect
+	github.com/stretchr/testify v1.2.0
+)
diff --git a/go/arrow/go.sum b/go/arrow/go.sum
new file mode 100644
index 0000000..cad042e
--- /dev/null
+++ b/go/arrow/go.sum
@@ -0,0 +1,6 @@
+github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
+github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/testify v1.2.0 h1:LThGCOvhuJic9Gyd1VBCkhyUXmO8vKaBFvBsJ2k03rg=
+github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=