Skip to content

Commit

Permalink
switch links to the fork
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Yelizariev committed Nov 16, 2019
1 parent 6da8145 commit d3fb3a3
Show file tree
Hide file tree
Showing 19 changed files with 42 additions and 42 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ node_modules:
npm install

$(GOPATH)/bin/houndd: ui/bindata.go $(SRCS)
go install github.com/hound-search/hound/cmds/houndd
go install github.com/it-projects-llc/hound/cmds/houndd

$(GOPATH)/bin/hound: ui/bindata.go $(SRCS)
go install github.com/hound-search/hound/cmds/hound
go install github.com/it-projects-llc/hound/cmds/hound

.build/bin/go-bindata:
GOPATH=`pwd`/.build go get github.com/jteeuwen/go-bindata/...
Expand All @@ -32,7 +32,7 @@ dev: ALL
npm install

test:
go test github.com/hound-search/hound/...
go test github.com/it-projects-llc/hound/...

clean:
rm -rf .build node_modules
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hound

[![Build Status](https://travis-ci.org/hound-search/hound.svg?branch=master)](https://travis-ci.org/hound-search/hound)
[![Build Status](https://travis-ci.org/it-projects-llc/hound.svg?branch=master)](https://travis-ci.org/it-projects-llc/hound)

Hound is an extremely fast source code search engine. The core is based on this article (and code) from Russ Cox:
[Regular Expression Matching with a Trigram Index](http://swtch.com/~rsc/regexp/regexp4.html). Hound itself is a static
Expand All @@ -15,7 +15,7 @@ Hound is an extremely fast source code search engine. The core is based on this
1. Use the Go tools to install Hound. The binaries `houndd` (server) and `hound` (cli) will be installed in your $GOPATH.

```
go get github.com/hound-search/hound/cmds/...
go get github.com/it-projects-llc/hound/cmds/...
```

2. Create a [config.json](config-example.json) in a directory with your list of repositories.
Expand Down Expand Up @@ -103,15 +103,15 @@ Go tools work accordingly. See [Setting GOPATH](https://github.com/golang/go/wik
up your Go workspace. With a `GOPATH` set, the following commands will build hound locally.

```
git clone https://github.com/hound-search/hound.git ${GOPATH}/src/github.com/hound-search/hound
cd ${GOPATH}/src/github.com/hound-search/hound
git clone https://github.com/it-projects-llc/hound.git ${GOPATH}/src/github.com/it-projects-llc/hound
cd ${GOPATH}/src/github.com/it-projects-llc/hound
make
```

If this is your only Go project, you can set your GOPATH just for Hound:
```
git clone https://github.com/hound-search/hound.git src/github.com/hound-search/hound
GOPATH=$(pwd) make -C src/github.com/hound-search/hound
git clone https://github.com/it-projects-llc/hound.git src/github.com/it-projects-llc/hound
GOPATH=$(pwd) make -C src/github.com/it-projects-llc/hound
```

### Testing
Expand Down
6 changes: 3 additions & 3 deletions api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"strings"
"time"

"github.com/hound-search/hound/config"
"github.com/hound-search/hound/index"
"github.com/hound-search/hound/searcher"
"github.com/it-projects-llc/hound/config"
"github.com/it-projects-llc/hound/index"
"github.com/it-projects-llc/hound/searcher"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions client/ack.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"regexp"

"github.com/hound-search/hound/ansi"
"github.com/hound-search/hound/config"
"github.com/it-projects-llc/hound/ansi"
"github.com/it-projects-llc/hound/config"
)

type ackPresenter struct {
Expand Down
4 changes: 2 additions & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"regexp"
"strings"

"github.com/hound-search/hound/config"
"github.com/hound-search/hound/index"
"github.com/it-projects-llc/hound/config"
"github.com/it-projects-llc/hound/index"
)

type Response struct {
Expand Down
2 changes: 1 addition & 1 deletion client/coalesce.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package client

import (
"github.com/hound-search/hound/index"
"github.com/it-projects-llc/hound/index"
)

type Block struct {
Expand Down
2 changes: 1 addition & 1 deletion client/coalesce_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"testing"

"github.com/hound-search/hound/index"
"github.com/it-projects-llc/hound/index"
)

// TODO(knorton):
Expand Down
4 changes: 2 additions & 2 deletions client/grep.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"regexp"

"github.com/hound-search/hound/ansi"
"github.com/hound-search/hound/config"
"github.com/it-projects-llc/hound/ansi"
"github.com/it-projects-llc/hound/config"
)

type grepPresenter struct {
Expand Down
4 changes: 2 additions & 2 deletions cmds/hound/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"os/user"
"regexp"

"github.com/hound-search/hound/client"
"github.com/hound-search/hound/index"
"github.com/it-projects-llc/hound/client"
"github.com/it-projects-llc/hound/index"
)

// A uninitialized variable that can be defined during the build process with
Expand Down
10 changes: 5 additions & 5 deletions cmds/houndd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
"strings"
"syscall"

"github.com/hound-search/hound/api"
"github.com/hound-search/hound/config"
"github.com/hound-search/hound/searcher"
"github.com/hound-search/hound/ui"
"github.com/hound-search/hound/web"
"github.com/it-projects-llc/hound/api"
"github.com/it-projects-llc/hound/config"
"github.com/it-projects-llc/hound/searcher"
"github.com/it-projects-llc/hound/ui"
"github.com/it-projects-llc/hound/web"
)

const gracefulShutdownSignal = syscall.SIGTERM
Expand Down
2 changes: 1 addition & 1 deletion codesearch/index/write.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"unsafe"

"github.com/hound-search/hound/codesearch/sparse"
"github.com/it-projects-llc/hound/codesearch/sparse"
)

// Index writing. See read.go for details of on-disk format.
Expand Down
2 changes: 1 addition & 1 deletion codesearch/regexp/match.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"regexp/syntax"
"sort"

"github.com/hound-search/hound/codesearch/sparse"
"github.com/it-projects-llc/hound/codesearch/sparse"
)

// A matcher holds the state for running regular expression search.
Expand Down
2 changes: 1 addition & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"
"testing"

"github.com/hound-search/hound/vcs"
"github.com/it-projects-llc/hound/vcs"
)

const exampleConfigFile = "config-example.json"
Expand Down
2 changes: 1 addition & 1 deletion index/grep.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"os"

"github.com/hound-search/hound/codesearch/regexp"
"github.com/it-projects-llc/hound/codesearch/regexp"
)

var nl = []byte{'\n'}
Expand Down
2 changes: 1 addition & 1 deletion index/grep_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/hound-search/hound/codesearch/regexp"
"github.com/it-projects-llc/hound/codesearch/regexp"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions index/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"time"
"unicode/utf8"

"github.com/hound-search/hound/codesearch/index"
"github.com/hound-search/hound/codesearch/regexp"
"github.com/it-projects-llc/hound/codesearch/index"
"github.com/it-projects-llc/hound/codesearch/regexp"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions searcher/searcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"sync"
"time"

"github.com/hound-search/hound/config"
"github.com/hound-search/hound/index"
"github.com/hound-search/hound/vcs"
"github.com/it-projects-llc/hound/config"
"github.com/it-projects-llc/hound/index"
"github.com/it-projects-llc/hound/vcs"
)

type Searcher struct {
Expand Down
2 changes: 1 addition & 1 deletion ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"runtime"
text_template "text/template"

"github.com/hound-search/hound/config"
"github.com/it-projects-llc/hound/config"
)

// An http.Handler for the dev-mode case.
Expand Down
8 changes: 4 additions & 4 deletions web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"net/http"
"sync"

"github.com/hound-search/hound/api"
"github.com/hound-search/hound/config"
"github.com/hound-search/hound/searcher"
"github.com/hound-search/hound/ui"
"github.com/it-projects-llc/hound/api"
"github.com/it-projects-llc/hound/config"
"github.com/it-projects-llc/hound/searcher"
"github.com/it-projects-llc/hound/ui"
)

// Server is an HTTP server that handles all
Expand Down

0 comments on commit d3fb3a3

Please sign in to comment.