Skip to content

Commit

Permalink
add LICENSE, README.md, change imports paths
Browse files Browse the repository at this point in the history
  • Loading branch information
rogpeppe committed Jun 10, 2014
1 parent 5e67d68 commit fbf0be3
Show file tree
Hide file tree
Showing 12 changed files with 680 additions and 15 deletions.
661 changes: 661 additions & 0 deletions LICENCE

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions README.md
@@ -0,0 +1,4 @@
Juju charms
==========

This package parses juju charms.
4 changes: 2 additions & 2 deletions bundle_test.go
Expand Up @@ -19,8 +19,8 @@ import (
gc "launchpad.net/gocheck"
"launchpad.net/goyaml"

"github.com/juju/juju/charm"
charmtesting "github.com/juju/juju/charm/testing"
"github.com/juju/charm"
charmtesting "github.com/juju/charm/testing"
)

type BundleSuite struct {
Expand Down
4 changes: 2 additions & 2 deletions charm_test.go
Expand Up @@ -12,8 +12,8 @@ import (
gc "launchpad.net/gocheck"
"launchpad.net/goyaml"

"github.com/juju/juju/charm"
charmtesting "github.com/juju/juju/charm/testing"
"github.com/juju/charm"
charmtesting "github.com/juju/charm/testing"
)

func Test(t *stdtesting.T) {
Expand Down
2 changes: 1 addition & 1 deletion config_test.go
Expand Up @@ -9,7 +9,7 @@ import (

gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
"github.com/juju/charm"
)

type ConfigSuite struct {
Expand Down
4 changes: 2 additions & 2 deletions dir_test.go
Expand Up @@ -15,8 +15,8 @@ import (

gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
charmtesting "github.com/juju/juju/charm/testing"
"github.com/juju/charm"
charmtesting "github.com/juju/charm/testing"
"github.com/juju/testing"
)

Expand Down
2 changes: 1 addition & 1 deletion meta.go
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/juju/schema"
"launchpad.net/goyaml"

"github.com/juju/juju/charm/hooks"
"github.com/juju/charm/hooks"
)

// RelationScope describes the scope of a relation.
Expand Down
4 changes: 2 additions & 2 deletions meta_test.go
Expand Up @@ -14,8 +14,8 @@ import (

gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
charmtesting "github.com/juju/juju/charm/testing"
"github.com/juju/charm"
charmtesting "github.com/juju/charm/testing"
)

func repoMeta(name string) io.Reader {
Expand Down
4 changes: 2 additions & 2 deletions repo_test.go
Expand Up @@ -12,8 +12,8 @@ import (
gitjujutesting "github.com/juju/testing"
gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
charmtesting "github.com/juju/juju/charm/testing"
"github.com/juju/charm"
charmtesting "github.com/juju/charm/testing"
)

type StoreSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion testing/charm.go
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/juju/utils/fs"

"github.com/juju/juju/charm"
"github.com/juju/charm"
)

func check(err error) {
Expand Down
2 changes: 1 addition & 1 deletion testing/mockstore.go
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/juju/utils"
gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
"github.com/juju/charm"
)

var logger = loggo.GetLogger("juju.charm.testing.mockstore")
Expand Down
2 changes: 1 addition & 1 deletion url_test.go
Expand Up @@ -11,7 +11,7 @@ import (
"labix.org/v2/mgo/bson"
gc "launchpad.net/gocheck"

"github.com/juju/juju/charm"
"github.com/juju/charm"
)

type URLSuite struct{}
Expand Down

0 comments on commit fbf0be3

Please sign in to comment.