File: standalone_ctdk_libs.patch

package info (click to toggle)
golang-github-go-chef-chef 0.0.1%2Bgit20161023.60.deb8c38-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 332 kB
  • ctags: 290
  • sloc: sh: 14; makefile: 7
file content (46 lines) | stat: -rw-r--r-- 1,800 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Author: Jordi Mallach <jordi@debian.org>
Description: use standalone chefcrypto and authentication modules.

Index: golang-github-go-chef-chef/build.sh
===================================================================
--- golang-github-go-chef-chef.orig/build.sh
+++ golang-github-go-chef-chef/build.sh
@@ -11,8 +11,8 @@ set -ex
 # Grab dependencies for coveralls.io integration
 go get -u github.com/axw/gocov/gocov
 go get -u github.com/mattn/goveralls
-go get -u github.com/ctdk/goiardi/chefcrypto
-go get -u github.com/ctdk/goiardi/authentication 
+go get -u github.com/ctdk/chefcrypto
+go get -u github.com/ctdk/goiardi
 go get -u github.com/davecgh/go-spew/spew
 go get -u github.com/smartystreets/goconvey/convey
 
Index: golang-github-go-chef-chef/http_test.go
===================================================================
--- golang-github-go-chef-chef.orig/http_test.go
+++ golang-github-go-chef-chef/http_test.go
@@ -7,7 +7,7 @@ import (
 	"encoding/pem"
 	"errors"
 	"fmt"
-	. "github.com/ctdk/goiardi/chefcrypto"
+	. "github.com/ctdk/chefcrypto"
 	. "github.com/smartystreets/goconvey/convey"
 	"io"
 	"math/big"
Index: golang-github-go-chef-chef/wercker.yml
===================================================================
--- golang-github-go-chef-chef.orig/wercker.yml
+++ golang-github-go-chef-chef/wercker.yml
@@ -18,8 +18,8 @@ build:
     - script:
         name: Get dependencies
         code: |
-          go get -u github.com/ctdk/goiardi/chefcrypto
-          go get -u github.com/ctdk/goiardi/authentication
+          go get -u github.com/ctdk/chefcrypto
+          go get -u github.com/ctdk/goiardi
           go get -u github.com/davecgh/go-spew/spew
           go get -u github.com/smartystreets/goconvey/convey
           go get -u github.com/mattn/goveralls