]> Cypherpunks repositories - gocheese.git/commitdiff
Change namespace because of domain expiration
authorSergey Matveev <stargrave@stargrave.org>
Tue, 23 Jul 2024 12:02:13 +0000 (15:02 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Tue, 23 Jul 2024 12:02:13 +0000 (15:02 +0300)
go.mod
go.sum
json.go
refresh.go
upload.go

diff --git a/go.mod b/go.mod
index e497fbe2900b4be058431179451843a533552f53..5c17a961f54385589b66485e647ee672203870c8 100644 (file)
--- a/go.mod
+++ b/go.mod
@@ -1,9 +1,9 @@
-module go.cypherpunks.ru/gocheese/v4
+module go.cypherpunks.su/gocheese/v5
 
 go 1.21
 
 require (
-       go.cypherpunks.ru/recfile v0.7.0
+       go.cypherpunks.su/recfile/v2 v2.0.0
        golang.org/x/crypto v0.18.0
        golang.org/x/net v0.19.0
 )
diff --git a/go.sum b/go.sum
index 6e3b7d70cb8b2af6b708f8a10003acd1ed4fa512..5cd56b1fc93debf6b96926e65c6fd80bebc78f6d 100644 (file)
--- a/go.sum
+++ b/go.sum
@@ -1,5 +1,5 @@
-go.cypherpunks.ru/recfile v0.7.0 h1:0R1UnDGKccp7JnC66msslJMlSY02jHx/XkW+ISl0GuY=
-go.cypherpunks.ru/recfile v0.7.0/go.mod h1:sR+KajB+vzofL3SFVFwKt3Fke0FaCcN1g3YPNAhU3qI=
+go.cypherpunks.su/recfile/v2 v2.0.0 h1:Q2o+OzM1H2O1WnshU88r+waBqylkqZj8plBdBWZitcU=
+go.cypherpunks.su/recfile/v2 v2.0.0/go.mod h1:36EnyBwx6VpsSM5MMcYGTDiKrVEP49S09p33EFuhQYU=
 golang.org/x/crypto v0.18.0 h1:PGVlW0xEltQnzFZ55hkuX5+KLyrMYhHld1YHO4AKcdc=
 golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg=
 golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c=
diff --git a/json.go b/json.go
index 7f1f3d77624764e3cb307f4f88d2dd215f6b8c1b..f7ef25616bf8694a2afd232d855520c5b78ce9f9 100644 (file)
--- a/json.go
+++ b/json.go
@@ -24,7 +24,7 @@ import (
        "path/filepath"
        "strings"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
 )
 
 func getMD(pkgName, version string) (*PkgMeta, []*PkgReleaseInfo, error) {
index 3d134a0c2274973d2e2306cc3a2eed7dca54bd29..5b41173ec7d9b197ab30db1ce4dfdcb7371d1f57 100644 (file)
@@ -35,7 +35,7 @@ import (
        "strings"
        "time"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
        "golang.org/x/crypto/blake2b"
 )
 
index 7e5ed2a6c5f7a9a5b55eb102c01f83ebadc63413..a78a0a9b5855cc9cddd496c48472fb66edd51f70 100644 (file)
--- a/upload.go
+++ b/upload.go
@@ -30,7 +30,7 @@ import (
        "strings"
        "time"
 
-       "go.cypherpunks.ru/recfile"
+       "go.cypherpunks.su/recfile/v2"
 )
 
 var NormalizationRe = regexp.MustCompilePOSIX("[-_.]+")