Skip to content

Commit

Permalink
Change import paths to ovn-org
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
  • Loading branch information
dave-tucker committed Apr 15, 2021
1 parent 177adf8 commit c674b83
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions HACKING.md
Expand Up @@ -5,14 +5,14 @@ HACKING

Assuming you already have a Go environment set up.

go get github.com/socketplane/libovsdb
cd $GOPATH/src/github.com/socketplane/libovsdb
go get github.com/ovn-org/libovsdb
cd $GOPATH/src/github.com/ovn-org/libovsdb

You can use [`hub`](https://hub.github.com) to fork the repo

hub fork

... or alternatively, fork socketplane/libovsdb on GitHub and add your fork as a remote
... or alternatively, fork ovn-org/libovsdb on GitHub and add your fork as a remote

git remote add <github-user> git@github.com:<github-user>/libovsdb

Expand Down
2 changes: 1 addition & 1 deletion MAINTAINERS
@@ -1,6 +1,6 @@
# libovsdb maintainers file
#
# This file describes who runs the socketplane/libovsdb project and how.
# This file describes who runs the ovn-org/libovsdb project and how.
# This is a living document - if you see something out of date or missing, speak up!
#
# It is structured to be consumable by both humans and programs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
libovsdb
========

[![libovsb-ci](https://github.com/socketplane/libovsdb/actions/workflows/ci.yml/badge.svg)](https://github.com/socketplane/libovsdb/actions/workflows/ci.yml) [![Coverage Status](https://coveralls.io/repos/github/socketplane/libovsdb/badge.svg?branch=main)](https://coveralls.io/github/socketplane/libovsdb?branch=main)
[![libovsb-ci](https://github.com/ovn-org/libovsdb/actions/workflows/ci.yml/badge.svg)](https://github.com/ovn-org/libovsdb/actions/workflows/ci.yml) [![Coverage Status](https://coveralls.io/repos/github/ovn-org/libovsdb/badge.svg?branch=main)](https://coveralls.io/github/ovn-org/libovsdb?branch=main)

An OVSDB Library written in Go

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Expand Up @@ -15,8 +15,8 @@ services:
depends_on:
- ovs
volumes:
- .:/go/src/github.com/socketplane/libovsdb
working_dir: /go/src/github.com/socketplane/libovsdb
- .:/go/src/github.com/ovn-org/libovsdb
working_dir: /go/src/github.com/ovn-org/libovsdb
environment:
DOCKER_IP: "ovs"
OVS_DB: "tcp:ovs:6640"
Expand Down
2 changes: 1 addition & 1 deletion example/play_with_ovs/play_with_ovs.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"reflect"

"github.com/socketplane/libovsdb"
"github.com/ovn-org/libovsdb"
)

// Silly game that detects creation of Bridge named "stop" and exits
Expand Down
2 changes: 1 addition & 1 deletion example/print_schema/print_schema.go
Expand Up @@ -10,7 +10,7 @@ import (
"runtime"
"runtime/pprof"

"github.com/socketplane/libovsdb"
"github.com/ovn-org/libovsdb"
)

func usage() {
Expand Down
2 changes: 1 addition & 1 deletion example/stress/stress.go
Expand Up @@ -9,7 +9,7 @@ import (
"runtime"
"runtime/pprof"

"github.com/socketplane/libovsdb"
"github.com/ovn-org/libovsdb"
)

var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to this file")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,4 +1,4 @@
module github.com/socketplane/libovsdb
module github.com/ovn-org/libovsdb

go 1.16

Expand Down

0 comments on commit c674b83

Please sign in to comment.