summaryrefslogtreecommitdiff
path: root/net-misc/croc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-03-16 18:48:52 +0000
committerV3n3RiX <venerix@koprulu.sector>2024-03-16 18:48:52 +0000
commitf265f17242b04ae036b4dc174fa95401d895dbc5 (patch)
tree8daa848087a673b8bf5dad576b0a08048d551da7 /net-misc/croc
parentd08ea43e9ada434f42f4be8e115b67ab22ce38af (diff)
gentoo auto-resync : 16:03:2024 - 18:48:51
Diffstat (limited to 'net-misc/croc')
-rw-r--r--net-misc/croc/Manifest1
-rw-r--r--net-misc/croc/files/croc-disable-network-tests-r1.patch32
2 files changed, 0 insertions, 33 deletions
diff --git a/net-misc/croc/Manifest b/net-misc/croc/Manifest
index 72dd8d18fdef..a3ed1f7b2837 100644
--- a/net-misc/croc/Manifest
+++ b/net-misc/croc/Manifest
@@ -1,4 +1,3 @@
-AUX croc-disable-network-tests-r1.patch 763 BLAKE2B daf8248adb801bd16f1a567d1ce16746877617a83a2f63ab640312abf3b1089105e8b71b4fcb21ccdf8cd59987ac4e5826463680634c44d417d8bf5c2b514b35 SHA512 659936bafed02bc2274ee7a9a482c711850a08ed1e871584d978930e5b38b019b42b3308a3550e388e04cbdcd92964cb5326fc5825b7b377c11e6ba99660f772
DIST croc-9.6.13-vendor.tar.xz 975216 BLAKE2B af70a58b6ae553029ff3c9b0e58c90d5d46ad7b9480e2fb7dd18a92c2b04854a68fde243b0dd149fdc7eba2c267e093510a93f63110f7fe073b25c95361e3d40 SHA512 f1200882ec634971c7c84b313d3a5bb2af533ef500f715d2908046fb9c481ec48fbda3cbb4a2ff93694fc19821a0e62e287b42b578aeca8ec19a3418c0b7bae0
DIST croc-9.6.13.tar.gz 512627 BLAKE2B a3bf8f844a68af6ef3fc23d82168b70c92fa26485a5bf76b6ea6a4b21b2a328e7318edcd5d38ac860bd5c1fb29c3ddf01583ce9b6bef0f2d7bf98b224f683552 SHA512 c0734f7f73d6bb4eac2558733d0d04d9793760e24b02a12fbadef5a67f88be4d9f2036933a6881c8da613a6c2d47b529b5a40e02830eff7f99319059cb0b61fe
DIST croc-9.6.9-vendor.tar.xz 974884 BLAKE2B d6d061fd8259126dc107de3efcae3a023c9a8db44ba96343350360c6d321d73720d1079d46927f65d9ea1001e6421751241d2fe1c04a4f450ff3c4dadc5c6be1 SHA512 2f4ab17ae0c00bc1ac097aeda9fc791b98d8cf6ad31644bdf600a4c321894dea9974155950723e9d19b15c011eef81ab27dae1b2bc2eb4517611bac77bde590f
diff --git a/net-misc/croc/files/croc-disable-network-tests-r1.patch b/net-misc/croc/files/croc-disable-network-tests-r1.patch
deleted file mode 100644
index 04540e14b9d4..000000000000
--- a/net-misc/croc/files/croc-disable-network-tests-r1.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Disable tests that fail with network-sandbox
-
---- a/src/utils/utils_test.go
-+++ b/src/utils/utils_test.go
-@@ -7,7 +7,6 @@ import (
- "log"
- "math/rand"
- "os"
-- "strings"
- "testing"
-
- "github.com/schollz/croc/v9/src/models"
-@@ -189,19 +188,6 @@ func TestHashFile(t *testing.T) {
- assert.Equal(t, "e66c561610ad51e2", fmt.Sprintf("%x", hashed))
- }
-
--func TestPublicIP(t *testing.T) {
-- ip, err := PublicIP()
-- fmt.Println(ip)
-- assert.True(t, strings.Contains(ip, ".") || strings.Contains(ip, ":"))
-- assert.Nil(t, err)
--}
--
--func TestLocalIP(t *testing.T) {
-- ip := LocalIP()
-- fmt.Println(ip)
-- assert.True(t, strings.Contains(ip, ".") || strings.Contains(ip, ":"))
--}
--
- func TestGetRandomName(t *testing.T) {
- name := GetRandomName()
- fmt.Println(name)