diff --git a/README.md b/README.md index 287d9bf..b7790f7 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ Aggregating RSS/Atom feeds to a single HTML page. ## Installation -First, you need to install [Go](https://golang.org/dl/) version 1.23 or higher. -After that, you can use `go get` to install Keruu: +First, you need to install [Go](https://golang.org/dl/) version 1.24 or higher. +After that, you can use `go install` to install Keruu: - $ go get github.com/jpallari/keruu + $ go install go.lepovirta.org/keruu@latest The executable should now be in path `$GOPATH/bin/keruu` (or `~/go/bin/keruu`). diff --git a/go.mod b/go.mod index c72be08..ab29003 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/jpallari/keruu +module go.lepovirta.org/keruu go 1.24.0 diff --git a/internal/aggregation/aggregation.go b/internal/aggregation/aggregation.go index 6e008e1..6ef6164 100644 --- a/internal/aggregation/aggregation.go +++ b/internal/aggregation/aggregation.go @@ -5,7 +5,7 @@ import ( "sort" "time" - "github.com/jpallari/keruu/internal/feed" + "go.lepovirta.org/keruu/internal/feed" ) type PostGroup struct { diff --git a/internal/aggregation/grouping.go b/internal/aggregation/grouping.go index d3abeca..f50361f 100644 --- a/internal/aggregation/grouping.go +++ b/internal/aggregation/grouping.go @@ -4,7 +4,7 @@ import ( "fmt" "strconv" - "github.com/jpallari/keruu/internal/feed" + "go.lepovirta.org/keruu/internal/feed" ) const ( diff --git a/internal/config/config.go b/internal/config/config.go index 260622f..8f52593 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -7,10 +7,10 @@ import ( "io" "os" - "github.com/jpallari/keruu/internal/aggregation" - "github.com/jpallari/keruu/internal/feed" - "github.com/jpallari/keruu/internal/fetch" - "github.com/jpallari/keruu/internal/file" + "go.lepovirta.org/keruu/internal/aggregation" + "go.lepovirta.org/keruu/internal/feed" + "go.lepovirta.org/keruu/internal/fetch" + "go.lepovirta.org/keruu/internal/file" "gopkg.in/yaml.v3" ) diff --git a/internal/feed/feed.go b/internal/feed/feed.go index 90b9e17..c4878d1 100644 --- a/internal/feed/feed.go +++ b/internal/feed/feed.go @@ -3,8 +3,8 @@ package feed import ( "fmt" - "github.com/jpallari/keruu/internal/regexp" - "github.com/jpallari/keruu/internal/url" + "go.lepovirta.org/keruu/internal/regexp" + "go.lepovirta.org/keruu/internal/url" ) // Config contains the details of a single feed diff --git a/internal/feed/feed_test.go b/internal/feed/feed_test.go index 0f3d978..df68ddd 100644 --- a/internal/feed/feed_test.go +++ b/internal/feed/feed_test.go @@ -3,7 +3,7 @@ package feed import ( "testing" - "github.com/jpallari/keruu/internal/regexp" + "go.lepovirta.org/keruu/internal/regexp" "github.com/stretchr/testify/assert" ) diff --git a/internal/feed/linker.go b/internal/feed/linker.go index c33f168..b096885 100644 --- a/internal/feed/linker.go +++ b/internal/feed/linker.go @@ -3,7 +3,7 @@ package feed import ( "strings" - "github.com/jpallari/keruu/internal/url" + "go.lepovirta.org/keruu/internal/url" "github.com/mmcdole/gofeed" ) diff --git a/internal/feed/linker_test.go b/internal/feed/linker_test.go index 2b42f2b..f7d11fb 100644 --- a/internal/feed/linker_test.go +++ b/internal/feed/linker_test.go @@ -3,7 +3,7 @@ package feed import ( "testing" - "github.com/jpallari/keruu/internal/url" + "go.lepovirta.org/keruu/internal/url" "github.com/mmcdole/gofeed" "github.com/stretchr/testify/assert" ) diff --git a/internal/feed/post.go b/internal/feed/post.go index 883a45d..2f1d743 100644 --- a/internal/feed/post.go +++ b/internal/feed/post.go @@ -3,7 +3,7 @@ package feed import ( "time" - "github.com/jpallari/keruu/internal/url" + "go.lepovirta.org/keruu/internal/url" "github.com/mmcdole/gofeed" ) diff --git a/internal/fetch/fetch.go b/internal/fetch/fetch.go index e194ef4..faee86b 100644 --- a/internal/fetch/fetch.go +++ b/internal/fetch/fetch.go @@ -8,7 +8,7 @@ import ( "sync/atomic" "time" - "github.com/jpallari/keruu/internal/feed" + "go.lepovirta.org/keruu/internal/feed" "github.com/mmcdole/gofeed" ) diff --git a/keruu.go b/keruu.go index 2323113..aaf19e2 100644 --- a/keruu.go +++ b/keruu.go @@ -8,10 +8,10 @@ import ( "log" "os" - "github.com/jpallari/keruu/internal/aggregation" - "github.com/jpallari/keruu/internal/config" - "github.com/jpallari/keruu/internal/fetch" - "github.com/jpallari/keruu/internal/file" + "go.lepovirta.org/keruu/internal/aggregation" + "go.lepovirta.org/keruu/internal/config" + "go.lepovirta.org/keruu/internal/fetch" + "go.lepovirta.org/keruu/internal/file" ) var cfgPath string