Relocate into the "zclconf" github account

This commit is contained in:
Martin Atkins 2017-05-27 17:33:09 -07:00
parent 42b18cc7c6
commit 308eb3a291
32 changed files with 36 additions and 36 deletions

View File

@ -6,7 +6,7 @@ import (
"github.com/apparentlymart/go-cty/cty/convert" "github.com/apparentlymart/go-cty/cty/convert"
"github.com/apparentlymart/go-cty/cty/gocty" "github.com/apparentlymart/go-cty/cty/gocty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// DecodeBody extracts the configuration within the given body into the given // DecodeBody extracts the configuration within the given body into the given

View File

@ -7,8 +7,8 @@ import (
"testing" "testing"
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
zclJSON "github.com/apparentlymart/go-zcl/zcl/json" zclJSON "github.com/zclconf/go-zcl/zcl/json"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View File

@ -6,7 +6,7 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// ImpliedBodySchema produces a zcl.BodySchema derived from the type of the // ImpliedBodySchema produces a zcl.BodySchema derived from the type of the

View File

@ -5,7 +5,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View File

@ -3,7 +3,7 @@ package gozcl
import ( import (
"reflect" "reflect"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
var victimExpr zcl.Expression var victimExpr zcl.Expression

View File

@ -3,7 +3,7 @@ package hclhil
import ( import (
"fmt" "fmt"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/hashicorp/hcl" "github.com/hashicorp/hcl"
hclast "github.com/hashicorp/hcl/hcl/ast" hclast "github.com/hashicorp/hcl/hcl/ast"
) )

View File

@ -5,7 +5,7 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// Parse attempts to parse the given buffer as HCL with HIL expressions and, // Parse attempts to parse the given buffer as HCL with HIL expressions and,

View File

@ -1,7 +1,7 @@
package hclhil package hclhil
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
hclparser "github.com/hashicorp/hcl/hcl/parser" hclparser "github.com/hashicorp/hcl/hcl/parser"
hcltoken "github.com/hashicorp/hcl/hcl/token" hcltoken "github.com/hashicorp/hcl/hcl/token"
hilast "github.com/hashicorp/hil/ast" hilast "github.com/hashicorp/hil/ast"

View File

@ -5,7 +5,7 @@ import (
"strings" "strings"
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
hclast "github.com/hashicorp/hcl/hcl/ast" hclast "github.com/hashicorp/hcl/hcl/ast"
hcltoken "github.com/hashicorp/hcl/hcl/token" hcltoken "github.com/hashicorp/hcl/hcl/token"
) )

View File

@ -6,7 +6,7 @@ import (
"testing" "testing"
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
hclast "github.com/hashicorp/hcl/hcl/ast" hclast "github.com/hashicorp/hcl/hcl/ast"
hcltoken "github.com/hashicorp/hcl/hcl/token" hcltoken "github.com/hashicorp/hcl/hcl/token"

View File

@ -7,7 +7,7 @@ import (
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function" "github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/hashicorp/hil" "github.com/hashicorp/hil"
hilast "github.com/hashicorp/hil/ast" hilast "github.com/hashicorp/hil/ast"
) )

View File

@ -6,7 +6,7 @@ import (
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function" "github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-cty/cty/function/stdlib" "github.com/apparentlymart/go-cty/cty/function/stdlib"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func TestTemplateExpression(t *testing.T) { func TestTemplateExpression(t *testing.T) {

View File

@ -3,7 +3,7 @@ package json
import ( import (
"math/big" "math/big"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
type node interface { type node interface {

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"math/big" "math/big"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func parseFileContent(buf []byte, filename string) (node, zcl.Diagnostics) { func parseFileContent(buf []byte, filename string) (node, zcl.Diagnostics) {

View File

@ -5,7 +5,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View File

@ -5,7 +5,7 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// Parse attempts to parse the given buffer as JSON and, if successful, returns // Parse attempts to parse the given buffer as JSON and, if successful, returns

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func TestParse_nonObject(t *testing.T) { func TestParse_nonObject(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"github.com/apparentlymart/go-textseg/textseg" "github.com/apparentlymart/go-textseg/textseg"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
//go:generate stringer -type tokenType scanner.go //go:generate stringer -type tokenType scanner.go

View File

@ -6,7 +6,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func TestScan(t *testing.T) { func TestScan(t *testing.T) {

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/apparentlymart/go-zcl/zcl/hclhil" "github.com/zclconf/go-zcl/zcl/hclhil"
) )
// body is the implementation of "Body" used for files processed with the JSON // body is the implementation of "Body" used for files processed with the JSON

View File

@ -5,7 +5,7 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View File

@ -6,7 +6,7 @@ import (
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/convert" "github.com/apparentlymart/go-cty/cty/convert"
"github.com/apparentlymart/go-cty/cty/function" "github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// Expression is the abstract type for nodes that behave as zcl expressions. // Expression is the abstract type for nodes that behave as zcl expressions.

View File

@ -6,7 +6,7 @@ import (
"github.com/apparentlymart/go-cty/cty" "github.com/apparentlymart/go-cty/cty"
"github.com/apparentlymart/go-cty/cty/function" "github.com/apparentlymart/go-cty/cty/function"
"github.com/apparentlymart/go-cty/cty/function/stdlib" "github.com/apparentlymart/go-cty/cty/function/stdlib"
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func TestFunctionCallExprValue(t *testing.T) { func TestFunctionCallExprValue(t *testing.T) {

View File

@ -4,7 +4,7 @@ package zclsyntax
// Run 'go generate' on this package to update the set of functions here. // Run 'go generate' on this package to update the set of functions here.
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
func (e *FunctionCallExpr) Variables() []zcl.Traversal { func (e *FunctionCallExpr) Variables() []zcl.Traversal {

View File

@ -89,7 +89,7 @@ const outputPreamble = `package zclsyntax
// Run 'go generate' on this package to update the set of functions here. // Run 'go generate' on this package to update the set of functions here.
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
)` )`
const outputMethodFmt = ` const outputMethodFmt = `

View File

@ -1,6 +1,6 @@
package zclsyntax package zclsyntax
import "github.com/apparentlymart/go-zcl/zcl" import "github.com/zclconf/go-zcl/zcl"
// File is the top-level object resulting from parsing a configuration file. // File is the top-level object resulting from parsing a configuration file.
type File struct { type File struct {

View File

@ -1,7 +1,7 @@
package zclsyntax package zclsyntax
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// Node is the abstract type that every AST node implements. // Node is the abstract type that every AST node implements.

View File

@ -1,7 +1,7 @@
package zclsyntax package zclsyntax
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// AsZCLBlock returns the block data expressed as a *zcl.Block. // AsZCLBlock returns the block data expressed as a *zcl.Block.

View File

@ -1,7 +1,7 @@
package zclsyntax package zclsyntax
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// Variables returns all of the variables referenced within a given experssion. // Variables returns all of the variables referenced within a given experssion.

View File

@ -1,7 +1,7 @@
package zclsyntax package zclsyntax
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
// VisitFunc is the callback signature for VisitAll. // VisitFunc is the callback signature for VisitAll.

View File

@ -1,7 +1,7 @@
package zcled package zcled
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
) )
type contextStringer interface { type contextStringer interface {

View File

@ -1,9 +1,9 @@
package zclparse package zclparse
import ( import (
"github.com/apparentlymart/go-zcl/zcl" "github.com/zclconf/go-zcl/zcl"
"github.com/apparentlymart/go-zcl/zcl/hclhil" "github.com/zclconf/go-zcl/zcl/hclhil"
"github.com/apparentlymart/go-zcl/zcl/json" "github.com/zclconf/go-zcl/zcl/json"
) )
// NOTE: This is the public interface for parsing. The actual parsers are // NOTE: This is the public interface for parsing. The actual parsers are