From 0a8e95408f286873244ee40215e4907f62d37ee1 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Sat, 6 Jul 2019 19:12:24 +0200 Subject: [PATCH] std_shims->stew --- std_shims/README.md | 1 - std_shims.nimble => stew.nimble | 3 +-- {std_shims/support => stew}/README.md | 0 {std_shims/support => stew}/bitops2.nim | 0 {std_shims => stew}/closures.nim | 0 {std_shims => stew}/io.nim | 0 {std_shims => stew}/objects.nim | 0 std_shims/macros_shim.nim => stew/shims/macros.nim | 0 std_shims/os_shims.nim => stew/shims/os.nim | 0 std_shims/parse_shims.nim => stew/shims/parse.nim | 0 std_shims/tables_shims.nim => stew/shims/tables.nim | 0 {std_shims => stew}/strings.nim | 0 12 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 std_shims/README.md rename std_shims.nimble => stew.nimble (91%) rename {std_shims/support => stew}/README.md (100%) rename {std_shims/support => stew}/bitops2.nim (100%) rename {std_shims => stew}/closures.nim (100%) rename {std_shims => stew}/io.nim (100%) rename {std_shims => stew}/objects.nim (100%) rename std_shims/macros_shim.nim => stew/shims/macros.nim (100%) rename std_shims/os_shims.nim => stew/shims/os.nim (100%) rename std_shims/parse_shims.nim => stew/shims/parse.nim (100%) rename std_shims/tables_shims.nim => stew/shims/tables.nim (100%) rename {std_shims => stew}/strings.nim (100%) diff --git a/std_shims/README.md b/std_shims/README.md deleted file mode 100644 index c7d71fa..0000000 --- a/std_shims/README.md +++ /dev/null @@ -1 +0,0 @@ -Backports from new versions of nim to whatever version the std shim library supports diff --git a/std_shims.nimble b/stew.nimble similarity index 91% rename from std_shims.nimble rename to stew.nimble index 08d8361..a8947ed 100644 --- a/std_shims.nimble +++ b/stew.nimble @@ -1,6 +1,6 @@ mode = ScriptMode.Verbose -packageName = "std_shims" +packageName = "stew" version = "0.1.0" author = "Status Research & Development GmbH" description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository" @@ -8,4 +8,3 @@ license = "Apache License 2.0" skipDirs = @["tests"] requires "nim >= 0.19.0" - diff --git a/std_shims/support/README.md b/stew/README.md similarity index 100% rename from std_shims/support/README.md rename to stew/README.md diff --git a/std_shims/support/bitops2.nim b/stew/bitops2.nim similarity index 100% rename from std_shims/support/bitops2.nim rename to stew/bitops2.nim diff --git a/std_shims/closures.nim b/stew/closures.nim similarity index 100% rename from std_shims/closures.nim rename to stew/closures.nim diff --git a/std_shims/io.nim b/stew/io.nim similarity index 100% rename from std_shims/io.nim rename to stew/io.nim diff --git a/std_shims/objects.nim b/stew/objects.nim similarity index 100% rename from std_shims/objects.nim rename to stew/objects.nim diff --git a/std_shims/macros_shim.nim b/stew/shims/macros.nim similarity index 100% rename from std_shims/macros_shim.nim rename to stew/shims/macros.nim diff --git a/std_shims/os_shims.nim b/stew/shims/os.nim similarity index 100% rename from std_shims/os_shims.nim rename to stew/shims/os.nim diff --git a/std_shims/parse_shims.nim b/stew/shims/parse.nim similarity index 100% rename from std_shims/parse_shims.nim rename to stew/shims/parse.nim diff --git a/std_shims/tables_shims.nim b/stew/shims/tables.nim similarity index 100% rename from std_shims/tables_shims.nim rename to stew/shims/tables.nim diff --git a/std_shims/strings.nim b/stew/strings.nim similarity index 100% rename from std_shims/strings.nim rename to stew/strings.nim