Skip to content

Commit

Permalink
point at github.com/glycerine/go-capnproto (ourselves) instead of the…
Browse files Browse the repository at this point in the history
… lagging github.com/jmckaskill/go-capnproto
  • Loading branch information
glycerine committed Mar 25, 2014
1 parent c1e5d5a commit efc43ef
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
7 changes: 7 additions & 0 deletions Makefile
Expand Up @@ -4,3 +4,10 @@ prepare: test.capnp
go install ./capnpc-go
capnp compile -ogo test.capnp
mv test.capnp.go messages_test.go


check:
cat check.zdate.cpz | capnp decode test.capnp Zdate

testbuild:
go test -c -gcflags "-N -l" -v
2 changes: 1 addition & 1 deletion common_test.go
Expand Up @@ -2,7 +2,7 @@ package capn_test

import (
"bytes"
capn "github.com/jmckaskill/go-capnproto"
capn "github.com/glycerine/go-capnproto"
)

func zdateReader(n int, packed bool) *bytes.Reader {
Expand Down
2 changes: 1 addition & 1 deletion compress_test.go
Expand Up @@ -2,7 +2,7 @@ package capn_test

import (
"bytes"
"github.com/jmckaskill/go-capnproto"
"github.com/glycerine/go-capnproto"
"io/ioutil"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions doc.go
Expand Up @@ -16,9 +16,9 @@ and is used to generate import statement from other packages and to detect
when two types are in the same package. Typically these are added as file
annotations. For example:
using Go = import "github.com/jmckaskill/go-capnproto/go.capnp";
using Go = import "github.com/glycerine/go-capnproto/go.capnp";
$Go.package("main");
$Go.import("github.com/jmckaskill/go-capnproto/example");
$Go.import("github.com/glycerine/go-capnproto/example");
In capnproto a Message is the logical data unit. It may consist of a number of
segments to allow easier allocation. All objects are values with pointer
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"encoding/hex"
"fmt"
capn "github.com/jmckaskill/go-capnproto"
capn "github.com/glycerine/go-capnproto"
)

func ExampleReadFromStream() {
Expand Down
2 changes: 1 addition & 1 deletion messages_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"bufio"
"bytes"
"encoding/json"
C "github.com/jmckaskill/go-capnproto"
C "github.com/glycerine/go-capnproto"
"io"
"unsafe"
)
Expand Down
3 changes: 2 additions & 1 deletion stream_test.go
Expand Up @@ -3,10 +3,11 @@ package capn_test
import (
"bytes"
"flag"
capn "github.com/jmckaskill/go-capnproto"
"io"
"io/ioutil"
"testing"

capn "github.com/glycerine/go-capnproto"
)

var benchForever bool
Expand Down

0 comments on commit efc43ef

Please sign in to comment.