You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mr...@apache.org on 2019/08/08 18:15:20 UTC

[openwhisk-client-go] branch master updated: Remove 'incubat(ing, ion, or)' designation and disclaimer (#126)

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

mrutkowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new d8ccb14  Remove 'incubat(ing, ion, or)' designation and disclaimer (#126)
d8ccb14 is described below

commit d8ccb1442651beee6a9245913e3ca0cb182888b1
Author: Matt Rutkowski <mr...@us.ibm.com>
AuthorDate: Thu Aug 8 13:15:16 2019 -0500

    Remove 'incubat(ing, ion, or)' designation and disclaimer (#126)
---
 README.md                      | 14 +++++++-------
 tools/travis/build.sh          |  2 +-
 tools/travis/setup.sh          |  2 +-
 tools/travis/test_openwhisk.sh |  8 ++++----
 vendor/vendor.json             |  2 +-
 whisk/action.go                |  2 +-
 whisk/activation.go            |  2 +-
 whisk/api.go                   |  2 +-
 whisk/client.go                |  2 +-
 whisk/info.go                  |  2 +-
 whisk/namespace.go             |  2 +-
 whisk/package.go               |  2 +-
 whisk/rule.go                  |  2 +-
 whisk/sdk.go                   |  2 +-
 whisk/trigger.go               |  2 +-
 whisk/util.go                  |  2 +-
 whisk/wskprops.go              |  2 +-
 whisk/wskprops_test.go         |  2 +-
 18 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/README.md b/README.md
index abdbdfa..5ae70a7 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
 
 # Openwhisk Client Go
 [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
-[![Build Status](https://travis-ci.org/apache/incubator-openwhisk-client-go.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-client-go)
+[![Build Status](https://travis-ci.org/apache/openwhisk-client-go.svg?branch=master)](https://travis-ci.org/apache/openwhisk-client-go)
 
 This project `openwhisk-client-go` is a Go client library to access Openwhisk API.
 
@@ -36,7 +36,7 @@ Make sure you select the package that fits your local environment, and [set the
 ### Installation
 
 After you download the source code either from the Github or the release page of OpenWhisk, you should have a directory named
-_incubator-openwhisk-client-go_ to host all the source code. Please copy this root directory _incubator-openwhisk-client-go_
+_openwhisk-client-go_ to host all the source code. Please copy this root directory _openwhisk-client-go_
 into the directory $GOPATH/src/github.com/apache.
 
 
@@ -45,12 +45,12 @@ into the directory $GOPATH/src/github.com/apache.
 Open a terminal, and run the following commands to run the unit tests:
 
 ```
-$ cd $GOPATH/src/github.com/apache/incubator-openwhisk-client-go
+$ cd $GOPATH/src/github.com/apache/openwhisk-client-go
 $ govendor sync
 $ go test -v ./... -tags=unit
 ```
 
-You should see all the unit tests passed. If not, please [log an issue](https://github.com/apache/incubator-openwhisk-client-go/issues) for us.
+You should see all the unit tests passed. If not, please [log an issue](https://github.com/apache/openwhisk-client-go/issues) for us.
 
 
 ### Configuration
@@ -66,13 +66,13 @@ The parameter APIVERSION is the version of OpenWhisk API to be used to access th
 The parameter NAMESPACE is the OpenWhisk namespace used to specify the OpenWhisk resources about to be accessed.
 The parameter AUTH is the authentication key used to authenticate the incoming requests to the OpenWhisk services.
 
-For more information regarding the REST API of OpenWhisk, please refer to [OpenWhisk REST API](https://github.com/apache/incubator-openwhisk/blob/master/docs/rest_api.md).
+For more information regarding the REST API of OpenWhisk, please refer to [OpenWhisk REST API](https://github.com/apache/openwhisk/blob/master/docs/rest_api.md).
 
 
 ### Usage
 
 ```go
-import "github.com/apache/incubator-openwhisk-client-go/whisk"
+import "github.com/apache/openwhisk-client-go/whisk"
 ```
 
 Construct a new whisk client, then use various services to access different parts of the whisk api.  For example to get the `hello` action:
@@ -122,7 +122,7 @@ import (
   "net/http"
   "net/url"
 
-  "github.com/apache/incubator-openwhisk-client-go/whisk"
+  "github.com/apache/openwhisk-client-go/whisk"
 )
 
 func main() {
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index 5ca2ad3..f643834 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -21,7 +21,7 @@ set -e
 # Build script for Travis-CI.
 SCRIPTDIR=$(cd $(dirname "$0") && pwd)
 ROOTDIR="$SCRIPTDIR/../.."
-UTILDIR="$ROOTDIR/../incubator-openwhisk-utilities"
+UTILDIR="$ROOTDIR/../openwhisk-utilities"
 
 # run scancode using the ASF Release configuration
 cd $UTILDIR
diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index d539738..264a47c 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -21,4 +21,4 @@ HOMEDIR="$SCRIPTDIR/../../../"
 
 # clone OpenWhisk utilities repo. in order to run scanCode
 cd $HOMEDIR
-git clone https://github.com/apache/incubator-openwhisk-utilities.git
+git clone https://github.com/apache/openwhisk-utilities.git
diff --git a/tools/travis/test_openwhisk.sh b/tools/travis/test_openwhisk.sh
index 952590f..5db7fea 100755
--- a/tools/travis/test_openwhisk.sh
+++ b/tools/travis/test_openwhisk.sh
@@ -18,15 +18,15 @@
 
 set -e
 
-export OPENWHISK_HOME="$(dirname "$TRAVIS_BUILD_DIR")/incubator-openwhisk";
+export OPENWHISK_HOME="$(dirname "$TRAVIS_BUILD_DIR")/openwhisk";
 HOMEDIR="$(dirname "$TRAVIS_BUILD_DIR")"
 cd $HOMEDIR
 
 # Clone the OpenWhisk code
-git clone --depth 3 https://github.com/apache/incubator-openwhisk.git
+git clone --depth 3 https://github.com/apache/openwhisk.git
 
 # Build script for Travis-CI.
-WHISKDIR="$HOMEDIR/incubator-openwhisk"
+WHISKDIR="$HOMEDIR/openwhisk"
 
 cd $WHISKDIR
 ./tools/travis/setup.sh
@@ -40,7 +40,7 @@ $ANSIBLE_CMD couchdb.yml
 $ANSIBLE_CMD initdb.yml
 $ANSIBLE_CMD apigateway.yml
 $ANSIBLE_CMD wipe.yml
-$ANSIBLE_CMD openwhisk.yml -e '{"openwhisk_cli":{"installation_mode":"remote","remote":{"name":"OpenWhisk_CLI","dest_name":"OpenWhisk_CLI","location":"https://github.com/apache/incubator-openwhisk-cli/releases/download/latest"}}}'
+$ANSIBLE_CMD openwhisk.yml -e '{"openwhisk_cli":{"installation_mode":"remote","remote":{"name":"OpenWhisk_CLI","dest_name":"OpenWhisk_CLI","location":"https://github.com/apache/openwhisk-cli/releases/download/latest"}}}'
 
 cd $TRAVIS_BUILD_DIR
 make integration_test
diff --git a/vendor/vendor.json b/vendor/vendor.json
index 62e95b5..ab8ea88 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -21,5 +21,5 @@
 			"revisionTime": "2019-01-09T08:30:14Z"
 		}
 	],
-	"rootPath": "github.com/apache/incubator-openwhisk-client-go"
+	"rootPath": "github.com/apache/openwhisk-client-go"
 }
diff --git a/whisk/action.go b/whisk/action.go
index 254c45c..d8fa2ef 100644
--- a/whisk/action.go
+++ b/whisk/action.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 	"strings"
diff --git a/whisk/activation.go b/whisk/activation.go
index ccba0d4..0204dba 100644
--- a/whisk/activation.go
+++ b/whisk/activation.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 	"strconv"
diff --git a/whisk/api.go b/whisk/api.go
index 6c062e5..51ed0d5 100644
--- a/whisk/api.go
+++ b/whisk/api.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"strings"
 )
diff --git a/whisk/client.go b/whisk/client.go
index 0ab1ccb..45de175 100644
--- a/whisk/client.go
+++ b/whisk/client.go
@@ -35,7 +35,7 @@ import (
 	"strings"
 	"time"
 
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 )
 
 const (
diff --git a/whisk/info.go b/whisk/info.go
index 1cc9179..9cbac6a 100644
--- a/whisk/info.go
+++ b/whisk/info.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 )
diff --git a/whisk/namespace.go b/whisk/namespace.go
index 0371643..cad09c8 100644
--- a/whisk/namespace.go
+++ b/whisk/namespace.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"strings"
 )
diff --git a/whisk/package.go b/whisk/package.go
index 898c3c5..dcb7e21 100644
--- a/whisk/package.go
+++ b/whisk/package.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 	"strings"
diff --git a/whisk/rule.go b/whisk/rule.go
index c9b56a0..9850948 100644
--- a/whisk/rule.go
+++ b/whisk/rule.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 	"strings"
diff --git a/whisk/sdk.go b/whisk/sdk.go
index dae850d..4d735de 100644
--- a/whisk/sdk.go
+++ b/whisk/sdk.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 )
 
diff --git a/whisk/trigger.go b/whisk/trigger.go
index ed0fd7e..d4091ae 100644
--- a/whisk/trigger.go
+++ b/whisk/trigger.go
@@ -20,7 +20,7 @@ package whisk
 import (
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"net/http"
 	"net/url"
 	"strings"
diff --git a/whisk/util.go b/whisk/util.go
index 9c4b789..683c680 100644
--- a/whisk/util.go
+++ b/whisk/util.go
@@ -24,7 +24,7 @@ import (
 	"reflect"
 	"strings"
 
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"github.com/fatih/color"
 	"github.com/google/go-querystring/query"
 	"github.com/hokaccha/go-prettyjson"
diff --git a/whisk/wskprops.go b/whisk/wskprops.go
index fc3f34b..01b7d91 100644
--- a/whisk/wskprops.go
+++ b/whisk/wskprops.go
@@ -21,7 +21,7 @@ import (
 	"bufio"
 	"errors"
 	"fmt"
-	"github.com/apache/incubator-openwhisk-client-go/wski18n"
+	"github.com/apache/openwhisk-client-go/wski18n"
 	"io/ioutil"
 	"net/url"
 	"os"
diff --git a/whisk/wskprops_test.go b/whisk/wskprops_test.go
index f598d70..ff49574 100644
--- a/whisk/wskprops_test.go
+++ b/whisk/wskprops_test.go
@@ -103,7 +103,7 @@ func (viperImp FakeViperImp) AddConfigPath(in string) {
 func getCurrentDir() string {
 	dir, err := os.Getwd()
 	if err != nil {
-		return os.Getenv("GOPATH") + "/src/github.com/apache/incubator-openwhisk-client-go/whisk"
+		return os.Getenv("GOPATH") + "/src/github.com/apache/openwhisk-client-go/whisk"
 	}
 	return dir
 }