diff --git a/Dockerfile.build b/Dockerfile.build index 1d1e0d3..5ec624b 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -7,8 +7,8 @@ ENV GOPATH=/go ENV PATH=$PATH:/usr/local/go/bin:/go/bin RUN mkdir -p /go/bin -ADD . /go/src/github.com/miracl/go-xmlsec -WORKDIR /go/src/github.com/miracl/go-xmlsec +ADD . /go/src/github.com/tecnickcom/go-xmlsec +WORKDIR /go/src/github.com/tecnickcom/go-xmlsec RUN go get github.com/crewjam/errset RUN go build -o /bin/xmldsig ./examples/xmldsig.go diff --git a/Dockerfile.build-static b/Dockerfile.build-static index 9775d7c..553b092 100644 --- a/Dockerfile.build-static +++ b/Dockerfile.build-static @@ -89,8 +89,8 @@ RUN curl -sL http://www.aleksey.com/xmlsec/download/xmlsec1-1.2.22.tar.gz | tar make -C include install && \ make install-pkgconfigDATA -ADD . /go/src/github.com/miracl/go-xmlsec -WORKDIR /go/src/github.com/miracl/go-xmlsec +ADD . /go/src/github.com/tecnickcom/go-xmlsec +WORKDIR /go/src/github.com/tecnickcom/go-xmlsec RUN go get github.com/crewjam/errset RUN go build -tags static -ldflags '-s -extldflags "-static"' -o /bin/xmldsig ./examples/xmldsig.go RUN ldd /bin/xmldsig || true diff --git a/Makefile b/Makefile index 25a30f9..33bd031 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # MAKEFILE # # @author Nicola Asuni -# @link https://github.com/miracl/go-xmlsec +# @link https://github.com/tecnickcom/go-xmlsec # ------------------------------------------------------------------------------ # List special make targets that are not associated with files @@ -11,7 +11,7 @@ SHELL=/bin/bash # CVS path (path to the parent dir containing the project) -CVSPATH=github.com/miracl/go-xmlsec +CVSPATH=github.com/tecnickcom/go-xmlsec # Project vendor VENDOR=miracl diff --git a/README.md b/README.md index f96ed22..aa5f349 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # go-xmlsec -[![Documentation](https://godoc.org/github.com/miracl/go-xmlsec?status.png)](http://godoc.org/github.com/miracl/go-xmlsec) -[![Master Build Status](https://secure.travis-ci.org/miracl/go-xmlsec.png?branch=master)](https://travis-ci.org/miracl/go-xmlsec?branch=master) -[![Master Coverage Status](https://coveralls.io/repos/miracl/go-xmlsec/badge.svg?branch=master&service=github)](https://coveralls.io/github/miracl/go-xmlsec?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/miracl/go-xmlsec)](https://goreportcard.com/report/github.com/miracl/go-xmlsec) +[![Documentation](https://godoc.org/github.com/tecnickcom/go-xmlsec?status.png)](http://godoc.org/github.com/tecnickcom/go-xmlsec) +[![Master Build Status](https://secure.travis-ci.org/tecnickcom/go-xmlsec.png?branch=master)](https://travis-ci.org/tecnickcom/go-xmlsec?branch=master) +[![Master Coverage Status](https://coveralls.io/repos/tecnickcom/go-xmlsec/badge.svg?branch=master&service=github)](https://coveralls.io/github/tecnickcom/go-xmlsec?branch=master) +[![Go Report Card](https://goreportcard.com/badge/github.com/tecnickcom/go-xmlsec)](https://goreportcard.com/report/github.com/tecnickcom/go-xmlsec) A partial wrapper for [xmlsec](https://www.aleksey.com/xmlsec). @@ -47,12 +47,12 @@ As seems to be the case for many things in the XMLish world, the xmldsig and xml This package uses cgo to wrap libxmlsec. As such, you'll need libxmlsec headers and a C compiler to make it work. On linux, this might look like: $ apt-get install libxml2-dev libxmlsec1-dev pkg-config - $ go get github.com/miracl/go-xmlsec + $ go get github.com/tecnickcom/go-xmlsec On Mac with homebrew, this might look like: $ brew install libxmlsec1 libxml2 pkg-config - $ go get github.com/miracl/go-xmlsec + $ go get github.com/tecnickcom/go-xmlsec # Static Linking diff --git a/examples/xmldsig.go b/examples/xmldsig.go index de1a4ba..6fec470 100644 --- a/examples/xmldsig.go +++ b/examples/xmldsig.go @@ -6,7 +6,7 @@ import ( "io/ioutil" "os" - "github.com/miracl/go-xmlsec" + "github.com/tecnickcom/go-xmlsec" ) func main() {